diff --git a/Jenkinsfile b/Jenkinsfile
index 8174070..465f46c 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -2,8 +2,8 @@ pipeline {
   agent any
 
   environment {
-    DatabaseUrl = sh(returnStdout: true, script: 'bash /var/lib/jenkins/variables/CureNet/var.sh ${BRANCH_NAME} DatabaseUrl').trim()
-    ProjectPath = sh(returnStdout: true, script: 'bash /var/lib/jenkins/variables/CureNet/var.sh ${BRANCH_NAME} ProjectPath').trim()
+    DatabaseUrl = sh(returnStdout: true, script: 'bash /var/lib/jenkins/variables/CureNet/var.sh dev DatabaseUrl').trim()
+    ProjectPath = sh(returnStdout: true, script: 'bash /var/lib/jenkins/variables/CureNet/var.sh dev ProjectPath').trim()
     DatabaseUrlTesting = sh(returnStdout: true, script: 'bash /var/lib/jenkins/variables/CureNet/var.sh master DatabaseUrl').trim()
   }
 
@@ -74,8 +74,8 @@ pipeline {
         stage('Backend') {
           steps {
             dir(path: 'src/backend') {
-              sh 'APP_SECRET=`php8.0 -r "echo md5(\\"branch=${BRANCH_NAME};\\");"` && sed -i "s/APP_SECRET=.*/APP_SECRET=${APP_SECRET}/g" .env'
-              sh '''sed -i 's/DATABASE_URL=.*/DATABASE_URL=${DatabaseUrlTesting}/g' .env.test'''
+              sh "echo `php8.0 -r 'echo md5(\"branch=${BRANCH_NAME};\");'` | php8.0 ../../tools/putenv/putenv.php .env.test APP_SECRET"
+              sh "php8.0 ../../tools/putenv/putenv.php .env.test DATABASE_URL \"${DatabaseUrlTesting}\""
               sh 'php8.0 /usr/local/bin/composer dump-env test'
               sh 'php8.0 bin/console doctrine:schema:update --force';
             }
@@ -123,9 +123,9 @@ pipeline {
         stage('Backend') {
           steps {
             dir(path: 'src/backend') {
-              sh '''APP_SECRET=`php8.0 -r "echo md5(\\"branch=${BRANCH_NAME};\\");"` && sed -i 's/APP_SECRET=.*/APP_SECRET=${APP_SECRET}/g' .env'''
-              sh '''sed -i 's/DATABASE_URL=.*/DATABASE_URL=${DatabaseUrl}/g' .env.dev'''
-              sh 'php8.0 /usr/local/bin/composer dump-env dev'
+              sh "echo `php8.0 -r 'echo md5(\"branch=${BRANCH_NAME};\");'` | php8.0 ../../tools/putenv/putenv.php .env APP_SECRET"
+              sh "php8.0 ../../tools/putenv/putenv.php .env DATABASE_URL \"${DatabaseUrl}\""
+              sh 'php8.0 /usr/local/bin/composer dump-env prod'
             }
 
           }
@@ -164,6 +164,7 @@ pipeline {
           branch 'staging'
           branch 'beta'
           branch 'dev'
+          branch '29-profile-page'
         }
 
       }
@@ -186,6 +187,10 @@ pipeline {
               sh 'ssh web@fufle.net touch ${ProjectPath}/backend/REMOVEME'
               sh 'ssh web@fufle.net rm -rf ${ProjectPath}/backend/*'
               sh 'scp -r ./* web@fufle.net:${ProjectPath}/backend/'
+              sh 'scp -r ./.env web@fufle.net:${ProjectPath}/backend/.env'
+              sh 'ssh web@fufle.net chmod 777 ${ProjectPath}/backend/var -R'
+              sh 'ssh web@fufle.net "cd ${ProjectPath}/backend; php8.0 bin/console doctrine:schema:update --force"'
+              sh 'ssh web@fufle.net "cd ${ProjectPath}/backend; php8.0 bin/console lexik:jwt:generate-keypair --skip-if-exists"'
             }
 
           }
diff --git a/docker/startup.sh b/docker/startup.sh
index 1deb391..a89402c 100644
--- a/docker/startup.sh
+++ b/docker/startup.sh
@@ -1,8 +1,8 @@
 #!/bin/bash
 
-echo "> Configure cache"
-    mkdir -p /tmp/app/vendor
-    ln -s /tmp/app/vendor /web/backend/vendor
+#echo "> Configure cache"
+#    mkdir -p /tmp/app/vendor
+#    ln -s /tmp/app/vendor /web/backend/vendor
 
 echo "> Configure user"
     useradd developer
@@ -14,10 +14,10 @@ echo "> Configure logs"
     chown postgres:adm /var/log/postgresql -R
     chown root:postgres /var/log/postgresql
 
-echo "> Configure volumes"
-    [ -e /web/frontend/node_modules ] || ln -s /web/node /web/frontend/node_modules
-    [ -e /web/backend/var ] || ln -s /web/var /web/backend/var
-    [ -e /web/backend/vendor ] || ln -s /web/vendor /web/backend/vendor
+#echo "> Configure volumes"
+#    [ -e /web/frontend/node_modules ] || ln -s /web/node /web/frontend/node_modules
+#    [ -e /web/backend/var ] || ln -s /web/var /web/backend/var
+#    [ -e /web/backend/vendor ] || ln -s /web/vendor /web/backend/vendor
 
 echo "> Starting php8.0-fpm server"
     [ -e /etc/php/8.0/fpm/conf.d/20-xdebug.ini ] && rm /etc/php/8.0/fpm/conf.d/20-xdebug.ini || echo OK
diff --git a/src/backend/config/packages/lexik_jwt_authentication.yaml b/src/backend/config/packages/lexik_jwt_authentication.yaml
index edfb69d..d7b6820 100644
--- a/src/backend/config/packages/lexik_jwt_authentication.yaml
+++ b/src/backend/config/packages/lexik_jwt_authentication.yaml
@@ -2,3 +2,4 @@ lexik_jwt_authentication:
     secret_key: '%env(resolve:JWT_SECRET_KEY)%'
     public_key: '%env(resolve:JWT_PUBLIC_KEY)%'
     pass_phrase: '%env(JWT_PASSPHRASE)%'
+    token_ttl: 3600
\ No newline at end of file
diff --git a/src/backend/data/countries.json b/src/backend/data/countries.json
new file mode 100644
index 0000000..a49f30c
--- /dev/null
+++ b/src/backend/data/countries.json
@@ -0,0 +1,1994 @@
+[
+    {
+        "id": 1,
+        "code": "AF",
+        "name": "Afghanistan",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 2,
+        "code": "AX",
+        "name": "Åland Islands",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 3,
+        "code": "AL",
+        "name": "Albania",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 4,
+        "code": "DZ",
+        "name": "Algeria",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 5,
+        "code": "AS",
+        "name": "American Samoa",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 6,
+        "code": "AD",
+        "name": "Andorra",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 7,
+        "code": "AO",
+        "name": "Angola",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 8,
+        "code": "AI",
+        "name": "Anguilla",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 9,
+        "code": "AQ",
+        "name": "Antarctica",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 10,
+        "code": "AG",
+        "name": "Antigua and Barbuda",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 11,
+        "code": "AR",
+        "name": "Argentina",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 12,
+        "code": "AM",
+        "name": "Armenia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 13,
+        "code": "AW",
+        "name": "Aruba",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 14,
+        "code": "AU",
+        "name": "Australia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 15,
+        "code": "AT",
+        "name": "Austria",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 16,
+        "code": "AZ",
+        "name": "Azerbaijan",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 17,
+        "code": "BS",
+        "name": "Bahamas",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 18,
+        "code": "BH",
+        "name": "Bahrain",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 19,
+        "code": "BD",
+        "name": "Bangladesh",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 20,
+        "code": "BB",
+        "name": "Barbados",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 21,
+        "code": "BY",
+        "name": "Belarus",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 22,
+        "code": "BE",
+        "name": "Belgium",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 23,
+        "code": "BZ",
+        "name": "Belize",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 24,
+        "code": "BJ",
+        "name": "Benin",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 25,
+        "code": "BM",
+        "name": "Bermuda",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 26,
+        "code": "BT",
+        "name": "Bhutan",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 27,
+        "code": "BO",
+        "name": "Bolivia",
+        "localeName": null,
+        "subname": "Plurinational State of",
+        "haveSubregions": true
+    },
+    {
+        "id": 28,
+        "code": "BQ",
+        "name": "Bonaire",
+        "localeName": null,
+        "subname": "Sint Eustatius and Saba",
+        "haveSubregions": true
+    },
+    {
+        "id": 29,
+        "code": "BA",
+        "name": "Bosnia and Herzegovina",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 30,
+        "code": "BW",
+        "name": "Botswana",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 31,
+        "code": "BV",
+        "name": "Bouvet Island",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 32,
+        "code": "BR",
+        "name": "Brazil",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 33,
+        "code": "IO",
+        "name": "British Indian Ocean Territory",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 34,
+        "code": "BN",
+        "name": "Brunei Darussalam",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 35,
+        "code": "BG",
+        "name": "Bulgaria",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 36,
+        "code": "BF",
+        "name": "Burkina Faso",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 37,
+        "code": "BI",
+        "name": "Burundi",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 38,
+        "code": "KH",
+        "name": "Cambodia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 39,
+        "code": "CM",
+        "name": "Cameroon",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 40,
+        "code": "CA",
+        "name": "Canada",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 41,
+        "code": "CV",
+        "name": "Cape Verde",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 42,
+        "code": "KY",
+        "name": "Cayman Islands",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 43,
+        "code": "CF",
+        "name": "Central African Republic",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 44,
+        "code": "TD",
+        "name": "Chad",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 45,
+        "code": "CL",
+        "name": "Chile",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 46,
+        "code": "CN",
+        "name": "China",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 47,
+        "code": "CX",
+        "name": "Christmas Island",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 48,
+        "code": "CC",
+        "name": "Cocos (Keeling) Islands",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 49,
+        "code": "CO",
+        "name": "Colombia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 50,
+        "code": "KM",
+        "name": "Comoros",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 51,
+        "code": "CG",
+        "name": "Congo",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 52,
+        "code": "CD",
+        "name": "Congo",
+        "localeName": null,
+        "subname": "The Democratic Republic of the",
+        "haveSubregions": true
+    },
+    {
+        "id": 53,
+        "code": "CK",
+        "name": "Cook Islands",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 54,
+        "code": "CR",
+        "name": "Costa Rica",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 55,
+        "code": "CI",
+        "name": "Côte D'Ivoire",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 56,
+        "code": "HR",
+        "name": "Croatia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 57,
+        "code": "CU",
+        "name": "Cuba",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 58,
+        "code": "CW",
+        "name": "Curaçao",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 59,
+        "code": "CY",
+        "name": "Cyprus",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 60,
+        "code": "CZ",
+        "name": "Czech Republic",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 61,
+        "code": "DK",
+        "name": "Denmark",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 62,
+        "code": "DJ",
+        "name": "Djibouti",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 63,
+        "code": "DM",
+        "name": "Dominica",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 64,
+        "code": "DO",
+        "name": "Dominican Republic",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 65,
+        "code": "EC",
+        "name": "Ecuador",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 66,
+        "code": "EG",
+        "name": "Egypt",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 67,
+        "code": "SV",
+        "name": "El Salvador",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 68,
+        "code": "GQ",
+        "name": "Equatorial Guinea",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 69,
+        "code": "ER",
+        "name": "Eritrea",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 70,
+        "code": "EE",
+        "name": "Estonia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 71,
+        "code": "ET",
+        "name": "Ethiopia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 72,
+        "code": "FK",
+        "name": "Falkland Islands (Malvinas)",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 73,
+        "code": "FO",
+        "name": "Faroe Islands",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 74,
+        "code": "FJ",
+        "name": "Fiji",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 75,
+        "code": "FI",
+        "name": "Finland",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 76,
+        "code": "FR",
+        "name": "France",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 77,
+        "code": "GF",
+        "name": "French Guiana",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 78,
+        "code": "PF",
+        "name": "French Polynesia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 79,
+        "code": "TF",
+        "name": "French Southern Territories",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 80,
+        "code": "GA",
+        "name": "Gabon",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 81,
+        "code": "GM",
+        "name": "Gambia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 82,
+        "code": "GE",
+        "name": "Georgia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 83,
+        "code": "DE",
+        "name": "Germany",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 84,
+        "code": "GH",
+        "name": "Ghana",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 85,
+        "code": "GI",
+        "name": "Gibraltar",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 86,
+        "code": "GR",
+        "name": "Greece",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 87,
+        "code": "GL",
+        "name": "Greenland",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 88,
+        "code": "GD",
+        "name": "Grenada",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 89,
+        "code": "GP",
+        "name": "Guadeloupe",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 90,
+        "code": "GU",
+        "name": "Guam",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 91,
+        "code": "GT",
+        "name": "Guatemala",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 92,
+        "code": "GG",
+        "name": "Guernsey",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 93,
+        "code": "GN",
+        "name": "Guinea",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 94,
+        "code": "GW",
+        "name": "Guinea-Bissau",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 95,
+        "code": "GY",
+        "name": "Guyana",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 96,
+        "code": "HT",
+        "name": "Haiti",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 97,
+        "code": "HM",
+        "name": "Heard Island and Mcdonald Islands",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 98,
+        "code": "VA",
+        "name": "Holy See (Vatican City State)",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 99,
+        "code": "HN",
+        "name": "Honduras",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 100,
+        "code": "HK",
+        "name": "Hong Kong",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 101,
+        "code": "HU",
+        "name": "Hungary",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 102,
+        "code": "IS",
+        "name": "Iceland",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 103,
+        "code": "IN",
+        "name": "India",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 104,
+        "code": "ID",
+        "name": "Indonesia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 105,
+        "code": "IR",
+        "name": "Iran",
+        "localeName": null,
+        "subname": "Islamic Republic of",
+        "haveSubregions": true
+    },
+    {
+        "id": 106,
+        "code": "IQ",
+        "name": "Iraq",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 107,
+        "code": "IE",
+        "name": "Ireland",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 108,
+        "code": "IM",
+        "name": "Isle of Man",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 109,
+        "code": "IL",
+        "name": "Israel",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 110,
+        "code": "IT",
+        "name": "Italy",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 111,
+        "code": "JM",
+        "name": "Jamaica",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 112,
+        "code": "JP",
+        "name": "Japan",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 113,
+        "code": "JE",
+        "name": "Jersey",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 114,
+        "code": "JO",
+        "name": "Jordan",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 115,
+        "code": "KZ",
+        "name": "Kazakhstan",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 116,
+        "code": "KE",
+        "name": "Kenya",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 117,
+        "code": "KI",
+        "name": "Kiribati",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 118,
+        "code": "KP",
+        "name": "Korea",
+        "localeName": null,
+        "subname": "Democratic People's Republic of",
+        "haveSubregions": true
+    },
+    {
+        "id": 119,
+        "code": "KR",
+        "name": "Korea",
+        "localeName": null,
+        "subname": "Republic of",
+        "haveSubregions": true
+    },
+    {
+        "id": 120,
+        "code": "KW",
+        "name": "Kuwait",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 121,
+        "code": "KG",
+        "name": "Kyrgyzstan",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 122,
+        "code": "LA",
+        "name": "Lao People's Democratic Republic",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 123,
+        "code": "LV",
+        "name": "Latvia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 124,
+        "code": "LB",
+        "name": "Lebanon",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 125,
+        "code": "LS",
+        "name": "Lesotho",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 126,
+        "code": "LR",
+        "name": "Liberia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 127,
+        "code": "LY",
+        "name": "Libya",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 128,
+        "code": "LI",
+        "name": "Liechtenstein",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 129,
+        "code": "LT",
+        "name": "Lithuania",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 130,
+        "code": "LU",
+        "name": "Luxembourg",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 131,
+        "code": "MO",
+        "name": "Macao",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 132,
+        "code": "MK",
+        "name": "Macedonia",
+        "localeName": null,
+        "subname": "The former Yugoslav Republic of",
+        "haveSubregions": true
+    },
+    {
+        "id": 133,
+        "code": "MG",
+        "name": "Madagascar",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 134,
+        "code": "MW",
+        "name": "Malawi",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 135,
+        "code": "MY",
+        "name": "Malaysia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 136,
+        "code": "MV",
+        "name": "Maldives",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 137,
+        "code": "ML",
+        "name": "Mali",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 138,
+        "code": "MT",
+        "name": "Malta",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 139,
+        "code": "MH",
+        "name": "Marshall Islands",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 140,
+        "code": "MQ",
+        "name": "Martinique",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 141,
+        "code": "MR",
+        "name": "Mauritania",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 142,
+        "code": "MU",
+        "name": "Mauritius",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 143,
+        "code": "YT",
+        "name": "Mayotte",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 144,
+        "code": "MX",
+        "name": "Mexico",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 145,
+        "code": "FM",
+        "name": "Micronesia",
+        "localeName": null,
+        "subname": "Federated States of",
+        "haveSubregions": true
+    },
+    {
+        "id": 146,
+        "code": "MD",
+        "name": "Moldova",
+        "localeName": null,
+        "subname": "Republic of",
+        "haveSubregions": true
+    },
+    {
+        "id": 147,
+        "code": "MC",
+        "name": "Monaco",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 148,
+        "code": "MN",
+        "name": "Mongolia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 149,
+        "code": "ME",
+        "name": "Montenegro",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 150,
+        "code": "MS",
+        "name": "Montserrat",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 151,
+        "code": "MA",
+        "name": "Morocco",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 152,
+        "code": "MZ",
+        "name": "Mozambique",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 153,
+        "code": "MM",
+        "name": "Myanmar",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 154,
+        "code": "NA",
+        "name": "Namibia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 155,
+        "code": "NR",
+        "name": "Nauru",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 156,
+        "code": "NP",
+        "name": "Nepal",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 157,
+        "code": "NL",
+        "name": "Netherlands",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 158,
+        "code": "NC",
+        "name": "New Caledonia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 159,
+        "code": "NZ",
+        "name": "New Zealand",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 160,
+        "code": "NI",
+        "name": "Nicaragua",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 161,
+        "code": "NE",
+        "name": "Niger",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 162,
+        "code": "NG",
+        "name": "Nigeria",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 163,
+        "code": "NU",
+        "name": "Niue",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 164,
+        "code": "NF",
+        "name": "Norfolk Island",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 165,
+        "code": "MP",
+        "name": "Northern Mariana Islands",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 166,
+        "code": "NO",
+        "name": "Norway",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 167,
+        "code": "OM",
+        "name": "Oman",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 168,
+        "code": "PK",
+        "name": "Pakistan",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 169,
+        "code": "PW",
+        "name": "Palau",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 170,
+        "code": "PS",
+        "name": "Palestine",
+        "localeName": null,
+        "subname": "State of",
+        "haveSubregions": true
+    },
+    {
+        "id": 171,
+        "code": "PA",
+        "name": "Panama",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 172,
+        "code": "PG",
+        "name": "Papua New Guinea",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 173,
+        "code": "PY",
+        "name": "Paraguay",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 174,
+        "code": "PE",
+        "name": "Peru",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 175,
+        "code": "PH",
+        "name": "Philippines",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 176,
+        "code": "PN",
+        "name": "Pitcairn",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 177,
+        "code": "PL",
+        "name": "Poland",
+        "localeName": "Polska",
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 178,
+        "code": "PT",
+        "name": "Portugal",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 179,
+        "code": "PR",
+        "name": "Puerto Rico",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 180,
+        "code": "QA",
+        "name": "Qatar",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 181,
+        "code": "RE",
+        "name": "Réunion",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 182,
+        "code": "RO",
+        "name": "Romania",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 183,
+        "code": "RU",
+        "name": "Russian Federation",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 184,
+        "code": "RW",
+        "name": "Rwanda",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 185,
+        "code": "BL",
+        "name": "Saint Barthélemy",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 186,
+        "code": "SH",
+        "name": "Saint Helena",
+        "localeName": null,
+        "subname": "Ascension and Tristan da Cunha",
+        "haveSubregions": true
+    },
+    {
+        "id": 187,
+        "code": "KN",
+        "name": "Saint Kitts and Nevis",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 188,
+        "code": "LC",
+        "name": "Saint Lucia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 189,
+        "code": "MF",
+        "name": "Saint Martin (French Part)",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 190,
+        "code": "PM",
+        "name": "Saint Pierre and Miquelon",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 191,
+        "code": "VC",
+        "name": "Saint Vincent and the Grenadines",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 192,
+        "code": "WS",
+        "name": "Samoa",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 193,
+        "code": "SM",
+        "name": "San Marino",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 194,
+        "code": "ST",
+        "name": "Sao Tome and Principe",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 195,
+        "code": "SA",
+        "name": "Saudi Arabia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 196,
+        "code": "SN",
+        "name": "Senegal",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 197,
+        "code": "RS",
+        "name": "Serbia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 198,
+        "code": "SC",
+        "name": "Seychelles",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 199,
+        "code": "SL",
+        "name": "Sierra Leone",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 200,
+        "code": "SG",
+        "name": "Singapore",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 201,
+        "code": "SX",
+        "name": "Sint Maarten (Dutch Part)",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 202,
+        "code": "SK",
+        "name": "Slovakia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 203,
+        "code": "SI",
+        "name": "Slovenia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 204,
+        "code": "SB",
+        "name": "Solomon Islands",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 205,
+        "code": "SO",
+        "name": "Somalia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 206,
+        "code": "ZA",
+        "name": "South Africa",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 207,
+        "code": "GS",
+        "name": "South Georgia and the South Sandwich Islands",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 208,
+        "code": "SS",
+        "name": "South Sudan",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 209,
+        "code": "ES",
+        "name": "Spain",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 210,
+        "code": "LK",
+        "name": "Sri Lanka",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 211,
+        "code": "SD",
+        "name": "Sudan",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 212,
+        "code": "SR",
+        "name": "Suriname",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 213,
+        "code": "SJ",
+        "name": "Svalbard and Jan Mayen",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 214,
+        "code": "SZ",
+        "name": "Swaziland",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 215,
+        "code": "SE",
+        "name": "Sweden",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 216,
+        "code": "CH",
+        "name": "Switzerland",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 217,
+        "code": "SY",
+        "name": "Syrian Arab Republic",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 218,
+        "code": "TW",
+        "name": "Taiwan",
+        "localeName": null,
+        "subname": "Province of China",
+        "haveSubregions": true
+    },
+    {
+        "id": 219,
+        "code": "TJ",
+        "name": "Tajikistan",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 220,
+        "code": "TZ",
+        "name": "Tanzania",
+        "localeName": null,
+        "subname": "United Republic of",
+        "haveSubregions": true
+    },
+    {
+        "id": 221,
+        "code": "TH",
+        "name": "Thailand",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 222,
+        "code": "TL",
+        "name": "Timor-Leste",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 223,
+        "code": "TG",
+        "name": "Togo",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 224,
+        "code": "TK",
+        "name": "Tokelau",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 225,
+        "code": "TO",
+        "name": "Tonga",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 226,
+        "code": "TT",
+        "name": "Trinidad and Tobago",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 227,
+        "code": "TN",
+        "name": "Tunisia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 228,
+        "code": "TR",
+        "name": "Turkey",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 229,
+        "code": "TM",
+        "name": "Turkmenistan",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 230,
+        "code": "TC",
+        "name": "Turks and Caicos Islands",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 231,
+        "code": "TV",
+        "name": "Tuvalu",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 232,
+        "code": "UG",
+        "name": "Uganda",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 233,
+        "code": "UA",
+        "name": "Ukraine",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 234,
+        "code": "AE",
+        "name": "United Arab Emirates",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 235,
+        "code": "GB",
+        "name": "United Kingdom",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 236,
+        "code": "US",
+        "name": "United States",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 237,
+        "code": "UM",
+        "name": "United States Minor Outlying Islands",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 238,
+        "code": "UY",
+        "name": "Uruguay",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 239,
+        "code": "UZ",
+        "name": "Uzbekistan",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 240,
+        "code": "VU",
+        "name": "Vanuatu",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 241,
+        "code": "VE",
+        "name": "Venezuela",
+        "localeName": null,
+        "subname": "Bolivarian Republic of",
+        "haveSubregions": true
+    },
+    {
+        "id": 242,
+        "code": "VN",
+        "name": "Viet Nam",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 243,
+        "code": "VG",
+        "name": "Virgin Islands",
+        "localeName": null,
+        "subname": "British",
+        "haveSubregions": false
+    },
+    {
+        "id": 244,
+        "code": "VI",
+        "name": "Virgin Islands",
+        "localeName": null,
+        "subname": "U.S.",
+        "haveSubregions": false
+    },
+    {
+        "id": 245,
+        "code": "WF",
+        "name": "Wallis and Futuna",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 246,
+        "code": "EH",
+        "name": "Western Sahara",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": false
+    },
+    {
+        "id": 247,
+        "code": "YE",
+        "name": "Yemen",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 248,
+        "code": "ZM",
+        "name": "Zambia",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    },
+    {
+        "id": 249,
+        "code": "ZW",
+        "name": "Zimbabwe",
+        "localeName": null,
+        "subname": null,
+        "haveSubregions": true
+    }
+]
\ No newline at end of file
diff --git a/src/backend/data/states.json b/src/backend/data/states.json
new file mode 100644
index 0000000..5803c02
--- /dev/null
+++ b/src/backend/data/states.json
@@ -0,0 +1,31971 @@
+[
+    {
+        "id": 1,
+        "code": "BAL",
+        "name": "Balkh",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 2,
+        "code": "BAM",
+        "name": "Bāmyān",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 3,
+        "code": "BDG",
+        "name": "Bādghīs",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 4,
+        "code": "BDS",
+        "name": "Badakhshān",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 5,
+        "code": "BGL",
+        "name": "Baghlān",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 6,
+        "code": "DAY",
+        "name": "Dāykundī",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 7,
+        "code": "FRA",
+        "name": "Farāh",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 8,
+        "code": "FYB",
+        "name": "Fāryāb",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 9,
+        "code": "GHA",
+        "name": "Ghaznī",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 10,
+        "code": "GHO",
+        "name": "Ghōr",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 11,
+        "code": "HEL",
+        "name": "Helmand",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 12,
+        "code": "HER",
+        "name": "Herāt",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 13,
+        "code": "JOW",
+        "name": "Jowzjān",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 14,
+        "code": "KAB",
+        "name": "Kābul",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 15,
+        "code": "KAN",
+        "name": "Kandahār",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 16,
+        "code": "KAP",
+        "name": "Kāpīsā",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 17,
+        "code": "KDZ",
+        "name": "Kunduz",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 18,
+        "code": "KHO",
+        "name": "Khōst",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 19,
+        "code": "KNR",
+        "name": "Kunar",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 20,
+        "code": "LAG",
+        "name": "Laghmān",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 21,
+        "code": "LOG",
+        "name": "Lōgar",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 22,
+        "code": "NAN",
+        "name": "Nangarhār",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 23,
+        "code": "NIM",
+        "name": "Nīmrōz",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 24,
+        "code": "NUR",
+        "name": "Nūristān",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 25,
+        "code": "PAN",
+        "name": "Panjshayr",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 26,
+        "code": "PAR",
+        "name": "Parwān",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 27,
+        "code": "PIA",
+        "name": "Paktīā",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 28,
+        "code": "PKA",
+        "name": "Paktīkā",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 29,
+        "code": "SAM",
+        "name": "Samangān",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 30,
+        "code": "SAR",
+        "name": "Sar-e Pul",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 31,
+        "code": "TAK",
+        "name": "Takhār",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 32,
+        "code": "URU",
+        "name": "Uruzgān",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 33,
+        "code": "WAR",
+        "name": "Wardak",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 34,
+        "code": "ZAB",
+        "name": "Zābul",
+        "countryCode": "AF",
+        "countryId": 1
+    },
+    {
+        "id": 35,
+        "code": "BR",
+        "name": "Berat",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 36,
+        "code": "BU",
+        "name": "Bulqizë",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 37,
+        "code": "DI",
+        "name": "Dibër",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 38,
+        "code": "DL",
+        "name": "Delvinë",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 39,
+        "code": "DR",
+        "name": "Durrës",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 40,
+        "code": "DV",
+        "name": "Devoll",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 41,
+        "code": "EL",
+        "name": "Elbasan",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 42,
+        "code": "ER",
+        "name": "Kolonjë",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 43,
+        "code": "FR",
+        "name": "Fier",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 44,
+        "code": "GJ",
+        "name": "Gjirokastër",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 45,
+        "code": "GR",
+        "name": "Gramsh",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 46,
+        "code": "HA",
+        "name": "Has",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 47,
+        "code": "KA",
+        "name": "Kavajë",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 48,
+        "code": "KB",
+        "name": "Kurbin",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 49,
+        "code": "KC",
+        "name": "Kuçovë",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 50,
+        "code": "KO",
+        "name": "Korçë",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 51,
+        "code": "KR",
+        "name": "Krujë",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 52,
+        "code": "KU",
+        "name": "Kukës",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 53,
+        "code": "LB",
+        "name": "Librazhd",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 54,
+        "code": "LE",
+        "name": "Lezhë",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 55,
+        "code": "LU",
+        "name": "Lushnjë",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 56,
+        "code": "MK",
+        "name": "Mallakastër",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 57,
+        "code": "MM",
+        "name": "Malësi e Madhe",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 58,
+        "code": "MR",
+        "name": "Mirditë",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 59,
+        "code": "MT",
+        "name": "Mat",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 60,
+        "code": "PG",
+        "name": "Pogradec",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 61,
+        "code": "PQ",
+        "name": "Peqin",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 62,
+        "code": "PR",
+        "name": "Përmet",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 63,
+        "code": "PU",
+        "name": "Pukë",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 64,
+        "code": "SH",
+        "name": "Shkodër",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 65,
+        "code": "SK",
+        "name": "Skrapar",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 66,
+        "code": "SR",
+        "name": "Sarandë",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 67,
+        "code": "TE",
+        "name": "Tepelenë",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 68,
+        "code": "TP",
+        "name": "Tropojë",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 69,
+        "code": "TR",
+        "name": "Tiranë",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 70,
+        "code": "VL",
+        "name": "Vlorë",
+        "countryCode": "AL",
+        "countryId": 3
+    },
+    {
+        "id": 71,
+        "code": "01",
+        "name": "Adrar",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 72,
+        "code": "02",
+        "name": "Chlef",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 73,
+        "code": "03",
+        "name": "Laghouat",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 74,
+        "code": "04",
+        "name": "Oum el Bouaghi",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 75,
+        "code": "05",
+        "name": "Batna",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 76,
+        "code": "06",
+        "name": "Béjaïa",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 77,
+        "code": "07",
+        "name": "Biskra",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 78,
+        "code": "08",
+        "name": "Béchar",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 79,
+        "code": "09",
+        "name": "Blida",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 80,
+        "code": "10",
+        "name": "Bouira",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 81,
+        "code": "11",
+        "name": "Tamanghasset",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 82,
+        "code": "12",
+        "name": "Tébessa",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 83,
+        "code": "13",
+        "name": "Tlemcen",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 84,
+        "code": "14",
+        "name": "Tiaret",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 85,
+        "code": "15",
+        "name": "Tizi Ouzou",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 86,
+        "code": "16",
+        "name": "Alger",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 87,
+        "code": "17",
+        "name": "Djelfa",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 88,
+        "code": "18",
+        "name": "Jijel",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 89,
+        "code": "19",
+        "name": "Sétif",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 90,
+        "code": "20",
+        "name": "Saïda",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 91,
+        "code": "21",
+        "name": "Skikda",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 92,
+        "code": "22",
+        "name": "Sidi Bel Abbès",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 93,
+        "code": "23",
+        "name": "Annaba",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 94,
+        "code": "24",
+        "name": "Guelma",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 95,
+        "code": "25",
+        "name": "Constantine",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 96,
+        "code": "26",
+        "name": "Médéa",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 97,
+        "code": "27",
+        "name": "Mostaganem",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 98,
+        "code": "28",
+        "name": "Msila",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 99,
+        "code": "29",
+        "name": "Mascara",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 100,
+        "code": "30",
+        "name": "Ouargla",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 101,
+        "code": "31",
+        "name": "Oran",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 102,
+        "code": "32",
+        "name": "El Bayadh",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 103,
+        "code": "33",
+        "name": "Illizi",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 104,
+        "code": "34",
+        "name": "Bordj Bou Arréridj",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 105,
+        "code": "35",
+        "name": "Boumerdès",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 106,
+        "code": "36",
+        "name": "El Tarf",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 107,
+        "code": "37",
+        "name": "Tindouf",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 108,
+        "code": "38",
+        "name": "Tissemsilt",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 109,
+        "code": "39",
+        "name": "El Oued",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 110,
+        "code": "40",
+        "name": "Khenchela",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 111,
+        "code": "41",
+        "name": "Souk Ahras",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 112,
+        "code": "42",
+        "name": "Tipaza",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 113,
+        "code": "43",
+        "name": "Mila",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 114,
+        "code": "44",
+        "name": "Aïn Defla",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 115,
+        "code": "45",
+        "name": "Naama",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 116,
+        "code": "46",
+        "name": "Aïn Témouchent",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 117,
+        "code": "47",
+        "name": "Ghardaïa",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 118,
+        "code": "48",
+        "name": "Relizane",
+        "countryCode": "DZ",
+        "countryId": 4
+    },
+    {
+        "id": 119,
+        "code": "02",
+        "name": "Canillo",
+        "countryCode": "AD",
+        "countryId": 6
+    },
+    {
+        "id": 120,
+        "code": "03",
+        "name": "Encamp",
+        "countryCode": "AD",
+        "countryId": 6
+    },
+    {
+        "id": 121,
+        "code": "04",
+        "name": "La Massana",
+        "countryCode": "AD",
+        "countryId": 6
+    },
+    {
+        "id": 122,
+        "code": "05",
+        "name": "Ordino",
+        "countryCode": "AD",
+        "countryId": 6
+    },
+    {
+        "id": 123,
+        "code": "06",
+        "name": "Sant Julià de Lòria",
+        "countryCode": "AD",
+        "countryId": 6
+    },
+    {
+        "id": 124,
+        "code": "07",
+        "name": "Andorra la Vella",
+        "countryCode": "AD",
+        "countryId": 6
+    },
+    {
+        "id": 125,
+        "code": "08",
+        "name": "Escaldes-Engordany",
+        "countryCode": "AD",
+        "countryId": 6
+    },
+    {
+        "id": 126,
+        "code": "BGO",
+        "name": "Bengo",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 127,
+        "code": "BGU",
+        "name": "Benguela",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 128,
+        "code": "BIE",
+        "name": "Bié",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 129,
+        "code": "CAB",
+        "name": "Cabinda",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 130,
+        "code": "CCU",
+        "name": "Cuando-Cubango",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 131,
+        "code": "CNN",
+        "name": "Cunene",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 132,
+        "code": "CNO",
+        "name": "Cuanza Norte",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 133,
+        "code": "CUS",
+        "name": "Cuanza Sul",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 134,
+        "code": "HUA",
+        "name": "Huambo",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 135,
+        "code": "HUI",
+        "name": "Huíla",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 136,
+        "code": "LNO",
+        "name": "Lunda Norte",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 137,
+        "code": "LSU",
+        "name": "Lunda Sul",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 138,
+        "code": "LUA",
+        "name": "Luanda",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 139,
+        "code": "MAL",
+        "name": "Malange",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 140,
+        "code": "MOX",
+        "name": "Moxico",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 141,
+        "code": "NAM",
+        "name": "Namibe",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 142,
+        "code": "UIG",
+        "name": "Uíge",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 143,
+        "code": "ZAI",
+        "name": "Zaire",
+        "countryCode": "AO",
+        "countryId": 7
+    },
+    {
+        "id": 144,
+        "code": "03",
+        "name": "Saint George",
+        "countryCode": "AG",
+        "countryId": 10
+    },
+    {
+        "id": 145,
+        "code": "04",
+        "name": "Saint John's",
+        "countryCode": "AG",
+        "countryId": 10
+    },
+    {
+        "id": 146,
+        "code": "05",
+        "name": "Saint Mary",
+        "countryCode": "AG",
+        "countryId": 10
+    },
+    {
+        "id": 147,
+        "code": "06",
+        "name": "Saint Paul",
+        "countryCode": "AG",
+        "countryId": 10
+    },
+    {
+        "id": 148,
+        "code": "07",
+        "name": "Saint Peter",
+        "countryCode": "AG",
+        "countryId": 10
+    },
+    {
+        "id": 149,
+        "code": "08",
+        "name": "Saint Philip",
+        "countryCode": "AG",
+        "countryId": 10
+    },
+    {
+        "id": 150,
+        "code": "10",
+        "name": "Barbuda",
+        "countryCode": "AG",
+        "countryId": 10
+    },
+    {
+        "id": 151,
+        "code": "11",
+        "name": "Redonda",
+        "countryCode": "AG",
+        "countryId": 10
+    },
+    {
+        "id": 152,
+        "code": "A",
+        "name": "Salta",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 153,
+        "code": "B",
+        "name": "Buenos Aires",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 154,
+        "code": "C",
+        "name": "Ciudad Autónoma de Buenos Aires",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 155,
+        "code": "D",
+        "name": "San Luis",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 156,
+        "code": "E",
+        "name": "Entre Ríos",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 157,
+        "code": "F",
+        "name": "La Rioja",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 158,
+        "code": "G",
+        "name": "Santiago del Estero",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 159,
+        "code": "H",
+        "name": "Chaco",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 160,
+        "code": "J",
+        "name": "San Juan",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 161,
+        "code": "K",
+        "name": "Catamarca",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 162,
+        "code": "L",
+        "name": "La Pampa",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 163,
+        "code": "M",
+        "name": "Mendoza",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 164,
+        "code": "N",
+        "name": "Misiones",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 165,
+        "code": "P",
+        "name": "Formosa",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 166,
+        "code": "Q",
+        "name": "Neuquén",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 167,
+        "code": "R",
+        "name": "Río Negro",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 168,
+        "code": "S",
+        "name": "Santa Fe",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 169,
+        "code": "T",
+        "name": "Tucumán",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 170,
+        "code": "U",
+        "name": "Chubut",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 171,
+        "code": "V",
+        "name": "Tierra del Fuego",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 172,
+        "code": "W",
+        "name": "Corrientes",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 173,
+        "code": "X",
+        "name": "Córdoba",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 174,
+        "code": "Y",
+        "name": "Jujuy",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 175,
+        "code": "Z",
+        "name": "Santa Cruz",
+        "countryCode": "AR",
+        "countryId": 11
+    },
+    {
+        "id": 176,
+        "code": "AG",
+        "name": "Aragaçotn",
+        "countryCode": "AM",
+        "countryId": 12
+    },
+    {
+        "id": 177,
+        "code": "AR",
+        "name": "Ararat",
+        "countryCode": "AM",
+        "countryId": 12
+    },
+    {
+        "id": 178,
+        "code": "AV",
+        "name": "Armavir",
+        "countryCode": "AM",
+        "countryId": 12
+    },
+    {
+        "id": 179,
+        "code": "ER",
+        "name": "Erevan",
+        "countryCode": "AM",
+        "countryId": 12
+    },
+    {
+        "id": 180,
+        "code": "GR",
+        "name": "Geġark'unik'",
+        "countryCode": "AM",
+        "countryId": 12
+    },
+    {
+        "id": 181,
+        "code": "KT",
+        "name": "Kotayk'",
+        "countryCode": "AM",
+        "countryId": 12
+    },
+    {
+        "id": 182,
+        "code": "LO",
+        "name": "Loṙy",
+        "countryCode": "AM",
+        "countryId": 12
+    },
+    {
+        "id": 183,
+        "code": "SH",
+        "name": "Širak",
+        "countryCode": "AM",
+        "countryId": 12
+    },
+    {
+        "id": 184,
+        "code": "SU",
+        "name": "Syunik'",
+        "countryCode": "AM",
+        "countryId": 12
+    },
+    {
+        "id": 185,
+        "code": "TV",
+        "name": "Tavuš",
+        "countryCode": "AM",
+        "countryId": 12
+    },
+    {
+        "id": 186,
+        "code": "VD",
+        "name": "Vayoć Jor",
+        "countryCode": "AM",
+        "countryId": 12
+    },
+    {
+        "id": 187,
+        "code": "ACT",
+        "name": "Australian Capital Territory",
+        "countryCode": "AU",
+        "countryId": 14
+    },
+    {
+        "id": 188,
+        "code": "NSW",
+        "name": "New South Wales",
+        "countryCode": "AU",
+        "countryId": 14
+    },
+    {
+        "id": 189,
+        "code": "NT",
+        "name": "Northern Territory",
+        "countryCode": "AU",
+        "countryId": 14
+    },
+    {
+        "id": 190,
+        "code": "QLD",
+        "name": "Queensland",
+        "countryCode": "AU",
+        "countryId": 14
+    },
+    {
+        "id": 191,
+        "code": "SA",
+        "name": "South Australia",
+        "countryCode": "AU",
+        "countryId": 14
+    },
+    {
+        "id": 192,
+        "code": "TAS",
+        "name": "Tasmania",
+        "countryCode": "AU",
+        "countryId": 14
+    },
+    {
+        "id": 193,
+        "code": "VIC",
+        "name": "Victoria",
+        "countryCode": "AU",
+        "countryId": 14
+    },
+    {
+        "id": 194,
+        "code": "WA",
+        "name": "Western Australia",
+        "countryCode": "AU",
+        "countryId": 14
+    },
+    {
+        "id": 195,
+        "code": "1",
+        "name": "Burgenland",
+        "countryCode": "AT",
+        "countryId": 15
+    },
+    {
+        "id": 196,
+        "code": "2",
+        "name": "Kärnten",
+        "countryCode": "AT",
+        "countryId": 15
+    },
+    {
+        "id": 197,
+        "code": "3",
+        "name": "Niederösterreich",
+        "countryCode": "AT",
+        "countryId": 15
+    },
+    {
+        "id": 198,
+        "code": "4",
+        "name": "Oberösterreich",
+        "countryCode": "AT",
+        "countryId": 15
+    },
+    {
+        "id": 199,
+        "code": "5",
+        "name": "Salzburg",
+        "countryCode": "AT",
+        "countryId": 15
+    },
+    {
+        "id": 200,
+        "code": "6",
+        "name": "Steiermark",
+        "countryCode": "AT",
+        "countryId": 15
+    },
+    {
+        "id": 201,
+        "code": "7",
+        "name": "Tirol",
+        "countryCode": "AT",
+        "countryId": 15
+    },
+    {
+        "id": 202,
+        "code": "8",
+        "name": "Vorarlberg",
+        "countryCode": "AT",
+        "countryId": 15
+    },
+    {
+        "id": 203,
+        "code": "9",
+        "name": "Wien",
+        "countryCode": "AT",
+        "countryId": 15
+    },
+    {
+        "id": 204,
+        "code": "NX",
+        "name": "Naxçıvan",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 205,
+        "code": "BA",
+        "name": "Bakı",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 206,
+        "code": "GA",
+        "name": "Gәncә",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 207,
+        "code": "LA",
+        "name": "Lәnkәran",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 208,
+        "code": "MI",
+        "name": "Mingәçevir",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 209,
+        "code": "NA",
+        "name": "Naftalan",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 210,
+        "code": "NV",
+        "name": "Naxçıvan",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 211,
+        "code": "SA",
+        "name": "Şәki",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 212,
+        "code": "SM",
+        "name": "Sumqayıt",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 213,
+        "code": "SR",
+        "name": "Şirvan",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 214,
+        "code": "XA",
+        "name": "Xankәndi",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 215,
+        "code": "YE",
+        "name": "Yevlax",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 216,
+        "code": "ABS",
+        "name": "Abşeron",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 217,
+        "code": "AGA",
+        "name": "Ağstafa",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 218,
+        "code": "AGC",
+        "name": "Ağcabәdi",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 219,
+        "code": "AGM",
+        "name": "Ağdam",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 220,
+        "code": "AGS",
+        "name": "Ağdaş",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 221,
+        "code": "AGU",
+        "name": "Ağsu",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 222,
+        "code": "AST",
+        "name": "Astara",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 223,
+        "code": "BAB",
+        "name": "Babək",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 224,
+        "code": "BAL",
+        "name": "Balakən",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 225,
+        "code": "BAR",
+        "name": "Bərdə",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 226,
+        "code": "BEY",
+        "name": "Beyləqan",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 227,
+        "code": "BIL",
+        "name": "Biləsuvar",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 228,
+        "code": "CAB",
+        "name": "Cəbrayıl",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 229,
+        "code": "CAL",
+        "name": "Cəlilabad",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 230,
+        "code": "CUL",
+        "name": "Culfa",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 231,
+        "code": "DAS",
+        "name": "Daşkəsən",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 232,
+        "code": "FUZ",
+        "name": "Füzuli",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 233,
+        "code": "GAD",
+        "name": "Gədəbəy",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 234,
+        "code": "GOR",
+        "name": "Goranboy",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 235,
+        "code": "GOY",
+        "name": "Göyçay",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 236,
+        "code": "GYG",
+        "name": "Göygöl",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 237,
+        "code": "HAC",
+        "name": "Haciqabul",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 238,
+        "code": "IMI",
+        "name": "İmişli",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 239,
+        "code": "ISM",
+        "name": "İsmayıllı",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 240,
+        "code": "KAL",
+        "name": "Kəlbəcər",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 241,
+        "code": "KAN",
+        "name": "Kǝngǝrli",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 242,
+        "code": "KUR",
+        "name": "Kürdəmir",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 243,
+        "code": "LAC",
+        "name": "Laçin",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 244,
+        "code": "LAN",
+        "name": "Lənkəran",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 245,
+        "code": "LER",
+        "name": "Lerik",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 246,
+        "code": "MAS",
+        "name": "Masallı",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 247,
+        "code": "NEF",
+        "name": "Neftçala",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 248,
+        "code": "OGU",
+        "name": "Oğuz",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 249,
+        "code": "ORD",
+        "name": "Ordubad",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 250,
+        "code": "QAB",
+        "name": "Qәbәlә",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 251,
+        "code": "QAX",
+        "name": "Qax",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 252,
+        "code": "QAZ",
+        "name": "Qazax",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 253,
+        "code": "QBA",
+        "name": "Quba",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 254,
+        "code": "QBI",
+        "name": "Qubadlı",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 255,
+        "code": "QOB",
+        "name": "Qobustan",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 256,
+        "code": "QUS",
+        "name": "Qusar",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 257,
+        "code": "SAB",
+        "name": "Sabirabad",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 258,
+        "code": "SAD",
+        "name": "Sәdәrәk",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 259,
+        "code": "SAH",
+        "name": "Şahbuz",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 260,
+        "code": "SAK",
+        "name": "Şәki",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 261,
+        "code": "SAL",
+        "name": "Salyan",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 262,
+        "code": "SAR",
+        "name": "Şәrur",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 263,
+        "code": "SAT",
+        "name": "Saatlı",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 264,
+        "code": "SBN",
+        "name": "Şabran",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 265,
+        "code": "SIY",
+        "name": "Siyәzәn",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 266,
+        "code": "SKR",
+        "name": "Şәmkir",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 267,
+        "code": "SMI",
+        "name": "Şamaxı",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 268,
+        "code": "SMX",
+        "name": "Samux",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 269,
+        "code": "SUS",
+        "name": "Şuşa",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 270,
+        "code": "TAR",
+        "name": "Tәrtәr",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 271,
+        "code": "TOV",
+        "name": "Tovuz",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 272,
+        "code": "UCA",
+        "name": "Ucar",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 273,
+        "code": "XAC",
+        "name": "Xaçmaz",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 274,
+        "code": "XCI",
+        "name": "Xocalı",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 275,
+        "code": "XIZ",
+        "name": "Xızı",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 276,
+        "code": "XVD",
+        "name": "Xocavәnd",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 277,
+        "code": "YAR",
+        "name": "Yardımlı",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 278,
+        "code": "YEV",
+        "name": "Yevlax",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 279,
+        "code": "ZAN",
+        "name": "Zәngilan",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 280,
+        "code": "ZAQ",
+        "name": "Zaqatala",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 281,
+        "code": "ZAR",
+        "name": "Zәrdab",
+        "countryCode": "AZ",
+        "countryId": 16
+    },
+    {
+        "id": 282,
+        "code": "AK",
+        "name": "Acklins",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 283,
+        "code": "BI",
+        "name": "Bimini",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 284,
+        "code": "BP",
+        "name": "Black Point",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 285,
+        "code": "BY",
+        "name": "Berry Islands",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 286,
+        "code": "CE",
+        "name": "Central Eleuthera",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 287,
+        "code": "CI",
+        "name": "Cat Island",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 288,
+        "code": "CK",
+        "name": "Crooked Island and Long Cay",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 289,
+        "code": "CO",
+        "name": "Central Abaco",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 290,
+        "code": "CS",
+        "name": "Central Andros",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 291,
+        "code": "EG",
+        "name": "East Grand Bahama",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 292,
+        "code": "EX",
+        "name": "Exuma",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 293,
+        "code": "FC",
+        "name": "Fresh Creek",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 294,
+        "code": "FP",
+        "name": "City of Freeport",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 295,
+        "code": "GC",
+        "name": "Grand Cay",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 296,
+        "code": "HI",
+        "name": "Harbour Island",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 297,
+        "code": "HT",
+        "name": "Hope Town",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 298,
+        "code": "IN",
+        "name": "Inagua",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 299,
+        "code": "LI",
+        "name": "Long Island",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 300,
+        "code": "MC",
+        "name": "Mangrove Cay",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 301,
+        "code": "MG",
+        "name": "Mayaguana",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 302,
+        "code": "MI",
+        "name": "Moores Island",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 303,
+        "code": "NE",
+        "name": "North Eleuthera",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 304,
+        "code": "NO",
+        "name": "North Abaco",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 305,
+        "code": "NS",
+        "name": "North Andros",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 306,
+        "code": "RC",
+        "name": "Rum Cay",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 307,
+        "code": "RI",
+        "name": "Ragged Island",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 308,
+        "code": "SA",
+        "name": "South Andros",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 309,
+        "code": "SE",
+        "name": "South Eleuthera",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 310,
+        "code": "SO",
+        "name": "South Abaco",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 311,
+        "code": "SS",
+        "name": "San Salvador",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 312,
+        "code": "SW",
+        "name": "Spanish Wells",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 313,
+        "code": "WG",
+        "name": "West Grand Bahama",
+        "countryCode": "BS",
+        "countryId": 17
+    },
+    {
+        "id": 314,
+        "code": "13",
+        "name": "Al Manāmah",
+        "countryCode": "BH",
+        "countryId": 18
+    },
+    {
+        "id": 315,
+        "code": "14",
+        "name": "Al Janūbīyah",
+        "countryCode": "BH",
+        "countryId": 18
+    },
+    {
+        "id": 316,
+        "code": "15",
+        "name": "Al Muḩarraq",
+        "countryCode": "BH",
+        "countryId": 18
+    },
+    {
+        "id": 317,
+        "code": "16",
+        "name": "Al Wusţá",
+        "countryCode": "BH",
+        "countryId": 18
+    },
+    {
+        "id": 318,
+        "code": "17",
+        "name": "Ash Shamālīyah",
+        "countryCode": "BH",
+        "countryId": 18
+    },
+    {
+        "id": 319,
+        "code": "01",
+        "name": "Bandarban",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 320,
+        "code": "02",
+        "name": "Barguna",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 321,
+        "code": "03",
+        "name": "Bogra",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 322,
+        "code": "04",
+        "name": "Brahmanbaria",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 323,
+        "code": "05",
+        "name": "Bagerhat",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 324,
+        "code": "06",
+        "name": "Barisal",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 325,
+        "code": "07",
+        "name": "Bhola",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 326,
+        "code": "08",
+        "name": "Comilla",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 327,
+        "code": "09",
+        "name": "Chandpur",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 328,
+        "code": "10",
+        "name": "Chittagong",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 329,
+        "code": "11",
+        "name": "Cox's Bazar",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 330,
+        "code": "12",
+        "name": "Chuadanga",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 331,
+        "code": "13",
+        "name": "Dhaka",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 332,
+        "code": "14",
+        "name": "Dinajpur",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 333,
+        "code": "15",
+        "name": "Faridpur",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 334,
+        "code": "16",
+        "name": "Feni",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 335,
+        "code": "17",
+        "name": "Gopalganj",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 336,
+        "code": "18",
+        "name": "Gazipur",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 337,
+        "code": "19",
+        "name": "Gaibandha",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 338,
+        "code": "20",
+        "name": "Habiganj",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 339,
+        "code": "21",
+        "name": "Jamalpur",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 340,
+        "code": "22",
+        "name": "Jessore",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 341,
+        "code": "23",
+        "name": "Jhenaidah",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 342,
+        "code": "24",
+        "name": "Jaipurhat",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 343,
+        "code": "25",
+        "name": "Jhalakati",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 344,
+        "code": "26",
+        "name": "Kishoreganj",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 345,
+        "code": "27",
+        "name": "Khulna",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 346,
+        "code": "28",
+        "name": "Kurigram",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 347,
+        "code": "29",
+        "name": "Khagrachari",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 348,
+        "code": "30",
+        "name": "Kushtia",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 349,
+        "code": "31",
+        "name": "Lakshmipur",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 350,
+        "code": "32",
+        "name": "Lalmonirhat",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 351,
+        "code": "33",
+        "name": "Manikganj",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 352,
+        "code": "34",
+        "name": "Mymensingh",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 353,
+        "code": "35",
+        "name": "Munshiganj",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 354,
+        "code": "36",
+        "name": "Madaripur",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 355,
+        "code": "37",
+        "name": "Magura",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 356,
+        "code": "38",
+        "name": "Moulvibazar",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 357,
+        "code": "39",
+        "name": "Meherpur",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 358,
+        "code": "40",
+        "name": "Narayanganj",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 359,
+        "code": "41",
+        "name": "Netrakona",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 360,
+        "code": "42",
+        "name": "Narsingdi",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 361,
+        "code": "43",
+        "name": "Narail",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 362,
+        "code": "44",
+        "name": "Natore",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 363,
+        "code": "45",
+        "name": "Nawabganj",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 364,
+        "code": "46",
+        "name": "Nilphamari",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 365,
+        "code": "47",
+        "name": "Noakhali",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 366,
+        "code": "48",
+        "name": "Naogaon",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 367,
+        "code": "49",
+        "name": "Pabna",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 368,
+        "code": "50",
+        "name": "Pirojpur",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 369,
+        "code": "51",
+        "name": "Patuakhali",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 370,
+        "code": "52",
+        "name": "Panchagarh",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 371,
+        "code": "53",
+        "name": "Rajbari",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 372,
+        "code": "54",
+        "name": "Rajshahi",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 373,
+        "code": "55",
+        "name": "Rangpur",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 374,
+        "code": "56",
+        "name": "Rangamati",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 375,
+        "code": "57",
+        "name": "Sherpur",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 376,
+        "code": "58",
+        "name": "Satkhira",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 377,
+        "code": "59",
+        "name": "Sirajganj",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 378,
+        "code": "60",
+        "name": "Sylhet",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 379,
+        "code": "61",
+        "name": "Sunamganj",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 380,
+        "code": "62",
+        "name": "Shariatpur",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 381,
+        "code": "63",
+        "name": "Tangail",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 382,
+        "code": "64",
+        "name": "Thakurgaon",
+        "countryCode": "BD",
+        "countryId": 19
+    },
+    {
+        "id": 383,
+        "code": "01",
+        "name": "Christ Church",
+        "countryCode": "BB",
+        "countryId": 20
+    },
+    {
+        "id": 384,
+        "code": "02",
+        "name": "Saint Andrew",
+        "countryCode": "BB",
+        "countryId": 20
+    },
+    {
+        "id": 385,
+        "code": "03",
+        "name": "Saint George",
+        "countryCode": "BB",
+        "countryId": 20
+    },
+    {
+        "id": 386,
+        "code": "04",
+        "name": "Saint James",
+        "countryCode": "BB",
+        "countryId": 20
+    },
+    {
+        "id": 387,
+        "code": "05",
+        "name": "Saint John",
+        "countryCode": "BB",
+        "countryId": 20
+    },
+    {
+        "id": 388,
+        "code": "06",
+        "name": "Saint Joseph",
+        "countryCode": "BB",
+        "countryId": 20
+    },
+    {
+        "id": 389,
+        "code": "07",
+        "name": "Saint Lucy",
+        "countryCode": "BB",
+        "countryId": 20
+    },
+    {
+        "id": 390,
+        "code": "08",
+        "name": "Saint Michael",
+        "countryCode": "BB",
+        "countryId": 20
+    },
+    {
+        "id": 391,
+        "code": "09",
+        "name": "Saint Peter",
+        "countryCode": "BB",
+        "countryId": 20
+    },
+    {
+        "id": 392,
+        "code": "10",
+        "name": "Saint Philip",
+        "countryCode": "BB",
+        "countryId": 20
+    },
+    {
+        "id": 393,
+        "code": "11",
+        "name": "Saint Thomas",
+        "countryCode": "BB",
+        "countryId": 20
+    },
+    {
+        "id": 394,
+        "code": "HM",
+        "name": "Horad Minsk (be) - BrestGorod Minsk (ru)",
+        "countryCode": "BY",
+        "countryId": 21
+    },
+    {
+        "id": 395,
+        "code": "BR",
+        "name": "Brestskaya voblasts' (be) - Brestskaya oblast' (ru)",
+        "countryCode": "BY",
+        "countryId": 21
+    },
+    {
+        "id": 396,
+        "code": "HO",
+        "name": "Homyel'skaya voblasts' (be) - Gomel'skaya oblast' (ru)",
+        "countryCode": "BY",
+        "countryId": 21
+    },
+    {
+        "id": 397,
+        "code": "HR",
+        "name": "Hrodzenskaya voblasts' (be) - Grodnenskaya oblast' (ru)",
+        "countryCode": "BY",
+        "countryId": 21
+    },
+    {
+        "id": 398,
+        "code": "MA",
+        "name": "Mahilyowskaya voblasts' (be) - Mogilevskaya oblast' (ru)",
+        "countryCode": "BY",
+        "countryId": 21
+    },
+    {
+        "id": 399,
+        "code": "MI",
+        "name": "Minskaya voblasts' (be) - Minskaya oblast' (ru)",
+        "countryCode": "BY",
+        "countryId": 21
+    },
+    {
+        "id": 400,
+        "code": "VI",
+        "name": "Vitsyebskaya voblasts' (be) - Vitebskaya oblast' (ru)",
+        "countryCode": "BY",
+        "countryId": 21
+    },
+    {
+        "id": 401,
+        "code": "BRU",
+        "name": "Bruxelles-Capitale, Région de (fr), Brussels Hoofdstedelijk Gewest (nl)",
+        "countryCode": "BE",
+        "countryId": 22
+    },
+    {
+        "id": 402,
+        "code": "VAN",
+        "name": "Antwerpen   (VLG)",
+        "countryCode": "BE",
+        "countryId": 22
+    },
+    {
+        "id": 403,
+        "code": "VBR",
+        "name": "Vlaams Brabant (VLG)",
+        "countryCode": "BE",
+        "countryId": 22
+    },
+    {
+        "id": 404,
+        "code": "VLG",
+        "name": "Vlaamse Gewest (nl)",
+        "countryCode": "BE",
+        "countryId": 22
+    },
+    {
+        "id": 405,
+        "code": "VLI",
+        "name": "Limburg (VLG)",
+        "countryCode": "BE",
+        "countryId": 22
+    },
+    {
+        "id": 406,
+        "code": "VOV",
+        "name": "Oost-Vlaanderen (VLG)",
+        "countryCode": "BE",
+        "countryId": 22
+    },
+    {
+        "id": 407,
+        "code": "VWV",
+        "name": "West-Vlaanderen (VLG)",
+        "countryCode": "BE",
+        "countryId": 22
+    },
+    {
+        "id": 408,
+        "code": "WAL",
+        "name": "Wallonne, Région (fr)",
+        "countryCode": "BE",
+        "countryId": 22
+    },
+    {
+        "id": 409,
+        "code": "WBR",
+        "name": "Brabant Wallon (WAL)",
+        "countryCode": "BE",
+        "countryId": 22
+    },
+    {
+        "id": 410,
+        "code": "WHT",
+        "name": "Hainaut (WAL)",
+        "countryCode": "BE",
+        "countryId": 22
+    },
+    {
+        "id": 411,
+        "code": "WLG",
+        "name": "Liège (WAL)",
+        "countryCode": "BE",
+        "countryId": 22
+    },
+    {
+        "id": 412,
+        "code": "WLX",
+        "name": "Luxembourg (WAL)",
+        "countryCode": "BE",
+        "countryId": 22
+    },
+    {
+        "id": 413,
+        "code": "WNA",
+        "name": "Namur (WAL)",
+        "countryCode": "BE",
+        "countryId": 22
+    },
+    {
+        "id": 414,
+        "code": "BZ",
+        "name": "Belize",
+        "countryCode": "BZ",
+        "countryId": 23
+    },
+    {
+        "id": 415,
+        "code": "CY",
+        "name": "Cayo",
+        "countryCode": "BZ",
+        "countryId": 23
+    },
+    {
+        "id": 416,
+        "code": "CZL",
+        "name": "Corozal",
+        "countryCode": "BZ",
+        "countryId": 23
+    },
+    {
+        "id": 417,
+        "code": "OW",
+        "name": "Orange Walk",
+        "countryCode": "BZ",
+        "countryId": 23
+    },
+    {
+        "id": 418,
+        "code": "SC",
+        "name": "Stann Creek",
+        "countryCode": "BZ",
+        "countryId": 23
+    },
+    {
+        "id": 419,
+        "code": "TOL",
+        "name": "Toledo",
+        "countryCode": "BZ",
+        "countryId": 23
+    },
+    {
+        "id": 420,
+        "code": "AK",
+        "name": "Atakora",
+        "countryCode": "BJ",
+        "countryId": 24
+    },
+    {
+        "id": 421,
+        "code": "AL",
+        "name": "Alibori",
+        "countryCode": "BJ",
+        "countryId": 24
+    },
+    {
+        "id": 422,
+        "code": "AQ",
+        "name": "Atlantique",
+        "countryCode": "BJ",
+        "countryId": 24
+    },
+    {
+        "id": 423,
+        "code": "BO",
+        "name": "Borgou",
+        "countryCode": "BJ",
+        "countryId": 24
+    },
+    {
+        "id": 424,
+        "code": "CO",
+        "name": "Collines",
+        "countryCode": "BJ",
+        "countryId": 24
+    },
+    {
+        "id": 425,
+        "code": "DO",
+        "name": "Donga",
+        "countryCode": "BJ",
+        "countryId": 24
+    },
+    {
+        "id": 426,
+        "code": "KO",
+        "name": "Kouffo",
+        "countryCode": "BJ",
+        "countryId": 24
+    },
+    {
+        "id": 427,
+        "code": "LI",
+        "name": "Littoral",
+        "countryCode": "BJ",
+        "countryId": 24
+    },
+    {
+        "id": 428,
+        "code": "MO",
+        "name": "Mono",
+        "countryCode": "BJ",
+        "countryId": 24
+    },
+    {
+        "id": 429,
+        "code": "OU",
+        "name": "Ouémé",
+        "countryCode": "BJ",
+        "countryId": 24
+    },
+    {
+        "id": 430,
+        "code": "PL",
+        "name": "Plateau",
+        "countryCode": "BJ",
+        "countryId": 24
+    },
+    {
+        "id": 431,
+        "code": "ZO",
+        "name": "Zou",
+        "countryCode": "BJ",
+        "countryId": 24
+    },
+    {
+        "id": 432,
+        "code": "11",
+        "name": "Paro",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 433,
+        "code": "12",
+        "name": "Chhukha",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 434,
+        "code": "13",
+        "name": "Ha",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 435,
+        "code": "14",
+        "name": "Samtse",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 436,
+        "code": "15",
+        "name": "Thimphu",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 437,
+        "code": "21",
+        "name": "Tsirang",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 438,
+        "code": "22",
+        "name": "Dagana",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 439,
+        "code": "23",
+        "name": "Punakha",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 440,
+        "code": "24",
+        "name": "Wangdue Phodrang",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 441,
+        "code": "31",
+        "name": "Sarpang",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 442,
+        "code": "32",
+        "name": "Trongsa",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 443,
+        "code": "33",
+        "name": "Bumthang",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 444,
+        "code": "34",
+        "name": "Zhemgang",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 445,
+        "code": "41",
+        "name": "Trashigang",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 446,
+        "code": "42",
+        "name": "Monggar",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 447,
+        "code": "43",
+        "name": "Pemagatshel",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 448,
+        "code": "44",
+        "name": "Lhuentse",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 449,
+        "code": "45",
+        "name": "Samdrup Jongkha",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 450,
+        "code": "GA",
+        "name": "Gasa",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 451,
+        "code": "TY",
+        "name": "Trashi Yangtse",
+        "countryCode": "BT",
+        "countryId": 26
+    },
+    {
+        "id": 452,
+        "code": "B",
+        "name": "El Beni",
+        "countryCode": "BO",
+        "countryId": 27
+    },
+    {
+        "id": 453,
+        "code": "C",
+        "name": "Cochabamba",
+        "countryCode": "BO",
+        "countryId": 27
+    },
+    {
+        "id": 454,
+        "code": "H",
+        "name": "Chuquisaca",
+        "countryCode": "BO",
+        "countryId": 27
+    },
+    {
+        "id": 455,
+        "code": "L",
+        "name": "La Paz",
+        "countryCode": "BO",
+        "countryId": 27
+    },
+    {
+        "id": 456,
+        "code": "N",
+        "name": "Pando",
+        "countryCode": "BO",
+        "countryId": 27
+    },
+    {
+        "id": 457,
+        "code": "O",
+        "name": "Oruro",
+        "countryCode": "BO",
+        "countryId": 27
+    },
+    {
+        "id": 458,
+        "code": "P",
+        "name": "Potosí",
+        "countryCode": "BO",
+        "countryId": 27
+    },
+    {
+        "id": 459,
+        "code": "S",
+        "name": "Santa Cruz",
+        "countryCode": "BO",
+        "countryId": 27
+    },
+    {
+        "id": 460,
+        "code": "T",
+        "name": "Tarija",
+        "countryCode": "BO",
+        "countryId": 27
+    },
+    {
+        "id": 461,
+        "code": "BO",
+        "name": "Boneiru",
+        "countryCode": "BQ",
+        "countryId": 28
+    },
+    {
+        "id": 462,
+        "code": "SA",
+        "name": "Saba",
+        "countryCode": "BQ",
+        "countryId": 28
+    },
+    {
+        "id": 463,
+        "code": "SE",
+        "name": "Sint Eustatius",
+        "countryCode": "BQ",
+        "countryId": 28
+    },
+    {
+        "id": 464,
+        "code": "01",
+        "name": "Unsko-Sanski Kanton",
+        "countryCode": "BA",
+        "countryId": 29
+    },
+    {
+        "id": 465,
+        "code": "02",
+        "name": "Posavski Kanton",
+        "countryCode": "BA",
+        "countryId": 29
+    },
+    {
+        "id": 466,
+        "code": "03",
+        "name": "Tuzlanski Kanton",
+        "countryCode": "BA",
+        "countryId": 29
+    },
+    {
+        "id": 467,
+        "code": "04",
+        "name": "Zeničko-dobojski Kanton",
+        "countryCode": "BA",
+        "countryId": 29
+    },
+    {
+        "id": 468,
+        "code": "05",
+        "name": "Bosansko-Podrinjski Kanton",
+        "countryCode": "BA",
+        "countryId": 29
+    },
+    {
+        "id": 469,
+        "code": "06",
+        "name": "Srednjobosanski Kanton",
+        "countryCode": "BA",
+        "countryId": 29
+    },
+    {
+        "id": 470,
+        "code": "07",
+        "name": "Hercegovačko-neretvanski Kanton",
+        "countryCode": "BA",
+        "countryId": 29
+    },
+    {
+        "id": 471,
+        "code": "08",
+        "name": "Zapadnohercegovački Kanton",
+        "countryCode": "BA",
+        "countryId": 29
+    },
+    {
+        "id": 472,
+        "code": "09",
+        "name": "Kanton Sarajevo",
+        "countryCode": "BA",
+        "countryId": 29
+    },
+    {
+        "id": 473,
+        "code": "10",
+        "name": "Kanton br. 10 (Livanjski kanton)",
+        "countryCode": "BA",
+        "countryId": 29
+    },
+    {
+        "id": 474,
+        "code": "BRC",
+        "name": "Brčko Distrikt",
+        "countryCode": "BA",
+        "countryId": 29
+    },
+    {
+        "id": 475,
+        "code": "BIH",
+        "name": "Federacija Bosne i Hercegovine",
+        "countryCode": "BA",
+        "countryId": 29
+    },
+    {
+        "id": 476,
+        "code": "SRP",
+        "name": "Republika Srpska",
+        "countryCode": "BA",
+        "countryId": 29
+    },
+    {
+        "id": 477,
+        "code": "CE",
+        "name": "Central",
+        "countryCode": "BW",
+        "countryId": 30
+    },
+    {
+        "id": 478,
+        "code": "GH",
+        "name": "Ghanzi",
+        "countryCode": "BW",
+        "countryId": 30
+    },
+    {
+        "id": 479,
+        "code": "KG",
+        "name": "Kgalagadi",
+        "countryCode": "BW",
+        "countryId": 30
+    },
+    {
+        "id": 480,
+        "code": "KL",
+        "name": "Kgatleng",
+        "countryCode": "BW",
+        "countryId": 30
+    },
+    {
+        "id": 481,
+        "code": "KW",
+        "name": "Kweneng",
+        "countryCode": "BW",
+        "countryId": 30
+    },
+    {
+        "id": 482,
+        "code": "NE",
+        "name": "North-East",
+        "countryCode": "BW",
+        "countryId": 30
+    },
+    {
+        "id": 483,
+        "code": "NW",
+        "name": "North-West",
+        "countryCode": "BW",
+        "countryId": 30
+    },
+    {
+        "id": 484,
+        "code": "SE",
+        "name": "South-East",
+        "countryCode": "BW",
+        "countryId": 30
+    },
+    {
+        "id": 485,
+        "code": "SO",
+        "name": "Southern",
+        "countryCode": "BW",
+        "countryId": 30
+    },
+    {
+        "id": 486,
+        "code": "AC",
+        "name": "Acre",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 487,
+        "code": "AL",
+        "name": "Alagoas",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 488,
+        "code": "AM",
+        "name": "Amazonas",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 489,
+        "code": "AP",
+        "name": "Amapá",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 490,
+        "code": "BA",
+        "name": "Bahia",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 491,
+        "code": "CE",
+        "name": "Ceará",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 492,
+        "code": "DF",
+        "name": "Distrito Federal",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 493,
+        "code": "ES",
+        "name": "Espírito Santo",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 494,
+        "code": "GO",
+        "name": "Goiás",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 495,
+        "code": "MA",
+        "name": "Maranhão",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 496,
+        "code": "MG",
+        "name": "Minas Gerais",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 497,
+        "code": "MS",
+        "name": "Mato Grosso do Sul",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 498,
+        "code": "MT",
+        "name": "Mato Grosso",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 499,
+        "code": "PA",
+        "name": "Pará",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 500,
+        "code": "PB",
+        "name": "Paraíba",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 501,
+        "code": "PE",
+        "name": "Pernambuco",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 502,
+        "code": "PI",
+        "name": "Piauí",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 503,
+        "code": "PR",
+        "name": "Paraná",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 504,
+        "code": "RJ",
+        "name": "Rio de Janeiro",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 505,
+        "code": "RN",
+        "name": "Rio Grande do Norte",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 506,
+        "code": "RO",
+        "name": "Rondônia",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 507,
+        "code": "RR",
+        "name": "Roraima",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 508,
+        "code": "RS",
+        "name": "Rio Grande do Sul",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 509,
+        "code": "SC",
+        "name": "Santa Catarina",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 510,
+        "code": "SE",
+        "name": "Sergipe",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 511,
+        "code": "SP",
+        "name": "São Paulo",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 512,
+        "code": "TO",
+        "name": "Tocantins",
+        "countryCode": "BR",
+        "countryId": 32
+    },
+    {
+        "id": 513,
+        "code": "BE",
+        "name": "Belait",
+        "countryCode": "BN",
+        "countryId": 34
+    },
+    {
+        "id": 514,
+        "code": "BM",
+        "name": "Brunei-Muara",
+        "countryCode": "BN",
+        "countryId": 34
+    },
+    {
+        "id": 515,
+        "code": "TE",
+        "name": "Temburong",
+        "countryCode": "BN",
+        "countryId": 34
+    },
+    {
+        "id": 516,
+        "code": "TU",
+        "name": "Tutong",
+        "countryCode": "BN",
+        "countryId": 34
+    },
+    {
+        "id": 517,
+        "code": "01",
+        "name": "Blagoevgrad",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 518,
+        "code": "02",
+        "name": "Burgas",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 519,
+        "code": "03",
+        "name": "Varna",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 520,
+        "code": "04",
+        "name": "Veliko Tarnovo",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 521,
+        "code": "05",
+        "name": "Vidin",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 522,
+        "code": "06",
+        "name": "Vratsa",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 523,
+        "code": "07",
+        "name": "Gabrovo",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 524,
+        "code": "08",
+        "name": "Dobrich",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 525,
+        "code": "09",
+        "name": "Kardzhali",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 526,
+        "code": "10",
+        "name": "Kjustendil",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 527,
+        "code": "11",
+        "name": "Lovech",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 528,
+        "code": "12",
+        "name": "Montana",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 529,
+        "code": "13",
+        "name": "Pazardzhik",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 530,
+        "code": "14",
+        "name": "Pernik",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 531,
+        "code": "15",
+        "name": "Pleven",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 532,
+        "code": "16",
+        "name": "Plovdiv",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 533,
+        "code": "17",
+        "name": "Razgrad",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 534,
+        "code": "18",
+        "name": "Ruse",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 535,
+        "code": "19",
+        "name": "Silistra",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 536,
+        "code": "20",
+        "name": "Sliven",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 537,
+        "code": "21",
+        "name": "Smolyan",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 538,
+        "code": "22",
+        "name": "Sofija-Grad",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 539,
+        "code": "23",
+        "name": "Sofia",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 540,
+        "code": "24",
+        "name": "Stara Zagora",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 541,
+        "code": "25",
+        "name": "Targovishte",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 542,
+        "code": "26",
+        "name": "Haskovo",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 543,
+        "code": "27",
+        "name": "Shumen",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 544,
+        "code": "28",
+        "name": "Yambol",
+        "countryCode": "BG",
+        "countryId": 35
+    },
+    {
+        "id": 545,
+        "code": "BAL",
+        "name": "Balé",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 546,
+        "code": "BAM",
+        "name": "Bam",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 547,
+        "code": "BAN",
+        "name": "Banwa",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 548,
+        "code": "BAZ",
+        "name": "Bazéga",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 549,
+        "code": "BGR",
+        "name": "Bougouriba",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 550,
+        "code": "BLG",
+        "name": "Boulgou",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 551,
+        "code": "BLK",
+        "name": "Boulkiemdé",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 552,
+        "code": "COM",
+        "name": "Comoé",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 553,
+        "code": "GAN",
+        "name": "Ganzourgou",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 554,
+        "code": "GNA",
+        "name": "Gnagna",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 555,
+        "code": "GOU",
+        "name": "Gourma",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 556,
+        "code": "HOU",
+        "name": "Houet",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 557,
+        "code": "IOB",
+        "name": "Ioba",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 558,
+        "code": "KAD",
+        "name": "Kadiogo",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 559,
+        "code": "KEN",
+        "name": "Kénédougou",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 560,
+        "code": "KMD",
+        "name": "Komondjari",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 561,
+        "code": "KMP",
+        "name": "Kompienga",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 562,
+        "code": "KOP",
+        "name": "Koulpélogo",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 563,
+        "code": "KOS",
+        "name": "Kossi",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 564,
+        "code": "KOT",
+        "name": "Kouritenga",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 565,
+        "code": "KOW",
+        "name": "Kourwéogo",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 566,
+        "code": "LER",
+        "name": "Léraba",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 567,
+        "code": "LOR",
+        "name": "Loroum",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 568,
+        "code": "MOU",
+        "name": "Mouhoun",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 569,
+        "code": "NAM",
+        "name": "Namentenga",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 570,
+        "code": "NAO",
+        "name": "Nahouri",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 571,
+        "code": "NAY",
+        "name": "Nayala",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 572,
+        "code": "NOU",
+        "name": "Noumbiel",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 573,
+        "code": "OUB",
+        "name": "Oubritenga",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 574,
+        "code": "OUD",
+        "name": "Oudalan",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 575,
+        "code": "PAS",
+        "name": "Passoré",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 576,
+        "code": "PON",
+        "name": "Poni",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 577,
+        "code": "SEN",
+        "name": "Séno",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 578,
+        "code": "SIS",
+        "name": "Sissili",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 579,
+        "code": "SMT",
+        "name": "Sanmatenga",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 580,
+        "code": "SNG",
+        "name": "Sanguié",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 581,
+        "code": "SOM",
+        "name": "Soum",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 582,
+        "code": "SOR",
+        "name": "Sourou",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 583,
+        "code": "TAP",
+        "name": "Tapoa",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 584,
+        "code": "TUI",
+        "name": "Tui",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 585,
+        "code": "YAG",
+        "name": "Yagha",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 586,
+        "code": "YAT",
+        "name": "Yatenga",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 587,
+        "code": "ZIR",
+        "name": "Ziro",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 588,
+        "code": "ZON",
+        "name": "Zondoma",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 589,
+        "code": "ZOU",
+        "name": "Zoundwéogo",
+        "countryCode": "BF",
+        "countryId": 36
+    },
+    {
+        "id": 590,
+        "code": "BB",
+        "name": "Bubanza",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 591,
+        "code": "BL",
+        "name": "Bujumbura Rural",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 592,
+        "code": "BM",
+        "name": "Bujumbura Mairie",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 593,
+        "code": "BR",
+        "name": "Bururi",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 594,
+        "code": "CA",
+        "name": "Cankuzo",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 595,
+        "code": "CI",
+        "name": "Cibitoke",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 596,
+        "code": "GI",
+        "name": "Gitega",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 597,
+        "code": "KI",
+        "name": "Kirundo",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 598,
+        "code": "KR",
+        "name": "Karuzi",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 599,
+        "code": "KY",
+        "name": "Kayanza",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 600,
+        "code": "MA",
+        "name": "Makamba",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 601,
+        "code": "MU",
+        "name": "Muramvya",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 602,
+        "code": "MW",
+        "name": "Mwaro",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 603,
+        "code": "MY",
+        "name": "Muyinga",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 604,
+        "code": "NG",
+        "name": "Ngozi",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 605,
+        "code": "RT",
+        "name": "Rutana",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 606,
+        "code": "RY",
+        "name": "Ruyigi",
+        "countryCode": "BI",
+        "countryId": 37
+    },
+    {
+        "id": 607,
+        "code": "1",
+        "name": "Banteay Mean Chey",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 608,
+        "code": "10",
+        "name": "Kracheh",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 609,
+        "code": "11",
+        "name": "Mondol Kiri",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 610,
+        "code": "12",
+        "name": "Phnom Penh",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 611,
+        "code": "13",
+        "name": "Preah Vihear",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 612,
+        "code": "14",
+        "name": "Prey Veaeng",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 613,
+        "code": "15",
+        "name": "Pousaat",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 614,
+        "code": "16",
+        "name": "Rotanak Kiri",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 615,
+        "code": "17",
+        "name": "Siem Reab",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 616,
+        "code": "18",
+        "name": "Krong Preah Sihanouk",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 617,
+        "code": "19",
+        "name": "Stueng Traeng",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 618,
+        "code": "2",
+        "name": "Baat Dambang",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 619,
+        "code": "20",
+        "name": "Svaay Rieng",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 620,
+        "code": "21",
+        "name": "Taakaev",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 621,
+        "code": "22",
+        "name": "Otdar Mean Chey",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 622,
+        "code": "23",
+        "name": "Krong Kaeb",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 623,
+        "code": "24",
+        "name": "Krong Pailin",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 624,
+        "code": "3",
+        "name": "Kampong Chaam",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 625,
+        "code": "4",
+        "name": "Kampong Chhnang",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 626,
+        "code": "5",
+        "name": "Kampong Spueu",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 627,
+        "code": "6",
+        "name": "Kampong Thum",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 628,
+        "code": "7",
+        "name": "Kampot",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 629,
+        "code": "8",
+        "name": "Kandaal",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 630,
+        "code": "9",
+        "name": "Kaoh Kong",
+        "countryCode": "KH",
+        "countryId": 38
+    },
+    {
+        "id": 631,
+        "code": "AD",
+        "name": "Adamaoua",
+        "countryCode": "CM",
+        "countryId": 39
+    },
+    {
+        "id": 632,
+        "code": "CE",
+        "name": "Centre",
+        "countryCode": "CM",
+        "countryId": 39
+    },
+    {
+        "id": 633,
+        "code": "EN",
+        "name": "Far North",
+        "countryCode": "CM",
+        "countryId": 39
+    },
+    {
+        "id": 634,
+        "code": "ES",
+        "name": "East",
+        "countryCode": "CM",
+        "countryId": 39
+    },
+    {
+        "id": 635,
+        "code": "LT",
+        "name": "Littoral",
+        "countryCode": "CM",
+        "countryId": 39
+    },
+    {
+        "id": 636,
+        "code": "NO",
+        "name": "North",
+        "countryCode": "CM",
+        "countryId": 39
+    },
+    {
+        "id": 637,
+        "code": "NW",
+        "name": "North-West",
+        "countryCode": "CM",
+        "countryId": 39
+    },
+    {
+        "id": 638,
+        "code": "OU",
+        "name": "West",
+        "countryCode": "CM",
+        "countryId": 39
+    },
+    {
+        "id": 639,
+        "code": "SU",
+        "name": "South",
+        "countryCode": "CM",
+        "countryId": 39
+    },
+    {
+        "id": 640,
+        "code": "SW",
+        "name": "South-West",
+        "countryCode": "CM",
+        "countryId": 39
+    },
+    {
+        "id": 641,
+        "code": "AB",
+        "name": "Alberta",
+        "countryCode": "CA",
+        "countryId": 40
+    },
+    {
+        "id": 642,
+        "code": "BC",
+        "name": "British Columbia",
+        "countryCode": "CA",
+        "countryId": 40
+    },
+    {
+        "id": 643,
+        "code": "MB",
+        "name": "Manitoba",
+        "countryCode": "CA",
+        "countryId": 40
+    },
+    {
+        "id": 644,
+        "code": "NB",
+        "name": "New Brunswick",
+        "countryCode": "CA",
+        "countryId": 40
+    },
+    {
+        "id": 645,
+        "code": "NL",
+        "name": "Newfoundland and Labrador",
+        "countryCode": "CA",
+        "countryId": 40
+    },
+    {
+        "id": 646,
+        "code": "NS",
+        "name": "Nova Scotia",
+        "countryCode": "CA",
+        "countryId": 40
+    },
+    {
+        "id": 647,
+        "code": "NT",
+        "name": "Northwest Territories",
+        "countryCode": "CA",
+        "countryId": 40
+    },
+    {
+        "id": 648,
+        "code": "NU",
+        "name": "Nunavut",
+        "countryCode": "CA",
+        "countryId": 40
+    },
+    {
+        "id": 649,
+        "code": "ON",
+        "name": "Ontario",
+        "countryCode": "CA",
+        "countryId": 40
+    },
+    {
+        "id": 650,
+        "code": "PE",
+        "name": "Prince Edward Island",
+        "countryCode": "CA",
+        "countryId": 40
+    },
+    {
+        "id": 651,
+        "code": "QC",
+        "name": "Quebec",
+        "countryCode": "CA",
+        "countryId": 40
+    },
+    {
+        "id": 652,
+        "code": "SK",
+        "name": "Saskatchewan",
+        "countryCode": "CA",
+        "countryId": 40
+    },
+    {
+        "id": 653,
+        "code": "YT",
+        "name": "Yukon Territory",
+        "countryCode": "CA",
+        "countryId": 40
+    },
+    {
+        "id": 654,
+        "code": "BR",
+        "name": "Brava",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 655,
+        "code": "BV",
+        "name": "Boa Vista",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 656,
+        "code": "CA",
+        "name": "Santa Catarina",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 657,
+        "code": "CF",
+        "name": "Santa Catarina do Fogo",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 658,
+        "code": "CR",
+        "name": "Santa Cruz",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 659,
+        "code": "MA",
+        "name": "Maio",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 660,
+        "code": "MO",
+        "name": "Mosteiros",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 661,
+        "code": "PA",
+        "name": "Paul",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 662,
+        "code": "PN",
+        "name": "Porto Novo",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 663,
+        "code": "PR",
+        "name": "Praia",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 664,
+        "code": "RB",
+        "name": "Ribeira Brava",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 665,
+        "code": "RG",
+        "name": "Ribeira Grande",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 666,
+        "code": "RS",
+        "name": "Ribeira Grande de Santiago",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 667,
+        "code": "SD",
+        "name": "São Domingos",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 668,
+        "code": "SF",
+        "name": "São Filipe",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 669,
+        "code": "SL",
+        "name": "Sal",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 670,
+        "code": "SM",
+        "name": "São Miguel",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 671,
+        "code": "SS",
+        "name": "São Salvador do Mundo",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 672,
+        "code": "SV",
+        "name": "São Vicente",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 673,
+        "code": "TA",
+        "name": "Tarrafal",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 674,
+        "code": "TS",
+        "name": "Tarrafal de São Nicolau",
+        "countryCode": "CV",
+        "countryId": 41
+    },
+    {
+        "id": 675,
+        "code": "AC",
+        "name": "Ouham",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 676,
+        "code": "BB",
+        "name": "Bamingui-Bangoran",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 677,
+        "code": "BGF",
+        "name": "Bangui",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 678,
+        "code": "BK",
+        "name": "Basse-Kotto",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 679,
+        "code": "HK",
+        "name": "Haute-Kotto",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 680,
+        "code": "HM",
+        "name": "Haut-Mbomou",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 681,
+        "code": "HS",
+        "name": "Haute-Sangha \/ Mambéré-Kadéï",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 682,
+        "code": "KB",
+        "name": "Gribingui",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 683,
+        "code": "KG",
+        "name": "Kémo-Gribingui",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 684,
+        "code": "LB",
+        "name": "Lobaye",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 685,
+        "code": "MB",
+        "name": "Mbomou",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 686,
+        "code": "MP",
+        "name": "Ombella-Mpoko",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 687,
+        "code": "NM",
+        "name": "Nana-Mambéré",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 688,
+        "code": "OP",
+        "name": "Ouham-Pendé",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 689,
+        "code": "SE",
+        "name": "Sangha",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 690,
+        "code": "UK",
+        "name": "Ouaka",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 691,
+        "code": "VK",
+        "name": "Vakaga",
+        "countryCode": "CF",
+        "countryId": 43
+    },
+    {
+        "id": 692,
+        "code": "BA",
+        "name": "Batha",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 693,
+        "code": "BG",
+        "name": "Bahr el Gazel",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 694,
+        "code": "BO",
+        "name": "Borkou",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 695,
+        "code": "CB",
+        "name": "Chari-Baguirmi",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 696,
+        "code": "EN",
+        "name": "Ennedi",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 697,
+        "code": "GR",
+        "name": "Guéra",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 698,
+        "code": "HL",
+        "name": "Hadjer Lamis",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 699,
+        "code": "KA",
+        "name": "Kanem",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 700,
+        "code": "LC",
+        "name": "Lac",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 701,
+        "code": "LO",
+        "name": "Logone-Occidental",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 702,
+        "code": "LR",
+        "name": "Logone-Oriental",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 703,
+        "code": "MA",
+        "name": "Mandoul",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 704,
+        "code": "MC",
+        "name": "Moyen-Chari",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 705,
+        "code": "ME",
+        "name": "Mayo-Kébbi-Est",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 706,
+        "code": "MO",
+        "name": "Mayo-Kébbi-Ouest",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 707,
+        "code": "ND",
+        "name": "Ndjamena",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 708,
+        "code": "OD",
+        "name": "Ouaddaï",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 709,
+        "code": "SA",
+        "name": "Salamat",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 710,
+        "code": "SI",
+        "name": "Sila",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 711,
+        "code": "TA",
+        "name": "Tandjilé",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 712,
+        "code": "TI",
+        "name": "Tibesti",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 713,
+        "code": "WF",
+        "name": "Wadi Fira",
+        "countryCode": "TD",
+        "countryId": 44
+    },
+    {
+        "id": 714,
+        "code": "AI",
+        "name": "Aisén del General Carlos Ibáñez del Campo",
+        "countryCode": "CL",
+        "countryId": 45
+    },
+    {
+        "id": 715,
+        "code": "AN",
+        "name": "Antofagasta",
+        "countryCode": "CL",
+        "countryId": 45
+    },
+    {
+        "id": 716,
+        "code": "AP",
+        "name": "Arica y Parinacota",
+        "countryCode": "CL",
+        "countryId": 45
+    },
+    {
+        "id": 717,
+        "code": "AR",
+        "name": "Araucanía",
+        "countryCode": "CL",
+        "countryId": 45
+    },
+    {
+        "id": 718,
+        "code": "AT",
+        "name": "Atacama",
+        "countryCode": "CL",
+        "countryId": 45
+    },
+    {
+        "id": 719,
+        "code": "BI",
+        "name": "Bío-Bío",
+        "countryCode": "CL",
+        "countryId": 45
+    },
+    {
+        "id": 720,
+        "code": "CO",
+        "name": "Coquimbo",
+        "countryCode": "CL",
+        "countryId": 45
+    },
+    {
+        "id": 721,
+        "code": "LI",
+        "name": "Libertador General Bernardo O'Higgins",
+        "countryCode": "CL",
+        "countryId": 45
+    },
+    {
+        "id": 722,
+        "code": "LL",
+        "name": "Los Lagos",
+        "countryCode": "CL",
+        "countryId": 45
+    },
+    {
+        "id": 723,
+        "code": "LR",
+        "name": "Los Ríos",
+        "countryCode": "CL",
+        "countryId": 45
+    },
+    {
+        "id": 724,
+        "code": "MA",
+        "name": "Magallanes",
+        "countryCode": "CL",
+        "countryId": 45
+    },
+    {
+        "id": 725,
+        "code": "ML",
+        "name": "Maule",
+        "countryCode": "CL",
+        "countryId": 45
+    },
+    {
+        "id": 726,
+        "code": "RM",
+        "name": "Región Metropolitana de Santiago",
+        "countryCode": "CL",
+        "countryId": 45
+    },
+    {
+        "id": 727,
+        "code": "TA",
+        "name": "Tarapacá",
+        "countryCode": "CL",
+        "countryId": 45
+    },
+    {
+        "id": 728,
+        "code": "VS",
+        "name": "Valparaíso",
+        "countryCode": "CL",
+        "countryId": 45
+    },
+    {
+        "id": 729,
+        "code": "11",
+        "name": "Beijing",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 730,
+        "code": "12",
+        "name": "Tianjin",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 731,
+        "code": "13",
+        "name": "Hebei",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 732,
+        "code": "14",
+        "name": "Shanxi",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 733,
+        "code": "15",
+        "name": "Nei Mongol (mn)",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 734,
+        "code": "21",
+        "name": "Liaoning",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 735,
+        "code": "22",
+        "name": "Jilin",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 736,
+        "code": "23",
+        "name": "Heilongjiang",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 737,
+        "code": "31",
+        "name": "Shanghai",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 738,
+        "code": "32",
+        "name": "Jiangsu",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 739,
+        "code": "33",
+        "name": "Zhejiang",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 740,
+        "code": "34",
+        "name": "Anhui",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 741,
+        "code": "35",
+        "name": "Fujian",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 742,
+        "code": "36",
+        "name": "Jiangxi",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 743,
+        "code": "37",
+        "name": "Shandong",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 744,
+        "code": "41",
+        "name": "Henan",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 745,
+        "code": "42",
+        "name": "Hubei",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 746,
+        "code": "43",
+        "name": "Hunan",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 747,
+        "code": "44",
+        "name": "Guangdong",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 748,
+        "code": "45",
+        "name": "Guangxi",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 749,
+        "code": "46",
+        "name": "Hainan",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 750,
+        "code": "50",
+        "name": "Chongqing",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 751,
+        "code": "51",
+        "name": "Sichuan",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 752,
+        "code": "52",
+        "name": "Guizhou",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 753,
+        "code": "53",
+        "name": "Yunnan",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 754,
+        "code": "54",
+        "name": "Xizang",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 755,
+        "code": "61",
+        "name": "Shaanxi",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 756,
+        "code": "62",
+        "name": "Gansu",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 757,
+        "code": "63",
+        "name": "Qinghai",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 758,
+        "code": "64",
+        "name": "Ningxia",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 759,
+        "code": "65",
+        "name": "Xinjiang",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 760,
+        "code": "71",
+        "name": "Taiwan",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 761,
+        "code": "91",
+        "name": "Xianggang",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 762,
+        "code": "92",
+        "name": "Aomen",
+        "countryCode": "CN",
+        "countryId": 46
+    },
+    {
+        "id": 763,
+        "code": "AMA",
+        "name": "Amazonas",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 764,
+        "code": "ANT",
+        "name": "Antioquia",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 765,
+        "code": "ARA",
+        "name": "Arauca",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 766,
+        "code": "ATL",
+        "name": "Atlántico",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 767,
+        "code": "BOL",
+        "name": "Bolívar",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 768,
+        "code": "BOY",
+        "name": "Boyacá",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 769,
+        "code": "CAL",
+        "name": "Caldas",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 770,
+        "code": "CAQ",
+        "name": "Caquetá",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 771,
+        "code": "CAS",
+        "name": "Casanare",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 772,
+        "code": "CAU",
+        "name": "Cauca",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 773,
+        "code": "CES",
+        "name": "Cesar",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 774,
+        "code": "CHO",
+        "name": "Chocó",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 775,
+        "code": "COR",
+        "name": "Córdoba",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 776,
+        "code": "CUN",
+        "name": "Cundinamarca",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 777,
+        "code": "DC",
+        "name": "Distrito Capital de Bogotá",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 778,
+        "code": "GUA",
+        "name": "Guainía",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 779,
+        "code": "GUV",
+        "name": "Guaviare",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 780,
+        "code": "HUI",
+        "name": "Huila",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 781,
+        "code": "LAG",
+        "name": "La Guajira",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 782,
+        "code": "MAG",
+        "name": "Magdalena",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 783,
+        "code": "MET",
+        "name": "Meta",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 784,
+        "code": "NAR",
+        "name": "Nariño",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 785,
+        "code": "NSA",
+        "name": "Norte de Santander",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 786,
+        "code": "PUT",
+        "name": "Putumayo",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 787,
+        "code": "QUI",
+        "name": "Quindío",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 788,
+        "code": "RIS",
+        "name": "Risaralda",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 789,
+        "code": "SAN",
+        "name": "Santander",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 790,
+        "code": "SAP",
+        "name": "San Andrés, Providencia y Santa Catalina",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 791,
+        "code": "SUC",
+        "name": "Sucre",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 792,
+        "code": "TOL",
+        "name": "Tolima",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 793,
+        "code": "VAC",
+        "name": "Valle del Cauca",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 794,
+        "code": "VAU",
+        "name": "Vaupés",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 795,
+        "code": "VID",
+        "name": "Vichada",
+        "countryCode": "CO",
+        "countryId": 49
+    },
+    {
+        "id": 796,
+        "code": "A",
+        "name": "Anjouan",
+        "countryCode": "KM",
+        "countryId": 50
+    },
+    {
+        "id": 797,
+        "code": "G",
+        "name": "Grande Comore",
+        "countryCode": "KM",
+        "countryId": 50
+    },
+    {
+        "id": 798,
+        "code": "M",
+        "name": "Mohéli",
+        "countryCode": "KM",
+        "countryId": 50
+    },
+    {
+        "id": 799,
+        "code": "11",
+        "name": "Bouenza",
+        "countryCode": "CG",
+        "countryId": 51
+    },
+    {
+        "id": 800,
+        "code": "12",
+        "name": "Pool",
+        "countryCode": "CG",
+        "countryId": 51
+    },
+    {
+        "id": 801,
+        "code": "13",
+        "name": "Sangha",
+        "countryCode": "CG",
+        "countryId": 51
+    },
+    {
+        "id": 802,
+        "code": "14",
+        "name": "Plateaux",
+        "countryCode": "CG",
+        "countryId": 51
+    },
+    {
+        "id": 803,
+        "code": "15",
+        "name": "Cuvette-Ouest",
+        "countryCode": "CG",
+        "countryId": 51
+    },
+    {
+        "id": 804,
+        "code": "2",
+        "name": "Lékoumou",
+        "countryCode": "CG",
+        "countryId": 51
+    },
+    {
+        "id": 805,
+        "code": "5",
+        "name": "Kouilou",
+        "countryCode": "CG",
+        "countryId": 51
+    },
+    {
+        "id": 806,
+        "code": "7",
+        "name": "Likouala",
+        "countryCode": "CG",
+        "countryId": 51
+    },
+    {
+        "id": 807,
+        "code": "8",
+        "name": "Cuvette",
+        "countryCode": "CG",
+        "countryId": 51
+    },
+    {
+        "id": 808,
+        "code": "9",
+        "name": "Niari",
+        "countryCode": "CG",
+        "countryId": 51
+    },
+    {
+        "id": 809,
+        "code": "BZV",
+        "name": "Brazzaville",
+        "countryCode": "CG",
+        "countryId": 51
+    },
+    {
+        "id": 810,
+        "code": "BC",
+        "name": "Bas-Congo",
+        "countryCode": "CD",
+        "countryId": 52
+    },
+    {
+        "id": 811,
+        "code": "BN",
+        "name": "Bandundu",
+        "countryCode": "CD",
+        "countryId": 52
+    },
+    {
+        "id": 812,
+        "code": "EQ",
+        "name": "Équateur",
+        "countryCode": "CD",
+        "countryId": 52
+    },
+    {
+        "id": 813,
+        "code": "KA",
+        "name": "Katanga",
+        "countryCode": "CD",
+        "countryId": 52
+    },
+    {
+        "id": 814,
+        "code": "KE",
+        "name": "Kasai-Oriental",
+        "countryCode": "CD",
+        "countryId": 52
+    },
+    {
+        "id": 815,
+        "code": "KN",
+        "name": "Kinshasa",
+        "countryCode": "CD",
+        "countryId": 52
+    },
+    {
+        "id": 816,
+        "code": "KW",
+        "name": "Kasai-Occidental",
+        "countryCode": "CD",
+        "countryId": 52
+    },
+    {
+        "id": 817,
+        "code": "MA",
+        "name": "Maniema",
+        "countryCode": "CD",
+        "countryId": 52
+    },
+    {
+        "id": 818,
+        "code": "NK",
+        "name": "Nord-Kivu",
+        "countryCode": "CD",
+        "countryId": 52
+    },
+    {
+        "id": 819,
+        "code": "OR",
+        "name": "Orientale",
+        "countryCode": "CD",
+        "countryId": 52
+    },
+    {
+        "id": 820,
+        "code": "SK",
+        "name": "Sud-Kivu",
+        "countryCode": "CD",
+        "countryId": 52
+    },
+    {
+        "id": 821,
+        "code": "A",
+        "name": "Alajuela",
+        "countryCode": "CR",
+        "countryId": 54
+    },
+    {
+        "id": 822,
+        "code": "C",
+        "name": "Cartago",
+        "countryCode": "CR",
+        "countryId": 54
+    },
+    {
+        "id": 823,
+        "code": "G",
+        "name": "Guanacaste",
+        "countryCode": "CR",
+        "countryId": 54
+    },
+    {
+        "id": 824,
+        "code": "H",
+        "name": "Heredia",
+        "countryCode": "CR",
+        "countryId": 54
+    },
+    {
+        "id": 825,
+        "code": "L",
+        "name": "Limón",
+        "countryCode": "CR",
+        "countryId": 54
+    },
+    {
+        "id": 826,
+        "code": "P",
+        "name": "Puntarenas",
+        "countryCode": "CR",
+        "countryId": 54
+    },
+    {
+        "id": 827,
+        "code": "SJ",
+        "name": "San José",
+        "countryCode": "CR",
+        "countryId": 54
+    },
+    {
+        "id": 828,
+        "code": "01",
+        "name": "Lagunes (Région des)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 829,
+        "code": "02",
+        "name": "Haut-Sassandra (Région du)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 830,
+        "code": "03",
+        "name": "Savanes (Région des)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 831,
+        "code": "04",
+        "name": "Vallée du Bandama (Région de la)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 832,
+        "code": "05",
+        "name": "Moyen-Comoé (Région du)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 833,
+        "code": "06",
+        "name": "18 Montagnes (Région des)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 834,
+        "code": "07",
+        "name": "Lacs (Région des)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 835,
+        "code": "08",
+        "name": "Zanzan (Région du)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 836,
+        "code": "09",
+        "name": "Bas-Sassandra (Région du)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 837,
+        "code": "10",
+        "name": "Denguélé (Région du)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 838,
+        "code": "11",
+        "name": "Nzi-Comoé (Région)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 839,
+        "code": "12",
+        "name": "Marahoué (Région de la)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 840,
+        "code": "13",
+        "name": "Sud-Comoé (Région du)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 841,
+        "code": "14",
+        "name": "Worodougou (Région du)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 842,
+        "code": "15",
+        "name": "Sud-Bandama (Région du)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 843,
+        "code": "16",
+        "name": "Agnébi (Région de l')",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 844,
+        "code": "17",
+        "name": "Bafing (Région du)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 845,
+        "code": "18",
+        "name": "Fromager (Région du)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 846,
+        "code": "19",
+        "name": "Moyen-Cavally (Région du)",
+        "countryCode": "CI",
+        "countryId": 55
+    },
+    {
+        "id": 847,
+        "code": "01",
+        "name": "Zagrebačka županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 848,
+        "code": "02",
+        "name": "Krapinsko-zagorska županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 849,
+        "code": "03",
+        "name": "Sisačko-moslavačka županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 850,
+        "code": "04",
+        "name": "Karlovačka županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 851,
+        "code": "05",
+        "name": "Varaždinska županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 852,
+        "code": "06",
+        "name": "Koprivničko-križevačka županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 853,
+        "code": "07",
+        "name": "Bjelovarsko-bilogorska županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 854,
+        "code": "08",
+        "name": "Primorsko-goranska županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 855,
+        "code": "09",
+        "name": "Ličko-senjska županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 856,
+        "code": "10",
+        "name": "Virovitičko-podravska županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 857,
+        "code": "11",
+        "name": "Požeško-slavonska županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 858,
+        "code": "12",
+        "name": "Brodsko-posavska županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 859,
+        "code": "13",
+        "name": "Zadarska županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 860,
+        "code": "14",
+        "name": "Osječko-baranjska županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 861,
+        "code": "15",
+        "name": "Šibensko-kninska županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 862,
+        "code": "16",
+        "name": "Vukovarsko-srijemska �upanija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 863,
+        "code": "17",
+        "name": "Vukovarsko-srijemska županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 864,
+        "code": "18",
+        "name": "Istarska županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 865,
+        "code": "19",
+        "name": "Dubrovačko-neretvanska županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 866,
+        "code": "20",
+        "name": "Međimurska županija",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 867,
+        "code": "21",
+        "name": "Grad Zagreb",
+        "countryCode": "HR",
+        "countryId": 56
+    },
+    {
+        "id": 868,
+        "code": "01",
+        "name": "Pinar del Río",
+        "countryCode": "CU",
+        "countryId": 57
+    },
+    {
+        "id": 869,
+        "code": "02",
+        "name": "La Habana",
+        "countryCode": "CU",
+        "countryId": 57
+    },
+    {
+        "id": 870,
+        "code": "03",
+        "name": "Ciudad de La Habana",
+        "countryCode": "CU",
+        "countryId": 57
+    },
+    {
+        "id": 871,
+        "code": "04",
+        "name": "Matanzas",
+        "countryCode": "CU",
+        "countryId": 57
+    },
+    {
+        "id": 872,
+        "code": "05",
+        "name": "Villa Clara",
+        "countryCode": "CU",
+        "countryId": 57
+    },
+    {
+        "id": 873,
+        "code": "06",
+        "name": "Cienfuegos",
+        "countryCode": "CU",
+        "countryId": 57
+    },
+    {
+        "id": 874,
+        "code": "07",
+        "name": "Sancti Spíritus",
+        "countryCode": "CU",
+        "countryId": 57
+    },
+    {
+        "id": 875,
+        "code": "08",
+        "name": "Ciego de Ávila",
+        "countryCode": "CU",
+        "countryId": 57
+    },
+    {
+        "id": 876,
+        "code": "09",
+        "name": "Camagüey",
+        "countryCode": "CU",
+        "countryId": 57
+    },
+    {
+        "id": 877,
+        "code": "10",
+        "name": "Las Tunas",
+        "countryCode": "CU",
+        "countryId": 57
+    },
+    {
+        "id": 878,
+        "code": "11",
+        "name": "Holguín",
+        "countryCode": "CU",
+        "countryId": 57
+    },
+    {
+        "id": 879,
+        "code": "12",
+        "name": "Granma",
+        "countryCode": "CU",
+        "countryId": 57
+    },
+    {
+        "id": 880,
+        "code": "13",
+        "name": "Santiago de Cuba",
+        "countryCode": "CU",
+        "countryId": 57
+    },
+    {
+        "id": 881,
+        "code": "14",
+        "name": "Guantánamo",
+        "countryCode": "CU",
+        "countryId": 57
+    },
+    {
+        "id": 882,
+        "code": "99",
+        "name": "Isla de la Juventud",
+        "countryCode": "CU",
+        "countryId": 57
+    },
+    {
+        "id": 883,
+        "code": "01",
+        "name": "Lefkosia",
+        "countryCode": "CY",
+        "countryId": 59
+    },
+    {
+        "id": 884,
+        "code": "02",
+        "name": "Lemesos",
+        "countryCode": "CY",
+        "countryId": 59
+    },
+    {
+        "id": 885,
+        "code": "03",
+        "name": "Larnaka",
+        "countryCode": "CY",
+        "countryId": 59
+    },
+    {
+        "id": 886,
+        "code": "04",
+        "name": "Ammochostos",
+        "countryCode": "CY",
+        "countryId": 59
+    },
+    {
+        "id": 887,
+        "code": "05",
+        "name": "Pafos",
+        "countryCode": "CY",
+        "countryId": 59
+    },
+    {
+        "id": 888,
+        "code": "06",
+        "name": "Keryneia",
+        "countryCode": "CY",
+        "countryId": 59
+    },
+    {
+        "id": 889,
+        "code": "JC",
+        "name": "Jihoceský kraj",
+        "countryCode": "CZ",
+        "countryId": 60
+    },
+    {
+        "id": 890,
+        "code": "JM",
+        "name": "Jihomoravský kraj",
+        "countryCode": "CZ",
+        "countryId": 60
+    },
+    {
+        "id": 891,
+        "code": "KA",
+        "name": "Karlovarský kraj",
+        "countryCode": "CZ",
+        "countryId": 60
+    },
+    {
+        "id": 892,
+        "code": "KR",
+        "name": "Královéhradecký kraj",
+        "countryCode": "CZ",
+        "countryId": 60
+    },
+    {
+        "id": 893,
+        "code": "LI",
+        "name": "Liberecký kraj",
+        "countryCode": "CZ",
+        "countryId": 60
+    },
+    {
+        "id": 894,
+        "code": "MO",
+        "name": "Moravskoslezský kraj",
+        "countryCode": "CZ",
+        "countryId": 60
+    },
+    {
+        "id": 895,
+        "code": "OL",
+        "name": "Olomoucký kraj",
+        "countryCode": "CZ",
+        "countryId": 60
+    },
+    {
+        "id": 896,
+        "code": "PA",
+        "name": "Pardubický kraj",
+        "countryCode": "CZ",
+        "countryId": 60
+    },
+    {
+        "id": 897,
+        "code": "PL",
+        "name": "Plzeňský kraj",
+        "countryCode": "CZ",
+        "countryId": 60
+    },
+    {
+        "id": 898,
+        "code": "PR",
+        "name": "Praha, hlavní mešto",
+        "countryCode": "CZ",
+        "countryId": 60
+    },
+    {
+        "id": 899,
+        "code": "ST",
+        "name": "Středočeský kraj",
+        "countryCode": "CZ",
+        "countryId": 60
+    },
+    {
+        "id": 900,
+        "code": "US",
+        "name": "Ústecký kraj",
+        "countryCode": "CZ",
+        "countryId": 60
+    },
+    {
+        "id": 901,
+        "code": "VY",
+        "name": "Vysočina",
+        "countryCode": "CZ",
+        "countryId": 60
+    },
+    {
+        "id": 902,
+        "code": "ZL",
+        "name": "Zlínský kraj",
+        "countryCode": "CZ",
+        "countryId": 60
+    },
+    {
+        "id": 903,
+        "code": "81",
+        "name": "Region Nordjylland",
+        "countryCode": "DK",
+        "countryId": 61
+    },
+    {
+        "id": 904,
+        "code": "82",
+        "name": "Region Midtjylland",
+        "countryCode": "DK",
+        "countryId": 61
+    },
+    {
+        "id": 905,
+        "code": "83",
+        "name": "Region Syddanmark",
+        "countryCode": "DK",
+        "countryId": 61
+    },
+    {
+        "id": 906,
+        "code": "84",
+        "name": "Region Hovedstaden",
+        "countryCode": "DK",
+        "countryId": 61
+    },
+    {
+        "id": 907,
+        "code": "85",
+        "name": "Region Sjælland",
+        "countryCode": "DK",
+        "countryId": 61
+    },
+    {
+        "id": 908,
+        "code": "AR",
+        "name": "‘Artā \/ Arta",
+        "countryCode": "DJ",
+        "countryId": 62
+    },
+    {
+        "id": 909,
+        "code": "AS",
+        "name": "‘Alī Sābiḩ \/ Ali Sabieh",
+        "countryCode": "DJ",
+        "countryId": 62
+    },
+    {
+        "id": 910,
+        "code": "DI",
+        "name": "Dikhīl \/ Dikhil",
+        "countryCode": "DJ",
+        "countryId": 62
+    },
+    {
+        "id": 911,
+        "code": "DJ",
+        "name": "Jībūtī \/ Djibouti",
+        "countryCode": "DJ",
+        "countryId": 62
+    },
+    {
+        "id": 912,
+        "code": "OB",
+        "name": "Ūbūk \/ Obock",
+        "countryCode": "DJ",
+        "countryId": 62
+    },
+    {
+        "id": 913,
+        "code": "TA",
+        "name": "Tājūrah \/ Tadjoura",
+        "countryCode": "DJ",
+        "countryId": 62
+    },
+    {
+        "id": 914,
+        "code": "02",
+        "name": "Saint Andrew",
+        "countryCode": "DM",
+        "countryId": 63
+    },
+    {
+        "id": 915,
+        "code": "03",
+        "name": "Saint David",
+        "countryCode": "DM",
+        "countryId": 63
+    },
+    {
+        "id": 916,
+        "code": "04",
+        "name": "Saint George",
+        "countryCode": "DM",
+        "countryId": 63
+    },
+    {
+        "id": 917,
+        "code": "05",
+        "name": "Saint John",
+        "countryCode": "DM",
+        "countryId": 63
+    },
+    {
+        "id": 918,
+        "code": "06",
+        "name": "Saint Joseph",
+        "countryCode": "DM",
+        "countryId": 63
+    },
+    {
+        "id": 919,
+        "code": "07",
+        "name": "Saint Luke",
+        "countryCode": "DM",
+        "countryId": 63
+    },
+    {
+        "id": 920,
+        "code": "08",
+        "name": "Saint Mark",
+        "countryCode": "DM",
+        "countryId": 63
+    },
+    {
+        "id": 921,
+        "code": "09",
+        "name": "Saint Patrick",
+        "countryCode": "DM",
+        "countryId": 63
+    },
+    {
+        "id": 922,
+        "code": "10",
+        "name": "Saint Paul",
+        "countryCode": "DM",
+        "countryId": 63
+    },
+    {
+        "id": 923,
+        "code": "11",
+        "name": "Saint Peter",
+        "countryCode": "DM",
+        "countryId": 63
+    },
+    {
+        "id": 924,
+        "code": "01",
+        "name": "Distrito Nacional (Santo Domingo)",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 925,
+        "code": "02",
+        "name": "Azua",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 926,
+        "code": "03",
+        "name": "Bahoruco",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 927,
+        "code": "04",
+        "name": "Barahona",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 928,
+        "code": "05",
+        "name": "Dajabón",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 929,
+        "code": "06",
+        "name": "Duarte",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 930,
+        "code": "07",
+        "name": "La Estrelleta",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 931,
+        "code": "08",
+        "name": "El Seybo",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 932,
+        "code": "09",
+        "name": "Espaillat",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 933,
+        "code": "10",
+        "name": "Independencia",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 934,
+        "code": "11",
+        "name": "La Altagracia",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 935,
+        "code": "12",
+        "name": "La Romana",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 936,
+        "code": "13",
+        "name": "La Vega",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 937,
+        "code": "14",
+        "name": "María Trinidad Sánchez",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 938,
+        "code": "15",
+        "name": "Monte Cristi",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 939,
+        "code": "16",
+        "name": "Pedernales",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 940,
+        "code": "17",
+        "name": "Peravia",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 941,
+        "code": "18",
+        "name": "Puerto Plata",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 942,
+        "code": "19",
+        "name": "Salcedo",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 943,
+        "code": "20",
+        "name": "Samaná",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 944,
+        "code": "21",
+        "name": "San Cristóbal",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 945,
+        "code": "22",
+        "name": "San Juan",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 946,
+        "code": "23",
+        "name": "San Pedro de Macorís",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 947,
+        "code": "24",
+        "name": "Sánchez Ramírez",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 948,
+        "code": "25",
+        "name": "Santiago",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 949,
+        "code": "26",
+        "name": "Santiago Rodríguez",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 950,
+        "code": "27",
+        "name": "Valverde",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 951,
+        "code": "28",
+        "name": "Monseñor Nouel",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 952,
+        "code": "29",
+        "name": "Monte Plata",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 953,
+        "code": "30",
+        "name": "Hato Mayor",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 954,
+        "code": "31",
+        "name": "San José de Ocoa",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 955,
+        "code": "32",
+        "name": "Santo Domingo",
+        "countryCode": "DO",
+        "countryId": 64
+    },
+    {
+        "id": 956,
+        "code": "A",
+        "name": "Azuay",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 957,
+        "code": "B",
+        "name": "Bolívar",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 958,
+        "code": "C",
+        "name": "Carchi",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 959,
+        "code": "D",
+        "name": "Orellana",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 960,
+        "code": "E",
+        "name": "Esmeraldas",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 961,
+        "code": "F",
+        "name": "Cañar",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 962,
+        "code": "G",
+        "name": "Guayas",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 963,
+        "code": "H",
+        "name": "Chimborazo",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 964,
+        "code": "I",
+        "name": "Imbabura",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 965,
+        "code": "L",
+        "name": "Loja",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 966,
+        "code": "M",
+        "name": "Manabí",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 967,
+        "code": "N",
+        "name": "Napo",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 968,
+        "code": "O",
+        "name": "El Oro",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 969,
+        "code": "P",
+        "name": "Pichincha",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 970,
+        "code": "R",
+        "name": "Los Ríos",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 971,
+        "code": "S",
+        "name": "Morona-Santiago",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 972,
+        "code": "SD",
+        "name": "Santo Domingo de los Tsáchilas",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 973,
+        "code": "SE",
+        "name": "Santa Elena",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 974,
+        "code": "T",
+        "name": "Tungurahua",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 975,
+        "code": "U",
+        "name": "Sucumbíos",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 976,
+        "code": "W",
+        "name": "Galápagos",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 977,
+        "code": "X",
+        "name": "Cotopaxi",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 978,
+        "code": "Y",
+        "name": "Pastaza",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 979,
+        "code": "Z",
+        "name": "Zamora-Chinchipe",
+        "countryCode": "EC",
+        "countryId": 65
+    },
+    {
+        "id": 980,
+        "code": "ALX",
+        "name": "Al Iskandarīyah",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 981,
+        "code": "ASN",
+        "name": "Aswān",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 982,
+        "code": "AST",
+        "name": "Asyūţ",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 983,
+        "code": "BA",
+        "name": "Al Baḩr al Aḩmar",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 984,
+        "code": "BH",
+        "name": "Al Buḩayrah",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 985,
+        "code": "BNS",
+        "name": "Banī Suwayf",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 986,
+        "code": "C",
+        "name": "Al Qāhirah",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 987,
+        "code": "DK",
+        "name": "Ad Daqahlīyah",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 988,
+        "code": "DT",
+        "name": "Dumyāţ",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 989,
+        "code": "FYM",
+        "name": "Al Fayyūm",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 990,
+        "code": "GH",
+        "name": "Al Gharbīyah",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 991,
+        "code": "GZ",
+        "name": "Al Jīzah",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 992,
+        "code": "HU",
+        "name": "Ḩulwān",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 993,
+        "code": "IS",
+        "name": "Al Ismā'īlīyah",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 994,
+        "code": "JS",
+        "name": "Janūb Sīnā'",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 995,
+        "code": "KB",
+        "name": "Al Qalyūbīyah",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 996,
+        "code": "KFS",
+        "name": "Kafr ash Shaykh",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 997,
+        "code": "KN",
+        "name": "Qinā",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 998,
+        "code": "LX",
+        "name": "Al Uqşur",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 999,
+        "code": "MN",
+        "name": "Al Minyā",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 1000,
+        "code": "MNF",
+        "name": "Al Minūfīyah",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 1001,
+        "code": "MT",
+        "name": "Maţrūḩ",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 1002,
+        "code": "PTS",
+        "name": "Būr Sa‘īd",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 1003,
+        "code": "SHG",
+        "name": "Sūhāj",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 1004,
+        "code": "SHR",
+        "name": "Ash Sharqīyah",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 1005,
+        "code": "SIN",
+        "name": "Shamāl Sīnā'",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 1006,
+        "code": "SU",
+        "name": "As Sādis min Uktūbar",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 1007,
+        "code": "SUZ",
+        "name": "As Suways",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 1008,
+        "code": "WAD",
+        "name": "Al Wādī al Jadīd",
+        "countryCode": "EG",
+        "countryId": 66
+    },
+    {
+        "id": 1009,
+        "code": "AH",
+        "name": "Ahuachapán",
+        "countryCode": "SV",
+        "countryId": 67
+    },
+    {
+        "id": 1010,
+        "code": "CA",
+        "name": "Cabañas",
+        "countryCode": "SV",
+        "countryId": 67
+    },
+    {
+        "id": 1011,
+        "code": "CH",
+        "name": "Chalatenango",
+        "countryCode": "SV",
+        "countryId": 67
+    },
+    {
+        "id": 1012,
+        "code": "CU",
+        "name": "Cuscatlán",
+        "countryCode": "SV",
+        "countryId": 67
+    },
+    {
+        "id": 1013,
+        "code": "LI",
+        "name": "La Libertad",
+        "countryCode": "SV",
+        "countryId": 67
+    },
+    {
+        "id": 1014,
+        "code": "MO",
+        "name": "Morazán",
+        "countryCode": "SV",
+        "countryId": 67
+    },
+    {
+        "id": 1015,
+        "code": "PA",
+        "name": "La Paz",
+        "countryCode": "SV",
+        "countryId": 67
+    },
+    {
+        "id": 1016,
+        "code": "SA",
+        "name": "Santa Ana",
+        "countryCode": "SV",
+        "countryId": 67
+    },
+    {
+        "id": 1017,
+        "code": "SM",
+        "name": "San Miguel",
+        "countryCode": "SV",
+        "countryId": 67
+    },
+    {
+        "id": 1018,
+        "code": "SO",
+        "name": "Sonsonate",
+        "countryCode": "SV",
+        "countryId": 67
+    },
+    {
+        "id": 1019,
+        "code": "SS",
+        "name": "San Salvador",
+        "countryCode": "SV",
+        "countryId": 67
+    },
+    {
+        "id": 1020,
+        "code": "SV",
+        "name": "San Vicente",
+        "countryCode": "SV",
+        "countryId": 67
+    },
+    {
+        "id": 1021,
+        "code": "UN",
+        "name": "La Unión",
+        "countryCode": "SV",
+        "countryId": 67
+    },
+    {
+        "id": 1022,
+        "code": "US",
+        "name": "Usulután",
+        "countryCode": "SV",
+        "countryId": 67
+    },
+    {
+        "id": 1023,
+        "code": "AN",
+        "name": "Annobón",
+        "countryCode": "GQ",
+        "countryId": 68
+    },
+    {
+        "id": 1024,
+        "code": "BN",
+        "name": "Bioko Norte",
+        "countryCode": "GQ",
+        "countryId": 68
+    },
+    {
+        "id": 1025,
+        "code": "BS",
+        "name": "Bioko Sur",
+        "countryCode": "GQ",
+        "countryId": 68
+    },
+    {
+        "id": 1026,
+        "code": "CS",
+        "name": "Centro Sur",
+        "countryCode": "GQ",
+        "countryId": 68
+    },
+    {
+        "id": 1027,
+        "code": "KN",
+        "name": "Kie-Ntem",
+        "countryCode": "GQ",
+        "countryId": 68
+    },
+    {
+        "id": 1028,
+        "code": "LI",
+        "name": "Litoral",
+        "countryCode": "GQ",
+        "countryId": 68
+    },
+    {
+        "id": 1029,
+        "code": "WN",
+        "name": "Wele-Nzás",
+        "countryCode": "GQ",
+        "countryId": 68
+    },
+    {
+        "id": 1030,
+        "code": "AN",
+        "name": "Anseba",
+        "countryCode": "ER",
+        "countryId": 69
+    },
+    {
+        "id": 1031,
+        "code": "DK",
+        "name": "Debubawi Keyih Bahri",
+        "countryCode": "ER",
+        "countryId": 69
+    },
+    {
+        "id": 1032,
+        "code": "DU",
+        "name": "Debub",
+        "countryCode": "ER",
+        "countryId": 69
+    },
+    {
+        "id": 1033,
+        "code": "GB",
+        "name": "Gash-Barka",
+        "countryCode": "ER",
+        "countryId": 69
+    },
+    {
+        "id": 1034,
+        "code": "MA",
+        "name": "Maakel",
+        "countryCode": "ER",
+        "countryId": 69
+    },
+    {
+        "id": 1035,
+        "code": "SK",
+        "name": "Semenawi Keyih Bahri",
+        "countryCode": "ER",
+        "countryId": 69
+    },
+    {
+        "id": 1036,
+        "code": "37",
+        "name": "Harjumaa",
+        "countryCode": "EE",
+        "countryId": 70
+    },
+    {
+        "id": 1037,
+        "code": "39",
+        "name": "Hiiumaa",
+        "countryCode": "EE",
+        "countryId": 70
+    },
+    {
+        "id": 1038,
+        "code": "44",
+        "name": "Ida-Virumaa",
+        "countryCode": "EE",
+        "countryId": 70
+    },
+    {
+        "id": 1039,
+        "code": "49",
+        "name": "Jõgevamaa",
+        "countryCode": "EE",
+        "countryId": 70
+    },
+    {
+        "id": 1040,
+        "code": "51",
+        "name": "Järvamaa",
+        "countryCode": "EE",
+        "countryId": 70
+    },
+    {
+        "id": 1041,
+        "code": "57",
+        "name": "Läänemaa",
+        "countryCode": "EE",
+        "countryId": 70
+    },
+    {
+        "id": 1042,
+        "code": "59",
+        "name": "Lääne-Virumaa",
+        "countryCode": "EE",
+        "countryId": 70
+    },
+    {
+        "id": 1043,
+        "code": "65",
+        "name": "Põlvamaa",
+        "countryCode": "EE",
+        "countryId": 70
+    },
+    {
+        "id": 1044,
+        "code": "67",
+        "name": "Pärnumaa",
+        "countryCode": "EE",
+        "countryId": 70
+    },
+    {
+        "id": 1045,
+        "code": "70",
+        "name": "Raplamaa",
+        "countryCode": "EE",
+        "countryId": 70
+    },
+    {
+        "id": 1046,
+        "code": "74",
+        "name": "Saaremaa",
+        "countryCode": "EE",
+        "countryId": 70
+    },
+    {
+        "id": 1047,
+        "code": "78",
+        "name": "Tartumaa",
+        "countryCode": "EE",
+        "countryId": 70
+    },
+    {
+        "id": 1048,
+        "code": "82",
+        "name": "Valgamaa",
+        "countryCode": "EE",
+        "countryId": 70
+    },
+    {
+        "id": 1049,
+        "code": "84",
+        "name": "Viljandimaa",
+        "countryCode": "EE",
+        "countryId": 70
+    },
+    {
+        "id": 1050,
+        "code": "86",
+        "name": "Võrumaa",
+        "countryCode": "EE",
+        "countryId": 70
+    },
+    {
+        "id": 1051,
+        "code": "AA",
+        "name": "Ādīs Ābeba \/ Adis Abeba",
+        "countryCode": "ET",
+        "countryId": 71
+    },
+    {
+        "id": 1052,
+        "code": "AF",
+        "name": "Āfar \/ Afar",
+        "countryCode": "ET",
+        "countryId": 71
+    },
+    {
+        "id": 1053,
+        "code": "AM",
+        "name": "Āmara \/ Amara",
+        "countryCode": "ET",
+        "countryId": 71
+    },
+    {
+        "id": 1054,
+        "code": "BE",
+        "name": "Bīnshangul Gumuz \/ Binshangul Gumuz",
+        "countryCode": "ET",
+        "countryId": 71
+    },
+    {
+        "id": 1055,
+        "code": "DD",
+        "name": "Dirē Dawa \/ Dire Dawa",
+        "countryCode": "ET",
+        "countryId": 71
+    },
+    {
+        "id": 1056,
+        "code": "GA",
+        "name": "Gambēla Hizboch \/ Gambela Hizboch",
+        "countryCode": "ET",
+        "countryId": 71
+    },
+    {
+        "id": 1057,
+        "code": "HA",
+        "name": "Hārerī Hizb \/ Hareri Hizb",
+        "countryCode": "ET",
+        "countryId": 71
+    },
+    {
+        "id": 1058,
+        "code": "OR",
+        "name": "Oromīya \/ Oromiya",
+        "countryCode": "ET",
+        "countryId": 71
+    },
+    {
+        "id": 1059,
+        "code": "SO",
+        "name": "Sumalē \/ Sumale",
+        "countryCode": "ET",
+        "countryId": 71
+    },
+    {
+        "id": 1060,
+        "code": "TI",
+        "name": "Tigray \/ Tigray",
+        "countryCode": "ET",
+        "countryId": 71
+    },
+    {
+        "id": 1061,
+        "code": "C",
+        "name": "Central",
+        "countryCode": "FJ",
+        "countryId": 74
+    },
+    {
+        "id": 1062,
+        "code": "E",
+        "name": "Eastern",
+        "countryCode": "FJ",
+        "countryId": 74
+    },
+    {
+        "id": 1063,
+        "code": "N",
+        "name": "Northern",
+        "countryCode": "FJ",
+        "countryId": 74
+    },
+    {
+        "id": 1064,
+        "code": "R",
+        "name": "Rotuma",
+        "countryCode": "FJ",
+        "countryId": 74
+    },
+    {
+        "id": 1065,
+        "code": "W",
+        "name": "Western",
+        "countryCode": "FJ",
+        "countryId": 74
+    },
+    {
+        "id": 1066,
+        "code": "01",
+        "name": "Ahvenanmaan maakunta",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1067,
+        "code": "02",
+        "name": "Etelä-Karjala",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1068,
+        "code": "03",
+        "name": "Etelä-Pohjanmaa",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1069,
+        "code": "04",
+        "name": "Etelä-Savo",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1070,
+        "code": "05",
+        "name": "Kainuu",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1071,
+        "code": "06",
+        "name": "Kanta-Häme",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1072,
+        "code": "07",
+        "name": "Keski-Pohjanmaa",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1073,
+        "code": "08",
+        "name": "Keski-Suomi",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1074,
+        "code": "09",
+        "name": "Kymenlaakso",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1075,
+        "code": "10",
+        "name": "Lappi",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1076,
+        "code": "11",
+        "name": "Pirkanmaa",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1077,
+        "code": "12",
+        "name": "Pohjanmaa",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1078,
+        "code": "13",
+        "name": "Pohjois-Karjala",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1079,
+        "code": "14",
+        "name": "Pohjois-Pohjanmaa",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1080,
+        "code": "15",
+        "name": "Pohjois-Savo",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1081,
+        "code": "16",
+        "name": "Päijät-Häme",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1082,
+        "code": "17",
+        "name": "Satakunta",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1083,
+        "code": "18",
+        "name": "Uusimaa",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1084,
+        "code": "19",
+        "name": "Varsinais-Suomi",
+        "countryCode": "FI",
+        "countryId": 75
+    },
+    {
+        "id": 1085,
+        "code": "CP",
+        "name": "Clipperton",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1086,
+        "code": "01",
+        "name": "Ain",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1087,
+        "code": "02",
+        "name": "Aisne",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1088,
+        "code": "03",
+        "name": "Allier",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1089,
+        "code": "04",
+        "name": "Alpes-de-Haute-Provence",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1090,
+        "code": "05",
+        "name": "Hautes-Alpes",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1091,
+        "code": "06",
+        "name": "Alpes-Maritimes",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1092,
+        "code": "07",
+        "name": "Ardèche",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1093,
+        "code": "08",
+        "name": "Ardennes",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1094,
+        "code": "09",
+        "name": "Ariège",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1095,
+        "code": "10",
+        "name": "Aube",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1096,
+        "code": "11",
+        "name": "Aude",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1097,
+        "code": "12",
+        "name": "Aveyron",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1098,
+        "code": "13",
+        "name": "Bouches-du-Rhône",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1099,
+        "code": "14",
+        "name": "Calvados",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1100,
+        "code": "15",
+        "name": "Cantal",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1101,
+        "code": "16",
+        "name": "Charente",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1102,
+        "code": "17",
+        "name": "Charente-Maritime",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1103,
+        "code": "18",
+        "name": "Cher",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1104,
+        "code": "19",
+        "name": "Corrèze",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1105,
+        "code": "21",
+        "name": "Côte-d'Or",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1106,
+        "code": "22",
+        "name": "Côtes-d'Armor",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1107,
+        "code": "23",
+        "name": "Creuse",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1108,
+        "code": "24",
+        "name": "Dordogne",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1109,
+        "code": "25",
+        "name": "Doubs",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1110,
+        "code": "26",
+        "name": "Drôme",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1111,
+        "code": "27",
+        "name": "Eure",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1112,
+        "code": "28",
+        "name": "Eure-et-Loir",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1113,
+        "code": "29",
+        "name": "Finistère",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1114,
+        "code": "2A",
+        "name": "Corse-du-Sud",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1115,
+        "code": "2B",
+        "name": "Haute-Corse",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1116,
+        "code": "30",
+        "name": "Gard",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1117,
+        "code": "31",
+        "name": "Haute-Garonne",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1118,
+        "code": "32",
+        "name": "Gers",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1119,
+        "code": "33",
+        "name": "Gironde",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1120,
+        "code": "34",
+        "name": "Hérault",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1121,
+        "code": "35",
+        "name": "Ille-et-Vilaine",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1122,
+        "code": "36",
+        "name": "Indre",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1123,
+        "code": "37",
+        "name": "Indre-et-Loire",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1124,
+        "code": "38",
+        "name": "Isère",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1125,
+        "code": "39",
+        "name": "Jura",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1126,
+        "code": "40",
+        "name": "Landes",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1127,
+        "code": "41",
+        "name": "Loir-et-Cher",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1128,
+        "code": "42",
+        "name": "Loire",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1129,
+        "code": "43",
+        "name": "Haute-Loire",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1130,
+        "code": "44",
+        "name": "Loire-Atlantique",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1131,
+        "code": "45",
+        "name": "Loiret",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1132,
+        "code": "46",
+        "name": "Lot",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1133,
+        "code": "47",
+        "name": "Lot-et-Garonne",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1134,
+        "code": "48",
+        "name": "Lozère",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1135,
+        "code": "49",
+        "name": "Maine-et-Loire",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1136,
+        "code": "50",
+        "name": "Manche",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1137,
+        "code": "51",
+        "name": "Marne",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1138,
+        "code": "52",
+        "name": "Haute-Marne",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1139,
+        "code": "53",
+        "name": "Mayenne",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1140,
+        "code": "54",
+        "name": "Meurthe-et-Moselle",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1141,
+        "code": "55",
+        "name": "Meuse",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1142,
+        "code": "56",
+        "name": "Morbihan",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1143,
+        "code": "57",
+        "name": "Moselle",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1144,
+        "code": "58",
+        "name": "Nièvre",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1145,
+        "code": "59",
+        "name": "Nord",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1146,
+        "code": "60",
+        "name": "Oise",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1147,
+        "code": "61",
+        "name": "Orne",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1148,
+        "code": "62",
+        "name": "Pas-de-Calais",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1149,
+        "code": "63",
+        "name": "Puy-de-Dôme",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1150,
+        "code": "64",
+        "name": "Pyrénées-Atlantiques",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1151,
+        "code": "65",
+        "name": "Hautes-Pyrénées",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1152,
+        "code": "66",
+        "name": "Pyrénées-Orientales",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1153,
+        "code": "67",
+        "name": "Bas-Rhin",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1154,
+        "code": "68",
+        "name": "Haut-Rhin",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1155,
+        "code": "69",
+        "name": "Rhône",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1156,
+        "code": "70",
+        "name": "Haute-Saône",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1157,
+        "code": "71",
+        "name": "Saône-et-Loire",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1158,
+        "code": "72",
+        "name": "Sarthe",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1159,
+        "code": "73",
+        "name": "Savoie",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1160,
+        "code": "74",
+        "name": "Haute-Savoie",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1161,
+        "code": "75",
+        "name": "Paris",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1162,
+        "code": "76",
+        "name": "Seine-Maritime",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1163,
+        "code": "77",
+        "name": "Seine-et-Marne",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1164,
+        "code": "78",
+        "name": "Yvelines",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1165,
+        "code": "79",
+        "name": "Deux-Sèvres",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1166,
+        "code": "80",
+        "name": "Somme",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1167,
+        "code": "81",
+        "name": "Tarn",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1168,
+        "code": "82",
+        "name": "Tarn-et-Garonne",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1169,
+        "code": "83",
+        "name": "Var",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1170,
+        "code": "84",
+        "name": "Vaucluse",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1171,
+        "code": "85",
+        "name": "Vendée",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1172,
+        "code": "86",
+        "name": "Vienne",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1173,
+        "code": "87",
+        "name": "Haute-Vienne",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1174,
+        "code": "88",
+        "name": "Vosges",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1175,
+        "code": "89",
+        "name": "Yonne",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1176,
+        "code": "90",
+        "name": "Territoire de Belfort",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1177,
+        "code": "91",
+        "name": "Essonne",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1178,
+        "code": "92",
+        "name": "Hauts-de-Seine",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1179,
+        "code": "93",
+        "name": "Seine-Saint-Denis",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1180,
+        "code": "94",
+        "name": "Val-de-Marne",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1181,
+        "code": "95",
+        "name": "Val-d'Oise",
+        "countryCode": "FR",
+        "countryId": 76
+    },
+    {
+        "id": 1182,
+        "code": "1",
+        "name": "Estuaire",
+        "countryCode": "GA",
+        "countryId": 80
+    },
+    {
+        "id": 1183,
+        "code": "2",
+        "name": "Haut-Ogooué",
+        "countryCode": "GA",
+        "countryId": 80
+    },
+    {
+        "id": 1184,
+        "code": "3",
+        "name": "Moyen-Ogooué",
+        "countryCode": "GA",
+        "countryId": 80
+    },
+    {
+        "id": 1185,
+        "code": "4",
+        "name": "Ngounié",
+        "countryCode": "GA",
+        "countryId": 80
+    },
+    {
+        "id": 1186,
+        "code": "5",
+        "name": "Nyanga",
+        "countryCode": "GA",
+        "countryId": 80
+    },
+    {
+        "id": 1187,
+        "code": "6",
+        "name": "Ogooué-Ivindo",
+        "countryCode": "GA",
+        "countryId": 80
+    },
+    {
+        "id": 1188,
+        "code": "7",
+        "name": "Ogooué-Lolo",
+        "countryCode": "GA",
+        "countryId": 80
+    },
+    {
+        "id": 1189,
+        "code": "8",
+        "name": "Ogooué-Maritime",
+        "countryCode": "GA",
+        "countryId": 80
+    },
+    {
+        "id": 1190,
+        "code": "9",
+        "name": "Woleu-Ntem",
+        "countryCode": "GA",
+        "countryId": 80
+    },
+    {
+        "id": 1191,
+        "code": "B",
+        "name": "Banjul",
+        "countryCode": "GM",
+        "countryId": 81
+    },
+    {
+        "id": 1192,
+        "code": "L",
+        "name": "Lower River",
+        "countryCode": "GM",
+        "countryId": 81
+    },
+    {
+        "id": 1193,
+        "code": "M",
+        "name": "Central River",
+        "countryCode": "GM",
+        "countryId": 81
+    },
+    {
+        "id": 1194,
+        "code": "N",
+        "name": "North Bank",
+        "countryCode": "GM",
+        "countryId": 81
+    },
+    {
+        "id": 1195,
+        "code": "U",
+        "name": "Upper River",
+        "countryCode": "GM",
+        "countryId": 81
+    },
+    {
+        "id": 1196,
+        "code": "W",
+        "name": "Western",
+        "countryCode": "GM",
+        "countryId": 81
+    },
+    {
+        "id": 1197,
+        "code": "AB",
+        "name": "Abkhazia",
+        "countryCode": "GE",
+        "countryId": 82
+    },
+    {
+        "id": 1198,
+        "code": "AJ",
+        "name": "Ajaria",
+        "countryCode": "GE",
+        "countryId": 82
+    },
+    {
+        "id": 1199,
+        "code": "GU",
+        "name": "Guria",
+        "countryCode": "GE",
+        "countryId": 82
+    },
+    {
+        "id": 1200,
+        "code": "IM",
+        "name": "Imeret'i",
+        "countryCode": "GE",
+        "countryId": 82
+    },
+    {
+        "id": 1201,
+        "code": "KA",
+        "name": "Kakhet'i",
+        "countryCode": "GE",
+        "countryId": 82
+    },
+    {
+        "id": 1202,
+        "code": "KK",
+        "name": "K'vemo K'art'li",
+        "countryCode": "GE",
+        "countryId": 82
+    },
+    {
+        "id": 1203,
+        "code": "MM",
+        "name": "Mts'khet'a-Mt'ianet'i",
+        "countryCode": "GE",
+        "countryId": 82
+    },
+    {
+        "id": 1204,
+        "code": "RL",
+        "name": "Racha-Lech'khumi-K'vemo Svanet'i",
+        "countryCode": "GE",
+        "countryId": 82
+    },
+    {
+        "id": 1205,
+        "code": "SJ",
+        "name": "Samts'khe-Javakhet'i",
+        "countryCode": "GE",
+        "countryId": 82
+    },
+    {
+        "id": 1206,
+        "code": "SK",
+        "name": "Shida K'art'li",
+        "countryCode": "GE",
+        "countryId": 82
+    },
+    {
+        "id": 1207,
+        "code": "SZ",
+        "name": "Samegrelo-Zemo Svanet'i",
+        "countryCode": "GE",
+        "countryId": 82
+    },
+    {
+        "id": 1208,
+        "code": "TB",
+        "name": "T'bilisi",
+        "countryCode": "GE",
+        "countryId": 82
+    },
+    {
+        "id": 1209,
+        "code": "BB",
+        "name": "Brandenburg",
+        "countryCode": "DE",
+        "countryId": 83
+    },
+    {
+        "id": 1210,
+        "code": "BE",
+        "name": "Berlin",
+        "countryCode": "DE",
+        "countryId": 83
+    },
+    {
+        "id": 1211,
+        "code": "BW",
+        "name": "Baden-Württemberg",
+        "countryCode": "DE",
+        "countryId": 83
+    },
+    {
+        "id": 1212,
+        "code": "BY",
+        "name": "Bayern",
+        "countryCode": "DE",
+        "countryId": 83
+    },
+    {
+        "id": 1213,
+        "code": "HB",
+        "name": "Bremen",
+        "countryCode": "DE",
+        "countryId": 83
+    },
+    {
+        "id": 1214,
+        "code": "HE",
+        "name": "Hessen",
+        "countryCode": "DE",
+        "countryId": 83
+    },
+    {
+        "id": 1215,
+        "code": "HH",
+        "name": "Hamburg",
+        "countryCode": "DE",
+        "countryId": 83
+    },
+    {
+        "id": 1216,
+        "code": "MV",
+        "name": "Mecklenburg-Vorpommern",
+        "countryCode": "DE",
+        "countryId": 83
+    },
+    {
+        "id": 1217,
+        "code": "NI",
+        "name": "Niedersachsen",
+        "countryCode": "DE",
+        "countryId": 83
+    },
+    {
+        "id": 1218,
+        "code": "NW",
+        "name": "Nordrhein-Westfalen",
+        "countryCode": "DE",
+        "countryId": 83
+    },
+    {
+        "id": 1219,
+        "code": "RP",
+        "name": "Rheinland-Pfalz",
+        "countryCode": "DE",
+        "countryId": 83
+    },
+    {
+        "id": 1220,
+        "code": "SH",
+        "name": "Schleswig-Holstein",
+        "countryCode": "DE",
+        "countryId": 83
+    },
+    {
+        "id": 1221,
+        "code": "SL",
+        "name": "Saarland",
+        "countryCode": "DE",
+        "countryId": 83
+    },
+    {
+        "id": 1222,
+        "code": "SN",
+        "name": "Sachsen",
+        "countryCode": "DE",
+        "countryId": 83
+    },
+    {
+        "id": 1223,
+        "code": "ST",
+        "name": "Sachsen-Anhalt",
+        "countryCode": "DE",
+        "countryId": 83
+    },
+    {
+        "id": 1224,
+        "code": "TH",
+        "name": "Thüringen",
+        "countryCode": "DE",
+        "countryId": 83
+    },
+    {
+        "id": 1225,
+        "code": "AA",
+        "name": "Greater Accra",
+        "countryCode": "GH",
+        "countryId": 84
+    },
+    {
+        "id": 1226,
+        "code": "AH",
+        "name": "Ashanti",
+        "countryCode": "GH",
+        "countryId": 84
+    },
+    {
+        "id": 1227,
+        "code": "BA",
+        "name": "Brong-Ahafo",
+        "countryCode": "GH",
+        "countryId": 84
+    },
+    {
+        "id": 1228,
+        "code": "CP",
+        "name": "Central",
+        "countryCode": "GH",
+        "countryId": 84
+    },
+    {
+        "id": 1229,
+        "code": "EP",
+        "name": "Eastern",
+        "countryCode": "GH",
+        "countryId": 84
+    },
+    {
+        "id": 1230,
+        "code": "NP",
+        "name": "Northern",
+        "countryCode": "GH",
+        "countryId": 84
+    },
+    {
+        "id": 1231,
+        "code": "TV",
+        "name": "Volta",
+        "countryCode": "GH",
+        "countryId": 84
+    },
+    {
+        "id": 1232,
+        "code": "UE",
+        "name": "Upper East",
+        "countryCode": "GH",
+        "countryId": 84
+    },
+    {
+        "id": 1233,
+        "code": "UW",
+        "name": "Upper West",
+        "countryCode": "GH",
+        "countryId": 84
+    },
+    {
+        "id": 1234,
+        "code": "WP",
+        "name": "Western",
+        "countryCode": "GH",
+        "countryId": 84
+    },
+    {
+        "id": 1235,
+        "code": "01",
+        "name": "Aitolia kai Akarnania",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1236,
+        "code": "03",
+        "name": "Voiotia",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1237,
+        "code": "04",
+        "name": "Evvoia",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1238,
+        "code": "05",
+        "name": "Evrytania",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1239,
+        "code": "06",
+        "name": "Fthiotida",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1240,
+        "code": "07",
+        "name": "Fokida",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1241,
+        "code": "11",
+        "name": "Argolida",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1242,
+        "code": "12",
+        "name": "Arkadia",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1243,
+        "code": "13",
+        "name": "Achaïa",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1244,
+        "code": "14",
+        "name": "Ileia",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1245,
+        "code": "15",
+        "name": "Korinthia",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1246,
+        "code": "16",
+        "name": "Lakonia",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1247,
+        "code": "17",
+        "name": "Messinia",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1248,
+        "code": "21",
+        "name": "Zakynthos",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1249,
+        "code": "22",
+        "name": "Kerkyra",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1250,
+        "code": "23",
+        "name": "Kefallonia",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1251,
+        "code": "24",
+        "name": "Lefkada",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1252,
+        "code": "31",
+        "name": "Arta",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1253,
+        "code": "32",
+        "name": "Thesprotia",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1254,
+        "code": "33",
+        "name": "Ioannina",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1255,
+        "code": "34",
+        "name": "Preveza",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1256,
+        "code": "41",
+        "name": "Karditsa",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1257,
+        "code": "42",
+        "name": "Larisa",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1258,
+        "code": "43",
+        "name": "Magnisia",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1259,
+        "code": "44",
+        "name": "Trikala",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1260,
+        "code": "51",
+        "name": "Grevena",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1261,
+        "code": "52",
+        "name": "Drama",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1262,
+        "code": "53",
+        "name": "Imathia",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1263,
+        "code": "54",
+        "name": "Thessaloniki",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1264,
+        "code": "55",
+        "name": "Kavala",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1265,
+        "code": "56",
+        "name": "Kastoria",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1266,
+        "code": "57",
+        "name": "Kilkis",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1267,
+        "code": "58",
+        "name": "Kozani",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1268,
+        "code": "59",
+        "name": "Pella",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1269,
+        "code": "61",
+        "name": "Pieria",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1270,
+        "code": "62",
+        "name": "Serres",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1271,
+        "code": "63",
+        "name": "Florina",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1272,
+        "code": "64",
+        "name": "Chalkidiki",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1273,
+        "code": "69",
+        "name": "Agio Oros",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1274,
+        "code": "71",
+        "name": "Evros",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1275,
+        "code": "72",
+        "name": "Xanthi",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1276,
+        "code": "73",
+        "name": "Rodopi",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1277,
+        "code": "81",
+        "name": "Dodekanisos",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1278,
+        "code": "82",
+        "name": "Kyklades",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1279,
+        "code": "83",
+        "name": "Lesvos",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1280,
+        "code": "84",
+        "name": "Samos",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1281,
+        "code": "85",
+        "name": "Chios",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1282,
+        "code": "91",
+        "name": "Irakleio",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1283,
+        "code": "92",
+        "name": "Lasithi",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1284,
+        "code": "93",
+        "name": "Rethymno",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1285,
+        "code": "94",
+        "name": "Chania",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1286,
+        "code": "A1",
+        "name": "Attiki",
+        "countryCode": "GR",
+        "countryId": 86
+    },
+    {
+        "id": 1287,
+        "code": "KU",
+        "name": "Kommune Kujalleq",
+        "countryCode": "GL",
+        "countryId": 87
+    },
+    {
+        "id": 1288,
+        "code": "QA",
+        "name": "Qaasuitsup Kommunia",
+        "countryCode": "GL",
+        "countryId": 87
+    },
+    {
+        "id": 1289,
+        "code": "QE",
+        "name": "Qeqqata Kommunia",
+        "countryCode": "GL",
+        "countryId": 87
+    },
+    {
+        "id": 1290,
+        "code": "SM",
+        "name": "Kommuneqarfik Sermersooq",
+        "countryCode": "GL",
+        "countryId": 87
+    },
+    {
+        "id": 1291,
+        "code": "01",
+        "name": "Saint Andrew",
+        "countryCode": "GD",
+        "countryId": 88
+    },
+    {
+        "id": 1292,
+        "code": "02",
+        "name": "Saint David",
+        "countryCode": "GD",
+        "countryId": 88
+    },
+    {
+        "id": 1293,
+        "code": "03",
+        "name": "Saint George",
+        "countryCode": "GD",
+        "countryId": 88
+    },
+    {
+        "id": 1294,
+        "code": "04",
+        "name": "Saint John",
+        "countryCode": "GD",
+        "countryId": 88
+    },
+    {
+        "id": 1295,
+        "code": "05",
+        "name": "Saint Mark",
+        "countryCode": "GD",
+        "countryId": 88
+    },
+    {
+        "id": 1296,
+        "code": "06",
+        "name": "Saint Patrick",
+        "countryCode": "GD",
+        "countryId": 88
+    },
+    {
+        "id": 1297,
+        "code": "10",
+        "name": "Southern Grenadine Islands",
+        "countryCode": "GD",
+        "countryId": 88
+    },
+    {
+        "id": 1298,
+        "code": "AV",
+        "name": "Alta Verapaz",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1299,
+        "code": "BV",
+        "name": "Baja Verapaz",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1300,
+        "code": "CM",
+        "name": "Chimaltenango",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1301,
+        "code": "CQ",
+        "name": "Chiquimula",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1302,
+        "code": "ES",
+        "name": "Escuintla",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1303,
+        "code": "GU",
+        "name": "Guatemala",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1304,
+        "code": "HU",
+        "name": "Huehuetenango",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1305,
+        "code": "IZ",
+        "name": "Izabal",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1306,
+        "code": "JA",
+        "name": "Jalapa",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1307,
+        "code": "JU",
+        "name": "Jutiapa",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1308,
+        "code": "PE",
+        "name": "Petén",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1309,
+        "code": "PR",
+        "name": "El Progreso",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1310,
+        "code": "QC",
+        "name": "Quiché",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1311,
+        "code": "QZ",
+        "name": "Quetzaltenango",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1312,
+        "code": "RE",
+        "name": "Retalhuleu",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1313,
+        "code": "SA",
+        "name": "Sacatepéquez",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1314,
+        "code": "SM",
+        "name": "San Marcos",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1315,
+        "code": "SO",
+        "name": "Sololá",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1316,
+        "code": "SR",
+        "name": "Santa Rosa",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1317,
+        "code": "SU",
+        "name": "Suchitepéquez",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1318,
+        "code": "TO",
+        "name": "Totonicapán",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1319,
+        "code": "ZA",
+        "name": "Zacapa",
+        "countryCode": "GT",
+        "countryId": 91
+    },
+    {
+        "id": 1320,
+        "code": "BE",
+        "name": "Beyla",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1321,
+        "code": "BF",
+        "name": "Boffa",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1322,
+        "code": "BK",
+        "name": "Boké",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1323,
+        "code": "CO",
+        "name": "Coyah",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1324,
+        "code": "DB",
+        "name": "Dabola",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1325,
+        "code": "DI",
+        "name": "Dinguiraye",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1326,
+        "code": "DL",
+        "name": "Dalaba",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1327,
+        "code": "DU",
+        "name": "Dubréka",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1328,
+        "code": "FA",
+        "name": "Faranah",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1329,
+        "code": "FO",
+        "name": "Forécariah",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1330,
+        "code": "FR",
+        "name": "Fria",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1331,
+        "code": "GA",
+        "name": "Gaoual",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1332,
+        "code": "GU",
+        "name": "Guékédou",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1333,
+        "code": "KA",
+        "name": "Kankan",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1334,
+        "code": "KB",
+        "name": "Koubia",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1335,
+        "code": "KD",
+        "name": "Kindia",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1336,
+        "code": "KE",
+        "name": "Kérouané",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1337,
+        "code": "KN",
+        "name": "Koundara",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1338,
+        "code": "KO",
+        "name": "Kouroussa",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1339,
+        "code": "KS",
+        "name": "Kissidougou",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1340,
+        "code": "LA",
+        "name": "Labé",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1341,
+        "code": "LE",
+        "name": "Lélouma",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1342,
+        "code": "LO",
+        "name": "Lola",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1343,
+        "code": "MC",
+        "name": "Macenta",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1344,
+        "code": "MD",
+        "name": "Mandiana",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1345,
+        "code": "ML",
+        "name": "Mali",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1346,
+        "code": "MM",
+        "name": "Mamou",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1347,
+        "code": "NZ",
+        "name": "Nzérékoré",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1348,
+        "code": "PI",
+        "name": "Pita",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1349,
+        "code": "SI",
+        "name": "Siguiri",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1350,
+        "code": "TE",
+        "name": "Télimélé",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1351,
+        "code": "TO",
+        "name": "Tougué",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1352,
+        "code": "YO",
+        "name": "Yomou",
+        "countryCode": "GN",
+        "countryId": 93
+    },
+    {
+        "id": 1353,
+        "code": "BA",
+        "name": "Bafatá",
+        "countryCode": "GW",
+        "countryId": 94
+    },
+    {
+        "id": 1354,
+        "code": "BL",
+        "name": "Bolama",
+        "countryCode": "GW",
+        "countryId": 94
+    },
+    {
+        "id": 1355,
+        "code": "BM",
+        "name": "Biombo",
+        "countryCode": "GW",
+        "countryId": 94
+    },
+    {
+        "id": 1356,
+        "code": "BS",
+        "name": "Bissau",
+        "countryCode": "GW",
+        "countryId": 94
+    },
+    {
+        "id": 1357,
+        "code": "CA",
+        "name": "Cacheu",
+        "countryCode": "GW",
+        "countryId": 94
+    },
+    {
+        "id": 1358,
+        "code": "GA",
+        "name": "Gabú",
+        "countryCode": "GW",
+        "countryId": 94
+    },
+    {
+        "id": 1359,
+        "code": "OI",
+        "name": "Oio",
+        "countryCode": "GW",
+        "countryId": 94
+    },
+    {
+        "id": 1360,
+        "code": "QU",
+        "name": "Quinara",
+        "countryCode": "GW",
+        "countryId": 94
+    },
+    {
+        "id": 1361,
+        "code": "TO",
+        "name": "Tombali",
+        "countryCode": "GW",
+        "countryId": 94
+    },
+    {
+        "id": 1362,
+        "code": "BA",
+        "name": "Barima-Waini",
+        "countryCode": "GY",
+        "countryId": 95
+    },
+    {
+        "id": 1363,
+        "code": "CU",
+        "name": "Cuyuni-Mazaruni",
+        "countryCode": "GY",
+        "countryId": 95
+    },
+    {
+        "id": 1364,
+        "code": "DE",
+        "name": "Demerara-Mahaica",
+        "countryCode": "GY",
+        "countryId": 95
+    },
+    {
+        "id": 1365,
+        "code": "EB",
+        "name": "East Berbice-Corentyne",
+        "countryCode": "GY",
+        "countryId": 95
+    },
+    {
+        "id": 1366,
+        "code": "ES",
+        "name": "Essequibo Islands-West Demerara",
+        "countryCode": "GY",
+        "countryId": 95
+    },
+    {
+        "id": 1367,
+        "code": "MA",
+        "name": "Mahaica-Berbice",
+        "countryCode": "GY",
+        "countryId": 95
+    },
+    {
+        "id": 1368,
+        "code": "PM",
+        "name": "Pomeroon-Supenaam",
+        "countryCode": "GY",
+        "countryId": 95
+    },
+    {
+        "id": 1369,
+        "code": "PT",
+        "name": "Potaro-Siparuni",
+        "countryCode": "GY",
+        "countryId": 95
+    },
+    {
+        "id": 1370,
+        "code": "UD",
+        "name": "Upper Demerara-Berbice",
+        "countryCode": "GY",
+        "countryId": 95
+    },
+    {
+        "id": 1371,
+        "code": "UT",
+        "name": "Upper Takutu-Upper Essequibo",
+        "countryCode": "GY",
+        "countryId": 95
+    },
+    {
+        "id": 1372,
+        "code": "AR",
+        "name": "Artibonite",
+        "countryCode": "HT",
+        "countryId": 96
+    },
+    {
+        "id": 1373,
+        "code": "CE",
+        "name": "Centre",
+        "countryCode": "HT",
+        "countryId": 96
+    },
+    {
+        "id": 1374,
+        "code": "GA",
+        "name": "Grande-Anse",
+        "countryCode": "HT",
+        "countryId": 96
+    },
+    {
+        "id": 1375,
+        "code": "ND",
+        "name": "Nord",
+        "countryCode": "HT",
+        "countryId": 96
+    },
+    {
+        "id": 1376,
+        "code": "NE",
+        "name": "Nord-Est",
+        "countryCode": "HT",
+        "countryId": 96
+    },
+    {
+        "id": 1377,
+        "code": "NI",
+        "name": "Nippes",
+        "countryCode": "HT",
+        "countryId": 96
+    },
+    {
+        "id": 1378,
+        "code": "NO",
+        "name": "Nord-Ouest",
+        "countryCode": "HT",
+        "countryId": 96
+    },
+    {
+        "id": 1379,
+        "code": "OU",
+        "name": "Ouest",
+        "countryCode": "HT",
+        "countryId": 96
+    },
+    {
+        "id": 1380,
+        "code": "SD",
+        "name": "Sud",
+        "countryCode": "HT",
+        "countryId": 96
+    },
+    {
+        "id": 1381,
+        "code": "SE",
+        "name": "Sud-Est",
+        "countryCode": "HT",
+        "countryId": 96
+    },
+    {
+        "id": 1382,
+        "code": "AT",
+        "name": "Atlántida",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1383,
+        "code": "CH",
+        "name": "Choluteca",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1384,
+        "code": "CL",
+        "name": "Colón",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1385,
+        "code": "CM",
+        "name": "Comayagua",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1386,
+        "code": "CP",
+        "name": "Copán",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1387,
+        "code": "CR",
+        "name": "Cortés",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1388,
+        "code": "EP",
+        "name": "El Paraíso",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1389,
+        "code": "FM",
+        "name": "Francisco Morazán",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1390,
+        "code": "GD",
+        "name": "Gracias a Dios",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1391,
+        "code": "IB",
+        "name": "Islas de la Bahía",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1392,
+        "code": "IN",
+        "name": "Intibucá",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1393,
+        "code": "LE",
+        "name": "Lempira",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1394,
+        "code": "LP",
+        "name": "La Paz",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1395,
+        "code": "OC",
+        "name": "Ocotepeque",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1396,
+        "code": "OL",
+        "name": "Olancho",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1397,
+        "code": "SB",
+        "name": "Santa Bárbara",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1398,
+        "code": "VA",
+        "name": "Valle",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1399,
+        "code": "YO",
+        "name": "Yoro",
+        "countryCode": "HN",
+        "countryId": 99
+    },
+    {
+        "id": 1400,
+        "code": "BA",
+        "name": "Baranya",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1401,
+        "code": "BC",
+        "name": "Békéscsaba",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1402,
+        "code": "BE",
+        "name": "Békés",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1403,
+        "code": "BK",
+        "name": "Bács-Kiskun",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1404,
+        "code": "BU",
+        "name": "Budapest",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1405,
+        "code": "BZ",
+        "name": "Borsod-Abaúj-Zemplén",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1406,
+        "code": "CS",
+        "name": "Csongrád",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1407,
+        "code": "DE",
+        "name": "Debrecen",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1408,
+        "code": "DU",
+        "name": "Dunaujváros",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1409,
+        "code": "EG",
+        "name": "Eger",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1410,
+        "code": "FE",
+        "name": "Fejér",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1411,
+        "code": "GS",
+        "name": "Gyór-Moson-Sopron",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1412,
+        "code": "GY",
+        "name": "Gyór",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1413,
+        "code": "HB",
+        "name": "Hajdú-Bihar",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1414,
+        "code": "HE",
+        "name": "Heves",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1415,
+        "code": "HV",
+        "name": "Hódmezóvásárhely",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1416,
+        "code": "JN",
+        "name": "Jász-Nagykun-Szolnok",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1417,
+        "code": "KE",
+        "name": "Komárom-Esztergom",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1418,
+        "code": "KM",
+        "name": "Kecskemét",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1419,
+        "code": "KV",
+        "name": "Kaposvár",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1420,
+        "code": "MI",
+        "name": "Miskolc",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1421,
+        "code": "NK",
+        "name": "Nagykanizsa",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1422,
+        "code": "NO",
+        "name": "Nógrád",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1423,
+        "code": "NY",
+        "name": "Nyíregyháza",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1424,
+        "code": "PE",
+        "name": "Pest",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1425,
+        "code": "PS",
+        "name": "Pécs",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1426,
+        "code": "SD",
+        "name": "Szeged",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1427,
+        "code": "SF",
+        "name": "Székesfehérvár",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1428,
+        "code": "SH",
+        "name": "Szombathely",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1429,
+        "code": "SK",
+        "name": "Szolnok",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1430,
+        "code": "SN",
+        "name": "Sopron",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1431,
+        "code": "SO",
+        "name": "Somogy",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1432,
+        "code": "SS",
+        "name": "Szekszárd",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1433,
+        "code": "ST",
+        "name": "Salgótarján",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1434,
+        "code": "SZ",
+        "name": "Szabolcs-Szatmár-Bereg",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1435,
+        "code": "TB",
+        "name": "Tatabánya",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1436,
+        "code": "TO",
+        "name": "Tolna",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1437,
+        "code": "VA",
+        "name": "Vas",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1438,
+        "code": "VE",
+        "name": "Veszprém",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1439,
+        "code": "VM",
+        "name": "Veszprém",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1440,
+        "code": "ZA",
+        "name": "Zala",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1441,
+        "code": "ZE",
+        "name": "Zalaegerszeg",
+        "countryCode": "HU",
+        "countryId": 101
+    },
+    {
+        "id": 1442,
+        "code": "0",
+        "name": "Reykjavík",
+        "countryCode": "IS",
+        "countryId": 102
+    },
+    {
+        "id": 1443,
+        "code": "1",
+        "name": "Höfuðborgarsvæði utan Reykjavíkur",
+        "countryCode": "IS",
+        "countryId": 102
+    },
+    {
+        "id": 1444,
+        "code": "2",
+        "name": "Suðurnes",
+        "countryCode": "IS",
+        "countryId": 102
+    },
+    {
+        "id": 1445,
+        "code": "3",
+        "name": "Vesturland",
+        "countryCode": "IS",
+        "countryId": 102
+    },
+    {
+        "id": 1446,
+        "code": "4",
+        "name": "Vestfirðir",
+        "countryCode": "IS",
+        "countryId": 102
+    },
+    {
+        "id": 1447,
+        "code": "5",
+        "name": "Norðurland vestra",
+        "countryCode": "IS",
+        "countryId": 102
+    },
+    {
+        "id": 1448,
+        "code": "6",
+        "name": "Norðurland eystra",
+        "countryCode": "IS",
+        "countryId": 102
+    },
+    {
+        "id": 1449,
+        "code": "7",
+        "name": "Austurland",
+        "countryCode": "IS",
+        "countryId": 102
+    },
+    {
+        "id": 1450,
+        "code": "8",
+        "name": "Suðurland",
+        "countryCode": "IS",
+        "countryId": 102
+    },
+    {
+        "id": 1451,
+        "code": "AN",
+        "name": "Andaman and Nicobar Islands",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1452,
+        "code": "AP",
+        "name": "Andhra Pradesh",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1453,
+        "code": "AR",
+        "name": "Arunachal Pradesh",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1454,
+        "code": "AS",
+        "name": "Assam",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1455,
+        "code": "BR",
+        "name": "Bihar",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1456,
+        "code": "CH",
+        "name": "Chandigarh",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1457,
+        "code": "CT",
+        "name": "Chhattisgarh",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1458,
+        "code": "DD",
+        "name": "Daman and Diu",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1459,
+        "code": "DL",
+        "name": "Delhi",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1460,
+        "code": "DN",
+        "name": "Dadra and Nagar Haveli",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1461,
+        "code": "GA",
+        "name": "Goa",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1462,
+        "code": "GJ",
+        "name": "Gujarat",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1463,
+        "code": "HP",
+        "name": "Himachal Pradesh",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1464,
+        "code": "HR",
+        "name": "Haryana",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1465,
+        "code": "JH",
+        "name": "Jharkhand",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1466,
+        "code": "JK",
+        "name": "Jammu and Kashmir",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1467,
+        "code": "KA",
+        "name": "Karnataka",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1468,
+        "code": "KL",
+        "name": "Kerala",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1469,
+        "code": "LD",
+        "name": "Lakshadweep",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1470,
+        "code": "MH",
+        "name": "Maharashtra",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1471,
+        "code": "ML",
+        "name": "Meghalaya",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1472,
+        "code": "MN",
+        "name": "Manipur",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1473,
+        "code": "MP",
+        "name": "Madhya Pradesh",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1474,
+        "code": "MZ",
+        "name": "Mizoram",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1475,
+        "code": "NL",
+        "name": "Nagaland",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1476,
+        "code": "OR",
+        "name": "Orissa",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1477,
+        "code": "PB",
+        "name": "Punjab",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1478,
+        "code": "PY",
+        "name": "Pondicherry",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1479,
+        "code": "RJ",
+        "name": "Rajasthan",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1480,
+        "code": "SK",
+        "name": "Sikkim",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1481,
+        "code": "TN",
+        "name": "Tamil Nadu",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1482,
+        "code": "TR",
+        "name": "Tripura",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1483,
+        "code": "UP",
+        "name": "Uttar Pradesh",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1484,
+        "code": "WB",
+        "name": "West Bengal",
+        "countryCode": "IN",
+        "countryId": 103
+    },
+    {
+        "id": 1485,
+        "code": "AC",
+        "name": "Aceh",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1486,
+        "code": "BA",
+        "name": "Bali",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1487,
+        "code": "BB",
+        "name": "Bangka Belitung",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1488,
+        "code": "BE",
+        "name": "Bengkulu",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1489,
+        "code": "BT",
+        "name": "Banten",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1490,
+        "code": "GO",
+        "name": "Gorontalo",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1491,
+        "code": "JA",
+        "name": "Jambi",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1492,
+        "code": "JB",
+        "name": "Jawa Barat",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1493,
+        "code": "JI",
+        "name": "Jawa Timur",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1494,
+        "code": "JK",
+        "name": "Jakarta Raya",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1495,
+        "code": "JT",
+        "name": "Jawa Tengah",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1496,
+        "code": "KB",
+        "name": "Kalimantan Barat",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1497,
+        "code": "KI",
+        "name": "Kalimantan Timur",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1498,
+        "code": "KR",
+        "name": "Kepulauan Riau",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1499,
+        "code": "KS",
+        "name": "Kalimantan Selatan",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1500,
+        "code": "KT",
+        "name": "Kalimantan Tengah",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1501,
+        "code": "LA",
+        "name": "Lampung",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1502,
+        "code": "MA",
+        "name": "Maluku",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1503,
+        "code": "MU",
+        "name": "Maluku Utara",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1504,
+        "code": "NB",
+        "name": "Nusa Tenggara Barat",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1505,
+        "code": "NT",
+        "name": "Nusa Tenggara Timur",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1506,
+        "code": "PA",
+        "name": "Papua",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1507,
+        "code": "PB",
+        "name": "Papua Barat",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1508,
+        "code": "PB",
+        "name": "Papua Barat",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1509,
+        "code": "RI",
+        "name": "Riau",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1510,
+        "code": "SA",
+        "name": "Sulawesi Utara",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1511,
+        "code": "SB",
+        "name": "Sumatera Barat",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1512,
+        "code": "SG",
+        "name": "Sulawesi Tenggara",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1513,
+        "code": "SN",
+        "name": "Sulawesi Selatan",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1514,
+        "code": "SS",
+        "name": "Sumatera Selatan",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1515,
+        "code": "ST",
+        "name": "Sulawesi Tengah",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1516,
+        "code": "SU",
+        "name": "Sumatera Utara",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1517,
+        "code": "YO",
+        "name": "Yogyakarta",
+        "countryCode": "ID",
+        "countryId": 104
+    },
+    {
+        "id": 1518,
+        "code": "01",
+        "name": "Āz̄arbāyjān-e Sharqī",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1519,
+        "code": "02",
+        "name": "Āz̄arbāyjān-e Gharbī",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1520,
+        "code": "03",
+        "name": "Ardabīl",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1521,
+        "code": "04",
+        "name": "Eşfahānn",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1522,
+        "code": "05",
+        "name": "Īlām",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1523,
+        "code": "06",
+        "name": "Būshehr",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1524,
+        "code": "07",
+        "name": "Tehrān",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1525,
+        "code": "08",
+        "name": "Chahār Maḩāll va Bakhtīārī",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1526,
+        "code": "10",
+        "name": "Khūzestān",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1527,
+        "code": "11",
+        "name": "Zanjān",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1528,
+        "code": "12",
+        "name": "Semnān",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1529,
+        "code": "13",
+        "name": "Sīstān va Balūchestān",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1530,
+        "code": "14",
+        "name": "Fārs",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1531,
+        "code": "15",
+        "name": "Kermān",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1532,
+        "code": "16",
+        "name": "Kordestān",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1533,
+        "code": "17",
+        "name": "Kermānshāh",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1534,
+        "code": "18",
+        "name": "Kohgīlūyeh va Būyer Aḩmad",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1535,
+        "code": "19",
+        "name": "Gīlān",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1536,
+        "code": "20",
+        "name": "Lorestān",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1537,
+        "code": "21",
+        "name": "Māzandarān",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1538,
+        "code": "22",
+        "name": "Markazī",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1539,
+        "code": "23",
+        "name": "Hormozgān",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1540,
+        "code": "24",
+        "name": "Hamadān",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1541,
+        "code": "25",
+        "name": "Yazd",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1542,
+        "code": "26",
+        "name": "Qom",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1543,
+        "code": "27",
+        "name": "Golestān",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1544,
+        "code": "28",
+        "name": "Qazvīn",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1545,
+        "code": "29",
+        "name": "Khorāsān-e Janūbī",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1546,
+        "code": "30",
+        "name": "Khorāsān-e Razavī",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1547,
+        "code": "31",
+        "name": "Khorāsān-e Shemālī",
+        "countryCode": "IR",
+        "countryId": 105
+    },
+    {
+        "id": 1548,
+        "code": "AN",
+        "name": "Al Anbār",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1549,
+        "code": "AR",
+        "name": "Arbīl",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1550,
+        "code": "BA",
+        "name": "Al Başrah",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1551,
+        "code": "BB",
+        "name": "Bābil",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1552,
+        "code": "BG",
+        "name": "Baghdād",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1553,
+        "code": "DA",
+        "name": "Dahūk",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1554,
+        "code": "DI",
+        "name": "Diyālá",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1555,
+        "code": "DQ",
+        "name": "Dhī Qār",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1556,
+        "code": "KA",
+        "name": "Karbalā'",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1557,
+        "code": "MA",
+        "name": "Maysān",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1558,
+        "code": "MU",
+        "name": "Al Muthannáá",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1559,
+        "code": "NA",
+        "name": "An Najaf",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1560,
+        "code": "NI",
+        "name": "Nīnawá",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1561,
+        "code": "QA",
+        "name": "Al Qādisīyah",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1562,
+        "code": "SD",
+        "name": "Şalāḩ ad Dīn",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1563,
+        "code": "SU",
+        "name": "As Sulaymānīyah",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1564,
+        "code": "TS",
+        "name": "At Ta'mīm",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1565,
+        "code": "WA",
+        "name": "Wāsiţ",
+        "countryCode": "IQ",
+        "countryId": 106
+    },
+    {
+        "id": 1566,
+        "code": "CE",
+        "name": "Clare",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1567,
+        "code": "CN",
+        "name": "Cavan",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1568,
+        "code": "CO",
+        "name": "Cork",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1569,
+        "code": "CW",
+        "name": "Carlow",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1570,
+        "code": "D",
+        "name": "Dublin",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1571,
+        "code": "DL",
+        "name": "Donegal",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1572,
+        "code": "G",
+        "name": "Galway",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1573,
+        "code": "KE",
+        "name": "Kildare",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1574,
+        "code": "KK",
+        "name": "Kilkenny",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1575,
+        "code": "KY",
+        "name": "Kerry",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1576,
+        "code": "LD",
+        "name": "Longford",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1577,
+        "code": "LH",
+        "name": "Louth",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1578,
+        "code": "LK",
+        "name": "Limerick",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1579,
+        "code": "LM",
+        "name": "Leitrim",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1580,
+        "code": "LS",
+        "name": "Laois",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1581,
+        "code": "MH",
+        "name": "Meath",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1582,
+        "code": "MN",
+        "name": "Monaghan",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1583,
+        "code": "MO",
+        "name": "Mayo",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1584,
+        "code": "OY",
+        "name": "Offaly",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1585,
+        "code": "RN",
+        "name": "Roscommon",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1586,
+        "code": "SO",
+        "name": "Sligo",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1587,
+        "code": "TA",
+        "name": "Tipperary",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1588,
+        "code": "WD",
+        "name": "Waterford",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1589,
+        "code": "WH",
+        "name": "Westmeath",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1590,
+        "code": "WW",
+        "name": "Wicklow",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1591,
+        "code": "WX",
+        "name": "Wexford",
+        "countryCode": "IE",
+        "countryId": 107
+    },
+    {
+        "id": 1592,
+        "code": "D",
+        "name": "El Janūbī \/ HaDarom",
+        "countryCode": "IL",
+        "countryId": 109
+    },
+    {
+        "id": 1593,
+        "code": "HA",
+        "name": "Ḥeifā \/ H̱efa",
+        "countryCode": "IL",
+        "countryId": 109
+    },
+    {
+        "id": 1594,
+        "code": "JM",
+        "name": "Al Quds \/ Yerushalayim",
+        "countryCode": "IL",
+        "countryId": 109
+    },
+    {
+        "id": 1595,
+        "code": "M",
+        "name": "HaDarom \/ HaMerkaz",
+        "countryCode": "IL",
+        "countryId": 109
+    },
+    {
+        "id": 1596,
+        "code": "TA",
+        "name": "Tell Abīb \/ Tel-Aviv",
+        "countryCode": "IL",
+        "countryId": 109
+    },
+    {
+        "id": 1597,
+        "code": "Z",
+        "name": "Esh Shamālī \/ Ha Ẕafon",
+        "countryCode": "IL",
+        "countryId": 109
+    },
+    {
+        "id": 1598,
+        "code": "AG",
+        "name": "Agrigento",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1599,
+        "code": "AL",
+        "name": "Alessandria",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1600,
+        "code": "AN",
+        "name": "Ancona",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1601,
+        "code": "AO",
+        "name": "Aosta \/ Aoste (fr)",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1602,
+        "code": "AP",
+        "name": "Ascoli Piceno",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1603,
+        "code": "AQ",
+        "name": "L'Aquila",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1604,
+        "code": "AR",
+        "name": "Arezzo",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1605,
+        "code": "AT",
+        "name": "Asti",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1606,
+        "code": "AV",
+        "name": "Avellino",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1607,
+        "code": "BA",
+        "name": "Bari",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1608,
+        "code": "BG",
+        "name": "Bergamo",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1609,
+        "code": "BI",
+        "name": "Biella",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1610,
+        "code": "BL",
+        "name": "Belluno",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1611,
+        "code": "BN",
+        "name": "Benevento",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1612,
+        "code": "BO",
+        "name": "Bologna",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1613,
+        "code": "BR",
+        "name": "Brindisi",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1614,
+        "code": "BS",
+        "name": "Brescia",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1615,
+        "code": "BT",
+        "name": "Barletta-Andria-Trani",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1616,
+        "code": "BZ",
+        "name": "Bolzano \/ Bozen (de)",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1617,
+        "code": "CA",
+        "name": "Cagliari",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1618,
+        "code": "CB",
+        "name": "Campobasso",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1619,
+        "code": "CE",
+        "name": "Caserta",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1620,
+        "code": "CH",
+        "name": "Chieti",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1621,
+        "code": "CI",
+        "name": "Carbonia-Iglesias",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1622,
+        "code": "CL",
+        "name": "Caltanissetta",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1623,
+        "code": "CN",
+        "name": "Cuneo",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1624,
+        "code": "CO",
+        "name": "Como",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1625,
+        "code": "CR",
+        "name": "Cremona",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1626,
+        "code": "CS",
+        "name": "Cosenza",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1627,
+        "code": "CT",
+        "name": "Catania",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1628,
+        "code": "CZ",
+        "name": "Catanzaro",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1629,
+        "code": "EN",
+        "name": "Enna",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1630,
+        "code": "FC",
+        "name": "Forlì-Cesena",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1631,
+        "code": "FE",
+        "name": "Ferrara",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1632,
+        "code": "FG",
+        "name": "Foggia",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1633,
+        "code": "FI",
+        "name": "Firenze",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1634,
+        "code": "FM",
+        "name": "Fermo",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1635,
+        "code": "FR",
+        "name": "Frosinone",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1636,
+        "code": "GE",
+        "name": "Genova",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1637,
+        "code": "GO",
+        "name": "Gorizia",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1638,
+        "code": "GR",
+        "name": "Grosseto",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1639,
+        "code": "IM",
+        "name": "Imperia",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1640,
+        "code": "IS",
+        "name": "Isernia",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1641,
+        "code": "KR",
+        "name": "Crotone",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1642,
+        "code": "LC",
+        "name": "Lecco",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1643,
+        "code": "LE",
+        "name": "Lecce",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1644,
+        "code": "LI",
+        "name": "Livorno",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1645,
+        "code": "LO",
+        "name": "Lodi",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1646,
+        "code": "LT",
+        "name": "Latina",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1647,
+        "code": "LU",
+        "name": "Lucca",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1648,
+        "code": "MB",
+        "name": "Monza e Brianza",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1649,
+        "code": "MC",
+        "name": "Macerata",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1650,
+        "code": "ME",
+        "name": "Messina",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1651,
+        "code": "MI",
+        "name": "Milano",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1652,
+        "code": "MN",
+        "name": "Mantova",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1653,
+        "code": "MO",
+        "name": "Modena",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1654,
+        "code": "MS",
+        "name": "Massa-Carrara",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1655,
+        "code": "MT",
+        "name": "Matera",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1656,
+        "code": "NA",
+        "name": "Napoli",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1657,
+        "code": "NO",
+        "name": "Novara",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1658,
+        "code": "NU",
+        "name": "Nuoro",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1659,
+        "code": "OG",
+        "name": "Ogliastra",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1660,
+        "code": "OR",
+        "name": "Oristano",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1661,
+        "code": "OT",
+        "name": "Olbia-Tempio",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1662,
+        "code": "PA",
+        "name": "Palermo",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1663,
+        "code": "PC",
+        "name": "Piacenza",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1664,
+        "code": "PD",
+        "name": "Padova",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1665,
+        "code": "PE",
+        "name": "Pescara",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1666,
+        "code": "PG",
+        "name": "Perugia",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1667,
+        "code": "PI",
+        "name": "Pisa",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1668,
+        "code": "PN",
+        "name": "Pordenone",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1669,
+        "code": "PO",
+        "name": "Prato",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1670,
+        "code": "PR",
+        "name": "Parma",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1671,
+        "code": "PT",
+        "name": "Pistoia",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1672,
+        "code": "PU",
+        "name": "Pesaro e Urbino",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1673,
+        "code": "PV",
+        "name": "Pavia",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1674,
+        "code": "PZ",
+        "name": "Potenza",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1675,
+        "code": "RA",
+        "name": "Ravenna",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1676,
+        "code": "RC",
+        "name": "Reggio Calabria",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1677,
+        "code": "RE",
+        "name": "Reggio Emilia",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1678,
+        "code": "RG",
+        "name": "Ragusa",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1679,
+        "code": "RI",
+        "name": "Rieti",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1680,
+        "code": "RM",
+        "name": "Roma",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1681,
+        "code": "RN",
+        "name": "Rimini",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1682,
+        "code": "RO",
+        "name": "Rovigo",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1683,
+        "code": "SA",
+        "name": "Salerno",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1684,
+        "code": "SI",
+        "name": "Siena",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1685,
+        "code": "SO",
+        "name": "Sondrio",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1686,
+        "code": "SP",
+        "name": "La Spezia",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1687,
+        "code": "SR",
+        "name": "Siracusa",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1688,
+        "code": "SS",
+        "name": "Sassari",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1689,
+        "code": "SV",
+        "name": "Savona",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1690,
+        "code": "TA",
+        "name": "Taranto",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1691,
+        "code": "TE",
+        "name": "Teramo",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1692,
+        "code": "TN",
+        "name": "Trento",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1693,
+        "code": "TO",
+        "name": "Torino",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1694,
+        "code": "TP",
+        "name": "Trapani",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1695,
+        "code": "TR",
+        "name": "Terni",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1696,
+        "code": "TS",
+        "name": "Trieste",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1697,
+        "code": "TV",
+        "name": "Treviso",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1698,
+        "code": "UD",
+        "name": "Udine",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1699,
+        "code": "VA",
+        "name": "Varese",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1700,
+        "code": "VB",
+        "name": "Verbano-Cusio-Ossola",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1701,
+        "code": "VC",
+        "name": "Vercelli",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1702,
+        "code": "VE",
+        "name": "Venezia",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1703,
+        "code": "VI",
+        "name": "Vicenza",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1704,
+        "code": "VR",
+        "name": "Verona",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1705,
+        "code": "VS",
+        "name": "Medio Campidano",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1706,
+        "code": "VT",
+        "name": "Viterbo",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1707,
+        "code": "VV",
+        "name": "Vibo Valentia",
+        "countryCode": "IT",
+        "countryId": 110
+    },
+    {
+        "id": 1708,
+        "code": "01",
+        "name": "Kingston",
+        "countryCode": "JM",
+        "countryId": 111
+    },
+    {
+        "id": 1709,
+        "code": "02",
+        "name": "Saint Andrew",
+        "countryCode": "JM",
+        "countryId": 111
+    },
+    {
+        "id": 1710,
+        "code": "03",
+        "name": "Saint Thomas",
+        "countryCode": "JM",
+        "countryId": 111
+    },
+    {
+        "id": 1711,
+        "code": "04",
+        "name": "Portland",
+        "countryCode": "JM",
+        "countryId": 111
+    },
+    {
+        "id": 1712,
+        "code": "05",
+        "name": "Saint Mary",
+        "countryCode": "JM",
+        "countryId": 111
+    },
+    {
+        "id": 1713,
+        "code": "06",
+        "name": "Saint Ann",
+        "countryCode": "JM",
+        "countryId": 111
+    },
+    {
+        "id": 1714,
+        "code": "07",
+        "name": "Trelawny",
+        "countryCode": "JM",
+        "countryId": 111
+    },
+    {
+        "id": 1715,
+        "code": "08",
+        "name": "Saint James",
+        "countryCode": "JM",
+        "countryId": 111
+    },
+    {
+        "id": 1716,
+        "code": "09",
+        "name": "Hanover",
+        "countryCode": "JM",
+        "countryId": 111
+    },
+    {
+        "id": 1717,
+        "code": "10",
+        "name": "Westmoreland",
+        "countryCode": "JM",
+        "countryId": 111
+    },
+    {
+        "id": 1718,
+        "code": "11",
+        "name": "Saint Elizabeth",
+        "countryCode": "JM",
+        "countryId": 111
+    },
+    {
+        "id": 1719,
+        "code": "12",
+        "name": "Manchester",
+        "countryCode": "JM",
+        "countryId": 111
+    },
+    {
+        "id": 1720,
+        "code": "13",
+        "name": "Clarendon",
+        "countryCode": "JM",
+        "countryId": 111
+    },
+    {
+        "id": 1721,
+        "code": "14",
+        "name": "Saint Catherine",
+        "countryCode": "JM",
+        "countryId": 111
+    },
+    {
+        "id": 1722,
+        "code": "01",
+        "name": "Hokkaidô [Hokkaido]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1723,
+        "code": "02",
+        "name": "Aomori",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1724,
+        "code": "03",
+        "name": "Iwate",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1725,
+        "code": "04",
+        "name": "Miyagi",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1726,
+        "code": "05",
+        "name": "Akita",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1727,
+        "code": "06",
+        "name": "Yamagata",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1728,
+        "code": "07",
+        "name": "Hukusima [Fukushima]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1729,
+        "code": "08",
+        "name": "Ibaraki",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1730,
+        "code": "09",
+        "name": "Totigi [Tochigi]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1731,
+        "code": "10",
+        "name": "Gunma",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1732,
+        "code": "11",
+        "name": "Saitama",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1733,
+        "code": "12",
+        "name": "Tiba [Chiba]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1734,
+        "code": "13",
+        "name": "Tôkyô [Tokyo]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1735,
+        "code": "14",
+        "name": "Kanagawa",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1736,
+        "code": "15",
+        "name": "Niigata",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1737,
+        "code": "16",
+        "name": "Toyama",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1738,
+        "code": "17",
+        "name": "Isikawa [Ishikawa]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1739,
+        "code": "18",
+        "name": "Hukui [Fukui]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1740,
+        "code": "19",
+        "name": "Yamanasi [Yamanashi]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1741,
+        "code": "20",
+        "name": "Nagano",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1742,
+        "code": "21",
+        "name": "Gihu [Gifu]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1743,
+        "code": "22",
+        "name": "Sizuoka [Shizuoka]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1744,
+        "code": "23",
+        "name": "Aiti [Aichi]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1745,
+        "code": "24",
+        "name": "Mie",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1746,
+        "code": "25",
+        "name": "Siga [Shiga]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1747,
+        "code": "26",
+        "name": "Kyôto [Kyoto]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1748,
+        "code": "27",
+        "name": "Ôsaka [Osaka]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1749,
+        "code": "28",
+        "name": "Hyôgo [Hyogo]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1750,
+        "code": "29",
+        "name": "Nara",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1751,
+        "code": "30",
+        "name": "Wakayama",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1752,
+        "code": "31",
+        "name": "Tottori",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1753,
+        "code": "32",
+        "name": "Simane [Shimane]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1754,
+        "code": "33",
+        "name": "Okayama",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1755,
+        "code": "34",
+        "name": "Hirosima [Hiroshima]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1756,
+        "code": "35",
+        "name": "Yamaguti [Yamaguchi]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1757,
+        "code": "36",
+        "name": "Tokusima [Tokushima]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1758,
+        "code": "37",
+        "name": "Kagawa",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1759,
+        "code": "38",
+        "name": "Ehime",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1760,
+        "code": "39",
+        "name": "Kôti [Kochi]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1761,
+        "code": "40",
+        "name": "Hukuoka [Fukuoka]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1762,
+        "code": "41",
+        "name": "Saga",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1763,
+        "code": "42",
+        "name": "Nagasaki",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1764,
+        "code": "43",
+        "name": "Kumamoto",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1765,
+        "code": "44",
+        "name": "Ôita [Oita]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1766,
+        "code": "45",
+        "name": "Miyazaki",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1767,
+        "code": "46",
+        "name": "Kagosima [Kagoshima]",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1768,
+        "code": "47",
+        "name": "Okinawa",
+        "countryCode": "JP",
+        "countryId": 112
+    },
+    {
+        "id": 1769,
+        "code": "AJ",
+        "name": "ʽAjlūn",
+        "countryCode": "JO",
+        "countryId": 114
+    },
+    {
+        "id": 1770,
+        "code": "AM",
+        "name": "‘Ammān (Al ‘A̅şimah)",
+        "countryCode": "JO",
+        "countryId": 114
+    },
+    {
+        "id": 1771,
+        "code": "AQ",
+        "name": "Al'Aqaba",
+        "countryCode": "JO",
+        "countryId": 114
+    },
+    {
+        "id": 1772,
+        "code": "AT",
+        "name": "Aţ Ţafīlah",
+        "countryCode": "JO",
+        "countryId": 114
+    },
+    {
+        "id": 1773,
+        "code": "AZ",
+        "name": "Az Zarqā'",
+        "countryCode": "JO",
+        "countryId": 114
+    },
+    {
+        "id": 1774,
+        "code": "BA",
+        "name": "Al Balqā'",
+        "countryCode": "JO",
+        "countryId": 114
+    },
+    {
+        "id": 1775,
+        "code": "IR",
+        "name": "Irbid",
+        "countryCode": "JO",
+        "countryId": 114
+    },
+    {
+        "id": 1776,
+        "code": "JA",
+        "name": "Jarash",
+        "countryCode": "JO",
+        "countryId": 114
+    },
+    {
+        "id": 1777,
+        "code": "KA",
+        "name": "AI Karak",
+        "countryCode": "JO",
+        "countryId": 114
+    },
+    {
+        "id": 1778,
+        "code": "MA",
+        "name": "AI Mafraq",
+        "countryCode": "JO",
+        "countryId": 114
+    },
+    {
+        "id": 1779,
+        "code": "MD",
+        "name": "Mādabā",
+        "countryCode": "JO",
+        "countryId": 114
+    },
+    {
+        "id": 1780,
+        "code": "MN",
+        "name": "Ma'ān",
+        "countryCode": "JO",
+        "countryId": 114
+    },
+    {
+        "id": 1781,
+        "code": "AKM",
+        "name": "Aqmola oblysy",
+        "countryCode": "KZ",
+        "countryId": 115
+    },
+    {
+        "id": 1782,
+        "code": "AKT",
+        "name": "Aqtöbe oblysy",
+        "countryCode": "KZ",
+        "countryId": 115
+    },
+    {
+        "id": 1783,
+        "code": "ALA",
+        "name": "Almaty",
+        "countryCode": "KZ",
+        "countryId": 115
+    },
+    {
+        "id": 1784,
+        "code": "ALM",
+        "name": "Almaty oblysy",
+        "countryCode": "KZ",
+        "countryId": 115
+    },
+    {
+        "id": 1785,
+        "code": "AST",
+        "name": "Astana",
+        "countryCode": "KZ",
+        "countryId": 115
+    },
+    {
+        "id": 1786,
+        "code": "ATY",
+        "name": "Atyraū oblysy",
+        "countryCode": "KZ",
+        "countryId": 115
+    },
+    {
+        "id": 1787,
+        "code": "KAR",
+        "name": "Qaraghandy oblysy",
+        "countryCode": "KZ",
+        "countryId": 115
+    },
+    {
+        "id": 1788,
+        "code": "KUS",
+        "name": "Qostanay oblysy",
+        "countryCode": "KZ",
+        "countryId": 115
+    },
+    {
+        "id": 1789,
+        "code": "KZY",
+        "name": "Qyzylorda oblysy",
+        "countryCode": "KZ",
+        "countryId": 115
+    },
+    {
+        "id": 1790,
+        "code": "MAN",
+        "name": "Mangghystaū oblysy",
+        "countryCode": "KZ",
+        "countryId": 115
+    },
+    {
+        "id": 1791,
+        "code": "PAV",
+        "name": "Pavlodar oblysy",
+        "countryCode": "KZ",
+        "countryId": 115
+    },
+    {
+        "id": 1792,
+        "code": "SEV",
+        "name": "Soltüstik Qazaqstan oblysy",
+        "countryCode": "KZ",
+        "countryId": 115
+    },
+    {
+        "id": 1793,
+        "code": "VOS",
+        "name": "Shyghys Qazaqstan oblysy",
+        "countryCode": "KZ",
+        "countryId": 115
+    },
+    {
+        "id": 1794,
+        "code": "YUZ",
+        "name": "Ongtüstik Qazaqstan oblysy",
+        "countryCode": "KZ",
+        "countryId": 115
+    },
+    {
+        "id": 1795,
+        "code": "ZAP",
+        "name": "Batys Qazaqstan oblysy",
+        "countryCode": "KZ",
+        "countryId": 115
+    },
+    {
+        "id": 1796,
+        "code": "ZHA",
+        "name": "Zhambyl oblysy",
+        "countryCode": "KZ",
+        "countryId": 115
+    },
+    {
+        "id": 1797,
+        "code": "110",
+        "name": "Nairobi",
+        "countryCode": "KE",
+        "countryId": 116
+    },
+    {
+        "id": 1798,
+        "code": "200",
+        "name": "Central",
+        "countryCode": "KE",
+        "countryId": 116
+    },
+    {
+        "id": 1799,
+        "code": "300",
+        "name": "Coast",
+        "countryCode": "KE",
+        "countryId": 116
+    },
+    {
+        "id": 1800,
+        "code": "400",
+        "name": "Eastern",
+        "countryCode": "KE",
+        "countryId": 116
+    },
+    {
+        "id": 1801,
+        "code": "500",
+        "name": "North-Eastern",
+        "countryCode": "KE",
+        "countryId": 116
+    },
+    {
+        "id": 1802,
+        "code": "600",
+        "name": "Nyanza",
+        "countryCode": "KE",
+        "countryId": 116
+    },
+    {
+        "id": 1803,
+        "code": "700",
+        "name": "Rift Valley",
+        "countryCode": "KE",
+        "countryId": 116
+    },
+    {
+        "id": 1804,
+        "code": "800",
+        "name": "Western",
+        "countryCode": "KE",
+        "countryId": 116
+    },
+    {
+        "id": 1805,
+        "code": "G",
+        "name": "Gilbert Islands",
+        "countryCode": "KI",
+        "countryId": 117
+    },
+    {
+        "id": 1806,
+        "code": "L",
+        "name": "Line Islands",
+        "countryCode": "KI",
+        "countryId": 117
+    },
+    {
+        "id": 1807,
+        "code": "P",
+        "name": "Phoenix Islands",
+        "countryCode": "KI",
+        "countryId": 117
+    },
+    {
+        "id": 1808,
+        "code": "01",
+        "name": "Phyeongyang",
+        "countryCode": "KP",
+        "countryId": 118
+    },
+    {
+        "id": 1809,
+        "code": "02",
+        "name": "Phyeongannamto",
+        "countryCode": "KP",
+        "countryId": 118
+    },
+    {
+        "id": 1810,
+        "code": "03",
+        "name": "Phyeonganpukto",
+        "countryCode": "KP",
+        "countryId": 118
+    },
+    {
+        "id": 1811,
+        "code": "04",
+        "name": "Jakangto",
+        "countryCode": "KP",
+        "countryId": 118
+    },
+    {
+        "id": 1812,
+        "code": "05",
+        "name": "Hwanghainamto",
+        "countryCode": "KP",
+        "countryId": 118
+    },
+    {
+        "id": 1813,
+        "code": "06",
+        "name": "Hwanghaipukto",
+        "countryCode": "KP",
+        "countryId": 118
+    },
+    {
+        "id": 1814,
+        "code": "07",
+        "name": "Kangweonto",
+        "countryCode": "KP",
+        "countryId": 118
+    },
+    {
+        "id": 1815,
+        "code": "08",
+        "name": "Hamkyeongnamto",
+        "countryCode": "KP",
+        "countryId": 118
+    },
+    {
+        "id": 1816,
+        "code": "09",
+        "name": "Hamkyeongpukto",
+        "countryCode": "KP",
+        "countryId": 118
+    },
+    {
+        "id": 1817,
+        "code": "10",
+        "name": "Yanggang-do",
+        "countryCode": "KP",
+        "countryId": 118
+    },
+    {
+        "id": 1818,
+        "code": "13",
+        "name": "Nasǒn",
+        "countryCode": "KP",
+        "countryId": 118
+    },
+    {
+        "id": 1819,
+        "code": "11",
+        "name": "Seoul Teugbyeolsi",
+        "countryCode": "KR",
+        "countryId": 119
+    },
+    {
+        "id": 1820,
+        "code": "26",
+        "name": "Busan Gwang'yeogsi",
+        "countryCode": "KR",
+        "countryId": 119
+    },
+    {
+        "id": 1821,
+        "code": "27",
+        "name": "Daegu Gwang'yeogsi",
+        "countryCode": "KR",
+        "countryId": 119
+    },
+    {
+        "id": 1822,
+        "code": "28",
+        "name": "Incheon Gwang'yeogsiv",
+        "countryCode": "KR",
+        "countryId": 119
+    },
+    {
+        "id": 1823,
+        "code": "29",
+        "name": "Gwangju Gwang'yeogsi",
+        "countryCode": "KR",
+        "countryId": 119
+    },
+    {
+        "id": 1824,
+        "code": "30",
+        "name": "Daejeon Gwang'yeogsi",
+        "countryCode": "KR",
+        "countryId": 119
+    },
+    {
+        "id": 1825,
+        "code": "31",
+        "name": "Ulsan Gwang'yeogsi",
+        "countryCode": "KR",
+        "countryId": 119
+    },
+    {
+        "id": 1826,
+        "code": "41",
+        "name": "Gyeonggido",
+        "countryCode": "KR",
+        "countryId": 119
+    },
+    {
+        "id": 1827,
+        "code": "42",
+        "name": "Gang'weondo",
+        "countryCode": "KR",
+        "countryId": 119
+    },
+    {
+        "id": 1828,
+        "code": "43",
+        "name": "Chungcheongbugdo",
+        "countryCode": "KR",
+        "countryId": 119
+    },
+    {
+        "id": 1829,
+        "code": "44",
+        "name": "Chungcheongnamdo",
+        "countryCode": "KR",
+        "countryId": 119
+    },
+    {
+        "id": 1830,
+        "code": "45",
+        "name": "Jeonrabugdo",
+        "countryCode": "KR",
+        "countryId": 119
+    },
+    {
+        "id": 1831,
+        "code": "46",
+        "name": "Jeonranamdo",
+        "countryCode": "KR",
+        "countryId": 119
+    },
+    {
+        "id": 1832,
+        "code": "47",
+        "name": "Gyeongsangbugdo",
+        "countryCode": "KR",
+        "countryId": 119
+    },
+    {
+        "id": 1833,
+        "code": "48",
+        "name": "Gyeongsangnamdo",
+        "countryCode": "KR",
+        "countryId": 119
+    },
+    {
+        "id": 1834,
+        "code": "49",
+        "name": "Jejudo",
+        "countryCode": "KR",
+        "countryId": 119
+    },
+    {
+        "id": 1835,
+        "code": "AH",
+        "name": "Al Aḩmadī",
+        "countryCode": "KW",
+        "countryId": 120
+    },
+    {
+        "id": 1836,
+        "code": "FA",
+        "name": "Al Farwānīyah",
+        "countryCode": "KW",
+        "countryId": 120
+    },
+    {
+        "id": 1837,
+        "code": "HA",
+        "name": "Ḩawallī",
+        "countryCode": "KW",
+        "countryId": 120
+    },
+    {
+        "id": 1838,
+        "code": "JA",
+        "name": "Al Jahrā’",
+        "countryCode": "KW",
+        "countryId": 120
+    },
+    {
+        "id": 1839,
+        "code": "KU",
+        "name": "Al Kuwayt (Al ‘Āşimah)",
+        "countryCode": "KW",
+        "countryId": 120
+    },
+    {
+        "id": 1840,
+        "code": "MU",
+        "name": "Mubārak al Kabīr",
+        "countryCode": "KW",
+        "countryId": 120
+    },
+    {
+        "id": 1841,
+        "code": "B",
+        "name": "Batken",
+        "countryCode": "KG",
+        "countryId": 121
+    },
+    {
+        "id": 1842,
+        "code": "C",
+        "name": "Chü",
+        "countryCode": "KG",
+        "countryId": 121
+    },
+    {
+        "id": 1843,
+        "code": "GB",
+        "name": "Bishkek",
+        "countryCode": "KG",
+        "countryId": 121
+    },
+    {
+        "id": 1844,
+        "code": "J",
+        "name": "Jalal-Abad",
+        "countryCode": "KG",
+        "countryId": 121
+    },
+    {
+        "id": 1845,
+        "code": "N",
+        "name": "Naryn",
+        "countryCode": "KG",
+        "countryId": 121
+    },
+    {
+        "id": 1846,
+        "code": "O",
+        "name": "Osh",
+        "countryCode": "KG",
+        "countryId": 121
+    },
+    {
+        "id": 1847,
+        "code": "T",
+        "name": "Talas",
+        "countryCode": "KG",
+        "countryId": 121
+    },
+    {
+        "id": 1848,
+        "code": "Y",
+        "name": "Ysyk-Köl",
+        "countryCode": "KG",
+        "countryId": 121
+    },
+    {
+        "id": 1849,
+        "code": "AT",
+        "name": "Attapu [Attopeu]",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1850,
+        "code": "BK",
+        "name": "Bokèo",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1851,
+        "code": "BL",
+        "name": "Bolikhamxai [Borikhane]",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1852,
+        "code": "CH",
+        "name": "Champasak [Champassak]",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1853,
+        "code": "HO",
+        "name": "Houaphan",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1854,
+        "code": "KH",
+        "name": "Khammouan",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1855,
+        "code": "LM",
+        "name": "Louang Namtha",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1856,
+        "code": "LP",
+        "name": "Louangphabang [Louang Prabang)",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1857,
+        "code": "OU",
+        "name": "Oudomxai [Oudomsai]",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1858,
+        "code": "PH",
+        "name": "Phôngsali [Phong Saly]",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1859,
+        "code": "SL",
+        "name": "Salavan [Saravane]",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1860,
+        "code": "SV",
+        "name": "Savannakhét",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1861,
+        "code": "VI",
+        "name": "Vientiane",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1862,
+        "code": "VT",
+        "name": "Vientiane",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1863,
+        "code": "XA",
+        "name": "Xaignabouli [Sayaboury]",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1864,
+        "code": "XE",
+        "name": "Xékong [Sékong]",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1865,
+        "code": "XI",
+        "name": "Xiangkhoang [Xieng Khouang]",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1866,
+        "code": "XN",
+        "name": "Xaisômboun",
+        "countryCode": "LA",
+        "countryId": 122
+    },
+    {
+        "id": 1867,
+        "code": "DGV",
+        "name": "Daugavpils",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1868,
+        "code": "JEL",
+        "name": "Jelgava",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1869,
+        "code": "JKB",
+        "name": "Jēkabpils",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1870,
+        "code": "JUR",
+        "name": "Jūrmala",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1871,
+        "code": "LPX",
+        "name": "Liepāja",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1872,
+        "code": "REZ",
+        "name": "Rēzekne",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1873,
+        "code": "RIX",
+        "name": "Rīga",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1874,
+        "code": "VEN",
+        "name": "Ventspils",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1875,
+        "code": "VMR",
+        "name": "Valmiera",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1876,
+        "code": "001",
+        "name": "Aglonas novads (Aglona)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1877,
+        "code": "002",
+        "name": "Aizkraukles novads (Aizkraukle)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1878,
+        "code": "003",
+        "name": "Aizputes novads (Aizpute)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1879,
+        "code": "004",
+        "name": "Aknīstes novads (Aknīste)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1880,
+        "code": "005",
+        "name": "Alojas novads (Aloja)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1881,
+        "code": "006",
+        "name": "Alsungas novads (Alsunga)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1882,
+        "code": "007",
+        "name": "Alūksnes novads (Alūksne)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1883,
+        "code": "008",
+        "name": "Amatas novads (Amata)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1884,
+        "code": "009",
+        "name": "Apes novads (Ape)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1885,
+        "code": "010",
+        "name": "Auces novads (Auce)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1886,
+        "code": "011",
+        "name": "Ādažu novads (Ādaži)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1887,
+        "code": "012",
+        "name": "Babītes novads (Babīte)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1888,
+        "code": "013",
+        "name": "Baldones novads (Baldone)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1889,
+        "code": "014",
+        "name": "Baltinavas novads (Baltinava)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1890,
+        "code": "015",
+        "name": "Balvu novads (Balvi)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1891,
+        "code": "016",
+        "name": "Bauskas novads (Bauska)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1892,
+        "code": "017",
+        "name": "Beverīnas novads (Beverīna)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1893,
+        "code": "018",
+        "name": "Brocēnu novads (Brocēni)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1894,
+        "code": "019",
+        "name": "Burtnieku novads (Burtnieki)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1895,
+        "code": "020",
+        "name": "Carnikavas novads (Carnikava)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1896,
+        "code": "021",
+        "name": "Cesvaines novads (Cesvaine)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1897,
+        "code": "022",
+        "name": "Cēsu novads (Cēsis)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1898,
+        "code": "023",
+        "name": "Ciblas novads (Cibla)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1899,
+        "code": "024",
+        "name": "Dagdas novads (Dagda)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1900,
+        "code": "025",
+        "name": "Daugavpils novads (Daugavpils)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1901,
+        "code": "026",
+        "name": "Dobeles novads (Dobele)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1902,
+        "code": "027",
+        "name": "Dundagas novads (Dundaga)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1903,
+        "code": "028",
+        "name": "Durbes novads (Durbe)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1904,
+        "code": "029",
+        "name": "Engures novads (Engure)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1905,
+        "code": "030",
+        "name": "Ērgļu novads (Ērgļi)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1906,
+        "code": "031",
+        "name": "Garkalnes novads (Garkalne))",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1907,
+        "code": "032",
+        "name": "Grobiņas novads (Grobiņa)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1908,
+        "code": "033",
+        "name": "Gulbenes novads (Gulbene)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1909,
+        "code": "034",
+        "name": "Iecavas novads (Iecava)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1910,
+        "code": "035",
+        "name": "Ikšķiles novads (Ikšķile)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1911,
+        "code": "036",
+        "name": "Ilūkstes novads (Ilūkste)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1912,
+        "code": "037",
+        "name": "Inčukalna novads (Inčukalns)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1913,
+        "code": "038",
+        "name": "Jaunjelgavas novads (Jaunjelgava)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1914,
+        "code": "039",
+        "name": "Jaunpiebalgas novads (Jaunpiebalga)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1915,
+        "code": "040",
+        "name": "Jaunpils novads (Jaunpils)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1916,
+        "code": "041",
+        "name": "Jelgavas novads (Jelgava)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1917,
+        "code": "042",
+        "name": "Jēkabpils novads (Jēkabpils)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1918,
+        "code": "043",
+        "name": "Kandavas novads (Kandava)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1919,
+        "code": "044",
+        "name": "Kārsavas novads (Kārsava)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1920,
+        "code": "045",
+        "name": "Kocēnu novads",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1921,
+        "code": "046",
+        "name": "Kokneses novads (Koknese)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1922,
+        "code": "047",
+        "name": "Krāslavas novads (Krāslava)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1923,
+        "code": "048",
+        "name": "Krimuldas novads (Krimulda)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1924,
+        "code": "049",
+        "name": "Krustpils novads (Krustpils)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1925,
+        "code": "050",
+        "name": "Kuldīgas novads (Kuldīga)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1926,
+        "code": "051",
+        "name": "Ķeguma novads (Ķegums)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1927,
+        "code": "052",
+        "name": "Ķekavas novads (Ķekava)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1928,
+        "code": "053",
+        "name": "Lielvārdes novads (Lielvārde)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1929,
+        "code": "054",
+        "name": "Limbažu novads (Limbaži)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1930,
+        "code": "055",
+        "name": "Līgatnes novads (Līgatne)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1931,
+        "code": "056",
+        "name": "Līvānu novads (Līvāni)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1932,
+        "code": "057",
+        "name": "Lubānas novads (Lubāna)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1933,
+        "code": "058",
+        "name": "Ludzas novads (Ludza)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1934,
+        "code": "059",
+        "name": "Madonas novads (Madona)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1935,
+        "code": "060",
+        "name": "Mazsalacas novads (Mazsalaca)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1936,
+        "code": "061",
+        "name": "Mālpils novads (Mālpils)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1937,
+        "code": "062",
+        "name": "Mārupes novads (Mārupe)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1938,
+        "code": "063",
+        "name": "Mērsraga novads",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1939,
+        "code": "064",
+        "name": "Naukšēnu novads (Naukšēni)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1940,
+        "code": "065",
+        "name": "Neretas novads (Nereta)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1941,
+        "code": "066",
+        "name": "Nīcas novads (Nīca)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1942,
+        "code": "067",
+        "name": "Ogres novads (Ogre)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1943,
+        "code": "068",
+        "name": "Olaines novads (Olaine)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1944,
+        "code": "069",
+        "name": "Ozolnieku novads (Ozolnieki)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1945,
+        "code": "070",
+        "name": "Pārgaujas novads (Pārgauja)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1946,
+        "code": "071",
+        "name": "Pāvilostas novads (Pāvilosta)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1947,
+        "code": "072",
+        "name": "Pļaviņu novads (Pļaviņas)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1948,
+        "code": "073",
+        "name": "Preiļu novads (Preiļi)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1949,
+        "code": "074",
+        "name": "Priekules novads (Priekule)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1950,
+        "code": "075",
+        "name": "Priekuļu novads (Priekuļi)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1951,
+        "code": "076",
+        "name": "Raunas novads (Rauna)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1952,
+        "code": "077",
+        "name": "Rēzeknes novads (Rēzekne)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1953,
+        "code": "078",
+        "name": "Riebiņu novads (Riebiņi)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1954,
+        "code": "079",
+        "name": "Rojas novads (Roja)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1955,
+        "code": "080",
+        "name": "Ropažu novads (Ropaži)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1956,
+        "code": "081",
+        "name": "Rucavas novads (Rucava)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1957,
+        "code": "082",
+        "name": "Rugāju novads (Rugāji)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1958,
+        "code": "083",
+        "name": "Rundāles novads (Rundāle)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1959,
+        "code": "084",
+        "name": "Rūjienas novads (Rūjiena)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1960,
+        "code": "085",
+        "name": "Salas novads (Sala)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1961,
+        "code": "086",
+        "name": "Salacgrīvas novads (Salacgrīva)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1962,
+        "code": "087",
+        "name": "Salaspils novads (Salaspils)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1963,
+        "code": "088",
+        "name": "Saldus novads (Saldus)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1964,
+        "code": "089",
+        "name": "Saulkrastu novads (Saulkrasti)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1965,
+        "code": "090",
+        "name": "Sējas novads (Sēja)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1966,
+        "code": "091",
+        "name": "Siguldas novads (Sigulda)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1967,
+        "code": "092",
+        "name": "Skrīveru novads (Skrīveri)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1968,
+        "code": "093",
+        "name": "Skrundas novads (Skrunda)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1969,
+        "code": "094",
+        "name": "Smiltenes novads (Smiltene)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1970,
+        "code": "095",
+        "name": "Stopiņu novads (Stopiņi)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1971,
+        "code": "096",
+        "name": "Strenču novads (Strenči)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1972,
+        "code": "097",
+        "name": "Talsu novads (Talsi)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1973,
+        "code": "098",
+        "name": "Tērvetes novads (Tērvete)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1974,
+        "code": "099",
+        "name": "Tukuma novads (Tukums)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1975,
+        "code": "100",
+        "name": "Vaiņodes novads (Vaiņode)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1976,
+        "code": "101",
+        "name": "Valkas novads (Valka)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1977,
+        "code": "102",
+        "name": "Varakļānu novads (Varakļāni)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1978,
+        "code": "103",
+        "name": "Vārkavas novads (Vārkava)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1979,
+        "code": "104",
+        "name": "Vecpiebalgas novads (Vecpiebalga)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1980,
+        "code": "105",
+        "name": "Vecumnieku novads (Vecumnieki)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1981,
+        "code": "106",
+        "name": "Ventspils novads (Ventspils)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1982,
+        "code": "107",
+        "name": "Viesītes novads (Viesīte)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1983,
+        "code": "108",
+        "name": "Viļakas novads (Viļaka)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1984,
+        "code": "109",
+        "name": "Viļānu novads (Viļāni)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1985,
+        "code": "110",
+        "name": "Zilupes novads (Zilupe)",
+        "countryCode": "LV",
+        "countryId": 123
+    },
+    {
+        "id": 1986,
+        "code": "AK",
+        "name": "Aakkârâli",
+        "countryCode": "LB",
+        "countryId": 124
+    },
+    {
+        "id": 1987,
+        "code": "AS",
+        "name": "Liban-Nordâli",
+        "countryCode": "LB",
+        "countryId": 124
+    },
+    {
+        "id": 1988,
+        "code": "BA",
+        "name": "Beyrouth",
+        "countryCode": "LB",
+        "countryId": 124
+    },
+    {
+        "id": 1989,
+        "code": "BH",
+        "name": "Baalbek-Hermel",
+        "countryCode": "LB",
+        "countryId": 124
+    },
+    {
+        "id": 1990,
+        "code": "BI",
+        "name": "Béqaa",
+        "countryCode": "LB",
+        "countryId": 124
+    },
+    {
+        "id": 1991,
+        "code": "JA",
+        "name": "Liban-Sudûbi",
+        "countryCode": "LB",
+        "countryId": 124
+    },
+    {
+        "id": 1992,
+        "code": "JL",
+        "name": "Mont-Liban",
+        "countryCode": "LB",
+        "countryId": 124
+    },
+    {
+        "id": 1993,
+        "code": "NA",
+        "name": "Nabatîyé",
+        "countryCode": "LB",
+        "countryId": 124
+    },
+    {
+        "id": 1994,
+        "code": "A",
+        "name": "Maseru",
+        "countryCode": "LS",
+        "countryId": 125
+    },
+    {
+        "id": 1995,
+        "code": "B",
+        "name": "Butha-Buthe",
+        "countryCode": "LS",
+        "countryId": 125
+    },
+    {
+        "id": 1996,
+        "code": "C",
+        "name": "Leribe",
+        "countryCode": "LS",
+        "countryId": 125
+    },
+    {
+        "id": 1997,
+        "code": "D",
+        "name": "Berea",
+        "countryCode": "LS",
+        "countryId": 125
+    },
+    {
+        "id": 1998,
+        "code": "E",
+        "name": "Mafeteng",
+        "countryCode": "LS",
+        "countryId": 125
+    },
+    {
+        "id": 1999,
+        "code": "F",
+        "name": "Mohale's Hoek",
+        "countryCode": "LS",
+        "countryId": 125
+    },
+    {
+        "id": 2000,
+        "code": "G",
+        "name": "Quthing",
+        "countryCode": "LS",
+        "countryId": 125
+    },
+    {
+        "id": 2001,
+        "code": "H",
+        "name": "Qacha's Nek",
+        "countryCode": "LS",
+        "countryId": 125
+    },
+    {
+        "id": 2002,
+        "code": "J",
+        "name": "Mokhotlong",
+        "countryCode": "LS",
+        "countryId": 125
+    },
+    {
+        "id": 2003,
+        "code": "K",
+        "name": "Thaba-Tseka",
+        "countryCode": "LS",
+        "countryId": 125
+    },
+    {
+        "id": 2004,
+        "code": "BG",
+        "name": "Bong",
+        "countryCode": "LR",
+        "countryId": 126
+    },
+    {
+        "id": 2005,
+        "code": "BM",
+        "name": "Bomi",
+        "countryCode": "LR",
+        "countryId": 126
+    },
+    {
+        "id": 2006,
+        "code": "CM",
+        "name": "Grand Cape Mount",
+        "countryCode": "LR",
+        "countryId": 126
+    },
+    {
+        "id": 2007,
+        "code": "GB",
+        "name": "Grand Bassa",
+        "countryCode": "LR",
+        "countryId": 126
+    },
+    {
+        "id": 2008,
+        "code": "GG",
+        "name": "Grand Gedeh",
+        "countryCode": "LR",
+        "countryId": 126
+    },
+    {
+        "id": 2009,
+        "code": "GK",
+        "name": "Grand Kru",
+        "countryCode": "LR",
+        "countryId": 126
+    },
+    {
+        "id": 2010,
+        "code": "GP",
+        "name": "Gbarpolu",
+        "countryCode": "LR",
+        "countryId": 126
+    },
+    {
+        "id": 2011,
+        "code": "LO",
+        "name": "Lofa",
+        "countryCode": "LR",
+        "countryId": 126
+    },
+    {
+        "id": 2012,
+        "code": "MG",
+        "name": "Margibi",
+        "countryCode": "LR",
+        "countryId": 126
+    },
+    {
+        "id": 2013,
+        "code": "MO",
+        "name": "Montserrado",
+        "countryCode": "LR",
+        "countryId": 126
+    },
+    {
+        "id": 2014,
+        "code": "MY",
+        "name": "Maryland",
+        "countryCode": "LR",
+        "countryId": 126
+    },
+    {
+        "id": 2015,
+        "code": "NI",
+        "name": "Nimba",
+        "countryCode": "LR",
+        "countryId": 126
+    },
+    {
+        "id": 2016,
+        "code": "RG",
+        "name": "River Gee",
+        "countryCode": "LR",
+        "countryId": 126
+    },
+    {
+        "id": 2017,
+        "code": "RI",
+        "name": "Rivercess",
+        "countryCode": "LR",
+        "countryId": 126
+    },
+    {
+        "id": 2018,
+        "code": "SI",
+        "name": "Sinoe",
+        "countryCode": "LR",
+        "countryId": 126
+    },
+    {
+        "id": 2019,
+        "code": "BA",
+        "name": "Banghāzī",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2020,
+        "code": "BU",
+        "name": "Al Buţnān",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2021,
+        "code": "DR",
+        "name": "Darnah",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2022,
+        "code": "GT",
+        "name": "Ghāt",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2023,
+        "code": "JA",
+        "name": "Al Jabal al Akhḑar",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2024,
+        "code": "JG",
+        "name": "Al Jabal al Gharbī",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2025,
+        "code": "JI",
+        "name": "Al Jifārah",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2026,
+        "code": "JU",
+        "name": "Al Jufrah",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2027,
+        "code": "KF",
+        "name": "Al Kufrah",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2028,
+        "code": "MB",
+        "name": "Al Marqab",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2029,
+        "code": "MI",
+        "name": "Mişrātah",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2030,
+        "code": "MJ",
+        "name": "Al Marj",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2031,
+        "code": "MQ",
+        "name": "Murzuq",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2032,
+        "code": "NL",
+        "name": "Nālūt",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2033,
+        "code": "NQ",
+        "name": "An Nuqāţ al Khams",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2034,
+        "code": "SB",
+        "name": "Sabhā",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2035,
+        "code": "SR",
+        "name": "Surt",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2036,
+        "code": "TB",
+        "name": "Ţarābulus",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2037,
+        "code": "WA",
+        "name": "Al Wāḩāt",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2038,
+        "code": "WD",
+        "name": "Wādī al Ḩayāt",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2039,
+        "code": "WS",
+        "name": "Wādī ash Shāţiʾ",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2040,
+        "code": "ZA",
+        "name": "Az Zāwiyah",
+        "countryCode": "LY",
+        "countryId": 127
+    },
+    {
+        "id": 2041,
+        "code": "01",
+        "name": "Balzers",
+        "countryCode": "LI",
+        "countryId": 128
+    },
+    {
+        "id": 2042,
+        "code": "02",
+        "name": "Eschen",
+        "countryCode": "LI",
+        "countryId": 128
+    },
+    {
+        "id": 2043,
+        "code": "03",
+        "name": "Gamprin",
+        "countryCode": "LI",
+        "countryId": 128
+    },
+    {
+        "id": 2044,
+        "code": "04",
+        "name": "Mauren",
+        "countryCode": "LI",
+        "countryId": 128
+    },
+    {
+        "id": 2045,
+        "code": "05",
+        "name": "Planken",
+        "countryCode": "LI",
+        "countryId": 128
+    },
+    {
+        "id": 2046,
+        "code": "06",
+        "name": "Ruggell",
+        "countryCode": "LI",
+        "countryId": 128
+    },
+    {
+        "id": 2047,
+        "code": "07",
+        "name": "Schaan",
+        "countryCode": "LI",
+        "countryId": 128
+    },
+    {
+        "id": 2048,
+        "code": "08",
+        "name": "Schellenberg",
+        "countryCode": "LI",
+        "countryId": 128
+    },
+    {
+        "id": 2049,
+        "code": "09",
+        "name": "Triesen",
+        "countryCode": "LI",
+        "countryId": 128
+    },
+    {
+        "id": 2050,
+        "code": "10",
+        "name": "Triesenberg",
+        "countryCode": "LI",
+        "countryId": 128
+    },
+    {
+        "id": 2051,
+        "code": "11",
+        "name": "Vaduz",
+        "countryCode": "LI",
+        "countryId": 128
+    },
+    {
+        "id": 2052,
+        "code": "AL",
+        "name": "Alytaus Apskritis",
+        "countryCode": "LT",
+        "countryId": 129
+    },
+    {
+        "id": 2053,
+        "code": "KL",
+        "name": "Klaipėdos Apskritis",
+        "countryCode": "LT",
+        "countryId": 129
+    },
+    {
+        "id": 2054,
+        "code": "KU",
+        "name": "Kauno Apskritis",
+        "countryCode": "LT",
+        "countryId": 129
+    },
+    {
+        "id": 2055,
+        "code": "MR",
+        "name": "Marijampolės Apskritis",
+        "countryCode": "LT",
+        "countryId": 129
+    },
+    {
+        "id": 2056,
+        "code": "PN",
+        "name": "Panevėžio Apskritis",
+        "countryCode": "LT",
+        "countryId": 129
+    },
+    {
+        "id": 2057,
+        "code": "SA",
+        "name": "Šiaulių Apskritis",
+        "countryCode": "LT",
+        "countryId": 129
+    },
+    {
+        "id": 2058,
+        "code": "TA",
+        "name": "Tauragės Apskritis",
+        "countryCode": "LT",
+        "countryId": 129
+    },
+    {
+        "id": 2059,
+        "code": "TE",
+        "name": "Šiaulių Apskritis",
+        "countryCode": "LT",
+        "countryId": 129
+    },
+    {
+        "id": 2060,
+        "code": "UT",
+        "name": "Utenos Apskritis",
+        "countryCode": "LT",
+        "countryId": 129
+    },
+    {
+        "id": 2061,
+        "code": "VL",
+        "name": "Vilniaus Apskritis",
+        "countryCode": "LT",
+        "countryId": 129
+    },
+    {
+        "id": 2062,
+        "code": "D",
+        "name": "Diekirch",
+        "countryCode": "LU",
+        "countryId": 130
+    },
+    {
+        "id": 2063,
+        "code": "G",
+        "name": "Grevenmacher",
+        "countryCode": "LU",
+        "countryId": 130
+    },
+    {
+        "id": 2064,
+        "code": "L",
+        "name": "Luxembourg (fr)",
+        "countryCode": "LU",
+        "countryId": 130
+    },
+    {
+        "id": 2065,
+        "code": "01",
+        "name": "Aerodrom",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2066,
+        "code": "02",
+        "name": "Aračinovo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2067,
+        "code": "03",
+        "name": "Berovo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2068,
+        "code": "04",
+        "name": "Bitola",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2069,
+        "code": "05",
+        "name": "Bogdanci",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2070,
+        "code": "06",
+        "name": "Bogovinje",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2071,
+        "code": "07",
+        "name": "Bosilovo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2072,
+        "code": "08",
+        "name": "Brvenica",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2073,
+        "code": "09",
+        "name": "Butel",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2074,
+        "code": "10",
+        "name": "Valandovo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2075,
+        "code": "11",
+        "name": "Vasilevo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2076,
+        "code": "12",
+        "name": "Vevčani",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2077,
+        "code": "13",
+        "name": "Veles",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2078,
+        "code": "14",
+        "name": "Vinica",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2079,
+        "code": "15",
+        "name": "Vraneštica",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2080,
+        "code": "16",
+        "name": "Vrapčište",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2081,
+        "code": "17",
+        "name": "Gazi Babae",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2082,
+        "code": "18",
+        "name": "Gevgelija",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2083,
+        "code": "19",
+        "name": "Gostivar",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2084,
+        "code": "20",
+        "name": "Gradsko",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2085,
+        "code": "21",
+        "name": "Debar",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2086,
+        "code": "22",
+        "name": "Debarca",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2087,
+        "code": "23",
+        "name": "Delčevo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2088,
+        "code": "24",
+        "name": "Demir Kapija",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2089,
+        "code": "25",
+        "name": "Demir Hisar",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2090,
+        "code": "26",
+        "name": "Dojran",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2091,
+        "code": "27",
+        "name": "Dolneni",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2092,
+        "code": "28",
+        "name": "Drugovo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2093,
+        "code": "29",
+        "name": "Gjorče Petrov",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2094,
+        "code": "30",
+        "name": "Želino",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2095,
+        "code": "31",
+        "name": "Zajas",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2096,
+        "code": "32",
+        "name": "Zelenikovo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2097,
+        "code": "33",
+        "name": "Zrnovci",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2098,
+        "code": "34",
+        "name": "Ilinden",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2099,
+        "code": "35",
+        "name": "Jegunovce",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2100,
+        "code": "36",
+        "name": "Kavadarci",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2101,
+        "code": "37",
+        "name": "Karbinci",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2102,
+        "code": "38",
+        "name": "Karpoš",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2103,
+        "code": "39",
+        "name": "Kisela Voda",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2104,
+        "code": "40",
+        "name": "Kičevo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2105,
+        "code": "41",
+        "name": "Konče",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2106,
+        "code": "42",
+        "name": "Kočani",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2107,
+        "code": "43",
+        "name": "Kratovo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2108,
+        "code": "44",
+        "name": "Kriva Palanka",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2109,
+        "code": "45",
+        "name": "Krivogaštan",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2110,
+        "code": "46",
+        "name": "Kruševo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2111,
+        "code": "47",
+        "name": "Kumanovo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2112,
+        "code": "48",
+        "name": "Lipkovo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2113,
+        "code": "49",
+        "name": "Lozovo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2114,
+        "code": "50",
+        "name": "Mavrovo-i-Rostuša",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2115,
+        "code": "51",
+        "name": "Makedonska Kamenica",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2116,
+        "code": "52",
+        "name": "Makedonski Brod",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2117,
+        "code": "53",
+        "name": "Mogila",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2118,
+        "code": "54",
+        "name": "Negotino",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2119,
+        "code": "55",
+        "name": "Novaci",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2120,
+        "code": "56",
+        "name": "Novo Selo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2121,
+        "code": "57",
+        "name": "Oslomej",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2122,
+        "code": "58",
+        "name": "Ohrid",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2123,
+        "code": "59",
+        "name": "Petrovec",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2124,
+        "code": "60",
+        "name": "Pehčevo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2125,
+        "code": "61",
+        "name": "Plasnica",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2126,
+        "code": "62",
+        "name": "Prilep",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2127,
+        "code": "63",
+        "name": "Probištip",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2128,
+        "code": "64",
+        "name": "Radoviš",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2129,
+        "code": "65",
+        "name": "Rankovce",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2130,
+        "code": "66",
+        "name": "Resen",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2131,
+        "code": "67",
+        "name": "Rosoman",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2132,
+        "code": "68",
+        "name": "Saraj",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2133,
+        "code": "69",
+        "name": "Sveti Nikole",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2134,
+        "code": "70",
+        "name": "Sopište",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2135,
+        "code": "71",
+        "name": "Staro Nagoričane",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2136,
+        "code": "72",
+        "name": "Struga",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2137,
+        "code": "73",
+        "name": "Strumica",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2138,
+        "code": "74",
+        "name": "Studeničani",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2139,
+        "code": "75",
+        "name": "Tearce",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2140,
+        "code": "76",
+        "name": "Tetovo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2141,
+        "code": "77",
+        "name": "Centar",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2142,
+        "code": "78",
+        "name": "Centar Župa",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2143,
+        "code": "78",
+        "name": "Centar Župa",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2144,
+        "code": "79",
+        "name": "Čair",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2145,
+        "code": "80",
+        "name": "Čaška",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2146,
+        "code": "81",
+        "name": "Češinovo-Obleševo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2147,
+        "code": "82",
+        "name": "Čučer Sandevo",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2148,
+        "code": "83",
+        "name": "Štip",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2149,
+        "code": "84",
+        "name": "Šuto Orizari",
+        "countryCode": "MK",
+        "countryId": 132
+    },
+    {
+        "id": 2150,
+        "code": "A",
+        "name": "Toamasina",
+        "countryCode": "MG",
+        "countryId": 133
+    },
+    {
+        "id": 2151,
+        "code": "D",
+        "name": "Antsiranana",
+        "countryCode": "MG",
+        "countryId": 133
+    },
+    {
+        "id": 2152,
+        "code": "F",
+        "name": "Fianarantsoa",
+        "countryCode": "MG",
+        "countryId": 133
+    },
+    {
+        "id": 2153,
+        "code": "M",
+        "name": "Mahajanga",
+        "countryCode": "MG",
+        "countryId": 133
+    },
+    {
+        "id": 2154,
+        "code": "T",
+        "name": "Antananarivo",
+        "countryCode": "MG",
+        "countryId": 133
+    },
+    {
+        "id": 2155,
+        "code": "U",
+        "name": "Toliara",
+        "countryCode": "MG",
+        "countryId": 133
+    },
+    {
+        "id": 2156,
+        "code": "BA",
+        "name": "Balaka",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2157,
+        "code": "BL",
+        "name": "Blantyre",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2158,
+        "code": "C",
+        "name": "Central",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2159,
+        "code": "CK",
+        "name": "Chikwawa",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2160,
+        "code": "CR",
+        "name": "Chiradzulu",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2161,
+        "code": "CT",
+        "name": "Chitipa",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2162,
+        "code": "DE",
+        "name": "Dedza",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2163,
+        "code": "DO",
+        "name": "Dowa",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2164,
+        "code": "KR",
+        "name": "Karonga",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2165,
+        "code": "KS",
+        "name": "Kasungu",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2166,
+        "code": "LI",
+        "name": "Lilongwe",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2167,
+        "code": "LK",
+        "name": "Likoma Island",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2168,
+        "code": "MC",
+        "name": "Mchinji",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2169,
+        "code": "MG",
+        "name": "Mangochi",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2170,
+        "code": "MH",
+        "name": "Machinga",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2171,
+        "code": "MU",
+        "name": "Mulanje",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2172,
+        "code": "MW",
+        "name": "Mwanza",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2173,
+        "code": "MZ",
+        "name": "Mzimba",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2174,
+        "code": "N",
+        "name": "Northern",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2175,
+        "code": "NB",
+        "name": "Nkhata Bay",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2176,
+        "code": "NE",
+        "name": "Neno",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2177,
+        "code": "NI",
+        "name": "Ntchisi",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2178,
+        "code": "NK",
+        "name": "Nkhotakota",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2179,
+        "code": "NS",
+        "name": "Nsanje",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2180,
+        "code": "NU",
+        "name": "Ntcheu",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2181,
+        "code": "PH",
+        "name": "Phalombe",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2182,
+        "code": "RU",
+        "name": "Rumphi",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2183,
+        "code": "S",
+        "name": "Southern",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2184,
+        "code": "SA",
+        "name": "Salima",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2185,
+        "code": "TH",
+        "name": "Thyolo",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2186,
+        "code": "ZO",
+        "name": "Zomba",
+        "countryCode": "MW",
+        "countryId": 134
+    },
+    {
+        "id": 2187,
+        "code": "01",
+        "name": "Johor",
+        "countryCode": "MY",
+        "countryId": 135
+    },
+    {
+        "id": 2188,
+        "code": "02",
+        "name": "Kedah",
+        "countryCode": "MY",
+        "countryId": 135
+    },
+    {
+        "id": 2189,
+        "code": "03",
+        "name": "Kelantan",
+        "countryCode": "MY",
+        "countryId": 135
+    },
+    {
+        "id": 2190,
+        "code": "04",
+        "name": "Melaka",
+        "countryCode": "MY",
+        "countryId": 135
+    },
+    {
+        "id": 2191,
+        "code": "05",
+        "name": "Negeri Sembilan",
+        "countryCode": "MY",
+        "countryId": 135
+    },
+    {
+        "id": 2192,
+        "code": "06",
+        "name": "Pahang",
+        "countryCode": "MY",
+        "countryId": 135
+    },
+    {
+        "id": 2193,
+        "code": "07",
+        "name": "Pulau Pinang",
+        "countryCode": "MY",
+        "countryId": 135
+    },
+    {
+        "id": 2194,
+        "code": "08",
+        "name": "Perak",
+        "countryCode": "MY",
+        "countryId": 135
+    },
+    {
+        "id": 2195,
+        "code": "09",
+        "name": "Perlis",
+        "countryCode": "MY",
+        "countryId": 135
+    },
+    {
+        "id": 2196,
+        "code": "10",
+        "name": "Selangor",
+        "countryCode": "MY",
+        "countryId": 135
+    },
+    {
+        "id": 2197,
+        "code": "11",
+        "name": "Terengganu",
+        "countryCode": "MY",
+        "countryId": 135
+    },
+    {
+        "id": 2198,
+        "code": "12",
+        "name": "Sabah",
+        "countryCode": "MY",
+        "countryId": 135
+    },
+    {
+        "id": 2199,
+        "code": "13",
+        "name": "Sarawak",
+        "countryCode": "MY",
+        "countryId": 135
+    },
+    {
+        "id": 2200,
+        "code": "14",
+        "name": "Wilayah Persekutuan Kuala Lumpur",
+        "countryCode": "MY",
+        "countryId": 135
+    },
+    {
+        "id": 2201,
+        "code": "15",
+        "name": "Wilayah Persekutuan Labuan",
+        "countryCode": "MY",
+        "countryId": 135
+    },
+    {
+        "id": 2202,
+        "code": "16",
+        "name": "Wilayah Persekutuan Putrajaya",
+        "countryCode": "MY",
+        "countryId": 135
+    },
+    {
+        "id": 2203,
+        "code": "00",
+        "name": "Alifu Dhaalu",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2204,
+        "code": "01",
+        "name": "Seenu",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2205,
+        "code": "02",
+        "name": "Alifu Alifu",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2206,
+        "code": "03",
+        "name": "Lhaviyani",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2207,
+        "code": "04",
+        "name": "Vaavu",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2208,
+        "code": "05",
+        "name": "Laamu",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2209,
+        "code": "07",
+        "name": "Haa Alifu",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2210,
+        "code": "08",
+        "name": "Thaa",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2211,
+        "code": "12",
+        "name": "Meemu",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2212,
+        "code": "13",
+        "name": "Raa",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2213,
+        "code": "14",
+        "name": "Faafu",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2214,
+        "code": "17",
+        "name": "Dhaalu",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2215,
+        "code": "20",
+        "name": "Baa",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2216,
+        "code": "23",
+        "name": "Haa Dhaalu",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2217,
+        "code": "24",
+        "name": "Shaviyani",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2218,
+        "code": "25",
+        "name": "Noonu",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2219,
+        "code": "26",
+        "name": "Kaafu",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2220,
+        "code": "27",
+        "name": "Gaaf Alifu",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2221,
+        "code": "28",
+        "name": "Gaafu Dhaalu",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2222,
+        "code": "29",
+        "name": "Gnaviyani",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2223,
+        "code": "MLE",
+        "name": "Male",
+        "countryCode": "MV",
+        "countryId": 136
+    },
+    {
+        "id": 2224,
+        "code": "1",
+        "name": "Kayes",
+        "countryCode": "ML",
+        "countryId": 137
+    },
+    {
+        "id": 2225,
+        "code": "2",
+        "name": "Koulikoro",
+        "countryCode": "ML",
+        "countryId": 137
+    },
+    {
+        "id": 2226,
+        "code": "3",
+        "name": "Sikasso",
+        "countryCode": "ML",
+        "countryId": 137
+    },
+    {
+        "id": 2227,
+        "code": "4",
+        "name": "Ségou",
+        "countryCode": "ML",
+        "countryId": 137
+    },
+    {
+        "id": 2228,
+        "code": "5",
+        "name": "Mopti",
+        "countryCode": "ML",
+        "countryId": 137
+    },
+    {
+        "id": 2229,
+        "code": "6",
+        "name": "Tombouctou",
+        "countryCode": "ML",
+        "countryId": 137
+    },
+    {
+        "id": 2230,
+        "code": "7",
+        "name": "Gao",
+        "countryCode": "ML",
+        "countryId": 137
+    },
+    {
+        "id": 2231,
+        "code": "8",
+        "name": "Kidal",
+        "countryCode": "ML",
+        "countryId": 137
+    },
+    {
+        "id": 2232,
+        "code": "BKO",
+        "name": "Bamako",
+        "countryCode": "ML",
+        "countryId": 137
+    },
+    {
+        "id": 2233,
+        "code": "01",
+        "name": "Attard",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2234,
+        "code": "02",
+        "name": "Balzan",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2235,
+        "code": "03",
+        "name": "Birgu",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2236,
+        "code": "04",
+        "name": "Birkirkara",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2237,
+        "code": "05",
+        "name": "Birżebbuġa",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2238,
+        "code": "06",
+        "name": "Bormla",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2239,
+        "code": "07",
+        "name": "Dingli",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2240,
+        "code": "08",
+        "name": "Fgura",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2241,
+        "code": "09",
+        "name": "Floriana",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2242,
+        "code": "10",
+        "name": "Fontana",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2243,
+        "code": "11",
+        "name": "Gudja",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2244,
+        "code": "12",
+        "name": "Gżira",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2245,
+        "code": "13",
+        "name": "Għajnsielem",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2246,
+        "code": "14",
+        "name": "Għarb",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2247,
+        "code": "15",
+        "name": "Għargħur",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2248,
+        "code": "16",
+        "name": "Għasri",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2249,
+        "code": "17",
+        "name": "Għaxaq",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2250,
+        "code": "18",
+        "name": "Ħamrun",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2251,
+        "code": "19",
+        "name": "Iklin",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2252,
+        "code": "20",
+        "name": "Isla",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2253,
+        "code": "21",
+        "name": "Kalkara",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2254,
+        "code": "22",
+        "name": "Kerċem",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2255,
+        "code": "23",
+        "name": "Kirkop",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2256,
+        "code": "24",
+        "name": "Lija",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2257,
+        "code": "25",
+        "name": "Luqa",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2258,
+        "code": "26",
+        "name": "Marsa",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2259,
+        "code": "27",
+        "name": "Marsaskala",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2260,
+        "code": "28",
+        "name": "Marsaxlokk",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2261,
+        "code": "29",
+        "name": "Mdina",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2262,
+        "code": "30",
+        "name": "Mellieħa",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2263,
+        "code": "31",
+        "name": "Mġarr",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2264,
+        "code": "32",
+        "name": "Mosta",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2265,
+        "code": "33",
+        "name": "Mqabba",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2266,
+        "code": "34",
+        "name": "Msida",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2267,
+        "code": "35",
+        "name": "Mtarfa",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2268,
+        "code": "36",
+        "name": "Munxar",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2269,
+        "code": "37",
+        "name": "Nadur",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2270,
+        "code": "38",
+        "name": "Naxxar",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2271,
+        "code": "39",
+        "name": "Paola",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2272,
+        "code": "40",
+        "name": "Pembroke",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2273,
+        "code": "41",
+        "name": "Pietà",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2274,
+        "code": "42",
+        "name": "Qala",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2275,
+        "code": "43",
+        "name": "Qormi",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2276,
+        "code": "44",
+        "name": "Qrendi",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2277,
+        "code": "45",
+        "name": "Rabat Gozo",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2278,
+        "code": "46",
+        "name": "Rabat Malta",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2279,
+        "code": "47",
+        "name": "Safi",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2280,
+        "code": "48",
+        "name": "Saint Julian’s",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2281,
+        "code": "49",
+        "name": "Saint John",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2282,
+        "code": "50",
+        "name": "Saint Lawrence",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2283,
+        "code": "51",
+        "name": "Saint Paul’s Bay",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2284,
+        "code": "52",
+        "name": "Sannat",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2285,
+        "code": "53",
+        "name": "Saint Lucia’s",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2286,
+        "code": "54",
+        "name": "Santa Venera",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2287,
+        "code": "55",
+        "name": "Siġġiewi",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2288,
+        "code": "56",
+        "name": "Sliema",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2289,
+        "code": "57",
+        "name": "Swieqi",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2290,
+        "code": "58",
+        "name": "Ta’ Xbiex",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2291,
+        "code": "59",
+        "name": "Tarxien",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2292,
+        "code": "60",
+        "name": "Valletta",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2293,
+        "code": "61",
+        "name": "Xagħra",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2294,
+        "code": "62",
+        "name": "Xewkija",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2295,
+        "code": "63",
+        "name": "Xgħajra",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2296,
+        "code": "64",
+        "name": "Żabbar",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2297,
+        "code": "65",
+        "name": "Żebbuġ Gozo",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2298,
+        "code": "66",
+        "name": "Żebbuġ Malta",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2299,
+        "code": "67",
+        "name": "Żejtun",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2300,
+        "code": "68",
+        "name": "Żurrieq",
+        "countryCode": "MT",
+        "countryId": 138
+    },
+    {
+        "id": 2301,
+        "code": "ALK",
+        "name": "Ailuk",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2302,
+        "code": "ALL",
+        "name": "Ailinglapalap",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2303,
+        "code": "ARN",
+        "name": "Arno",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2304,
+        "code": "AUR",
+        "name": "Aur",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2305,
+        "code": "EBO",
+        "name": "Ebon",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2306,
+        "code": "ENI",
+        "name": "Eniwetok",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2307,
+        "code": "JAB",
+        "name": "Jabat",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2308,
+        "code": "JAL",
+        "name": "Jaluit",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2309,
+        "code": "KIL",
+        "name": "Kili",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2310,
+        "code": "KWA",
+        "name": "Kwajalein",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2311,
+        "code": "L",
+        "name": "Ralik chain",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2312,
+        "code": "LAE",
+        "name": "Lae",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2313,
+        "code": "LIB",
+        "name": "Lib",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2314,
+        "code": "LIK",
+        "name": "Likiep",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2315,
+        "code": "MAJ",
+        "name": "Majuro",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2316,
+        "code": "MAL",
+        "name": "Maloelap",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2317,
+        "code": "MEJ",
+        "name": "Mejit",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2318,
+        "code": "MIL",
+        "name": "Mili",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2319,
+        "code": "NMK",
+        "name": "Namorik",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2320,
+        "code": "NMU",
+        "name": "Namu",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2321,
+        "code": "RON",
+        "name": "Rongelap",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2322,
+        "code": "T",
+        "name": "Ratak chain",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2323,
+        "code": "UJA",
+        "name": "Ujae",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2324,
+        "code": "UTI",
+        "name": "Utirik",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2325,
+        "code": "WTH",
+        "name": "Wotho",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2326,
+        "code": "WTJ",
+        "name": "Wotje",
+        "countryCode": "MH",
+        "countryId": 139
+    },
+    {
+        "id": 2327,
+        "code": "01",
+        "name": "Hodh ech Chargui",
+        "countryCode": "MR",
+        "countryId": 141
+    },
+    {
+        "id": 2328,
+        "code": "02",
+        "name": "Hodh el Gharbi",
+        "countryCode": "MR",
+        "countryId": 141
+    },
+    {
+        "id": 2329,
+        "code": "03",
+        "name": "Assaba",
+        "countryCode": "MR",
+        "countryId": 141
+    },
+    {
+        "id": 2330,
+        "code": "04",
+        "name": "Gorgol",
+        "countryCode": "MR",
+        "countryId": 141
+    },
+    {
+        "id": 2331,
+        "code": "05",
+        "name": "Brakna",
+        "countryCode": "MR",
+        "countryId": 141
+    },
+    {
+        "id": 2332,
+        "code": "06",
+        "name": "Trarza",
+        "countryCode": "MR",
+        "countryId": 141
+    },
+    {
+        "id": 2333,
+        "code": "07",
+        "name": "Adrar",
+        "countryCode": "MR",
+        "countryId": 141
+    },
+    {
+        "id": 2334,
+        "code": "08",
+        "name": "Dakhlet Nouâdhibou",
+        "countryCode": "MR",
+        "countryId": 141
+    },
+    {
+        "id": 2335,
+        "code": "09",
+        "name": "Tagant",
+        "countryCode": "MR",
+        "countryId": 141
+    },
+    {
+        "id": 2336,
+        "code": "10",
+        "name": "Guidimaka",
+        "countryCode": "MR",
+        "countryId": 141
+    },
+    {
+        "id": 2337,
+        "code": "11",
+        "name": "Tiris Zemmour",
+        "countryCode": "MR",
+        "countryId": 141
+    },
+    {
+        "id": 2338,
+        "code": "12",
+        "name": "Inchiri",
+        "countryCode": "MR",
+        "countryId": 141
+    },
+    {
+        "id": 2339,
+        "code": "NKC",
+        "name": "Nouakchott",
+        "countryCode": "MR",
+        "countryId": 141
+    },
+    {
+        "id": 2340,
+        "code": "AG",
+        "name": "Agalega Islands",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2341,
+        "code": "BL",
+        "name": "Black River",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2342,
+        "code": "BR",
+        "name": "Beau Bassin-Rose Hill",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2343,
+        "code": "CC",
+        "name": "Cargados Carajos Shoals",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2344,
+        "code": "CU",
+        "name": "Curepipe",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2345,
+        "code": "FL",
+        "name": "Flacq",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2346,
+        "code": "GP",
+        "name": "Grand Port",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2347,
+        "code": "MO",
+        "name": "Moka",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2348,
+        "code": "PA",
+        "name": "Pamplemousses",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2349,
+        "code": "PL",
+        "name": "Part Louis",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2350,
+        "code": "PU",
+        "name": "Port Louis",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2351,
+        "code": "PW",
+        "name": "Plaines wilhems",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2352,
+        "code": "QB",
+        "name": "Quatre Bornes",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2353,
+        "code": "RO",
+        "name": "Rodrigues Island",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2354,
+        "code": "RR",
+        "name": "Rivière du Rempart",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2355,
+        "code": "SA",
+        "name": "Savanne",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2356,
+        "code": "VP",
+        "name": "Vacoas-Phoenix",
+        "countryCode": "MU",
+        "countryId": 142
+    },
+    {
+        "id": 2357,
+        "code": "AGU",
+        "name": "Aguascalientes",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2358,
+        "code": "BCN",
+        "name": "Baja California",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2359,
+        "code": "BCS",
+        "name": "Baja California Sur",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2360,
+        "code": "CAM",
+        "name": "Campeche",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2361,
+        "code": "CHH",
+        "name": "Chihuahua",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2362,
+        "code": "CHP",
+        "name": "Chiapas",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2363,
+        "code": "COA",
+        "name": "Coahuila",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2364,
+        "code": "COL",
+        "name": "Colima",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2365,
+        "code": "DIF",
+        "name": "Distrito Federal",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2366,
+        "code": "DUR",
+        "name": "Durango",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2367,
+        "code": "GRO",
+        "name": "Guerrero",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2368,
+        "code": "GUA",
+        "name": "Guanajuato",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2369,
+        "code": "HID",
+        "name": "Hidalgo",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2370,
+        "code": "JAL",
+        "name": "Jalisco",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2371,
+        "code": "MEX",
+        "name": "México",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2372,
+        "code": "MIC",
+        "name": "Michoacán",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2373,
+        "code": "MOR",
+        "name": "Morelos",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2374,
+        "code": "NAY",
+        "name": "Nayarit",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2375,
+        "code": "NLE",
+        "name": "Nuevo León",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2376,
+        "code": "OAX",
+        "name": "Oaxaca",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2377,
+        "code": "PUE",
+        "name": "Puebla",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2378,
+        "code": "QUE",
+        "name": "Querétaro",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2379,
+        "code": "ROO",
+        "name": "Quintana Roo",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2380,
+        "code": "SIN",
+        "name": "Sinaloa",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2381,
+        "code": "SLP",
+        "name": "San Luis Potosí",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2382,
+        "code": "SON",
+        "name": "Sonora",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2383,
+        "code": "TAB",
+        "name": "Tabasco",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2384,
+        "code": "TAM",
+        "name": "Tamaulipas",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2385,
+        "code": "TLA",
+        "name": "Tlaxcala",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2386,
+        "code": "VER",
+        "name": "Veracruz",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2387,
+        "code": "YUC",
+        "name": "Yucatán",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2388,
+        "code": "ZAC",
+        "name": "Zacatecas",
+        "countryCode": "MX",
+        "countryId": 144
+    },
+    {
+        "id": 2389,
+        "code": "KSA",
+        "name": "Kosrae",
+        "countryCode": "FM",
+        "countryId": 145
+    },
+    {
+        "id": 2390,
+        "code": "PNI",
+        "name": "Pohnpei",
+        "countryCode": "FM",
+        "countryId": 145
+    },
+    {
+        "id": 2391,
+        "code": "TRK",
+        "name": "Chuuk",
+        "countryCode": "FM",
+        "countryId": 145
+    },
+    {
+        "id": 2392,
+        "code": "YAP",
+        "name": "Yap",
+        "countryCode": "FM",
+        "countryId": 145
+    },
+    {
+        "id": 2393,
+        "code": "GA",
+        "name": "Găgăuzia, Unitatea teritorială autonomă (UTAG)",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2394,
+        "code": "BA",
+        "name": "Bălţi",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2395,
+        "code": "BD",
+        "name": "Tighina",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2396,
+        "code": "CU",
+        "name": "Chişinău",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2397,
+        "code": "AN",
+        "name": "Anenii Noi",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2398,
+        "code": "BR",
+        "name": "Briceni",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2399,
+        "code": "BS",
+        "name": "Basarabeasca",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2400,
+        "code": "CA",
+        "name": "Cahul",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2401,
+        "code": "CL",
+        "name": "Călăraşi",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2402,
+        "code": "CM",
+        "name": "Cimişlia",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2403,
+        "code": "CR",
+        "name": "Criuleni",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2404,
+        "code": "CS",
+        "name": "Căuşeni",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2405,
+        "code": "CT",
+        "name": "Cantemir",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2406,
+        "code": "DO",
+        "name": "Donduşeni",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2407,
+        "code": "DR",
+        "name": "Drochia",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2408,
+        "code": "DU",
+        "name": "Dubăsari",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2409,
+        "code": "ED",
+        "name": "Edineţ",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2410,
+        "code": "FA",
+        "name": "Făleşti",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2411,
+        "code": "FL",
+        "name": "Floreşti",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2412,
+        "code": "GL",
+        "name": "Glodeni",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2413,
+        "code": "HI",
+        "name": "Hînceşti",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2414,
+        "code": "IA",
+        "name": "Ialoveni",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2415,
+        "code": "LE",
+        "name": "Leova",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2416,
+        "code": "NI",
+        "name": "Nisporeni",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2417,
+        "code": "OC",
+        "name": "Ocniţa",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2418,
+        "code": "OR",
+        "name": "Orhei",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2419,
+        "code": "RE",
+        "name": "Rezina",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2420,
+        "code": "RI",
+        "name": "Rîşcani",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2421,
+        "code": "SD",
+        "name": "Şoldăneşti",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2422,
+        "code": "SI",
+        "name": "Sîngerei",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2423,
+        "code": "SO",
+        "name": "Soroca",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2424,
+        "code": "ST",
+        "name": "Străşeni",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2425,
+        "code": "SV",
+        "name": "Ştefan Vodă",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2426,
+        "code": "TA",
+        "name": "Taraclia",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2427,
+        "code": "TE",
+        "name": "Teleneşti",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2428,
+        "code": "UN",
+        "name": "Ungheni",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2429,
+        "code": "SN",
+        "name": "Stînga Nistrului, unitatea teritorială din",
+        "countryCode": "MD",
+        "countryId": 146
+    },
+    {
+        "id": 2430,
+        "code": "CL",
+        "name": "La Colle",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2431,
+        "code": "CO",
+        "name": "La Condamine",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2432,
+        "code": "FO",
+        "name": "Fontvieille",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2433,
+        "code": "FO",
+        "name": "Fontvieille",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2434,
+        "code": "GA",
+        "name": "La Gare",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2435,
+        "code": "JE",
+        "name": "Jardin Exotique",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2436,
+        "code": "LA",
+        "name": "Larvotto",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2437,
+        "code": "MA",
+        "name": "Malbousquet",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2438,
+        "code": "MC",
+        "name": "Monte-Carlo",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2439,
+        "code": "MG",
+        "name": "Moneghetti",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2440,
+        "code": "MO",
+        "name": "Monaco-Ville",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2441,
+        "code": "MU",
+        "name": "Moulins",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2442,
+        "code": "PH",
+        "name": "Port-Hercule",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2443,
+        "code": "SD",
+        "name": "Sainte-Dévote",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2444,
+        "code": "SO",
+        "name": "La Source",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2445,
+        "code": "SP",
+        "name": "Spélugues",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2446,
+        "code": "SR",
+        "name": "Saint-Roman",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2447,
+        "code": "VR",
+        "name": "Vallon de la Rousse",
+        "countryCode": "MC",
+        "countryId": 147
+    },
+    {
+        "id": 2448,
+        "code": "035",
+        "name": "Orhon",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2449,
+        "code": "037",
+        "name": "Darhan uul",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2450,
+        "code": "039",
+        "name": "Hentiy",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2451,
+        "code": "041",
+        "name": "Hövagöl",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2452,
+        "code": "043",
+        "name": "Hovd",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2453,
+        "code": "046",
+        "name": "Uvs",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2454,
+        "code": "047",
+        "name": "Töv",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2455,
+        "code": "049",
+        "name": "Selenge",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2456,
+        "code": "051",
+        "name": "Sühbaatar",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2457,
+        "code": "053",
+        "name": "Ömnögovi",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2458,
+        "code": "055",
+        "name": "Övörhangay",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2459,
+        "code": "057",
+        "name": "Dzavhan",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2460,
+        "code": "059",
+        "name": "Dundgovi",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2461,
+        "code": "061",
+        "name": "Dornod",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2462,
+        "code": "063",
+        "name": "Dornogovi",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2463,
+        "code": "064",
+        "name": "Govi-Sumber",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2464,
+        "code": "065",
+        "name": "Govi-Altay",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2465,
+        "code": "067",
+        "name": "Bulgan",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2466,
+        "code": "069",
+        "name": "Bayanhongor",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2467,
+        "code": "071",
+        "name": "Bayan-Ölgiy",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2468,
+        "code": "073",
+        "name": "Arhangay",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2469,
+        "code": "1",
+        "name": "Ulaanbaatar",
+        "countryCode": "MN",
+        "countryId": 148
+    },
+    {
+        "id": 2470,
+        "code": "01",
+        "name": "Andrijevica",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2471,
+        "code": "02",
+        "name": "Bar",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2472,
+        "code": "03",
+        "name": "Berane",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2473,
+        "code": "04",
+        "name": "Bijelo Polje",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2474,
+        "code": "05",
+        "name": "Budva",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2475,
+        "code": "06",
+        "name": "Cetinje",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2476,
+        "code": "07",
+        "name": "Danilovgrad",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2477,
+        "code": "08",
+        "name": "Herceg-Novi",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2478,
+        "code": "09",
+        "name": "Kolašin",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2479,
+        "code": "10",
+        "name": "Kotor",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2480,
+        "code": "11",
+        "name": "Mojkovac",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2481,
+        "code": "12",
+        "name": "Nikšić",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2482,
+        "code": "13",
+        "name": "Plav",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2483,
+        "code": "14",
+        "name": "Pljevlja",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2484,
+        "code": "15",
+        "name": "Plužine",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2485,
+        "code": "16",
+        "name": "Podgorica",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2486,
+        "code": "17",
+        "name": "Rožaje",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2487,
+        "code": "18",
+        "name": "Šavnik",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2488,
+        "code": "19",
+        "name": "Tivat",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2489,
+        "code": "20",
+        "name": "Ulcinj",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2490,
+        "code": "21",
+        "name": "Žabljak",
+        "countryCode": "ME",
+        "countryId": 149
+    },
+    {
+        "id": 2491,
+        "code": "01",
+        "name": "Tanger-Tétouan",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2492,
+        "code": "02",
+        "name": "Gharb-Chrarda-Beni Hssen",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2493,
+        "code": "03",
+        "name": "Taza-Al Hoceima-Taounate",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2494,
+        "code": "04",
+        "name": "L'Oriental",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2495,
+        "code": "05",
+        "name": "Fès-Boulemane",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2496,
+        "code": "06",
+        "name": "Meknès-Tafilalet",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2497,
+        "code": "07",
+        "name": "Rabat-Salé-Zemmour-Zaer",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2498,
+        "code": "08",
+        "name": "Grand Casablanca",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2499,
+        "code": "09",
+        "name": "Chaouia-Ouardigha",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2500,
+        "code": "10",
+        "name": "Doukhala-Abda",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2501,
+        "code": "11",
+        "name": "Marrakech-Tensift-Al Haouz",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2502,
+        "code": "12",
+        "name": "Tadla-Azilal",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2503,
+        "code": "13",
+        "name": "Sous-Massa-Draa",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2504,
+        "code": "14",
+        "name": "Guelmim-Es Smara",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2505,
+        "code": "15",
+        "name": "Laâyoune-Boujdour-Sakia el Hamra",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2506,
+        "code": "16",
+        "name": "Oued ed Dahab-Lagouira (EH)",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2507,
+        "code": "AGD",
+        "name": "Agadir-Ida-Outanane",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2508,
+        "code": "AOU",
+        "name": "Aousserd (EH)",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2509,
+        "code": "CAS",
+        "name": "Casablanca [Dar el Beïda]*",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2510,
+        "code": "FAH",
+        "name": "Fahs-Beni Makada",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2511,
+        "code": "FES",
+        "name": "Fès-Dar-Dbibegh",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2512,
+        "code": "INE",
+        "name": "Inezgane-Ait Melloul",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2513,
+        "code": "MEK",
+        "name": "Meknès",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2514,
+        "code": "MMD",
+        "name": "Marrakech-Medina",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2515,
+        "code": "MMN",
+        "name": "Marrakech-Menara",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2516,
+        "code": "MOH",
+        "name": "Mohammadia",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2517,
+        "code": "OUJ",
+        "name": "Oujda-Angad",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2518,
+        "code": "RAB",
+        "name": "Rabat",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2519,
+        "code": "SAL",
+        "name": "Salé",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2520,
+        "code": "SKH",
+        "name": "Skhirate-Témara",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2521,
+        "code": "SYB",
+        "name": "Sidi Youssef Ben Ali",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2522,
+        "code": "TET",
+        "name": "Tétouan",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2523,
+        "code": "TNG",
+        "name": "Tanger-Assilah",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2524,
+        "code": "ASZ",
+        "name": "Assa-Zag",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2525,
+        "code": "AZI",
+        "name": "Azilal",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2526,
+        "code": "BEM",
+        "name": "Beni Mellal",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2527,
+        "code": "BER",
+        "name": "Berkane",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2528,
+        "code": "BES",
+        "name": "Ben Slimane",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2529,
+        "code": "BOD",
+        "name": "Boujdour (EH)",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2530,
+        "code": "BOM",
+        "name": "Boulemane",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2531,
+        "code": "CHE",
+        "name": "Chefchaouene",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2532,
+        "code": "CHI",
+        "name": "Chichaoua",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2533,
+        "code": "CHT",
+        "name": "Chtouka-Ait Baha",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2534,
+        "code": "ERR",
+        "name": "Errachidia",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2535,
+        "code": "ESI",
+        "name": "Essaouira",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2536,
+        "code": "ESM",
+        "name": "Es Smara (EH)",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2537,
+        "code": "FIG",
+        "name": "Figuig",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2538,
+        "code": "GUE",
+        "name": "Guelmim",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2539,
+        "code": "HAJ",
+        "name": "El Hajeb",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2540,
+        "code": "HAO",
+        "name": "Al Haouz",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2541,
+        "code": "HOC",
+        "name": "Al Hoceïma",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2542,
+        "code": "IFR",
+        "name": "Ifrane",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2543,
+        "code": "JDI",
+        "name": "El Jadida",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2544,
+        "code": "JRA",
+        "name": "Jrada",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2545,
+        "code": "KEN",
+        "name": "Kènitra",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2546,
+        "code": "KES",
+        "name": "Kelaat es Sraghna",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2547,
+        "code": "KHE",
+        "name": "Khemisset",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2548,
+        "code": "KHN",
+        "name": "Khenifra",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2549,
+        "code": "KHO",
+        "name": "Khouribga",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2550,
+        "code": "LAA",
+        "name": "Laâyoune",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2551,
+        "code": "LAR",
+        "name": "Larache",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2552,
+        "code": "MED",
+        "name": "Médiouna",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2553,
+        "code": "MOU",
+        "name": "Moulay Yacoub",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2554,
+        "code": "NAD",
+        "name": "Nador",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2555,
+        "code": "NOU",
+        "name": "Nouaceur",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2556,
+        "code": "OUA",
+        "name": "Ouarzazate",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2557,
+        "code": "OUD",
+        "name": "Oued ed Dahab (EH)",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2558,
+        "code": "SAF",
+        "name": "Safi",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2559,
+        "code": "SEF",
+        "name": "Sefrou",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2560,
+        "code": "SET",
+        "name": "Settat",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2561,
+        "code": "SIK",
+        "name": "Sidi Kacem",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2562,
+        "code": "TAI",
+        "name": "Taourirt",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2563,
+        "code": "TAO",
+        "name": "Taounate",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2564,
+        "code": "TAR",
+        "name": "Taroudant",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2565,
+        "code": "TAT",
+        "name": "Tata",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2566,
+        "code": "TAZ",
+        "name": "Taza",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2567,
+        "code": "TIZ",
+        "name": "Tiznit",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2568,
+        "code": "TNT",
+        "name": "Tan-Tan",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2569,
+        "code": "ZAG",
+        "name": "Zagora",
+        "countryCode": "MA",
+        "countryId": 151
+    },
+    {
+        "id": 2570,
+        "code": "MPM",
+        "name": "Maputo",
+        "countryCode": "MZ",
+        "countryId": 152
+    },
+    {
+        "id": 2571,
+        "code": "A",
+        "name": "Niaosa",
+        "countryCode": "MZ",
+        "countryId": 152
+    },
+    {
+        "id": 2572,
+        "code": "B",
+        "name": "Manica",
+        "countryCode": "MZ",
+        "countryId": 152
+    },
+    {
+        "id": 2573,
+        "code": "G",
+        "name": "Gaza",
+        "countryCode": "MZ",
+        "countryId": 152
+    },
+    {
+        "id": 2574,
+        "code": "I",
+        "name": "Inhambane",
+        "countryCode": "MZ",
+        "countryId": 152
+    },
+    {
+        "id": 2575,
+        "code": "L",
+        "name": "Maputo",
+        "countryCode": "MZ",
+        "countryId": 152
+    },
+    {
+        "id": 2576,
+        "code": "N",
+        "name": "Nampula",
+        "countryCode": "MZ",
+        "countryId": 152
+    },
+    {
+        "id": 2577,
+        "code": "P",
+        "name": "Cabo Delgado",
+        "countryCode": "MZ",
+        "countryId": 152
+    },
+    {
+        "id": 2578,
+        "code": "Q",
+        "name": "Zambézia",
+        "countryCode": "MZ",
+        "countryId": 152
+    },
+    {
+        "id": 2579,
+        "code": "S",
+        "name": "Sofala",
+        "countryCode": "MZ",
+        "countryId": 152
+    },
+    {
+        "id": 2580,
+        "code": "T",
+        "name": "Tete",
+        "countryCode": "MZ",
+        "countryId": 152
+    },
+    {
+        "id": 2581,
+        "code": "01",
+        "name": "Sagaing",
+        "countryCode": "MM",
+        "countryId": 153
+    },
+    {
+        "id": 2582,
+        "code": "02",
+        "name": "Bago",
+        "countryCode": "MM",
+        "countryId": 153
+    },
+    {
+        "id": 2583,
+        "code": "03",
+        "name": "Magway",
+        "countryCode": "MM",
+        "countryId": 153
+    },
+    {
+        "id": 2584,
+        "code": "04",
+        "name": "Mandalay",
+        "countryCode": "MM",
+        "countryId": 153
+    },
+    {
+        "id": 2585,
+        "code": "05",
+        "name": "Tanintharyi",
+        "countryCode": "MM",
+        "countryId": 153
+    },
+    {
+        "id": 2586,
+        "code": "06",
+        "name": "Yangon",
+        "countryCode": "MM",
+        "countryId": 153
+    },
+    {
+        "id": 2587,
+        "code": "07",
+        "name": "Ayeyarwady",
+        "countryCode": "MM",
+        "countryId": 153
+    },
+    {
+        "id": 2588,
+        "code": "11",
+        "name": "Kachin",
+        "countryCode": "MM",
+        "countryId": 153
+    },
+    {
+        "id": 2589,
+        "code": "12",
+        "name": "Kayah",
+        "countryCode": "MM",
+        "countryId": 153
+    },
+    {
+        "id": 2590,
+        "code": "13",
+        "name": "Kayin",
+        "countryCode": "MM",
+        "countryId": 153
+    },
+    {
+        "id": 2591,
+        "code": "14",
+        "name": "Chin",
+        "countryCode": "MM",
+        "countryId": 153
+    },
+    {
+        "id": 2592,
+        "code": "15",
+        "name": "Mon",
+        "countryCode": "MM",
+        "countryId": 153
+    },
+    {
+        "id": 2593,
+        "code": "16",
+        "name": "Rakhine",
+        "countryCode": "MM",
+        "countryId": 153
+    },
+    {
+        "id": 2594,
+        "code": "17",
+        "name": "Shan",
+        "countryCode": "MM",
+        "countryId": 153
+    },
+    {
+        "id": 2595,
+        "code": "CA",
+        "name": "Caprivi",
+        "countryCode": "NA",
+        "countryId": 154
+    },
+    {
+        "id": 2596,
+        "code": "ER",
+        "name": "Erongo",
+        "countryCode": "NA",
+        "countryId": 154
+    },
+    {
+        "id": 2597,
+        "code": "HA",
+        "name": "Hardap",
+        "countryCode": "NA",
+        "countryId": 154
+    },
+    {
+        "id": 2598,
+        "code": "KA",
+        "name": "Karas",
+        "countryCode": "NA",
+        "countryId": 154
+    },
+    {
+        "id": 2599,
+        "code": "KH",
+        "name": "Khomas",
+        "countryCode": "NA",
+        "countryId": 154
+    },
+    {
+        "id": 2600,
+        "code": "KU",
+        "name": "Kunene",
+        "countryCode": "NA",
+        "countryId": 154
+    },
+    {
+        "id": 2601,
+        "code": "OD",
+        "name": "Otjozondjupa",
+        "countryCode": "NA",
+        "countryId": 154
+    },
+    {
+        "id": 2602,
+        "code": "OH",
+        "name": "Omaheke",
+        "countryCode": "NA",
+        "countryId": 154
+    },
+    {
+        "id": 2603,
+        "code": "OK",
+        "name": "Okavango",
+        "countryCode": "NA",
+        "countryId": 154
+    },
+    {
+        "id": 2604,
+        "code": "ON",
+        "name": "Oshana",
+        "countryCode": "NA",
+        "countryId": 154
+    },
+    {
+        "id": 2605,
+        "code": "OS",
+        "name": "Omusati",
+        "countryCode": "NA",
+        "countryId": 154
+    },
+    {
+        "id": 2606,
+        "code": "OT",
+        "name": "Oshikoto",
+        "countryCode": "NA",
+        "countryId": 154
+    },
+    {
+        "id": 2607,
+        "code": "OW",
+        "name": "Ohangwena",
+        "countryCode": "NA",
+        "countryId": 154
+    },
+    {
+        "id": 2608,
+        "code": "01",
+        "name": "Aiwo",
+        "countryCode": "NR",
+        "countryId": 155
+    },
+    {
+        "id": 2609,
+        "code": "02",
+        "name": "Anabar",
+        "countryCode": "NR",
+        "countryId": 155
+    },
+    {
+        "id": 2610,
+        "code": "03",
+        "name": "Anetan",
+        "countryCode": "NR",
+        "countryId": 155
+    },
+    {
+        "id": 2611,
+        "code": "04",
+        "name": "Anibare",
+        "countryCode": "NR",
+        "countryId": 155
+    },
+    {
+        "id": 2612,
+        "code": "05",
+        "name": "Baiti",
+        "countryCode": "NR",
+        "countryId": 155
+    },
+    {
+        "id": 2613,
+        "code": "06",
+        "name": "Boe",
+        "countryCode": "NR",
+        "countryId": 155
+    },
+    {
+        "id": 2614,
+        "code": "07",
+        "name": "Buada",
+        "countryCode": "NR",
+        "countryId": 155
+    },
+    {
+        "id": 2615,
+        "code": "08",
+        "name": "Denigomodu",
+        "countryCode": "NR",
+        "countryId": 155
+    },
+    {
+        "id": 2616,
+        "code": "09",
+        "name": "Ewa",
+        "countryCode": "NR",
+        "countryId": 155
+    },
+    {
+        "id": 2617,
+        "code": "10",
+        "name": "Ijuw",
+        "countryCode": "NR",
+        "countryId": 155
+    },
+    {
+        "id": 2618,
+        "code": "11",
+        "name": "Meneng",
+        "countryCode": "NR",
+        "countryId": 155
+    },
+    {
+        "id": 2619,
+        "code": "12",
+        "name": "Nibok",
+        "countryCode": "NR",
+        "countryId": 155
+    },
+    {
+        "id": 2620,
+        "code": "13",
+        "name": "Uaboe",
+        "countryCode": "NR",
+        "countryId": 155
+    },
+    {
+        "id": 2621,
+        "code": "14",
+        "name": "Yaren",
+        "countryCode": "NR",
+        "countryId": 155
+    },
+    {
+        "id": 2622,
+        "code": "1",
+        "name": "Madhyamanchal",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2623,
+        "code": "2",
+        "name": "Madhya Pashchimanchal",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2624,
+        "code": "3",
+        "name": "Pashchimanchal",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2625,
+        "code": "4",
+        "name": "Purwanchal",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2626,
+        "code": "5",
+        "name": "Sudur Pashchimanchal",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2627,
+        "code": "BA",
+        "name": "Bagmati",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2628,
+        "code": "BH",
+        "name": "Bheri",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2629,
+        "code": "DH",
+        "name": "Dhawalagiri",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2630,
+        "code": "GA",
+        "name": "Gandaki",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2631,
+        "code": "JA",
+        "name": "Janakpur",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2632,
+        "code": "KA",
+        "name": "Karnali",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2633,
+        "code": "KO",
+        "name": "Kosi [Koshi]",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2634,
+        "code": "LU",
+        "name": "Lumbini",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2635,
+        "code": "MA",
+        "name": "Mahakali",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2636,
+        "code": "ME",
+        "name": "Mechi",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2637,
+        "code": "NA",
+        "name": "Narayani",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2638,
+        "code": "RA",
+        "name": "Rapti",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2639,
+        "code": "SA",
+        "name": "Sagarmatha",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2640,
+        "code": "SE",
+        "name": "Seti",
+        "countryCode": "NP",
+        "countryId": 156
+    },
+    {
+        "id": 2641,
+        "code": "DR",
+        "name": "Drenthe",
+        "countryCode": "NL",
+        "countryId": 157
+    },
+    {
+        "id": 2642,
+        "code": "FL",
+        "name": "Flevoland",
+        "countryCode": "NL",
+        "countryId": 157
+    },
+    {
+        "id": 2643,
+        "code": "FR",
+        "name": "Friesland",
+        "countryCode": "NL",
+        "countryId": 157
+    },
+    {
+        "id": 2644,
+        "code": "GE",
+        "name": "Gelderland",
+        "countryCode": "NL",
+        "countryId": 157
+    },
+    {
+        "id": 2645,
+        "code": "GR",
+        "name": "Groningen",
+        "countryCode": "NL",
+        "countryId": 157
+    },
+    {
+        "id": 2646,
+        "code": "LI",
+        "name": "Limburg",
+        "countryCode": "NL",
+        "countryId": 157
+    },
+    {
+        "id": 2647,
+        "code": "NB",
+        "name": "Noord-Brabant",
+        "countryCode": "NL",
+        "countryId": 157
+    },
+    {
+        "id": 2648,
+        "code": "NH",
+        "name": "Noord-Holland",
+        "countryCode": "NL",
+        "countryId": 157
+    },
+    {
+        "id": 2649,
+        "code": "OV",
+        "name": "Overijssel",
+        "countryCode": "NL",
+        "countryId": 157
+    },
+    {
+        "id": 2650,
+        "code": "UT",
+        "name": "Utrecht",
+        "countryCode": "NL",
+        "countryId": 157
+    },
+    {
+        "id": 2651,
+        "code": "ZE",
+        "name": "Zeeland",
+        "countryCode": "NL",
+        "countryId": 157
+    },
+    {
+        "id": 2652,
+        "code": "ZH",
+        "name": "Zuid-Holland",
+        "countryCode": "NL",
+        "countryId": 157
+    },
+    {
+        "id": 2653,
+        "code": "AUK",
+        "name": "Auckland",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2654,
+        "code": "BOP",
+        "name": "Bay of Plenty",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2655,
+        "code": "CAN",
+        "name": "Canterbury",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2656,
+        "code": "CIT",
+        "name": "Chatham Islands Territory",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2657,
+        "code": "GIS",
+        "name": "Gisborne District",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2658,
+        "code": "HKB",
+        "name": "Hawkes's Bay",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2659,
+        "code": "MBH",
+        "name": "Marlborough District",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2660,
+        "code": "MWT",
+        "name": "Manawatu-Wanganui",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2661,
+        "code": "NSN",
+        "name": "Nelson City",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2662,
+        "code": "NTL",
+        "name": "Northland",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2663,
+        "code": "OTA",
+        "name": "Otago",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2664,
+        "code": "STL",
+        "name": "Southland",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2665,
+        "code": "TAS",
+        "name": "Tasman District",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2666,
+        "code": "TKI",
+        "name": "Taranaki",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2667,
+        "code": "WGN",
+        "name": "Wellington",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2668,
+        "code": "WKO",
+        "name": "Waikato",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2669,
+        "code": "WTC",
+        "name": "West Coast",
+        "countryCode": "NZ",
+        "countryId": 159
+    },
+    {
+        "id": 2670,
+        "code": "AN",
+        "name": "Atlántico Norte",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2671,
+        "code": "AS",
+        "name": "Atlántico Sur",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2672,
+        "code": "BO",
+        "name": "Boaco",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2673,
+        "code": "CA",
+        "name": "Carazo",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2674,
+        "code": "CI",
+        "name": "Chinandega",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2675,
+        "code": "CO",
+        "name": "Chontales",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2676,
+        "code": "ES",
+        "name": "Estelí",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2677,
+        "code": "GR",
+        "name": "Granada",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2678,
+        "code": "JI",
+        "name": "Jinotega",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2679,
+        "code": "LE",
+        "name": "León",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2680,
+        "code": "MD",
+        "name": "Madriz",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2681,
+        "code": "MN",
+        "name": "Managua",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2682,
+        "code": "MS",
+        "name": "Masaya",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2683,
+        "code": "MT",
+        "name": "Matagalpa",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2684,
+        "code": "NS",
+        "name": "Nueva Segovia",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2685,
+        "code": "RI",
+        "name": "Rivas",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2686,
+        "code": "SJ",
+        "name": "Río San Juan",
+        "countryCode": "NI",
+        "countryId": 160
+    },
+    {
+        "id": 2687,
+        "code": "1",
+        "name": "Agadez",
+        "countryCode": "NE",
+        "countryId": 161
+    },
+    {
+        "id": 2688,
+        "code": "2",
+        "name": "Diffa",
+        "countryCode": "NE",
+        "countryId": 161
+    },
+    {
+        "id": 2689,
+        "code": "3",
+        "name": "Dosso",
+        "countryCode": "NE",
+        "countryId": 161
+    },
+    {
+        "id": 2690,
+        "code": "4",
+        "name": "Maradi",
+        "countryCode": "NE",
+        "countryId": 161
+    },
+    {
+        "id": 2691,
+        "code": "5",
+        "name": "Tahoua",
+        "countryCode": "NE",
+        "countryId": 161
+    },
+    {
+        "id": 2692,
+        "code": "6",
+        "name": "Tillabéri",
+        "countryCode": "NE",
+        "countryId": 161
+    },
+    {
+        "id": 2693,
+        "code": "7",
+        "name": "Zinder",
+        "countryCode": "NE",
+        "countryId": 161
+    },
+    {
+        "id": 2694,
+        "code": "8",
+        "name": "Niamey",
+        "countryCode": "NE",
+        "countryId": 161
+    },
+    {
+        "id": 2695,
+        "code": "AB",
+        "name": "Abia",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2696,
+        "code": "AD",
+        "name": "Adamawa",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2697,
+        "code": "AK",
+        "name": "Akwa Ibom",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2698,
+        "code": "AN",
+        "name": "Anambra",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2699,
+        "code": "BA",
+        "name": "Bauchi",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2700,
+        "code": "BE",
+        "name": "Benue",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2701,
+        "code": "BO",
+        "name": "Borno",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2702,
+        "code": "BY",
+        "name": "Bayelsa",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2703,
+        "code": "CR",
+        "name": "Cross River",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2704,
+        "code": "DE",
+        "name": "Delta",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2705,
+        "code": "EB",
+        "name": "Ebonyi",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2706,
+        "code": "ED",
+        "name": "Edo",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2707,
+        "code": "EK",
+        "name": "Ekiti",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2708,
+        "code": "EN",
+        "name": "Enugu",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2709,
+        "code": "FC",
+        "name": "Abuja Capital Territory",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2710,
+        "code": "GO",
+        "name": "Gombe",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2711,
+        "code": "IM",
+        "name": "Imo",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2712,
+        "code": "JI",
+        "name": "Jigawa",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2713,
+        "code": "KD",
+        "name": "Kaduna",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2714,
+        "code": "KE",
+        "name": "Kebbi",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2715,
+        "code": "KN",
+        "name": "Kano",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2716,
+        "code": "KO",
+        "name": "Kogi",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2717,
+        "code": "KT",
+        "name": "Katsina",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2718,
+        "code": "KW",
+        "name": "Kwara",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2719,
+        "code": "LA",
+        "name": "Lagos",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2720,
+        "code": "NA",
+        "name": "Nassarawa",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2721,
+        "code": "NI",
+        "name": "Niger",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2722,
+        "code": "OG",
+        "name": "Ogun",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2723,
+        "code": "ON",
+        "name": "Ondo",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2724,
+        "code": "OS",
+        "name": "Osun",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2725,
+        "code": "OY",
+        "name": "Oyo",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2726,
+        "code": "PL",
+        "name": "Plateau",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2727,
+        "code": "RI",
+        "name": "Rivers",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2728,
+        "code": "SO",
+        "name": "Sokoto",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2729,
+        "code": "TA",
+        "name": "Taraba",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2730,
+        "code": "YO",
+        "name": "Yobe",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2731,
+        "code": "ZA",
+        "name": "Zamfara",
+        "countryCode": "NG",
+        "countryId": 162
+    },
+    {
+        "id": 2732,
+        "code": "01",
+        "name": "Østfold",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2733,
+        "code": "02",
+        "name": "Akershus",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2734,
+        "code": "03",
+        "name": "Oslo",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2735,
+        "code": "04",
+        "name": "Hedmark",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2736,
+        "code": "05",
+        "name": "Oppland",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2737,
+        "code": "06",
+        "name": "Buskerud",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2738,
+        "code": "07",
+        "name": "Vestfold",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2739,
+        "code": "08",
+        "name": "Telemark",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2740,
+        "code": "09",
+        "name": "Aust-Agder",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2741,
+        "code": "10",
+        "name": "Vest-Agder",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2742,
+        "code": "11",
+        "name": "Rogaland",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2743,
+        "code": "12",
+        "name": "Hordaland",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2744,
+        "code": "14",
+        "name": "Sogn og Fjordane",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2745,
+        "code": "15",
+        "name": "Møre og Romsdal",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2746,
+        "code": "16",
+        "name": "Sør-Trøndelag",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2747,
+        "code": "17",
+        "name": "Nord-Trøndelag",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2748,
+        "code": "18",
+        "name": "Nordland",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2749,
+        "code": "19",
+        "name": "Troms",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2750,
+        "code": "20",
+        "name": "Finnmark",
+        "countryCode": "NO",
+        "countryId": 166
+    },
+    {
+        "id": 2751,
+        "code": "BU",
+        "name": "Al Buraymī",
+        "countryCode": "OM",
+        "countryId": 167
+    },
+    {
+        "id": 2752,
+        "code": "MA",
+        "name": "Masqaţ",
+        "countryCode": "OM",
+        "countryId": 167
+    },
+    {
+        "id": 2753,
+        "code": "MU",
+        "name": "Musandam",
+        "countryCode": "OM",
+        "countryId": 167
+    },
+    {
+        "id": 2754,
+        "code": "ZU",
+        "name": "Z̧ufār",
+        "countryCode": "OM",
+        "countryId": 167
+    },
+    {
+        "id": 2755,
+        "code": "BA",
+        "name": "Al Bāţinah",
+        "countryCode": "OM",
+        "countryId": 167
+    },
+    {
+        "id": 2756,
+        "code": "DA",
+        "name": "Ad Dākhilīyah",
+        "countryCode": "OM",
+        "countryId": 167
+    },
+    {
+        "id": 2757,
+        "code": "SH",
+        "name": "Ash Sharqīyah",
+        "countryCode": "OM",
+        "countryId": 167
+    },
+    {
+        "id": 2758,
+        "code": "WU",
+        "name": "Al Wusţá",
+        "countryCode": "OM",
+        "countryId": 167
+    },
+    {
+        "id": 2759,
+        "code": "ZA",
+        "name": "Aȥ Ȥāhirah",
+        "countryCode": "OM",
+        "countryId": 167
+    },
+    {
+        "id": 2760,
+        "code": "IS",
+        "name": "Islamabad",
+        "countryCode": "PK",
+        "countryId": 168
+    },
+    {
+        "id": 2761,
+        "code": "GB",
+        "name": "Gilgit-Baltistan",
+        "countryCode": "PK",
+        "countryId": 168
+    },
+    {
+        "id": 2762,
+        "code": "JK",
+        "name": "Azad Kashmir",
+        "countryCode": "PK",
+        "countryId": 168
+    },
+    {
+        "id": 2763,
+        "code": "BA",
+        "name": "Baluchistan",
+        "countryCode": "PK",
+        "countryId": 168
+    },
+    {
+        "id": 2764,
+        "code": "KP",
+        "name": "Khyber Pakhtunkhwa",
+        "countryCode": "PK",
+        "countryId": 168
+    },
+    {
+        "id": 2765,
+        "code": "PB",
+        "name": "Punjab",
+        "countryCode": "PK",
+        "countryId": 168
+    },
+    {
+        "id": 2766,
+        "code": "SD",
+        "name": "Sind",
+        "countryCode": "PK",
+        "countryId": 168
+    },
+    {
+        "id": 2767,
+        "code": "TA",
+        "name": "Federally Administered Tribal Areas",
+        "countryCode": "PK",
+        "countryId": 168
+    },
+    {
+        "id": 2768,
+        "code": "002",
+        "name": "Aimeliik",
+        "countryCode": "PW",
+        "countryId": 169
+    },
+    {
+        "id": 2769,
+        "code": "004",
+        "name": "Airai",
+        "countryCode": "PW",
+        "countryId": 169
+    },
+    {
+        "id": 2770,
+        "code": "010",
+        "name": "Angaur",
+        "countryCode": "PW",
+        "countryId": 169
+    },
+    {
+        "id": 2771,
+        "code": "050",
+        "name": "Hatobohei",
+        "countryCode": "PW",
+        "countryId": 169
+    },
+    {
+        "id": 2772,
+        "code": "100",
+        "name": "Kayangel",
+        "countryCode": "PW",
+        "countryId": 169
+    },
+    {
+        "id": 2773,
+        "code": "150",
+        "name": "Koror",
+        "countryCode": "PW",
+        "countryId": 169
+    },
+    {
+        "id": 2774,
+        "code": "212",
+        "name": "Melekeok",
+        "countryCode": "PW",
+        "countryId": 169
+    },
+    {
+        "id": 2775,
+        "code": "214",
+        "name": "Ngaraard",
+        "countryCode": "PW",
+        "countryId": 169
+    },
+    {
+        "id": 2776,
+        "code": "218",
+        "name": "Ngarchelong",
+        "countryCode": "PW",
+        "countryId": 169
+    },
+    {
+        "id": 2777,
+        "code": "222",
+        "name": "Ngardmau",
+        "countryCode": "PW",
+        "countryId": 169
+    },
+    {
+        "id": 2778,
+        "code": "224",
+        "name": "Ngatpang",
+        "countryCode": "PW",
+        "countryId": 169
+    },
+    {
+        "id": 2779,
+        "code": "226",
+        "name": "Ngchesar",
+        "countryCode": "PW",
+        "countryId": 169
+    },
+    {
+        "id": 2780,
+        "code": "227",
+        "name": "Ngeremlengui",
+        "countryCode": "PW",
+        "countryId": 169
+    },
+    {
+        "id": 2781,
+        "code": "228",
+        "name": "Ngiwal",
+        "countryCode": "PW",
+        "countryId": 169
+    },
+    {
+        "id": 2782,
+        "code": "350",
+        "name": "Peleliu",
+        "countryCode": "PW",
+        "countryId": 169
+    },
+    {
+        "id": 2783,
+        "code": "370",
+        "name": "Sonsorol",
+        "countryCode": "PW",
+        "countryId": 169
+    },
+    {
+        "id": 2784,
+        "code": "BTH",
+        "name": "Bethlehem",
+        "countryCode": "PS",
+        "countryId": 170
+    },
+    {
+        "id": 2785,
+        "code": "DEB",
+        "name": "Deir El Balah",
+        "countryCode": "PS",
+        "countryId": 170
+    },
+    {
+        "id": 2786,
+        "code": "GZA",
+        "name": "Gaza",
+        "countryCode": "PS",
+        "countryId": 170
+    },
+    {
+        "id": 2787,
+        "code": "HBN",
+        "name": "Hebron",
+        "countryCode": "PS",
+        "countryId": 170
+    },
+    {
+        "id": 2788,
+        "code": "JEM",
+        "name": "Jerusalem",
+        "countryCode": "PS",
+        "countryId": 170
+    },
+    {
+        "id": 2789,
+        "code": "JEN",
+        "name": "Jenin",
+        "countryCode": "PS",
+        "countryId": 170
+    },
+    {
+        "id": 2790,
+        "code": "JRH",
+        "name": "Jericho – Al Aghwar",
+        "countryCode": "PS",
+        "countryId": 170
+    },
+    {
+        "id": 2791,
+        "code": "KYS",
+        "name": "Khan Yunis",
+        "countryCode": "PS",
+        "countryId": 170
+    },
+    {
+        "id": 2792,
+        "code": "NBS",
+        "name": "Nablus",
+        "countryCode": "PS",
+        "countryId": 170
+    },
+    {
+        "id": 2793,
+        "code": "NGZ",
+        "name": "North Gaza",
+        "countryCode": "PS",
+        "countryId": 170
+    },
+    {
+        "id": 2794,
+        "code": "QQA",
+        "name": "Qalqilya",
+        "countryCode": "PS",
+        "countryId": 170
+    },
+    {
+        "id": 2795,
+        "code": "RBH",
+        "name": "Ramallah",
+        "countryCode": "PS",
+        "countryId": 170
+    },
+    {
+        "id": 2796,
+        "code": "RFH",
+        "name": "Rafah",
+        "countryCode": "PS",
+        "countryId": 170
+    },
+    {
+        "id": 2797,
+        "code": "SLT",
+        "name": "Salfit",
+        "countryCode": "PS",
+        "countryId": 170
+    },
+    {
+        "id": 2798,
+        "code": "TBS",
+        "name": "Tubas",
+        "countryCode": "PS",
+        "countryId": 170
+    },
+    {
+        "id": 2799,
+        "code": "TKM",
+        "name": "Tulkarm",
+        "countryCode": "PS",
+        "countryId": 170
+    },
+    {
+        "id": 2800,
+        "code": "EM",
+        "name": "Emberá",
+        "countryCode": "PA",
+        "countryId": 171
+    },
+    {
+        "id": 2801,
+        "code": "KY",
+        "name": "Kuna Yala",
+        "countryCode": "PA",
+        "countryId": 171
+    },
+    {
+        "id": 2802,
+        "code": "NB",
+        "name": "Ngöbe-Buglé",
+        "countryCode": "PA",
+        "countryId": 171
+    },
+    {
+        "id": 2803,
+        "code": "1",
+        "name": "Bocas del Toro",
+        "countryCode": "PA",
+        "countryId": 171
+    },
+    {
+        "id": 2804,
+        "code": "2",
+        "name": "Coclé",
+        "countryCode": "PA",
+        "countryId": 171
+    },
+    {
+        "id": 2805,
+        "code": "3",
+        "name": "Colón",
+        "countryCode": "PA",
+        "countryId": 171
+    },
+    {
+        "id": 2806,
+        "code": "4",
+        "name": "Chiriquí",
+        "countryCode": "PA",
+        "countryId": 171
+    },
+    {
+        "id": 2807,
+        "code": "5",
+        "name": "Darién",
+        "countryCode": "PA",
+        "countryId": 171
+    },
+    {
+        "id": 2808,
+        "code": "6",
+        "name": "Herrera",
+        "countryCode": "PA",
+        "countryId": 171
+    },
+    {
+        "id": 2809,
+        "code": "7",
+        "name": "Los Santos",
+        "countryCode": "PA",
+        "countryId": 171
+    },
+    {
+        "id": 2810,
+        "code": "8",
+        "name": "Panamá",
+        "countryCode": "PA",
+        "countryId": 171
+    },
+    {
+        "id": 2811,
+        "code": "9",
+        "name": "Veraguas",
+        "countryCode": "PA",
+        "countryId": 171
+    },
+    {
+        "id": 2812,
+        "code": "NSB",
+        "name": "Bougainville",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2813,
+        "code": "NCD",
+        "name": "National Capital District (Port Moresby)",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2814,
+        "code": "CPK",
+        "name": "Chimbu",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2815,
+        "code": "CPM",
+        "name": "Central",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2816,
+        "code": "EBR",
+        "name": "East New Britain",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2817,
+        "code": "EHG",
+        "name": "Eastern Highlands",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2818,
+        "code": "EPW",
+        "name": "Enga",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2819,
+        "code": "ESW",
+        "name": "East Sepik",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2820,
+        "code": "GPK",
+        "name": "Gulf",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2821,
+        "code": "MBA",
+        "name": "Milne Bay",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2822,
+        "code": "MPL",
+        "name": "Morobe",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2823,
+        "code": "MPM",
+        "name": "Madang",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2824,
+        "code": "MRL",
+        "name": "Manus",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2825,
+        "code": "NIK",
+        "name": "New Ireland",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2826,
+        "code": "NPP",
+        "name": "Northern",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2827,
+        "code": "SAN",
+        "name": "Sandaun (West Sepik)",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2828,
+        "code": "SHM",
+        "name": "Southern Highlands",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2829,
+        "code": "WBK",
+        "name": "West New Britain",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2830,
+        "code": "WHM",
+        "name": "Western Highlands",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2831,
+        "code": "WPD",
+        "name": "Western",
+        "countryCode": "PG",
+        "countryId": 172
+    },
+    {
+        "id": 2832,
+        "code": "1",
+        "name": "Concepción",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2833,
+        "code": "10",
+        "name": "Alto Paraná",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2834,
+        "code": "11",
+        "name": "Central",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2835,
+        "code": "12",
+        "name": "Ñeembucú",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2836,
+        "code": "13",
+        "name": "Amambay",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2837,
+        "code": "14",
+        "name": "Canindeyú",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2838,
+        "code": "15",
+        "name": "Presidente Hayes",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2839,
+        "code": "16",
+        "name": "Alto Paraguay",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2840,
+        "code": "19",
+        "name": "Boquerón",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2841,
+        "code": "2",
+        "name": "San Pedro",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2842,
+        "code": "3",
+        "name": "Cordillera",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2843,
+        "code": "4",
+        "name": "Guairá",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2844,
+        "code": "5",
+        "name": "Caaguazú",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2845,
+        "code": "6",
+        "name": "Caazapá",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2846,
+        "code": "7",
+        "name": "Itapúa",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2847,
+        "code": "8",
+        "name": "Misiones",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2848,
+        "code": "9",
+        "name": "Paraguarí",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2849,
+        "code": "ASU",
+        "name": "Asunción",
+        "countryCode": "PY",
+        "countryId": 173
+    },
+    {
+        "id": 2850,
+        "code": "CAL",
+        "name": "El Callao",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2851,
+        "code": "AMA",
+        "name": "Amazonas",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2852,
+        "code": "ANC",
+        "name": "Ancash",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2853,
+        "code": "APU",
+        "name": "Apurímac",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2854,
+        "code": "ARE",
+        "name": "Arequipa",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2855,
+        "code": "AYA",
+        "name": "Ayacucho",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2856,
+        "code": "CAJ",
+        "name": "Cajamarca",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2857,
+        "code": "CUS",
+        "name": "Cuzco [Cusco]",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2858,
+        "code": "HUC",
+        "name": "Huánuco",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2859,
+        "code": "HUV",
+        "name": "Huancavelica",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2860,
+        "code": "ICA",
+        "name": "Ica",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2861,
+        "code": "JUN",
+        "name": "Junín",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2862,
+        "code": "LAL",
+        "name": "La Libertad",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2863,
+        "code": "LAX",
+        "name": "Lambayeque",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2864,
+        "code": "LIM",
+        "name": "Lima",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2865,
+        "code": "LOR",
+        "name": "Loreto",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2866,
+        "code": "MDD",
+        "name": "Madre de Dios",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2867,
+        "code": "MOQ",
+        "name": "Moquegua",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2868,
+        "code": "PAS",
+        "name": "Pasco",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2869,
+        "code": "PIU",
+        "name": "Piura",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2870,
+        "code": "PUN",
+        "name": "Puno",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2871,
+        "code": "SAM",
+        "name": "San Martín",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2872,
+        "code": "TAC",
+        "name": "Tacna",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2873,
+        "code": "TUM",
+        "name": "Tumbes",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2874,
+        "code": "UCA",
+        "name": "Ucayali",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2875,
+        "code": "LMA",
+        "name": "Municipalidad Metropolitana de Lima",
+        "countryCode": "PE",
+        "countryId": 174
+    },
+    {
+        "id": 2876,
+        "code": "ABR",
+        "name": "Abra",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2877,
+        "code": "AGN",
+        "name": "Agusan del Norte",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2878,
+        "code": "AGS",
+        "name": "Agusan del Sur",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2879,
+        "code": "AKL",
+        "name": "Aklan",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2880,
+        "code": "ALB",
+        "name": "Albay",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2881,
+        "code": "ANT",
+        "name": "Antique",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2882,
+        "code": "APA",
+        "name": "Apayao",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2883,
+        "code": "AUR",
+        "name": "Aurora",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2884,
+        "code": "BAN",
+        "name": "Bataan",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2885,
+        "code": "BAS",
+        "name": "Basilan",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2886,
+        "code": "BEN",
+        "name": "Benguet",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2887,
+        "code": "BIL",
+        "name": "Biliran",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2888,
+        "code": "BOH",
+        "name": "Bohol",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2889,
+        "code": "BTG",
+        "name": "Batangas",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2890,
+        "code": "BTN",
+        "name": "Batanes",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2891,
+        "code": "BUK",
+        "name": "Bukidnon",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2892,
+        "code": "BUL",
+        "name": "Bulacan",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2893,
+        "code": "CAG",
+        "name": "Cagayan",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2894,
+        "code": "CAM",
+        "name": "Camiguin",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2895,
+        "code": "CAN",
+        "name": "Camarines Norte",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2896,
+        "code": "CAP",
+        "name": "Capiz",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2897,
+        "code": "CAS",
+        "name": "Camarines Sur",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2898,
+        "code": "CAT",
+        "name": "Catanduanes",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2899,
+        "code": "CAV",
+        "name": "Cavite",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2900,
+        "code": "CEB",
+        "name": "Cebu",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2901,
+        "code": "COM",
+        "name": "Compostela Valley",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2902,
+        "code": "DAO",
+        "name": "Davao Oriental",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2903,
+        "code": "DAS",
+        "name": "Davao del Sur",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2904,
+        "code": "DAV",
+        "name": "Davao",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2905,
+        "code": "DIN",
+        "name": "Dinagat Islands",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2906,
+        "code": "EAS",
+        "name": "Eastern Samar",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2907,
+        "code": "GUI",
+        "name": "Guimaras",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2908,
+        "code": "IFU",
+        "name": "Ifugao",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2909,
+        "code": "ILI",
+        "name": "Iloilo",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2910,
+        "code": "ILN",
+        "name": "Ilocos Norte",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2911,
+        "code": "ILS",
+        "name": "Ilocoq Sur",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2912,
+        "code": "ISA",
+        "name": "Isabela",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2913,
+        "code": "KAL",
+        "name": "Kalinga-Apayao",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2914,
+        "code": "LAG",
+        "name": "Laguna",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2915,
+        "code": "LAN",
+        "name": "Lanao del Norte",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2916,
+        "code": "LAS",
+        "name": "Lanao del Sur",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2917,
+        "code": "LEY",
+        "name": "Leyte",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2918,
+        "code": "LUN",
+        "name": "La Union",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2919,
+        "code": "MAD",
+        "name": "Marinduque",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2920,
+        "code": "MAG",
+        "name": "Maguindanao",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2921,
+        "code": "MAS",
+        "name": "Masbate",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2922,
+        "code": "MDC",
+        "name": "Mindoro Occidental",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2923,
+        "code": "MDR",
+        "name": "Mindoro Oriental",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2924,
+        "code": "MOU",
+        "name": "Mountain Province",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2925,
+        "code": "MSC",
+        "name": "Misamis Occidental",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2926,
+        "code": "MSR",
+        "name": "Misamis Oriental",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2927,
+        "code": "NCO",
+        "name": "North Cotabato",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2928,
+        "code": "NEC",
+        "name": "Negros occidental",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2929,
+        "code": "NER",
+        "name": "Negros oriental",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2930,
+        "code": "NSA",
+        "name": "Northern Samar",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2931,
+        "code": "NUE",
+        "name": "Nueva Ecija",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2932,
+        "code": "NUV",
+        "name": "Nueva Vizcaya",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2933,
+        "code": "PAM",
+        "name": "Pampanga",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2934,
+        "code": "PAN",
+        "name": "Pangasinan",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2935,
+        "code": "PLW",
+        "name": "Palawan",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2936,
+        "code": "QUE",
+        "name": "Quezon",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2937,
+        "code": "QUI",
+        "name": "Quirino",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2938,
+        "code": "RIZ",
+        "name": "Rizal",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2939,
+        "code": "ROM",
+        "name": "Romblon",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2940,
+        "code": "SAR",
+        "name": "Sarangani",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2941,
+        "code": "SCO",
+        "name": "South Cotabato",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2942,
+        "code": "SIG",
+        "name": "Siquijor",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2943,
+        "code": "SLE",
+        "name": "Southern Leyte",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2944,
+        "code": "SLU",
+        "name": "Sulu",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2945,
+        "code": "SOR",
+        "name": "Sorsogon",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2946,
+        "code": "SUK",
+        "name": "Sultan Kudarat",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2947,
+        "code": "SUN",
+        "name": "Surigao del Norte",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2948,
+        "code": "SUR",
+        "name": "Surigao del Sur",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2949,
+        "code": "TAR",
+        "name": "Tarlac",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2950,
+        "code": "TAW",
+        "name": "Tawi-Tawi",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2951,
+        "code": "WSA",
+        "name": "Western Samar",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2952,
+        "code": "ZAN",
+        "name": "Zamboanga del Norte",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2953,
+        "code": "ZAS",
+        "name": "Zamboanga del Sur",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2954,
+        "code": "ZMB",
+        "name": "Zambales",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2955,
+        "code": "ZSI",
+        "name": "Zamboanga Sibuguey [Zamboanga Sibugay]",
+        "countryCode": "PH",
+        "countryId": 175
+    },
+    {
+        "id": 2956,
+        "code": "DS",
+        "name": "Dolnoslaskie",
+        "countryCode": "PL",
+        "countryId": 177
+    },
+    {
+        "id": 2957,
+        "code": "KP",
+        "name": "Kujawsko-pomorskie",
+        "countryCode": "PL",
+        "countryId": 177
+    },
+    {
+        "id": 2958,
+        "code": "LB",
+        "name": "Lubuskie",
+        "countryCode": "PL",
+        "countryId": 177
+    },
+    {
+        "id": 2959,
+        "code": "LD",
+        "name": "Lódzkie",
+        "countryCode": "PL",
+        "countryId": 177
+    },
+    {
+        "id": 2960,
+        "code": "LU",
+        "name": "Lubelskie",
+        "countryCode": "PL",
+        "countryId": 177
+    },
+    {
+        "id": 2961,
+        "code": "MA",
+        "name": "Malopolskie",
+        "countryCode": "PL",
+        "countryId": 177
+    },
+    {
+        "id": 2962,
+        "code": "MZ",
+        "name": "Mazowieckie",
+        "countryCode": "PL",
+        "countryId": 177
+    },
+    {
+        "id": 2963,
+        "code": "OP",
+        "name": "Opolskie",
+        "countryCode": "PL",
+        "countryId": 177
+    },
+    {
+        "id": 2964,
+        "code": "PD",
+        "name": "Podlaskie",
+        "countryCode": "PL",
+        "countryId": 177
+    },
+    {
+        "id": 2965,
+        "code": "PK",
+        "name": "Podkarpackie",
+        "countryCode": "PL",
+        "countryId": 177
+    },
+    {
+        "id": 2966,
+        "code": "PM",
+        "name": "Pomorskie",
+        "countryCode": "PL",
+        "countryId": 177
+    },
+    {
+        "id": 2967,
+        "code": "SK",
+        "name": "Swietokrzyskie",
+        "countryCode": "PL",
+        "countryId": 177
+    },
+    {
+        "id": 2968,
+        "code": "SL",
+        "name": "Slaskie",
+        "countryCode": "PL",
+        "countryId": 177
+    },
+    {
+        "id": 2969,
+        "code": "WN",
+        "name": "Warminsko-mazurskie",
+        "countryCode": "PL",
+        "countryId": 177
+    },
+    {
+        "id": 2970,
+        "code": "WP",
+        "name": "Wielkopolskie",
+        "countryCode": "PL",
+        "countryId": 177
+    },
+    {
+        "id": 2971,
+        "code": "ZP",
+        "name": "Zachodniopomorskie",
+        "countryCode": "PL",
+        "countryId": 177
+    },
+    {
+        "id": 2972,
+        "code": "01",
+        "name": "Aveiro",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2973,
+        "code": "02",
+        "name": "Beja",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2974,
+        "code": "03",
+        "name": "Braga",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2975,
+        "code": "04",
+        "name": "Bragança",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2976,
+        "code": "05",
+        "name": "Castelo Branco",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2977,
+        "code": "06",
+        "name": "Coimbra",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2978,
+        "code": "07",
+        "name": "Évora",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2979,
+        "code": "08",
+        "name": "Faro",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2980,
+        "code": "09",
+        "name": "Guarda",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2981,
+        "code": "10",
+        "name": "Leiria",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2982,
+        "code": "11",
+        "name": "Lisboa",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2983,
+        "code": "12",
+        "name": "Portalegre",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2984,
+        "code": "13",
+        "name": "Porto",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2985,
+        "code": "14",
+        "name": "Santarém",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2986,
+        "code": "15",
+        "name": "Setúbal",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2987,
+        "code": "16",
+        "name": "Viana do Castelo",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2988,
+        "code": "17",
+        "name": "Vila Real",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2989,
+        "code": "18",
+        "name": "Viseu",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2990,
+        "code": "20",
+        "name": "Região Autónoma dos Açores",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2991,
+        "code": "30",
+        "name": "Região Autónoma da Madeira",
+        "countryCode": "PT",
+        "countryId": 178
+    },
+    {
+        "id": 2992,
+        "code": "DA",
+        "name": "Ad Dawḩah",
+        "countryCode": "QA",
+        "countryId": 180
+    },
+    {
+        "id": 2993,
+        "code": "KH",
+        "name": "Al Khawr wa adh Dhakhīrah",
+        "countryCode": "QA",
+        "countryId": 180
+    },
+    {
+        "id": 2994,
+        "code": "MS",
+        "name": "Ash Shamāl",
+        "countryCode": "QA",
+        "countryId": 180
+    },
+    {
+        "id": 2995,
+        "code": "RA",
+        "name": "Ar Rayyān",
+        "countryCode": "QA",
+        "countryId": 180
+    },
+    {
+        "id": 2996,
+        "code": "US",
+        "name": "Umm Şalāl",
+        "countryCode": "QA",
+        "countryId": 180
+    },
+    {
+        "id": 2997,
+        "code": "WA",
+        "name": "Al Wakrah",
+        "countryCode": "QA",
+        "countryId": 180
+    },
+    {
+        "id": 2998,
+        "code": "ZA",
+        "name": "Az̧ Z̧a‘āyin",
+        "countryCode": "QA",
+        "countryId": 180
+    },
+    {
+        "id": 2999,
+        "code": "AB",
+        "name": "Alba",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3000,
+        "code": "AG",
+        "name": "Argeş",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3001,
+        "code": "AR",
+        "name": "Arad",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3002,
+        "code": "B",
+        "name": "Bucureşti",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3003,
+        "code": "BC",
+        "name": "Bacău",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3004,
+        "code": "BH",
+        "name": "Bihor",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3005,
+        "code": "BN",
+        "name": "Bistriţa-Năsăud",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3006,
+        "code": "BR",
+        "name": "Brăila",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3007,
+        "code": "BT",
+        "name": "Botoşani",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3008,
+        "code": "BV",
+        "name": "Braşov",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3009,
+        "code": "BZ",
+        "name": "Buzău",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3010,
+        "code": "CJ",
+        "name": "Cluj",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3011,
+        "code": "CL",
+        "name": "Călăraşi",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3012,
+        "code": "CS",
+        "name": "Caraş-Severin",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3013,
+        "code": "CT",
+        "name": "Constanţa",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3014,
+        "code": "CV",
+        "name": "Covasna",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3015,
+        "code": "DB",
+        "name": "Dâmboviţa",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3016,
+        "code": "DJ",
+        "name": "Dolj",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3017,
+        "code": "GJ",
+        "name": "Gorj",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3018,
+        "code": "GL",
+        "name": "Galaţi",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3019,
+        "code": "GR",
+        "name": "Giurgiu",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3020,
+        "code": "HD",
+        "name": "Hunedoara",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3021,
+        "code": "HR",
+        "name": "Harghita",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3022,
+        "code": "IF",
+        "name": "Ilfov",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3023,
+        "code": "IL",
+        "name": "Ialomita",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3024,
+        "code": "IS",
+        "name": "Iaşi",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3025,
+        "code": "MH",
+        "name": "Mehedinţi",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3026,
+        "code": "MM",
+        "name": "Maramureş",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3027,
+        "code": "MS",
+        "name": "Mureş",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3028,
+        "code": "NT",
+        "name": "Neamţ",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3029,
+        "code": "OT",
+        "name": "Olt",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3030,
+        "code": "PH",
+        "name": "Prahova",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3031,
+        "code": "SB",
+        "name": "Sibiu",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3032,
+        "code": "SJ",
+        "name": "Sălaj",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3033,
+        "code": "SM",
+        "name": "Satu Mare",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3034,
+        "code": "SV",
+        "name": "Suceava",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3035,
+        "code": "TL",
+        "name": "Tulcea",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3036,
+        "code": "TM",
+        "name": "Timiş",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3037,
+        "code": "TR",
+        "name": "Teleorman",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3038,
+        "code": "VL",
+        "name": "Vâlcea",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3039,
+        "code": "VN",
+        "name": "Vrancea",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3040,
+        "code": "VS",
+        "name": "Vaslui",
+        "countryCode": "RO",
+        "countryId": 182
+    },
+    {
+        "id": 3041,
+        "code": "AMU",
+        "name": "Amurskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3042,
+        "code": "ARK",
+        "name": "Arkhangel'skaya oblast,",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3043,
+        "code": "AST",
+        "name": "Astrakhanskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3044,
+        "code": "BEL",
+        "name": "Belgorodskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3045,
+        "code": "BRY",
+        "name": "Bryanskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3046,
+        "code": "CHE",
+        "name": "Chelyabinskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3047,
+        "code": "IRK",
+        "name": "Irkutskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3048,
+        "code": "IVA",
+        "name": "Ivanovskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3049,
+        "code": "KEM",
+        "name": "Kemerovskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3050,
+        "code": "KGD",
+        "name": "Kaliningradskaya oblast,",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3051,
+        "code": "KGN",
+        "name": "Kurganskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3052,
+        "code": "KIR",
+        "name": "Kirovskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3053,
+        "code": "KLU",
+        "name": "Kaluzhskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3054,
+        "code": "KOS",
+        "name": "Kostromskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3055,
+        "code": "KRS",
+        "name": "Kurskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3056,
+        "code": "LEN",
+        "name": "Leningradskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3057,
+        "code": "LIP",
+        "name": "Lipetskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3058,
+        "code": "MAG",
+        "name": "Magadanskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3059,
+        "code": "MOS",
+        "name": "Moskovskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3060,
+        "code": "MUR",
+        "name": "Murmanskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3061,
+        "code": "NGR",
+        "name": "Novgorodskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3062,
+        "code": "NIZ",
+        "name": "Nizbegorodskaya oblast,",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3063,
+        "code": "NVS",
+        "name": "Novosibirskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3064,
+        "code": "OMS",
+        "name": "Omskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3065,
+        "code": "ORE",
+        "name": "Orenburgskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3066,
+        "code": "ORL",
+        "name": "Orlovskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3067,
+        "code": "PNZ",
+        "name": "Penzenskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3068,
+        "code": "PSK",
+        "name": "Pskovskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3069,
+        "code": "ROS",
+        "name": "Rostovskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3070,
+        "code": "RYA",
+        "name": "Ryazanskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3071,
+        "code": "SAK",
+        "name": "Sakhalinskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3072,
+        "code": "SAM",
+        "name": "Samarskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3073,
+        "code": "SAR",
+        "name": "Saratovskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3074,
+        "code": "SMO",
+        "name": "Smolenskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3075,
+        "code": "SVE",
+        "name": "Sverdlovskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3076,
+        "code": "TAM",
+        "name": "Tambovskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3077,
+        "code": "TOM",
+        "name": "Tomskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3078,
+        "code": "TUL",
+        "name": "Tul'skaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3079,
+        "code": "TVE",
+        "name": "Tverskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3080,
+        "code": "TYU",
+        "name": "Tyumenskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3081,
+        "code": "ULY",
+        "name": "Ul'yanovskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3082,
+        "code": "VGG",
+        "name": "Volgogradskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3083,
+        "code": "VLA",
+        "name": "Vladimirskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3084,
+        "code": "VLG",
+        "name": "Vologodskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3085,
+        "code": "VOR",
+        "name": "Voronezhskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3086,
+        "code": "YAR",
+        "name": "Yaroslavskaya oblast'",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3087,
+        "code": "ALT",
+        "name": "Altayskiy kray",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3088,
+        "code": "KAM",
+        "name": "Kamchatskiy kray",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3089,
+        "code": "KDA",
+        "name": "Krasnodarskiy kray",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3090,
+        "code": "KHA",
+        "name": "Khabarovskiy kray",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3091,
+        "code": "KYA",
+        "name": "Krasnoyarskiy kray",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3092,
+        "code": "PER",
+        "name": "Permskiy kray",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3093,
+        "code": "PRI",
+        "name": "Primorskiy kray",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3094,
+        "code": "STA",
+        "name": "Stavropol'skiy kray",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3095,
+        "code": "ZAB",
+        "name": "Zabaykal'skiy kray",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3096,
+        "code": "MOW",
+        "name": "Moskva",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3097,
+        "code": "SPE",
+        "name": "Sankt-Peterburg",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3098,
+        "code": "CHU",
+        "name": "Chukotskiy avtonomnyy okrug",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3099,
+        "code": "NEN",
+        "name": "Nenetskiy avtonomnyy okrug",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3100,
+        "code": "YEV",
+        "name": "Yevreyskaya avtonomnaya oblast'ug",
+        "countryCode": "RU",
+        "countryId": 183
+    },
+    {
+        "id": 3101,
+        "code": "02",
+        "name": "Est",
+        "countryCode": "RW",
+        "countryId": 184
+    },
+    {
+        "id": 3102,
+        "code": "03",
+        "name": "Nord",
+        "countryCode": "RW",
+        "countryId": 184
+    },
+    {
+        "id": 3103,
+        "code": "04",
+        "name": "Ouest",
+        "countryCode": "RW",
+        "countryId": 184
+    },
+    {
+        "id": 3104,
+        "code": "05",
+        "name": "Sud",
+        "countryCode": "RW",
+        "countryId": 184
+    },
+    {
+        "id": 3105,
+        "code": "01",
+        "name": "Ville de Kigali",
+        "countryCode": "RW",
+        "countryId": 184
+    },
+    {
+        "id": 3106,
+        "code": "AC",
+        "name": "Ascension",
+        "countryCode": "SH",
+        "countryId": 186
+    },
+    {
+        "id": 3107,
+        "code": "HL",
+        "name": "Saint Helena",
+        "countryCode": "SH",
+        "countryId": 186
+    },
+    {
+        "id": 3108,
+        "code": "TA",
+        "name": "Tristan da Cunha",
+        "countryCode": "SH",
+        "countryId": 186
+    },
+    {
+        "id": 3109,
+        "code": "01",
+        "name": "Christ Church Nichola Town",
+        "countryCode": "KN",
+        "countryId": 187
+    },
+    {
+        "id": 3110,
+        "code": "02",
+        "name": "Saint Anne Sandy Point",
+        "countryCode": "KN",
+        "countryId": 187
+    },
+    {
+        "id": 3111,
+        "code": "03",
+        "name": "Saint George Basseterre",
+        "countryCode": "KN",
+        "countryId": 187
+    },
+    {
+        "id": 3112,
+        "code": "04",
+        "name": "Saint George Gingerland",
+        "countryCode": "KN",
+        "countryId": 187
+    },
+    {
+        "id": 3113,
+        "code": "05",
+        "name": "Saint James Windward",
+        "countryCode": "KN",
+        "countryId": 187
+    },
+    {
+        "id": 3114,
+        "code": "06",
+        "name": "Saint John Capisterre",
+        "countryCode": "KN",
+        "countryId": 187
+    },
+    {
+        "id": 3115,
+        "code": "07",
+        "name": "Saint John Figtree",
+        "countryCode": "KN",
+        "countryId": 187
+    },
+    {
+        "id": 3116,
+        "code": "08",
+        "name": "Saint Mary Cayon",
+        "countryCode": "KN",
+        "countryId": 187
+    },
+    {
+        "id": 3117,
+        "code": "09",
+        "name": "Saint Paul Capisterre",
+        "countryCode": "KN",
+        "countryId": 187
+    },
+    {
+        "id": 3118,
+        "code": "10",
+        "name": "Saint Paul Charlestown",
+        "countryCode": "KN",
+        "countryId": 187
+    },
+    {
+        "id": 3119,
+        "code": "11",
+        "name": "Saint Peter Basseterre",
+        "countryCode": "KN",
+        "countryId": 187
+    },
+    {
+        "id": 3120,
+        "code": "12",
+        "name": "Saint Thomas Lowland",
+        "countryCode": "KN",
+        "countryId": 187
+    },
+    {
+        "id": 3121,
+        "code": "13",
+        "name": "Saint Thomas Middle Island",
+        "countryCode": "KN",
+        "countryId": 187
+    },
+    {
+        "id": 3122,
+        "code": "15",
+        "name": "Trinity Palmetto Point",
+        "countryCode": "KN",
+        "countryId": 187
+    },
+    {
+        "id": 3123,
+        "code": "01",
+        "name": "Anse la Raye",
+        "countryCode": "LC",
+        "countryId": 188
+    },
+    {
+        "id": 3124,
+        "code": "02",
+        "name": "Castries",
+        "countryCode": "LC",
+        "countryId": 188
+    },
+    {
+        "id": 3125,
+        "code": "03",
+        "name": "Choiseul",
+        "countryCode": "LC",
+        "countryId": 188
+    },
+    {
+        "id": 3126,
+        "code": "04",
+        "name": "Dauphin",
+        "countryCode": "LC",
+        "countryId": 188
+    },
+    {
+        "id": 3127,
+        "code": "05",
+        "name": "Dennery",
+        "countryCode": "LC",
+        "countryId": 188
+    },
+    {
+        "id": 3128,
+        "code": "06",
+        "name": "Gros Islet",
+        "countryCode": "LC",
+        "countryId": 188
+    },
+    {
+        "id": 3129,
+        "code": "07",
+        "name": "Laborie",
+        "countryCode": "LC",
+        "countryId": 188
+    },
+    {
+        "id": 3130,
+        "code": "08",
+        "name": "Micoud",
+        "countryCode": "LC",
+        "countryId": 188
+    },
+    {
+        "id": 3131,
+        "code": "09",
+        "name": "Praslin",
+        "countryCode": "LC",
+        "countryId": 188
+    },
+    {
+        "id": 3132,
+        "code": "10",
+        "name": "Soufrière",
+        "countryCode": "LC",
+        "countryId": 188
+    },
+    {
+        "id": 3133,
+        "code": "11",
+        "name": "Vieux Fort",
+        "countryCode": "LC",
+        "countryId": 188
+    },
+    {
+        "id": 3134,
+        "code": "01",
+        "name": "Charlotte",
+        "countryCode": "VC",
+        "countryId": 191
+    },
+    {
+        "id": 3135,
+        "code": "02",
+        "name": "Saint Andrew",
+        "countryCode": "VC",
+        "countryId": 191
+    },
+    {
+        "id": 3136,
+        "code": "03",
+        "name": "Saint David",
+        "countryCode": "VC",
+        "countryId": 191
+    },
+    {
+        "id": 3137,
+        "code": "04",
+        "name": "Saint George",
+        "countryCode": "VC",
+        "countryId": 191
+    },
+    {
+        "id": 3138,
+        "code": "05",
+        "name": "Saint Patrick",
+        "countryCode": "VC",
+        "countryId": 191
+    },
+    {
+        "id": 3139,
+        "code": "06",
+        "name": "Grenadines",
+        "countryCode": "VC",
+        "countryId": 191
+    },
+    {
+        "id": 3140,
+        "code": "AA",
+        "name": "Alana",
+        "countryCode": "WS",
+        "countryId": 192
+    },
+    {
+        "id": 3141,
+        "code": "AL",
+        "name": "Aiga-I-le-Tai",
+        "countryCode": "WS",
+        "countryId": 192
+    },
+    {
+        "id": 3142,
+        "code": "AT",
+        "name": "Atua",
+        "countryCode": "WS",
+        "countryId": 192
+    },
+    {
+        "id": 3143,
+        "code": "FA",
+        "name": "Fa'asaleleaga",
+        "countryCode": "WS",
+        "countryId": 192
+    },
+    {
+        "id": 3144,
+        "code": "GE",
+        "name": "Gaga'emauga",
+        "countryCode": "WS",
+        "countryId": 192
+    },
+    {
+        "id": 3145,
+        "code": "GI",
+        "name": "Gagaifomauga",
+        "countryCode": "WS",
+        "countryId": 192
+    },
+    {
+        "id": 3146,
+        "code": "PA",
+        "name": "Palauli",
+        "countryCode": "WS",
+        "countryId": 192
+    },
+    {
+        "id": 3147,
+        "code": "SA",
+        "name": "Satupa 'itea",
+        "countryCode": "WS",
+        "countryId": 192
+    },
+    {
+        "id": 3148,
+        "code": "TU",
+        "name": "Tuamasaga",
+        "countryCode": "WS",
+        "countryId": 192
+    },
+    {
+        "id": 3149,
+        "code": "VF",
+        "name": "Va'a-o-Fonoti",
+        "countryCode": "WS",
+        "countryId": 192
+    },
+    {
+        "id": 3150,
+        "code": "VS",
+        "name": "Vaisigano",
+        "countryCode": "WS",
+        "countryId": 192
+    },
+    {
+        "id": 3151,
+        "code": "01",
+        "name": "Acquaviva",
+        "countryCode": "SM",
+        "countryId": 193
+    },
+    {
+        "id": 3152,
+        "code": "02",
+        "name": "Chiesanuova",
+        "countryCode": "SM",
+        "countryId": 193
+    },
+    {
+        "id": 3153,
+        "code": "03",
+        "name": "Domagnano",
+        "countryCode": "SM",
+        "countryId": 193
+    },
+    {
+        "id": 3154,
+        "code": "04",
+        "name": "Faetano",
+        "countryCode": "SM",
+        "countryId": 193
+    },
+    {
+        "id": 3155,
+        "code": "05",
+        "name": "Fiorentino",
+        "countryCode": "SM",
+        "countryId": 193
+    },
+    {
+        "id": 3156,
+        "code": "06",
+        "name": "Borgo Maggiore",
+        "countryCode": "SM",
+        "countryId": 193
+    },
+    {
+        "id": 3157,
+        "code": "07",
+        "name": "San Marino",
+        "countryCode": "SM",
+        "countryId": 193
+    },
+    {
+        "id": 3158,
+        "code": "08",
+        "name": "Montegiardino",
+        "countryCode": "SM",
+        "countryId": 193
+    },
+    {
+        "id": 3159,
+        "code": "09",
+        "name": "Serravalle",
+        "countryCode": "SM",
+        "countryId": 193
+    },
+    {
+        "id": 3160,
+        "code": "P",
+        "name": "Príncipe",
+        "countryCode": "ST",
+        "countryId": 194
+    },
+    {
+        "id": 3161,
+        "code": "S",
+        "name": "São Tomé",
+        "countryCode": "ST",
+        "countryId": 194
+    },
+    {
+        "id": 3162,
+        "code": "01",
+        "name": "Ar Riyāḑ",
+        "countryCode": "SA",
+        "countryId": 195
+    },
+    {
+        "id": 3163,
+        "code": "02",
+        "name": "Makkah",
+        "countryCode": "SA",
+        "countryId": 195
+    },
+    {
+        "id": 3164,
+        "code": "03",
+        "name": "Al Madīnah",
+        "countryCode": "SA",
+        "countryId": 195
+    },
+    {
+        "id": 3165,
+        "code": "04",
+        "name": "Ash Sharqīyah",
+        "countryCode": "SA",
+        "countryId": 195
+    },
+    {
+        "id": 3166,
+        "code": "05",
+        "name": "Al Qaşīm",
+        "countryCode": "SA",
+        "countryId": 195
+    },
+    {
+        "id": 3167,
+        "code": "06",
+        "name": "Ḩā'il",
+        "countryCode": "SA",
+        "countryId": 195
+    },
+    {
+        "id": 3168,
+        "code": "07",
+        "name": "Tabūk",
+        "countryCode": "SA",
+        "countryId": 195
+    },
+    {
+        "id": 3169,
+        "code": "08",
+        "name": "Al Ḩudūd ash Shamālīyah",
+        "countryCode": "SA",
+        "countryId": 195
+    },
+    {
+        "id": 3170,
+        "code": "09",
+        "name": "Jīzān",
+        "countryCode": "SA",
+        "countryId": 195
+    },
+    {
+        "id": 3171,
+        "code": "10",
+        "name": "Najrān",
+        "countryCode": "SA",
+        "countryId": 195
+    },
+    {
+        "id": 3172,
+        "code": "11",
+        "name": "Al Bāḩah",
+        "countryCode": "SA",
+        "countryId": 195
+    },
+    {
+        "id": 3173,
+        "code": "12",
+        "name": "AI Jawf",
+        "countryCode": "SA",
+        "countryId": 195
+    },
+    {
+        "id": 3174,
+        "code": "14",
+        "name": "'Asīr",
+        "countryCode": "SA",
+        "countryId": 195
+    },
+    {
+        "id": 3175,
+        "code": "DB",
+        "name": "Diourbel",
+        "countryCode": "SN",
+        "countryId": 196
+    },
+    {
+        "id": 3176,
+        "code": "DK",
+        "name": "Dakar",
+        "countryCode": "SN",
+        "countryId": 196
+    },
+    {
+        "id": 3177,
+        "code": "FK",
+        "name": "Fatick",
+        "countryCode": "SN",
+        "countryId": 196
+    },
+    {
+        "id": 3178,
+        "code": "KA",
+        "name": "Kaffrine",
+        "countryCode": "SN",
+        "countryId": 196
+    },
+    {
+        "id": 3179,
+        "code": "KD",
+        "name": "Kolda",
+        "countryCode": "SN",
+        "countryId": 196
+    },
+    {
+        "id": 3180,
+        "code": "KE",
+        "name": "Kédougou",
+        "countryCode": "SN",
+        "countryId": 196
+    },
+    {
+        "id": 3181,
+        "code": "KL",
+        "name": "Kaolack",
+        "countryCode": "SN",
+        "countryId": 196
+    },
+    {
+        "id": 3182,
+        "code": "LG",
+        "name": "Louga",
+        "countryCode": "SN",
+        "countryId": 196
+    },
+    {
+        "id": 3183,
+        "code": "MT",
+        "name": "Matam",
+        "countryCode": "SN",
+        "countryId": 196
+    },
+    {
+        "id": 3184,
+        "code": "SE",
+        "name": "Sédhiou",
+        "countryCode": "SN",
+        "countryId": 196
+    },
+    {
+        "id": 3185,
+        "code": "SL",
+        "name": "Saint-Louis",
+        "countryCode": "SN",
+        "countryId": 196
+    },
+    {
+        "id": 3186,
+        "code": "TC",
+        "name": "Tambacounda",
+        "countryCode": "SN",
+        "countryId": 196
+    },
+    {
+        "id": 3187,
+        "code": "TH",
+        "name": "Thiès",
+        "countryCode": "SN",
+        "countryId": 196
+    },
+    {
+        "id": 3188,
+        "code": "ZG",
+        "name": "Ziguinchor",
+        "countryCode": "SN",
+        "countryId": 196
+    },
+    {
+        "id": 3189,
+        "code": "KM",
+        "name": "Kosovo-Metohija",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3190,
+        "code": "VO",
+        "name": "Vojvodina",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3191,
+        "code": "00",
+        "name": "Beograd",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3192,
+        "code": "01",
+        "name": "Severnobački okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3193,
+        "code": "02",
+        "name": "Srednjebanatski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3194,
+        "code": "03",
+        "name": "Severnobanatski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3195,
+        "code": "04",
+        "name": "Južnobanatski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3196,
+        "code": "05",
+        "name": "Zapadnobački okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3197,
+        "code": "06",
+        "name": "Južnobački okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3198,
+        "code": "07",
+        "name": "Sremski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3199,
+        "code": "08",
+        "name": "Mačvanski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3200,
+        "code": "09",
+        "name": "Kolubarski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3201,
+        "code": "10",
+        "name": "Podunavski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3202,
+        "code": "11",
+        "name": "Braničevski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3203,
+        "code": "12",
+        "name": "Šumadijski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3204,
+        "code": "13",
+        "name": "Pomoravski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3205,
+        "code": "14",
+        "name": "Borski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3206,
+        "code": "15",
+        "name": "Zaječarski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3207,
+        "code": "16",
+        "name": "Zlatiborski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3208,
+        "code": "17",
+        "name": "Moravički okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3209,
+        "code": "18",
+        "name": "Raški okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3210,
+        "code": "19",
+        "name": "Rasinski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3211,
+        "code": "20",
+        "name": "Nišavski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3212,
+        "code": "21",
+        "name": "Toplički okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3213,
+        "code": "22",
+        "name": "Pirotski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3214,
+        "code": "23",
+        "name": "Jablanički okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3215,
+        "code": "24",
+        "name": "Pčinjski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3216,
+        "code": "25",
+        "name": "Kosovski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3217,
+        "code": "26",
+        "name": "Pećki okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3218,
+        "code": "27",
+        "name": "Prizrenski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3219,
+        "code": "28",
+        "name": "Kosovsko-Mitrovački okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3220,
+        "code": "29",
+        "name": "Kosovsko-Pomoravski okrug",
+        "countryCode": "RS",
+        "countryId": 197
+    },
+    {
+        "id": 3221,
+        "code": "01",
+        "name": "Anse aux Pins",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3222,
+        "code": "02",
+        "name": "Anse Boileau",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3223,
+        "code": "03",
+        "name": "Anse Étoile",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3224,
+        "code": "04",
+        "name": "Au Cap",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3225,
+        "code": "05",
+        "name": "Anse Royale",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3226,
+        "code": "06",
+        "name": "Baie Lazare",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3227,
+        "code": "07",
+        "name": "Baie Sainte-Anne",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3228,
+        "code": "08",
+        "name": "Beau Vallon",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3229,
+        "code": "09",
+        "name": "Bel Air",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3230,
+        "code": "10",
+        "name": "Bel Ombre",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3231,
+        "code": "11",
+        "name": "Cascade",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3232,
+        "code": "12",
+        "name": "Glacis",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3233,
+        "code": "13",
+        "name": "Grand' Anse Mahé",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3234,
+        "code": "14",
+        "name": "Grand' Anse Praslin",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3235,
+        "code": "15",
+        "name": "La Digue",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3236,
+        "code": "16",
+        "name": "La Rivière Anglaise",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3237,
+        "code": "17",
+        "name": "Mont Buxton",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3238,
+        "code": "18",
+        "name": "Mont Fleuri",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3239,
+        "code": "19",
+        "name": "Plaisance",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3240,
+        "code": "20",
+        "name": "Pointe La Rue",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3241,
+        "code": "21",
+        "name": "Port Glaud",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3242,
+        "code": "22",
+        "name": "Saint Louis",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3243,
+        "code": "23",
+        "name": "Takamaka",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3244,
+        "code": "24",
+        "name": "Les Mamelles",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3245,
+        "code": "25",
+        "name": "Roche Caïman",
+        "countryCode": "SC",
+        "countryId": 198
+    },
+    {
+        "id": 3246,
+        "code": "E",
+        "name": "Eastern",
+        "countryCode": "SL",
+        "countryId": 199
+    },
+    {
+        "id": 3247,
+        "code": "N",
+        "name": "Northern",
+        "countryCode": "SL",
+        "countryId": 199
+    },
+    {
+        "id": 3248,
+        "code": "S",
+        "name": "Southern",
+        "countryCode": "SL",
+        "countryId": 199
+    },
+    {
+        "id": 3249,
+        "code": "W",
+        "name": "Western Area (Freetown)",
+        "countryCode": "SL",
+        "countryId": 199
+    },
+    {
+        "id": 3250,
+        "code": "01",
+        "name": "Central Singapore",
+        "countryCode": "SG",
+        "countryId": 200
+    },
+    {
+        "id": 3251,
+        "code": "02",
+        "name": "North East",
+        "countryCode": "SG",
+        "countryId": 200
+    },
+    {
+        "id": 3252,
+        "code": "03",
+        "name": "North West",
+        "countryCode": "SG",
+        "countryId": 200
+    },
+    {
+        "id": 3253,
+        "code": "04",
+        "name": "South East",
+        "countryCode": "SG",
+        "countryId": 200
+    },
+    {
+        "id": 3254,
+        "code": "05",
+        "name": "South West",
+        "countryCode": "SG",
+        "countryId": 200
+    },
+    {
+        "id": 3255,
+        "code": "BC",
+        "name": "Banskobystrický kraj",
+        "countryCode": "SK",
+        "countryId": 202
+    },
+    {
+        "id": 3256,
+        "code": "BL",
+        "name": "Bratislavský kraj",
+        "countryCode": "SK",
+        "countryId": 202
+    },
+    {
+        "id": 3257,
+        "code": "KI",
+        "name": "Košický kraj",
+        "countryCode": "SK",
+        "countryId": 202
+    },
+    {
+        "id": 3258,
+        "code": "NI",
+        "name": "Nitriansky kraj",
+        "countryCode": "SK",
+        "countryId": 202
+    },
+    {
+        "id": 3259,
+        "code": "PV",
+        "name": "Prešovský kraj",
+        "countryCode": "SK",
+        "countryId": 202
+    },
+    {
+        "id": 3260,
+        "code": "TA",
+        "name": "Trnavský kraj",
+        "countryCode": "SK",
+        "countryId": 202
+    },
+    {
+        "id": 3261,
+        "code": "TC",
+        "name": "Trenčiansky kraj",
+        "countryCode": "SK",
+        "countryId": 202
+    },
+    {
+        "id": 3262,
+        "code": "ZI",
+        "name": "Žilinský kraj",
+        "countryCode": "SK",
+        "countryId": 202
+    },
+    {
+        "id": 3263,
+        "code": "001",
+        "name": "Ajdovščina",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3264,
+        "code": "002",
+        "name": "Beltinci",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3265,
+        "code": "003",
+        "name": "Bled",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3266,
+        "code": "004",
+        "name": "Bohinj",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3267,
+        "code": "005",
+        "name": "Borovnica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3268,
+        "code": "006",
+        "name": "Bovec",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3269,
+        "code": "007",
+        "name": "Brda",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3270,
+        "code": "008",
+        "name": "Brezovica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3271,
+        "code": "009",
+        "name": "Brežice",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3272,
+        "code": "010",
+        "name": "Tišina",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3273,
+        "code": "011",
+        "name": "Celje",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3274,
+        "code": "012",
+        "name": "Cerklje na Gorenjskem",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3275,
+        "code": "013",
+        "name": "Cerknica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3276,
+        "code": "014",
+        "name": "Cerkno",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3277,
+        "code": "015",
+        "name": "Črenšovci",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3278,
+        "code": "016",
+        "name": "Črna na Koroškem",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3279,
+        "code": "017",
+        "name": "Črnomelj",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3280,
+        "code": "018",
+        "name": "Destrnik",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3281,
+        "code": "019",
+        "name": "Divača",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3282,
+        "code": "020",
+        "name": "Dobrepolje",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3283,
+        "code": "021",
+        "name": "Dobrova-Polhov Gradec",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3284,
+        "code": "022",
+        "name": "Dol pri Ljubljani",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3285,
+        "code": "023",
+        "name": "Domžale",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3286,
+        "code": "024",
+        "name": "Dornava",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3287,
+        "code": "025",
+        "name": "Dravograd",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3288,
+        "code": "026",
+        "name": "Duplek",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3289,
+        "code": "027",
+        "name": "Gorenja vas-Poljane",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3290,
+        "code": "028",
+        "name": "Gorišnica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3291,
+        "code": "029",
+        "name": "Gornja Radgona",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3292,
+        "code": "030",
+        "name": "Gornji Grad",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3293,
+        "code": "031",
+        "name": "Gornji Petrovci",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3294,
+        "code": "032",
+        "name": "Grosuplje",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3295,
+        "code": "033",
+        "name": "Šalovci",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3296,
+        "code": "034",
+        "name": "Hrastnik",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3297,
+        "code": "035",
+        "name": "Hrpelje-Kozina",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3298,
+        "code": "036",
+        "name": "Idrija",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3299,
+        "code": "037",
+        "name": "Ig",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3300,
+        "code": "038",
+        "name": "Ilirska Bistrica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3301,
+        "code": "039",
+        "name": "Ivančna Gorica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3302,
+        "code": "040",
+        "name": "Izola",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3303,
+        "code": "041",
+        "name": "Jesenice",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3304,
+        "code": "042",
+        "name": "Juršinci",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3305,
+        "code": "043",
+        "name": "Kamnik",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3306,
+        "code": "044",
+        "name": "Kanal",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3307,
+        "code": "045",
+        "name": "Kidričevo",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3308,
+        "code": "046",
+        "name": "Kobarid",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3309,
+        "code": "047",
+        "name": "Kobilje",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3310,
+        "code": "048",
+        "name": "Kočevje",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3311,
+        "code": "049",
+        "name": "Komen",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3312,
+        "code": "050",
+        "name": "Koper",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3313,
+        "code": "051",
+        "name": "Kozje",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3314,
+        "code": "052",
+        "name": "Kranj",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3315,
+        "code": "053",
+        "name": "Kranjska Gora",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3316,
+        "code": "054",
+        "name": "Krško",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3317,
+        "code": "055",
+        "name": "Kungota",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3318,
+        "code": "056",
+        "name": "Kuzma",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3319,
+        "code": "057",
+        "name": "Laško",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3320,
+        "code": "058",
+        "name": "Lenart",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3321,
+        "code": "059",
+        "name": "Lendava",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3322,
+        "code": "060",
+        "name": "Litija",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3323,
+        "code": "061",
+        "name": "Ljubljana",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3324,
+        "code": "062",
+        "name": "Ljubno",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3325,
+        "code": "063",
+        "name": "Ljutomer",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3326,
+        "code": "064",
+        "name": "Logatec",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3327,
+        "code": "065",
+        "name": "Loška Dolina",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3328,
+        "code": "066",
+        "name": "Loški Potok",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3329,
+        "code": "067",
+        "name": "Luče",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3330,
+        "code": "068",
+        "name": "Lukovica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3331,
+        "code": "069",
+        "name": "Majšperk",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3332,
+        "code": "070",
+        "name": "Maribor",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3333,
+        "code": "071",
+        "name": "Medvode",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3334,
+        "code": "072",
+        "name": "Mengeš",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3335,
+        "code": "073",
+        "name": "Metlika",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3336,
+        "code": "074",
+        "name": "Mežica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3337,
+        "code": "075",
+        "name": "Miren-Kostanjevica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3338,
+        "code": "076",
+        "name": "Mislinja",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3339,
+        "code": "077",
+        "name": "Moravče",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3340,
+        "code": "078",
+        "name": "Moravske Toplice",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3341,
+        "code": "079",
+        "name": "Mozirje",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3342,
+        "code": "080",
+        "name": "Murska Sobota",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3343,
+        "code": "081",
+        "name": "Muta",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3344,
+        "code": "082",
+        "name": "Naklo",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3345,
+        "code": "083",
+        "name": "Nazarje",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3346,
+        "code": "084",
+        "name": "Nova Gorica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3347,
+        "code": "085",
+        "name": "Novo mesto",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3348,
+        "code": "086",
+        "name": "Odranci",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3349,
+        "code": "087",
+        "name": "Ormož",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3350,
+        "code": "088",
+        "name": "Osilnica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3351,
+        "code": "089",
+        "name": "Pesnica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3352,
+        "code": "090",
+        "name": "Piran",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3353,
+        "code": "091",
+        "name": "Pivka",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3354,
+        "code": "092",
+        "name": "Podčetrtek",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3355,
+        "code": "093",
+        "name": "Podvelka",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3356,
+        "code": "094",
+        "name": "Postojna",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3357,
+        "code": "095",
+        "name": "Preddvor",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3358,
+        "code": "096",
+        "name": "Ptuj",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3359,
+        "code": "097",
+        "name": "Puconci",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3360,
+        "code": "098",
+        "name": "Rače-Fram",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3361,
+        "code": "099",
+        "name": "Radeče",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3362,
+        "code": "100",
+        "name": "Radenci",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3363,
+        "code": "101",
+        "name": "Radlje ob Dravi",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3364,
+        "code": "102",
+        "name": "Radovljica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3365,
+        "code": "103",
+        "name": "Ravne na Koroškem",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3366,
+        "code": "104",
+        "name": "Ribnica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3367,
+        "code": "105",
+        "name": "Rogašovci",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3368,
+        "code": "106",
+        "name": "Rogaška Slatina",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3369,
+        "code": "107",
+        "name": "Rogatec",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3370,
+        "code": "108",
+        "name": "Ruše",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3371,
+        "code": "109",
+        "name": "Semič",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3372,
+        "code": "110",
+        "name": "Semic",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3373,
+        "code": "111",
+        "name": "Sežana",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3374,
+        "code": "112",
+        "name": "Slovenj Gradec",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3375,
+        "code": "113",
+        "name": "Slovenska Bistrica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3376,
+        "code": "114",
+        "name": "Slovenske Konjice",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3377,
+        "code": "115",
+        "name": "Starše",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3378,
+        "code": "116",
+        "name": "Sveti Jurij",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3379,
+        "code": "117",
+        "name": "Šenčur",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3380,
+        "code": "118",
+        "name": "Šentilj",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3381,
+        "code": "119",
+        "name": "Šentjernej",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3382,
+        "code": "120",
+        "name": "Šentjur",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3383,
+        "code": "121",
+        "name": "Škocjan",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3384,
+        "code": "122",
+        "name": "Škofja Loka",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3385,
+        "code": "123",
+        "name": "Škofljica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3386,
+        "code": "124",
+        "name": "Šmarje pri Jelšah",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3387,
+        "code": "125",
+        "name": "Šmartno ob Paki",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3388,
+        "code": "126",
+        "name": "Šoštanj",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3389,
+        "code": "127",
+        "name": "Štore",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3390,
+        "code": "128",
+        "name": "Tolmin",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3391,
+        "code": "129",
+        "name": "Trbovlje",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3392,
+        "code": "130",
+        "name": "Trebnje",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3393,
+        "code": "131",
+        "name": "Tržič",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3394,
+        "code": "132",
+        "name": "Turnišče",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3395,
+        "code": "133",
+        "name": "Velenje",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3396,
+        "code": "134",
+        "name": "Velike Lašče",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3397,
+        "code": "135",
+        "name": "Videm",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3398,
+        "code": "136",
+        "name": "Vipava",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3399,
+        "code": "137",
+        "name": "Vitanje",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3400,
+        "code": "138",
+        "name": "Vodice",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3401,
+        "code": "139",
+        "name": "Vojnik",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3402,
+        "code": "140",
+        "name": "Vrhnika",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3403,
+        "code": "141",
+        "name": "Vuzenica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3404,
+        "code": "142",
+        "name": "Zagorje ob Savi",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3405,
+        "code": "143",
+        "name": "Zavrč",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3406,
+        "code": "144",
+        "name": "Zreče",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3407,
+        "code": "146",
+        "name": "Železniki",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3408,
+        "code": "147",
+        "name": "Žiri",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3409,
+        "code": "148",
+        "name": "Benedikt",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3410,
+        "code": "149",
+        "name": "Bistrica ob Sotli",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3411,
+        "code": "150",
+        "name": "Bloke",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3412,
+        "code": "151",
+        "name": "Braslovče",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3413,
+        "code": "152",
+        "name": "Cankova",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3414,
+        "code": "153",
+        "name": "Cerkvenjak",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3415,
+        "code": "154",
+        "name": "Dobje",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3416,
+        "code": "155",
+        "name": "Dobrna",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3417,
+        "code": "156",
+        "name": "Dobrovnik",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3418,
+        "code": "157",
+        "name": "Dolenjske Toplice",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3419,
+        "code": "158",
+        "name": "Grad",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3420,
+        "code": "159",
+        "name": "Hajdina",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3421,
+        "code": "160",
+        "name": "Hoče-Slivnica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3422,
+        "code": "161",
+        "name": "Hodoš",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3423,
+        "code": "162",
+        "name": "Horjul",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3424,
+        "code": "163",
+        "name": "Jezersko",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3425,
+        "code": "164",
+        "name": "Komenda",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3426,
+        "code": "165",
+        "name": "Kostel",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3427,
+        "code": "166",
+        "name": "Križevci",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3428,
+        "code": "167",
+        "name": "Lovrenc na Pohorju",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3429,
+        "code": "168",
+        "name": "Markovci",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3430,
+        "code": "169",
+        "name": "Miklavž na Dravskem Polju",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3431,
+        "code": "170",
+        "name": "Mirna Peč",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3432,
+        "code": "171",
+        "name": "Oplotnica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3433,
+        "code": "172",
+        "name": "Podlehnik",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3434,
+        "code": "173",
+        "name": "Polzela",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3435,
+        "code": "174",
+        "name": "Prebold",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3436,
+        "code": "175",
+        "name": "Prevalje",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3437,
+        "code": "176",
+        "name": "Razkrižje",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3438,
+        "code": "177",
+        "name": "Ribnica na Pohorju",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3439,
+        "code": "178",
+        "name": "Selnica ob Dravi",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3440,
+        "code": "179",
+        "name": "Sodražica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3441,
+        "code": "180",
+        "name": "Solčava",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3442,
+        "code": "181",
+        "name": "Sveta Ana",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3443,
+        "code": "182",
+        "name": "Sveti Andraž v Slovenskih Goricah",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3444,
+        "code": "183",
+        "name": "Šempeter-Vrtojba",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3445,
+        "code": "184",
+        "name": "Tabor",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3446,
+        "code": "185",
+        "name": "Trnovska vas",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3447,
+        "code": "186",
+        "name": "Trzin",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3448,
+        "code": "187",
+        "name": "Velika Polana",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3449,
+        "code": "188",
+        "name": "Veržej",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3450,
+        "code": "189",
+        "name": "Vransko",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3451,
+        "code": "190",
+        "name": "Žalec",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3452,
+        "code": "191",
+        "name": "Žetale",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3453,
+        "code": "192",
+        "name": "Žirovnica",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3454,
+        "code": "193",
+        "name": "Žužemberk",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3455,
+        "code": "195",
+        "name": "Apače",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3456,
+        "code": "196",
+        "name": "Cirkulane",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3457,
+        "code": "197",
+        "name": "Kosanjevica na Krki",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3458,
+        "code": "198",
+        "name": "Makole",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3459,
+        "code": "199",
+        "name": "Mokronog-Trebelno",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3460,
+        "code": "200",
+        "name": "Poljčane",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3461,
+        "code": "201",
+        "name": "Renče-Vogrsko",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3462,
+        "code": "202",
+        "name": "Središče ob Dravi",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3463,
+        "code": "203",
+        "name": "Straža",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3464,
+        "code": "205",
+        "name": "Sveti Tomaž",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3465,
+        "code": "206",
+        "name": "Šmarješke Toplice",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3466,
+        "code": "207",
+        "name": "Gorje",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3467,
+        "code": "208",
+        "name": "Log-Dragomer",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3468,
+        "code": "209",
+        "name": "Rečica ob Savinji",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3469,
+        "code": "210",
+        "name": "Sveti Jurij v Slovenskih Goricah",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3470,
+        "code": "211",
+        "name": "Šentrupert",
+        "countryCode": "SI",
+        "countryId": 203
+    },
+    {
+        "id": 3471,
+        "code": "CE",
+        "name": "Central",
+        "countryCode": "SB",
+        "countryId": 204
+    },
+    {
+        "id": 3472,
+        "code": "CH",
+        "name": "Choiseul",
+        "countryCode": "SB",
+        "countryId": 204
+    },
+    {
+        "id": 3473,
+        "code": "CT",
+        "name": "Capital Territory (Honiara)",
+        "countryCode": "SB",
+        "countryId": 204
+    },
+    {
+        "id": 3474,
+        "code": "GU",
+        "name": "Guadalcanal",
+        "countryCode": "SB",
+        "countryId": 204
+    },
+    {
+        "id": 3475,
+        "code": "IS",
+        "name": "Isabel",
+        "countryCode": "SB",
+        "countryId": 204
+    },
+    {
+        "id": 3476,
+        "code": "MK",
+        "name": "Makira-Ulawa",
+        "countryCode": "SB",
+        "countryId": 204
+    },
+    {
+        "id": 3477,
+        "code": "ML",
+        "name": "Malaita",
+        "countryCode": "SB",
+        "countryId": 204
+    },
+    {
+        "id": 3478,
+        "code": "RB",
+        "name": "Rennell and Bellona",
+        "countryCode": "SB",
+        "countryId": 204
+    },
+    {
+        "id": 3479,
+        "code": "TE",
+        "name": "Temotu",
+        "countryCode": "SB",
+        "countryId": 204
+    },
+    {
+        "id": 3480,
+        "code": "WE",
+        "name": "Western",
+        "countryCode": "SB",
+        "countryId": 204
+    },
+    {
+        "id": 3481,
+        "code": "AW",
+        "name": "Awdal",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3482,
+        "code": "BK",
+        "name": "Bakool",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3483,
+        "code": "BN",
+        "name": "Banaadir",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3484,
+        "code": "BR",
+        "name": "Bari",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3485,
+        "code": "BY",
+        "name": "Bay",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3486,
+        "code": "GA",
+        "name": "Galguduud",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3487,
+        "code": "GE",
+        "name": "Gedo",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3488,
+        "code": "HI",
+        "name": "Hiiraan",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3489,
+        "code": "JD",
+        "name": "Jubbada Dhexe",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3490,
+        "code": "JH",
+        "name": "Jubbada Hoose",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3491,
+        "code": "MU",
+        "name": "Mudug",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3492,
+        "code": "NU",
+        "name": "Nugaal",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3493,
+        "code": "SA",
+        "name": "Sanaag",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3494,
+        "code": "SD",
+        "name": "Shabeellaha Dhexe",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3495,
+        "code": "SH",
+        "name": "Shabeellaha Hoose",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3496,
+        "code": "SO",
+        "name": "Sool",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3497,
+        "code": "TO",
+        "name": "Togdheer",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3498,
+        "code": "WO",
+        "name": "Woqooyi Galbeed",
+        "countryCode": "SO",
+        "countryId": 205
+    },
+    {
+        "id": 3499,
+        "code": "EC",
+        "name": "Eastern Cape",
+        "countryCode": "ZA",
+        "countryId": 206
+    },
+    {
+        "id": 3500,
+        "code": "FS",
+        "name": "Free State",
+        "countryCode": "ZA",
+        "countryId": 206
+    },
+    {
+        "id": 3501,
+        "code": "GT",
+        "name": "Gauteng",
+        "countryCode": "ZA",
+        "countryId": 206
+    },
+    {
+        "id": 3502,
+        "code": "LP",
+        "name": "Limpopo",
+        "countryCode": "ZA",
+        "countryId": 206
+    },
+    {
+        "id": 3503,
+        "code": "MP",
+        "name": "Mpumalanga",
+        "countryCode": "ZA",
+        "countryId": 206
+    },
+    {
+        "id": 3504,
+        "code": "NC",
+        "name": "Northern Cape",
+        "countryCode": "ZA",
+        "countryId": 206
+    },
+    {
+        "id": 3505,
+        "code": "NL",
+        "name": "Kwazulu-Natal",
+        "countryCode": "ZA",
+        "countryId": 206
+    },
+    {
+        "id": 3506,
+        "code": "NW",
+        "name": "North-West",
+        "countryCode": "ZA",
+        "countryId": 206
+    },
+    {
+        "id": 3507,
+        "code": "WC",
+        "name": "Western Cape",
+        "countryCode": "ZA",
+        "countryId": 206
+    },
+    {
+        "id": 3508,
+        "code": "BN",
+        "name": "Northern Bahr el-Ghazal",
+        "countryCode": "SS",
+        "countryId": 208
+    },
+    {
+        "id": 3509,
+        "code": "BW",
+        "name": "Western Bahr el-Ghazal",
+        "countryCode": "SS",
+        "countryId": 208
+    },
+    {
+        "id": 3510,
+        "code": "EC",
+        "name": "Central Equatoria",
+        "countryCode": "SS",
+        "countryId": 208
+    },
+    {
+        "id": 3511,
+        "code": "EE",
+        "name": "Eastern Equatoria",
+        "countryCode": "SS",
+        "countryId": 208
+    },
+    {
+        "id": 3512,
+        "code": "EW",
+        "name": "Western Equatoria",
+        "countryCode": "SS",
+        "countryId": 208
+    },
+    {
+        "id": 3513,
+        "code": "JG",
+        "name": "Jonglei",
+        "countryCode": "SS",
+        "countryId": 208
+    },
+    {
+        "id": 3514,
+        "code": "LK",
+        "name": "Lakes",
+        "countryCode": "SS",
+        "countryId": 208
+    },
+    {
+        "id": 3515,
+        "code": "NU",
+        "name": "Upper Nile",
+        "countryCode": "SS",
+        "countryId": 208
+    },
+    {
+        "id": 3516,
+        "code": "UY",
+        "name": "Unity",
+        "countryCode": "SS",
+        "countryId": 208
+    },
+    {
+        "id": 3517,
+        "code": "WR",
+        "name": "Warrap",
+        "countryCode": "SS",
+        "countryId": 208
+    },
+    {
+        "id": 3518,
+        "code": "A",
+        "name": "Alicante \/ Alacant",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3519,
+        "code": "AB",
+        "name": "Albacete",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3520,
+        "code": "AL",
+        "name": "Almería",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3521,
+        "code": "AV",
+        "name": "Ávila",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3522,
+        "code": "B",
+        "name": "Barcelona  [Barcelona]",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3523,
+        "code": "BA",
+        "name": "Badajoz",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3524,
+        "code": "BI",
+        "name": "Vizcaya \/ Biskaia",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3525,
+        "code": "BU",
+        "name": "Burgos",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3526,
+        "code": "C",
+        "name": "A Coruña  [La Coruña]",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3527,
+        "code": "CA",
+        "name": "Cádiz",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3528,
+        "code": "CC",
+        "name": "Cáceres",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3529,
+        "code": "CE",
+        "name": "Ceuta",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3530,
+        "code": "CO",
+        "name": "Córdoba",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3531,
+        "code": "CR",
+        "name": "Ciudad Real",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3532,
+        "code": "CS",
+        "name": "Castellón \/ Castelló",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3533,
+        "code": "CU",
+        "name": "Cuenca",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3534,
+        "code": "GC",
+        "name": "Las Palmas",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3535,
+        "code": "GI",
+        "name": "Girona  [Gerona]",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3536,
+        "code": "GR",
+        "name": "Granada",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3537,
+        "code": "GU",
+        "name": "Guadalajara",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3538,
+        "code": "H",
+        "name": "Huelva",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3539,
+        "code": "HU",
+        "name": "Huesca",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3540,
+        "code": "J",
+        "name": "Jaén",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3541,
+        "code": "L",
+        "name": "Lleida  [Lérida]",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3542,
+        "code": "LE",
+        "name": "León",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3543,
+        "code": "LO",
+        "name": "La Rioja",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3544,
+        "code": "LU",
+        "name": "Lugo  [Lugo]",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3545,
+        "code": "M",
+        "name": "Madrid",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3546,
+        "code": "MA",
+        "name": "Málaga",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3547,
+        "code": "ML",
+        "name": "Melilla",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3548,
+        "code": "MU",
+        "name": "Murcia",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3549,
+        "code": "NA",
+        "name": "Navarra \/ Nafarroa",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3550,
+        "code": "O",
+        "name": "Asturias",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3551,
+        "code": "OR",
+        "name": "Ourense  [Orense]",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3552,
+        "code": "P",
+        "name": "Palencia",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3553,
+        "code": "PM",
+        "name": "Balears  [Baleares]",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3554,
+        "code": "PO",
+        "name": "Pontevedra  [Pontevedra]",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3555,
+        "code": "S",
+        "name": "Cantabria",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3556,
+        "code": "SA",
+        "name": "Salamanca",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3557,
+        "code": "SE",
+        "name": "Sevilla",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3558,
+        "code": "SG",
+        "name": "Segovia",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3559,
+        "code": "SO",
+        "name": "Soria",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3560,
+        "code": "SS",
+        "name": "Guipúzcoa \/ Gipuzkoa",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3561,
+        "code": "T",
+        "name": "Tarragona  [Tarragona]",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3562,
+        "code": "TE",
+        "name": "Teruel",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3563,
+        "code": "TF",
+        "name": "Santa Cruz de Tenerife",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3564,
+        "code": "TO",
+        "name": "Toledo",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3565,
+        "code": "V",
+        "name": "Valencia \/ València",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3566,
+        "code": "VA",
+        "name": "Valladolid",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3567,
+        "code": "VI",
+        "name": "Álava \/ Araba",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3568,
+        "code": "Z",
+        "name": "Zaragoza",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3569,
+        "code": "ZA",
+        "name": "Zamora",
+        "countryCode": "ES",
+        "countryId": 209
+    },
+    {
+        "id": 3570,
+        "code": "1",
+        "name": "Basnāhira paḷāta",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3571,
+        "code": "11",
+        "name": "Kŏḷamba",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3572,
+        "code": "12",
+        "name": "Gampaha",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3573,
+        "code": "13",
+        "name": "Kaḷutara",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3574,
+        "code": "2",
+        "name": "Madhyama paḷāta",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3575,
+        "code": "21",
+        "name": "Mahanuvara",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3576,
+        "code": "22",
+        "name": "Mātale",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3577,
+        "code": "23",
+        "name": "Nuvara Ĕliya",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3578,
+        "code": "3",
+        "name": "Dakuṇu paḷāta",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3579,
+        "code": "31",
+        "name": "Gālla",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3580,
+        "code": "32",
+        "name": "Mātara",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3581,
+        "code": "33",
+        "name": "Hambantŏṭa",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3582,
+        "code": "4",
+        "name": "Uturu paḷāta",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3583,
+        "code": "41",
+        "name": "Yāpanaya",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3584,
+        "code": "42",
+        "name": "Kilinŏchchi",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3585,
+        "code": "43",
+        "name": "Mannārama",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3586,
+        "code": "44",
+        "name": "Vavuniyāva",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3587,
+        "code": "45",
+        "name": "Mulativ",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3588,
+        "code": "5",
+        "name": "Næ̆gĕnahira paḷāta",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3589,
+        "code": "51",
+        "name": "Maḍakalapuva",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3590,
+        "code": "52",
+        "name": "Ampāra",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3591,
+        "code": "53",
+        "name": "Trikuṇāmalaya",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3592,
+        "code": "6",
+        "name": "Vayamba paḷāta",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3593,
+        "code": "61",
+        "name": "Kuruṇægala",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3594,
+        "code": "62",
+        "name": "Puttalama",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3595,
+        "code": "7",
+        "name": "Uturumæ̆da paḷāta",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3596,
+        "code": "71",
+        "name": "Anurādhapura",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3597,
+        "code": "72",
+        "name": "Pŏḷŏnnaruva",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3598,
+        "code": "8",
+        "name": "Ūva paḷāta",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3599,
+        "code": "81",
+        "name": "Badulla",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3600,
+        "code": "82",
+        "name": "Mŏṇarāgala",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3601,
+        "code": "9",
+        "name": "Sabaragamuva paḷāta",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3602,
+        "code": "91",
+        "name": "Ratnapura",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3603,
+        "code": "92",
+        "name": "Kægalla",
+        "countryCode": "LK",
+        "countryId": 210
+    },
+    {
+        "id": 3604,
+        "code": "DC",
+        "name": "Central Darfur",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3605,
+        "code": "DE",
+        "name": "East Darfur",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3606,
+        "code": "DN",
+        "name": "North Darfur",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3607,
+        "code": "DS",
+        "name": "South Darfur",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3608,
+        "code": "DW",
+        "name": "West Darfur",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3609,
+        "code": "GD",
+        "name": "Gedaref",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3610,
+        "code": "GZ",
+        "name": "Gezira",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3611,
+        "code": "KA",
+        "name": "Kassala",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3612,
+        "code": "KH",
+        "name": "Khartoum",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3613,
+        "code": "KN10",
+        "name": "North Kordofan",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3614,
+        "code": "KS",
+        "name": "South Kordofan",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3615,
+        "code": "NB",
+        "name": "Blue Nile",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3616,
+        "code": "NO",
+        "name": "Northern",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3617,
+        "code": "NR",
+        "name": "River Nile",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3618,
+        "code": "NW",
+        "name": "White Nile",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3619,
+        "code": "RS",
+        "name": "Red Sea",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3620,
+        "code": "SI",
+        "name": "Sennar",
+        "countryCode": "SD",
+        "countryId": 211
+    },
+    {
+        "id": 3621,
+        "code": "BR",
+        "name": "Brokopondo",
+        "countryCode": "SR",
+        "countryId": 212
+    },
+    {
+        "id": 3622,
+        "code": "CM",
+        "name": "Commewijne",
+        "countryCode": "SR",
+        "countryId": 212
+    },
+    {
+        "id": 3623,
+        "code": "CR",
+        "name": "Coronie",
+        "countryCode": "SR",
+        "countryId": 212
+    },
+    {
+        "id": 3624,
+        "code": "MA",
+        "name": "Marowijne",
+        "countryCode": "SR",
+        "countryId": 212
+    },
+    {
+        "id": 3625,
+        "code": "NI",
+        "name": "Nickerie",
+        "countryCode": "SR",
+        "countryId": 212
+    },
+    {
+        "id": 3626,
+        "code": "PM",
+        "name": "Saramacca",
+        "countryCode": "SR",
+        "countryId": 212
+    },
+    {
+        "id": 3627,
+        "code": "PR",
+        "name": "Para",
+        "countryCode": "SR",
+        "countryId": 212
+    },
+    {
+        "id": 3628,
+        "code": "SA",
+        "name": "Saramacca",
+        "countryCode": "SR",
+        "countryId": 212
+    },
+    {
+        "id": 3629,
+        "code": "SI",
+        "name": "Sipaliwini",
+        "countryCode": "SR",
+        "countryId": 212
+    },
+    {
+        "id": 3630,
+        "code": "WA",
+        "name": "Wanica",
+        "countryCode": "SR",
+        "countryId": 212
+    },
+    {
+        "id": 3631,
+        "code": "HH",
+        "name": "Hhohho",
+        "countryCode": "SZ",
+        "countryId": 214
+    },
+    {
+        "id": 3632,
+        "code": "LU",
+        "name": "Lubombo",
+        "countryCode": "SZ",
+        "countryId": 214
+    },
+    {
+        "id": 3633,
+        "code": "MA",
+        "name": "Manzini",
+        "countryCode": "SZ",
+        "countryId": 214
+    },
+    {
+        "id": 3634,
+        "code": "SH",
+        "name": "Shiselweni",
+        "countryCode": "SZ",
+        "countryId": 214
+    },
+    {
+        "id": 3635,
+        "code": "AB",
+        "name": "Stockholms län[SE-01]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3636,
+        "code": "AC",
+        "name": "Västerbottens län[SE-24]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3637,
+        "code": "BD",
+        "name": "Norrbottens län[SE-25]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3638,
+        "code": "C",
+        "name": "Uppsala län[SE-03]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3639,
+        "code": "D",
+        "name": "Södermanlands län[SE-04]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3640,
+        "code": "E",
+        "name": "Östergötlands län[SE-05]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3641,
+        "code": "F",
+        "name": "Jönköpings län[SE-06]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3642,
+        "code": "G",
+        "name": "Kronoborgs län[SE-07]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3643,
+        "code": "H",
+        "name": "Kalmar län[SE-08]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3644,
+        "code": "I",
+        "name": "Gotlands län[SE-09]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3645,
+        "code": "K",
+        "name": "Blekinge län[SE-10]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3646,
+        "code": "M",
+        "name": "Skåne län[SE-12]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3647,
+        "code": "N",
+        "name": "Hallands län[SE-13]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3648,
+        "code": "O",
+        "name": "Västra Götalands län[SE-14]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3649,
+        "code": "S",
+        "name": "Värmlands län[SE-17]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3650,
+        "code": "T",
+        "name": "Örebro län[SE-18]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3651,
+        "code": "U",
+        "name": "Västmanlands län[SE-19]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3652,
+        "code": "W",
+        "name": "Dalarnes län[SE-20]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3653,
+        "code": "X",
+        "name": "Gävleborgs län[SE-21]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3654,
+        "code": "Y",
+        "name": "Västernorrlands län[SE-22]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3655,
+        "code": "Z",
+        "name": "Jämtlands län[SE-23]",
+        "countryCode": "SE",
+        "countryId": 215
+    },
+    {
+        "id": 3656,
+        "code": "AG",
+        "name": "Aargau (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3657,
+        "code": "AI",
+        "name": "Appenzell Innerrhoden (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3658,
+        "code": "AR",
+        "name": "Appenzell Ausserrhoden (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3659,
+        "code": "BE",
+        "name": "Bern (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3660,
+        "code": "BL",
+        "name": "Basel-Landschaft (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3661,
+        "code": "BS",
+        "name": "Basel-Stadt (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3662,
+        "code": "FR",
+        "name": "Fribourg (fr)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3663,
+        "code": "GE",
+        "name": "Genève (fr)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3664,
+        "code": "GL",
+        "name": "Glarus (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3665,
+        "code": "GR",
+        "name": "Graubünden (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3666,
+        "code": "JU",
+        "name": "Jura (fr)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3667,
+        "code": "LU",
+        "name": "Luzern (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3668,
+        "code": "NE",
+        "name": "Neuchâtel (fr)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3669,
+        "code": "NW",
+        "name": "Nidwalden (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3670,
+        "code": "OW",
+        "name": "Obwalden (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3671,
+        "code": "SG",
+        "name": "Sankt Gallen (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3672,
+        "code": "SH",
+        "name": "Schaffhausen (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3673,
+        "code": "SO",
+        "name": "Solothurn (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3674,
+        "code": "SZ",
+        "name": "Schwyz (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3675,
+        "code": "TG",
+        "name": "Thurgau (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3676,
+        "code": "TI",
+        "name": "Ticino (it)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3677,
+        "code": "UR",
+        "name": "Uri (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3678,
+        "code": "VD",
+        "name": "Vaud (fr)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3679,
+        "code": "VS",
+        "name": "Valais (fr)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3680,
+        "code": "ZG",
+        "name": "Zug (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3681,
+        "code": "ZH",
+        "name": "Zürich (de)",
+        "countryCode": "CH",
+        "countryId": 216
+    },
+    {
+        "id": 3682,
+        "code": "DI",
+        "name": "Dimashq",
+        "countryCode": "SY",
+        "countryId": 217
+    },
+    {
+        "id": 3683,
+        "code": "DR",
+        "name": "Dar'ā",
+        "countryCode": "SY",
+        "countryId": 217
+    },
+    {
+        "id": 3684,
+        "code": "DY",
+        "name": "Dayr az Zawr",
+        "countryCode": "SY",
+        "countryId": 217
+    },
+    {
+        "id": 3685,
+        "code": "HA",
+        "name": "Al Ḩasakah",
+        "countryCode": "SY",
+        "countryId": 217
+    },
+    {
+        "id": 3686,
+        "code": "HI",
+        "name": "Ḩimş",
+        "countryCode": "SY",
+        "countryId": 217
+    },
+    {
+        "id": 3687,
+        "code": "HL",
+        "name": "Ḩalab",
+        "countryCode": "SY",
+        "countryId": 217
+    },
+    {
+        "id": 3688,
+        "code": "HM",
+        "name": "Ḩamāh",
+        "countryCode": "SY",
+        "countryId": 217
+    },
+    {
+        "id": 3689,
+        "code": "ID",
+        "name": "Idlib",
+        "countryCode": "SY",
+        "countryId": 217
+    },
+    {
+        "id": 3690,
+        "code": "LA",
+        "name": "Al Lādhiqīyah",
+        "countryCode": "SY",
+        "countryId": 217
+    },
+    {
+        "id": 3691,
+        "code": "Qu",
+        "name": "Al Qunayţirah",
+        "countryCode": "SY",
+        "countryId": 217
+    },
+    {
+        "id": 3692,
+        "code": "RA",
+        "name": "Ar Raqqah",
+        "countryCode": "SY",
+        "countryId": 217
+    },
+    {
+        "id": 3693,
+        "code": "RD",
+        "name": "Rif Dimashq",
+        "countryCode": "SY",
+        "countryId": 217
+    },
+    {
+        "id": 3694,
+        "code": "SU",
+        "name": "As Suwaydā'",
+        "countryCode": "SY",
+        "countryId": 217
+    },
+    {
+        "id": 3695,
+        "code": "TA",
+        "name": "Ţarţūs",
+        "countryCode": "SY",
+        "countryId": 217
+    },
+    {
+        "id": 3696,
+        "code": "CHA",
+        "name": "Changhua",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3697,
+        "code": "CYQ",
+        "name": "Chiayi",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3698,
+        "code": "HSZQ",
+        "name": "Hsinchu",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3699,
+        "code": "HUA",
+        "name": "Hualien",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3700,
+        "code": "ILA",
+        "name": "Ilan",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3701,
+        "code": "KHQ",
+        "name": "Kaohsiung",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3702,
+        "code": "MIA",
+        "name": "Miaoli",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3703,
+        "code": "NAN",
+        "name": "Nantou",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3704,
+        "code": "PEN",
+        "name": "Penghu",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3705,
+        "code": "PIF",
+        "name": "Pingtung",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3706,
+        "code": "TAO",
+        "name": "Taoyuan",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3707,
+        "code": "TNQ",
+        "name": "Tainan",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3708,
+        "code": "TPQ",
+        "name": "Taipei",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3709,
+        "code": "TTT",
+        "name": "Taitung",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3710,
+        "code": "TXQ",
+        "name": "Taichung",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3711,
+        "code": "YUN",
+        "name": "Yunlin",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3712,
+        "code": "CYI",
+        "name": "Chiayi",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3713,
+        "code": "HSZ",
+        "name": "Hsinchu",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3714,
+        "code": "KEE",
+        "name": "Keelung",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3715,
+        "code": "TNN",
+        "name": "Tainan",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3716,
+        "code": "TXG",
+        "name": "Taichung",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3717,
+        "code": "KHH",
+        "name": "Kaohsiung",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3718,
+        "code": "TPE",
+        "name": "Taipei",
+        "countryCode": "TW",
+        "countryId": 218
+    },
+    {
+        "id": 3719,
+        "code": "GB",
+        "name": "Gorno-Badakhshan",
+        "countryCode": "TJ",
+        "countryId": 219
+    },
+    {
+        "id": 3720,
+        "code": "KT",
+        "name": "Khatlon",
+        "countryCode": "TJ",
+        "countryId": 219
+    },
+    {
+        "id": 3721,
+        "code": "SU",
+        "name": "Sughd",
+        "countryCode": "TJ",
+        "countryId": 219
+    },
+    {
+        "id": 3722,
+        "code": "01",
+        "name": "Arusha",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3723,
+        "code": "02",
+        "name": "Dar es Salaam",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3724,
+        "code": "03",
+        "name": "Dodoma",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3725,
+        "code": "04",
+        "name": "Iringa",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3726,
+        "code": "05",
+        "name": "Kagera",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3727,
+        "code": "06",
+        "name": "Kaskazini Pemba",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3728,
+        "code": "07",
+        "name": "Kaskazini Unguja",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3729,
+        "code": "08",
+        "name": "Kigoma",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3730,
+        "code": "09",
+        "name": "Kilimanjaro",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3731,
+        "code": "10",
+        "name": "Kusini Pemba",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3732,
+        "code": "11",
+        "name": "Kusini Unguja",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3733,
+        "code": "12",
+        "name": "Lindi",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3734,
+        "code": "13",
+        "name": "Mara",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3735,
+        "code": "14",
+        "name": "Mbeya",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3736,
+        "code": "15",
+        "name": "Mjini Magharibi",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3737,
+        "code": "16",
+        "name": "Morogoro",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3738,
+        "code": "17",
+        "name": "Mtwara",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3739,
+        "code": "18",
+        "name": "Mwanza",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3740,
+        "code": "19",
+        "name": "Pwani",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3741,
+        "code": "20",
+        "name": "Rukwa",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3742,
+        "code": "21",
+        "name": "Ruvuma",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3743,
+        "code": "22",
+        "name": "Shinyanga",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3744,
+        "code": "23",
+        "name": "Singida",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3745,
+        "code": "24",
+        "name": "Tabora",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3746,
+        "code": "25",
+        "name": "Tanga",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3747,
+        "code": "26",
+        "name": "Manyara",
+        "countryCode": "TZ",
+        "countryId": 220
+    },
+    {
+        "id": 3748,
+        "code": "10",
+        "name": "Krung Thep Maha Nakhon [Bangkok]",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3749,
+        "code": "11",
+        "name": "Samut Prakan",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3750,
+        "code": "12",
+        "name": "Nonthaburi",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3751,
+        "code": "13",
+        "name": "Pathum Thani",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3752,
+        "code": "14",
+        "name": "Phra Nakhon Si Ayutthaya",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3753,
+        "code": "15",
+        "name": "Ang Thong",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3754,
+        "code": "16",
+        "name": "Lop Buri",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3755,
+        "code": "17",
+        "name": "Sing Buri",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3756,
+        "code": "18",
+        "name": "Chai Nat",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3757,
+        "code": "19",
+        "name": "Saraburi",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3758,
+        "code": "20",
+        "name": "Chon Buri",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3759,
+        "code": "21",
+        "name": "Rayong",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3760,
+        "code": "22",
+        "name": "Chanthaburi",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3761,
+        "code": "23",
+        "name": "Trat",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3762,
+        "code": "24",
+        "name": "Chachoengsao",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3763,
+        "code": "25",
+        "name": "Prachin Buri",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3764,
+        "code": "26",
+        "name": "Nakhon Nayok",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3765,
+        "code": "27",
+        "name": "Sa Kaeo",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3766,
+        "code": "30",
+        "name": "Nakhon Ratchasima",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3767,
+        "code": "31",
+        "name": "Buri Ram",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3768,
+        "code": "32",
+        "name": "Surin",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3769,
+        "code": "33",
+        "name": "Si Sa Ket",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3770,
+        "code": "34",
+        "name": "Ubon Ratchathani",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3771,
+        "code": "35",
+        "name": "Yasothon",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3772,
+        "code": "36",
+        "name": "Chaiyaphum",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3773,
+        "code": "37",
+        "name": "Amnat Charoen",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3774,
+        "code": "39",
+        "name": "Nong Bua Lam Phu",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3775,
+        "code": "40",
+        "name": "Khon Kaen",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3776,
+        "code": "41",
+        "name": "Udon Thani",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3777,
+        "code": "42",
+        "name": "Loei",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3778,
+        "code": "43",
+        "name": "Nong Khai",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3779,
+        "code": "44",
+        "name": "Maha Sarakham",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3780,
+        "code": "45",
+        "name": "Roi Et",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3781,
+        "code": "46",
+        "name": "Kalasin",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3782,
+        "code": "47",
+        "name": "Sakon Nakhon",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3783,
+        "code": "48",
+        "name": "Nakhon Phanom",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3784,
+        "code": "49",
+        "name": "Mukdahan",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3785,
+        "code": "50",
+        "name": "Chiang Mai",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3786,
+        "code": "51",
+        "name": "Lamphun",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3787,
+        "code": "52",
+        "name": "Lampang",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3788,
+        "code": "53",
+        "name": "Uttaradit",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3789,
+        "code": "54",
+        "name": "Phrae",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3790,
+        "code": "55",
+        "name": "Nan",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3791,
+        "code": "56",
+        "name": "Phayao",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3792,
+        "code": "57",
+        "name": "Chiang Rai",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3793,
+        "code": "58",
+        "name": "Mae Hong Son",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3794,
+        "code": "60",
+        "name": "Nakhon Sawan",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3795,
+        "code": "61",
+        "name": "Uthai Thani",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3796,
+        "code": "62",
+        "name": "Kamphaeng Phet",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3797,
+        "code": "63",
+        "name": "Tak",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3798,
+        "code": "64",
+        "name": "Sukhothai",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3799,
+        "code": "65",
+        "name": "Phitsanulok",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3800,
+        "code": "66",
+        "name": "Phichit",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3801,
+        "code": "67",
+        "name": "Phetchabun",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3802,
+        "code": "70",
+        "name": "Ratchaburi",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3803,
+        "code": "71",
+        "name": "Kanchanaburi",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3804,
+        "code": "72",
+        "name": "Suphan Buri",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3805,
+        "code": "73",
+        "name": "Nakhon Pathom",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3806,
+        "code": "74",
+        "name": "Samut Sakhon",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3807,
+        "code": "75",
+        "name": "Samut Songkhram",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3808,
+        "code": "76",
+        "name": "Phetchaburi",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3809,
+        "code": "77",
+        "name": "Prachuap Khiri Khan",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3810,
+        "code": "80",
+        "name": "Nakhon Si Thammarat",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3811,
+        "code": "81",
+        "name": "Krabi",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3812,
+        "code": "82",
+        "name": "Phangnga",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3813,
+        "code": "83",
+        "name": "Phuket",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3814,
+        "code": "84",
+        "name": "Surat Thani",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3815,
+        "code": "85",
+        "name": "Ranong",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3816,
+        "code": "86",
+        "name": "Chumphon",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3817,
+        "code": "90",
+        "name": "Songkhla",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3818,
+        "code": "91",
+        "name": "Satun",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3819,
+        "code": "92",
+        "name": "Trang",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3820,
+        "code": "93",
+        "name": "Phatthalung",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3821,
+        "code": "94",
+        "name": "Pattani",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3822,
+        "code": "95",
+        "name": "Yala",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3823,
+        "code": "96",
+        "name": "Narathiwat",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3824,
+        "code": "S",
+        "name": "Phatthaya",
+        "countryCode": "TH",
+        "countryId": 221
+    },
+    {
+        "id": 3825,
+        "code": "AL",
+        "name": "Aileu",
+        "countryCode": "TL",
+        "countryId": 222
+    },
+    {
+        "id": 3826,
+        "code": "AN",
+        "name": "Ainaro",
+        "countryCode": "TL",
+        "countryId": 222
+    },
+    {
+        "id": 3827,
+        "code": "BA",
+        "name": "Baucau",
+        "countryCode": "TL",
+        "countryId": 222
+    },
+    {
+        "id": 3828,
+        "code": "BO",
+        "name": "Bobonaro",
+        "countryCode": "TL",
+        "countryId": 222
+    },
+    {
+        "id": 3829,
+        "code": "CO",
+        "name": "Cova Lima",
+        "countryCode": "TL",
+        "countryId": 222
+    },
+    {
+        "id": 3830,
+        "code": "DI",
+        "name": "Dili",
+        "countryCode": "TL",
+        "countryId": 222
+    },
+    {
+        "id": 3831,
+        "code": "ER",
+        "name": "Ermera",
+        "countryCode": "TL",
+        "countryId": 222
+    },
+    {
+        "id": 3832,
+        "code": "LA",
+        "name": "Lautem",
+        "countryCode": "TL",
+        "countryId": 222
+    },
+    {
+        "id": 3833,
+        "code": "LI",
+        "name": "Liquiça",
+        "countryCode": "TL",
+        "countryId": 222
+    },
+    {
+        "id": 3834,
+        "code": "MF",
+        "name": "Manufahi",
+        "countryCode": "TL",
+        "countryId": 222
+    },
+    {
+        "id": 3835,
+        "code": "MT",
+        "name": "Manatuto",
+        "countryCode": "TL",
+        "countryId": 222
+    },
+    {
+        "id": 3836,
+        "code": "OE",
+        "name": "Oecussi",
+        "countryCode": "TL",
+        "countryId": 222
+    },
+    {
+        "id": 3837,
+        "code": "VI",
+        "name": "Viqueque",
+        "countryCode": "TL",
+        "countryId": 222
+    },
+    {
+        "id": 3838,
+        "code": "C",
+        "name": "Centre",
+        "countryCode": "TG",
+        "countryId": 223
+    },
+    {
+        "id": 3839,
+        "code": "K",
+        "name": "Kara",
+        "countryCode": "TG",
+        "countryId": 223
+    },
+    {
+        "id": 3840,
+        "code": "M",
+        "name": "Maritime (Région)",
+        "countryCode": "TG",
+        "countryId": 223
+    },
+    {
+        "id": 3841,
+        "code": "P",
+        "name": "Plateaux",
+        "countryCode": "TG",
+        "countryId": 223
+    },
+    {
+        "id": 3842,
+        "code": "S",
+        "name": "Savannes",
+        "countryCode": "TG",
+        "countryId": 223
+    },
+    {
+        "id": 3843,
+        "code": "01",
+        "name": "'Eua",
+        "countryCode": "TO",
+        "countryId": 225
+    },
+    {
+        "id": 3844,
+        "code": "02",
+        "name": "Ha'apai",
+        "countryCode": "TO",
+        "countryId": 225
+    },
+    {
+        "id": 3845,
+        "code": "03",
+        "name": "Niuas",
+        "countryCode": "TO",
+        "countryId": 225
+    },
+    {
+        "id": 3846,
+        "code": "04",
+        "name": "Tongatapu",
+        "countryCode": "TO",
+        "countryId": 225
+    },
+    {
+        "id": 3847,
+        "code": "05",
+        "name": "Vava'u",
+        "countryCode": "TO",
+        "countryId": 225
+    },
+    {
+        "id": 3848,
+        "code": "ARI",
+        "name": "Arima",
+        "countryCode": "TT",
+        "countryId": 226
+    },
+    {
+        "id": 3849,
+        "code": "CHA",
+        "name": "Chaguanas",
+        "countryCode": "TT",
+        "countryId": 226
+    },
+    {
+        "id": 3850,
+        "code": "CTT",
+        "name": "Couva-Tabaquite-Talparo",
+        "countryCode": "TT",
+        "countryId": 226
+    },
+    {
+        "id": 3851,
+        "code": "DMN",
+        "name": "Diego Martin",
+        "countryCode": "TT",
+        "countryId": 226
+    },
+    {
+        "id": 3852,
+        "code": "ETO",
+        "name": "Eastern Tobago",
+        "countryCode": "TT",
+        "countryId": 226
+    },
+    {
+        "id": 3853,
+        "code": "PED",
+        "name": "Penal-Debe",
+        "countryCode": "TT",
+        "countryId": 226
+    },
+    {
+        "id": 3854,
+        "code": "POS",
+        "name": "Port of Spain",
+        "countryCode": "TT",
+        "countryId": 226
+    },
+    {
+        "id": 3855,
+        "code": "PRT",
+        "name": "Princes Town",
+        "countryCode": "TT",
+        "countryId": 226
+    },
+    {
+        "id": 3856,
+        "code": "PTF",
+        "name": "Point Fortin",
+        "countryCode": "TT",
+        "countryId": 226
+    },
+    {
+        "id": 3857,
+        "code": "RCM",
+        "name": "Rio Claro-Mayaro",
+        "countryCode": "TT",
+        "countryId": 226
+    },
+    {
+        "id": 3858,
+        "code": "SFO",
+        "name": "San Fernando",
+        "countryCode": "TT",
+        "countryId": 226
+    },
+    {
+        "id": 3859,
+        "code": "SGE",
+        "name": "Sangre Grande",
+        "countryCode": "TT",
+        "countryId": 226
+    },
+    {
+        "id": 3860,
+        "code": "SIP",
+        "name": "Siparia",
+        "countryCode": "TT",
+        "countryId": 226
+    },
+    {
+        "id": 3861,
+        "code": "SJL",
+        "name": "San Juan-Laventille",
+        "countryCode": "TT",
+        "countryId": 226
+    },
+    {
+        "id": 3862,
+        "code": "TUP",
+        "name": "Tunapuna-Piarco",
+        "countryCode": "TT",
+        "countryId": 226
+    },
+    {
+        "id": 3863,
+        "code": "WTO",
+        "name": "Western Tobago",
+        "countryCode": "TT",
+        "countryId": 226
+    },
+    {
+        "id": 3864,
+        "code": "11",
+        "name": "Tunis",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3865,
+        "code": "12",
+        "name": "L'Ariana",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3866,
+        "code": "13",
+        "name": "Ben Arous",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3867,
+        "code": "14",
+        "name": "La Manouba",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3868,
+        "code": "21",
+        "name": "Nabeul",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3869,
+        "code": "22",
+        "name": "Zaghouan",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3870,
+        "code": "23",
+        "name": "Bizerte",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3871,
+        "code": "31",
+        "name": "Béja",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3872,
+        "code": "32",
+        "name": "Jendouba",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3873,
+        "code": "33",
+        "name": "Le Kef",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3874,
+        "code": "34",
+        "name": "Siliana",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3875,
+        "code": "41",
+        "name": "Kairouan",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3876,
+        "code": "42",
+        "name": "Kasserine",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3877,
+        "code": "43",
+        "name": "Sidi Bouzid",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3878,
+        "code": "51",
+        "name": "Sousse",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3879,
+        "code": "52",
+        "name": "Monastir",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3880,
+        "code": "53",
+        "name": "Mahdia",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3881,
+        "code": "61",
+        "name": "Sfax",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3882,
+        "code": "71",
+        "name": "Gafsa",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3883,
+        "code": "72",
+        "name": "Tozeur",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3884,
+        "code": "73",
+        "name": "Kebili",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3885,
+        "code": "81",
+        "name": "Gabès",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3886,
+        "code": "82",
+        "name": "Medenine",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3887,
+        "code": "83",
+        "name": "Tataouine",
+        "countryCode": "TN",
+        "countryId": 227
+    },
+    {
+        "id": 3888,
+        "code": "01",
+        "name": "Adana",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3889,
+        "code": "02",
+        "name": "Adiyaman",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3890,
+        "code": "03",
+        "name": "Afyon",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3891,
+        "code": "04",
+        "name": "Ağrı",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3892,
+        "code": "05",
+        "name": "Amasya",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3893,
+        "code": "06",
+        "name": "Ankara",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3894,
+        "code": "07",
+        "name": "Antalya",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3895,
+        "code": "08",
+        "name": "Artvin",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3896,
+        "code": "09",
+        "name": "Aydin",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3897,
+        "code": "10",
+        "name": "Balikesir",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3898,
+        "code": "11",
+        "name": "Bilecik",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3899,
+        "code": "12",
+        "name": "Bingöl",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3900,
+        "code": "13",
+        "name": "Bitlis",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3901,
+        "code": "14",
+        "name": "Bolu",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3902,
+        "code": "15",
+        "name": "Burdur",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3903,
+        "code": "16",
+        "name": "Bursa",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3904,
+        "code": "17",
+        "name": "Çanakkale",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3905,
+        "code": "18",
+        "name": "Çankırı",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3906,
+        "code": "19",
+        "name": "Çorum",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3907,
+        "code": "20",
+        "name": "Denizli",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3908,
+        "code": "21",
+        "name": "Diyarbakir",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3909,
+        "code": "22",
+        "name": "Edirne",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3910,
+        "code": "23",
+        "name": "Elazığ",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3911,
+        "code": "24",
+        "name": "Erzincan",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3912,
+        "code": "25",
+        "name": "Erzurum",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3913,
+        "code": "26",
+        "name": "Eskişehir",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3914,
+        "code": "27",
+        "name": "Gaziantep",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3915,
+        "code": "28",
+        "name": "Giresun",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3916,
+        "code": "29",
+        "name": "Gümüşhane",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3917,
+        "code": "30",
+        "name": "Hakkâri",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3918,
+        "code": "31",
+        "name": "Hatay",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3919,
+        "code": "32",
+        "name": "Isparta",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3920,
+        "code": "33",
+        "name": "Icel",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3921,
+        "code": "34",
+        "name": "Istanbul",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3922,
+        "code": "35",
+        "name": "Izmir",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3923,
+        "code": "36",
+        "name": "Kars",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3924,
+        "code": "37",
+        "name": "Kastamonu",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3925,
+        "code": "38",
+        "name": "Kayseri",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3926,
+        "code": "39",
+        "name": "Kirklareli",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3927,
+        "code": "40",
+        "name": "Kırşehir",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3928,
+        "code": "41",
+        "name": "Kocaeli",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3929,
+        "code": "42",
+        "name": "Konya",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3930,
+        "code": "43",
+        "name": "Kütahya",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3931,
+        "code": "44",
+        "name": "Malatya",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3932,
+        "code": "45",
+        "name": "Manisa",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3933,
+        "code": "46",
+        "name": "Kahramanmaraş",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3934,
+        "code": "47",
+        "name": "Mardin",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3935,
+        "code": "48",
+        "name": "Muğla",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3936,
+        "code": "49",
+        "name": "Muş",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3937,
+        "code": "50",
+        "name": "Nevşehir",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3938,
+        "code": "51",
+        "name": "Niğde",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3939,
+        "code": "52",
+        "name": "Ordu",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3940,
+        "code": "53",
+        "name": "Rize",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3941,
+        "code": "54",
+        "name": "Sakarya",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3942,
+        "code": "55",
+        "name": "Samsun",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3943,
+        "code": "56",
+        "name": "Siirt",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3944,
+        "code": "57",
+        "name": "Sinop",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3945,
+        "code": "58",
+        "name": "Sivas",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3946,
+        "code": "59",
+        "name": "Tekirdağ",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3947,
+        "code": "60",
+        "name": "Tokat",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3948,
+        "code": "61",
+        "name": "Trabzon",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3949,
+        "code": "62",
+        "name": "Tunceli",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3950,
+        "code": "63",
+        "name": "Şanlıurfa",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3951,
+        "code": "64",
+        "name": "Uşak",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3952,
+        "code": "65",
+        "name": "Van",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3953,
+        "code": "66",
+        "name": "Yozgat",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3954,
+        "code": "67",
+        "name": "Zonguldak",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3955,
+        "code": "68",
+        "name": "Aksaray",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3956,
+        "code": "69",
+        "name": "Bayburt",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3957,
+        "code": "70",
+        "name": "Karaman",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3958,
+        "code": "71",
+        "name": "Kirkkale",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3959,
+        "code": "72",
+        "name": "Batman",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3960,
+        "code": "73",
+        "name": "Şırnak",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3961,
+        "code": "74",
+        "name": "Bartin",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3962,
+        "code": "75",
+        "name": "Ardahan",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3963,
+        "code": "76",
+        "name": "Iğdır",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3964,
+        "code": "77",
+        "name": "Yalova",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3965,
+        "code": "78",
+        "name": "Karabük",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3966,
+        "code": "79",
+        "name": "Kilis",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3967,
+        "code": "80",
+        "name": "Osmaniye",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3968,
+        "code": "81",
+        "name": "Düzce",
+        "countryCode": "TR",
+        "countryId": 228
+    },
+    {
+        "id": 3969,
+        "code": "A",
+        "name": "Ahal",
+        "countryCode": "TM",
+        "countryId": 229
+    },
+    {
+        "id": 3970,
+        "code": "B",
+        "name": "Balkan",
+        "countryCode": "TM",
+        "countryId": 229
+    },
+    {
+        "id": 3971,
+        "code": "D",
+        "name": "Daşoguz",
+        "countryCode": "TM",
+        "countryId": 229
+    },
+    {
+        "id": 3972,
+        "code": "L",
+        "name": "Lebap",
+        "countryCode": "TM",
+        "countryId": 229
+    },
+    {
+        "id": 3973,
+        "code": "M",
+        "name": "Mary",
+        "countryCode": "TM",
+        "countryId": 229
+    },
+    {
+        "id": 3974,
+        "code": "S",
+        "name": "Aşgabat",
+        "countryCode": "TM",
+        "countryId": 229
+    },
+    {
+        "id": 3975,
+        "code": "FUN",
+        "name": "Funafuti",
+        "countryCode": "TV",
+        "countryId": 231
+    },
+    {
+        "id": 3976,
+        "code": "NIT",
+        "name": "Niutao",
+        "countryCode": "TV",
+        "countryId": 231
+    },
+    {
+        "id": 3977,
+        "code": "NIU",
+        "name": "Nui",
+        "countryCode": "TV",
+        "countryId": 231
+    },
+    {
+        "id": 3978,
+        "code": "NKF",
+        "name": "Nukufetau",
+        "countryCode": "TV",
+        "countryId": 231
+    },
+    {
+        "id": 3979,
+        "code": "NKL",
+        "name": "Nukulaelae",
+        "countryCode": "TV",
+        "countryId": 231
+    },
+    {
+        "id": 3980,
+        "code": "NMA",
+        "name": "Nanumea",
+        "countryCode": "TV",
+        "countryId": 231
+    },
+    {
+        "id": 3981,
+        "code": "NMG",
+        "name": "Nanumanga",
+        "countryCode": "TV",
+        "countryId": 231
+    },
+    {
+        "id": 3982,
+        "code": "VAI",
+        "name": "Vaitupu",
+        "countryCode": "TV",
+        "countryId": 231
+    },
+    {
+        "id": 3983,
+        "code": "101",
+        "name": "Kalangala",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 3984,
+        "code": "102",
+        "name": "Kampala",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 3985,
+        "code": "103",
+        "name": "Kiboga",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 3986,
+        "code": "104",
+        "name": "Luwero",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 3987,
+        "code": "105",
+        "name": "Masaka",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 3988,
+        "code": "106",
+        "name": "Mpigi",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 3989,
+        "code": "107",
+        "name": "Mubende",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 3990,
+        "code": "108",
+        "name": "Mukono",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 3991,
+        "code": "109",
+        "name": "Nakasongola",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 3992,
+        "code": "110",
+        "name": "Rakai",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 3993,
+        "code": "111",
+        "name": "Sembabule",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 3994,
+        "code": "112",
+        "name": "Kayunga",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 3995,
+        "code": "113",
+        "name": "Wakiso",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 3996,
+        "code": "114",
+        "name": "Mityana",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 3997,
+        "code": "115",
+        "name": "Nakaseke",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 3998,
+        "code": "116",
+        "name": "Lyantonde",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 3999,
+        "code": "201",
+        "name": "Bugiri",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4000,
+        "code": "202",
+        "name": "Busia",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4001,
+        "code": "203",
+        "name": "Iganga",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4002,
+        "code": "204",
+        "name": "Jinja",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4003,
+        "code": "205",
+        "name": "Kamuli",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4004,
+        "code": "206",
+        "name": "Kapchorwa",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4005,
+        "code": "207",
+        "name": "Katakwi",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4006,
+        "code": "208",
+        "name": "Kumi",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4007,
+        "code": "209",
+        "name": "Mbale",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4008,
+        "code": "210",
+        "name": "Pallisa",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4009,
+        "code": "211",
+        "name": "Soroti",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4010,
+        "code": "212",
+        "name": "Tororo",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4011,
+        "code": "213",
+        "name": "Kaberamaido",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4012,
+        "code": "214",
+        "name": "Mayuge",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4013,
+        "code": "215",
+        "name": "Sironko",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4014,
+        "code": "216",
+        "name": "Amuria",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4015,
+        "code": "217",
+        "name": "Budaka",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4016,
+        "code": "218",
+        "name": "Bukwa",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4017,
+        "code": "219",
+        "name": "Butaleja",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4018,
+        "code": "220",
+        "name": "Kaliro",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4019,
+        "code": "221",
+        "name": "Manafwa",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4020,
+        "code": "222",
+        "name": "Namutumba",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4021,
+        "code": "223",
+        "name": "Bududa",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4022,
+        "code": "224",
+        "name": "Bukedea",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4023,
+        "code": "301",
+        "name": "Adjumani",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4024,
+        "code": "302",
+        "name": "Apac",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4025,
+        "code": "303",
+        "name": "Arua",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4026,
+        "code": "304",
+        "name": "Gulu",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4027,
+        "code": "305",
+        "name": "Kitgum",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4028,
+        "code": "306",
+        "name": "Kotido",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4029,
+        "code": "307",
+        "name": "Lira",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4030,
+        "code": "308",
+        "name": "Moroto",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4031,
+        "code": "309",
+        "name": "Moyo",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4032,
+        "code": "310",
+        "name": "Nebbi",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4033,
+        "code": "311",
+        "name": "Nakapiripirit",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4034,
+        "code": "312",
+        "name": "Pader",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4035,
+        "code": "313",
+        "name": "Yumbe",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4036,
+        "code": "314",
+        "name": "Amolatar",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4037,
+        "code": "315",
+        "name": "Kaabong",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4038,
+        "code": "316",
+        "name": "Koboko",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4039,
+        "code": "317",
+        "name": "Abim",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4040,
+        "code": "318",
+        "name": "Dokolo",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4041,
+        "code": "319",
+        "name": "Amuru",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4042,
+        "code": "320",
+        "name": "Maracha",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4043,
+        "code": "321",
+        "name": "Oyam",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4044,
+        "code": "401",
+        "name": "Bundibugyo",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4045,
+        "code": "402",
+        "name": "Bushenyi",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4046,
+        "code": "403",
+        "name": "Hoima",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4047,
+        "code": "404",
+        "name": "Kabale",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4048,
+        "code": "405",
+        "name": "Kabarole",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4049,
+        "code": "406",
+        "name": "Kasese",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4050,
+        "code": "407",
+        "name": "Kibaale",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4051,
+        "code": "408",
+        "name": "Kisoro",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4052,
+        "code": "409",
+        "name": "Masindi",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4053,
+        "code": "410",
+        "name": "Mbarara",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4054,
+        "code": "411",
+        "name": "Ntungamo",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4055,
+        "code": "412",
+        "name": "Rukungiri",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4056,
+        "code": "413",
+        "name": "Kamwenge",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4057,
+        "code": "414",
+        "name": "Kanungu",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4058,
+        "code": "415",
+        "name": "Kyenjojo",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4059,
+        "code": "416",
+        "name": "Ibanda",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4060,
+        "code": "417",
+        "name": "Isingiro",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4061,
+        "code": "418",
+        "name": "Kiruhura",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4062,
+        "code": "419",
+        "name": "Buliisa",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4063,
+        "code": "C",
+        "name": "Central",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4064,
+        "code": "E",
+        "name": "Eastern",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4065,
+        "code": "N",
+        "name": "Northern",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4066,
+        "code": "W",
+        "name": "Western",
+        "countryCode": "UG",
+        "countryId": 232
+    },
+    {
+        "id": 4067,
+        "code": "05",
+        "name": "Vinnyts'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4068,
+        "code": "07",
+        "name": "Volyns'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4069,
+        "code": "09",
+        "name": "Luhans'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4070,
+        "code": "12",
+        "name": "Dnipropetrovs'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4071,
+        "code": "14",
+        "name": "Donets'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4072,
+        "code": "18",
+        "name": "Zhytomyrs'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4073,
+        "code": "21",
+        "name": "Zakarpats'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4074,
+        "code": "23",
+        "name": "Zaporiz'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4075,
+        "code": "26",
+        "name": "Ivano-Frankivs'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4076,
+        "code": "30",
+        "name": "Kyïv",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4077,
+        "code": "32",
+        "name": "Kylvs'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4078,
+        "code": "35",
+        "name": "Kirovohrads'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4079,
+        "code": "40",
+        "name": "Sevastopol'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4080,
+        "code": "46",
+        "name": "L'vivs'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4081,
+        "code": "48",
+        "name": "Mykolaivs'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4082,
+        "code": "51",
+        "name": "Odes'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4083,
+        "code": "53",
+        "name": "Poltavs'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4084,
+        "code": "56",
+        "name": "Rivnens'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4085,
+        "code": "59",
+        "name": "Sums'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4086,
+        "code": "61",
+        "name": "Ternopil's'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4087,
+        "code": "63",
+        "name": "Kharkivs'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4088,
+        "code": "68",
+        "name": "Khmel'nyts'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4089,
+        "code": "71",
+        "name": "Cherkas'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4090,
+        "code": "74",
+        "name": "Chernihivs'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4091,
+        "code": "77",
+        "name": "Chernivets'ka Oblast'",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4092,
+        "code": "43",
+        "name": "Respublika Krym",
+        "countryCode": "UA",
+        "countryId": 233
+    },
+    {
+        "id": 4093,
+        "code": "AJ",
+        "name": "'Ajman",
+        "countryCode": "AE",
+        "countryId": 234
+    },
+    {
+        "id": 4094,
+        "code": "AZ",
+        "name": "Abū Ȥaby[Abu Dhabi]",
+        "countryCode": "AE",
+        "countryId": 234
+    },
+    {
+        "id": 4095,
+        "code": "DU",
+        "name": "Dubayy [Dubai]",
+        "countryCode": "AE",
+        "countryId": 234
+    },
+    {
+        "id": 4096,
+        "code": "FU",
+        "name": "Al Fujayrah",
+        "countryCode": "AE",
+        "countryId": 234
+    },
+    {
+        "id": 4097,
+        "code": "RK",
+        "name": "Rā's al Khaymah",
+        "countryCode": "AE",
+        "countryId": 234
+    },
+    {
+        "id": 4098,
+        "code": "SH",
+        "name": "Ash Shāriqah [Sharjah]",
+        "countryCode": "AE",
+        "countryId": 234
+    },
+    {
+        "id": 4099,
+        "code": "UQ",
+        "name": "Umm al Qaywayn",
+        "countryCode": "AE",
+        "countryId": 234
+    },
+    {
+        "id": 4100,
+        "code": "ABD",
+        "name": "Aberdeenshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4101,
+        "code": "ABE",
+        "name": "Aberdeen City",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4102,
+        "code": "AGB",
+        "name": "Argyll and Bute",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4103,
+        "code": "AGY",
+        "name": "Isle of Anglesey [Sir Ynys Môn GB-YNM]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4104,
+        "code": "ANS",
+        "name": "Angus",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4105,
+        "code": "ANT",
+        "name": "Antrim",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4106,
+        "code": "ARD",
+        "name": "Ards",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4107,
+        "code": "ARM",
+        "name": "Armagh",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4108,
+        "code": "BAS",
+        "name": "Bath and North East Somerset",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4109,
+        "code": "BBD",
+        "name": "Blackburn with Darwen",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4110,
+        "code": "BDF",
+        "name": "Bedfordshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4111,
+        "code": "BDG",
+        "name": "Barking and Dagenham",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4112,
+        "code": "BEN",
+        "name": "Brent",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4113,
+        "code": "BEX",
+        "name": "Bexley",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4114,
+        "code": "BFS",
+        "name": "Belfast",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4115,
+        "code": "BGE",
+        "name": "Bridgend [Pen-y-bont ar Ogwr GB-POG]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4116,
+        "code": "BGW",
+        "name": "Blaenau Gwent",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4117,
+        "code": "BIR",
+        "name": "Birmingham",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4118,
+        "code": "BKM",
+        "name": "Buckinghamshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4119,
+        "code": "BLA",
+        "name": "Ballymena",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4120,
+        "code": "BLY",
+        "name": "Ballymoney",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4121,
+        "code": "BMH",
+        "name": "Bournemouth",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4122,
+        "code": "BNB",
+        "name": "Banbridge",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4123,
+        "code": "BNE",
+        "name": "Barnet",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4124,
+        "code": "BNH",
+        "name": "Brighton and Hove",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4125,
+        "code": "BNS",
+        "name": "Barnsley",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4126,
+        "code": "BOL",
+        "name": "Bolton",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4127,
+        "code": "BPL",
+        "name": "Blackpool",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4128,
+        "code": "BRC",
+        "name": "Bracknell Forest",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4129,
+        "code": "BRD",
+        "name": "Bradford",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4130,
+        "code": "BRY",
+        "name": "Bromley",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4131,
+        "code": "BST",
+        "name": "Bristol, City of",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4132,
+        "code": "BUR",
+        "name": "Bury",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4133,
+        "code": "CAM",
+        "name": "Cambridgeshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4134,
+        "code": "CAY",
+        "name": "Caerphilly [Caerffili GB-CAF]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4135,
+        "code": "CBF",
+        "name": "Central Bedfordshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4136,
+        "code": "CGN",
+        "name": "Ceredigion [Sir Ceredigion]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4137,
+        "code": "CGV",
+        "name": "Craigavon",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4138,
+        "code": "CHE",
+        "name": "Cheshire East",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4139,
+        "code": "CHW",
+        "name": "Cheshire West and Chester",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4140,
+        "code": "CKF",
+        "name": "Carrickfergus",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4141,
+        "code": "CKT",
+        "name": "Cookstown",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4142,
+        "code": "CLD",
+        "name": "Calderdale",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4143,
+        "code": "CLK",
+        "name": "Clackmannanshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4144,
+        "code": "CLR",
+        "name": "Coleraine",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4145,
+        "code": "CMA",
+        "name": "Cumbria",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4146,
+        "code": "CMD",
+        "name": "Camden",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4147,
+        "code": "CMN",
+        "name": "Carmarthenshire [Sir Gaerfyrddin GB-GFY]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4148,
+        "code": "CON",
+        "name": "Cornwall",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4149,
+        "code": "COV",
+        "name": "Coventry",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4150,
+        "code": "CRF",
+        "name": "Cardiff [Caerdydd GB-CRD]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4151,
+        "code": "CRY",
+        "name": "Croydon",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4152,
+        "code": "CSR",
+        "name": "Castlereagh",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4153,
+        "code": "CWY",
+        "name": "Conwy",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4154,
+        "code": "DAL",
+        "name": "Darlington",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4155,
+        "code": "DBY",
+        "name": "Derbyshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4156,
+        "code": "DEN",
+        "name": "Denbighshire [Sir Ddinbych GB-DDB]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4157,
+        "code": "DER",
+        "name": "Derby",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4158,
+        "code": "DEV",
+        "name": "Devon",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4159,
+        "code": "DGN",
+        "name": "Dungannon",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4160,
+        "code": "DGY",
+        "name": "Dumfries and Galloway",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4161,
+        "code": "DNC",
+        "name": "Doncaster",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4162,
+        "code": "DND",
+        "name": "Dundee City",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4163,
+        "code": "DOR",
+        "name": "Dorset",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4164,
+        "code": "DOW",
+        "name": "Down",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4165,
+        "code": "DRY",
+        "name": "Derry",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4166,
+        "code": "DUD",
+        "name": "Dudley",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4167,
+        "code": "DUR",
+        "name": "Durham",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4168,
+        "code": "EAL",
+        "name": "Ealing",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4169,
+        "code": "EAY",
+        "name": "East Ayrshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4170,
+        "code": "EDH",
+        "name": "Edinburgh, City of",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4171,
+        "code": "EDU",
+        "name": "East Dunbartonshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4172,
+        "code": "ELN",
+        "name": "East Lothian",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4173,
+        "code": "ELS",
+        "name": "Eilean Siar",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4174,
+        "code": "ENF",
+        "name": "Enfield",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4175,
+        "code": "ERW",
+        "name": "East Renfrewshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4176,
+        "code": "ERY",
+        "name": "East Riding of Yorkshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4177,
+        "code": "ESS",
+        "name": "Essex",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4178,
+        "code": "ESX",
+        "name": "East Sussex",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4179,
+        "code": "FAL",
+        "name": "Falkirk",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4180,
+        "code": "FER",
+        "name": "Fermanagh",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4181,
+        "code": "FIF",
+        "name": "Fife",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4182,
+        "code": "FLN",
+        "name": "Flintshire [Sir y Fflint GB-FFL]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4183,
+        "code": "GAT",
+        "name": "Gateshead",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4184,
+        "code": "GLG",
+        "name": "Glasgow City",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4185,
+        "code": "GLS",
+        "name": "Gloucestershire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4186,
+        "code": "GRE",
+        "name": "Greenwich",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4187,
+        "code": "GWN",
+        "name": "Gwynedd",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4188,
+        "code": "HAL",
+        "name": "Halton",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4189,
+        "code": "HAM",
+        "name": "Hampshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4190,
+        "code": "HAV",
+        "name": "Havering",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4191,
+        "code": "HCK",
+        "name": "Hackney",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4192,
+        "code": "HEF",
+        "name": "Herefordshire, County of",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4193,
+        "code": "HIL",
+        "name": "Hillingdon",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4194,
+        "code": "HLD",
+        "name": "Highland",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4195,
+        "code": "HMF",
+        "name": "Hammersmith and Fulham",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4196,
+        "code": "HNS",
+        "name": "Hounslow",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4197,
+        "code": "HPL",
+        "name": "Hartlepool",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4198,
+        "code": "HRT",
+        "name": "Hertfordshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4199,
+        "code": "HRW",
+        "name": "Harrow",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4200,
+        "code": "HRY",
+        "name": "Haringey",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4201,
+        "code": "IOW",
+        "name": "Isle of Wight",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4202,
+        "code": "ISL",
+        "name": "Islington",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4203,
+        "code": "IVC",
+        "name": "Inverclyde",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4204,
+        "code": "KEC",
+        "name": "Kensington and Chelsea",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4205,
+        "code": "KEN",
+        "name": "Kent",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4206,
+        "code": "KHL",
+        "name": "Kingston upon Hull, City of",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4207,
+        "code": "KIR",
+        "name": "Kirklees",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4208,
+        "code": "KTT",
+        "name": "Kingston upon Thames",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4209,
+        "code": "KWL",
+        "name": "Knowsley",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4210,
+        "code": "LAN",
+        "name": "Lancashire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4211,
+        "code": "LBH",
+        "name": "Lambeth",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4212,
+        "code": "LCE",
+        "name": "Leicester",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4213,
+        "code": "LDS",
+        "name": "Leeds",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4214,
+        "code": "LEC",
+        "name": "Leicestershire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4215,
+        "code": "LEW",
+        "name": "Lewisham",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4216,
+        "code": "LIN",
+        "name": "Lincolnshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4217,
+        "code": "LIV",
+        "name": "Liverpool",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4218,
+        "code": "LMV",
+        "name": "Limavady",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4219,
+        "code": "LND",
+        "name": "London, City of",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4220,
+        "code": "LRN",
+        "name": "Larne",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4221,
+        "code": "LSB",
+        "name": "Lisburn",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4222,
+        "code": "LUT",
+        "name": "Luton",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4223,
+        "code": "MAN",
+        "name": "Manchester",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4224,
+        "code": "MDB",
+        "name": "Middlesbrough",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4225,
+        "code": "MDW",
+        "name": "Medway",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4226,
+        "code": "MFT",
+        "name": "Magherafelt",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4227,
+        "code": "MIK",
+        "name": "Milton Keynes",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4228,
+        "code": "MLN",
+        "name": "Midlothian",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4229,
+        "code": "MON",
+        "name": "Monmouthshire [Sir Fynwy GB-FYN]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4230,
+        "code": "MRT",
+        "name": "Merton",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4231,
+        "code": "MRY",
+        "name": "Moray",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4232,
+        "code": "MTY",
+        "name": "Merthyr Tydfil [Merthyr Tudful GB-MTU]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4233,
+        "code": "MYL",
+        "name": "Moyle",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4234,
+        "code": "NAY",
+        "name": "North Ayrshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4235,
+        "code": "NBL",
+        "name": "Northumberland",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4236,
+        "code": "NDN",
+        "name": "North Down",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4237,
+        "code": "NEL",
+        "name": "North East Lincolnshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4238,
+        "code": "NET",
+        "name": "Newcastle upon Tyne",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4239,
+        "code": "NFK",
+        "name": "Norfolk",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4240,
+        "code": "NGM",
+        "name": "Nottingham",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4241,
+        "code": "NLK",
+        "name": "North Lanarkshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4242,
+        "code": "NLN",
+        "name": "North Lincolnshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4243,
+        "code": "NSM",
+        "name": "North Somerset",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4244,
+        "code": "NTA",
+        "name": "Newtownabbey",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4245,
+        "code": "NTH",
+        "name": "Northamptonshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4246,
+        "code": "NTL",
+        "name": "Neath Port Talbot [Castell-nedd Port Talbot GB-CTL]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4247,
+        "code": "NTT",
+        "name": "Nottinghamshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4248,
+        "code": "NTY",
+        "name": "North Tyneside",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4249,
+        "code": "NWM",
+        "name": "Newham",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4250,
+        "code": "NWP",
+        "name": "Newport [Casnewydd GB-CNW]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4251,
+        "code": "NYK",
+        "name": "North Yorkshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4252,
+        "code": "NYM",
+        "name": "Newry and Mourne",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4253,
+        "code": "OLD",
+        "name": "Oldham",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4254,
+        "code": "OMH",
+        "name": "Omagh",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4255,
+        "code": "ORK",
+        "name": "Orkney Islands",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4256,
+        "code": "OXF",
+        "name": "Oxfordshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4257,
+        "code": "PEM",
+        "name": "Pembrokeshire [Sir Benfro GB-BNF]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4258,
+        "code": "PKN",
+        "name": "Perth and Kinross",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4259,
+        "code": "PLY",
+        "name": "Plymouth",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4260,
+        "code": "POL",
+        "name": "Poole",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4261,
+        "code": "POR",
+        "name": "Portsmouth",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4262,
+        "code": "POW",
+        "name": "Powys",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4263,
+        "code": "PTE",
+        "name": "Peterborough",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4264,
+        "code": "RCC",
+        "name": "Redcar and Cleveland",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4265,
+        "code": "RCH",
+        "name": "Rochdale",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4266,
+        "code": "RCT",
+        "name": "Rhondda, Cynon, Taff [Rhondda, Cynon,Taf]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4267,
+        "code": "RDB",
+        "name": "Redbridge",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4268,
+        "code": "RDG",
+        "name": "Reading",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4269,
+        "code": "RFW",
+        "name": "Renfrewshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4270,
+        "code": "RIC",
+        "name": "Richmond upon Thames",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4271,
+        "code": "ROT",
+        "name": "Rotherham",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4272,
+        "code": "RUT",
+        "name": "Rutland",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4273,
+        "code": "SAW",
+        "name": "Sandwell",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4274,
+        "code": "SAY",
+        "name": "South Ayrshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4275,
+        "code": "SCB",
+        "name": "Scottish Borders, The",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4276,
+        "code": "SFK",
+        "name": "Suffolk",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4277,
+        "code": "SFT",
+        "name": "Sefton",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4278,
+        "code": "SGC",
+        "name": "South Gloucestershire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4279,
+        "code": "SHF",
+        "name": "Sheffield",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4280,
+        "code": "SHN",
+        "name": "St. Helens",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4281,
+        "code": "SHR",
+        "name": "Shropshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4282,
+        "code": "SKP",
+        "name": "Stockport",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4283,
+        "code": "SLF",
+        "name": "Salford",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4284,
+        "code": "SLG",
+        "name": "Slough",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4285,
+        "code": "SLK",
+        "name": "South Lanarkshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4286,
+        "code": "SND",
+        "name": "Sunderland",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4287,
+        "code": "SOL",
+        "name": "Solihull",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4288,
+        "code": "SOM",
+        "name": "Somerset",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4289,
+        "code": "SOS",
+        "name": "Southend-on-Sea",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4290,
+        "code": "SRY",
+        "name": "Surrey",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4291,
+        "code": "STB",
+        "name": "Strabane",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4292,
+        "code": "STE",
+        "name": "Stoke-on-Trent",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4293,
+        "code": "STG",
+        "name": "Stirling",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4294,
+        "code": "STH",
+        "name": "Southampton",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4295,
+        "code": "STN",
+        "name": "Sutton",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4296,
+        "code": "STS",
+        "name": "Staffordshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4297,
+        "code": "STT",
+        "name": "Stockton-on-Tees",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4298,
+        "code": "STY",
+        "name": "South Tyneside",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4299,
+        "code": "SWA",
+        "name": "Swansea [Abertawe GB-ATA]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4300,
+        "code": "SWD",
+        "name": "Swindon",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4301,
+        "code": "SWK",
+        "name": "Southwark",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4302,
+        "code": "TAM",
+        "name": "Tameside",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4303,
+        "code": "TFW",
+        "name": "Telford and Wrekin",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4304,
+        "code": "THR",
+        "name": "Thurrock",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4305,
+        "code": "TOB",
+        "name": "Torbay",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4306,
+        "code": "TOF",
+        "name": "Torfaen [Tor-faen]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4307,
+        "code": "TRF",
+        "name": "Trafford",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4308,
+        "code": "TWH",
+        "name": "Tower Hamlets",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4309,
+        "code": "VGL",
+        "name": "Vale of Glamorgan, The [Bro Morgannwg GB-BMG]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4310,
+        "code": "WAR",
+        "name": "Warwickshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4311,
+        "code": "WBK",
+        "name": "West Berkshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4312,
+        "code": "WDU",
+        "name": "West Dunbartonshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4313,
+        "code": "WFT",
+        "name": "Waltham Forest",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4314,
+        "code": "WGN",
+        "name": "Wigan",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4315,
+        "code": "WIL",
+        "name": "Wiltshire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4316,
+        "code": "WKF",
+        "name": "Wakefield",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4317,
+        "code": "WLL",
+        "name": "Walsall",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4318,
+        "code": "WLN",
+        "name": "West Lothian",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4319,
+        "code": "WLV",
+        "name": "Wolverhampton",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4320,
+        "code": "WND",
+        "name": "Wandsworth",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4321,
+        "code": "WNM",
+        "name": "Windsor and Maidenhead",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4322,
+        "code": "WOK",
+        "name": "Wokingham",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4323,
+        "code": "WOR",
+        "name": "Worcestershire",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4324,
+        "code": "WRL",
+        "name": "Wirral",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4325,
+        "code": "WRT",
+        "name": "Warrington",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4326,
+        "code": "WRX",
+        "name": "Wrexham [Wrecsam GB-WRC]",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4327,
+        "code": "WSM",
+        "name": "Westminster",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4328,
+        "code": "WSX",
+        "name": "West Sussex",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4329,
+        "code": "YOR",
+        "name": "York",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4330,
+        "code": "ZET",
+        "name": "Shetland Islands",
+        "countryCode": "GB",
+        "countryId": 235
+    },
+    {
+        "id": 4331,
+        "code": "AK",
+        "name": "Alaska",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4332,
+        "code": "AL",
+        "name": "Alabama",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4333,
+        "code": "AR",
+        "name": "Arkansas",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4334,
+        "code": "AS",
+        "name": "American Samoa (see also separate entry under AS)",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4335,
+        "code": "AZ",
+        "name": "Arizona",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4336,
+        "code": "CA",
+        "name": "California",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4337,
+        "code": "CO",
+        "name": "Colorado",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4338,
+        "code": "CT",
+        "name": "Connecticut",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4339,
+        "code": "DC",
+        "name": "District of Columbia",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4340,
+        "code": "DE",
+        "name": "Delaware",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4341,
+        "code": "FL",
+        "name": "Florida",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4342,
+        "code": "GA",
+        "name": "Georgia",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4343,
+        "code": "GU",
+        "name": "Guam (see also separate entry under GU)",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4344,
+        "code": "HI",
+        "name": "Hawaii",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4345,
+        "code": "IA",
+        "name": "Iowa",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4346,
+        "code": "ID",
+        "name": "Idaho",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4347,
+        "code": "IL",
+        "name": "Illinois",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4348,
+        "code": "IN",
+        "name": "Indiana",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4349,
+        "code": "KS",
+        "name": "Kansas",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4350,
+        "code": "KY",
+        "name": "Kentucky",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4351,
+        "code": "LA",
+        "name": "Louisiana",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4352,
+        "code": "MA",
+        "name": "Massachusetts",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4353,
+        "code": "MD",
+        "name": "Maryland",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4354,
+        "code": "ME",
+        "name": "Maine",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4355,
+        "code": "MI",
+        "name": "Michigan",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4356,
+        "code": "MN",
+        "name": "Minnesota",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4357,
+        "code": "MO",
+        "name": "Missouri",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4358,
+        "code": "MP",
+        "name": "Northern Mariana Islands (see also separate entry MP)",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4359,
+        "code": "MS",
+        "name": "Mississippi",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4360,
+        "code": "MT",
+        "name": "Montana",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4361,
+        "code": "NC",
+        "name": "North Carolina",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4362,
+        "code": "ND",
+        "name": "North Dakota",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4363,
+        "code": "NE",
+        "name": "Nebraska",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4364,
+        "code": "NH",
+        "name": "New Hampshire",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4365,
+        "code": "NJ",
+        "name": "New Jersey",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4366,
+        "code": "NM",
+        "name": "New Mexico",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4367,
+        "code": "NV",
+        "name": "Nevada",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4368,
+        "code": "NY",
+        "name": "New York",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4369,
+        "code": "OH",
+        "name": "Ohio",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4370,
+        "code": "OK",
+        "name": "Oklahoma",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4371,
+        "code": "OR",
+        "name": "Oregon",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4372,
+        "code": "PA",
+        "name": "Pennsylvania",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4373,
+        "code": "PR",
+        "name": "Puerto Rico (see also separate entry under PR)",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4374,
+        "code": "RI",
+        "name": "Rhode Island",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4375,
+        "code": "SC",
+        "name": "South Carolina",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4376,
+        "code": "SD",
+        "name": "South Dakota",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4377,
+        "code": "TN",
+        "name": "Tennessee",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4378,
+        "code": "TX",
+        "name": "Texas",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4379,
+        "code": "UM",
+        "name": "U.S. Minor Outlying Islands (cf. separate entry UM)",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4380,
+        "code": "UT",
+        "name": "Utah",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4381,
+        "code": "VA",
+        "name": "Virginia",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4382,
+        "code": "VI",
+        "name": "Virgin Islands of the U.S. (see also separate entry VI)",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4383,
+        "code": "VT",
+        "name": "Vermont",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4384,
+        "code": "WA",
+        "name": "Washington",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4385,
+        "code": "WI",
+        "name": "Wisconsin",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4386,
+        "code": "WV",
+        "name": "West Virginia",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4387,
+        "code": "WY",
+        "name": "Wyoming",
+        "countryCode": "US",
+        "countryId": 236
+    },
+    {
+        "id": 4388,
+        "code": "67",
+        "name": "Johnston Atoll (ISO reserved code = JT)",
+        "countryCode": "UM",
+        "countryId": 237
+    },
+    {
+        "id": 4389,
+        "code": "71",
+        "name": "Midway Islands (ISO reserved code = I)",
+        "countryCode": "UM",
+        "countryId": 237
+    },
+    {
+        "id": 4390,
+        "code": "76",
+        "name": "Navassa Island (ISO reserved code = NV)",
+        "countryCode": "UM",
+        "countryId": 237
+    },
+    {
+        "id": 4391,
+        "code": "79",
+        "name": "Wake Island (ISO reserved code = WK)",
+        "countryCode": "UM",
+        "countryId": 237
+    },
+    {
+        "id": 4392,
+        "code": "81",
+        "name": "Baker Island",
+        "countryCode": "UM",
+        "countryId": 237
+    },
+    {
+        "id": 4393,
+        "code": "84",
+        "name": "Howland Island",
+        "countryCode": "UM",
+        "countryId": 237
+    },
+    {
+        "id": 4394,
+        "code": "86",
+        "name": "Jarvis Island",
+        "countryCode": "UM",
+        "countryId": 237
+    },
+    {
+        "id": 4395,
+        "code": "89",
+        "name": "Kingman Reef",
+        "countryCode": "UM",
+        "countryId": 237
+    },
+    {
+        "id": 4396,
+        "code": "95",
+        "name": "Palmyra Atoll",
+        "countryCode": "UM",
+        "countryId": 237
+    },
+    {
+        "id": 4397,
+        "code": "AR",
+        "name": "Artigas",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4398,
+        "code": "CA",
+        "name": "Canelones",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4399,
+        "code": "CL",
+        "name": "Cerro Largo",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4400,
+        "code": "CO",
+        "name": "Colonia",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4401,
+        "code": "DU",
+        "name": "Durazno",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4402,
+        "code": "FD",
+        "name": "Florida",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4403,
+        "code": "FS",
+        "name": "Flores",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4404,
+        "code": "LA",
+        "name": "Lavalleja",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4405,
+        "code": "MA",
+        "name": "Maldonado",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4406,
+        "code": "MO",
+        "name": "Montevideo",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4407,
+        "code": "PA",
+        "name": "Paysandú",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4408,
+        "code": "RN",
+        "name": "Río Negro",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4409,
+        "code": "RO",
+        "name": "Rocha",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4410,
+        "code": "RV",
+        "name": "Rivera",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4411,
+        "code": "SA",
+        "name": "Salto",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4412,
+        "code": "SJ",
+        "name": "San José",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4413,
+        "code": "SO",
+        "name": "Soriano",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4414,
+        "code": "TA",
+        "name": "Tacuarembó",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4415,
+        "code": "TT",
+        "name": "Treinta y Tres",
+        "countryCode": "UY",
+        "countryId": 238
+    },
+    {
+        "id": 4416,
+        "code": "AN",
+        "name": "Andijon",
+        "countryCode": "UZ",
+        "countryId": 239
+    },
+    {
+        "id": 4417,
+        "code": "BU",
+        "name": "Bukhoro",
+        "countryCode": "UZ",
+        "countryId": 239
+    },
+    {
+        "id": 4418,
+        "code": "FA",
+        "name": "Farghona",
+        "countryCode": "UZ",
+        "countryId": 239
+    },
+    {
+        "id": 4419,
+        "code": "JI",
+        "name": "Jizzakh",
+        "countryCode": "UZ",
+        "countryId": 239
+    },
+    {
+        "id": 4420,
+        "code": "KH",
+        "name": "Khorazm",
+        "countryCode": "UZ",
+        "countryId": 239
+    },
+    {
+        "id": 4421,
+        "code": "NG",
+        "name": "Namangan",
+        "countryCode": "UZ",
+        "countryId": 239
+    },
+    {
+        "id": 4422,
+        "code": "NW",
+        "name": "Nawoiy",
+        "countryCode": "UZ",
+        "countryId": 239
+    },
+    {
+        "id": 4423,
+        "code": "QA",
+        "name": "Qashqadaryo",
+        "countryCode": "UZ",
+        "countryId": 239
+    },
+    {
+        "id": 4424,
+        "code": "QR",
+        "name": "Qoraqalpoghiston Respublikasi",
+        "countryCode": "UZ",
+        "countryId": 239
+    },
+    {
+        "id": 4425,
+        "code": "SA",
+        "name": "Samarqand",
+        "countryCode": "UZ",
+        "countryId": 239
+    },
+    {
+        "id": 4426,
+        "code": "SI",
+        "name": "Sirdaryo",
+        "countryCode": "UZ",
+        "countryId": 239
+    },
+    {
+        "id": 4427,
+        "code": "SU",
+        "name": "Surkhondaryo",
+        "countryCode": "UZ",
+        "countryId": 239
+    },
+    {
+        "id": 4428,
+        "code": "TK",
+        "name": "Toshkent",
+        "countryCode": "UZ",
+        "countryId": 239
+    },
+    {
+        "id": 4429,
+        "code": "TO",
+        "name": "Toshkent",
+        "countryCode": "UZ",
+        "countryId": 239
+    },
+    {
+        "id": 4430,
+        "code": "XO",
+        "name": "Xorazm",
+        "countryCode": "UZ",
+        "countryId": 239
+    },
+    {
+        "id": 4431,
+        "code": "MAP",
+        "name": "Malampa",
+        "countryCode": "VU",
+        "countryId": 240
+    },
+    {
+        "id": 4432,
+        "code": "PAM",
+        "name": "Pénama",
+        "countryCode": "VU",
+        "countryId": 240
+    },
+    {
+        "id": 4433,
+        "code": "SAM",
+        "name": "Sanma",
+        "countryCode": "VU",
+        "countryId": 240
+    },
+    {
+        "id": 4434,
+        "code": "SEE",
+        "name": "Shéfa",
+        "countryCode": "VU",
+        "countryId": 240
+    },
+    {
+        "id": 4435,
+        "code": "TAE",
+        "name": "Taféa",
+        "countryCode": "VU",
+        "countryId": 240
+    },
+    {
+        "id": 4436,
+        "code": "TOB",
+        "name": "Torba",
+        "countryCode": "VU",
+        "countryId": 240
+    },
+    {
+        "id": 4437,
+        "code": "A",
+        "name": "Distrito Capital",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4438,
+        "code": "B",
+        "name": "Anzoátegui",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4439,
+        "code": "C",
+        "name": "Apure",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4440,
+        "code": "D",
+        "name": "Aragua",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4441,
+        "code": "E",
+        "name": "Barinas",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4442,
+        "code": "F",
+        "name": "Bolívar",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4443,
+        "code": "G",
+        "name": "Carabobo",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4444,
+        "code": "H",
+        "name": "Cojedes",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4445,
+        "code": "I",
+        "name": "Falcón",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4446,
+        "code": "J",
+        "name": "Guárico",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4447,
+        "code": "K",
+        "name": "Lara",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4448,
+        "code": "L",
+        "name": "Mérida",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4449,
+        "code": "M",
+        "name": "Miranda",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4450,
+        "code": "N",
+        "name": "Monagas",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4451,
+        "code": "O",
+        "name": "Nueva Esparta",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4452,
+        "code": "P",
+        "name": "Portuguesa",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4453,
+        "code": "R",
+        "name": "Sucre",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4454,
+        "code": "S",
+        "name": "Táchira",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4455,
+        "code": "T",
+        "name": "Trujillo",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4456,
+        "code": "U",
+        "name": "Yaracuy",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4457,
+        "code": "V",
+        "name": "Zulia",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4458,
+        "code": "W",
+        "name": "Dependencias Federales",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4459,
+        "code": "X",
+        "name": "vargas",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4460,
+        "code": "Y",
+        "name": "Delta Amacuro",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4461,
+        "code": "Z",
+        "name": "Amazonas",
+        "countryCode": "VE",
+        "countryId": 241
+    },
+    {
+        "id": 4462,
+        "code": "CT",
+        "name": "Can Tho",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4463,
+        "code": "DN",
+        "name": "Da Nang",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4464,
+        "code": "HN",
+        "name": "Ha Noi",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4465,
+        "code": "HP",
+        "name": "Hai Phong",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4466,
+        "code": "SG",
+        "name": "Ho Chi Minh",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4467,
+        "code": "01",
+        "name": "Lai Chau",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4468,
+        "code": "02",
+        "name": "Lao Cai",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4469,
+        "code": "03",
+        "name": "Ha Giang",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4470,
+        "code": "04",
+        "name": "Cao Bang",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4471,
+        "code": "05",
+        "name": "Son La",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4472,
+        "code": "06",
+        "name": "Yen Bai",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4473,
+        "code": "07",
+        "name": "Tuyen Quang",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4474,
+        "code": "09",
+        "name": "Lang Son",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4475,
+        "code": "13",
+        "name": "Quang Ninh",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4476,
+        "code": "14",
+        "name": "Hoa Binh",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4477,
+        "code": "15",
+        "name": "Ha Tay",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4478,
+        "code": "18",
+        "name": "Ninh Binh",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4479,
+        "code": "20",
+        "name": "Thai Binh",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4480,
+        "code": "21",
+        "name": "Thanh Hoa",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4481,
+        "code": "22",
+        "name": "Nghe An",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4482,
+        "code": "23",
+        "name": "Ha Tinh",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4483,
+        "code": "24",
+        "name": "Quang Binh",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4484,
+        "code": "25",
+        "name": "Quang Tri",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4485,
+        "code": "26",
+        "name": "Thua Thien-Hue",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4486,
+        "code": "27",
+        "name": "Quang Nam",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4487,
+        "code": "28",
+        "name": "Kon Tum",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4488,
+        "code": "29",
+        "name": "Quang Ngai",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4489,
+        "code": "30",
+        "name": "Gia Lai",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4490,
+        "code": "31",
+        "name": "Binh Dinh",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4491,
+        "code": "32",
+        "name": "Phu Yen",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4492,
+        "code": "33",
+        "name": "Dac Lac",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4493,
+        "code": "34",
+        "name": "Khanh Hoa",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4494,
+        "code": "35",
+        "name": "Lam Dong",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4495,
+        "code": "36",
+        "name": "Ninh Thuan",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4496,
+        "code": "37",
+        "name": "Tay Ninh",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4497,
+        "code": "39",
+        "name": "Dong Nai",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4498,
+        "code": "40",
+        "name": "Binh Thuan",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4499,
+        "code": "41",
+        "name": "Long An",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4500,
+        "code": "43",
+        "name": "Ba Ria -  Vung Tau",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4501,
+        "code": "44",
+        "name": "An Giang",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4502,
+        "code": "45",
+        "name": "Dong Thap",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4503,
+        "code": "46",
+        "name": "Tien Giang",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4504,
+        "code": "47",
+        "name": "Kien Giang",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4505,
+        "code": "49",
+        "name": "Vinh Long",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4506,
+        "code": "50",
+        "name": "Ben Tre",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4507,
+        "code": "51",
+        "name": "Tra Vinh",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4508,
+        "code": "52",
+        "name": "Soc Trang",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4509,
+        "code": "53",
+        "name": "Bac Can",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4510,
+        "code": "54",
+        "name": "Bac Giang",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4511,
+        "code": "55",
+        "name": "Bac Lieu",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4512,
+        "code": "56",
+        "name": "Bac Ninh",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4513,
+        "code": "57",
+        "name": "Binh Duong",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4514,
+        "code": "58",
+        "name": "Binh Phuoc",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4515,
+        "code": "59",
+        "name": "Ca Mau",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4516,
+        "code": "60",
+        "name": "Da Nang, thanh pho",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4517,
+        "code": "61",
+        "name": "Hai Duong",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4518,
+        "code": "62",
+        "name": "Hai Phong, thanh pho",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4519,
+        "code": "63",
+        "name": "Ha Nam",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4520,
+        "code": "66",
+        "name": "Hung Yen",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4521,
+        "code": "67",
+        "name": "Nam Dinh",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4522,
+        "code": "68",
+        "name": "Phu Tho",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4523,
+        "code": "69",
+        "name": "Thai Nguyen",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4524,
+        "code": "70",
+        "name": "Vinh Yen",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4525,
+        "code": "71",
+        "name": "Dien Bien",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4526,
+        "code": "72",
+        "name": "Dak Nong",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4527,
+        "code": "73",
+        "name": "Hau Giang",
+        "countryCode": "VN",
+        "countryId": 242
+    },
+    {
+        "id": 4528,
+        "code": "AB",
+        "name": "Abyan",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4529,
+        "code": "AD",
+        "name": "'Adan",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4530,
+        "code": "AM",
+        "name": "'Amrān",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4531,
+        "code": "BA",
+        "name": "Al Bayḑā'",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4532,
+        "code": "DA",
+        "name": "Aḑ Ḑāli'",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4533,
+        "code": "DH",
+        "name": "Dhamār",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4534,
+        "code": "HD",
+        "name": "Ḩaḑramawt",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4535,
+        "code": "HJ",
+        "name": "Ḩajjah",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4536,
+        "code": "HU",
+        "name": "Al Ḩudaydah",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4537,
+        "code": "IB",
+        "name": "Ibb",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4538,
+        "code": "JA",
+        "name": "Al Jawf",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4539,
+        "code": "LA",
+        "name": "Laḩij",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4540,
+        "code": "MA",
+        "name": "Ma'rib",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4541,
+        "code": "MR",
+        "name": "Al Mahrah",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4542,
+        "code": "MW",
+        "name": "Al Maḩwīt",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4543,
+        "code": "RA",
+        "name": "Raymah",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4544,
+        "code": "SD",
+        "name": "Şāʻdah",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4545,
+        "code": "SH",
+        "name": "Shabwah",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4546,
+        "code": "SN",
+        "name": "Şanʻā'",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4547,
+        "code": "TA",
+        "name": "Tāʻizz",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4548,
+        "code": "SA",
+        "name": "Şanʻā' [city]",
+        "countryCode": "YE",
+        "countryId": 247
+    },
+    {
+        "id": 4549,
+        "code": "01",
+        "name": "Western",
+        "countryCode": "ZM",
+        "countryId": 248
+    },
+    {
+        "id": 4550,
+        "code": "02",
+        "name": "Central",
+        "countryCode": "ZM",
+        "countryId": 248
+    },
+    {
+        "id": 4551,
+        "code": "03",
+        "name": "Eastern",
+        "countryCode": "ZM",
+        "countryId": 248
+    },
+    {
+        "id": 4552,
+        "code": "04",
+        "name": "Luapula",
+        "countryCode": "ZM",
+        "countryId": 248
+    },
+    {
+        "id": 4553,
+        "code": "05",
+        "name": "Northern",
+        "countryCode": "ZM",
+        "countryId": 248
+    },
+    {
+        "id": 4554,
+        "code": "06",
+        "name": "North-Western",
+        "countryCode": "ZM",
+        "countryId": 248
+    },
+    {
+        "id": 4555,
+        "code": "07",
+        "name": "Southern",
+        "countryCode": "ZM",
+        "countryId": 248
+    },
+    {
+        "id": 4556,
+        "code": "08",
+        "name": "Copperbelt",
+        "countryCode": "ZM",
+        "countryId": 248
+    },
+    {
+        "id": 4557,
+        "code": "09",
+        "name": "Lusaka",
+        "countryCode": "ZM",
+        "countryId": 248
+    },
+    {
+        "id": 4558,
+        "code": "BU",
+        "name": "Bulawayo",
+        "countryCode": "ZW",
+        "countryId": 249
+    },
+    {
+        "id": 4559,
+        "code": "HA",
+        "name": "Harare",
+        "countryCode": "ZW",
+        "countryId": 249
+    },
+    {
+        "id": 4560,
+        "code": "MA",
+        "name": "Manicaland",
+        "countryCode": "ZW",
+        "countryId": 249
+    },
+    {
+        "id": 4561,
+        "code": "MC",
+        "name": "Mashonaland Central",
+        "countryCode": "ZW",
+        "countryId": 249
+    },
+    {
+        "id": 4562,
+        "code": "ME",
+        "name": "Mashonaland East",
+        "countryCode": "ZW",
+        "countryId": 249
+    },
+    {
+        "id": 4563,
+        "code": "MI",
+        "name": "Midlands",
+        "countryCode": "ZW",
+        "countryId": 249
+    },
+    {
+        "id": 4564,
+        "code": "MN",
+        "name": "Matabeleland North",
+        "countryCode": "ZW",
+        "countryId": 249
+    },
+    {
+        "id": 4565,
+        "code": "MS",
+        "name": "Matabeleland South",
+        "countryCode": "ZW",
+        "countryId": 249
+    },
+    {
+        "id": 4566,
+        "code": "MV",
+        "name": "Masvingo",
+        "countryCode": "ZW",
+        "countryId": 249
+    },
+    {
+        "id": 4567,
+        "code": "MW",
+        "name": "Mashonaland West",
+        "countryCode": "ZW",
+        "countryId": 249
+    }
+]
\ No newline at end of file
diff --git a/src/backend/migrations/Version20210723170329.php b/src/backend/migrations/Version20210723170329.php
index 046f6ac..6ef7b0e 100644
--- a/src/backend/migrations/Version20210723170329.php
+++ b/src/backend/migrations/Version20210723170329.php
@@ -14,7 +14,7 @@ final class Version20210723170329 extends AbstractMigration
 {
     public function getDescription(): string
     {
-        return '';
+        return 'create user table';
     }
 
     public function up(Schema $schema): void
diff --git a/src/backend/migrations/Version20210723171757.php b/src/backend/migrations/Version20210723171757.php
index 35347ec..7a58a9e 100644
--- a/src/backend/migrations/Version20210723171757.php
+++ b/src/backend/migrations/Version20210723171757.php
@@ -14,7 +14,7 @@ final class Version20210723171757 extends AbstractMigration
 {
     public function getDescription(): string
     {
-        return '';
+        return 'update user table';
     }
 
     public function up(Schema $schema): void
diff --git a/src/backend/migrations/Version20210806124058.php b/src/backend/migrations/Version20210806124058.php
new file mode 100644
index 0000000..3baa9da
--- /dev/null
+++ b/src/backend/migrations/Version20210806124058.php
@@ -0,0 +1,57 @@
+addSql('CREATE SEQUENCE country_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
+        $this->addSql('CREATE SEQUENCE country_region_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
+        $this->addSql('CREATE TABLE country (id INT NOT NULL, code VARCHAR(4) NOT NULL, name VARCHAR(255) NOT NULL, subname VARCHAR(255) DEFAULT NULL, locale_name VARCHAR(255) DEFAULT NULL, PRIMARY KEY(id))');
+        $this->addSql('CREATE TABLE country_region (id INT NOT NULL, country_id INT NOT NULL, code VARCHAR(4) NOT NULL, name VARCHAR(255) NOT NULL, PRIMARY KEY(id))');
+        $this->addSql('CREATE INDEX IDX_4F1A1A05F92F3E70 ON country_region (country_id)');
+        $this->addSql('ALTER TABLE country_region ADD CONSTRAINT FK_4F1A1A05F92F3E70 FOREIGN KEY (country_id) REFERENCES country (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
+        $this->addSql('ALTER TABLE "user" ADD country_id INT DEFAULT NULL');
+        $this->addSql('ALTER TABLE "user" ADD state_id INT DEFAULT NULL');
+        $this->addSql('ALTER TABLE "user" DROP country');
+        $this->addSql('ALTER TABLE "user" DROP state');
+        $this->addSql('ALTER TABLE "user" ADD CONSTRAINT FK_8D93D649F92F3E70 FOREIGN KEY (country_id) REFERENCES country (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
+        $this->addSql('ALTER TABLE "user" ADD CONSTRAINT FK_8D93D6495D83CC1 FOREIGN KEY (state_id) REFERENCES country_region (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
+        $this->addSql('CREATE INDEX IDX_8D93D649F92F3E70 ON "user" (country_id)');
+        $this->addSql('CREATE INDEX IDX_8D93D6495D83CC1 ON "user" (state_id)');
+    }
+
+    public function down(Schema $schema): void
+    {
+        // this down() migration is auto-generated, please modify it to your needs
+        $this->addSql('CREATE SCHEMA public');
+        $this->addSql('ALTER TABLE country_region DROP CONSTRAINT FK_4F1A1A05F92F3E70');
+        $this->addSql('ALTER TABLE "user" DROP CONSTRAINT FK_8D93D649F92F3E70');
+        $this->addSql('ALTER TABLE "user" DROP CONSTRAINT FK_8D93D6495D83CC1');
+        $this->addSql('DROP SEQUENCE country_id_seq CASCADE');
+        $this->addSql('DROP SEQUENCE country_region_id_seq CASCADE');
+        $this->addSql('DROP TABLE country');
+        $this->addSql('DROP TABLE country_region');
+        $this->addSql('DROP INDEX IDX_8D93D649F92F3E70');
+        $this->addSql('DROP INDEX IDX_8D93D6495D83CC1');
+        $this->addSql('ALTER TABLE "user" ADD country VARCHAR(3) DEFAULT NULL');
+        $this->addSql('ALTER TABLE "user" ADD state VARCHAR(10) DEFAULT NULL');
+        $this->addSql('ALTER TABLE "user" DROP country_id');
+        $this->addSql('ALTER TABLE "user" DROP state_id');
+    }
+}
diff --git a/src/backend/migrations/Version20210806124110.php b/src/backend/migrations/Version20210806124110.php
new file mode 100644
index 0000000..b4e6be9
--- /dev/null
+++ b/src/backend/migrations/Version20210806124110.php
@@ -0,0 +1,48 @@
+addSql('INSERT INTO country (id, name, locale_name, code) VALUES (:id, :name, :localeName, :code)', [
+                'id' => $country->id,
+                'name' => $country->name,
+                'localeName' => $country->localeName,
+                'code' => $country->code,
+            ]);
+        }
+        $states = json_decode(file_get_contents($dataDirectory.'/states.json'));
+        foreach ($states as $state) {
+            $this->addSql('INSERT INTO country_region (id, name, code, country_id) VALUES (:id, :name, :code, :country)', [
+                'id' => $state->id,
+                'name' => $state->name,
+                'code' => $state->code,
+                'country' => $state->countryId,
+            ]);
+        }
+    }
+
+    public function down(Schema $schema): void
+    {
+        $this->addSql('TRUNCATE country');
+        $this->addSql('TRUNCATE country_region');
+    }
+}
diff --git a/src/backend/migrations/Version20210901131245.php b/src/backend/migrations/Version20210901131245.php
new file mode 100644
index 0000000..37cc8a9
--- /dev/null
+++ b/src/backend/migrations/Version20210901131245.php
@@ -0,0 +1,61 @@
+addSql('CREATE SEQUENCE person_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
+        $this->addSql('CREATE TABLE person (id INT NOT NULL, country_id INT DEFAULT NULL, state_id INT DEFAULT NULL, name VARCHAR(255) NOT NULL, surname VARCHAR(255) NOT NULL, city VARCHAR(255) DEFAULT NULL, zip VARCHAR(7) DEFAULT NULL, avatar VARCHAR(255) DEFAULT NULL, PRIMARY KEY(id))');
+        $this->addSql('CREATE INDEX IDX_34DCD176F92F3E70 ON person (country_id)');
+        $this->addSql('CREATE INDEX IDX_34DCD1765D83CC1 ON person (state_id)');
+        $this->addSql('ALTER TABLE person ADD CONSTRAINT FK_34DCD176F92F3E70 FOREIGN KEY (country_id) REFERENCES country (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
+        $this->addSql('ALTER TABLE person ADD CONSTRAINT FK_34DCD1765D83CC1 FOREIGN KEY (state_id) REFERENCES country_region (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
+        $this->addSql('ALTER TABLE "user" DROP CONSTRAINT fk_8d93d649f92f3e70');
+        $this->addSql('ALTER TABLE "user" DROP CONSTRAINT fk_8d93d6495d83cc1');
+        $this->addSql('DROP INDEX idx_8d93d649f92f3e70');
+        $this->addSql('DROP INDEX idx_8d93d6495d83cc1');
+        $this->addSql('ALTER TABLE "user" ADD person_id INT DEFAULT NULL');
+        $this->addSql('ALTER TABLE "user" DROP country_id');
+        $this->addSql('ALTER TABLE "user" DROP state_id');
+        $this->addSql('ALTER TABLE "user" DROP name');
+        $this->addSql('ALTER TABLE "user" DROP surname');
+        $this->addSql('ALTER TABLE "user" DROP avatar');
+        $this->addSql('ALTER TABLE "user" ADD CONSTRAINT FK_8D93D649217BBB47 FOREIGN KEY (person_id) REFERENCES person (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
+        $this->addSql('CREATE UNIQUE INDEX UNIQ_8D93D649217BBB47 ON "user" (person_id)');
+    }
+
+    public function down(Schema $schema): void
+    {
+        // this down() migration is auto-generated, please modify it to your needs
+        $this->addSql('CREATE SCHEMA public');
+        $this->addSql('ALTER TABLE "user" DROP CONSTRAINT FK_8D93D649217BBB47');
+        $this->addSql('DROP SEQUENCE person_id_seq CASCADE');
+        $this->addSql('DROP TABLE person');
+        $this->addSql('DROP INDEX UNIQ_8D93D649217BBB47');
+        $this->addSql('ALTER TABLE "user" ADD state_id INT DEFAULT NULL');
+        $this->addSql('ALTER TABLE "user" ADD name VARCHAR(255) NOT NULL');
+        $this->addSql('ALTER TABLE "user" ADD surname VARCHAR(255) NOT NULL');
+        $this->addSql('ALTER TABLE "user" ADD avatar VARCHAR(255) DEFAULT NULL');
+        $this->addSql('ALTER TABLE "user" RENAME COLUMN person_id TO country_id');
+        $this->addSql('ALTER TABLE "user" ADD CONSTRAINT fk_8d93d649f92f3e70 FOREIGN KEY (country_id) REFERENCES country (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
+        $this->addSql('ALTER TABLE "user" ADD CONSTRAINT fk_8d93d6495d83cc1 FOREIGN KEY (state_id) REFERENCES country_region (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
+        $this->addSql('CREATE INDEX idx_8d93d649f92f3e70 ON "user" (country_id)');
+        $this->addSql('CREATE INDEX idx_8d93d6495d83cc1 ON "user" (state_id)');
+    }
+}
diff --git a/src/backend/src/Controller/AuthController.php b/src/backend/src/Controller/AuthController.php
index 98aaf38..826e1dd 100644
--- a/src/backend/src/Controller/AuthController.php
+++ b/src/backend/src/Controller/AuthController.php
@@ -3,6 +3,7 @@
 namespace App\Controller;
 
 use App\Entity\User;
+use App\Entity\Person;
 use App\Traits\JsonResponseTrait;
 use App\Repository\UserRepository;
 use Symfony\Component\HttpFoundation\Request;
@@ -37,13 +38,20 @@ class AuthController extends AbstractController
             return $this->notAcceptable("User email exists");
         }
 
+        $person = new Person();
+        $person->setName($name);
+        $person->setSurname($surname);
+        $person->generateAvatar($email);
+        $em->persist($person);
+        $em->flush();
+
         $user = new User();
         $user->setPassword($encoder->hashPassword($user, $password));
         $user->setEmail($email);
-        $user->setName($name);
-        $user->setSurname($surname);
+        $user->setPerson($person);
         $em->persist($user);
         $em->flush();
+
         return $this->created($user);
     }
 
@@ -60,7 +68,7 @@ class AuthController extends AbstractController
         if (!$user) {
             return $this->unauthorized([]);
         }
-        $user->generateAvatar();
+        $user->getPerson()->generateAvatar($user->getEmail());
         return $this->ok($user);
     }
 }
diff --git a/src/backend/src/Controller/CountryController.php b/src/backend/src/Controller/CountryController.php
new file mode 100644
index 0000000..2770ea3
--- /dev/null
+++ b/src/backend/src/Controller/CountryController.php
@@ -0,0 +1,25 @@
+countryRepository->findAllFlat();
+        //dd($countries);
+        return $this->ok($countries);
+    }
+}
diff --git a/src/backend/src/Controller/PersonController.php b/src/backend/src/Controller/PersonController.php
new file mode 100644
index 0000000..1bdf482
--- /dev/null
+++ b/src/backend/src/Controller/PersonController.php
@@ -0,0 +1,23 @@
+personRepository->get($personId);
+        return $this->ok($person);
+    }
+}
diff --git a/src/backend/src/Entity/Abstraction/BaseEntity.php b/src/backend/src/Entity/Abstraction/BaseEntity.php
index 73b79c6..358789b 100644
--- a/src/backend/src/Entity/Abstraction/BaseEntity.php
+++ b/src/backend/src/Entity/Abstraction/BaseEntity.php
@@ -2,10 +2,10 @@
 
 namespace App\Entity\Abstraction;
 
-use ReflectionClass;
 use Symfony\Component\Serializer\Serializer;
-use Symfony\Component\Serializer\Encoder\JsonEncoder;
 use Symfony\Component\Serializer\Normalizer\ObjectNormalizer;
+use Symfony\Component\Serializer\Normalizer\AbstractNormalizer;
+use Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer;
 
 class BaseEntity {
     protected array $hidden = [];
@@ -13,9 +13,14 @@ class BaseEntity {
     private array $systemParams = ['hidden', 'map', 'systemParams'];
     public function toArray() {
         $output = [];
-        $normalizers = [new ObjectNormalizer()];
+        $defaultContext = [
+            AbstractNormalizer::CIRCULAR_REFERENCE_HANDLER => function ($object, $format, $context) {
+                return '$' . basename(str_replace('\\', '/', $object::class));
+            },
+        ];
+        $normalizers = [new ObjectNormalizer(defaultContext: $defaultContext)];
         $serializer = new Serializer($normalizers);
-        $array = $serializer->normalize($this, null);
+        $array = $serializer->normalize($this, null, [ AbstractObjectNormalizer::ENABLE_MAX_DEPTH => true ]);
 
         $hidden = array_merge($this->hidden, $this->systemParams);
         foreach ($array as $key => $value) {
diff --git a/src/backend/src/Entity/Country.php b/src/backend/src/Entity/Country.php
new file mode 100644
index 0000000..66412f4
--- /dev/null
+++ b/src/backend/src/Entity/Country.php
@@ -0,0 +1,135 @@
+regions = new ArrayCollection();
+    }
+
+    public function getId(): ?int
+    {
+        return $this->id;
+    }
+
+    public function getCode(): ?string
+    {
+        return $this->code;
+    }
+
+    public function setCode(string $code): self
+    {
+        $this->code = $code;
+
+        return $this;
+    }
+
+    public function getName(): ?string
+    {
+        return $this->name;
+    }
+
+    public function setName(string $name): self
+    {
+        $this->name = $name;
+
+        return $this;
+    }
+
+    /**
+     * @return Collection|CountryRegion[]
+     */
+    public function getRegions(): Collection
+    {
+        return $this->regions ?? new ArrayCollection();
+    }
+
+    public function addRegion(CountryRegion $region): self
+    {
+        if (!$this->regions->contains($region)) {
+            $this->regions[] = $region;
+            $region->setCountry($this);
+        }
+
+        return $this;
+    }
+
+    public function removeRegion(CountryRegion $region): self
+    {
+        if ($this->regions->removeElement($region)) {
+            // set the owning side to null (unless already changed)
+            if ($region->getCountry() === $this) {
+                $region->setCountry(null);
+            }
+        }
+
+        return $this;
+    }
+
+    public function getSubname(): ?string
+    {
+        return $this->subname;
+    }
+
+    public function setSubname(?string $subname): self
+    {
+        $this->subname = $subname;
+
+        return $this;
+    }
+
+    public function getLocaleName(): ?string
+    {
+        return $this->localeName;
+    }
+
+    public function setLocaleName(?string $localeName): self
+    {
+        $this->localeName = $localeName;
+
+        return $this;
+    }
+}
diff --git a/src/backend/src/Entity/CountryRegion.php b/src/backend/src/Entity/CountryRegion.php
new file mode 100644
index 0000000..385f2d7
--- /dev/null
+++ b/src/backend/src/Entity/CountryRegion.php
@@ -0,0 +1,77 @@
+id;
+    }
+
+    public function getCode(): ?string
+    {
+        return $this->code;
+    }
+
+    public function setCode(string $code): self
+    {
+        $this->code = $code;
+
+        return $this;
+    }
+
+    public function getCountry(): ?Country
+    {
+        return $this->country;
+    }
+
+    public function setCountry(?Country $country): self
+    {
+        $this->country = $country;
+
+        return $this;
+    }
+
+    public function getName(): ?string
+    {
+        return $this->name;
+    }
+
+    public function setName(string $name): self
+    {
+        $this->name = $name;
+
+        return $this;
+    }
+}
diff --git a/src/backend/src/Entity/Person.php b/src/backend/src/Entity/Person.php
new file mode 100644
index 0000000..07f4564
--- /dev/null
+++ b/src/backend/src/Entity/Person.php
@@ -0,0 +1,150 @@
+id;
+    }
+
+    public function getName(): ?string
+    {
+        return $this->name;
+    }
+
+    public function setName(string $name): self
+    {
+        $this->name = $name;
+
+        return $this;
+    }
+
+    public function getSurname(): ?string
+    {
+        return $this->surname;
+    }
+
+    public function setSurname(string $surname): self
+    {
+        $this->surname = $surname;
+
+        return $this;
+    }
+
+    public function getCountry(): ?Country
+    {
+        return $this->country;
+    }
+
+    public function setCountry(?Country $country): self
+    {
+        $this->country = $country;
+
+        return $this;
+    }
+
+    public function getState(): ?CountryRegion
+    {
+        return $this->state;
+    }
+
+    public function setState(?CountryRegion $state): self
+    {
+        $this->state = $state;
+
+        return $this;
+    }
+
+    public function getCity(): ?string
+    {
+        return $this->city;
+    }
+
+    public function setCity(string $city): self
+    {
+        $this->city = $city;
+
+        return $this;
+    }
+
+    public function getZip(): ?string
+    {
+        return $this->zip;
+    }
+
+    public function setZip(string $zip): self
+    {
+        $this->zip = $zip;
+
+        return $this;
+    }
+
+    public function getAvatar(): ?string
+    {
+        return $this->avatar;
+    }
+
+    public function setAvatar(string $avatar): self
+    {
+        $this->avatar = $avatar;
+
+        return $this;
+    }
+
+    public function generateAvatar($email) {
+        if (!$this->avatar) {
+            $this->avatar = 'https://www.gravatar.com/avatar/' . md5($email) . '?s=512&d=robohash';
+        }
+    }
+}
diff --git a/src/backend/src/Entity/User.php b/src/backend/src/Entity/User.php
index 9046569..25dce6c 100644
--- a/src/backend/src/Entity/User.php
+++ b/src/backend/src/Entity/User.php
@@ -2,6 +2,8 @@
 
 namespace App\Entity;
 
+use App\Entity\Person;
+use App\Enums\UserRoleEnum;
 use Doctrine\ORM\Mapping as ORM;
 use App\Repository\UserRepository;
 use App\Entity\Abstraction\BaseEntity;
@@ -41,29 +43,10 @@ class User extends BaseEntity implements UserInterface, PasswordAuthenticatedUse
     private $email;
 
     /**
-     * @ORM\Column(type="string", length=255)
+     * @ORM\OneToOne(targetEntity=Person::class, cascade={"persist", "remove"})
      */
-    private $name;
+    private $person;
 
-    /**
-     * @ORM\Column(type="string", length=255)
-     */
-    private $surname;
-
-    /**
-     * @ORM\Column(type="string", length=255, nullable=true)
-     */
-    private $avatar;
-
-    /**
-     * @ORM\Column(type="string", length=3, nullable=true)
-     */
-    private $country;
-
-    /**
-     * @ORM\Column(type="string", length=10, nullable=true)
-     */
-    private $state;
 
     public static function createFromPayload($username, array $payload)
     {
@@ -108,7 +91,12 @@ class User extends BaseEntity implements UserInterface, PasswordAuthenticatedUse
     {
         $roles = $this->roles;
         // guarantee every user at least has ROLE_USER
-        $roles[] = 'ROLE_USER';
+        $roles[] = UserRoleEnum::User;
+        if ($this->id === 1) {
+            $roles[] = UserRoleEnum::UserVerified;
+            $roles[] = UserRoleEnum::Moderator;
+            $roles[] = UserRoleEnum::Administrator;
+        }
 
         return array_unique($roles);
     }
@@ -167,69 +155,15 @@ class User extends BaseEntity implements UserInterface, PasswordAuthenticatedUse
         return $this;
     }
 
-    public function getName(): ?string
+    public function getPerson(): ?Person
     {
-        return $this->name;
+        return $this->person;
     }
 
-    public function setName(string $name): self
+    public function setPerson(?Person $person): self
     {
-        $this->name = $name;
+        $this->person = $person;
 
         return $this;
     }
-
-    public function getSurname(): ?string
-    {
-        return $this->surname;
-    }
-
-    public function setSurname(string $surname): self
-    {
-        $this->surname = $surname;
-
-        return $this;
-    }
-
-    public function getAvatar(): ?string
-    {
-        return $this->avatar;
-    }
-
-    public function setAvatar(?string $avatar): self
-    {
-        $this->avatar = $avatar;
-
-        return $this;
-    }
-
-    public function getCountry(): ?string
-    {
-        return $this->country;
-    }
-
-    public function setCountry(?string $country): self
-    {
-        $this->country = $country;
-
-        return $this;
-    }
-
-    public function getState(): ?string
-    {
-        return $this->state;
-    }
-
-    public function setState(?string $state): self
-    {
-        $this->state = $state;
-
-        return $this;
-    }
-
-    public function generateAvatar() {
-        if (!$this->avatar) {
-            $this->avatar = 'https://www.gravatar.com/avatar/' . md5($this->email) . '?s=514&d=robohash';
-        }
-    }
 }
diff --git a/src/backend/src/Enums/UserRoleEnum.php b/src/backend/src/Enums/UserRoleEnum.php
new file mode 100644
index 0000000..a932acc
--- /dev/null
+++ b/src/backend/src/Enums/UserRoleEnum.php
@@ -0,0 +1,13 @@
+createQueryBuilder('c')
+            ->andWhere('c.exampleField = :val')
+            ->setParameter('val', $value)
+            ->orderBy('c.id', 'ASC')
+            ->setMaxResults(10)
+            ->getQuery()
+            ->getResult()
+        ;
+    }
+    */
+
+    /*
+    public function findOneBySomeField($value): ?CountryRegion
+    {
+        return $this->createQueryBuilder('c')
+            ->andWhere('c.exampleField = :val')
+            ->setParameter('val', $value)
+            ->getQuery()
+            ->getOneOrNullResult()
+        ;
+    }
+    */
+}
diff --git a/src/backend/src/Repository/CountryRepository.php b/src/backend/src/Repository/CountryRepository.php
new file mode 100644
index 0000000..3d1d538
--- /dev/null
+++ b/src/backend/src/Repository/CountryRepository.php
@@ -0,0 +1,60 @@
+createQueryBuilder('c')
+            ->orderBy('c.name', 'ASC')
+            ->getQuery()
+            ->setHint(Query::HINT_FORCE_PARTIAL_LOAD, true)
+            ->getResult()
+        ;
+    }
+
+    // /**
+    //  * @return Country[] Returns an array of Country objects
+    //  */
+    /*
+    public function findByExampleField($value)
+    {
+        return $this->createQueryBuilder('c')
+            ->andWhere('c.exampleField = :val')
+            ->setParameter('val', $value)
+            ->orderBy('c.id', 'ASC')
+            ->setMaxResults(10)
+            ->getQuery()
+            ->getResult()
+        ;
+    }
+    */
+
+    /*
+    public function findOneBySomeField($value): ?Country
+    {
+        return $this->createQueryBuilder('c')
+            ->andWhere('c.exampleField = :val')
+            ->setParameter('val', $value)
+            ->getQuery()
+            ->getOneOrNullResult()
+        ;
+    }
+    */
+}
diff --git a/src/backend/src/Repository/PersonRepository.php b/src/backend/src/Repository/PersonRepository.php
new file mode 100644
index 0000000..8b2496c
--- /dev/null
+++ b/src/backend/src/Repository/PersonRepository.php
@@ -0,0 +1,48 @@
+createQueryBuilder('p')
+            ->andWhere('p.exampleField = :val')
+            ->setParameter('val', $value)
+            ->orderBy('p.id', 'ASC')
+            ->setMaxResults(10)
+            ->getQuery()
+            ->getResult()
+        ;
+    }
+    */
+
+    public function get(int $personId): ?Person
+    {
+        return $this->createQueryBuilder('p')
+            ->andWhere('p.id = :id')
+            ->setParameter('id', $personId)
+            ->getQuery()
+            ->getOneOrNullResult()
+        ;
+    }
+}
diff --git a/src/backend/src/Traits/JsonResponseTrait.php b/src/backend/src/Traits/JsonResponseTrait.php
index 05d03d1..85323c0 100644
--- a/src/backend/src/Traits/JsonResponseTrait.php
+++ b/src/backend/src/Traits/JsonResponseTrait.php
@@ -3,7 +3,6 @@
 namespace App\Traits;
 
 use App\Entity\Abstraction\BaseEntity;
-use Symfony\Component\HttpFoundation\Request;
 use Symfony\Component\HttpFoundation\Response;
 use Symfony\Component\HttpFoundation\JsonResponse;
 
@@ -30,6 +29,14 @@ trait JsonResponseTrait {
             $data = $data->toArray();
         }
 
+        if (is_array($data)) {
+            foreach ($data as $key => $value) {
+                if ($value instanceof BaseEntity) {
+                    $data[$key] = $value->toArray();
+                }
+            }
+        }
+
         return new JsonResponse($data, $code, $headers);
     }
 }
\ No newline at end of file
diff --git a/src/frontend/src/app/app-routing.module.ts b/src/frontend/src/app/app-routing.module.ts
index f044adc..af10f98 100644
--- a/src/frontend/src/app/app-routing.module.ts
+++ b/src/frontend/src/app/app-routing.module.ts
@@ -1,14 +1,17 @@
 import { NgModule } from '@angular/core';
 import { Route, RouterModule } from '@angular/router';
+import { AuthTabEnum } from './modules/auth/enums/auth-tab.enum';
+import { UserRoleEnum } from './modules/auth/enums/user-role.enum';
 import { AuthGuard } from './modules/auth/services/auth/auth.guard';
 import { NotFoundComponent } from './modules/shared/components/not-found/not-found.component';
 
-interface AppMenuEntry {
+export interface AppMenuEntry {
     label: string;
     icon: string;
     path?: string;
     matchExact?: boolean;
     level?: number;
+    roles: UserRoleEnum[];
 }
 
 interface AppRoute extends Route {
@@ -16,10 +19,6 @@ interface AppRoute extends Route {
 }
 
 export const appRoutes: AppRoute[] = [
-    {
-        path: 'auth',
-        loadChildren: () => import('./modules/auth/auth.module').then(m => m.AuthModule),
-    },
     {
         path: '',
         component: NotFoundComponent,
@@ -27,19 +26,49 @@ export const appRoutes: AppRoute[] = [
             {
                 label: 'MENU.HOME',
                 icon: 'fa fa-home',
+                roles: [],
                 matchExact: true,
             },
         ],
         canActivate: [ AuthGuard, ],
         canActivateChild: [ AuthGuard, ],
     },
+    {
+        path: 'auth',
+        loadChildren: () => import('./modules/auth/auth.module').then(m => m.AuthModule),
+        menuEntries: [
+            {
+                path: `auth/${AuthTabEnum.Login}`,
+                label: 'AUTH.SIGN_IN',
+                icon: 'fa fa-sign-in',
+                roles: [ UserRoleEnum.None ],
+                matchExact: true,
+            },
+            {
+                path: `auth/${AuthTabEnum.Register}`,
+                label: 'AUTH.SIGN_UP',
+                icon: 'fa fa-sign-out',
+                roles: [ UserRoleEnum.None ],
+                matchExact: true,
+            },
+            {
+                path: `auth/${AuthTabEnum.RestorePassword}`,
+                label: 'AUTH.RESTORE_ACCOUNT',
+                icon: 'fa fa-undo',
+                roles: [ UserRoleEnum.None ],
+                matchExact: true,
+            },
+
+        ],
+    },
     {
         path: 'profile',
-        component: NotFoundComponent,
+        loadChildren: () => import('./modules/profile/profile.module').then(m => m.ProfileModule),
         menuEntries: [
             {
                 label: 'MENU.PROFILE',
                 icon: 'fa fa-user',
+                roles: [ UserRoleEnum.User ],
             },
         ],
         canActivate: [ AuthGuard, ],
@@ -52,6 +81,7 @@ export const appRoutes: AppRoute[] = [
             {
                 label: 'MENU.COMMUNITY',
                 icon: 'fa fa-users',
+                roles: [ UserRoleEnum.User ],
             },
         ],
         canActivate: [ AuthGuard, ],
@@ -64,6 +94,7 @@ export const appRoutes: AppRoute[] = [
             {
                 label: 'MENU.QUESTIONS',
                 icon: 'fa fa-question',
+                roles: [ UserRoleEnum.User ],
                 level: 1,
             }
         ],
@@ -77,6 +108,7 @@ export const appRoutes: AppRoute[] = [
             {
                 label: 'MENU.MESSAGES',
                 icon: 'fa fa-comments',
+                roles: [ UserRoleEnum.User ],
             },
         ],
         canActivate: [ AuthGuard, ],
@@ -89,6 +121,7 @@ export const appRoutes: AppRoute[] = [
             {
                 label: 'MENU.TESTS',
                 icon: 'fa fa-heartbeat',
+                roles: [ UserRoleEnum.User ],
             },
         ],
         canActivate: [ AuthGuard, ],
@@ -101,6 +134,7 @@ export const appRoutes: AppRoute[] = [
             {
                 label: 'MENU.RESEARCH',
                 icon: 'fa fa-flask',
+                roles: [ UserRoleEnum.User ],
             },
         ],
         canActivate: [ AuthGuard, ],
@@ -113,12 +147,14 @@ export const appRoutes: AppRoute[] = [
             {
                 label: 'MENU.ADMIN',
                 icon: 'fa fa-id-card',
+                roles: [ UserRoleEnum.Administrator, UserRoleEnum.Moderator ],
                 matchExact: true,
             },
             {
                 path: 'admin/users',
                 label: 'MENU.USERS',
                 icon: 'fa fa-users',
+                roles: [ UserRoleEnum.Administrator, UserRoleEnum.Moderator ],
                 level: 1,
             }
         ],
diff --git a/src/frontend/src/app/app.component.html b/src/frontend/src/app/app.component.html
index 93df4d0..fd12d2b 100644
--- a/src/frontend/src/app/app.component.html
+++ b/src/frontend/src/app/app.component.html
@@ -1,79 +1,77 @@
-
-
-    
-        
-        {{ 'APP.NAME' | translate }}
-        
-        
-    
-
-
-    
-
-
-    
-