The Internet

Files over HTTP

If a dataset is already in a tabular format somewhere on the internet, getting it into tablecloth is trivially easy. You can just pass the URL directly to tablecloth and it will parse the data in to a table automatically.

For example this dataset of world cities is available as a CSV and Just Works:

(tc/dataset "https://raw.githubusercontent.com/datasets/world-cities/refs/heads/main/data/world-cities.csv")

https://raw.githubusercontent.com/datasets/world-cities/refs/heads/main/data/world-cities.csv [28796 4]:

name country subcountry geonameid
les Escaldes Andorra Escaldes-Engordany 3040051
Andorra la Vella Andorra Andorra la Vella 3041563
Warīsān United Arab Emirates Dubai 290503
Umm Suqaym United Arab Emirates Dubai 290581
Umm Al Quwain City United Arab Emirates Imarat Umm al Qaywayn 290594
Ar Rāshidīyah United Arab Emirates Dubai 291061
Ras Al Khaimah City United Arab Emirates Imarat Ra’s al Khaymah 291074
Zayed City United Arab Emirates Abu Dhabi 291580
Khawr Fakkān United Arab Emirates Sharjah 291696
Kalbā United Arab Emirates Sharjah 291763
Gwanda Zimbabwe Matabeleland South Province 890516
Gokwe Zimbabwe Midlands Province 890983
Chiredzi Zimbabwe Masvingo Province 893485
Chipinge Zimbabwe Manicaland 893549
Chinhoyi Zimbabwe Mashonaland West 893697
Chegutu Zimbabwe Mashonaland West 894239
Bulawayo Zimbabwe Bulawayo 894701
Bindura Zimbabwe Mashonaland Central 895061
Beitbridge Zimbabwe Matabeleland South Province 895269
Epworth Zimbabwe Harare 1085510
Chitungwiza Zimbabwe Harare 1106542

APIs

JSON data also often comes in a format that tablecloth knows how to handle, but JSON API responses typically have results nested inside some type of data structure and require at least a little bit of parsing to extract the relevant data. How much parsing depends on the structure. Here, we’ll explore how to work with a few kinds of differently-shaped data to get it into a tablecloth dataset.

Some of this borders on data manipulation, but the idea is that here we’ll cover the bare minimum that’s necessary to get some common shapes of data into a dataset, and we’ll look at data wrangling more in-depth later on.

To make the initial request to any API endpoint we need to add the clj-http library to our project and require it. We’ll also use charred, the fastest JSON and CSV parsing library for Clojure, to parse the responses:

clj-http/clj-http {:mvn/version "3.13.0"}
com.cnuernber/charred {:mvn/version "1.034"}
(require '[clj-http.client :as http])
(require '[charred.api :as ch])

Simple Tabular Data

Some APIs return data in a simple tabular format that just works with tablecloth. The Pokemon API is one such example. Requesting the first 100 Pokemon returns a response with the results nested under a “results” key. First we parse the response body as JSON, and we can see that the results are a list of JSON objects.

(def pokemon-response (http/get "https://pokeapi.co/api/v2/pokemon?limit=100"))
(-> pokemon-response
    :body
    ch/read-json)
{"next" "https://pokeapi.co/api/v2/pokemon?offset=100&limit=100",
 "results"
 [{"url" "https://pokeapi.co/api/v2/pokemon/1/", "name" "bulbasaur"}
  {"url" "https://pokeapi.co/api/v2/pokemon/2/", "name" "ivysaur"}
  {"url" "https://pokeapi.co/api/v2/pokemon/3/", "name" "venusaur"}
  {"url" "https://pokeapi.co/api/v2/pokemon/4/", "name" "charmander"}
  {"url" "https://pokeapi.co/api/v2/pokemon/5/", "name" "charmeleon"}
  {"url" "https://pokeapi.co/api/v2/pokemon/6/", "name" "charizard"}
  {"url" "https://pokeapi.co/api/v2/pokemon/7/", "name" "squirtle"}
  {"url" "https://pokeapi.co/api/v2/pokemon/8/", "name" "wartortle"}
  {"url" "https://pokeapi.co/api/v2/pokemon/9/", "name" "blastoise"}
  {"url" "https://pokeapi.co/api/v2/pokemon/10/", "name" "caterpie"}
  {"url" "https://pokeapi.co/api/v2/pokemon/11/", "name" "metapod"}
  {"url" "https://pokeapi.co/api/v2/pokemon/12/", "name" "butterfree"}
  {"url" "https://pokeapi.co/api/v2/pokemon/13/", "name" "weedle"}
  {"url" "https://pokeapi.co/api/v2/pokemon/14/", "name" "kakuna"}
  {"url" "https://pokeapi.co/api/v2/pokemon/15/", "name" "beedrill"}
  {"url" "https://pokeapi.co/api/v2/pokemon/16/", "name" "pidgey"}
  {"url" "https://pokeapi.co/api/v2/pokemon/17/", "name" "pidgeotto"}
  {"url" "https://pokeapi.co/api/v2/pokemon/18/", "name" "pidgeot"}
  {"url" "https://pokeapi.co/api/v2/pokemon/19/", "name" "rattata"}
  {"url" "https://pokeapi.co/api/v2/pokemon/20/", "name" "raticate"}
  {"url" "https://pokeapi.co/api/v2/pokemon/21/", "name" "spearow"}
  {"url" "https://pokeapi.co/api/v2/pokemon/22/", "name" "fearow"}
  {"url" "https://pokeapi.co/api/v2/pokemon/23/", "name" "ekans"}
  {"url" "https://pokeapi.co/api/v2/pokemon/24/", "name" "arbok"}
  {"url" "https://pokeapi.co/api/v2/pokemon/25/", "name" "pikachu"}
  {"url" "https://pokeapi.co/api/v2/pokemon/26/", "name" "raichu"}
  {"url" "https://pokeapi.co/api/v2/pokemon/27/", "name" "sandshrew"}
  {"url" "https://pokeapi.co/api/v2/pokemon/28/", "name" "sandslash"}
  {"url" "https://pokeapi.co/api/v2/pokemon/29/", "name" "nidoran-f"}
  {"url" "https://pokeapi.co/api/v2/pokemon/30/", "name" "nidorina"}
  {"url" "https://pokeapi.co/api/v2/pokemon/31/", "name" "nidoqueen"}
  {"url" "https://pokeapi.co/api/v2/pokemon/32/", "name" "nidoran-m"}
  {"url" "https://pokeapi.co/api/v2/pokemon/33/", "name" "nidorino"}
  {"url" "https://pokeapi.co/api/v2/pokemon/34/", "name" "nidoking"}
  {"url" "https://pokeapi.co/api/v2/pokemon/35/", "name" "clefairy"}
  {"url" "https://pokeapi.co/api/v2/pokemon/36/", "name" "clefable"}
  {"url" "https://pokeapi.co/api/v2/pokemon/37/", "name" "vulpix"}
  {"url" "https://pokeapi.co/api/v2/pokemon/38/", "name" "ninetales"}
  {"url" "https://pokeapi.co/api/v2/pokemon/39/", "name" "jigglypuff"}
  {"url" "https://pokeapi.co/api/v2/pokemon/40/", "name" "wigglytuff"}
  {"url" "https://pokeapi.co/api/v2/pokemon/41/", "name" "zubat"}
  {"url" "https://pokeapi.co/api/v2/pokemon/42/", "name" "golbat"}
  {"url" "https://pokeapi.co/api/v2/pokemon/43/", "name" "oddish"}
  {"url" "https://pokeapi.co/api/v2/pokemon/44/", "name" "gloom"}
  {"url" "https://pokeapi.co/api/v2/pokemon/45/", "name" "vileplume"}
  {"url" "https://pokeapi.co/api/v2/pokemon/46/", "name" "paras"}
  {"url" "https://pokeapi.co/api/v2/pokemon/47/", "name" "parasect"}
  {"url" "https://pokeapi.co/api/v2/pokemon/48/", "name" "venonat"}
  {"url" "https://pokeapi.co/api/v2/pokemon/49/", "name" "venomoth"}
  {"url" "https://pokeapi.co/api/v2/pokemon/50/", "name" "diglett"}
  {"url" "https://pokeapi.co/api/v2/pokemon/51/", "name" "dugtrio"}
  {"url" "https://pokeapi.co/api/v2/pokemon/52/", "name" "meowth"}
  {"url" "https://pokeapi.co/api/v2/pokemon/53/", "name" "persian"}
  {"url" "https://pokeapi.co/api/v2/pokemon/54/", "name" "psyduck"}
  {"url" "https://pokeapi.co/api/v2/pokemon/55/", "name" "golduck"}
  {"url" "https://pokeapi.co/api/v2/pokemon/56/", "name" "mankey"}
  {"url" "https://pokeapi.co/api/v2/pokemon/57/", "name" "primeape"}
  {"url" "https://pokeapi.co/api/v2/pokemon/58/", "name" "growlithe"}
  {"url" "https://pokeapi.co/api/v2/pokemon/59/", "name" "arcanine"}
  {"url" "https://pokeapi.co/api/v2/pokemon/60/", "name" "poliwag"}
  {"url" "https://pokeapi.co/api/v2/pokemon/61/", "name" "poliwhirl"}
  {"url" "https://pokeapi.co/api/v2/pokemon/62/", "name" "poliwrath"}
  {"url" "https://pokeapi.co/api/v2/pokemon/63/", "name" "abra"}
  {"url" "https://pokeapi.co/api/v2/pokemon/64/", "name" "kadabra"}
  {"url" "https://pokeapi.co/api/v2/pokemon/65/", "name" "alakazam"}
  {"url" "https://pokeapi.co/api/v2/pokemon/66/", "name" "machop"}
  {"url" "https://pokeapi.co/api/v2/pokemon/67/", "name" "machoke"}
  {"url" "https://pokeapi.co/api/v2/pokemon/68/", "name" "machamp"}
  {"url" "https://pokeapi.co/api/v2/pokemon/69/", "name" "bellsprout"}
  {"url" "https://pokeapi.co/api/v2/pokemon/70/", "name" "weepinbell"}
  {"url" "https://pokeapi.co/api/v2/pokemon/71/", "name" "victreebel"}
  {"url" "https://pokeapi.co/api/v2/pokemon/72/", "name" "tentacool"}
  {"url" "https://pokeapi.co/api/v2/pokemon/73/", "name" "tentacruel"}
  {"url" "https://pokeapi.co/api/v2/pokemon/74/", "name" "geodude"}
  {"url" "https://pokeapi.co/api/v2/pokemon/75/", "name" "graveler"}
  {"url" "https://pokeapi.co/api/v2/pokemon/76/", "name" "golem"}
  {"url" "https://pokeapi.co/api/v2/pokemon/77/", "name" "ponyta"}
  {"url" "https://pokeapi.co/api/v2/pokemon/78/", "name" "rapidash"}
  {"url" "https://pokeapi.co/api/v2/pokemon/79/", "name" "slowpoke"}
  {"url" "https://pokeapi.co/api/v2/pokemon/80/", "name" "slowbro"}
  {"url" "https://pokeapi.co/api/v2/pokemon/81/", "name" "magnemite"}
  {"url" "https://pokeapi.co/api/v2/pokemon/82/", "name" "magneton"}
  {"url" "https://pokeapi.co/api/v2/pokemon/83/", "name" "farfetchd"}
  {"url" "https://pokeapi.co/api/v2/pokemon/84/", "name" "doduo"}
  {"url" "https://pokeapi.co/api/v2/pokemon/85/", "name" "dodrio"}
  {"url" "https://pokeapi.co/api/v2/pokemon/86/", "name" "seel"}
  {"url" "https://pokeapi.co/api/v2/pokemon/87/", "name" "dewgong"}
  {"url" "https://pokeapi.co/api/v2/pokemon/88/", "name" "grimer"}
  {"url" "https://pokeapi.co/api/v2/pokemon/89/", "name" "muk"}
  {"url" "https://pokeapi.co/api/v2/pokemon/90/", "name" "shellder"}
  {"url" "https://pokeapi.co/api/v2/pokemon/91/", "name" "cloyster"}
  {"url" "https://pokeapi.co/api/v2/pokemon/92/", "name" "gastly"}
  {"url" "https://pokeapi.co/api/v2/pokemon/93/", "name" "haunter"}
  {"url" "https://pokeapi.co/api/v2/pokemon/94/", "name" "gengar"}
  {"url" "https://pokeapi.co/api/v2/pokemon/95/", "name" "onix"}
  {"url" "https://pokeapi.co/api/v2/pokemon/96/", "name" "drowzee"}
  {"url" "https://pokeapi.co/api/v2/pokemon/97/", "name" "hypno"}
  {"url" "https://pokeapi.co/api/v2/pokemon/98/", "name" "krabby"}
  {"url" "https://pokeapi.co/api/v2/pokemon/99/", "name" "kingler"}
  {"url" "https://pokeapi.co/api/v2/pokemon/100/", "name" "voltorb"}],
 "count" 1302,
 "previous" nil}

Passing this list of results to tablecloth will give us a nice table by default:

(-> pokemon-response
    :body
    ch/read-json
    (get "results")
    tc/dataset)

_unnamed [100 2]:

url name
https://pokeapi.co/api/v2/pokemon/1/ bulbasaur
https://pokeapi.co/api/v2/pokemon/2/ ivysaur
https://pokeapi.co/api/v2/pokemon/3/ venusaur
https://pokeapi.co/api/v2/pokemon/4/ charmander
https://pokeapi.co/api/v2/pokemon/5/ charmeleon
https://pokeapi.co/api/v2/pokemon/6/ charizard
https://pokeapi.co/api/v2/pokemon/7/ squirtle
https://pokeapi.co/api/v2/pokemon/8/ wartortle
https://pokeapi.co/api/v2/pokemon/9/ blastoise
https://pokeapi.co/api/v2/pokemon/10/ caterpie
https://pokeapi.co/api/v2/pokemon/90/ shellder
https://pokeapi.co/api/v2/pokemon/91/ cloyster
https://pokeapi.co/api/v2/pokemon/92/ gastly
https://pokeapi.co/api/v2/pokemon/93/ haunter
https://pokeapi.co/api/v2/pokemon/94/ gengar
https://pokeapi.co/api/v2/pokemon/95/ onix
https://pokeapi.co/api/v2/pokemon/96/ drowzee
https://pokeapi.co/api/v2/pokemon/97/ hypno
https://pokeapi.co/api/v2/pokemon/98/ krabby
https://pokeapi.co/api/v2/pokemon/99/ kingler
https://pokeapi.co/api/v2/pokemon/100/ voltorb

While we’re here, we can do a little bonus side quest to fill out this dataset and demonstrate how to recursively fetch all Pokemon by automatically following the “next” links that are included in the responses, adding each batch of results to our dataset:

(defn fetch-all-pokemon [url]
  (loop [current-url url
         ds (tc/dataset)]
    (if (nil? current-url)
      ds
      (let [{:strs [results next]} (-> current-url http/get :body ch/read-json)]
        (recur next (tc/concat ds (tc/dataset results)))))))
(fetch-all-pokemon "https://pokeapi.co/api/v2/pokemon?limit=100")

_unnamed [1302 2]:

url name
https://pokeapi.co/api/v2/pokemon/1/ bulbasaur
https://pokeapi.co/api/v2/pokemon/2/ ivysaur
https://pokeapi.co/api/v2/pokemon/3/ venusaur
https://pokeapi.co/api/v2/pokemon/4/ charmander
https://pokeapi.co/api/v2/pokemon/5/ charmeleon
https://pokeapi.co/api/v2/pokemon/6/ charizard
https://pokeapi.co/api/v2/pokemon/7/ squirtle
https://pokeapi.co/api/v2/pokemon/8/ wartortle
https://pokeapi.co/api/v2/pokemon/9/ blastoise
https://pokeapi.co/api/v2/pokemon/10/ caterpie
https://pokeapi.co/api/v2/pokemon/10267/ koraidon-gliding-build
https://pokeapi.co/api/v2/pokemon/10268/ miraidon-low-power-mode
https://pokeapi.co/api/v2/pokemon/10269/ miraidon-drive-mode
https://pokeapi.co/api/v2/pokemon/10270/ miraidon-aquatic-mode
https://pokeapi.co/api/v2/pokemon/10271/ miraidon-glide-mode
https://pokeapi.co/api/v2/pokemon/10272/ ursaluna-bloodmoon
https://pokeapi.co/api/v2/pokemon/10273/ ogerpon-wellspring-mask
https://pokeapi.co/api/v2/pokemon/10274/ ogerpon-hearthflame-mask
https://pokeapi.co/api/v2/pokemon/10275/ ogerpon-cornerstone-mask
https://pokeapi.co/api/v2/pokemon/10276/ terapagos-terastal
https://pokeapi.co/api/v2/pokemon/10277/ terapagos-stellar

TODO: Are any of these worth including?

Wide Data

Other APIs return very wide data, as in data that is spread out across many columns.

Returns extensive country data with many columns

(def countries-response (http/get "https://restcountries.com/v3.1/all"))
(-> countries-response
    :body
    (ch/read-json))
[{"landlocked" false,
  "latlng" [-54.5 -37.0],
  "area" 3903.0,
  "altSpellings" ["GS" "South Georgia and the South Sandwich Islands"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/mJzdaBwKBbm2B81q9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1983629"},
  "demonyms"
  {"eng"
   {"f" "South Georgian South Sandwich Islander",
    "m" "South Georgian South Sandwich Islander"}},
  "translations"
  {"kor" {"official" "조지아", "common" "조지아"},
   "zho" {"official" "南乔治亚岛和南桑威奇群岛", "common" "南乔治亚"},
   "hun"
   {"official" "Déli-Georgia és Déli-Sandwich-szigetek",
    "common" "Déli-Georgia és Déli-Sandwich-szigetek"},
   "rus"
   {"official" "Южная Георгия и Южные Сандвичевы острова",
    "common" "Южная Георгия и Южные Сандвичевы острова"},
   "swe" {"official" "Sydgeorgien", "common" "Sydgeorgien"},
   "ces"
   {"official" "Jižní Georgie a Jižní Sandwichovy ostrovy",
    "common" "Jižní Georgie a Jižní Sandwichovy ostrovy"},
   "deu"
   {"official" "Südgeorgien und die Südlichen Sandwichinseln",
    "common" "Südgeorgien und die Südlichen Sandwichinseln"},
   "ara"
   {"official" "جورجيا الجنوبية وجزر ساندوتش الجنوبية",
    "common" "جورجيا الجنوبية"},
   "urd"
   {"official" "جنوبی جارجیا و جزائر جنوبی سینڈوچ",
    "common" "جنوبی جارجیا"},
   "srp"
   {"official" "Јужна Џорџија и Јужна Сендвичка Острва",
    "common" "Јужна Џорџија и Јужна Сендвичка Острва"},
   "tur"
   {"official" "Güney Georgia ve Güney Sandwich Adaları",
    "common" "Güney Georgia ve Güney Sandwich Adaları"},
   "pol"
   {"official" "Georgia Południowa i Sandwich Południowy",
    "common" "Georgia Południowa i Sandwich Południowy"},
   "cym"
   {"official" "South Georgia and the South Sandwich Islands",
    "common" "South Georgia"},
   "hrv"
   {"official" "Južna Džordžija i Otoci Južni Sendvič",
    "common" "Južna Georgija i otočje Južni Sandwich"},
   "spa"
   {"official" "Georgia del Sur y las Islas Sandwich del Sur",
    "common" "Islas Georgias del Sur y Sandwich del Sur"},
   "fin"
   {"official" "Etelä-Georgia ja Eteläiset Sandwichsaaret",
    "common" "Etelä-Georgia ja Eteläiset Sandwichsaaret"},
   "per"
   {"official" "جزایر جورجیای جنوبی و ساندویچ جنوبی",
    "common" "جزایر جورجیای جنوبی و ساندویچ جنوبی"},
   "nld"
   {"official" "Zuid-Georgië en de Zuidelijke Sandwich-eilanden",
    "common" "Zuid-Georgia en Zuidelijke Sandwicheilanden"},
   "fra"
   {"official" "Géorgie du Sud et les îles Sandwich du Sud",
    "common" "Géorgie du Sud-et-les Îles Sandwich du Sud"},
   "ita"
   {"official" "Georgia del Sud e isole Sandwich del Sud",
    "common" "Georgia del Sud e Isole Sandwich Meridionali"},
   "jpn"
   {"official" "サウスジョージア·サウスサンドウィッチ諸島",
    "common" "サウスジョージア・サウスサンドウィッチ諸島"},
   "est"
   {"official" "Lõuna-Georgia ja Lõuna-Sandwichi saared",
    "common" "Lõuna-Georgia ja Lõuna-Sandwichi saared"},
   "por"
   {"official" "Geórgia do Sul e Sandwich do Sul",
    "common" "Ilhas Geórgia do Sul e Sandwich do Sul"},
   "slk"
   {"official" "Južná Georgia a Južné Sandwichove ostrovy",
    "common" "Južná Georgia a Južné Sandwichove ostrovy"},
   "bre"
   {"official" "Georgia ar Su hag Inizi Sandwich ar Su",
    "common" "Georgia ar Su hag Inizi Sandwich ar Su"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["00"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/gs.svg",
   "png" "https://flagcdn.com/w320/gs.png"},
  "unMember" false,
  "name"
  {"official" "South Georgia and the South Sandwich Islands",
   "nativeName"
   {"eng"
    {"official" "South Georgia and the South Sandwich Islands",
     "common" "South Georgia"}},
   "common" "South Georgia"},
  "capitalInfo" {"latlng" [-54.28 -36.5]},
  "tld" [".gs"],
  "ccn3" "239",
  "status" "officially-assigned",
  "region" "Antarctic",
  "languages" {"eng" "English"},
  "currencies" {"SHP" {"name" "Saint Helena pound", "symbol" "£"}},
  "independent" false,
  "population" 30,
  "cca3" "SGS",
  "capital" ["King Edward Point"],
  "car" {"signs" [""], "side" "right"},
  "timezones" ["UTC-02:00"],
  "startOfWeek" "monday",
  "continents" ["Antarctica"],
  "flag" "🇬🇸",
  "cca2" "GS"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [12.11666666 -61.66666666],
  "area" 344.0,
  "altSpellings" ["GD"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/rqWyfUAt4xhvk1Zy9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/550727"},
  "demonyms"
  {"eng" {"f" "Grenadian", "m" "Grenadian"},
   "fra" {"f" "Grenadienne", "m" "Grenadien"}},
  "translations"
  {"kor" {"official" "그레나다", "common" "그레나다"},
   "zho" {"official" "格林纳达", "common" "格林纳达"},
   "hun" {"official" "Grenada", "common" "Grenada"},
   "rus" {"official" "Гренада", "common" "Гренада"},
   "swe" {"official" "Grenada", "common" "Grenada"},
   "ces" {"official" "Grenada", "common" "Grenada"},
   "deu" {"official" "Grenada", "common" "Grenada"},
   "ara" {"official" "غرينادا", "common" "غرينادا"},
   "urd" {"official" "گریناڈا", "common" "گریناڈا"},
   "srp" {"official" "Гренада", "common" "Гренада"},
   "tur" {"official" "Grenada", "common" "Grenada"},
   "pol" {"official" "Grenada", "common" "Grenada"},
   "cym" {"official" "Grenada", "common" "Grenada"},
   "hrv" {"official" "Grenada", "common" "Grenada"},
   "spa" {"official" "Granada", "common" "Grenada"},
   "fin" {"official" "Grenada", "common" "Grenada"},
   "per" {"official" "گرنادا", "common" "گرنادا"},
   "nld" {"official" "Grenada", "common" "Grenada"},
   "fra" {"official" "Grenade", "common" "Grenade"},
   "ita" {"official" "Grenada", "common" "Grenada"},
   "jpn" {"official" "グレナダ", "common" "グレナダ"},
   "est" {"official" "Grenada", "common" "Grenada"},
   "por" {"official" "Grenada", "common" "Granada"},
   "slk" {"official" "Grenada", "common" "Grenada"},
   "bre" {"official" "Grenada", "common" "Grenada"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/gd.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/gd.png"},
  "idd" {"suffixes" ["473"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/gd.svg",
   "alt"
   "The flag of Grenada features a large central rectangular area surrounded by a red border, with three five-pointed yellow stars centered on the top and bottom borders. The central rectangle is divided diagonally into four alternating triangular areas of yellow at the top and bottom and green on the hoist and fly sides, and a five-pointed yellow star on a red circle is superimposed at its center. A symbolic nutmeg pod is situated on the green hoist-side triangle.",
   "png" "https://flagcdn.com/w320/gd.png"},
  "unMember" true,
  "name"
  {"official" "Grenada",
   "nativeName" {"eng" {"official" "Grenada", "common" "Grenada"}},
   "common" "Grenada"},
  "capitalInfo" {"latlng" [32.38 -64.68]},
  "tld" [".gd"],
  "ccn3" "308",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "cioc" "GRN",
  "currencies"
  {"XCD" {"name" "Eastern Caribbean dollar", "symbol" "$"}},
  "independent" true,
  "population" 112519,
  "cca3" "GRD",
  "capital" ["St. George's"],
  "car" {"signs" ["WG"], "side" "left"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇬🇩",
  "fifa" "GRN",
  "cca2" "GD"}
 {"subregion" "Western Europe",
  "landlocked" true,
  "latlng" [47.0 8.0],
  "area" 41284.0,
  "altSpellings"
  ["CH" "Swiss Confederation" "Schweiz" "Suisse" "Svizzera" "Svizra"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/uVuZcXaxSx5jLyEC9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/51701"},
  "demonyms"
  {"eng" {"f" "Swiss", "m" "Swiss"},
   "fra" {"f" "Suisse", "m" "Suisse"}},
  "translations"
  {"kor" {"official" "스위스 연방", "common" "스위스"},
   "zho" {"official" "瑞士联邦", "common" "瑞士"},
   "hun" {"official" "Svájc", "common" "Svájc"},
   "rus" {"official" "Швейцарская Конфедерация", "common" "Швейцария"},
   "swe" {"official" "Schweiziska edsförbundet", "common" "Schweiz"},
   "ces" {"official" "Švýcarská konfederace", "common" "Švýcarsko"},
   "deu"
   {"official" "Schweizerische Eidgenossenschaft", "common" "Schweiz"},
   "ara" {"official" "الاتحاد السويسري", "common" "سويسرا"},
   "urd" {"official" "سوئیس  متحدہ", "common" "سویٹذرلینڈ"},
   "srp"
   {"official" "Швајцарска Конфедерација", "common" "Швајцарска"},
   "tur" {"official" "İsviçre Konfederasyonu", "common" "İsviçre"},
   "pol"
   {"official" "Konfederacja Szwajcarska", "common" "Szwajcaria"},
   "cym" {"official" "Swiss Confederation", "common" "Switzerland"},
   "hrv" {"official" "švicarska Konfederacija", "common" "Švicarska"},
   "spa" {"official" "Confederación Suiza", "common" "Suiza"},
   "fin" {"official" "Sveitsin valaliitto", "common" "Sveitsi"},
   "per" {"official" "کنفدراسیون سوئیس", "common" "سوئیس"},
   "nld" {"official" "Zwitserse Confederatie", "common" "Zwitserland"},
   "fra" {"official" "Confédération suisse", "common" "Suisse"},
   "ita" {"official" "Confederazione svizzera", "common" "Svizzera"},
   "jpn" {"official" "スイス連邦", "common" "スイス"},
   "est" {"official" "Šveitsi Konföderatsioon", "common" "Šveits"},
   "por" {"official" "Confederação Suíça", "common" "Suíça"},
   "slk"
   {"official" "Švajčiarska konfederácia", "common" "Švajčiarsko"},
   "bre" {"official" "Kengevredad Suis", "common" "Suis"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ch.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ch.png"},
  "idd" {"suffixes" ["1"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/ch.svg",
   "alt"
   "The flag of Switzerland is square shaped. It features a white Swiss cross centered on a red field.",
   "png" "https://flagcdn.com/w320/ch.png"},
  "unMember" true,
  "name"
  {"official" "Swiss Confederation",
   "nativeName"
   {"roh" {"official" "Confederaziun svizra", "common" "Svizra"},
    "gsw"
    {"official" "Schweizerische Eidgenossenschaft",
     "common" "Schweiz"},
    "fra" {"official" "Confédération suisse", "common" "Suisse"},
    "ita" {"official" "Confederazione Svizzera", "common" "Svizzera"}},
   "common" "Switzerland"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [46.92 7.47]},
  "tld" [".ch"],
  "ccn3" "756",
  "status" "officially-assigned",
  "region" "Europe",
  "languages"
  {"roh" "Romansh",
   "gsw" "Swiss German",
   "fra" "French",
   "ita" "Italian"},
  "cioc" "SUI",
  "currencies" {"CHF" {"name" "Swiss franc", "symbol" "Fr."}},
  "independent" true,
  "population" 8654622,
  "cca3" "CHE",
  "borders" ["AUT" "FRA" "ITA" "LIE" "DEU"],
  "capital" ["Bern"],
  "car" {"signs" ["CH"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇨🇭",
  "gini" {"2018" 33.1},
  "fifa" "SUI",
  "cca2" "CH"}
 {"subregion" "Western Africa",
  "landlocked" false,
  "latlng" [8.5 -11.5],
  "area" 71740.0,
  "altSpellings" ["SL" "Republic of Sierra Leone"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/jhacar85oq9QaeKB7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192777"},
  "demonyms"
  {"eng" {"f" "Sierra Leonean", "m" "Sierra Leonean"},
   "fra" {"f" "Sierra-leonaise", "m" "Sierra-leonais"}},
  "translations"
  {"kor" {"official" "시에라리온 공화국", "common" "시에라리온"},
   "zho" {"official" "塞拉利昂共和国", "common" "塞拉利昂"},
   "hun"
   {"official" "Sierra Leone Köztársaság", "common" "Sierra Leone"},
   "rus"
   {"official" "Республика Сьерра-Леоне", "common" "Сьерра-Леоне"},
   "swe"
   {"official" "Republiken Sierra Leone", "common" "Sierra Leone"},
   "ces"
   {"official" "Republika Sierra Leone", "common" "Sierra Leone"},
   "deu" {"official" "Republik Sierra Leone", "common" "Sierra Leone"},
   "ara" {"official" "جمهورية سيراليون", "common" "سيراليون"},
   "urd" {"official" "جمہوریہ سیرالیون", "common" "سیرالیون"},
   "srp"
   {"official" "Република Сијера Леоне", "common" "Сијера Леоне"},
   "tur"
   {"official" "Sierra Leone Cumhuriyeti", "common" "Sierra Leone"},
   "pol" {"official" "Sierra Leone", "common" "Sierra Leone"},
   "cym"
   {"official" "Republic of Sierra Leone", "common" "Sierra Leone"},
   "hrv"
   {"official" "Republika Sijera Leone", "common" "Sijera Leone"},
   "spa"
   {"official" "República de Sierra Leona", "common" "Sierra Leone"},
   "fin"
   {"official" "Sierra Leonen tasavalta", "common" "Sierra Leone"},
   "per" {"official" "جمهوری سیرالئون", "common" "سیرالئون"},
   "nld"
   {"official" "Republiek Sierra Leone", "common" "Sierra Leone"},
   "fra"
   {"official" "République de Sierra Leone", "common" "Sierra Leone"},
   "ita"
   {"official" "Repubblica della Sierra Leone",
    "common" "Sierra Leone"},
   "jpn" {"official" "シエラレオネ共和国", "common" "シエラレオネ"},
   "est" {"official" "Sierra Leone Vabariik", "common" "Sierra Leone"},
   "por" {"official" "República da Serra Leoa", "common" "Serra Leoa"},
   "slk"
   {"official" "Sierraleonská republika", "common" "Sierra Leone"},
   "bre"
   {"official" "Republik Sierra Leone", "common" "Sierra Leone"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/sl.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/sl.png"},
  "idd" {"suffixes" ["32"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/sl.svg",
   "alt"
   "The flag of Sierra Leone is composed of three equal horizontal bands of green, white and blue.",
   "png" "https://flagcdn.com/w320/sl.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Sierra Leone",
   "nativeName"
   {"eng"
    {"official" "Republic of Sierra Leone", "common" "Sierra Leone"}},
   "common" "Sierra Leone"},
  "capitalInfo" {"latlng" [8.48 -13.23]},
  "tld" [".sl"],
  "ccn3" "694",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"eng" "English"},
  "cioc" "SLE",
  "currencies" {"SLL" {"name" "Sierra Leonean leone", "symbol" "Le"}},
  "independent" true,
  "population" 7976985,
  "cca3" "SLE",
  "borders" ["GIN" "LBR"],
  "capital" ["Freetown"],
  "car" {"signs" ["WAL"], "side" "right"},
  "timezones" ["UTC"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇸🇱",
  "gini" {"2018" 35.7},
  "fifa" "SLE",
  "cca2" "SL"}
 {"subregion" "Central Europe",
  "landlocked" true,
  "latlng" [47.0 20.0],
  "area" 93028.0,
  "altSpellings" ["HU"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/9gfPupm5bffixiFJ6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/21335"},
  "demonyms"
  {"eng" {"f" "Hungarian", "m" "Hungarian"},
   "fra" {"f" "Hongroise", "m" "Hongrois"}},
  "translations"
  {"kor" {"official" "헝가리", "common" "헝가리"},
   "zho" {"official" "匈牙利", "common" "匈牙利"},
   "hun" {"official" "Magyarország", "common" "Magyarország"},
   "rus" {"official" "Венгрия", "common" "Венгрия"},
   "swe" {"official" "Ungern", "common" "Ungern"},
   "ces" {"official" "Maďarsko", "common" "Maďarsko"},
   "deu" {"official" "Ungarn", "common" "Ungarn"},
   "ara" {"official" "الجمهورية المجرية", "common" "المجر"},
   "urd" {"official" "مجارستان", "common" "مجارستان"},
   "srp" {"official" "Мађарска", "common" "Мађарска"},
   "tur" {"official" "Macaristan", "common" "Macaristan"},
   "pol" {"official" "Węgry", "common" "Węgry"},
   "cym" {"official" "Hungary", "common" "Hungary"},
   "hrv" {"official" "Madžarska", "common" "Mađarska"},
   "spa" {"official" "Hungría", "common" "Hungría"},
   "fin" {"official" "Unkari", "common" "Unkari"},
   "per" {"official" "مجارستان", "common" "مجارستان"},
   "nld" {"official" "Hongarije", "common" "Hongarije"},
   "fra" {"official" "Hongrie", "common" "Hongrie"},
   "ita" {"official" "Ungheria", "common" "Ungheria"},
   "jpn" {"official" "ハンガリー", "common" "ハンガリー"},
   "est" {"official" "Ungari", "common" "Ungari"},
   "por" {"official" "Hungria", "common" "Hungria"},
   "slk" {"official" "Maďarsko", "common" "Maďarsko"},
   "bre" {"official" "Hungaria", "common" "Hungaria"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/hu.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/hu.png"},
  "idd" {"suffixes" ["6"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/hu.svg",
   "alt"
   "The flag of Hungary is composed of three equal horizontal bands of red, white and green.",
   "png" "https://flagcdn.com/w320/hu.png"},
  "unMember" true,
  "name"
  {"official" "Hungary",
   "nativeName"
   {"hun" {"official" "Magyarország", "common" "Magyarország"}},
   "common" "Hungary"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [47.5 19.08]},
  "tld" [".hu"],
  "ccn3" "348",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"hun" "Hungarian"},
  "cioc" "HUN",
  "currencies" {"HUF" {"name" "Hungarian forint", "symbol" "Ft"}},
  "independent" true,
  "population" 9749763,
  "cca3" "HUN",
  "borders" ["AUT" "HRV" "ROU" "SRB" "SVK" "SVN" "UKR"],
  "capital" ["Budapest"],
  "car" {"signs" ["H"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇭🇺",
  "gini" {"2018" 29.6},
  "fifa" "HUN",
  "cca2" "HU"}
 {"subregion" "Eastern Asia",
  "landlocked" false,
  "latlng" [23.5 121.0],
  "area" 36193.0,
  "altSpellings"
  ["TW"
   "Táiwān"
   "Republic of China"
   "中華民國"
   "Zhōnghuá Mínguó"
   "Chinese Taipei"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/HgMKFQjNadF3Wa6B6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/449220"},
  "demonyms"
  {"eng" {"f" "Taiwanese", "m" "Taiwanese"},
   "fra" {"f" "Taïwanaise", "m" "Taïwanais"}},
  "translations"
  {"kor" {"official" "중화민국", "common" "대만"},
   "hun" {"official" "Kínai Köztársaság", "common" "Tajvan"},
   "rus" {"official" "Китайская Республика", "common" "Тайвань"},
   "swe" {"official" "Republiken Kina", "common" "Taiwan"},
   "ces" {"official" "Čínská republika", "common" "Tchaj-wan"},
   "deu" {"official" "Republik China (Taiwan)", "common" "Taiwan"},
   "ara" {"official" "جمهورية الصين (تايوان)", "common" "تايوان"},
   "urd" {"official" "جمہوریہ چین (تائیوان)", "common" "تائیوان"},
   "srp" {"official" "Република Кина", "common" "Тајван"},
   "tur" {"official" "Çin Cumhuriyeti (Tayvan)", "common" "Tayvan"},
   "pol" {"official" "Republika Chińska (Tajwan)", "common" "Tajwan"},
   "cym" {"official" "Republic of China (Taiwan)", "common" "Taiwan"},
   "hrv" {"official" "Republika Kina", "common" "Tajvan"},
   "spa"
   {"official" "República de China en Taiwán", "common" "Taiwán"},
   "fin" {"official" "Kiinan tasavalta", "common" "Taiwan"},
   "per" {"official" "جمهوری چین", "common" "تایوان"},
   "nld" {"official" "Republiek China (Taiwan)", "common" "Taiwan"},
   "fra"
   {"official" "République de Chine (Taïwan)", "common" "Taïwan"},
   "ita" {"official" "Repubblica cinese (Taiwan)", "common" "Taiwan"},
   "jpn" {"official" "中華民国", "common" "台湾"},
   "est" {"official" "Taiwani", "common" "Taiwan"},
   "por" {"official" "República da China", "common" "Ilha Formosa"},
   "slk" {"official" "Čínska republika", "common" "Taiwan"},
   "bre" {"official" "Republik Sina (Taiwan)", "common" "Taiwan"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/tw.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/tw.png"},
  "idd" {"suffixes" ["86"], "root" "+8"},
  "flags"
  {"svg" "https://flagcdn.com/tw.svg",
   "png" "https://flagcdn.com/w320/tw.png"},
  "unMember" false,
  "name"
  {"official" "Republic of China (Taiwan)",
   "nativeName" {"zho" {"official" "中華民國", "common" "台灣"}},
   "common" "Taiwan"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [25.03 121.52]},
  "tld" [".tw" ".台灣" ".台湾"],
  "ccn3" "158",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"zho" "Chinese"},
  "cioc" "TPE",
  "currencies" {"TWD" {"name" "New Taiwan dollar", "symbol" "$"}},
  "independent" false,
  "population" 23503349,
  "cca3" "TWN",
  "capital" ["Taipei"],
  "car" {"signs" ["RC"], "side" "right"},
  "timezones" ["UTC+08:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇹🇼",
  "fifa" "TPE",
  "cca2" "TW"}
 {"subregion" "Polynesia",
  "landlocked" false,
  "latlng" [-13.3 -176.2],
  "area" 142.0,
  "altSpellings"
  ["WF"
   "Territory of the Wallis and Futuna Islands"
   "Territoire des îles Wallis et Futuna"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/CzVqK74QYtbHv65r5",
   "openStreetMaps" "https://www.openstreetmap.org/relation/3412448"},
  "demonyms"
  {"eng"
   {"f" "Wallis and Futuna Islander",
    "m" "Wallis and Futuna Islander"}},
  "translations"
  {"kor" {"official" "왈리스 퓌튀나", "common" "왈리스 퓌튀나"},
   "zho" {"official" "瓦利斯和富图纳群岛", "common" "瓦利斯和富图纳群岛"},
   "hun" {"official" "Wallis és Futuna", "common" "Wallis és Futuna"},
   "rus"
   {"official" "Территория Уоллис и Футуна острова",
    "common" "Уоллис и Футуна"},
   "swe"
   {"official" "Territoriet Wallis- och Futunaöarna",
    "common" "Wallis- och Futunaöarna"},
   "ces"
   {"official" "Teritorium ostrovů Wallis a Futuna",
    "common" "Wallis a Futuna"},
   "deu"
   {"official" "Gebiet der Wallis und Futuna",
    "common" "Wallis und Futuna"},
   "ara"
   {"official" "إقليم جزر واليس وفوتونا", "common" "واليس وفوتونا"},
   "urd"
   {"official" "سر زمینِ والس و فتونہ جزائر", "common" "والس و فتونہ"},
   "srp"
   {"official" "Територија државе Валис и Футуна",
    "common" "Валис и Футуна"},
   "tur"
   {"official" "Wallis ve Futuna Adaları Bölgesi",
    "common" "Wallis ve Futuna Adaları Bölgesi"},
   "pol"
   {"official" "Terytorium Wysp Wallis i Futuna",
    "common" "Wallis i Futuna"},
   "cym"
   {"official" "Territory of the Wallis and Futuna Islands",
    "common" "Wallis and Futuna"},
   "hrv"
   {"official" "Teritoriju Wallis i Futuna",
    "common" "Wallis i Fortuna"},
   "spa"
   {"official" "Territorio de las Islas Wallis y Futuna",
    "common" "Wallis y Futuna"},
   "fin"
   {"official" "Wallisin ja Futunan yhteisö",
    "common" "Wallis ja Futuna"},
   "per"
   {"official" "جزایر والیس و فوتونا", "common" "والیس و فوتونا"},
   "nld"
   {"official" "Grondgebied van de Wallis en Futuna",
    "common" "Wallis en Futuna"},
   "fra"
   {"official" "Territoire des îles Wallis et Futuna",
    "common" "Wallis-et-Futuna"},
   "ita"
   {"official" "Territorio delle Isole Wallis e Futuna",
    "common" "Wallis e Futuna"},
   "jpn" {"official" "ウォリス·フツナ諸島の領土", "common" "ウォリス・フツナ"},
   "est"
   {"official" "Wallise ja Futuna ala", "common" "Wallis ja Futuna"},
   "por"
   {"official" "Território das Ilhas Wallis e Futuna",
    "common" "Wallis e Futuna"},
   "slk"
   {"official" "Teritórium ostrovov Wallis a Futuna",
    "common" "Wallis a Futuna"},
   "bre"
   {"official" "Tiriad Inizi Wallis ha Futuna",
    "common" "Wallis ha Futuna"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["81"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/wf.svg",
   "png" "https://flagcdn.com/w320/wf.png"},
  "unMember" false,
  "name"
  {"official" "Territory of the Wallis and Futuna Islands",
   "nativeName"
   {"fra"
    {"official" "Territoire des îles Wallis et Futuna",
     "common" "Wallis et Futuna"}},
   "common" "Wallis and Futuna"},
  "postalCode" {"regex" "^(986\\d{2})$", "format" "#####"},
  "capitalInfo" {"latlng" [-13.95 -171.93]},
  "tld" [".wf"],
  "ccn3" "876",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"fra" "French"},
  "currencies" {"XPF" {"name" "CFP franc", "symbol" "₣"}},
  "independent" false,
  "population" 11750,
  "cca3" "WLF",
  "capital" ["Mata-Utu"],
  "car" {"signs" ["F"], "side" "right"},
  "timezones" ["UTC+12:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇼🇫",
  "cca2" "WF"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [13.16666666 -59.53333333],
  "area" 430.0,
  "altSpellings" ["BB"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/2m36v8STvbGAWd9c7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/547511"},
  "demonyms"
  {"eng" {"f" "Barbadian", "m" "Barbadian"},
   "fra" {"f" "Barbadienne", "m" "Barbadien"}},
  "translations"
  {"kor" {"official" "바베이도스", "common" "바베이도스"},
   "zho" {"official" "巴巴多斯", "common" "巴巴多斯"},
   "hun" {"official" "Barbados", "common" "Barbados"},
   "rus" {"official" "Барбадос", "common" "Барбадос"},
   "swe" {"official" "Barbados", "common" "Barbados"},
   "ces" {"official" "Barbados", "common" "Barbados"},
   "deu" {"official" "Barbados", "common" "Barbados"},
   "ara" {"official" "باربادوس", "common" "باربادوس"},
   "urd" {"official" "بارباڈوس", "common" "بارباڈوس"},
   "srp" {"official" "Барбадос", "common" "Барбадос"},
   "tur" {"official" "Barbados", "common" "Barbados"},
   "pol" {"official" "Barbados", "common" "Barbados"},
   "cym" {"official" "Barbados", "common" "Barbados"},
   "hrv" {"official" "Barbados", "common" "Barbados"},
   "spa" {"official" "Barbados", "common" "Barbados"},
   "fin" {"official" "Barbados", "common" "Barbados"},
   "per" {"official" "باربادوس", "common" "باربادوس"},
   "nld" {"official" "Barbados", "common" "Barbados"},
   "fra" {"official" "Barbade", "common" "Barbade"},
   "ita" {"official" "Barbados", "common" "Barbados"},
   "jpn" {"official" "バルバドス", "common" "バルバドス"},
   "est" {"official" "Barbados", "common" "Barbados"},
   "por" {"official" "Barbados", "common" "Barbados"},
   "slk" {"official" "Barbados", "common" "Barbados"},
   "bre" {"official" "Barbados", "common" "Barbados"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/bb.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/bb.png"},
  "idd" {"suffixes" ["246"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/bb.svg",
   "alt"
   "The flag of Barbados is composed of three equal vertical bands of ultramarine, gold and ultramarine. The head of a black trident is centered in the gold band.",
   "png" "https://flagcdn.com/w320/bb.png"},
  "unMember" true,
  "name"
  {"official" "Barbados",
   "nativeName" {"eng" {"official" "Barbados", "common" "Barbados"}},
   "common" "Barbados"},
  "postalCode" {"regex" "^(?:BB)*(\\d{5})$", "format" "BB#####"},
  "capitalInfo" {"latlng" [13.1 -59.62]},
  "tld" [".bb"],
  "ccn3" "052",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "cioc" "BAR",
  "currencies" {"BBD" {"name" "Barbadian dollar", "symbol" "$"}},
  "independent" true,
  "population" 287371,
  "cca3" "BRB",
  "capital" ["Bridgetown"],
  "car" {"signs" ["BDS"], "side" "left"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇧🇧",
  "fifa" "BRB",
  "cca2" "BB"}
 {"subregion" "Polynesia",
  "landlocked" false,
  "latlng" [-25.06666666 -130.1],
  "area" 47.0,
  "altSpellings"
  ["PN" "Pitcairn" "Pitcairn Henderson Ducie and Oeno Islands"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/XGJMnMAigXjXcxSa7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2185375"},
  "demonyms"
  {"eng" {"f" "Pitcairn Islander", "m" "Pitcairn Islander"},
   "fra" {"f" "Pitcairnaise", "m" "Pitcairnais"}},
  "translations"
  {"kor" {"official" "핏케언 제도", "common" "핏케언 제도"},
   "zho" {"official" "皮特凯恩群岛", "common" "皮特凯恩群岛"},
   "hun"
   {"official" "Pitcairn-szigetek", "common" "Pitcairn-szigetek"},
   "rus"
   {"official" "Питкэрн группа островов", "common" "Острова Питкэрн"},
   "swe" {"official" "Pitcairnöarna", "common" "Pitcairnöarna"},
   "ces"
   {"official" "Pitcairnovy ostrovy", "common" "Pitcairnovy ostrovy"},
   "deu" {"official" "Pitcairninseln", "common" "Pitcairninseln"},
   "ara" {"official" "جزر بيتكيرن", "common" "جزر بيتكيرن"},
   "urd" {"official" "پٹکیرن جزائر", "common" "جزائر پٹکیرن"},
   "srp"
   {"official" "Острва Питкерн, Хендерсон, Дуци и Оин",
    "common" "Острва Питкерн"},
   "tur"
   {"official" "Pitcairn, Henderson, Ducie ve Oeno Adaları",
    "common" "Pitcairn Adaları"},
   "pol"
   {"official" "Wyspy Pitcairn, Henderson, Ducie i Oeno",
    "common" "Pitcairn"},
   "cym"
   {"official" "Pitcairn Group of Islands",
    "common" "Pitcairn Islands"},
   "hrv"
   {"official" "Pitcairn skupine otoka",
    "common" "Pitcairnovo otočje"},
   "spa"
   {"official" "Grupo de Islas Pitcairn", "common" "Islas Pitcairn"},
   "fin" {"official" "Pitcairn", "common" "Pitcairn"},
   "per" {"official" "جزایر پیت‌کرن", "common" "جزایر پیت‌کرن"},
   "nld"
   {"official" "Pitcairn groep eilanden", "common" "Pitcairneilanden"},
   "fra"
   {"official" "Groupe d'îles Pitcairn", "common" "Îles Pitcairn"},
   "ita"
   {"official" "Pitcairn gruppo di isole", "common" "Isole Pitcairn"},
   "jpn" {"official" "島のピトケアングループ", "common" "ピトケアン"},
   "est"
   {"official" "Pitcairni, Hendersoni, Ducie ja Oeno saar",
    "common" "Pitcairn"},
   "por"
   {"official" "Pitcairn grupo de ilhas", "common" "Ilhas Pitcairn"},
   "slk"
   {"official" "Pitcairnove ostrovy", "common" "Pitcairnove ostrovy"},
   "bre"
   {"official" "Inizi Pitcairn, Henderson, Ducie hag Oeno",
    "common" "Inizi Pitcairn"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["4"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/pn.svg",
   "png" "https://flagcdn.com/w320/pn.png"},
  "unMember" false,
  "name"
  {"official" "Pitcairn Group of Islands",
   "nativeName"
   {"eng"
    {"official" "Pitcairn Group of Islands",
     "common" "Pitcairn Islands"}},
   "common" "Pitcairn Islands"},
  "capitalInfo" {"latlng" [-25.07 -130.08]},
  "tld" [".pn"],
  "ccn3" "612",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"eng" "English"},
  "currencies" {"NZD" {"name" "New Zealand dollar", "symbol" "$"}},
  "independent" false,
  "population" 56,
  "cca3" "PCN",
  "capital" ["Adamstown"],
  "car" {"signs" ["GB"], "side" "left"},
  "timezones" ["UTC-08:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇵🇳",
  "cca2" "PN"}
 {"subregion" "Western Africa",
  "landlocked" false,
  "latlng" [8.0 -5.0],
  "area" 322463.0,
  "altSpellings"
  ["CI"
   "Côte d'Ivoire"
   "Ivory Coast"
   "Republic of Côte d'Ivoire"
   "République de Côte d'Ivoire"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/wKsmN7f5qAeNtGjP6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192779"},
  "demonyms"
  {"eng" {"f" "Ivorian", "m" "Ivorian"},
   "fra" {"f" "Ivoirienne", "m" "Ivoirien"}},
  "translations"
  {"kor" {"official" "코트디부아르 공화국", "common" "코트디부아르"},
   "zho" {"official" "科特迪瓦共和国", "common" "科特迪瓦"},
   "hun"
   {"official" "Elefántcsontparti Köztársaság",
    "common" "Elefántcsontpart"},
   "rus"
   {"official" "Республика Кот-д'Ивуаре", "common" "Кот-д’Ивуар"},
   "swe"
   {"official" "Republiken Elfenbenskusten",
    "common" "Elfenbenskusten"},
   "ces"
   {"official" "Republika Pobřeží slonoviny",
    "common" "Pobřeží slonoviny"},
   "deu"
   {"official" "Republik Côte d'Ivoire", "common" "Elfenbeinküste"},
   "ara" {"official" "جمهورية ساحل العاج", "common" "ساحل العاج"},
   "urd" {"official" "جمہوریہ کوت دیواغ", "common" "آئیوری کوسٹ"},
   "srp"
   {"official" "Република Обала Слоноваче",
    "common" "Обала Слоноваче"},
   "tur" {"official" "Fildişi Sahili", "common" "Fildişi Sahili"},
   "pol"
   {"official" "Republika WybrzeŻa Kości Słoniowej",
    "common" "WybrzeŻe Kości Słoniowej"},
   "cym"
   {"official" "Republic of Côte d'Ivoire", "common" "Ivory Coast"},
   "hrv"
   {"official" "Republika Côte d'Ivoire", "common" "Obala Bjelokosti"},
   "spa"
   {"official" "República de Côte d'Ivoire",
    "common" "Costa de Marfil"},
   "fin"
   {"official" "Norsunluurannikon tasavalta",
    "common" "Norsunluurannikko"},
   "per" {"official" "جمهوری ساحل عاج", "common" "ساحل عاج"},
   "nld" {"official" "Republiek Ivoorkust", "common" "Ivoorkust"},
   "fra"
   {"official" "République de Côte d' Ivoire",
    "common" "Côte d'Ivoire"},
   "ita"
   {"official" "Repubblica della Costa d'Avorio",
    "common" "Costa d'Avorio"},
   "jpn" {"official" "コートジボワール共和国", "common" "コートジボワール"},
   "est"
   {"official" "Côte d’Ivoire’i Vabariik",
    "common" "Elevandiluurannik"},
   "por"
   {"official" "República da Côte d'Ivoire",
    "common" "Costa do Marfim"},
   "slk"
   {"official" "Republika Pobrežie Slonoviny",
    "common" "Pobržie Slonoviny"},
   "bre"
   {"official" "Republik Aod an Olifant", "common" "Aod an Olifant"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ci.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ci.png"},
  "idd" {"suffixes" ["25"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/ci.svg",
   "alt"
   "The flag of Ivory Coast is composed of three equal vertical bands of orange, white and green.",
   "png" "https://flagcdn.com/w320/ci.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Côte d'Ivoire",
   "nativeName"
   {"fra"
    {"official" "République de Côte d'Ivoire",
     "common" "Côte d'Ivoire"}},
   "common" "Ivory Coast"},
  "capitalInfo" {"latlng" [6.82 -5.27]},
  "tld" [".ci"],
  "ccn3" "384",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"fra" "French"},
  "cioc" "CIV",
  "currencies"
  {"XOF" {"name" "West African CFA franc", "symbol" "Fr"}},
  "independent" true,
  "population" 26378275,
  "cca3" "CIV",
  "borders" ["BFA" "GHA" "GIN" "LBR" "MLI"],
  "capital" ["Yamoussoukro"],
  "car" {"signs" ["CI"], "side" "right"},
  "timezones" ["UTC"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇨🇮",
  "gini" {"2015" 41.5},
  "fifa" "CIV",
  "cca2" "CI"}
 {"subregion" "Northern Africa",
  "landlocked" false,
  "latlng" [34.0 9.0],
  "area" 163610.0,
  "altSpellings"
  ["TN" "Republic of Tunisia" "al-Jumhūriyyah at-Tūnisiyyah"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/KgUmpZdUuNRaougs8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192757"},
  "demonyms"
  {"eng" {"f" "Tunisian", "m" "Tunisian"},
   "fra" {"f" "Tunisienne", "m" "Tunisien"}},
  "translations"
  {"kor" {"official" "튀니지 공화국", "common" "튀니지"},
   "zho" {"official" "突尼斯共和国", "common" "突尼斯"},
   "hun" {"official" "Tunéziai Köztársaság", "common" "Tunézia"},
   "rus" {"official" "Тунисской Республики", "common" "Тунис"},
   "swe" {"official" "Republiken Tunisien", "common" "Tunisien"},
   "ces" {"official" "Tuniská republika", "common" "Tunisko"},
   "deu" {"official" "Tunesische Republik", "common" "Tunesien"},
   "ara" {"official" "الجمهورية التونسية", "common" "تونس"},
   "urd" {"official" "جمہوریہ تونس", "common" "تونس"},
   "srp" {"official" "Тунишанска Република", "common" "Тунис"},
   "tur" {"official" "Tunus Cumhuriyeti", "common" "Tunus"},
   "pol" {"official" "Republika Tunezyjska", "common" "Tunezja"},
   "cym" {"official" "Tunisian Republic", "common" "Tunisia"},
   "hrv" {"official" "Tuniski Republika", "common" "Tunis"},
   "spa" {"official" "República de Túnez", "common" "Túnez"},
   "fin" {"official" "Tunisian tasavalta", "common" "Tunisia"},
   "per" {"official" "جمهوری تونس", "common" "تونس"},
   "nld" {"official" "Republiek Tunesië", "common" "Tunesië"},
   "fra" {"official" "République tunisienne", "common" "Tunisie"},
   "ita" {"official" "Repubblica tunisina", "common" "Tunisia"},
   "jpn" {"official" "チュニジア共和国", "common" "チュニジア"},
   "est" {"official" "Tuneesia Vabariik", "common" "Tuneesia"},
   "por" {"official" "República da Tunísia", "common" "Tunísia"},
   "slk" {"official" "Tuniská republika", "common" "Tunisko"},
   "bre" {"official" "Republik Tunizian", "common" "Tunizia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/tn.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/tn.png"},
  "idd" {"suffixes" ["16"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/tn.svg",
   "alt"
   "The flag of Tunisia has a red field. A white circle bearing a five-pointed red star within a fly-side facing red crescent is situated at the center of the field.",
   "png" "https://flagcdn.com/w320/tn.png"},
  "unMember" true,
  "name"
  {"official" "Tunisian Republic",
   "nativeName"
   {"ara" {"official" "الجمهورية التونسية", "common" "تونس"}},
   "common" "Tunisia"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [36.8 10.18]},
  "tld" [".tn"],
  "ccn3" "788",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"ara" "Arabic"},
  "cioc" "TUN",
  "currencies" {"TND" {"name" "Tunisian dinar", "symbol" "د.ت"}},
  "independent" true,
  "population" 11818618,
  "cca3" "TUN",
  "borders" ["DZA" "LBY"],
  "capital" ["Tunis"],
  "car" {"signs" ["TN"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇹🇳",
  "gini" {"2015" 32.8},
  "fifa" "TUN",
  "cca2" "TN"}
 {"subregion" "Southern Europe",
  "landlocked" false,
  "latlng" [42.83333333 12.83333333],
  "area" 301336.0,
  "altSpellings" ["IT" "Italian Republic" "Repubblica italiana"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/8M1K27TDj7StTRTq8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/365331"},
  "demonyms"
  {"eng" {"f" "Italian", "m" "Italian"},
   "fra" {"f" "Italienne", "m" "Italien"}},
  "translations"
  {"kor" {"official" "이탈리아 공화국", "common" "이탈리아"},
   "zho" {"official" "意大利共和国", "common" "意大利"},
   "hun" {"official" "Olasz Köztársaság", "common" "Olaszország"},
   "rus" {"official" "итальянская Республика", "common" "Италия"},
   "swe" {"official" "Republiken Italien", "common" "Italien"},
   "ces" {"official" "Italská republika", "common" "Itálie"},
   "deu" {"official" "Italienische Republik", "common" "Italien"},
   "ara" {"official" "الجمهورية الإيطالية", "common" "إيطاليا"},
   "urd" {"official" "جمہوریہ اطالیہ", "common" "اطالیہ"},
   "srp" {"official" "Италијанска Република", "common" "Италија"},
   "tur" {"official" "İtalyan Cumhuriyeti", "common" "İtalya"},
   "pol" {"official" "Republika Włoska", "common" "Włochy"},
   "cym" {"official" "Italian Republic", "common" "Italy"},
   "hrv" {"official" "talijanska Republika", "common" "Italija"},
   "spa" {"official" "República Italiana", "common" "Italia"},
   "fin" {"official" "Italian tasavalta", "common" "Italia"},
   "per" {"official" "جمهوری ایتالیا", "common" "ایتالیا"},
   "nld" {"official" "Italiaanse Republiek", "common" "Italië"},
   "fra" {"official" "République italienne", "common" "Italie"},
   "ita" {"official" "Repubblica italiana", "common" "Italia"},
   "jpn" {"official" "イタリア共和国", "common" "イタリア"},
   "est" {"official" "Itaalia Vabariik", "common" "Itaalia"},
   "por" {"official" "República Italiana", "common" "Itália"},
   "slk" {"official" "Talianska republika", "common" "Taliansko"},
   "bre" {"official" "Republik Italia", "common" "Italia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/it.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/it.png"},
  "idd" {"suffixes" ["9"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/it.svg",
   "alt"
   "The flag of Italy is composed of three equal vertical bands of green, white and red.",
   "png" "https://flagcdn.com/w320/it.png"},
  "unMember" true,
  "name"
  {"official" "Italian Republic",
   "nativeName"
   {"ita" {"official" "Repubblica italiana", "common" "Italia"}},
   "common" "Italy"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [41.9 12.48]},
  "tld" [".it"],
  "ccn3" "380",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"ita" "Italian"},
  "cioc" "ITA",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 59554023,
  "cca3" "ITA",
  "borders" ["AUT" "FRA" "SMR" "SVN" "CHE" "VAT"],
  "capital" ["Rome"],
  "car" {"signs" ["I"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇮🇹",
  "gini" {"2017" 35.9},
  "fifa" "ITA",
  "cca2" "IT"}
 {"subregion" "Western Africa",
  "landlocked" false,
  "latlng" [9.5 2.25],
  "area" 112622.0,
  "altSpellings" ["BJ" "Republic of Benin" "République du Bénin"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/uMw1BsHEXQYgVFFu6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192784"},
  "demonyms"
  {"eng" {"f" "Beninese", "m" "Beninese"},
   "fra" {"f" "Béninoise", "m" "Béninois"}},
  "translations"
  {"kor" {"official" "베냉 공화국", "common" "베냉"},
   "zho" {"official" "贝宁共和国", "common" "贝宁"},
   "hun" {"official" "Benini Köztársaság", "common" "Benin"},
   "rus" {"official" "Республика Бенин", "common" "Бенин"},
   "swe" {"official" "Republiken Benin", "common" "Benin"},
   "ces" {"official" "Beninská republika", "common" "Benin"},
   "deu" {"official" "Republik Benin", "common" "Benin"},
   "ara" {"official" "جمهورية بنين", "common" "بنين"},
   "urd" {"official" "جمہوریہ بینن", "common" "بینن"},
   "srp" {"official" "Република Бенин", "common" "Бенин"},
   "tur" {"official" "Benin Cumhuriyeti", "common" "Benin"},
   "pol" {"official" "Benin", "common" "Benin"},
   "cym" {"official" "Gweriniaeth Benin", "common" "Benin"},
   "hrv" {"official" "Republika Benin", "common" "Benin"},
   "spa" {"official" "República de Benin", "common" "Benín"},
   "fin" {"official" "Beninin tasavalta", "common" "Benin"},
   "per" {"official" "جمهوری بنین", "common" "بنین"},
   "nld" {"official" "Republiek Benin", "common" "Benin"},
   "fra" {"official" "République du Bénin", "common" "Bénin"},
   "ita" {"official" "Repubblica del Benin", "common" "Benin"},
   "jpn" {"official" "ベナン共和国", "common" "ベナン"},
   "est" {"official" "Benini Vabariik", "common" "Benin"},
   "por" {"official" "República do Benin", "common" "Benin"},
   "slk" {"official" "Beninská republika", "common" "Benin"},
   "bre" {"official" "Republik Benin", "common" "Benin"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/bj.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/bj.png"},
  "idd" {"suffixes" ["29"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/bj.svg",
   "alt"
   "The flag of Benin features a green vertical band on its hoist side that takes up about two-fifth the width of the field and two equal horizontal bands of yellow and red adjoining the vertical band.",
   "png" "https://flagcdn.com/w320/bj.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Benin",
   "nativeName"
   {"fra" {"official" "République du Bénin", "common" "Bénin"}},
   "common" "Benin"},
  "capitalInfo" {"latlng" [6.48 2.62]},
  "tld" [".bj"],
  "ccn3" "204",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"fra" "French"},
  "cioc" "BEN",
  "currencies"
  {"XOF" {"name" "West African CFA franc", "symbol" "Fr"}},
  "independent" true,
  "population" 12123198,
  "cca3" "BEN",
  "borders" ["BFA" "NER" "NGA" "TGO"],
  "capital" ["Porto-Novo"],
  "car" {"signs" ["DY"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇧🇯",
  "gini" {"2015" 47.8},
  "fifa" "BEN",
  "cca2" "BJ"}
 {"subregion" "South-Eastern Asia",
  "landlocked" false,
  "latlng" [-5.0 120.0],
  "area" 1904569.0,
  "altSpellings" ["ID" "Republic of Indonesia" "Republik Indonesia"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/9gfPupm5bffixiFJ6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/21335"},
  "demonyms"
  {"eng" {"f" "Indonesian", "m" "Indonesian"},
   "fra" {"f" "Indonésienne", "m" "Indonésien"}},
  "translations"
  {"kor" {"official" "인도네시아 공화국", "common" "인도네시아"},
   "zho" {"official" "印度尼西亚共和国", "common" "印度尼西亚"},
   "hun" {"official" "Indonéz Köztársaság", "common" "Indonézia"},
   "rus" {"official" "Республика Индонезия", "common" "Индонезия"},
   "swe" {"official" "Republiken Indonesien", "common" "Indonesien"},
   "ces" {"official" "Indonéská republika", "common" "Indonésie"},
   "deu" {"official" "Republik Indonesien", "common" "Indonesien"},
   "ara" {"official" "جمهورية إندونيسيا", "common" "إندونيسيا"},
   "urd" {"official" "جمہوریہ انڈونیشیا", "common" "انڈونیشیا"},
   "srp" {"official" "Република Индонезија", "common" "Индонезија"},
   "tur" {"official" "Endonezya Cumhuriyeti", "common" "Endonezya"},
   "pol" {"official" "Republika Indonezji", "common" "Indonezja"},
   "cym" {"official" "Republic of Indonesia", "common" "Indonesia"},
   "hrv" {"official" "Republika Indonezija", "common" "Indonezija"},
   "spa" {"official" "República de Indonesia", "common" "Indonesia"},
   "fin" {"official" "Indonesian tasavalta", "common" "Indonesia"},
   "per" {"official" "جمهوری اندونزی", "common" "اندونزی"},
   "nld" {"official" "Republiek Indonesië", "common" "Indonesië"},
   "fra" {"official" "République d'Indonésie", "common" "Indonésie"},
   "ita" {"official" "Repubblica di Indonesia", "common" "Indonesia"},
   "jpn" {"official" "インドネシア共和国", "common" "インドネシア"},
   "est" {"official" "Indoneesia Vabariik", "common" "Indoneesia"},
   "por" {"official" "República da Indonésia", "common" "Indonésia"},
   "slk" {"official" "Indonézska republika", "common" "Indonézia"},
   "bre" {"official" "Republik Indonezia", "common" "Indonezia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/id.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/id.png"},
  "idd" {"suffixes" ["2"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/id.svg",
   "alt"
   "The flag of Indonesia is composed of two equal horizontal bands of red and white.",
   "png" "https://flagcdn.com/w320/id.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Indonesia",
   "nativeName"
   {"ind" {"official" "Republik Indonesia", "common" "Indonesia"}},
   "common" "Indonesia"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [-6.17 106.82]},
  "tld" [".id"],
  "ccn3" "360",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"ind" "Indonesian"},
  "cioc" "INA",
  "currencies" {"IDR" {"name" "Indonesian rupiah", "symbol" "Rp"}},
  "independent" true,
  "population" 273523621,
  "cca3" "IDN",
  "borders" ["TLS" "MYS" "PNG"],
  "capital" ["Jakarta"],
  "car" {"signs" ["RI"], "side" "left"},
  "timezones" ["UTC+07:00" "UTC+08:00" "UTC+09:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇮🇩",
  "gini" {"2019" 38.2},
  "fifa" "IDN",
  "cca2" "ID"}
 {"subregion" "Western Africa",
  "landlocked" false,
  "latlng" [16.5388 -23.0418],
  "area" 4033.0,
  "altSpellings"
  ["CV" "Republic of Cabo Verde" "República de Cabo Verde"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/Kc9vy5ChjuiAgMfXA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/535774"},
  "demonyms"
  {"eng" {"f" "Cape Verdian", "m" "Cape Verdian"},
   "fra" {"f" "Cap-verdienne", "m" "Cap-verdien"}},
  "translations"
  {"kor" {"official" "카보베르데 공화국", "common" "카보베르데"},
   "zho" {"official" "佛得角共和国", "common" "佛得角"},
   "hun"
   {"official" "Zöld-foki Köztársaság",
    "common" "Zöld-foki Köztársaság"},
   "rus" {"official" "Республика Кабо -Верде", "common" "Кабо-Верде"},
   "swe" {"official" "Republiken Kap Verde", "common" "Kap Verde"},
   "ces" {"official" "Kapverdská republika", "common" "Kapverdy"},
   "deu" {"official" "Republik Cabo Verde", "common" "Kap Verde"},
   "ara" {"official" "جمهورية كابو فيردي", "common" "كابو فيردي"},
   "urd" {"official" "جمہوریہ کیپ ورڈی", "common" "کیپ ورڈی"},
   "srp"
   {"official" "Зеленортска Република", "common" "Зеленортска Острва"},
   "tur"
   {"official" "Yeşil Burun Cumhuriyeti", "common" "Yeşil Burun"},
   "pol"
   {"official" "Republika Zielonego Przylądka",
    "common" "Republika Zielonego Przylądka"},
   "cym"
   {"official" "Gweriniaeth Cabo Verde", "common" "Penrhyn Verde"},
   "hrv"
   {"official" "Republika Cabo Verde",
    "common" "Zelenortska Republika"},
   "spa" {"official" "República de Cabo Verde", "common" "Cabo Verde"},
   "fin" {"official" "Kap Verden tasavalta", "common" "Kap Verde"},
   "per" {"official" "جمهوری کبو ورد", "common" "دماغهٔ سبز"},
   "nld"
   {"official" "Republiek van Cabo Verde", "common" "Kaapverdië"},
   "fra"
   {"official" "République du Cap-Vert", "common" "Îles du Cap-Vert"},
   "ita"
   {"official" "Repubblica di Capo Verde", "common" "Capo Verde"},
   "jpn" {"official" "カーボベルデ共和国", "common" "カーボベルデ"},
   "est"
   {"official" "Cabo Verde Vabariik", "common" "Roheneemesaared"},
   "por" {"official" "República de Cabo Verde", "common" "Cabo Verde"},
   "slk" {"official" "Kapverdská republika", "common" "Kapverdy"},
   "bre" {"official" "Republik Kab Glas", "common" "Kab Glas"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/cv.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/cv.png"},
  "idd" {"suffixes" ["38"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/cv.svg",
   "alt"
   "The flag of Cape Verde is composed of five horizontal bands of blue, white, red, white and blue in the ratio of 6:1:1:1:3. A ring of ten five-pointed yellow stars is centered at three-eighth of the height from the bottom edge and three-eighth of the width from the hoist end of the field.",
   "png" "https://flagcdn.com/w320/cv.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Cabo Verde",
   "nativeName"
   {"por"
    {"official" "República de Cabo Verde", "common" "Cabo Verde"}},
   "common" "Cape Verde"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [14.92 -23.52]},
  "tld" [".cv"],
  "ccn3" "132",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"por" "Portuguese"},
  "cioc" "CPV",
  "currencies" {"CVE" {"name" "Cape Verdean escudo", "symbol" "Esc"}},
  "independent" true,
  "population" 555988,
  "cca3" "CPV",
  "capital" ["Praia"],
  "car" {"signs" ["CV"], "side" "right"},
  "timezones" ["UTC-01:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇨🇻",
  "gini" {"2015" 42.4},
  "fifa" "CPV",
  "cca2" "CV"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [17.33333333 -62.75],
  "area" 261.0,
  "altSpellings" ["KN" "Federation of Saint Christopher and Nevis"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/qiaVwcLVTXX3eoTNA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/536899"},
  "demonyms"
  {"eng" {"f" "Kittitian or Nevisian", "m" "Kittitian or Nevisian"},
   "fra"
   {"f" "Kittitienne-et-nevicienne", "m" "Kittitien-et-nevicien"}},
  "translations"
  {"kor" {"official" "세인트키츠 네비스 연방", "common" "세인트키츠 네비스"},
   "zho" {"official" "圣克里斯托弗和尼维斯联邦", "common" "圣基茨和尼维斯"},
   "hun"
   {"official" "Saint Christopher és Nevis Államszövetség",
    "common" "Saint Kitts és Nevis"},
   "rus"
   {"official" "Федерация Сент-Кристофер и Н е в и с",
    "common" "Сент-Китс и Невис"},
   "swe"
   {"official" "Federationen Saint Kitts och Nevis",
    "common" "Saint Kitts och Nevis"},
   "ces"
   {"official" "Federace Sv. Kryštof a Nevis",
    "common" "Svatý Kryštof a Nevis"},
   "deu"
   {"official" "Föderation von St. Kitts und Nevis",
    "common" "St. Kitts und Nevis"},
   "ara"
   {"official" "اتحاد القديس كريستوفر ونيفيس",
    "common" "سانت كيتس ونيفيس"},
   "urd"
   {"official" "وفاقِ سینٹ کیٹز و ناویس",
    "common" "سینٹ کیٹز و ناویس"},
   "srp"
   {"official" "Федерација Свети Кристофер и Невис",
    "common" "Сент Китс и Невис"},
   "tur"
   {"official" "Saint Kitts ve Nevis Federasyonu",
    "common" "Saint Kitts ve Nevis"},
   "pol"
   {"official" "Federacja Saint Kitts i Nevis",
    "common" "Saint Kitts i Nevis"},
   "cym"
   {"official" "Federation of Saint Christopher and Nevis",
    "common" "Saint Kitts and Nevis"},
   "hrv"
   {"official" "Federacija Sv.Kristofora i Nevisa",
    "common" "Sveti Kristof i Nevis"},
   "spa"
   {"official" "Federación de San Cristóbal y Nevis",
    "common" "San Cristóbal y Nieves"},
   "fin"
   {"official" "Saint Christopherin ja Nevisin federaatio",
    "common" "Saint Kitts ja Nevis"},
   "per"
   {"official" "فدراسیون سنت کیتس و نویس", "common" "سنت کیتس و نویس"},
   "nld"
   {"official" "Federatie van Saint Kitts en Nevis",
    "common" "Saint Kitts en Nevis"},
   "fra"
   {"official" "Fédération de Saint-Christophe-et-Niévès",
    "common" "Saint-Christophe-et-Niévès"},
   "ita"
   {"official" "Federazione di Saint Christopher e Nevis",
    "common" "Saint Kitts e Nevis"},
   "jpn" {"official" "セントクリストファーNevis連盟", "common" "セントクリストファー・ネイビス"},
   "est"
   {"official" "Saint Kittsi ja Nevise Föderatsioon",
    "common" "Saint Kitts ja Nevis"},
   "por"
   {"official" "Federação de São Cristóvão e Nevis",
    "common" "São Cristóvão e Nevis"},
   "slk"
   {"official" "Feder໡cia Svätého Krištofa a Nevisu",
    "common" "Svätý Krištof a Nevis"},
   "bre"
   {"official" "Kevread Saint Kitts ha Nevis",
    "common" "Saint Kitts ha Nevis"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/kn.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/kn.png"},
  "idd" {"suffixes" ["869"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/kn.svg",
   "alt"
   "The flag of Saint Kitts and Nevis features two large five-pointed white stars within a yellow-edged black diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a green and red triangle respectively.",
   "png" "https://flagcdn.com/w320/kn.png"},
  "unMember" true,
  "name"
  {"official" "Federation of Saint Christopher and Nevis",
   "nativeName"
   {"eng"
    {"official" "Federation of Saint Christopher and Nevis",
     "common" "Saint Kitts and Nevis"}},
   "common" "Saint Kitts and Nevis"},
  "capitalInfo" {"latlng" [17.3 -62.72]},
  "tld" [".kn"],
  "ccn3" "659",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "cioc" "SKN",
  "currencies"
  {"XCD" {"name" "Eastern Caribbean dollar", "symbol" "$"}},
  "independent" true,
  "population" 53192,
  "cca3" "KNA",
  "capital" ["Basseterre"],
  "car" {"signs" ["KN"], "side" "left"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇰🇳",
  "fifa" "SKN",
  "cca2" "KN"}
 {"subregion" "South-Eastern Asia",
  "landlocked" true,
  "latlng" [18.0 105.0],
  "area" 236800.0,
  "altSpellings"
  ["LA"
   "Lao"
   "Lao People's Democratic Republic"
   "Sathalanalat Paxathipatai Paxaxon Lao"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/F3asVB7sRKgSnwbE7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/49903"},
  "demonyms"
  {"eng" {"f" "Laotian", "m" "Laotian"},
   "fra" {"f" "Laotienne", "m" "Laotien"}},
  "translations"
  {"kor" {"official" "라오 인민 민주 공화국", "common" "라오스"},
   "zho" {"official" "老挝人民民主共和国", "common" "老挝"},
   "hun"
   {"official" "Laoszi Népi Demokratikus Köztársaság",
    "common" "Laosz"},
   "rus"
   {"official" "Лаосская Народно-Демократическая Республика",
    "common" "Лаос"},
   "swe"
   {"official" "Demokratiska folkrepubliken Laos", "common" "Laos"},
   "ces"
   {"official" "Laoská lidově demokratická republika",
    "common" "Laos"},
   "deu"
   {"official" "Demokratische Volksrepublik Laos", "common" "Laos"},
   "ara"
   {"official" "جمهورية لاوس الديمقراطية الشعبية", "common" "لاوس"},
   "urd" {"official" "عوامی جمہوری جمہوریہ لاؤ", "common" "لاؤس"},
   "srp"
   {"official" "Лаошка Народна Демократска Република",
    "common" "Лаос"},
   "tur"
   {"official" "Laos Demokratik Halk Cumhuriyeti", "common" "Laos"},
   "pol"
   {"official" "Laotańska Republika Ludowo-Demokratyczna",
    "common" "Laos"},
   "cym"
   {"official" "Lao People's Democratic Republic", "common" "Laos"},
   "hrv" {"official" "Narodna Demokratska Republika", "common" "Laos"},
   "spa"
   {"official" "República Democrática Popular Lao", "common" "Laos"},
   "fin"
   {"official" "Laosin demokraattinen kansantasavalta",
    "common" "Laos"},
   "per" {"official" "جمهوری دموکراتیک خلق لائوس", "common" "لائوس"},
   "nld"
   {"official" "Lao Democratische Volksrepubliek", "common" "Laos"},
   "fra"
   {"official" "République démocratique populaire lao",
    "common" "Laos"},
   "ita"
   {"official" "Repubblica democratica popolare del Laos",
    "common" "Laos"},
   "jpn" {"official" "ラオス人民民主共和国", "common" "ラオス人民民主共和国"},
   "est"
   {"official" "Laose Demokraatlik Rahvavabariik", "common" "Laos"},
   "por" {"official" "Laos, República Democrática", "common" "Laos"},
   "slk"
   {"official" "Laoská ľudovodemokratická republika", "common" "Laos"},
   "bre"
   {"official" "Republik Demokratel ar Bobl Lao", "common" "Laos"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/la.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/la.png"},
  "idd" {"suffixes" ["56"], "root" "+8"},
  "flags"
  {"svg" "https://flagcdn.com/la.svg",
   "alt"
   "The flag of Laos is composed of three horizontal bands of red, blue and red. The blue band is twice the height of the red bands and bears a white circle at its center.",
   "png" "https://flagcdn.com/w320/la.png"},
  "unMember" true,
  "name"
  {"official" "Lao People's Democratic Republic",
   "nativeName"
   {"lao"
    {"official" "ສາທາລະນະ ຊາທິປະໄຕ ຄົນລາວ ຂອງ", "common" "ສປປລາວ"}},
   "common" "Laos"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [17.97 102.6]},
  "tld" [".la"],
  "ccn3" "418",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"lao" "Lao"},
  "cioc" "LAO",
  "currencies" {"LAK" {"name" "Lao kip", "symbol" "₭"}},
  "independent" true,
  "population" 7275556,
  "cca3" "LAO",
  "borders" ["MMR" "KHM" "CHN" "THA" "VNM"],
  "capital" ["Vientiane"],
  "car" {"signs" ["LAO"], "side" "right"},
  "timezones" ["UTC+07:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇱🇦",
  "gini" {"2018" 38.8},
  "fifa" "LAO",
  "cca2" "LA"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [12.18 -68.25],
  "area" 328.0,
  "altSpellings" ["BES islands"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/4XVes1P6uEDTz77WA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1216720"},
  "demonyms"
  {"eng" {"f" "Dutch", "m" "Dutch"},
   "fra" {"f" "Néerlandaise", "m" "Néerlandais"}},
  "translations"
  {"kor" {"official" "보네르, 신트외스타티위스, 사바", "common" "카리브 네덜란드"},
   "zho" {"official" "荷蘭加勒比區", "common" "荷蘭加勒比區"},
   "hun" {"official" "Bonaire", "common" "Bonaire"},
   "rus"
   {"official" "Бонэйр, Синт-Эстатиус и Саба",
    "common" "Карибские Нидерланды"},
   "swe"
   {"official" "Bonaire, Sint Eustatius and Saba",
    "common" "Karibiska Nederländerna"},
   "ces"
   {"official" "Karibské Nizozemsko", "common" "Karibské Nizozemsko"},
   "deu"
   {"official" "Bonaire, Sint Eustatius und Saba",
    "common" "Karibische Niederlande"},
   "ara"
   {"official" "بونير وسينت أوستاتيوس وسابا",
    "common" "الجزر الكاريبية الهولندية"},
   "urd"
   {"official" "بونایر، سینٹ ایوسٹائیس اور سابا",
    "common" "کیریبین نیدرلینڈز"},
   "srp"
   {"official" "Бонер, Свети Еустахије и Саба",
    "common" "Карипска Холандија"},
   "tur"
   {"official" "Karayip Hollandası", "common" "Karayip Hollandası"},
   "pol"
   {"official" "Bonaire, Sint Eustatius i Saba",
    "common" "Antyle Holenderskie"},
   "cym"
   {"official" "Bonaire, Sint Eustatius and Saba",
    "common" "Caribbean Netherlands"},
   "hrv"
   {"official" "Bonaire, Sint Eustatius i Saba",
    "common" "Bonaire, Sint Eustatius i Saba"},
   "spa"
   {"official" "Bonaire, San Eustaquio y Saba",
    "common" "Caribe Neerlandés"},
   "fin"
   {"official" "Bonaire, Sint Eustatius ja Saba",
    "common" "Bonaire, Sint Eustatius ja Saba"},
   "per"
   {"official" "جزایر کارائیب هلند", "common" "جزایر کارائیب هلند"},
   "nld"
   {"official" "Bonaire, Sint Eustatius en Saba",
    "common" "Caribisch Nederland"},
   "fra"
   {"official" "Bonaire, Saint-Eustache et Saba",
    "common" "Pays-Bas caribéens"},
   "ita"
   {"official" "Bonaire, Sint Eustatius e Saba",
    "common" "Paesi Bassi caraibici"},
   "jpn"
   {"official" "ボネール、シント・ユースタティウスおよびサバ",
    "common" "ボネール、シント・ユースタティウスおよびサバ"},
   "est"
   {"official" "Bonaire, Sint Eustatius ja Saba",
    "common" "Bonaire, Sint Eustatius ja Saba"},
   "por"
   {"official" "Bonaire, Saba e Santo Eustáquio",
    "common" "Países Baixos Caribenhos"},
   "slk"
   {"official" "Bonaire, Sint Eustatius a Saba",
    "common" "Bonaire, Sint Eustatius a Saba"},
   "bre"
   {"official" "Bonaire, Sint Eustatius ha Saba",
    "common" "Bonaire, Sint Eustatius ha Saba"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/bq.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/bq.png"},
  "idd" {"suffixes" ["99"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/bq.svg",
   "png" "https://flagcdn.com/w320/bq.png"},
  "unMember" false,
  "name"
  {"official" "Bonaire, Sint Eustatius and Saba",
   "nativeName"
   {"pap"
    {"official" "Boneiru, Sint Eustatius y Saba",
     "common" "Boneiru, Sint Eustatius y Saba"},
    "nld"
    {"official" "Bonaire, Sint Eustatius en Saba",
     "common" "Caribisch Nederland"}},
   "common" "Caribbean Netherlands"},
  "capitalInfo" {"latlng" [12.14 -68.27]},
  "tld" [".bq" ".nl"],
  "ccn3" "535",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English", "pap" "Papiamento", "nld" "Dutch"},
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" false,
  "population" 25987,
  "cca3" "BES",
  "capital" ["Kralendijk"],
  "car" {"signs" [""], "side" "right"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇧🇶",
  "cca2" "BQ"}
 {"subregion" "Eastern Africa",
  "landlocked" true,
  "latlng" [1.0 32.0],
  "area" 241550.0,
  "altSpellings" ["UG" "Republic of Uganda" "Jamhuri ya Uganda"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/Y7812hFiGa8LD9N68",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192796"},
  "demonyms"
  {"eng" {"f" "Ugandan", "m" "Ugandan"},
   "fra" {"f" "Ougandaise", "m" "Ougandais"}},
  "translations"
  {"kor" {"official" "우간다 공화국", "common" "우간다"},
   "zho" {"official" "乌干达共和国", "common" "乌干达"},
   "hun" {"official" "Ugandai Köztársaság", "common" "Uganda"},
   "rus" {"official" "Республика Уганда", "common" "Уганда"},
   "swe" {"official" "Republiken Uganda", "common" "Uganda"},
   "ces" {"official" "Ugandská republika", "common" "Uganda"},
   "deu" {"official" "Republik Uganda", "common" "Uganda"},
   "ara" {"official" "جمهورية أوغندا", "common" "أوغندا"},
   "urd" {"official" "جمہوریہ یوگنڈا", "common" "یوگنڈا"},
   "srp" {"official" "Република Уганда", "common" "Уганда"},
   "tur" {"official" "Uganda Cumhuriyeti", "common" "Uganda"},
   "pol" {"official" "Republika Ugandy", "common" "Uganda"},
   "cym" {"official" "Republic of Uganda", "common" "Uganda"},
   "hrv" {"official" "Republika Uganda", "common" "Uganda"},
   "spa" {"official" "República de Uganda", "common" "Uganda"},
   "fin" {"official" "Ugandan tasavalta", "common" "Uganda"},
   "per" {"official" "جمهوری اوگاندا", "common" "اوگاندا"},
   "nld" {"official" "Republiek Uganda", "common" "Oeganda"},
   "fra" {"official" "République de l'Ouganda", "common" "Ouganda"},
   "ita" {"official" "Repubblica di Uganda", "common" "Uganda"},
   "jpn" {"official" "ウガンダ共和国", "common" "ウガンダ"},
   "est" {"official" "Uganda Vabariik", "common" "Uganda"},
   "por" {"official" "República do Uganda", "common" "Uganda"},
   "slk" {"official" "Ugandská republika", "common" "Uganda"},
   "bre" {"official" "Republik Ouganda", "common" "Ouganda"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ug.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ug.png"},
  "idd" {"suffixes" ["56"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/ug.svg",
   "alt"
   "The flag of Uganda is composed of six equal horizontal bands of black, yellow, red, black, yellow and red. A white circle bearing a hoist-side facing grey red-crested crane is superimposed in the center of the field.",
   "png" "https://flagcdn.com/w320/ug.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Uganda",
   "nativeName"
   {"eng" {"official" "Republic of Uganda", "common" "Uganda"},
    "swa" {"official" "Republic of Uganda", "common" "Uganda"}},
   "common" "Uganda"},
  "capitalInfo" {"latlng" [0.32 32.55]},
  "tld" [".ug"],
  "ccn3" "800",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"eng" "English", "swa" "Swahili"},
  "cioc" "UGA",
  "currencies" {"UGX" {"name" "Ugandan shilling", "symbol" "Sh"}},
  "independent" true,
  "population" 45741000,
  "cca3" "UGA",
  "borders" ["COD" "KEN" "RWA" "SSD" "TZA"],
  "capital" ["Kampala"],
  "car" {"signs" ["EAU"], "side" "left"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇺🇬",
  "gini" {"2016" 42.8},
  "fifa" "UGA",
  "cca2" "UG"}
 {"subregion" "Southern Europe",
  "landlocked" true,
  "latlng" [42.5 1.5],
  "area" 468.0,
  "altSpellings"
  ["AD" "Principality of Andorra" "Principat d'Andorra"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/JqAnacWE2qEznKgw7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/9407"},
  "demonyms"
  {"eng" {"f" "Andorran", "m" "Andorran"},
   "fra" {"f" "Andorrane", "m" "Andorran"}},
  "translations"
  {"kor" {"official" "안도라 공국", "common" "안도라"},
   "zho" {"official" "安道尔公国", "common" "安道尔"},
   "hun" {"official" "Andorra", "common" "Andorra"},
   "rus" {"official" "Княжество Андорра", "common" "Андорра"},
   "swe" {"official" "Furstendömet Andorra", "common" "Andorra"},
   "ces" {"official" "Andorrské knížectví", "common" "Andorra"},
   "deu" {"official" "Fürstentum Andorra", "common" "Andorra"},
   "ara" {"official" "إمارة أندورا", "common" "أندورا"},
   "urd" {"official" "اماراتِ انڈورا", "common" "انڈورا"},
   "srp" {"official" "Кнежевина Андора", "common" "Андора"},
   "tur" {"official" "Andorra Prensliği", "common" "Andorra"},
   "pol" {"official" "Księstwo Andory", "common" "Andora"},
   "cym" {"official" "Tywysogaeth Andorra", "common" "Andorra"},
   "hrv" {"official" "Kneževina Andora", "common" "Andora"},
   "spa" {"official" "Principado de Andorra", "common" "Andorra"},
   "fin" {"official" "Andorran ruhtinaskunta", "common" "Andorra"},
   "per" {"official" "شاهزاده‌نشین آندورا", "common" "آندورا"},
   "nld" {"official" "Prinsdom Andorra", "common" "Andorra"},
   "fra" {"official" "Principauté d'Andorre", "common" "Andorre"},
   "ita" {"official" "Principato di Andorra", "common" "Andorra"},
   "jpn" {"official" "アンドラ公国", "common" "アンドラ"},
   "est" {"official" "Andorra Vürstiriik", "common" "Andorra"},
   "por" {"official" "Principado de Andorra", "common" "Andorra"},
   "slk" {"official" "Andorrské kniežatstvo", "common" "Andorra"},
   "bre" {"official" "Priñselezh Andorra", "common" "Andorra"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ad.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ad.png"},
  "idd" {"suffixes" ["76"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/ad.svg",
   "alt"
   "The flag of Andorra features three equal vertical bands of blue, yellow and red, with the coat of arms of Andorra centered in the yellow band.",
   "png" "https://flagcdn.com/w320/ad.png"},
  "unMember" true,
  "name"
  {"official" "Principality of Andorra",
   "nativeName"
   {"cat" {"official" "Principat d'Andorra", "common" "Andorra"}},
   "common" "Andorra"},
  "postalCode" {"regex" "^(?:AD)*(\\d{3})$", "format" "AD###"},
  "capitalInfo" {"latlng" [42.5 1.52]},
  "tld" [".ad"],
  "ccn3" "020",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"cat" "Catalan"},
  "cioc" "AND",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 77265,
  "cca3" "AND",
  "borders" ["FRA" "ESP"],
  "capital" ["Andorra la Vella"],
  "car" {"signs" ["AND"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇦🇩",
  "fifa" "AND",
  "cca2" "AD"}
 {"subregion" "Eastern Africa",
  "landlocked" true,
  "latlng" [-3.5 30.0],
  "area" 27834.0,
  "altSpellings"
  ["BI"
   "Republic of Burundi"
   "Republika y'Uburundi"
   "République du Burundi"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/RXPWoRrB9tfrJpUG7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/195269"},
  "demonyms"
  {"eng" {"f" "Burundian", "m" "Burundian"},
   "fra" {"f" "Burundaise", "m" "Burundais"}},
  "translations"
  {"kor" {"official" "부룬디", "common" "부룬디"},
   "zho" {"official" "布隆迪共和国", "common" "布隆迪"},
   "hun" {"official" "Burundi", "common" "Burundi"},
   "rus" {"official" "Республика Бурунди", "common" "Бурунди"},
   "swe" {"official" "Republiken Burundi", "common" "Burundi"},
   "ces" {"official" "Burundská republika", "common" "Burundi"},
   "deu" {"official" "Republik Burundi", "common" "Burundi"},
   "ara" {"official" "جمهورية بوروندي", "common" "بوروندي"},
   "urd" {"official" "جمہوریہ برونڈی", "common" "برونڈی"},
   "srp" {"official" "Република Бурунди", "common" "Бурунди"},
   "tur" {"official" "Burundi Cumhuriyeti", "common" "Burundi"},
   "pol" {"official" "Republika Burundi", "common" "Burundi"},
   "cym" {"official" "Gweriniaeth Bwrwndi", "common" "Bwrwndi"},
   "hrv" {"official" "Burundi", "common" "Burundi"},
   "spa" {"official" "República de Burundi", "common" "Burundi"},
   "fin" {"official" "Burundin tasavalta", "common" "Burundi"},
   "per" {"official" "جمهوری بوروندی", "common" "بوروندی"},
   "nld" {"official" "Republiek Burundi", "common" "Burundi"},
   "fra" {"official" "République du Burundi", "common" "Burundi"},
   "ita" {"official" "Repubblica del Burundi", "common" "Burundi"},
   "jpn" {"official" "ブルンジ共和国", "common" "ブルンジ"},
   "est" {"official" "Burundi Vabariik", "common" "Burundi"},
   "por" {"official" "República do Burundi", "common" "Burundi"},
   "slk" {"official" "Burundská republika", "common" "Burundi"},
   "bre" {"official" "Republik Burundi", "common" "Burundi"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/bi.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/bi.png"},
  "idd" {"suffixes" ["57"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/bi.svg",
   "alt"
   "The flag of Burundi is divided by a white diagonal cross into four alternating triangular areas of red at the top and bottom, and green on the hoist and fly sides. A white circle, with three green-edged red six-pointed stars arranged to form a triangle, is superimposed at the center of the cross.",
   "png" "https://flagcdn.com/w320/bi.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Burundi",
   "nativeName"
   {"run" {"official" "Republika y'Uburundi ", "common" "Uburundi"},
    "fra" {"official" "République du Burundi", "common" "Burundi"}},
   "common" "Burundi"},
  "capitalInfo" {"latlng" [-3.43 29.93]},
  "tld" [".bi"],
  "ccn3" "108",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"run" "Kirundi", "fra" "French"},
  "cioc" "BDI",
  "currencies" {"BIF" {"name" "Burundian franc", "symbol" "Fr"}},
  "independent" true,
  "population" 11890781,
  "cca3" "BDI",
  "borders" ["COD" "RWA" "TZA"],
  "capital" ["Gitega"],
  "car" {"signs" ["RU"], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇧🇮",
  "gini" {"2013" 38.6},
  "fifa" "BDI",
  "cca2" "BI"}
 {"subregion" "Southern Africa",
  "landlocked" false,
  "latlng" [-29.0 24.0],
  "area" 1221037.0,
  "altSpellings" ["ZA" "RSA" "Suid-Afrika" "Republic of South Africa"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/CLCZ1R8Uz1KpYhRv6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/87565"},
  "demonyms"
  {"eng" {"f" "South African", "m" "South African"},
   "fra" {"f" "Sud-africaine", "m" "Sud-africain"}},
  "translations"
  {"kor" {"official" "남아프리카 공화국", "common" "남아프리카"},
   "zho" {"official" "南非共和国", "common" "南非"},
   "hun"
   {"official" "Dél-afrikai Köztársaság",
    "common" "Dél-afrikai Köztársaság"},
   "rus"
   {"official" "Южно-Африканская Республика", "common" "Южная Африка"},
   "swe" {"official" "Republiken Sydafrika", "common" "Sydafrika"},
   "ces"
   {"official" "Jihoafrická republika",
    "common" "Jihoafrická republika"},
   "deu" {"official" "Republik Südafrika", "common" "Südafrika"},
   "ara" {"official" "جمهورية جنوب أفريقيا", "common" "جنوب أفريقيا"},
   "urd" {"official" "جمہوریہ جنوبی افریقا", "common" "جنوبی افریقا"},
   "srp"
   {"official" "Република Јужна Африка",
    "common" "Јужноафричка Република"},
   "tur"
   {"official" "Güney Afrika Cumhuriyeti", "common" "Güney Afrika"},
   "pol"
   {"official" "Republika Południowej Afryki",
    "common" "Południowa Afryka"},
   "cym"
   {"official" "Republic of South Africa", "common" "South Africa"},
   "hrv"
   {"official" "Južnoafrička Republika", "common" "Južna Afrika"},
   "spa" {"official" "República de Sudáfrica", "common" "Sudáfrica"},
   "fin"
   {"official" "Etelä-Afrikan tasavalta", "common" "Etelä-Afrikka"},
   "per" {"official" "جمهوری آفریقای جنوبی", "common" "آفریقای جنوبی"},
   "nld" {"official" "Republiek Zuid-Afrika", "common" "Zuid-Afrika"},
   "fra"
   {"official" "République d'Afrique du Sud",
    "common" "Afrique du Sud"},
   "ita"
   {"official" "Repubblica del Sud Africa", "common" "Sud Africa"},
   "jpn" {"official" "南アフリカ共和国", "common" "南アフリカ"},
   "est"
   {"official" "Lõuna-Aafrika Vabariik",
    "common" "Lõuna-Aafrika Vabariik"},
   "por"
   {"official" "República da África do Sul", "common" "África do Sul"},
   "slk" {"official" "Juhoafrická republika", "common" "Južná Afrika"},
   "bre" {"official" "Republik Suafrika", "common" "Suafrika"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/za.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/za.png"},
  "idd" {"suffixes" ["7"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/za.svg",
   "alt"
   "The flag of South Africa is composed of two equal horizontal bands of red and blue, with a yellow-edged black isosceles triangle superimposed on the hoist side of the field. This triangle has its base centered on the hoist end, spans about two-fifth the width and two-third the height of the field, and is enclosed on its sides by the arms of a white-edged green horizontally oriented Y-shaped band which extends along the boundary of the red and blue bands to the fly end of the field.",
   "png" "https://flagcdn.com/w320/za.png"},
  "unMember" true,
  "name"
  {"official" "Republic of South Africa",
   "nativeName"
   {"nso"
    {"official" "Rephaboliki ya Afrika-Borwa ",
     "common" "Afrika-Borwa"},
    "tsn"
    {"official" "Rephaboliki ya Aforika Borwa",
     "common" "Aforika Borwa"},
    "sot"
    {"official" "Rephaboliki ya Afrika Borwa",
     "common" "Afrika Borwa"},
    "eng"
    {"official" "Republic of South Africa", "common" "South Africa"},
    "ssw"
    {"official" "IRiphabhulikhi yeNingizimu Afrika",
     "common" "Ningizimu Afrika"},
    "tso"
    {"official" "Riphabliki ra Afrika Dzonga",
     "common" "Afrika Dzonga"},
    "afr"
    {"official" "Republiek van Suid-Afrika", "common" "South Africa"},
    "zul"
    {"official" "IRiphabliki yaseNingizimu Afrika",
     "common" "Ningizimu Afrika"},
    "ven"
    {"official" "Riphabuḽiki ya Afurika Tshipembe",
     "common" "Afurika Tshipembe"},
    "xho"
    {"official" "IRiphabliki yaseMzantsi Afrika",
     "common" "Mzantsi Afrika"},
    "nbl"
    {"official" "IRiphabliki yeSewula Afrika",
     "common" "Sewula Afrika"}},
   "common" "South Africa"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [-25.7 28.22]},
  "tld" [".za"],
  "ccn3" "710",
  "status" "officially-assigned",
  "region" "Africa",
  "languages"
  {"nso" "Northern Sotho",
   "tsn" "Tswana",
   "sot" "Southern Sotho",
   "eng" "English",
   "ssw" "Swazi",
   "tso" "Tsonga",
   "afr" "Afrikaans",
   "zul" "Zulu",
   "ven" "Venda",
   "xho" "Xhosa",
   "nbl" "Southern Ndebele"},
  "cioc" "RSA",
  "currencies" {"ZAR" {"name" "South African rand", "symbol" "R"}},
  "independent" true,
  "population" 59308690,
  "cca3" "ZAF",
  "borders" ["BWA" "LSO" "MOZ" "NAM" "SWZ" "ZWE"],
  "capital" ["Pretoria" "Bloemfontein" "Cape Town"],
  "car" {"signs" ["ZA"], "side" "left"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇿🇦",
  "gini" {"2014" 63.0},
  "fifa" "RSA",
  "cca2" "ZA"}
 {"subregion" "Western Europe",
  "landlocked" false,
  "latlng" [46.0 2.0],
  "area" 551695.0,
  "altSpellings" ["FR" "French Republic" "République française"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/g7QxxSFsWyTPKuzd7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1403916"},
  "demonyms"
  {"eng" {"f" "French", "m" "French"},
   "fra" {"f" "Française", "m" "Français"}},
  "translations"
  {"kor" {"official" "프랑스 공화국", "common" "프랑스"},
   "zho" {"official" "法兰西共和国", "common" "法国"},
   "hun" {"official" "Francia Köztársaság", "common" "Franciaország"},
   "rus" {"official" "Французская Республика", "common" "Франция"},
   "swe" {"official" "Republiken Frankrike", "common" "Frankrike"},
   "ces" {"official" "Francouzská republika", "common" "Francie"},
   "deu" {"official" "Französische Republik", "common" "Frankreich"},
   "ara" {"official" "الجمهورية الفرنسية", "common" "فرنسا"},
   "urd" {"official" "جمہوریہ فرانس", "common" "فرانس"},
   "srp" {"official" "Француска Република", "common" "Француска"},
   "tur" {"official" "Fransa Cumhuriyeti", "common" "Fransa"},
   "pol" {"official" "Republika Francuska", "common" "Francja"},
   "cym" {"official" "French Republic", "common" "France"},
   "hrv" {"official" "Francuska Republika", "common" "Francuska"},
   "spa" {"official" "República francés", "common" "Francia"},
   "fin" {"official" "Ranskan tasavalta", "common" "Ranska"},
   "per" {"official" "جمهوری فرانسه", "common" "فرانسه"},
   "nld" {"official" "Franse Republiek", "common" "Frankrijk"},
   "fra" {"official" "République française", "common" "France"},
   "ita" {"official" "Repubblica francese", "common" "Francia"},
   "jpn" {"official" "フランス共和国", "common" "フランス"},
   "est" {"official" "Prantsuse Vabariik", "common" "Prantsusmaa"},
   "por" {"official" "República Francesa", "common" "França"},
   "slk" {"official" "Francúzska republika", "common" "Francúzsko"},
   "bre" {"official" "Republik Frañs", "common" "Frañs"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/fr.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/fr.png"},
  "idd" {"suffixes" ["3"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/fr.svg",
   "alt"
   "The flag of France is composed of three equal vertical bands of blue, white and red.",
   "png" "https://flagcdn.com/w320/fr.png"},
  "unMember" true,
  "name"
  {"official" "French Republic",
   "nativeName"
   {"fra" {"official" "République française", "common" "France"}},
   "common" "France"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [48.87 2.33]},
  "tld" [".fr"],
  "ccn3" "250",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"fra" "French"},
  "cioc" "FRA",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 67391582,
  "cca3" "FRA",
  "borders" ["AND" "BEL" "DEU" "ITA" "LUX" "MCO" "ESP" "CHE"],
  "capital" ["Paris"],
  "car" {"signs" ["F"], "side" "right"},
  "timezones"
  ["UTC-10:00"
   "UTC-09:30"
   "UTC-09:00"
   "UTC-08:00"
   "UTC-04:00"
   "UTC-03:00"
   "UTC+01:00"
   "UTC+02:00"
   "UTC+03:00"
   "UTC+04:00"
   "UTC+05:00"
   "UTC+10:00"
   "UTC+11:00"
   "UTC+12:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇫🇷",
  "gini" {"2018" 32.4},
  "fifa" "FRA",
  "cca2" "FR"}
 {"subregion" "Northern Africa",
  "landlocked" false,
  "latlng" [25.0 17.0],
  "area" 1759540.0,
  "altSpellings" ["LY" "State of Libya" "Dawlat Libya"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/eLgGnaQWcJEdYRMy5",
   "openStreetMaps" "openstreetmap.org/relation/192758"},
  "demonyms"
  {"eng" {"f" "Libyan", "m" "Libyan"},
   "fra" {"f" "Libyenne", "m" "Libyen"}},
  "translations"
  {"kor" {"official" "리비아", "common" "리비아"},
   "zho" {"official" "利比亚国", "common" "利比亚"},
   "hun" {"official" "Líbia Állam", "common" "Líbia"},
   "rus" {"official" "Государство Ливии", "common" "Ливия"},
   "swe" {"official" "Staten Libyen", "common" "Libyen"},
   "ces" {"official" "Stát Libye", "common" "Libye"},
   "deu" {"official" "Staat Libyen", "common" "Libyen"},
   "ara" {"official" "دولة ليبيا", "common" "‏ليبيا"},
   "urd" {"official" "ریاستِ لیبیا", "common" "لیبیا"},
   "srp" {"official" "Држава Либија", "common" "Либија"},
   "tur" {"official" "Libya Devleti", "common" "Libya"},
   "pol" {"official" "Państwo Libia", "common" "Libia"},
   "cym" {"official" "State of Libya", "common" "Libya"},
   "hrv" {"official" "Država Libiji", "common" "Libija"},
   "spa" {"official" "Estado de Libia", "common" "Libia"},
   "fin" {"official" "Libyan valtio", "common" "Libya"},
   "per" {"official" "دولت لیبی", "common" "لیبی"},
   "nld" {"official" "Staat van Libië", "common" "Libië"},
   "fra"
   {"official"
    "Grande République arabe libyenne populaire et socialiste",
    "common" "Libye"},
   "ita" {"official" "Stato della Libia", "common" "Libia"},
   "jpn" {"official" "リビアの国家", "common" "リビア"},
   "est" {"official" "Liibüa", "common" "Liibüa"},
   "por" {"official" "Estado da Líbia", "common" "Líbia"},
   "slk" {"official" "Líbya", "common" "Líbya"},
   "bre" {"official" "Stad Libia", "common" "Libia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ly.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ly.png"},
  "idd" {"suffixes" ["18"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/ly.svg",
   "alt"
   "The flag of Libya is composed of three horizontal bands of red, black and green, with the black band twice the height of the other two bands. At the center of the black band is a fly-side facing white crescent and a five-pointed white star placed just outside the crescent opening.",
   "png" "https://flagcdn.com/w320/ly.png"},
  "unMember" true,
  "name"
  {"official" "State of Libya",
   "nativeName" {"ara" {"official" "الدولة ليبيا", "common" "‏ليبيا"}},
   "common" "Libya"},
  "capitalInfo" {"latlng" [32.88 13.17]},
  "tld" [".ly"],
  "ccn3" "434",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"ara" "Arabic"},
  "cioc" "LBA",
  "currencies" {"LYD" {"name" "Libyan dinar", "symbol" "ل.د"}},
  "independent" true,
  "population" 6871287,
  "cca3" "LBY",
  "borders" ["DZA" "TCD" "EGY" "NER" "SDN" "TUN"],
  "capital" ["Tripoli"],
  "car" {"signs" ["LAR"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "sunday",
  "continents" ["Africa"],
  "flag" "🇱🇾",
  "fifa" "LBY",
  "cca2" "LY"}
 {"subregion" "North America",
  "landlocked" false,
  "latlng" [23.0 -102.0],
  "area" 1964375.0,
  "altSpellings"
  ["MX"
   "Mexicanos"
   "United Mexican States"
   "Estados Unidos Mexicanos"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/s5g7imNPMDEePxzbA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/114686"},
  "demonyms"
  {"eng" {"f" "Mexican", "m" "Mexican"},
   "fra" {"f" "Mexicaine", "m" "Mexicain"}},
  "translations"
  {"kor" {"official" "멕시코 합중국", "common" "멕시코"},
   "zho" {"official" "墨西哥合众国", "common" "墨西哥"},
   "hun" {"official" "Mexikói Egyesült Államok", "common" "Mexikó"},
   "rus"
   {"official" "Мексиканские Соединённые Штаты", "common" "Мексика"},
   "swe" {"official" "Mexikos förenta stater", "common" "Mexiko"},
   "ces" {"official" "Spojené státy mexické", "common" "Mexiko"},
   "deu"
   {"official" "Vereinigte Mexikanische Staaten", "common" "Mexiko"},
   "ara" {"official" "الولايات المتحدة المكسيكية", "common" "المسكيك"},
   "urd" {"official" "ریاستہائے متحدہ میکسیکو", "common" "میکسیکو"},
   "srp" {"official" "Сједињене Мексичке Државе", "common" "Мексико"},
   "tur"
   {"official" "Birleşik Meksika Devletleri", "common" "Meksika"},
   "pol"
   {"official" "Meksykańskie Stany Zjednoczone", "common" "Meksyk"},
   "cym" {"official" "United Mexican States", "common" "Mexico"},
   "hrv" {"official" "Sjedinjene Meksičke Države", "common" "Meksiko"},
   "spa" {"official" "Estados Unidos Mexicanos", "common" "México"},
   "fin" {"official" "Meksikon yhdysvallat", "common" "Meksiko"},
   "per" {"official" "ایالات متحد مکزیک", "common" "مکزیک"},
   "nld" {"official" "Verenigde Mexicaanse Staten", "common" "Mexico"},
   "fra" {"official" "États-Unis du Mexique", "common" "Mexique"},
   "ita" {"official" "Stati Uniti del Messico", "common" "Messico"},
   "jpn" {"official" "メキシコ合衆国", "common" "メキシコ"},
   "est" {"official" "Mehhiko Ühendriigid", "common" "Mehhiko"},
   "por" {"official" "Estados Unidos Mexicanos", "common" "México"},
   "slk" {"official" "Spojené štášy mexické", "common" "Mexiko"},
   "bre" {"official" "Stadoù-Unanet Mec'hiko", "common" "Mec'hiko"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/mx.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/mx.png"},
  "idd" {"suffixes" ["2"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/mx.svg",
   "alt"
   "The flag of Mexico is composed of three equal vertical bands of green, white and red, with the national coat of arms centered in the white band.",
   "png" "https://flagcdn.com/w320/mx.png"},
  "unMember" true,
  "name"
  {"official" "United Mexican States",
   "nativeName"
   {"spa" {"official" "Estados Unidos Mexicanos", "common" "México"}},
   "common" "Mexico"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [19.43 -99.13]},
  "tld" [".mx"],
  "ccn3" "484",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"spa" "Spanish"},
  "cioc" "MEX",
  "currencies" {"MXN" {"name" "Mexican peso", "symbol" "$"}},
  "independent" true,
  "population" 128932753,
  "cca3" "MEX",
  "borders" ["BLZ" "GTM" "USA"],
  "capital" ["Mexico City"],
  "car" {"signs" ["MEX"], "side" "right"},
  "timezones" ["UTC-08:00" "UTC-07:00" "UTC-06:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇲🇽",
  "gini" {"2018" 45.4},
  "fifa" "MEX",
  "cca2" "MX"}
 {"subregion" "Middle Africa",
  "landlocked" false,
  "latlng" [-1.0 11.75],
  "area" 267668.0,
  "altSpellings" ["GA" "Gabonese Republic" "République Gabonaise"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/vyRSkqw1H1fnq4ry6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192793"},
  "demonyms"
  {"eng" {"f" "Gabonese", "m" "Gabonese"},
   "fra" {"f" "Gabonaise", "m" "Gabonais"}},
  "translations"
  {"kor" {"official" "가봉 공화국", "common" "가봉"},
   "zho" {"official" "加蓬共和国", "common" "加蓬"},
   "hun" {"official" "Gaboni Köztársaság", "common" "Gabon"},
   "rus" {"official" "Габона Республика", "common" "Габон"},
   "swe" {"official" "Republiken Gabon", "common" "Gabon"},
   "ces" {"official" "Gabonská republika", "common" "Gabon"},
   "deu" {"official" "Gabunische Republik", "common" "Gabun"},
   "ara" {"official" "جمهورية الغابون", "common" "الغابون"},
   "urd" {"official" "جمہوریہ گیبون", "common" "گیبون"},
   "srp" {"official" "Габонска Република", "common" "Габон"},
   "tur" {"official" "Gabon Cumhuriyeti", "common" "Gabon"},
   "pol" {"official" "Republika Gabońska", "common" "Gabon"},
   "cym" {"official" "Gabonese Republic", "common" "Gabon"},
   "hrv" {"official" "Gabon Republika", "common" "Gabon"},
   "spa" {"official" "República de Gabón", "common" "Gabón"},
   "fin" {"official" "Gabonin tasavalta", "common" "Gabon"},
   "per" {"official" "جمهوری گابُن", "common" "گابن"},
   "nld" {"official" "Republiek Gabon", "common" "Gabon"},
   "fra" {"official" "République gabonaise", "common" "Gabon"},
   "ita" {"official" "Repubblica gabonese", "common" "Gabon"},
   "jpn" {"official" "ガボン共和国", "common" "ガボン"},
   "est" {"official" "Gaboni Vabariik", "common" "Gabon"},
   "por" {"official" "República do Gabão", "common" "Gabão"},
   "slk" {"official" "Gabonská republika", "common" "Gabon"},
   "bre" {"official" "Republik Gabonat", "common" "Gabon"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ga.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ga.png"},
  "idd" {"suffixes" ["41"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/ga.svg",
   "alt"
   "The flag of Gabon is composed of three equal horizontal bands of green, yellow and blue.",
   "png" "https://flagcdn.com/w320/ga.png"},
  "unMember" true,
  "name"
  {"official" "Gabonese Republic",
   "nativeName"
   {"fra" {"official" "République gabonaise", "common" "Gabon"}},
   "common" "Gabon"},
  "capitalInfo" {"latlng" [0.38 9.45]},
  "tld" [".ga"],
  "ccn3" "266",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"fra" "French"},
  "cioc" "GAB",
  "currencies"
  {"XAF" {"name" "Central African CFA franc", "symbol" "Fr"}},
  "independent" true,
  "population" 2225728,
  "cca3" "GAB",
  "borders" ["CMR" "COG" "GNQ"],
  "capital" ["Libreville"],
  "car" {"signs" ["G"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇬🇦",
  "gini" {"2017" 38.0},
  "fifa" "GAB",
  "cca2" "GA"}
 {"subregion" "Micronesia",
  "landlocked" false,
  "latlng" [15.2 145.75],
  "area" 464.0,
  "altSpellings"
  ["MP"
   "Commonwealth of the Northern Mariana Islands"
   "Sankattan Siha Na Islas Mariånas"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/cpZ67knoRAcfu1417",
   "openStreetMaps" "https://www.openstreetmap.org/relation/306004"},
  "demonyms"
  {"eng" {"f" "American", "m" "American"},
   "fra" {"f" "Américaine", "m" "Américan"}},
  "translations"
  {"kor" {"official" "북마리아나 제도", "common" "북마리아나 제도"},
   "zho" {"official" "北马里亚纳群岛", "common" "北马里亚纳群岛"},
   "hun"
   {"official" "Északi-Mariana-szigetek",
    "common" "Északi-Mariana-szigetek"},
   "rus"
   {"official" "Содружество Северных Марианских островов",
    "common" "Северные Марианские острова"},
   "swe" {"official" "Nordmarianerna", "common" "Nordmarianerna"},
   "ces"
   {"official" "Společenství Severních Marian",
    "common" "Severní Mariany"},
   "deu"
   {"official" "Commonwealth der Nördlichen Marianen",
    "common" "Nördliche Marianen"},
   "ara"
   {"official" "كومونولث جزر ماريانا الشمالية",
    "common" "جزر ماريانا الشمالية"},
   "urd"
   {"official" "دولتِ مشترکہ جزائر شمالی ماریانا",
    "common" "جزائر شمالی ماریانا"},
   "srp"
   {"official" "Комонвелт Северна Маријанска Острва",
    "common" "Северна Маријанска Острва"},
   "tur"
   {"official" "Kuzey Mariana Adaları Milletler Topluluğu",
    "common" "Kuzey Mariana Adaları"},
   "pol"
   {"official" "Wspólnota Marianów Północnych",
    "common" "Mariany Północne"},
   "cym"
   {"official" "Commonwealth of the Northern Mariana Islands",
    "common" "Northern Mariana Islands"},
   "hrv"
   {"official" "Zajednica je Sjeverni Marijanski otoci",
    "common" "Sjevernomarijanski otoci"},
   "spa"
   {"official" "Mancomunidad de las Islas Marianas del Norte",
    "common" "Islas Marianas del Norte"},
   "fin"
   {"official" "Pohjois-Mariaanit", "common" "Pohjois-Mariaanit"},
   "per"
   {"official" "جزایر ماریانای شمالی",
    "common" "جزایر ماریانای شمالی"},
   "nld"
   {"official" "Commonwealth van de Noordelijke Marianen",
    "common" "Noordelijke Marianeneilanden"},
   "fra"
   {"official" "Commonwealth des îles Mariannes du Nord",
    "common" "Îles Mariannes du Nord"},
   "ita"
   {"official" "Commonwealth delle Isole Marianne Settentrionali",
    "common" "Isole Marianne Settentrionali"},
   "jpn" {"official" "北マリアナ諸島", "common" "北マリアナ諸島"},
   "est"
   {"official" "Põhja-Mariaani Ühendus", "common" "Põhja-Mariaanid"},
   "por"
   {"official" "Comunidade das Ilhas Marianas do Norte",
    "common" "Marianas Setentrionais"},
   "slk"
   {"official" "Spoločenstvo ostrovov Severné Mariány",
    "common" "Severné Mariány"},
   "bre"
   {"official" "Kenglad Inizi Mariana an Norzh",
    "common" "Inizi Mariana an Norzh"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["670"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/mp.svg",
   "png" "https://flagcdn.com/w320/mp.png"},
  "unMember" false,
  "name"
  {"official" "Commonwealth of the Northern Mariana Islands",
   "nativeName"
   {"eng"
    {"official" "Commonwealth of the Northern Mariana Islands",
     "common" "Northern Mariana Islands"},
    "cal"
    {"official" "Commonwealth of the Northern Mariana Islands",
     "common" "Northern Mariana Islands"},
    "cha"
    {"official" "Sankattan Siha Na Islas Mariånas",
     "common" "Na Islas Mariånas"}},
   "common" "Northern Mariana Islands"},
  "capitalInfo" {"latlng" [15.2 145.75]},
  "tld" [".mp"],
  "ccn3" "580",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"eng" "English", "cal" "Carolinian", "cha" "Chamorro"},
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" false,
  "population" 57557,
  "cca3" "MNP",
  "capital" ["Saipan"],
  "car" {"signs" ["USA"], "side" "right"},
  "timezones" ["UTC+10:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇲🇵",
  "cca2" "MP"}
 {"subregion" "Southeast Europe",
  "landlocked" true,
  "latlng" [41.83333333 22.0],
  "area" 25713.0,
  "altSpellings"
  ["MK"
   "The former Yugoslav Republic of Macedonia"
   "Republic of North Macedonia"
   "Macedonia, The Former Yugoslav Republic of"
   "Република Северна Македонија"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/55Q8MEnF6ACdu3q79",
   "openStreetMaps" "https://www.openstreetmap.org/relation/53293"},
  "demonyms"
  {"eng" {"f" "Macedonian", "m" "Macedonian"},
   "fra" {"f" "Macédonienne", "m" "Macédonien"}},
  "translations"
  {"kor" {"official" "북마케도니아 공화국", "common" "북마케도니아"},
   "zho" {"official" "北馬其頓共和國", "common" "北馬其頓"},
   "hun"
   {"official" "Észak-macedón Köztársaság",
    "common" "Észak-Macedónia"},
   "rus"
   {"official" "Республика Северная Македония",
    "common" "Северная Македония"},
   "swe"
   {"official" "Republiken Nordmakedonien", "common" "Nordmakedonien"},
   "ces"
   {"official" "Republika Severní Makedonie",
    "common" "Severní Makedonie"},
   "deu"
   {"official" "Republik Nordmazedonien", "common" "Nordmazedonien"},
   "ara" {"official" "جمهورية شمال مقدونيا", "common" "شمال مقدونيا"},
   "urd" {"official" "جمہوریہ مقدونیہ", "common" "شمالی مقدونیہ"},
   "srp"
   {"official" "Република Северна Македонија",
    "common" "Северна Македонија"},
   "tur"
   {"official" "Kuzey Makedonya Cumhuriyeti",
    "common" "Kuzey Makedonya"},
   "pol"
   {"official" "Republika Macedonii Północnej",
    "common" "Macedonia Północna"},
   "cym"
   {"official" "Republic of North Macedonia",
    "common" "North Macedonia"},
   "hrv"
   {"official" "Republika Sjeverna Makedonija",
    "common" "Sjeverna Makedonija"},
   "spa"
   {"official" "República de Macedonia del Norte",
    "common" "Macedonia del Norte"},
   "fin"
   {"official" "Pohjois-Makedonian tasavalta",
    "common" "Pohjois-Makedonia"},
   "per" {"official" "جمهوری مقدونیه شمالی", "common" "مقدونیه شمالی"},
   "nld"
   {"official" "Republiek Noord-Macedonië",
    "common" "Noord-Macedonië"},
   "fra"
   {"official" "République de Macédoine du Nord",
    "common" "Macédoine du Nord"},
   "ita"
   {"official" "Repubblica di Macedonia del Nord",
    "common" "Macedonia del Nord"},
   "jpn" {"official" "北マケドニア共和国", "common" "北マケドニア "},
   "est"
   {"official" "Põhja-Makedoonia Vabariik",
    "common" "Põhja-Makedoonia"},
   "por"
   {"official" "República da Macedônia do Norte",
    "common" "Macedónia do Norte"},
   "slk"
   {"official" "Severomacedónska republika",
    "common" "Severné Macedónsko"},
   "bre"
   {"official" "Republik Makedonia an Norzh",
    "common" "Makedonia an Norzh"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/mk.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/mk.png"},
  "idd" {"suffixes" ["89"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/mk.svg",
   "alt"
   "The flag of North Macedonia has a red field, at the center of which is a golden-yellow sun with eight broadening rays that extend to the edges of the field.",
   "png" "https://flagcdn.com/w320/mk.png"},
  "unMember" true,
  "name"
  {"official" "Republic of North Macedonia",
   "nativeName"
   {"mkd"
    {"official" "Република Северна Македонија",
     "common" "Македонија"}},
   "common" "North Macedonia"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [42.0 21.43]},
  "tld" [".mk"],
  "ccn3" "807",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"mkd" "Macedonian"},
  "cioc" "MKD",
  "currencies" {"MKD" {"name" "denar", "symbol" "den"}},
  "independent" true,
  "population" 2077132,
  "cca3" "MKD",
  "borders" ["ALB" "BGR" "GRC" "UNK" "SRB"],
  "capital" ["Skopje"],
  "car" {"signs" ["MK"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇲🇰",
  "gini" {"2018" 33.0},
  "fifa" "MKD",
  "cca2" "MK"}
 {"subregion" "Eastern Asia",
  "landlocked" false,
  "latlng" [35.0 105.0],
  "area" 9706961.0,
  "altSpellings"
  ["CN"
   "Zhōngguó"
   "Zhongguo"
   "Zhonghua"
   "People's Republic of China"
   "中华人民共和国"
   "Zhōnghuá Rénmín Gònghéguó"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/p9qC6vgiFRRXzvGi7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/270056"},
  "demonyms"
  {"eng" {"f" "Chinese", "m" "Chinese"},
   "fra" {"f" "Chinoise", "m" "Chinois"}},
  "translations"
  {"kor" {"official" "중화인민공화국", "common" "중국"},
   "hun" {"official" "Kínai Népköztársaság", "common" "Kína"},
   "rus" {"official" "Народная Республика Китай", "common" "Китай"},
   "swe" {"official" "Folkrepubliken Kina", "common" "Kina"},
   "ces" {"official" "Čínská lidová republika", "common" "Čína"},
   "deu" {"official" "Volksrepublik China", "common" "China"},
   "ara" {"official" "جمهورية الصين الشعبية", "common" "الصين"},
   "urd" {"official" "عوامی جمہوریہ چین", "common" "چین"},
   "srp" {"official" "Народна Република Кина", "common" "Кина"},
   "tur" {"official" "Çin Halk Cumhuriyeti", "common" "Çin"},
   "pol" {"official" "Chińska Republika Ludowa", "common" "Chiny"},
   "cym" {"official" "Gweriniaeth Pobl Tsieina", "common" "Tsieina"},
   "hrv" {"official" "Narodna Republika Kina", "common" "Kina"},
   "spa" {"official" "República Popular de China", "common" "China"},
   "fin" {"official" "Kiinan kansantasavalta", "common" "Kiina"},
   "per" {"official" "جمهوری خلق چین", "common" "چین"},
   "nld" {"official" "Volksrepubliek China", "common" "China"},
   "fra"
   {"official" "République populaire de Chine", "common" "Chine"},
   "ita" {"official" "Repubblica popolare cinese", "common" "Cina"},
   "jpn" {"official" "中華人民共和国", "common" "中国"},
   "est" {"official" "Hiina Rahvavabariik", "common" "Hiina"},
   "por" {"official" "República Popular da China", "common" "China"},
   "slk" {"official" "Čínska ľudová republika", "common" "Čína"},
   "bre" {"official" "Republik Pobl Sina", "common" "Sina"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/cn.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/cn.png"},
  "idd" {"suffixes" ["6"], "root" "+8"},
  "flags"
  {"svg" "https://flagcdn.com/cn.svg",
   "alt"
   "The flag of China has a red field. In the canton are five yellow five-pointed stars — a large star and four smaller stars arranged in a vertical arc on the fly side of the large star.",
   "png" "https://flagcdn.com/w320/cn.png"},
  "unMember" true,
  "name"
  {"official" "People's Republic of China",
   "nativeName" {"zho" {"official" "中华人民共和国", "common" "中国"}},
   "common" "China"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "######"},
  "capitalInfo" {"latlng" [39.92 116.38]},
  "tld" [".cn" ".中国" ".中國" ".公司" ".网络"],
  "ccn3" "156",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"zho" "Chinese"},
  "cioc" "CHN",
  "currencies" {"CNY" {"name" "Chinese yuan", "symbol" "¥"}},
  "independent" true,
  "population" 1402112000,
  "cca3" "CHN",
  "borders"
  ["AFG"
   "BTN"
   "MMR"
   "HKG"
   "IND"
   "KAZ"
   "NPL"
   "PRK"
   "KGZ"
   "LAO"
   "MAC"
   "MNG"
   "PAK"
   "RUS"
   "TJK"
   "VNM"],
  "capital" ["Beijing"],
  "car" {"signs" ["RC"], "side" "right"},
  "timezones" ["UTC+08:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇨🇳",
  "gini" {"2016" 38.5},
  "fifa" "CHN",
  "cca2" "CN"}
 {"subregion" "Western Asia",
  "landlocked" false,
  "latlng" [15.0 48.0],
  "area" 527968.0,
  "altSpellings"
  ["YE" "Yemeni Republic" "al-Jumhūriyyah al-Yamaniyyah"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/WCmE76HKcLideQQw7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/305092"},
  "demonyms"
  {"eng" {"f" "Yemeni", "m" "Yemeni"},
   "fra" {"f" "Yéménite", "m" "Yéménite"}},
  "translations"
  {"kor" {"official" "예멘 공화국", "common" "예멘"},
   "zho" {"official" "也门共和国", "common" "也门"},
   "hun" {"official" "Jemeni Köztársaság", "common" "Jemen"},
   "rus" {"official" "Йеменская Республика", "common" "Йемен"},
   "swe" {"official" "Republiken Jemen", "common" "Jemen"},
   "ces" {"official" "Jemenská republika", "common" "Jemen"},
   "deu" {"official" "Republik Jemen", "common" "Jemen"},
   "ara" {"official" "الجمهورية اليمنية", "common" "اليمن"},
   "urd" {"official" "جمہوریہ یمن", "common" "یمن"},
   "srp" {"official" "Република Јемен", "common" "Јемен"},
   "tur" {"official" "Yemen Cumhuriyeti", "common" "Yemen"},
   "pol" {"official" "Republika Jemeńska", "common" "Jemen"},
   "cym" {"official" "Republic of Yemen", "common" "Yemen"},
   "hrv" {"official" "Republika Jemen", "common" "Jemen"},
   "spa" {"official" "República de Yemen", "common" "Yemen"},
   "fin" {"official" "Jemenin tasavalta", "common" "Jemen"},
   "per" {"official" "جمهوری یمن", "common" "یمن"},
   "nld" {"official" "Republiek Jemen", "common" "Jemen"},
   "fra" {"official" "République du Yémen", "common" "Yémen"},
   "ita" {"official" "Repubblica dello Yemen", "common" "Yemen"},
   "jpn" {"official" "イエメン共和国", "common" "イエメン"},
   "est" {"official" "Jeemeni Vabariik", "common" "Jeemen"},
   "por" {"official" "República do Iêmen", "common" "Iémen"},
   "slk" {"official" "Jemenská republika", "common" "Jemen"},
   "bre" {"official" "Republik Yemen", "common" "Yemen"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ye.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ye.png"},
  "idd" {"suffixes" ["67"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/ye.svg",
   "alt"
   "The flag of Yemen is composed of three equal horizontal bands of red, white and black.",
   "png" "https://flagcdn.com/w320/ye.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Yemen",
   "nativeName"
   {"ara" {"official" "الجمهورية اليمنية", "common" "اليَمَن"}},
   "common" "Yemen"},
  "capitalInfo" {"latlng" [15.37 44.19]},
  "tld" [".ye"],
  "ccn3" "887",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"ara" "Arabic"},
  "cioc" "YEM",
  "currencies" {"YER" {"name" "Yemeni rial", "symbol" "﷼"}},
  "independent" true,
  "population" 29825968,
  "cca3" "YEM",
  "borders" ["OMN" "SAU"],
  "capital" ["Sana'a"],
  "car" {"signs" ["YAR"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "sunday",
  "continents" ["Asia"],
  "flag" "🇾🇪",
  "gini" {"2014" 36.7},
  "fifa" "YEM",
  "cca2" "YE"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [18.5 -63.41666666],
  "area" 21.0,
  "altSpellings"
  ["BL"
   "St. Barthelemy"
   "Collectivity of Saint Barthélemy"
   "Collectivité de Saint-Barthélemy"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/Mc7GqH466S7AAk297",
   "openStreetMaps" "https://www.openstreetmap.org/relation/7552779"},
  "demonyms"
  {"eng"
   {"f" "Saint Barthélemy Islander", "m" "Saint Barthélemy Islander"},
   "fra" {"f" "Barthéloméenne", "m" "Barthéloméen"}},
  "translations"
  {"kor" {"official" "생바르텔레미", "common" "생바르텔레미"},
   "zho" {"official" "圣巴泰勒米集体", "common" "圣巴泰勒米"},
   "hun" {"official" "Saint-Barthélemy", "common" "Saint-Barthélemy"},
   "rus"
   {"official" "Коллективность Санкт -Бартельми",
    "common" "Сен-Бартелеми"},
   "swe" {"official" "Saint-Barthélemy", "common" "Saint-Barthélemy"},
   "ces" {"official" "Svatý Bartoloměj", "common" "Svatý Bartoloměj"},
   "deu"
   {"official" "Gebietskörperschaft Saint-Barthélemy",
    "common" "Saint-Barthélemy"},
   "ara"
   {"official" "التجمع الإقليمي لسانت بارتيليمي",
    "common" "سان بارتليمي"},
   "urd" {"official" "سینٹ بارتھیملے", "common" "سینٹ بارتھیملے"},
   "srp"
   {"official" "Сен Бартелеми",
    "common" "Територијални Kолектив Сен Бартелеми"},
   "tur" {"official" "Saint Barthélemy", "common" "Saint Barthélemy"},
   "pol" {"official" "Saint-Barthélemy", "common" "Saint-Barthélemy"},
   "cym"
   {"official" "Collectivity of Saint Barthélemy",
    "common" "Saint Barthélemy"},
   "hrv"
   {"official" "Kolektivnost sv Barthélemy",
    "common" "Saint Barthélemy"},
   "spa"
   {"official" "Colectividad de San Barthélemy",
    "common" "San Bartolomé"},
   "fin"
   {"official" "Saint-Barthélemyn yhteisö",
    "common" "Saint-Barthélemy"},
   "per" {"official" "سن بارتلمی", "common" "سن بارتلمی"},
   "nld"
   {"official" "Gemeenschap Saint Barthélemy",
    "common" "Saint Barthélemy"},
   "fra"
   {"official" "Collectivité de Saint-Barthélemy",
    "common" "Saint-Barthélemy"},
   "ita"
   {"official" "Collettività di Saint Barthélemy",
    "common" "Antille Francesi"},
   "jpn" {"official" "サン·バルテルミー島の集合体", "common" "サン・バルテルミー"},
   "est"
   {"official" "Saint-Barthélemy territoriaalühendus",
    "common" "Saint-Barthélemy"},
   "por"
   {"official" "Coletividade de Saint Barthélemy",
    "common" "São Bartolomeu"},
   "slk" {"official" "Svätý Bartolomej", "common" "Svätý Bartolomej"},
   "bre" {"official" "Saint-Barthélemy", "common" "Saint-Barthélemy"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["90"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/bl.svg",
   "png" "https://flagcdn.com/w320/bl.png"},
  "unMember" false,
  "name"
  {"official" "Collectivity of Saint Barthélemy",
   "nativeName"
   {"fra"
    {"official" "Collectivité de Saint-Barthélemy",
     "common" "Saint-Barthélemy"}},
   "common" "Saint Barthélemy"},
  "postalCode" {"format" "### ###"},
  "capitalInfo" {"latlng" [17.88 -62.85]},
  "tld" [".bl"],
  "ccn3" "652",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"fra" "French"},
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" false,
  "population" 4255,
  "cca3" "BLM",
  "capital" ["Gustavia"],
  "car" {"signs" ["F"], "side" "right"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇧🇱",
  "cca2" "BL"}
 {"subregion" "Northern Europe",
  "landlocked" false,
  "latlng" [49.46666666 -2.58333333],
  "area" 78.0,
  "altSpellings"
  ["GG" "Bailiwick of Guernsey" "Bailliage de Guernesey"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/6kXnQU5QvEZMD9VB7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/270009"},
  "demonyms"
  {"eng" {"f" "Channel Islander", "m" "Channel Islander"},
   "fra" {"f" "Guernesiaise", "m" "Guernesiais"}},
  "translations"
  {"kor" {"official" "건지 섬", "common" "건지 섬"},
   "zho" {"official" "根西岛", "common" "根西岛"},
   "hun" {"official" "Guernsey", "common" "Guernsey"},
   "rus" {"official" "Коронное владение Гернси", "common" "Гернси"},
   "swe" {"official" "Guernsey", "common" "Guernsey"},
   "ces" {"official" "Rychtářství Guernsey", "common" "Guernsey"},
   "deu" {"official" "Vogtei Guernsey", "common" "Guernsey"},
   "ara" {"official" "غيرنزي", "common" "غيرنزي"},
   "urd" {"official" "گرنزی رودبار", "common" "گرنزی"},
   "srp" {"official" "Бејливик Гернзи", "common" "Гернзи"},
   "tur" {"official" "Guernsey Muhafızlığı", "common" "Guernsey"},
   "pol" {"official" "Baliwat Guernsey", "common" "Guernsey"},
   "cym" {"official" "Bailiwick of Guernsey", "common" "Guernsey"},
   "hrv" {"official" "Struka Guernsey", "common" "Guernsey"},
   "spa" {"official" "Bailía de Guernsey", "common" "Guernsey"},
   "fin" {"official" "Guernsey", "common" "Guernsey"},
   "per" {"official" "گرنزی", "common" "گرنزی"},
   "nld" {"official" "Baljuwschap Guernsey", "common" "Guernsey"},
   "fra" {"official" "Bailliage de Guernesey", "common" "Guernesey"},
   "ita" {"official" "Baliato di Guernsey", "common" "Guernsey"},
   "jpn" {"official" "ガーンジーの得意分野", "common" "ガーンジー"},
   "est" {"official" "Guernsey foogtkond", "common" "Guernsey"},
   "por" {"official" "Bailiado de Guernsey", "common" "Guernsey"},
   "slk" {"official" "Guernsey", "common" "Guernsey"},
   "bre" {"official" "Gwernenez", "common" "Gwernenez"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/gg.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/gg.png"},
  "idd" {"suffixes" ["4"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/gg.svg",
   "png" "https://flagcdn.com/w320/gg.png"},
  "unMember" false,
  "name"
  {"official" "Bailiwick of Guernsey",
   "nativeName"
   {"eng" {"official" "Bailiwick of Guernsey", "common" "Guernsey"},
    "fra" {"official" "Bailliage de Guernesey", "common" "Guernesey"},
    "nfr" {"official" "Dgèrnésiais", "common" "Dgèrnésiais"}},
   "common" "Guernsey"},
  "postalCode"
  {"regex"
   "^(([A-Z]\\d{2}[A-Z]{2})|([A-Z]\\d{3}[A-Z]{2})|([A-Z]{2}\\d{2}[A-Z]{2})|([A-Z]{2}\\d{3}[A-Z]{2})|([A-Z]\\d[A-Z]\\d[A-Z]{2})|([A-Z]{2}\\d[A-Z]\\d[A-Z]{2})|(GIR0AA))$",
   "format" "@# #@@|@## #@@|@@# #@@|@@## #@@|@#@ #@@|@@#@ #@@|GIR0AA"},
  "capitalInfo" {"latlng" [49.45 -2.54]},
  "tld" [".gg"],
  "ccn3" "831",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"eng" "English", "fra" "French", "nfr" "Guernésiais"},
  "currencies"
  {"GGP" {"name" "Guernsey pound", "symbol" "£"},
   "GBP" {"name" "British pound", "symbol" "£"}},
  "independent" false,
  "population" 62999,
  "cca3" "GGY",
  "capital" ["St. Peter Port"],
  "car" {"signs" ["GBG"], "side" "left"},
  "timezones" ["UTC+00:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇬🇬",
  "cca2" "GG"}
 {"subregion" "Melanesia",
  "landlocked" false,
  "latlng" [-8.0 159.0],
  "area" 28896.0,
  "altSpellings" ["SB"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/JbPkx86Ywjv8C1n8A",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1857436"},
  "demonyms"
  {"eng" {"f" "Solomon Islander", "m" "Solomon Islander"},
   "fra" {"f" "Salomonienne", "m" "Salomonien"}},
  "translations"
  {"kor" {"official" "솔로몬 제도", "common" "솔로몬 제도"},
   "zho" {"official" "所罗门群岛", "common" "所罗门群岛"},
   "hun" {"official" "Salamon-szigetek", "common" "Salamon-szigetek"},
   "rus"
   {"official" "Соломоновы острова", "common" "Соломоновы Острова"},
   "swe" {"official" "Salomonöarna", "common" "Salomonöarna"},
   "ces"
   {"official" "Šalamounovy ostrovy", "common" "Šalamounovy ostrovy"},
   "deu" {"official" "Salomonen", "common" "Salomonen"},
   "ara" {"official" "جزر سليمان", "common" "جزر سليمان"},
   "urd" {"official" "جزائر سلیمان", "common" "جزائر سلیمان"},
   "srp"
   {"official" "Соломонска Острва", "common" "Соломонска Острва"},
   "tur" {"official" "Solomon Adaları", "common" "Solomon Adaları"},
   "pol" {"official" "Wyspy Salomona", "common" "Wyspy Salomona"},
   "cym" {"official" "Solomon Islands", "common" "Solomon Islands"},
   "hrv" {"official" "Solomonski Otoci", "common" "Solomonski Otoci"},
   "spa" {"official" "islas Salomón", "common" "Islas Salomón"},
   "fin" {"official" "Salomonsaaret", "common" "Salomonsaaret"},
   "per" {"official" "جزایر سلیمان", "common" "جزایر سلیمان"},
   "nld" {"official" "Solomon eilanden", "common" "Salomonseilanden"},
   "fra" {"official" "Îles Salomon", "common" "Îles Salomon"},
   "ita" {"official" "Isole Salomone", "common" "Isole Salomone"},
   "jpn" {"official" "ソロモン諸島", "common" "ソロモン諸島"},
   "est" {"official" "Saalomoni Saared", "common" "Saalomoni Saared"},
   "por" {"official" "Ilhas Salomão", "common" "Ilhas Salomão"},
   "slk"
   {"official" "Salomonove ostrovy", "common" "Salomonove ostrovy"},
   "bre" {"official" "Inizi Salomon", "common" "Inizi Salomon"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/sb.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/sb.png"},
  "idd" {"suffixes" ["77"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/sb.svg",
   "alt"
   "The flag of Solomon Islands features a thin yellow diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a blue and green triangle respectively. Five white five-pointed stars arranged in an X shape are situated on the hoist side of the upper blue triangle.",
   "png" "https://flagcdn.com/w320/sb.png"},
  "unMember" true,
  "name"
  {"official" "Solomon Islands",
   "nativeName"
   {"eng" {"official" "Solomon Islands", "common" "Solomon Islands"}},
   "common" "Solomon Islands"},
  "capitalInfo" {"latlng" [-9.43 159.95]},
  "tld" [".sb"],
  "ccn3" "090",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"eng" "English"},
  "cioc" "SOL",
  "currencies" {"SBD" {"name" "Solomon Islands dollar", "symbol" "$"}},
  "independent" true,
  "population" 686878,
  "cca3" "SLB",
  "capital" ["Honiara"],
  "car" {"signs" ["SOL"], "side" "left"},
  "timezones" ["UTC+11:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇸🇧",
  "gini" {"2012" 37.1},
  "fifa" "SOL",
  "cca2" "SB"}
 {"subregion" "Northern Europe",
  "landlocked" false,
  "latlng" [78.0 20.0],
  "area" 61399.0,
  "altSpellings" ["SJ" "Svalbard and Jan Mayen Islands"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/L2wyyn3cQ16PzQ5J8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1337397"},
  "demonyms" {"eng" {"f" "Norwegian", "m" "Norwegian"}},
  "translations"
  {"kor" {"official" "스발바르 얀마옌 제도", "common" "스발바르 얀마옌 제도"},
   "zho" {"official" "斯瓦尔巴特", "common" "斯瓦尔巴特"},
   "hun"
   {"official" "Svalbard és Jan Mayen",
    "common" "Svalbard és Jan Mayen"},
   "rus"
   {"official" "Свальбарда ог Ян-Майен",
    "common" "Шпицберген и Ян-Майен"},
   "swe"
   {"official" "Svalbard och Jan Mayen",
    "common" "Svalbard och Jan Mayen"},
   "ces"
   {"official" "Špicberky a Jan Mayen",
    "common" "Špicberky a Jan Mayen"},
   "deu"
   {"official" "Spitzbergen und Jan Mayen",
    "common" "Spitzbergen und Jan Mayen"},
   "ara"
   {"official" "سفالبارد ويان ماين", "common" "سفالبارد ويان ماين"},
   "urd"
   {"official" "سوالبارڈ اور جان میئن",
    "common" "سوالبارڈ اور جان میئن"},
   "srp"
   {"official" "Свалбард и Јан Мајен",
    "common" "Свалбард и Јан Мајен"},
   "tur"
   {"official" "Svalbard ve Jan Mayen",
    "common" "Svalbard ve Jan Mayen"},
   "pol"
   {"official" "Svalbard i Jan Mayen",
    "common" "Svalbard i Jan Mayen"},
   "cym"
   {"official" "Svalbard og Jan Mayen",
    "common" "Svalbard and Jan Mayen"},
   "hrv"
   {"official" "Svalbard og Jan Mayen",
    "common" "Svalbard i Jan Mayen"},
   "spa"
   {"official" "Svalbard og Jan Mayen",
    "common" "Islas Svalbard y Jan Mayen"},
   "fin" {"official" "Huippuvuoret", "common" "Huippuvuoret"},
   "per"
   {"official" "سوالبارد و یان ماین", "common" "سوالبارد و یان ماین"},
   "nld"
   {"official" "Svalbard og Jan Mayen",
    "common" "Svalbard en Jan Mayen"},
   "fra"
   {"official" "Jan Mayen Svalbard", "common" "Svalbard et Jan Mayen"},
   "ita"
   {"official" "Svalbard og Jan Mayen",
    "common" "Svalbard e Jan Mayen"},
   "jpn"
   {"official" "スバールバル諸島OGヤンマイエン", "common" "スヴァールバル諸島およびヤンマイエン島"},
   "est" {"official" "Svalbard", "common" "Svalbard"},
   "por"
   {"official" "Svalbard og Jan Mayen",
    "common" "Ilhas Svalbard e Jan Mayen"},
   "slk"
   {"official" "Svalbard a Jan Mayen",
    "common" "Svalbard a Jan Mayen"},
   "bre"
   {"official" "Svalbard ha Jan Mayen",
    "common" "Svalbard ha Jan Mayen"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["779"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/sj.svg",
   "png" "https://flagcdn.com/w320/sj.png"},
  "unMember" false,
  "name"
  {"official" "Svalbard og Jan Mayen",
   "nativeName"
   {"nor"
    {"official" "Svalbard og Jan Mayen",
     "common" "Svalbard og Jan Mayen"}},
   "common" "Svalbard and Jan Mayen"},
  "capitalInfo" {"latlng" [78.22 15.63]},
  "tld" [".sj"],
  "ccn3" "744",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"nor" "Norwegian"},
  "currencies" {"NOK" {"name" "krone", "symbol" "kr"}},
  "independent" false,
  "population" 2562,
  "cca3" "SJM",
  "capital" ["Longyearbyen"],
  "car" {"signs" ["N"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇸🇯",
  "cca2" "SJ"}
 {"subregion" "Northern Europe",
  "landlocked" false,
  "latlng" [62.0 -7.0],
  "area" 1393.0,
  "altSpellings" ["FO" "Føroyar" "Færøerne"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/6sTru4SmHdEVcNkM6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/52939"},
  "demonyms"
  {"eng" {"f" "Faroese", "m" "Faroese"},
   "fra" {"f" "Féroïenne", "m" "Féroïen"}},
  "translations"
  {"kor" {"official" "페로 제도", "common" "페로 제도"},
   "zho" {"official" "法罗群岛", "common" "法罗群岛"},
   "hun" {"official" "Feröer", "common" "Feröer"},
   "rus"
   {"official" "Фарерские острова", "common" "Фарерские острова"},
   "swe" {"official" "Färöarna", "common" "Färöarna"},
   "ces" {"official" "Faerské ostrovy", "common" "Faerské ostrovy"},
   "deu" {"official" "Färöer", "common" "Färöer-Inseln"},
   "ara" {"official" "جزر فارو", "common" "جزر فارو"},
   "urd" {"official" "جزائر فارو", "common" "جزائر فارو"},
   "srp" {"official" "Фарска острва", "common" "Фарска острва"},
   "tur" {"official" "Faroe Adaları", "common" "Faroe Adaları"},
   "pol" {"official" "Wyspy Owcze", "common" "Wyspy Owcze"},
   "cym" {"official" "Faroe Islands", "common" "Faroe Islands"},
   "hrv" {"official" "Farski Otoci", "common" "Farski Otoci"},
   "spa" {"official" "Islas Feroe", "common" "Islas Faroe"},
   "fin" {"official" "Färsaaret", "common" "Färsaaret"},
   "per" {"official" "جزایر فاروئه", "common" "جزایر فاروئه"},
   "nld" {"official" "Faeröer", "common" "Faeröer"},
   "fra" {"official" "Îles Féroé", "common" "Îles Féroé"},
   "ita" {"official" "Isole Faroe", "common" "Isole Far Oer"},
   "jpn" {"official" "フェロー諸島", "common" "フェロー諸島"},
   "est" {"official" "Fääri saared", "common" "Fääri saared"},
   "por" {"official" "Ilhas Faroe", "common" "Ilhas Faroé"},
   "slk" {"official" "Faerské ostrovy", "common" "Faerské ostrovy"},
   "bre" {"official" "Inizi Faero", "common" "Inizi Faero"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/fo.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/fo.png"},
  "idd" {"suffixes" ["98"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/fo.svg",
   "png" "https://flagcdn.com/w320/fo.png"},
  "unMember" false,
  "name"
  {"official" "Faroe Islands",
   "nativeName"
   {"fao" {"official" "Føroyar", "common" "Føroyar"},
    "dan" {"official" "Færøerne", "common" "Færøerne"}},
   "common" "Faroe Islands"},
  "postalCode" {"regex" "^(?:FO)*(\\d{3})$", "format" "FO-###"},
  "capitalInfo" {"latlng" [62.01 -6.77]},
  "tld" [".fo"],
  "ccn3" "234",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"fao" "Faroese", "dan" "Danish"},
  "currencies"
  {"FOK" {"name" "Faroese króna", "symbol" "kr"},
   "DKK" {"name" "Danish krone", "symbol" "kr"}},
  "independent" false,
  "population" 48865,
  "cca3" "FRO",
  "capital" ["Tórshavn"],
  "car" {"signs" ["FO"], "side" "right"},
  "timezones" ["UTC+00:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇫🇴",
  "fifa" "FRO",
  "cca2" "FO"}
 {"subregion" "Central Asia",
  "landlocked" true,
  "latlng" [41.0 64.0],
  "area" 447400.0,
  "altSpellings"
  ["UZ"
   "Republic of Uzbekistan"
   "O‘zbekiston Respublikasi"
   "Ўзбекистон Республикаси"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/AJpo6MjMx23qSWCz8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/196240"},
  "demonyms"
  {"eng" {"f" "Uzbekistani", "m" "Uzbekistani"},
   "fra" {"f" "Ouzbèke", "m" "Ouzbèke"}},
  "translations"
  {"kor" {"official" "우즈베키스탄 공화국", "common" "우즈베키스탄"},
   "zho" {"official" "乌兹别克斯坦共和国", "common" "乌兹别克斯坦"},
   "hun" {"official" "Üzbég Köztársaság", "common" "Üzbegisztán"},
   "rus" {"official" "Республика Узбекистан", "common" "Узбекистан"},
   "swe" {"official" "Republiken Uzbekistan", "common" "Uzbekistan"},
   "ces" {"official" "Republika Uzbekistán", "common" "Uzbekistán"},
   "deu" {"official" "Republik Usbekistan", "common" "Usbekistan"},
   "ara" {"official" "جمهورية أوزباكستان", "common" "أوزباكستان"},
   "urd" {"official" "جمہوریہ ازبکستان", "common" "ازبکستان"},
   "srp" {"official" "Република Узбекистан", "common" "Узбекистан"},
   "tur" {"official" "Özbekistan Cumhuriyeti", "common" "Özbekistan"},
   "pol" {"official" "Republika Uzbekistanu", "common" "Uzbekistan"},
   "cym" {"official" "Republic of Uzbekistan", "common" "Uzbekistan"},
   "hrv" {"official" "Republika Uzbekistan", "common" "Uzbekistan"},
   "spa" {"official" "República de Uzbekistán", "common" "Uzbekistán"},
   "fin" {"official" "Uzbekistanin tasavalta", "common" "Uzbekistan"},
   "per" {"official" "جمهوری ازبکستان", "common" "ازبکستان"},
   "nld" {"official" "Republiek Oezbekistan", "common" "Oezbekistan"},
   "fra"
   {"official" "République d'Ouzbékistan", "common" "Ouzbékistan"},
   "ita"
   {"official" "Repubblica di Uzbekistan", "common" "Uzbekistan"},
   "jpn" {"official" "ウズベキスタン共和国", "common" "ウズベキスタン"},
   "est" {"official" "Usbekistani Vabariik", "common" "Usbekistan"},
   "por"
   {"official" "República do Usbequistão", "common" "Uzbequistão"},
   "slk" {"official" "Uzbecká republika", "common" "Uzbekistan"},
   "bre" {"official" "Republik Ouzbekistan", "common" "Ouzbekistan"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/uz.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/uz.png"},
  "idd" {"suffixes" ["98"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/uz.svg",
   "alt"
   "The flag of Uzbekistan is composed of three equal horizontal bands of turquoise, white with red top and bottom edges, and green. On the hoist side of the turquoise band is a fly-side facing white crescent and twelve five-pointed white stars arranged just outside the crescent opening in three rows comprising three, four and five stars.",
   "png" "https://flagcdn.com/w320/uz.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Uzbekistan",
   "nativeName"
   {"rus" {"official" "Республика Узбекистан", "common" "Узбекистан"},
    "uzb"
    {"official" "O'zbekiston Respublikasi", "common" "O‘zbekiston"}},
   "common" "Uzbekistan"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "######"},
  "capitalInfo" {"latlng" [41.32 69.25]},
  "tld" [".uz"],
  "ccn3" "860",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"rus" "Russian", "uzb" "Uzbek"},
  "cioc" "UZB",
  "currencies" {"UZS" {"name" "Uzbekistani soʻm", "symbol" "so'm"}},
  "independent" true,
  "population" 34232050,
  "cca3" "UZB",
  "borders" ["AFG" "KAZ" "KGZ" "TJK" "TKM"],
  "capital" ["Tashkent"],
  "car" {"signs" ["UZ"], "side" "right"},
  "timezones" ["UTC+05:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇺🇿",
  "gini" {"2003" 35.3},
  "fifa" "UZB",
  "cca2" "UZ"}
 {"subregion" "Northern Africa",
  "landlocked" false,
  "latlng" [27.0 30.0],
  "area" 1002450.0,
  "altSpellings" ["EG" "Arab Republic of Egypt"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/uoDRhXbsqjG6L7VG7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1473947"},
  "demonyms"
  {"eng" {"f" "Egyptian", "m" "Egyptian"},
   "fra" {"f" "Égyptienne", "m" "Égyptien"}},
  "translations"
  {"kor" {"official" "이집트 아랍 공화국", "common" "이집트"},
   "zho" {"official" "阿拉伯埃及共和国", "common" "埃及"},
   "hun"
   {"official" "Egyiptomi Arab Köztársaság", "common" "Egyiptom"},
   "rus" {"official" "Арабская Республика Египет", "common" "Египет"},
   "swe" {"official" "Arabrepubliken Egypten", "common" "Egypten"},
   "ces" {"official" "Egyptská arabská republika", "common" "Egypt"},
   "deu" {"official" "Arabische Republik Ägypten", "common" "Ägypten"},
   "ara" {"official" "جمهورية مصر العربية", "common" "مصر"},
   "urd" {"official" "مصری عرب جمہوریہ", "common" "مصر"},
   "srp" {"official" "Арапска Република Египат", "common" "Египат"},
   "tur" {"official" "Mısır Arap Cumhuriyeti", "common" "Mısır"},
   "pol" {"official" "Arabska Republika Egiptu", "common" "Egipt"},
   "cym"
   {"official" "Gweriniaeth Arabaidd yr Aifft", "common" "Yr Aifft"},
   "hrv" {"official" "Arapska Republika Egipat", "common" "Egipat"},
   "spa" {"official" "República Árabe de Egipto", "common" "Egipto"},
   "fin" {"official" "Egyptin arabitasavalta", "common" "Egypti"},
   "per" {"official" "جمهوری عربی مصر", "common" "مصر"},
   "nld" {"official" "Arabische Republiek Egypte", "common" "Egypte"},
   "fra" {"official" "République arabe d'Égypte", "common" "Égypte"},
   "ita" {"official" "Repubblica araba d'Egitto", "common" "Egitto"},
   "jpn" {"official" "エジプト·アラブ共和国", "common" "エジプト"},
   "est" {"official" "Egiptuse Araabia Vabariik", "common" "Egiptus"},
   "por" {"official" "República Árabe do Egipto", "common" "Egito"},
   "slk" {"official" "Egyptská arabská republika", "common" "Egypt"},
   "bre" {"official" "Republik arab Egipt", "common" "Egipt"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/eg.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/eg.png"},
  "idd" {"suffixes" ["0"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/eg.svg",
   "alt"
   "The flag of Egypt is composed of three equal horizontal bands of red, white and black, with Egypt's national emblem — a hoist-side facing gold eagle of Saladin — centered in the white band.",
   "png" "https://flagcdn.com/w320/eg.png"},
  "unMember" true,
  "name"
  {"official" "Arab Republic of Egypt",
   "nativeName"
   {"ara" {"official" "جمهورية مصر العربية", "common" "مصر"}},
   "common" "Egypt"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [30.05 31.25]},
  "tld" [".eg" ".مصر"],
  "ccn3" "818",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"ara" "Arabic"},
  "cioc" "EGY",
  "currencies" {"EGP" {"name" "Egyptian pound", "symbol" "£"}},
  "independent" true,
  "population" 102334403,
  "cca3" "EGY",
  "borders" ["ISR" "LBY" "PSE" "SDN"],
  "capital" ["Cairo"],
  "car" {"signs" ["ET"], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "sunday",
  "continents" ["Africa"],
  "flag" "🇪🇬",
  "gini" {"2017" 31.5},
  "fifa" "EGY",
  "cca2" "EG"}
 {"subregion" "Western Africa",
  "landlocked" false,
  "latlng" [14.0 -14.0],
  "area" 196722.0,
  "altSpellings" ["SN" "Republic of Senegal" "République du Sénégal"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/o5f1uD5nyihCL3HCA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192775"},
  "demonyms"
  {"eng" {"f" "Senegalese", "m" "Senegalese"},
   "fra" {"f" "Sénégalaise", "m" "Sénégalais"}},
  "translations"
  {"kor" {"official" "세네갈 공화국", "common" "세네갈"},
   "zho" {"official" "塞内加尔共和国", "common" "塞内加尔"},
   "hun" {"official" "Szenegáli Köztársaság", "common" "Szenegál"},
   "rus" {"official" "Республика Сенегал", "common" "Сенегал"},
   "swe" {"official" "Republiken Senegal", "common" "Senegal"},
   "ces" {"official" "Senegalská republika", "common" "Senegal"},
   "deu" {"official" "Republik Senegal", "common" "Senegal"},
   "ara" {"official" "جمهورية السنغال", "common" "السنغال"},
   "urd" {"official" "جمہوریہ سینیگال", "common" "سینیگال"},
   "srp" {"official" "Република Сенегал", "common" "Сенегал"},
   "tur" {"official" "Senegal Cumhuriyeti", "common" "Senegal"},
   "pol" {"official" "Senegal", "common" "Senegal"},
   "cym" {"official" "Republic of Senegal", "common" "Senegal"},
   "hrv" {"official" "Republika Senegal", "common" "Senegal"},
   "spa" {"official" "República de Senegal", "common" "Senegal"},
   "fin" {"official" "Senegalin tasavalta", "common" "Senegal"},
   "per" {"official" "جمهوری سنگال", "common" "سنگال"},
   "nld" {"official" "Republiek Senegal", "common" "Senegal"},
   "fra" {"official" "République du Sénégal", "common" "Sénégal"},
   "ita" {"official" "Repubblica del Senegal", "common" "Senegal"},
   "jpn" {"official" "セネガル共和国", "common" "セネガル"},
   "est" {"official" "Senegali Vabariik", "common" "Senegal"},
   "por" {"official" "República do Senegal", "common" "Senegal"},
   "slk" {"official" "Senegalská republika", "common" "Senegal"},
   "bre" {"official" "Republik Senegal", "common" "Senegal"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/sn.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/sn.png"},
  "idd" {"suffixes" ["21"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/sn.svg",
   "alt"
   "The flag of Senegal is composed of three equal vertical bands of green, golden-yellow and red, with a five-pointed green star centered in the golden-yellow band.",
   "png" "https://flagcdn.com/w320/sn.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Senegal",
   "nativeName"
   {"fra" {"official" "République du Sénégal", "common" "Sénégal"}},
   "common" "Senegal"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [14.73 -17.63]},
  "tld" [".sn"],
  "ccn3" "686",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"fra" "French"},
  "cioc" "SEN",
  "currencies"
  {"XOF" {"name" "West African CFA franc", "symbol" "Fr"}},
  "independent" true,
  "population" 16743930,
  "cca3" "SEN",
  "borders" ["GMB" "GIN" "GNB" "MLI" "MRT"],
  "capital" ["Dakar"],
  "car" {"signs" ["SN"], "side" "right"},
  "timezones" ["UTC"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇸🇳",
  "gini" {"2011" 40.3},
  "fifa" "SEN",
  "cca2" "SN"}
 {"subregion" "Southern Asia",
  "landlocked" false,
  "latlng" [7.0 81.0],
  "area" 65610.0,
  "altSpellings"
  ["LK" "ilaṅkai" "Democratic Socialist Republic of Sri Lanka"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/VkPHoeFSfgzRQCDv8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/536807"},
  "demonyms"
  {"eng" {"f" "Sri Lankan", "m" "Sri Lankan"},
   "fra" {"f" "Sri-lankaise", "m" "Sri-lankais"}},
  "translations"
  {"kor" {"official" "스리랑카 민주 사회주의 공화국", "common" "스리랑카"},
   "zho" {"official" "斯里兰卡民主社会主义共和国", "common" "斯里兰卡"},
   "hun"
   {"official" "Srí Lanka-i Demokratikus Szocialista Köztársaság",
    "common" "Srí Lanka"},
   "rus"
   {"official" "Демократическая Социалистическая Республика Шри-Ланка",
    "common" "Шри-Ланка"},
   "swe"
   {"official" "Demokratiska socialistiska republiken Sri Lanka",
    "common" "Sri Lanka"},
   "ces"
   {"official" "Srílanská demokratická socialistická republika",
    "common" "Srí Lanka"},
   "deu"
   {"official" "Demokratische Sozialistische Republik Sri Lanka",
    "common" "Sri Lanka"},
   "ara"
   {"official" "جمهورية سريلانكا الديمقراطية الشعبية",
    "common" "سريلانكا"},
   "urd"
   {"official" "جمہوری و اشتراکی جمہوریہ سری لنکا",
    "common" "سری لنکا"},
   "srp"
   {"official" "Демократска Социјалистичка Република Сри Ланка",
    "common" "Сри Ланка"},
   "tur"
   {"official" "Sri Lanka Demokratik Sosyalist Cumhuriyeti",
    "common" "Sri Lanka"},
   "pol"
   {"official" "Demokratyczno-Socjalistyczna Republika Sri Lanki",
    "common" "Sri Lanka"},
   "cym"
   {"official" "Democratic Socialist Republic of Sri Lanka",
    "common" "Sri Lanka"},
   "hrv"
   {"official" "Demokratska Socijalističke Republike Šri Lanke",
    "common" "Šri Lanka"},
   "spa"
   {"official" "República Democrática Socialista de Sri Lanka",
    "common" "Sri Lanka"},
   "fin"
   {"official" "Sri Lankan demokraattinen sosialistinen tasavalta",
    "common" "Sri Lanka"},
   "per"
   {"official" "جمهوری دموکراتیک سوسیالیستی سری‌لانکا",
    "common" "سری‌لانکا"},
   "nld"
   {"official" "Democratische Socialistische Republiek Sri Lanka",
    "common" "Sri Lanka"},
   "fra"
   {"official" "République démocratique socialiste du Sri Lanka",
    "common" "Sri Lanka"},
   "ita"
   {"official" "Repubblica democratica socialista dello Sri Lanka",
    "common" "Sri Lanka"},
   "jpn" {"official" "スリランカ民主社会主義共和国", "common" "スリランカ"},
   "est"
   {"official" "Sri Lanka Demokraatlik Sotsialistlik Vabariik",
    "common" "Sri Lanka"},
   "por"
   {"official" "República Democrática Socialista do Sri Lanka",
    "common" "Sri Lanka"},
   "slk"
   {"official" "Srílanská demokratická socialistická republika",
    "common" "Srí Lanka"},
   "bre"
   {"official" "Republik Demokratel ha Sokialour Sri Lanka",
    "common" "Sri Lanka"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/lk.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/lk.png"},
  "idd" {"suffixes" ["4"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/lk.svg",
   "alt"
   "The flag of Sri Lanka features two large adjacent but separate rectangular areas, centered on a golden-yellow field. The smaller hoist-side rectangle is divided into two equal vertical bands of teal and orange, and the larger fly-side rectangle is maroon with a centered golden-yellow lion holding a Kastane sword in its right fore-paw and four golden-yellow Bo leaves, one in each corner.",
   "png" "https://flagcdn.com/w320/lk.png"},
  "unMember" true,
  "name"
  {"official" "Democratic Socialist Republic of Sri Lanka",
   "nativeName"
   {"sin"
    {"official" "ශ්‍රී ලංකා ප්‍රජාතාන්ත්‍රික සමාජවාදී ජනරජය",
     "common" "ශ්‍රී ලංකාව"},
    "tam"
    {"official" "இலங்கை சனநாயக சோசலிசக் குடியரசு", "common" "இலங்கை"}},
   "common" "Sri Lanka"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [6.89 79.9]},
  "tld" [".lk" ".இலங்கை" ".ලංකා"],
  "ccn3" "144",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"sin" "Sinhala", "tam" "Tamil"},
  "cioc" "SRI",
  "currencies" {"LKR" {"name" "Sri Lankan rupee", "symbol" "Rs  රු"}},
  "independent" true,
  "population" 21919000,
  "cca3" "LKA",
  "borders" ["IND"],
  "capital" ["Sri Jayawardenepura Kotte"],
  "car" {"signs" ["CL"], "side" "left"},
  "timezones" ["UTC+05:30"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇱🇰",
  "gini" {"2016" 39.3},
  "fifa" "SRI",
  "cca2" "LK"}
 {"subregion" "Western Asia",
  "landlocked" false,
  "latlng" [31.9 35.2],
  "area" 6220.0,
  "altSpellings"
  ["PS" "Palestine, State of" "State of Palestine" "Dawlat Filasṭin"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/QvTbkRdmdWEoYAmt5",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1703814"},
  "demonyms"
  {"eng" {"f" "Palestinian", "m" "Palestinian"},
   "fra" {"f" "Palestinienne", "m" "Palestinien"}},
  "translations"
  {"kor" {"official" "팔레스타인국", "common" "팔레스타인"},
   "zho" {"official" "巴勒斯坦国", "common" "巴勒斯坦"},
   "hun" {"official" "Palesztin Autonómia", "common" "Palesztina"},
   "rus" {"official" "Государство Палестина", "common" "Палестина"},
   "swe" {"official" "Palestina", "common" "Palestina"},
   "ces" {"official" "Stát Palestina", "common" "Palestina"},
   "deu" {"official" "Staat Palästina", "common" "Palästina"},
   "ara" {"official" "دولة فلسطين", "common" "فلسطين"},
   "urd" {"official" "ریاستِ فلسطین", "common" "فلسطین"},
   "srp" {"official" "Држава Палестина", "common" "Палестина"},
   "tur" {"official" "Filistin Devleti", "common" "Filistin"},
   "pol" {"official" "Państwo Palestyna", "common" "Palestyna"},
   "cym" {"official" "State of Palestine", "common" "Palestine"},
   "hrv" {"official" "State of Palestine", "common" "Palestina"},
   "spa" {"official" "Estado de Palestina", "common" "Palestina"},
   "fin" {"official" "Palestiinan valtio", "common" "Palestiina"},
   "per" {"official" "دولت فلسطین", "common" "فلسطین"},
   "nld"
   {"official" "Staat Palestina", "common" "Palestijnse gebieden"},
   "fra" {"official" "État de Palestine", "common" "Palestine"},
   "ita" {"official" "Stato di Palestina", "common" "Palestina"},
   "jpn" {"official" "パレスチナ自治政府", "common" "パレスチナ"},
   "est" {"official" "Palestiina Riik", "common" "Palestiina"},
   "por" {"official" "Estado da Palestina", "common" "Palestina"},
   "slk" {"official" "Palestínsky štát", "common" "Palestína"},
   "bre" {"official" "Stad Palestina", "common" "Palestina"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ps.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ps.png"},
  "idd" {"suffixes" ["70"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/ps.svg",
   "png" "https://flagcdn.com/w320/ps.png"},
  "unMember" false,
  "name"
  {"official" "State of Palestine",
   "nativeName" {"ara" {"official" "دولة فلسطين", "common" "فلسطين"}},
   "common" "Palestine"},
  "capitalInfo" {"latlng" [31.9 35.2]},
  "tld" [".ps" "فلسطين."],
  "ccn3" "275",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"ara" "Arabic"},
  "cioc" "PLE",
  "currencies"
  {"ILS" {"name" "Israeli new shekel", "symbol" "₪"},
   "JOD" {"name" "Jordanian dinar", "symbol" "JD"},
   "EGP" {"name" "Egyptian pound", "symbol" "E£"}},
  "independent" false,
  "population" 4803269,
  "cca3" "PSE",
  "borders" ["ISR" "EGY" "JOR"],
  "capital" ["Ramallah" "Jerusalem"],
  "car" {"signs" ["PS"], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "sunday",
  "continents" ["Asia"],
  "flag" "🇵🇸",
  "gini" {"2016" 33.7},
  "fifa" "PLE",
  "cca2" "PS"}
 {"subregion" "Southern Asia",
  "landlocked" false,
  "latlng" [24.0 90.0],
  "area" 147570.0,
  "altSpellings"
  ["BD"
   "People's Republic of Bangladesh"
   "Gônôprôjatôntri Bangladesh"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/op6gmLbHcvv6rLhH6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/184640"},
  "demonyms"
  {"eng" {"f" "Bangladeshi", "m" "Bangladeshi"},
   "fra" {"f" "Bangladaise", "m" "Bangladais"}},
  "translations"
  {"kor" {"official" "방글라데시 인민 공화국", "common" "방글라데시"},
   "zho" {"official" "孟加拉人民共和国", "common" "孟加拉国"},
   "hun" {"official" "Banglades", "common" "Banglades"},
   "rus"
   {"official" "Народная Республика Бангладеш", "common" "Бангладеш"},
   "swe"
   {"official" "Folkrepubliken Bangladesh", "common" "Bangladesh"},
   "ces"
   {"official" "Bangladéšská lidová republika", "common" "Bangladéš"},
   "deu"
   {"official" "Volksrepublik Bangladesch", "common" "Bangladesch"},
   "ara" {"official" "جمهورية بنغلاديش الشعبية", "common" "بنغلاديش"},
   "urd" {"official" "عوامی جمہوریہ بنگلہ دیش", "common" "بنگلہ دیش"},
   "srp"
   {"official" "Народна Република Бангладеш", "common" "Бангладеш"},
   "tur"
   {"official" "Bangladeş Halk Cumhuriyeti", "common" "Bangladeş"},
   "pol"
   {"official" "Ludowa Republika Bangladeszu", "common" "Bangladesz"},
   "cym"
   {"official" "Gweriniaeth Pobl Bangladesh", "common" "Bangladesh"},
   "hrv"
   {"official" "Narodna Republika Bangladeš", "common" "Bangladeš"},
   "spa"
   {"official" "República Popular de Bangladesh",
    "common" "Bangladesh"},
   "fin"
   {"official" "Bangladeshin kansantasavalta", "common" "Bangladesh"},
   "per" {"official" "جمهوری خلق بنگلادش", "common" "بنگلادش"},
   "nld"
   {"official" "Volksrepubliek Bangladesh", "common" "Bangladesh"},
   "fra"
   {"official" "La République populaire du Bangladesh",
    "common" "Bangladesh"},
   "ita"
   {"official" "Repubblica popolare del Bangladesh",
    "common" "Bangladesh"},
   "jpn" {"official" "バングラデシュ人民共和国", "common" "バングラデシュ"},
   "est"
   {"official" "Bangladeshi Rahvavabariik", "common" "Bangladesh"},
   "por"
   {"official" "República Popular do Bangladesh",
    "common" "Bangladesh"},
   "slk"
   {"official" "Bangladéšska ľudová republika", "common" "Bangladéš"},
   "bre"
   {"official" "Republik pobl Bangladesh", "common" "Bangladesh"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/bd.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/bd.png"},
  "idd" {"suffixes" ["80"], "root" "+8"},
  "flags"
  {"svg" "https://flagcdn.com/bd.svg",
   "alt"
   "The flag of Bangladesh has a dark green field bearing a large red circle that is offset slightly towards the hoist side of center.",
   "png" "https://flagcdn.com/w320/bd.png"},
  "unMember" true,
  "name"
  {"official" "People's Republic of Bangladesh",
   "nativeName"
   {"ben" {"official" "বাংলাদেশ গণপ্রজাতন্ত্রী", "common" "বাংলাদেশ"}},
   "common" "Bangladesh"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [23.72 90.4]},
  "tld" [".bd"],
  "ccn3" "050",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"ben" "Bengali"},
  "cioc" "BAN",
  "currencies" {"BDT" {"name" "Bangladeshi taka", "symbol" "৳"}},
  "independent" true,
  "population" 164689383,
  "cca3" "BGD",
  "borders" ["MMR" "IND"],
  "capital" ["Dhaka"],
  "car" {"signs" ["BD"], "side" "left"},
  "timezones" ["UTC+06:00"],
  "startOfWeek" "sunday",
  "continents" ["Asia"],
  "flag" "🇧🇩",
  "gini" {"2016" 32.4},
  "fifa" "BAN",
  "cca2" "BD"}
 {"subregion" "South America",
  "landlocked" false,
  "latlng" [-10.0 -76.0],
  "area" 1285216.0,
  "altSpellings" ["PE" "Republic of Peru" "República del Perú"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/uDWEUaXNcZTng1fP6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/288247"},
  "demonyms"
  {"eng" {"f" "Peruvian", "m" "Peruvian"},
   "fra" {"f" "Péruvienne", "m" "Péruvien"}},
  "translations"
  {"kor" {"official" "페루 공화국", "common" "페루"},
   "zho" {"official" "秘鲁共和国", "common" "秘鲁"},
   "hun" {"official" "Perui Köztársaság", "common" "Peru"},
   "rus" {"official" "Республика Перу", "common" "Перу"},
   "swe" {"official" "Republiken Peru", "common" "Peru"},
   "ces" {"official" "Peruánská republika", "common" "Peru"},
   "deu" {"official" "Republik Peru", "common" "Peru"},
   "ara" {"official" "جمهورية بيرو", "common" "بيرو"},
   "urd" {"official" "جمہوریہ پیرو", "common" "پیرو"},
   "srp" {"official" "Република Перу", "common" "Перу"},
   "tur" {"official" "Peru Cumhuriyeti", "common" "Peru"},
   "pol" {"official" "Republika Peru", "common" "Peru"},
   "cym" {"official" "Republic of Peru", "common" "Peru"},
   "hrv" {"official" "Republika Peru", "common" "Peru"},
   "spa" {"official" "República de Perú", "common" "Perú"},
   "fin" {"official" "Perun tasavalta", "common" "Peru"},
   "per" {"official" "جمهوری پرو", "common" "پرو"},
   "nld" {"official" "Republiek Peru", "common" "Peru"},
   "fra" {"official" "République du Pérou", "common" "Pérou"},
   "ita" {"official" "Repubblica del Perù", "common" "Perù"},
   "jpn" {"official" "ペルー共和国", "common" "ペルー"},
   "est" {"official" "Peruu Vabariik", "common" "Peruu"},
   "por" {"official" "República do Peru", "common" "Perú"},
   "slk" {"official" "Peruánska republika", "common" "Peru"},
   "bre" {"official" "Republik Perou", "common" "Perou"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/pe.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/pe.png"},
  "idd" {"suffixes" ["1"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/pe.svg",
   "alt"
   "The flag of Peru is composed of three equal vertical bands of red, white and red, with the national emblem centered in the white band.",
   "png" "https://flagcdn.com/w320/pe.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Peru",
   "nativeName"
   {"que" {"official" "Piruw Ripuwlika", "common" "Piruw"},
    "spa" {"official" "República del Perú", "common" "Perú"},
    "aym" {"official" "Piruw Suyu", "common" "Piruw"}},
   "common" "Peru"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [-12.05 -77.05]},
  "tld" [".pe"],
  "ccn3" "604",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"que" "Quechua", "spa" "Spanish", "aym" "Aymara"},
  "cioc" "PER",
  "currencies" {"PEN" {"name" "Peruvian sol", "symbol" "S/ "}},
  "independent" true,
  "population" 32971846,
  "cca3" "PER",
  "borders" ["BOL" "BRA" "CHL" "COL" "ECU"],
  "capital" ["Lima"],
  "car" {"signs" ["PE"], "side" "right"},
  "timezones" ["UTC-05:00"],
  "startOfWeek" "monday",
  "continents" ["South America"],
  "flag" "🇵🇪",
  "gini" {"2019" 41.5},
  "fifa" "PER",
  "cca2" "PE"}
 {"subregion" "South-Eastern Asia",
  "landlocked" false,
  "latlng" [1.36666666 103.8],
  "area" 710.0,
  "altSpellings" ["SG" "Singapura" "Republik Singapura" "新加坡共和国"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/QbQt9Y9b5KFzsahV6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/536780"},
  "demonyms"
  {"eng" {"f" "Singaporean", "m" "Singaporean"},
   "fra" {"f" "Singapourienne", "m" "Singapourien"}},
  "translations"
  {"kor" {"official" "싱가포르 공화국", "common" "싱가포르"},
   "hun" {"official" "Szingapúri Köztársaság", "common" "Szingapúr"},
   "rus" {"official" "Республика Сингапур", "common" "Сингапур"},
   "swe" {"official" "Republiken Singapore", "common" "Singapore"},
   "ces" {"official" "Singapurská republika", "common" "Singapur"},
   "deu" {"official" "Republik Singapur", "common" "Singapur"},
   "ara" {"official" "جمهورية سنغافورة", "common" "سنغافورة"},
   "urd" {"official" "جمہوریہ سنگاپور", "common" "سنگاپور"},
   "srp" {"official" "Република Сингапур", "common" "Сингапур"},
   "tur" {"official" "Singapur Cumhuriyeti", "common" "Singapur"},
   "pol" {"official" "Republika Singapuru", "common" "Singapur"},
   "cym" {"official" "Republic of Singapore", "common" "Singapore"},
   "hrv" {"official" "Republika Singapur", "common" "Singapur"},
   "spa" {"official" "República de Singapur", "common" "Singapur"},
   "fin" {"official" "Singaporen tasavalta", "common" "Singapore"},
   "per" {"official" "جمهوری سنگاپور", "common" "سنگاپور"},
   "nld" {"official" "Republiek Singapore", "common" "Singapore"},
   "fra" {"official" "République de Singapour", "common" "Singapour"},
   "ita" {"official" "Repubblica di Singapore", "common" "Singapore"},
   "jpn" {"official" "シンガポール共和国", "common" "シンガポール"},
   "est" {"official" "Singapuri Vabariik", "common" "Singapur"},
   "por" {"official" "República de Singapura", "common" "Singapura"},
   "slk" {"official" "Singapurská republika", "common" "Singapur"},
   "bre" {"official" "Republik Singapour", "common" "Singapour"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/sg.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/sg.png"},
  "idd" {"suffixes" ["5"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/sg.svg",
   "alt"
   "The flag of Singapore is composed of two equal horizontal bands of red and white. On the hoist side of the red band is a fly-side facing white crescent which partially encloses five small five-pointed white stars arranged in the shape of a pentagon.",
   "png" "https://flagcdn.com/w320/sg.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Singapore",
   "nativeName"
   {"zho" {"official" "新加坡共和国", "common" "新加坡"},
    "eng" {"official" "Republic of Singapore", "common" "Singapore"},
    "msa" {"official" "Republik Singapura", "common" "Singapura"},
    "tam" {"official" "சிங்கப்பூர் குடியரசு", "common" "சிங்கப்பூர்"}},
   "common" "Singapore"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "######"},
  "capitalInfo" {"latlng" [1.28 103.85]},
  "tld" [".sg" ".新加坡" ".சிங்கப்பூர்"],
  "ccn3" "702",
  "status" "officially-assigned",
  "region" "Asia",
  "languages"
  {"zho" "Chinese", "eng" "English", "msa" "Malay", "tam" "Tamil"},
  "cioc" "SGP",
  "currencies" {"SGD" {"name" "Singapore dollar", "symbol" "$"}},
  "independent" true,
  "population" 5685807,
  "cca3" "SGP",
  "capital" ["Singapore"],
  "car" {"signs" ["SGP"], "side" "left"},
  "timezones" ["UTC+08:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇸🇬",
  "fifa" "SIN",
  "cca2" "SG"}
 {"subregion" "Western Asia",
  "landlocked" false,
  "latlng" [39.0 35.0],
  "area" 783562.0,
  "altSpellings"
  ["TR" "Turkiye" "Republic of Turkey" "Türkiye Cumhuriyeti"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/dXFFraiUDfcB6Quk6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/174737"},
  "demonyms"
  {"eng" {"f" "Turkish", "m" "Turkish"},
   "fra" {"f" "Turque", "m" "Turc"}},
  "translations"
  {"kor" {"official" "터키 공화국", "common" "터키"},
   "zho" {"official" "土耳其共和国", "common" "土耳其"},
   "hun" {"official" "Török Köztársaság", "common" "Törökország"},
   "rus" {"official" "Республика Турции", "common" "Турция"},
   "swe" {"official" "Republiken Turkiet", "common" "Turkiet"},
   "ces" {"official" "Turecká republika", "common" "Turecko"},
   "deu" {"official" "Republik Türkei", "common" "Türkei"},
   "ara" {"official" "الجمهورية التركية", "common" "تركيا"},
   "urd" {"official" "جمہوریہ ترکی", "common" "ترکی"},
   "srp" {"official" "Турска Република", "common" "Турска"},
   "tur" {"official" "Türkiye Cumhuriyeti", "common" "Türkiye"},
   "pol" {"official" "Republika Turcji", "common" "Turcja"},
   "cym" {"official" "Republic of Turkey", "common" "Turkey"},
   "hrv" {"official" "Republika Turska", "common" "Turska"},
   "spa" {"official" "República de Turquía", "common" "Turquía"},
   "fin" {"official" "Turkin tasavalta", "common" "Turkki"},
   "per" {"official" "جمهوری ترکیه", "common" "ترکیه"},
   "nld" {"official" "Republiek Turkije", "common" "Turkije"},
   "fra" {"official" "République de Turquie", "common" "Turquie"},
   "ita" {"official" "Repubblica di Turchia", "common" "Turchia"},
   "jpn" {"official" "トルコ共和国", "common" "トルコ"},
   "est" {"official" "Türgi Vabariik", "common" "Türgi"},
   "por" {"official" "República da Turquia", "common" "Turquia"},
   "slk" {"official" "Turecká republika", "common" "Turecko"},
   "bre" {"official" "Republik Turkia", "common" "Turkia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/tr.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/tr.png"},
  "idd" {"suffixes" ["0"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/tr.svg",
   "alt"
   "The flag of Turkey has a red field bearing a large fly-side facing white crescent and a smaller five-pointed white star placed just outside the crescent opening. The white crescent and star are offset slightly towards the hoist side of center.",
   "png" "https://flagcdn.com/w320/tr.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Turkey",
   "nativeName"
   {"tur" {"official" "Türkiye Cumhuriyeti", "common" "Türkiye"}},
   "common" "Turkey"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [39.93 32.87]},
  "tld" [".tr"],
  "ccn3" "792",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"tur" "Turkish"},
  "cioc" "TUR",
  "currencies" {"TRY" {"name" "Turkish lira", "symbol" "₺"}},
  "independent" true,
  "population" 84339067,
  "cca3" "TUR",
  "borders" ["ARM" "AZE" "BGR" "GEO" "GRC" "IRN" "IRQ" "SYR"],
  "capital" ["Ankara"],
  "car" {"signs" ["TR"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "monday",
  "continents" ["Europe" "Asia"],
  "flag" "🇹🇷",
  "gini" {"2019" 41.9},
  "fifa" "TUR",
  "cca2" "TR"}
 {"subregion" "Southern Asia",
  "landlocked" true,
  "latlng" [33.0 65.0],
  "area" 652230.0,
  "altSpellings" ["AF" "Afġānistān"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/BXBGw7yUUFknCfva9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/303427"},
  "demonyms"
  {"eng" {"f" "Afghan", "m" "Afghan"},
   "fra" {"f" "Afghane", "m" "Afghan"}},
  "translations"
  {"kor" {"official" "아프가니스탄 이슬람 공화국", "common" "아프가니스탄"},
   "zho" {"official" "阿富汗伊斯兰共和国", "common" "阿富汗"},
   "hun"
   {"official" "Afganisztáni Iszlám Köztársaság",
    "common" "Afganisztán"},
   "rus"
   {"official" "Исламская Республика Афганистан",
    "common" "Афганистан"},
   "swe"
   {"official" "Islamiska republiken Afghanistan",
    "common" "Afghanistan"},
   "ces"
   {"official" "Afghánská islámská republika", "common" "Afghánistán"},
   "deu"
   {"official" "Islamische Republik Afghanistan",
    "common" "Afghanistan"},
   "ara"
   {"official" "جمهورية أففانستان الإسلامية", "common" "أفغانستان"},
   "urd" {"official" "اسلامی جمہوریہ افغانستان", "common" "افغانستان"},
   "srp"
   {"official" "Исламска Република Авганистан", "common" "Авганистан"},
   "tur"
   {"official" "Afganistan İslam Cumhuriyeti", "common" "Afganistan"},
   "pol"
   {"official" "Islamska Republika Afganistanu",
    "common" "Afganistan"},
   "cym"
   {"official" "Gweriniaeth Islamaidd Affganistan",
    "common" "Affganistan"},
   "hrv"
   {"official" "Islamska Republika Afganistan", "common" "Afganistan"},
   "spa"
   {"official" "República Islámica de Afganistán",
    "common" "Afganistán"},
   "fin"
   {"official" "Afganistanin islamilainen tasavalta",
    "common" "Afganistan"},
   "per" {"official" "جمهوری اسلامی افغانستان", "common" "افغانستان"},
   "nld"
   {"official" "Islamitische Republiek Afghanistan",
    "common" "Afghanistan"},
   "fra"
   {"official" "République islamique d'Afghanistan",
    "common" "Afghanistan"},
   "ita"
   {"official" "Repubblica islamica dell'Afghanistan",
    "common" "Afghanistan"},
   "jpn" {"official" "アフガニスタン·イスラム共和国", "common" "アフガニスタン"},
   "est"
   {"official" "Afganistani Islamivabariik", "common" "Afganistan"},
   "por"
   {"official" "República Islâmica do Afeganistão",
    "common" "Afeganistão"},
   "slk" {"official" "Afgánsky islamský štát", "common" "Afganistan"},
   "bre"
   {"official" "Republik Islamek Afghanistan",
    "common" "Afghanistan"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/af.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/af.png"},
  "idd" {"suffixes" ["3"], "root" "+9"},
  "flags"
  {"svg"
   "https://upload.wikimedia.org/wikipedia/commons/5/5c/Flag_of_the_Taliban.svg",
   "alt"
   "The flag of the Islamic Emirate of Afghanistan has a white field with Arabic inscriptions — the Shahada — in black across its center.",
   "png"
   "https://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_the_Taliban.svg/320px-Flag_of_the_Taliban.svg.png"},
  "unMember" true,
  "name"
  {"official" "Islamic Republic of Afghanistan",
   "nativeName"
   {"prs" {"official" "جمهوری اسلامی افغانستان", "common" "افغانستان"},
    "tuk"
    {"official" "Owganystan Yslam Respublikasy",
     "common" "Owganystan"},
    "pus"
    {"official" "د افغانستان اسلامي جمهوریت", "common" "افغانستان"}},
   "common" "Afghanistan"},
  "capitalInfo" {"latlng" [34.52 69.18]},
  "tld" [".af"],
  "ccn3" "004",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"prs" "Dari", "tuk" "Turkmen", "pus" "Pashto"},
  "cioc" "AFG",
  "currencies" {"AFN" {"name" "Afghan afghani", "symbol" "؋"}},
  "independent" true,
  "population" 40218234,
  "cca3" "AFG",
  "borders" ["IRN" "PAK" "TKM" "UZB" "TJK" "CHN"],
  "capital" ["Kabul"],
  "car" {"signs" ["AFG"], "side" "right"},
  "timezones" ["UTC+04:30"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇦🇫",
  "fifa" "AFG",
  "cca2" "AF"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [12.5 -69.96666666],
  "area" 180.0,
  "altSpellings" ["AW"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/8hopbQqifHAgyZyg8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1231749"},
  "demonyms"
  {"eng" {"f" "Aruban", "m" "Aruban"},
   "fra" {"f" "Arubaise", "m" "Arubais"}},
  "translations"
  {"kor" {"official" "아루바", "common" "아루바"},
   "zho" {"official" "阿鲁巴", "common" "阿鲁巴"},
   "hun" {"official" "Aruba", "common" "Aruba"},
   "rus" {"official" "Аруба", "common" "Аруба"},
   "swe" {"official" "Aruba", "common" "Aruba"},
   "ces" {"official" "Aruba", "common" "Aruba"},
   "deu" {"official" "Aruba", "common" "Aruba"},
   "ara" {"official" "أروبا", "common" "أروبا"},
   "urd" {"official" "اروبا", "common" "اروبا"},
   "srp" {"official" "Аруба", "common" "Аруба"},
   "tur" {"official" "Aruba", "common" "Aruba"},
   "pol" {"official" "Aruba", "common" "Aruba"},
   "cym" {"official" "Aruba", "common" "Aruba"},
   "hrv" {"official" "Aruba", "common" "Aruba"},
   "spa" {"official" "Aruba", "common" "Aruba"},
   "fin" {"official" "Aruba", "common" "Aruba"},
   "per" {"official" "آروبا", "common" "آروبا"},
   "nld" {"official" "Aruba", "common" "Aruba"},
   "fra" {"official" "Aruba", "common" "Aruba"},
   "ita" {"official" "Aruba", "common" "Aruba"},
   "jpn" {"official" "アルバ", "common" "アルバ"},
   "est" {"official" "Aruba", "common" "Aruba"},
   "por" {"official" "Aruba", "common" "Aruba"},
   "slk" {"official" "Aruba", "common" "Aruba"},
   "bre" {"official" "Aruba", "common" "Aruba"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/aw.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/aw.png"},
  "idd" {"suffixes" ["97"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/aw.svg",
   "png" "https://flagcdn.com/w320/aw.png"},
  "unMember" false,
  "name"
  {"official" "Aruba",
   "nativeName"
   {"pap" {"official" "Aruba", "common" "Aruba"},
    "nld" {"official" "Aruba", "common" "Aruba"}},
   "common" "Aruba"},
  "capitalInfo" {"latlng" [12.52 -70.03]},
  "tld" [".aw"],
  "ccn3" "533",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"pap" "Papiamento", "nld" "Dutch"},
  "cioc" "ARU",
  "currencies" {"AWG" {"name" "Aruban florin", "symbol" "ƒ"}},
  "independent" false,
  "population" 106766,
  "cca3" "ABW",
  "capital" ["Oranjestad"],
  "car" {"side" "right"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇦🇼",
  "fifa" "ARU",
  "cca2" "AW"}
 {"subregion" "Polynesia",
  "landlocked" false,
  "latlng" [-21.23333333 -159.76666666],
  "area" 236.0,
  "altSpellings" ["CK" "Kūki 'Āirani"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/nrGZrvWRGB4WHgDC9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2184233"},
  "demonyms"
  {"eng" {"f" "Cook Islander", "m" "Cook Islander"},
   "fra" {"f" "Cookienne", "m" "Cookien"}},
  "translations"
  {"kor" {"official" "쿡 제도", "common" "쿡 제도"},
   "zho" {"official" "库克群岛", "common" "库克群岛"},
   "hun" {"official" "Cook-szigetek", "common" "Cook-szigetek"},
   "rus" {"official" "острова Кука", "common" "Острова Кука"},
   "swe" {"official" "Cooköarna", "common" "Cooköarna"},
   "ces" {"official" "Cookovy ostrovy", "common" "Cookovy ostrovy"},
   "deu" {"official" "Cookinseln", "common" "Cookinseln"},
   "ara" {"official" "جزر كوك", "common" "جزر كوك"},
   "urd" {"official" "جزائر کک", "common" "جزائر کک"},
   "srp" {"official" "Кукова Острва", "common" "Кукова Острва"},
   "tur" {"official" "Cook Adaları", "common" "Cook Adaları"},
   "pol" {"official" "Wyspy Cooka", "common" "Wyspy Cooka"},
   "cym" {"official" "Ynysoedd Cook", "common" "Ynysoedd Cook"},
   "hrv" {"official" "Cook Islands", "common" "Cookovo Otočje"},
   "spa" {"official" "Islas Cook", "common" "Islas Cook"},
   "fin" {"official" "Cookinsaaret", "common" "Cookinsaaret"},
   "per" {"official" "جزایر کوک", "common" "جزایر کوک"},
   "nld" {"official" "Cook eilanden", "common" "Cookeilanden"},
   "fra" {"official" "Îles Cook", "common" "Îles Cook"},
   "ita" {"official" "Isole Cook", "common" "Isole Cook"},
   "jpn" {"official" "クック諸島", "common" "クック諸島"},
   "est" {"official" "Cooki saared", "common" "Cooki saared"},
   "por" {"official" "Ilhas Cook", "common" "Ilhas Cook"},
   "slk" {"official" "Cookove ostrovy", "common" "Cookove ostrovy"},
   "bre" {"official" "Inizi Cook", "common" "Inizi Cook"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ck.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ck.png"},
  "idd" {"suffixes" ["82"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/ck.svg",
   "png" "https://flagcdn.com/w320/ck.png"},
  "unMember" false,
  "name"
  {"official" "Cook Islands",
   "nativeName"
   {"eng" {"official" "Cook Islands", "common" "Cook Islands"},
    "rar" {"official" "Kūki 'Āirani", "common" "Kūki 'Āirani"}},
   "common" "Cook Islands"},
  "capitalInfo" {"latlng" [-21.2 -159.77]},
  "tld" [".ck"],
  "ccn3" "184",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"eng" "English", "rar" "Cook Islands Māori"},
  "cioc" "COK",
  "currencies"
  {"NZD" {"name" "New Zealand dollar", "symbol" "$"},
   "CKD" {"name" "Cook Islands dollar", "symbol" "$"}},
  "independent" false,
  "population" 18100,
  "cca3" "COK",
  "capital" ["Avarua"],
  "car" {"signs" ["NZ"], "side" "left"},
  "timezones" ["UTC-10:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇨🇰",
  "fifa" "COK",
  "cca2" "CK"}
 {"subregion" "Northern Europe",
  "landlocked" false,
  "latlng" [54.0 -2.0],
  "area" 242900.0,
  "altSpellings" ["GB" "UK" "Great Britain"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/FoDtc3UKMkFsXAjHA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/62149"},
  "demonyms"
  {"eng" {"f" "British", "m" "British"},
   "fra" {"f" "Britannique", "m" "Britannique"}},
  "translations"
  {"kor" {"official" "그레이트브리튼 북아일랜드 연합 왕국", "common" "영국"},
   "zho" {"official" "大不列颠及北爱尔兰联合王国", "common" "英国"},
   "hun"
   {"official" "Nagy-Britannia és Észak-Írország Egyesült Királysága",
    "common" "Egyesült Királyság"},
   "rus"
   {"official"
    "Соединенное Королевство Великобритании и Северной Ирландии",
    "common" "Великобритания"},
   "swe"
   {"official" "Förenade konungariket Storbritannien och Nordirland",
    "common" "Storbritannien"},
   "ces"
   {"official" "Spojené království Velké Británie a Severního Irska",
    "common" "Spojené království"},
   "deu"
   {"official" "Vereinigtes Königreich Großbritannien und Nordirland",
    "common" "Vereinigtes Königreich"},
   "ara"
   {"official" "المملكة المتحدة لبريطانيا العظمى وايرلندا الشمالية",
    "common" "المملكة المتحدة"},
   "urd"
   {"official" "مملکتِ متحدہ برطانیہ عظمی و شمالی آئرلینڈ",
    "common" "مملکتِ متحدہ"},
   "srp"
   {"official" "Уједињено Краљевство Велике Британије и Северне Ирске",
    "common" "Уједињено Краљевство"},
   "tur"
   {"official" "Büyük Britanya ve Kuzey İrlanda Birleşik Krallığı",
    "common" "Birleşik Krallık"},
   "pol"
   {"official"
    "Zjednoczone Królestwo Wielkiej Brytanii i Irlandii Północnej",
    "common" "Zjednoczone Królestwo"},
   "cym"
   {"official" "United Kingdom of Great Britain and Northern Ireland",
    "common" "United Kingdom"},
   "hrv"
   {"official"
    "Ujedinjeno Kraljevstvo Velike Britanije i Sjeverne Irske",
    "common" "Ujedinjeno Kraljevstvo"},
   "spa"
   {"official" "Reino Unido de Gran Bretaña e Irlanda del Norte",
    "common" "Reino Unido"},
   "fin"
   {"official"
    "Ison-Britannian ja Pohjois-Irlannin yhdistynyt kuningaskunta",
    "common" "Yhdistynyt kuningaskunta"},
   "per"
   {"official" "پادشاهی متحد بریتانیای کبیر و ایرلند شمالی",
    "common" "انگلیس"},
   "nld"
   {"official"
    "Verenigd Koninkrijk van Groot-Brittannië en Noord-Ierland",
    "common" "Verenigd Koninkrijk"},
   "fra"
   {"official" "Royaume-Uni de Grande-Bretagne et d'Irlande du Nord",
    "common" "Royaume-Uni"},
   "ita"
   {"official" "Regno Unito di Gran Bretagna e Irlanda del Nord",
    "common" "Regno Unito"},
   "jpn" {"official" "グレート·ブリテンおよび北アイルランド連合王国", "common" "イギリス"},
   "est"
   {"official" "Suurbritannia ja Põhja-Iiri Ühendkuningriik",
    "common" "Suurbritannia"},
   "por"
   {"official" "Reino Unido da Grã-Bretanha e Irlanda do Norte",
    "common" "Reino Unido"},
   "slk"
   {"official" "Spojené kráľovstvo Veľkej Británie a SevernéhoÌrska",
    "common" "Veľká Británia (Spojené kráľovstvo)"},
   "bre"
   {"official" "Rouantelezh-Unanet Breizh-Veur ha Norzhiwerzhon",
    "common" "Rouantelezh-Unanet"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/gb.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/gb.png"},
  "idd" {"suffixes" ["4"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/gb.svg",
   "alt"
   "The flag of the United Kingdom — the Union Jack — has a blue field. It features the white-edged red cross of Saint George superimposed on the diagonal red cross of Saint Patrick which is superimposed on the diagonal white cross of Saint Andrew.",
   "png" "https://flagcdn.com/w320/gb.png"},
  "unMember" true,
  "name"
  {"official" "United Kingdom of Great Britain and Northern Ireland",
   "nativeName"
   {"eng"
    {"official" "United Kingdom of Great Britain and Northern Ireland",
     "common" "United Kingdom"}},
   "common" "United Kingdom"},
  "postalCode"
  {"regex"
   "^(([A-Z]\\d{2}[A-Z]{2})|([A-Z]\\d{3}[A-Z]{2})|([A-Z]{2}\\d{2}[A-Z]{2})|([A-Z]{2}\\d{3}[A-Z]{2})|([A-Z]\\d[A-Z]\\d[A-Z]{2})|([A-Z]{2}\\d[A-Z]\\d[A-Z]{2})|(GIR0AA))$",
   "format" "@# #@@|@## #@@|@@# #@@|@@## #@@|@#@ #@@|@@#@ #@@|GIR0AA"},
  "capitalInfo" {"latlng" [51.5 -0.08]},
  "tld" [".uk"],
  "ccn3" "826",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"eng" "English"},
  "cioc" "GBR",
  "currencies" {"GBP" {"name" "British pound", "symbol" "£"}},
  "independent" true,
  "population" 67215293,
  "cca3" "GBR",
  "borders" ["IRL"],
  "capital" ["London"],
  "car" {"signs" ["GB"], "side" "left"},
  "timezones"
  ["UTC-08:00"
   "UTC-05:00"
   "UTC-04:00"
   "UTC-03:00"
   "UTC-02:00"
   "UTC"
   "UTC+01:00"
   "UTC+02:00"
   "UTC+06:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇬🇧",
  "gini" {"2017" 35.1},
  "cca2" "GB"}
 {"subregion" "Eastern Africa",
  "landlocked" true,
  "latlng" [-15.0 30.0],
  "area" 752612.0,
  "altSpellings" ["ZM" "Republic of Zambia"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/mweBcqvW8TppZW6q9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/195271"},
  "demonyms"
  {"eng" {"f" "Zambian", "m" "Zambian"},
   "fra" {"f" "Zambienne", "m" "Zambien"}},
  "translations"
  {"kor" {"official" "잠비아 공화국", "common" "잠비아"},
   "zho" {"official" "赞比亚共和国", "common" "赞比亚"},
   "hun" {"official" "Zambiai Köztársaság", "common" "Zambia"},
   "rus" {"official" "Республика Замбия", "common" "Замбия"},
   "swe" {"official" "Republiken Zambia", "common" "Zambia"},
   "ces" {"official" "Zambijská republika", "common" "Zambie"},
   "deu" {"official" "Republik Sambia", "common" "Sambia"},
   "ara" {"official" "جمهورية زامبيا", "common" "زامبيا"},
   "urd" {"official" "جمہوریہ زیمبیا", "common" "زیمبیا"},
   "srp" {"official" "Република Замбија", "common" "Замбија"},
   "tur" {"official" "Zambiya Cumhuriyeti", "common" "Zambiya"},
   "pol" {"official" "Republika Zambii", "common" "Zambia"},
   "cym" {"official" "Republic of Zambia", "common" "Zambia"},
   "hrv" {"official" "Republika Zambija", "common" "Zambija"},
   "spa" {"official" "República de Zambia", "common" "Zambia"},
   "fin" {"official" "Sambian tasavalta", "common" "Sambia"},
   "per" {"official" "جمهوری زامبیا", "common" "زامبیا"},
   "nld" {"official" "Republiek Zambia", "common" "Zambia"},
   "fra" {"official" "République de Zambie", "common" "Zambie"},
   "ita" {"official" "Repubblica di Zambia", "common" "Zambia"},
   "jpn" {"official" "ザンビア共和国", "common" "ザンビア"},
   "est" {"official" "Sambia Vabariik", "common" "Sambia"},
   "por" {"official" "República da Zâmbia", "common" "Zâmbia"},
   "slk" {"official" "Zambijská republika", "common" "Zambia"},
   "bre" {"official" "Republik Zambia", "common" "Zambia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/zm.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/zm.png"},
  "idd" {"suffixes" ["60"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/zm.svg",
   "alt"
   "The flag of Zambia has a green field, on the fly side of which is a soaring orange African fish eagle above a rectangular area divided into three equal vertical bands of red, black and orange.",
   "png" "https://flagcdn.com/w320/zm.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Zambia",
   "nativeName"
   {"eng" {"official" "Republic of Zambia", "common" "Zambia"}},
   "common" "Zambia"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [-15.42 28.28]},
  "tld" [".zm"],
  "ccn3" "894",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"eng" "English"},
  "cioc" "ZAM",
  "currencies" {"ZMW" {"name" "Zambian kwacha", "symbol" "ZK"}},
  "independent" true,
  "population" 18383956,
  "cca3" "ZMB",
  "borders" ["AGO" "BWA" "COD" "MWI" "MOZ" "NAM" "TZA" "ZWE"],
  "capital" ["Lusaka"],
  "car" {"signs" ["RNR"], "side" "left"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇿🇲",
  "gini" {"2015" 57.1},
  "fifa" "ZAM",
  "cca2" "ZM"}
 {"subregion" "Northern Europe",
  "landlocked" false,
  "latlng" [64.0 26.0],
  "area" 338424.0,
  "altSpellings"
  ["FI"
   "Suomi"
   "Republic of Finland"
   "Suomen tasavalta"
   "Republiken Finland"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/HjgWDCNKRAYHrkMn8",
   "openStreetMaps" "openstreetmap.org/relation/54224"},
  "demonyms"
  {"eng" {"f" "Finnish", "m" "Finnish"},
   "fra" {"f" "Finlandaise", "m" "Finlandais"}},
  "translations"
  {"kor" {"official" "핀란드 공화국", "common" "핀란드"},
   "zho" {"official" "芬兰共和国", "common" "芬兰"},
   "hun" {"official" "Finn Köztársaság", "common" "Finnország"},
   "rus" {"official" "Финляндская Республика", "common" "Финляндия"},
   "swe" {"official" "Republiken Finland", "common" "Finland"},
   "ces" {"official" "Finská republika", "common" "Finsko"},
   "deu" {"official" "Republik Finnland", "common" "Finnland"},
   "ara" {"official" "جمهورية فنلندا", "common" "فنلندا"},
   "urd" {"official" "جمہوریہ فن لینڈ", "common" "فن لینڈ"},
   "srp" {"official" "Република Финска", "common" "Финска"},
   "tur" {"official" "Finlandiya Cumhuriyeti", "common" "Finlandiya"},
   "pol" {"official" "Republika Finlandii", "common" "Finlandia"},
   "cym" {"official" "Republic of Finland", "common" "Finland"},
   "hrv" {"official" "Republika Finska", "common" "Finska"},
   "spa" {"official" "República de Finlandia", "common" "Finlandia"},
   "fin" {"official" "Suomen tasavalta", "common" "Suomi"},
   "per" {"official" "جمهوری فنلاند", "common" "فنلاند"},
   "nld" {"official" "Republiek Finland", "common" "Finland"},
   "fra" {"official" "République de Finlande", "common" "Finlande"},
   "ita" {"official" "Repubblica di Finlandia", "common" "Finlandia"},
   "jpn" {"official" "フィンランド共和国", "common" "フィンランド"},
   "est" {"official" "Soome Vabariik", "common" "Soome"},
   "por" {"official" "República da Finlândia", "common" "Finlândia"},
   "slk" {"official" "Fínska republika", "common" "Fínsko"},
   "bre" {"official" "Republik Finland", "common" "Finland"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/fi.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/fi.png"},
  "idd" {"suffixes" ["58"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/fi.svg",
   "alt"
   "The flag of Finland has a white field with a large blue cross that extend to the edges of the field. The vertical part of this cross is offset towards the hoist side.",
   "png" "https://flagcdn.com/w320/fi.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Finland",
   "nativeName"
   {"swe" {"official" "Republiken Finland", "common" "Finland"},
    "fin" {"official" "Suomen tasavalta", "common" "Suomi"}},
   "common" "Finland"},
  "postalCode" {"regex" "^(?:FI)*(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [60.17 24.93]},
  "tld" [".fi"],
  "ccn3" "246",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"swe" "Swedish", "fin" "Finnish"},
  "cioc" "FIN",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 5530719,
  "cca3" "FIN",
  "borders" ["NOR" "SWE" "RUS"],
  "capital" ["Helsinki"],
  "car" {"signs" ["FIN"], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇫🇮",
  "gini" {"2018" 27.3},
  "fifa" "FIN",
  "cca2" "FI"}
 {"subregion" "Western Africa",
  "landlocked" true,
  "latlng" [16.0 8.0],
  "area" 1267000.0,
  "altSpellings" ["NE" "Nijar"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/VKNU2TLsZcgxM49c8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192786"},
  "demonyms"
  {"eng" {"f" "Nigerien", "m" "Nigerien"},
   "fra" {"f" "Nigérienne", "m" "Nigérien"}},
  "translations"
  {"kor" {"official" "니제르 공화국", "common" "니제르"},
   "zho" {"official" "尼日尔共和国", "common" "尼日尔"},
   "hun" {"official" "Nigeri Köztársaság", "common" "Niger"},
   "rus" {"official" "Республика Нигер", "common" "Нигер"},
   "swe" {"official" "Republiken Niger", "common" "Niger"},
   "ces" {"official" "Nigerská republika", "common" "Niger"},
   "deu" {"official" "Republik Niger", "common" "Niger"},
   "ara" {"official" "جمهورية النيجر", "common" "النيجر"},
   "urd" {"official" "جمہوریہ نائجر", "common" "نائجر"},
   "srp" {"official" "Република Нигер", "common" "Нигер"},
   "tur" {"official" "Nijer Cumhuriyeti", "common" "Nijer"},
   "pol" {"official" "Republika Nigru", "common" "Niger"},
   "cym" {"official" "Republic of Niger", "common" "Niger"},
   "hrv" {"official" "Republika Niger", "common" "Niger"},
   "spa" {"official" "República de Níger", "common" "Níger"},
   "fin" {"official" "Nigerin tasavalta", "common" "Niger"},
   "per" {"official" "جمهوری نیجر", "common" "نیجر"},
   "nld" {"official" "Republiek Niger", "common" "Niger"},
   "fra" {"official" "République du Niger", "common" "Niger"},
   "ita" {"official" "Repubblica del Niger", "common" "Niger"},
   "jpn" {"official" "ニジェール共和国", "common" "ニジェール"},
   "est" {"official" "Nigeri Vabariik", "common" "Niger"},
   "por" {"official" "República do Níger", "common" "Níger"},
   "slk" {"official" "Nigérská republika", "common" "Niger"},
   "bre" {"official" "Republik Niger", "common" "Niger"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ne.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ne.png"},
  "idd" {"suffixes" ["27"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/ne.svg",
   "alt"
   "The flag of Niger features three equal horizontal bands of orange, white and green, with an orange circle centered in the white band.",
   "png" "https://flagcdn.com/w320/ne.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Niger",
   "nativeName"
   {"fra" {"official" "République du Niger", "common" "Niger"}},
   "common" "Niger"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [13.52 2.12]},
  "tld" [".ne"],
  "ccn3" "562",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"fra" "French"},
  "cioc" "NIG",
  "currencies"
  {"XOF" {"name" "West African CFA franc", "symbol" "Fr"}},
  "independent" true,
  "population" 24206636,
  "cca3" "NER",
  "borders" ["DZA" "BEN" "BFA" "TCD" "LBY" "MLI" "NGA"],
  "capital" ["Niamey"],
  "car" {"signs" ["RN"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇳🇪",
  "gini" {"2014" 34.3},
  "fifa" "NIG",
  "cca2" "NE"}
 {"subregion" "Australia and New Zealand",
  "landlocked" false,
  "latlng" [-10.5 105.66666666],
  "area" 135.0,
  "altSpellings" ["CX" "Territory of Christmas Island"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/ZC17hHsQZpShN5wk9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/6365444"},
  "demonyms"
  {"eng" {"f" "Christmas Islander", "m" "Christmas Islander"}},
  "translations"
  {"kor" {"official" "크리스마스 섬", "common" "크리스마스 섬"},
   "zho" {"official" "圣诞岛", "common" "圣诞岛"},
   "hun" {"official" "Karácsony-sziget", "common" "Karácsony-sziget"},
   "rus"
   {"official" "Территория острова Рождества",
    "common" "Остров Рождества"},
   "swe" {"official" "Julön", "common" "Julön"},
   "ces"
   {"official" "Teritorium Vánočního ostrova",
    "common" "Vánoční ostrov"},
   "deu"
   {"official" "Gebiet der Weihnachtsinsel",
    "common" "Weihnachtsinsel"},
   "ara" {"official" "جزيرة كريسماس", "common" "جزيرة كريسماس"},
   "urd" {"official" "ریاستِ جزیرہ کرسمس", "common" "جزیرہ کرسمس"},
   "srp" {"official" "Божићно Острво", "common" "Божићно Острво"},
   "tur" {"official" "Christmas Adası", "common" "Christmas Adası"},
   "pol"
   {"official" "Wyspa Bożego Narodzenia",
    "common" "Wyspa Bożego Narodzenia"},
   "cym"
   {"official" "Tiriogaeth yr Ynys y Nadolig",
    "common" "Ynys y Nadolig"},
   "hrv"
   {"official" "Teritorij Božićni otok", "common" "Božićni otok"},
   "spa"
   {"official" "Territorio de la Isla de Navidad",
    "common" "Isla de Navidad"},
   "fin" {"official" "Joulusaaren alue", "common" "Joulusaari"},
   "per" {"official" "جزیرهٔ کریسمس", "common" "جزیرهٔ کریسمس"},
   "nld"
   {"official" "Grondgebied van Christmas Island",
    "common" "Christmaseiland"},
   "fra"
   {"official" "Territoire de l'île Christmas",
    "common" "Île Christmas"},
   "ita"
   {"official" "Territorio di Christmas Island",
    "common" "Isola di Natale"},
   "jpn" {"official" "クリスマス島の領土", "common" "クリスマス島"},
   "est" {"official" "Jõulusaare ala", "common" "Jõulusaar"},
   "por"
   {"official" "Território da Ilha Christmas",
    "common" "Ilha do Natal"},
   "slk"
   {"official" "Teritórium Vianočného ostrova",
    "common" "Vianočnú ostrov"},
   "bre"
   {"official" "Tiriad Enez Christmas", "common" "Enez Christmas"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/cx.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/cx.png"},
  "idd" {"suffixes" ["1"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/cx.svg",
   "png" "https://flagcdn.com/w320/cx.png"},
  "unMember" false,
  "name"
  {"official" "Territory of Christmas Island",
   "nativeName"
   {"eng"
    {"official" "Territory of Christmas Island",
     "common" "Christmas Island"}},
   "common" "Christmas Island"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [-10.42 105.68]},
  "tld" [".cx"],
  "ccn3" "162",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"eng" "English"},
  "currencies" {"AUD" {"name" "Australian dollar", "symbol" "$"}},
  "independent" false,
  "population" 2072,
  "cca3" "CXR",
  "capital" ["Flying Fish Cove"],
  "car" {"signs" ["AUS"], "side" "left"},
  "timezones" ["UTC+07:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇨🇽",
  "cca2" "CX"}
 {"subregion" "Polynesia",
  "landlocked" false,
  "latlng" [-9.0 -172.0],
  "area" 12.0,
  "altSpellings" ["TK"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/Ap5qN8qien6pT9UN6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2186600"},
  "demonyms" {"eng" {"f" "Tokelauan", "m" "Tokelauan"}},
  "translations"
  {"kor" {"official" "토켈라우", "common" "토켈라우"},
   "zho" {"official" "托克劳", "common" "托克劳"},
   "hun" {"official" "Tokelau-szigetek", "common" "Tokelau-szigetek"},
   "rus" {"official" "Токелау", "common" "Токелау"},
   "swe" {"official" "Tokelauöarna", "common" "Tokelauöarna"},
   "ces" {"official" "Tokelau", "common" "Tokelau"},
   "deu" {"official" "Tokelau", "common" "Tokelau"},
   "ara" {"official" "توكيلاو", "common" "توكيلاو"},
   "urd" {"official" "ٹوکیلاؤ", "common" "ٹوکیلاؤ"},
   "srp" {"official" "Токелау", "common" "Токелау"},
   "tur" {"official" "Tokelau", "common" "Tokelau"},
   "pol" {"official" "Tokelau", "common" "Tokelau"},
   "cym" {"official" "Tokelau", "common" "Tokelau"},
   "hrv" {"official" "Tokelau", "common" "Tokelau"},
   "spa" {"official" "Tokelau", "common" "Islas Tokelau"},
   "fin" {"official" "Tokelau", "common" "Tokelau"},
   "per" {"official" "توکلائو", "common" "توکلائو"},
   "nld" {"official" "Tokelau", "common" "Tokelau"},
   "fra" {"official" "Îles Tokelau", "common" "Tokelau"},
   "ita" {"official" "Tokelau", "common" "Isole Tokelau"},
   "jpn" {"official" "トケラウ諸島", "common" "トケラウ"},
   "est" {"official" "Tokelau", "common" "Tokelau"},
   "por" {"official" "Tokelau", "common" "Tokelau"},
   "slk" {"official" "Tokelauské ostrovy", "common" "Tokelau"},
   "bre" {"official" "Tokelau", "common" "Tokelau"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["90"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/tk.svg",
   "png" "https://flagcdn.com/w320/tk.png"},
  "unMember" false,
  "name"
  {"official" "Tokelau",
   "nativeName"
   {"eng" {"official" "Tokelau", "common" "Tokelau"},
    "tkl" {"official" "Tokelau", "common" "Tokelau"},
    "smo" {"official" "Tokelau", "common" "Tokelau"}},
   "common" "Tokelau"},
  "capitalInfo" {"latlng" [-9.38 -171.22]},
  "tld" [".tk"],
  "ccn3" "772",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"eng" "English", "tkl" "Tokelauan", "smo" "Samoan"},
  "currencies" {"NZD" {"name" "New Zealand dollar", "symbol" "$"}},
  "independent" false,
  "population" 1411,
  "cca3" "TKL",
  "capital" ["Fakaofo"],
  "car" {"signs" [""], "side" "left"},
  "timezones" ["UTC+13:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇹🇰",
  "cca2" "TK"}
 {"subregion" "Western Africa",
  "landlocked" false,
  "latlng" [12.0 -15.0],
  "area" 36125.0,
  "altSpellings"
  ["GW" "Republic of Guinea-Bissau" "República da Guiné-Bissau"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/5Wyaz17miUc1zLc67",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192776"},
  "demonyms"
  {"eng" {"f" "Guinea-Bissauan", "m" "Guinea-Bissauan"},
   "fra" {"f" "Bissau-Guinéenne", "m" "Bissau-Guinéen"}},
  "translations"
  {"kor" {"official" "기니비사우 공화국", "common" "기니비사우"},
   "zho" {"official" "几内亚比绍共和国", "common" "几内亚比绍"},
   "hun"
   {"official" "Bissau-Guineai Köztársaság", "common" "Bissau-Guinea"},
   "rus"
   {"official" "Республика Гвинея -Бисау", "common" "Гвинея-Бисау"},
   "swe"
   {"official" "Republiken Guinea-Bissau", "common" "Guinea-Bissau"},
   "ces"
   {"official" "Republika Guinea-Bissau", "common" "Guinea-Bissau"},
   "deu"
   {"official" "Republik Guinea-Bissau", "common" "Guinea-Bissau"},
   "ara" {"official" "جمهورية غينيا بيساو", "common" "غينيا بيساو"},
   "urd" {"official" "جمہوریہ گنی بساؤ", "common" "گنی بساؤ"},
   "srp"
   {"official" "Република Гвинеја Бисао", "common" "Гвинеја Бисао"},
   "tur"
   {"official" "Gine-Bissau Cumhuriyeti", "common" "Gine-Bissau"},
   "pol"
   {"official" "Republika Gwinei Bissau", "common" "Gwinea Bissau"},
   "cym"
   {"official" "Republic of Guinea-Bissau", "common" "Guinea-Bissau"},
   "hrv"
   {"official" "Republika Gvineja Bisau", "common" "Gvineja Bisau"},
   "spa"
   {"official" "República de Guinea-Bissau", "common" "Guinea-Bisáu"},
   "fin"
   {"official" "Guinea-Bissaun tasavalta", "common" "Guinea-Bissau"},
   "per" {"official" "جمهوری گینه بیسائو", "common" "گینه بیسائو"},
   "nld"
   {"official" "Republiek Guinee-Bissau", "common" "Guinee-Bissau"},
   "fra"
   {"official" "République de Guinée-Bissau",
    "common" "Guinée-Bissau"},
   "ita"
   {"official" "Repubblica di Guinea-Bissau",
    "common" "Guinea-Bissau"},
   "jpn" {"official" "ギニアビサウ共和国", "common" "ギニアビサウ"},
   "est"
   {"official" "Guinea-Bissau Vabariik", "common" "Guinea-Bissau"},
   "por"
   {"official" "República da Guiné-Bissau", "common" "Guiné-Bissau"},
   "slk"
   {"official" "Guinejsko-bissauská republika",
    "common" "Guinea-Bissau"},
   "bre"
   {"official" "Republik Ginea-Bissau", "common" "Ginea-Bissau"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/gw.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/gw.png"},
  "idd" {"suffixes" ["45"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/gw.svg",
   "alt"
   "The flag of Guinea-Bissau features a red vertical band on its hoist side that takes up about two-fifth the width of the field, and two equal horizontal bands of yellow and green adjoining the vertical band. A five-pointed black star is centered in the vertical band.",
   "png" "https://flagcdn.com/w320/gw.png"},
  "unMember" false,
  "name"
  {"official" "Republic of Guinea-Bissau",
   "nativeName"
   {"pov"
    {"official" "República da Guiné-Bissau", "common" "Guiné-Bissau"},
    "por"
    {"official" "República da Guiné-Bissau", "common" "Guiné-Bissau"}},
   "common" "Guinea-Bissau"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [11.85 -15.58]},
  "tld" [".gw"],
  "ccn3" "624",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"pov" "Upper Guinea Creole", "por" "Portuguese"},
  "cioc" "GBS",
  "currencies"
  {"XOF" {"name" "West African CFA franc", "symbol" "Fr"}},
  "independent" true,
  "population" 1967998,
  "cca3" "GNB",
  "borders" ["GIN" "SEN"],
  "capital" ["Bissau"],
  "car" {"signs" ["RGB"], "side" "right"},
  "timezones" ["UTC"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇬🇼",
  "gini" {"2010" 50.7},
  "fifa" "GNB",
  "cca2" "GW"}
 {"subregion" "Western Asia",
  "landlocked" true,
  "latlng" [40.5 47.5],
  "area" 86600.0,
  "altSpellings"
  ["AZ" "Republic of Azerbaijan" "Azərbaycan Respublikası"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/az3Zz7ar2aoB9AUc6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/364110"},
  "demonyms"
  {"eng" {"f" "Azerbaijani", "m" "Azerbaijani"},
   "fra" {"f" "Azerbaïdjanaise", "m" "Azerbaïdjanais"}},
  "translations"
  {"kor" {"official" "아제르바이잔 공화국", "common" "아제르바이잔"},
   "zho" {"official" "阿塞拜疆共和国", "common" "阿塞拜疆"},
   "hun" {"official" "Azerbajdzsán", "common" "Azerbajdzsán"},
   "rus"
   {"official" "Азербайджанская Республика", "common" "Азербайджан"},
   "swe"
   {"official" "Republiken Azerbajdzjan", "common" "Azerbajdzjan"},
   "ces"
   {"official" "Ázerbájdžánská republika", "common" "Ázerbájdžán"},
   "deu"
   {"official" "Republik Aserbaidschan", "common" "Aserbaidschan"},
   "ara" {"official" "جمهورية أذربيجان", "common" "أذربيجان"},
   "urd" {"official" "جمہوریہ آذربائیجان", "common" "آذربائیجان"},
   "srp" {"official" "Азербејџанска Република", "common" "Азербејџан"},
   "tur" {"official" "Azerbaycan Cumhuriyeti", "common" "Azerbaycan"},
   "pol" {"official" "Republika Azerbejdżanu", "common" "Azerbejdżan"},
   "cym" {"official" "Gweriniaeth Aserbaijan", "common" "Aserbaijan"},
   "hrv" {"official" "Republika Azerbajdžan", "common" "Azerbajdžan"},
   "spa" {"official" "República de Azerbaiyán", "common" "Azerbaiyán"},
   "fin"
   {"official" "Azerbaidzanin tasavalta", "common" "Azerbaidzan"},
   "per" {"official" "جمهوری آذربایجان", "common" "جمهوری آذربایجان"},
   "nld"
   {"official" "Republiek Azerbeidzjan", "common" "Azerbeidzjan"},
   "fra"
   {"official" "République d'Azerbaïdjan", "common" "Azerbaïdjan"},
   "ita"
   {"official" "Repubblica dell'Azerbaigian", "common" "Azerbaijan"},
   "jpn" {"official" "アゼルバイジャン共和国", "common" "アゼルバイジャン"},
   "est"
   {"official" "Aserbaidžaani Vabariik", "common" "Aserbaidžaan"},
   "por" {"official" "República do Azerbaijão", "common" "Azerbeijão"},
   "slk" {"official" "Azerbajdžanská republika", "common" "AzerbajLJan"},
   "bre" {"official" "Republik Azerbaidjan", "common" "Azerbaidjan"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/az.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/az.png"},
  "idd" {"suffixes" ["94"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/az.svg",
   "alt"
   "The flag of Azerbaijan features three equal horizontal bands of blue, red and green, with a white fly-side facing crescent and eight-pointed star centered in the red band.",
   "png" "https://flagcdn.com/w320/az.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Azerbaijan",
   "nativeName"
   {"aze"
    {"official" "Azərbaycan Respublikası", "common" "Azərbaycan"}},
   "common" "Azerbaijan"},
  "postalCode" {"regex" "^(?:AZ)*(\\d{4})$", "format" "AZ ####"},
  "capitalInfo" {"latlng" [40.38 49.87]},
  "tld" [".az"],
  "ccn3" "031",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"aze" "Azerbaijani"},
  "cioc" "AZE",
  "currencies" {"AZN" {"name" "Azerbaijani manat", "symbol" "₼"}},
  "independent" true,
  "population" 10110116,
  "cca3" "AZE",
  "borders" ["ARM" "GEO" "IRN" "RUS" "TUR"],
  "capital" ["Baku"],
  "car" {"signs" ["AZ"], "side" "right"},
  "timezones" ["UTC+04:00"],
  "startOfWeek" "monday",
  "continents" ["Europe" "Asia"],
  "flag" "🇦🇿",
  "gini" {"2005" 26.6},
  "fifa" "AZE",
  "cca2" "AZ"}
 {"subregion" "Eastern Africa",
  "landlocked" false,
  "latlng" [-21.15 55.5],
  "area" 2511.0,
  "altSpellings" ["RE" "Reunion"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/wWpBrXsp8UHVbah29",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1785276"},
  "demonyms"
  {"eng" {"f" "Réunionese", "m" "Réunionese"},
   "fra" {"f" "Réunionnaise", "m" "Réunionnais"}},
  "translations"
  {"kor" {"official" "레위니옹", "common" "레위니옹"},
   "zho" {"official" "留尼旺岛", "common" "留尼旺岛"},
   "hun" {"official" "Réunion", "common" "Réunion"},
   "rus" {"official" "Реюньон", "common" "Реюньон"},
   "swe" {"official" "Réunion", "common" "Réunion"},
   "ces" {"official" "Réunion", "common" "Réunion"},
   "deu" {"official" "Réunion", "common" "Réunion"},
   "ara" {"official" "جزيرة لا ريونيون", "common" "لا ريونيون"},
   "urd" {"official" "رے یونیوں جزیرہ", "common" "رے یونیوں"},
   "srp" {"official" "Реинион", "common" "Реинион"},
   "tur" {"official" "Réunion", "common" "Réunion"},
   "pol" {"official" "Reunion", "common" "Reunion"},
   "cym" {"official" "Réunion Island", "common" "Réunion"},
   "hrv" {"official" "Réunion Island", "common" "Réunion"},
   "spa" {"official" "Isla de la Reunión", "common" "Reunión"},
   "fin" {"official" "Réunion", "common" "Réunion"},
   "per" {"official" "رئونیون", "common" "رئونیون"},
   "nld" {"official" "Réunion", "common" "Réunion"},
   "fra" {"official" "Ile de la Réunion", "common" "Réunion"},
   "ita" {"official" "Réunion", "common" "Riunione"},
   "jpn" {"official" "レユニオン島", "common" "レユニオン"},
   "est" {"official" "Réunioni departemang", "common" "Réunion"},
   "por" {"official" "Ilha da Reunião", "common" "Reunião"},
   "slk"
   {"official" "Réunionský zámorský departmán", "common" "Réunion"},
   "bre" {"official" "Enez ar Reünion", "common" "Reünion"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["62"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/re.svg",
   "png" "https://flagcdn.com/w320/re.png"},
  "unMember" false,
  "name"
  {"official" "Réunion Island",
   "nativeName"
   {"fra" {"official" "Ile de la Réunion", "common" "La Réunion"}},
   "common" "Réunion"},
  "postalCode" {"regex" "^((97|98)(4|7|8)\\d{2})$", "format" "#####"},
  "capitalInfo" {"latlng" [-20.88 55.45]},
  "tld" [".re"],
  "ccn3" "638",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"fra" "French"},
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" false,
  "population" 840974,
  "cca3" "REU",
  "capital" ["Saint-Denis"],
  "car" {"signs" ["F"], "side" "right"},
  "timezones" ["UTC+04:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇷🇪",
  "cca2" "RE"}
 {"subregion" "Eastern Africa",
  "landlocked" false,
  "latlng" [11.5 43.0],
  "area" 23200.0,
  "altSpellings"
  ["DJ"
   "Jabuuti"
   "Gabuuti"
   "Republic of Djibouti"
   "République de Djibouti"
   "Gabuutih Ummuuno"
   "Jamhuuriyadda Jabuuti"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/V1HWfzN3bS1kwf4C6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192801"},
  "demonyms"
  {"eng" {"f" "Djibouti", "m" "Djibouti"},
   "fra" {"f" "Djiboutienne", "m" "Djiboutien"}},
  "translations"
  {"kor" {"official" "지부티 공화국", "common" "지부티"},
   "zho" {"official" "吉布提共和国", "common" "吉布提"},
   "hun" {"official" "Dzsibuti Köztársaság", "common" "Dzsibuti"},
   "rus" {"official" "Республика Джибути", "common" "Джибути"},
   "swe" {"official" "Republiken Djibouti", "common" "Djibouti"},
   "ces" {"official" "Džibutská republika", "common" "Džibutsko"},
   "deu" {"official" "Republik Dschibuti", "common" "Dschibuti"},
   "ara" {"official" "جمهورية جيبوتي", "common" "جيبوتي"},
   "urd" {"official" "جمہوریہ جبوتی", "common" "جبوتی"},
   "srp" {"official" "Република Џибути", "common" "Џибути"},
   "tur" {"official" "Cibuti Cumhuriyeti", "common" "Cibuti"},
   "pol" {"official" "Republika Dżibuti", "common" "Dżibuti"},
   "cym" {"official" "Gweriniaeth Jibwti", "common" "Jibwti"},
   "hrv" {"official" "Republika Džibuti", "common" "Džibuti"},
   "spa" {"official" "República de Djibouti", "common" "Djibouti"},
   "fin" {"official" "Dijiboutin tasavalta", "common" "Dijibouti"},
   "per" {"official" "جمهوری جیبوتی", "common" "جیبوتی"},
   "nld" {"official" "Republiek Djibouti", "common" "Djibouti"},
   "fra" {"official" "République de Djibouti", "common" "Djibouti"},
   "ita" {"official" "Repubblica di Gibuti", "common" "Gibuti"},
   "jpn" {"official" "ジブチ共和国", "common" "ジブチ"},
   "est" {"official" "Djibouti Vabariik", "common" "Djibouti"},
   "por" {"official" "República do Djibouti", "common" "Djibouti"},
   "slk" {"official" "Džibutská republika", "common" "Džibutsko"},
   "bre" {"official" "Republik Djibouti", "common" "Djibouti"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/dj.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/dj.png"},
  "idd" {"suffixes" ["53"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/dj.svg",
   "alt"
   "The flag of Djibouti is composed of two equal horizontal bands of light blue and light green, with a white isosceles triangle superimposed on the hoist side of the field. The triangle has its base on the hoist end, spans about two-fifth the width of the field and bears a red five-pointed star at its center.",
   "png" "https://flagcdn.com/w320/dj.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Djibouti",
   "nativeName"
   {"ara" {"official" "جمهورية جيبوتي", "common" "جيبوتي‎"},
    "fra" {"official" "République de Djibouti", "common" "Djibouti"}},
   "common" "Djibouti"},
  "capitalInfo" {"latlng" [11.58 43.15]},
  "tld" [".dj"],
  "ccn3" "262",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"ara" "Arabic", "fra" "French"},
  "cioc" "DJI",
  "currencies" {"DJF" {"name" "Djiboutian franc", "symbol" "Fr"}},
  "independent" true,
  "population" 988002,
  "cca3" "DJI",
  "borders" ["ERI" "ETH" "SOM"],
  "capital" ["Djibouti"],
  "car" {"signs" ["DJI"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇩🇯",
  "gini" {"2017" 41.6},
  "fifa" "DJI",
  "cca2" "DJ"}
 {"subregion" "Eastern Asia",
  "landlocked" false,
  "latlng" [40.0 127.0],
  "area" 120538.0,
  "altSpellings"
  ["KP"
   "Democratic People's Republic of Korea"
   "DPRK"
   "조선민주주의인민공화국"
   "Chosŏn Minjujuŭi Inmin Konghwaguk"
   "Korea, Democratic People's Republic of"
   "북한"
   "북조선"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/9q5T2DMeH5JL7Tky6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192734"},
  "demonyms"
  {"eng" {"f" "North Korean", "m" "North Korean"},
   "fra" {"f" "Nord-coréenne", "m" "Nord-coréen"}},
  "translations"
  {"kor" {"official" "조선민주주의인민공화국", "common" "조선"},
   "zho" {"official" "朝鲜人民民主共和国", "common" "朝鲜"},
   "hun"
   {"official" "Koreai Népi Demokratikus Köztársaság",
    "common" "Észak-Korea"},
   "rus"
   {"official" "Корейская Народно-Демократическая Республика Корея",
    "common" "Северная Корея"},
   "swe"
   {"official" "Demokratiska Folkrepubliken Korea",
    "common" "Nordkorea"},
   "ces"
   {"official" "Korejská lidově demokratická republika",
    "common" "Severní Korea"},
   "deu"
   {"official" "Demokratische Volksrepublik Korea",
    "common" "Nordkorea"},
   "ara"
   {"official" "جمهورية كوريا الديمقراطية الشعبية",
    "common" "كوريا الشمالية"},
   "urd"
   {"official" "جمہوری عوامی جمہوریہ کوریا", "common" "شمالی کوریا"},
   "srp"
   {"official" "Демократска Народна Република Кореја",
    "common" "Северна Кореја"},
   "tur"
   {"official" "Kore Demokratik Halk Cumhuriyeti",
    "common" "Kuzey Kore"},
   "pol"
   {"official" "Koreańska Republika Ludowo-Demokratyczna",
    "common" "Korea Północna"},
   "cym"
   {"official" "Democratic People's Republic of Korea",
    "common" "North Korea"},
   "hrv"
   {"official" "Demokratska Narodna Republika Koreja",
    "common" "Sjeverna Koreja"},
   "spa"
   {"official" "República Popular Democrática de Corea",
    "common" "Corea del Norte"},
   "fin"
   {"official" "Korean demokraattinen kansantasavalta",
    "common" "Pohjois-Korea"},
   "per"
   {"official" "جمهوری دموکراتیک خلق کره", "common" "کُره شمالی"},
   "nld"
   {"official" "Democratische Volksrepubliek Korea",
    "common" "Noord-Korea"},
   "fra"
   {"official" "République populaire démocratique de Corée",
    "common" "Corée du Nord"},
   "ita"
   {"official" "Repubblica democratica popolare di Corea",
    "common" "Corea del Nord"},
   "jpn" {"official" "朝鮮民主主義人民共和国", "common" "朝鮮民主主義人民共和国"},
   "est"
   {"official" "Korea Rahvademokraatlik Vabariik",
    "common" "Põhja-Korea"},
   "por"
   {"official" "República Popular Democrática da Coreia",
    "common" "Coreia do Norte"},
   "slk"
   {"official" "Kórejská ľudovodemokratická republika",
    "common" "Severná Kórea"},
   "bre"
   {"official" "Republik Poblel ha Demokratel Korea",
    "common" "Korea an Norzh"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/kp.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/kp.png"},
  "idd" {"suffixes" ["50"], "root" "+8"},
  "flags"
  {"svg" "https://flagcdn.com/kp.svg",
   "alt"
   "The flag of North Korea is composed of three horizontal bands — a large central white-edged red band, and a blue band above and beneath the red band. On the hoist side of the red band is a red five-pointed star within a white circle.",
   "png" "https://flagcdn.com/w320/kp.png"},
  "unMember" true,
  "name"
  {"official" "Democratic People's Republic of Korea",
   "nativeName" {"kor" {"official" "조선민주주의인민공화국", "common" "조선"}},
   "common" "North Korea"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "###-###"},
  "capitalInfo" {"latlng" [39.02 125.75]},
  "tld" [".kp"],
  "ccn3" "408",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"kor" "Korean"},
  "cioc" "PRK",
  "currencies" {"KPW" {"name" "North Korean won", "symbol" "₩"}},
  "independent" true,
  "population" 25778815,
  "cca3" "PRK",
  "borders" ["CHN" "KOR" "RUS"],
  "capital" ["Pyongyang"],
  "car" {"signs" [""], "side" "right"},
  "timezones" ["UTC+09:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇰🇵",
  "fifa" "PRK",
  "cca2" "KP"}
 {"subregion" "Eastern Africa",
  "landlocked" false,
  "latlng" [-20.28333333 57.55],
  "area" 2040.0,
  "altSpellings"
  ["MU" "Republic of Mauritius" "République de Maurice"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/PpKtZ4W3tir5iGrz7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/535828"},
  "demonyms"
  {"eng" {"f" "Mauritian", "m" "Mauritian"},
   "fra" {"f" "Mauricienne", "m" "Mauricien"}},
  "translations"
  {"kor" {"official" "모리셔스 공화국", "common" "모리셔스"},
   "zho" {"official" "毛里求斯共和国", "common" "毛里求斯"},
   "hun" {"official" "Mauritiusi Köztársaság", "common" "Mauritius"},
   "rus" {"official" "Республика Маврикий", "common" "Маврикий"},
   "swe" {"official" "Republiken Mauritius", "common" "Mauritius"},
   "ces" {"official" "Mauricijská republika", "common" "Mauricius"},
   "deu" {"official" "Republik Mauritius", "common" "Mauritius"},
   "ara" {"official" "جمهورية موريشيوس", "common" "موريشيوس"},
   "urd" {"official" "جمہوریہ موریشس", "common" "موریشس"},
   "srp" {"official" "Република Маурицијус", "common" "Маурицијус"},
   "tur" {"official" "Mauritius Cumhuriyeti", "common" "Mauritius"},
   "pol" {"official" "Republika Mauritiusu", "common" "Mauritius"},
   "cym" {"official" "Republic of Mauritius", "common" "Mauritius"},
   "hrv" {"official" "Republika Mauricijus", "common" "Mauricijus"},
   "spa" {"official" "República de Mauricio", "common" "Mauricio"},
   "fin" {"official" "Mauritiuksen tasavalta", "common" "Mauritius"},
   "per" {"official" "جمهوری موریس", "common" "موریس"},
   "nld" {"official" "Republiek Mauritius", "common" "Mauritius"},
   "fra" {"official" "République de Maurice", "common" "Île Maurice"},
   "ita" {"official" "Repubblica di Mauritius", "common" "Mauritius"},
   "jpn" {"official" "モーリシャス共和国", "common" "モーリシャス"},
   "est" {"official" "Mauritiuse Vabariik", "common" "Mauritius"},
   "por" {"official" "República das Maurícias", "common" "Maurício"},
   "slk" {"official" "Maurícijská republika", "common" "Maurícius"},
   "bre" {"official" "Republik Moris", "common" "Moris"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/mu.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/mu.png"},
  "idd" {"suffixes" ["30"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/mu.svg",
   "alt"
   "The flag of Mauritius is composed of four equal horizontal bands of red, blue, yellow and green.",
   "png" "https://flagcdn.com/w320/mu.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Mauritius",
   "nativeName"
   {"mfe" {"official" "Republik Moris", "common" "Moris"},
    "eng" {"official" "Republic of Mauritius", "common" "Mauritius"},
    "fra" {"official" "République de Maurice", "common" "Maurice"}},
   "common" "Mauritius"},
  "capitalInfo" {"latlng" [-20.15 57.48]},
  "tld" [".mu"],
  "ccn3" "480",
  "status" "officially-assigned",
  "region" "Africa",
  "languages"
  {"mfe" "Mauritian Creole", "eng" "English", "fra" "French"},
  "cioc" "MRI",
  "currencies" {"MUR" {"name" "Mauritian rupee", "symbol" "₨"}},
  "independent" true,
  "population" 1265740,
  "cca3" "MUS",
  "capital" ["Port Louis"],
  "car" {"signs" ["MS"], "side" "left"},
  "timezones" ["UTC+04:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇲🇺",
  "gini" {"2017" 36.8},
  "fifa" "MRI",
  "cca2" "MU"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [16.75 -62.2],
  "area" 102.0,
  "altSpellings" ["MS"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/CSbe7UmxPmiwQB7GA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/537257"},
  "demonyms"
  {"eng" {"f" "Montserratian", "m" "Montserratian"},
   "fra" {"f" "Montserratienne", "m" "Montserratien"}},
  "translations"
  {"kor" {"official" "몬트세랫", "common" "몬트세랫"},
   "zho" {"official" "蒙特塞拉特", "common" "蒙特塞拉特"},
   "hun" {"official" "Montserrat", "common" "Montserrat"},
   "rus" {"official" "Монтсеррат", "common" "Монтсеррат"},
   "swe" {"official" "Montserrat", "common" "Montserrat"},
   "ces" {"official" "Montserrat", "common" "Montserrat"},
   "deu" {"official" "Montserrat", "common" "Montserrat"},
   "ara" {"official" "مونتسرات", "common" "مونتسرات"},
   "urd" {"official" "مانٹسریٹ", "common" "مانٹسریٹ"},
   "srp" {"official" "Монтсерат", "common" "Монтсерат"},
   "tur" {"official" "Montserrat", "common" "Montserrat"},
   "pol" {"official" "Montserrat", "common" "Montserrat"},
   "cym" {"official" "Montserrat", "common" "Montserrat"},
   "hrv" {"official" "Montserrat", "common" "Montserrat"},
   "spa" {"official" "Montserrat", "common" "Montserrat"},
   "fin" {"official" "Montserrat", "common" "Montserrat"},
   "per" {"official" "مونتسرات", "common" "مونتسرات"},
   "nld" {"official" "Montserrat", "common" "Montserrat"},
   "fra" {"official" "Montserrat", "common" "Montserrat"},
   "ita" {"official" "Montserrat", "common" "Montserrat"},
   "jpn" {"official" "モントセラト", "common" "モントセラト"},
   "est" {"official" "Montserrat", "common" "Montserrat"},
   "por" {"official" "Montserrat", "common" "Montserrat"},
   "slk" {"official" "Montserrat", "common" "Montserrat"},
   "bre" {"official" "Montserrat", "common" "Montserrat"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ms.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ms.png"},
  "idd" {"suffixes" ["664"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/ms.svg",
   "png" "https://flagcdn.com/w320/ms.png"},
  "unMember" false,
  "name"
  {"official" "Montserrat",
   "nativeName"
   {"eng" {"official" "Montserrat", "common" "Montserrat"}},
   "common" "Montserrat"},
  "capitalInfo" {"latlng" [16.7 -62.22]},
  "tld" [".ms"],
  "ccn3" "500",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "currencies"
  {"XCD" {"name" "Eastern Caribbean dollar", "symbol" "$"}},
  "independent" false,
  "population" 4922,
  "cca3" "MSR",
  "capital" ["Plymouth"],
  "car" {"signs" ["GB"], "side" "left"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇲🇸",
  "fifa" "MSR",
  "cca2" "MS"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [18.35 -64.933333],
  "area" 347.0,
  "altSpellings" ["VI" "Virgin Islands, U.S."],
  "maps"
  {"googleMaps" "https://goo.gl/maps/mBfreywj8dor6q4m9",
   "openStreetMaps" "openstreetmap.org/relation/286898"},
  "demonyms" {"eng" {"f" "Virgin Islander", "m" "Virgin Islander"}},
  "translations"
  {"kor" {"official" "미국령 버진아일랜드", "common" "미국령 버진아일랜드"},
   "zho" {"official" "美属维尔京群岛", "common" "美属维尔京群岛"},
   "hun"
   {"official" "Amerikai Virgin-szigetek",
    "common" "Amerikai Virgin-szigetek"},
   "rus"
   {"official" "Виргинские острова Соединенных Штатов",
    "common" "Виргинские Острова"},
   "swe"
   {"official" "Amerikanska Jungfruöarna",
    "common" "Amerikanska Jungfruöarna"},
   "ces"
   {"official" "Americké Panenské ostrovy",
    "common" "Americké Panenské ostrovy"},
   "deu"
   {"official" "Amerikanische Jungferninseln",
    "common" "Amerikanische Jungferninseln"},
   "ara"
   {"official" "جزر العذراء الامريكية",
    "common" "جزر العذراء الامريكية"},
   "urd"
   {"official" "امریکی جزائر ورجن", "common" "امریکی جزائر ورجن"},
   "srp"
   {"official" "Америчка Девичанска Острва",
    "common" "Америчка Девичанска Острва"},
   "tur"
   {"official" "Amerika Birleşik Devletleri Virjin Adaları",
    "common" "ABD Virjin Adaları"},
   "pol"
   {"official" "Wyspy Dziewicze Stanów Zjednoczonych",
    "common" "Wyspy Dziewicze Stanów Zjednoczonych"},
   "cym"
   {"official" "Virgin Islands of the United States",
    "common" "United States Virgin Islands"},
   "hrv"
   {"official" "Djevičanski Otoci SAD",
    "common" "Američki Djevičanski Otoci"},
   "spa"
   {"official" "Islas Vírgenes de los Estados Unidos",
    "common" "Islas Vírgenes de los Estados Unidos"},
   "fin"
   {"official" "Yhdysvaltain Neitsytsaaret", "common" "Neitsytsaaret"},
   "per"
   {"official" "جزایر ویرجین ایالات متحده آمریکا",
    "common" "جزایر ویرجین ایالات متحده آمریکا"},
   "nld"
   {"official" "Maagdeneilanden van de Verenigde Staten",
    "common" "Amerikaanse Maagdeneilanden"},
   "fra"
   {"official" "Îles Vierges des États-Unis",
    "common" "Îles Vierges des États-Unis"},
   "ita"
   {"official" "Isole Vergini degli Stati Uniti",
    "common" "Isole Vergini americane"},
   "jpn" {"official" "米国のバージン諸島", "common" "アメリカ領ヴァージン諸島"},
   "est"
   {"official" "Ühendriikide Neitsisaared",
    "common" "Neitsisaared, USA"},
   "por"
   {"official" "Ilhas Virgens dos Estados Unidos",
    "common" "Ilhas Virgens dos Estados Unidos"},
   "slk"
   {"official" "Americké Panenské ostrovy",
    "common" "Americké Panenské ostrovy"},
   "bre"
   {"official" "Inizi Gwerc'h ar Stadoù-Unanet",
    "common" "Inizi Gwerc'h ar Stadoù-Unanet"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["340"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/vi.svg",
   "png" "https://flagcdn.com/w320/vi.png"},
  "unMember" false,
  "name"
  {"official" "Virgin Islands of the United States",
   "nativeName"
   {"eng"
    {"official" "Virgin Islands of the United States",
     "common" "United States Virgin Islands"}},
   "common" "United States Virgin Islands"},
  "capitalInfo" {"latlng" [18.35 -64.93]},
  "tld" [".vi"],
  "ccn3" "850",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "cioc" "ISV",
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" false,
  "population" 106290,
  "cca3" "VIR",
  "capital" ["Charlotte Amalie"],
  "car" {"signs" ["USA"], "side" "right"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇻🇮",
  "fifa" "VIR",
  "cca2" "VI"}
 {"subregion" "South America",
  "landlocked" false,
  "latlng" [4.0 -72.0],
  "area" 1141748.0,
  "altSpellings" ["CO" "Republic of Colombia" "República de Colombia"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/zix9qNFX69E9yZ2M6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/120027"},
  "demonyms"
  {"eng" {"f" "Colombian", "m" "Colombian"},
   "fra" {"f" "Colombienne", "m" "Colombien"}},
  "translations"
  {"kor" {"official" "콜롬비아 공화국", "common" "콜롬비아"},
   "zho" {"official" "哥伦比亚共和国", "common" "哥伦比亚"},
   "hun" {"official" "Kolumbiai Köztársaság", "common" "Kolumbia"},
   "rus" {"official" "Республика Колумбия", "common" "Колумбия"},
   "swe" {"official" "Republiken Colombia", "common" "Colombia"},
   "ces" {"official" "Kolumbijská republika", "common" "Kolumbie"},
   "deu" {"official" "Republik Kolumbien", "common" "Kolumbien"},
   "ara" {"official" "جمهورية كولومبيا", "common" "كولومبيا"},
   "urd" {"official" "جمہوریہ کولمبیا", "common" "کولمبیا"},
   "srp" {"official" "Република Колумбија", "common" "Колумбија"},
   "tur" {"official" "Kolombiya Cumhuriyeti", "common" "Kolombiya"},
   "pol" {"official" "Republika Kolumbii", "common" "Kolumbia"},
   "cym" {"official" "Gweriniaeth Colombia", "common" "Colombia"},
   "hrv" {"official" "Republika Kolumbija", "common" "Kolumbija"},
   "spa" {"official" "República de Colombia", "common" "Colombia"},
   "fin" {"official" "Kolumbian tasavalta", "common" "Kolumbia"},
   "per" {"official" "جمهوری کلمبیا", "common" "کلمبیا"},
   "nld" {"official" "Republiek Colombia", "common" "Colombia"},
   "fra" {"official" "République de Colombie", "common" "Colombie"},
   "ita" {"official" "Repubblica di Colombia", "common" "Colombia"},
   "jpn" {"official" "コロンビア共和国", "common" "コロンビア"},
   "est" {"official" "Colombia Vabariik", "common" "Colombia"},
   "por" {"official" "República da Colômbia", "common" "Colômbia"},
   "slk" {"official" "Kolumbijská republika", "common" "Kolumbia"},
   "bre" {"official" "Republik Kolombia", "common" "Kolombia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/co.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/co.png"},
  "idd" {"suffixes" ["7"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/co.svg",
   "alt"
   "The flag of Colombia is composed of three horizontal bands of yellow, blue and red, with the yellow band twice the height of the other two bands.",
   "png" "https://flagcdn.com/w320/co.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Colombia",
   "nativeName"
   {"spa" {"official" "República de Colombia", "common" "Colombia"}},
   "common" "Colombia"},
  "capitalInfo" {"latlng" [4.71 -74.07]},
  "tld" [".co"],
  "ccn3" "170",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"spa" "Spanish"},
  "cioc" "COL",
  "currencies" {"COP" {"name" "Colombian peso", "symbol" "$"}},
  "independent" true,
  "population" 50882884,
  "cca3" "COL",
  "borders" ["BRA" "ECU" "PAN" "PER" "VEN"],
  "capital" ["Bogotá"],
  "car" {"signs" ["CO"], "side" "right"},
  "timezones" ["UTC-05:00"],
  "startOfWeek" "monday",
  "continents" ["South America"],
  "flag" "🇨🇴",
  "gini" {"2019" 51.3},
  "fifa" "COL",
  "cca2" "CO"}
 {"subregion" "Southern Europe",
  "landlocked" false,
  "latlng" [39.0 22.0],
  "area" 131990.0,
  "altSpellings"
  ["GR" "Elláda" "Hellenic Republic" "Ελληνική Δημοκρατία"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/LHGcAvuRyD2iKECC6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192307"},
  "demonyms"
  {"eng" {"f" "Greek", "m" "Greek"},
   "fra" {"f" "Grecque", "m" "Grec"}},
  "translations"
  {"kor" {"official" "그리스 공화국", "common" "그리스"},
   "zho" {"official" "希腊共和国", "common" "希腊"},
   "hun" {"official" "Görög Köztársaság", "common" "Görögország"},
   "rus" {"official" "Греческая Республика", "common" "Греция"},
   "swe" {"official" "Republiken Grekland", "common" "Grekland"},
   "ces" {"official" "Řecká republika", "common" "Řecko"},
   "deu" {"official" "Hellenische Republik", "common" "Griechenland"},
   "ara" {"official" "الجمهورية الهيلينية", "common" "اليونان"},
   "urd" {"official" "جمہوریہ ہیلینیہ", "common" "یونان"},
   "srp" {"official" "Хеленска Република", "common" "Грчка"},
   "tur" {"official" "Helen Cumhuriyeti", "common" "Yunanistan"},
   "pol" {"official" "Republika Grecka", "common" "Grecja"},
   "cym" {"official" "Hellenic Republic", "common" "Greece"},
   "hrv" {"official" "Helenska Republika", "common" "Grčka"},
   "spa" {"official" "República Helénica", "common" "Grecia"},
   "fin" {"official" "Helleenien tasavalta", "common" "Kreikka"},
   "per" {"official" "جمهوری یونان", "common" "یونان"},
   "nld" {"official" "Helleense Republiek", "common" "Griekenland"},
   "fra" {"official" "République hellénique", "common" "Grèce"},
   "ita" {"official" "Repubblica ellenica", "common" "Grecia"},
   "jpn" {"official" "ギリシャ共和国", "common" "ギリシャ"},
   "est" {"official" "Kreeka Vabariik", "common" "Kreeka"},
   "por" {"official" "República Helénica", "common" "Grécia"},
   "slk" {"official" "Grécka republika", "common" "Greécko"},
   "bre" {"official" "Republik Hellenek", "common" "Gres"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/gr.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/gr.png"},
  "idd" {"suffixes" ["0"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/gr.svg",
   "alt"
   "The flag of Greece is composed of nine equal horizontal bands of blue alternating with white. A blue square bearing a white cross is superimposed in the canton.",
   "png" "https://flagcdn.com/w320/gr.png"},
  "unMember" true,
  "name"
  {"official" "Hellenic Republic",
   "nativeName"
   {"ell" {"official" "Ελληνική Δημοκρατία", "common" "Ελλάδα"}},
   "common" "Greece"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "### ##"},
  "capitalInfo" {"latlng" [37.98 23.73]},
  "tld" [".gr"],
  "ccn3" "300",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"ell" "Greek"},
  "cioc" "GRE",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 10715549,
  "cca3" "GRC",
  "borders" ["ALB" "BGR" "TUR" "MKD"],
  "capital" ["Athens"],
  "car" {"signs" ["GR"], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇬🇷",
  "gini" {"2018" 32.9},
  "fifa" "GRE",
  "cca2" "GR"}
 {"subregion" "Southeast Europe",
  "landlocked" false,
  "latlng" [45.16666666 15.5],
  "area" 56594.0,
  "altSpellings"
  ["HR" "Hrvatska" "Republic of Croatia" "Republika Hrvatska"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/qSG6xTKUmrYpwmGQ6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/214885"},
  "demonyms"
  {"eng" {"f" "Croatian", "m" "Croatian"},
   "fra" {"f" "Croate", "m" "Croate"}},
  "translations"
  {"kor" {"official" "크로아티아 공화국", "common" "크로아티아"},
   "zho" {"official" "克罗地亚共和国", "common" "克罗地亚"},
   "hun" {"official" "Horvát Köztársaság", "common" "Horvátország"},
   "rus" {"official" "Республика Хорватия", "common" "Хорватия"},
   "swe" {"official" "Republiken Kroatien", "common" "Kroatien"},
   "ces" {"official" "Chorvatská republika", "common" "Chorvatsko"},
   "deu" {"official" "Republik Kroatien", "common" "Kroatien"},
   "ara" {"official" "جمهورية كرواتيا", "common" "كرواتيا"},
   "urd" {"official" "جمہوریہ کرویئشا", "common" "کرویئشا"},
   "srp" {"official" "Република Хрватска", "common" "Хрватска"},
   "tur"
   {"official" "Hırvatistan Cumhuriyeti", "common" "Hırvatistan"},
   "pol" {"official" "Republika Chorwacji", "common" "Chorwacja"},
   "cym" {"official" "Gweriniaeth Croatia", "common" "Croatia"},
   "hrv" {"official" "Republika Hrvatska", "common" "Hrvatska"},
   "spa" {"official" "República de Croacia", "common" "Croacia"},
   "fin" {"official" "Kroatian tasavalta", "common" "Kroatia"},
   "per" {"official" "جمهوری کرواسی", "common" "کرُواسی"},
   "nld" {"official" "Republiek Kroatië", "common" "Kroatië"},
   "fra" {"official" "République de Croatie", "common" "Croatie"},
   "ita" {"official" "Repubblica di Croazia", "common" "Croazia"},
   "jpn" {"official" "クロアチア共和国", "common" "クロアチア"},
   "est" {"official" "Horvaatia Vabariik", "common" "Horvaatia"},
   "por" {"official" "República da Croácia", "common" "Croácia"},
   "slk" {"official" "Chorvátska republika", "common" "Chorvátsko"},
   "bre" {"official" "Republik Kroatia", "common" "Kroatia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/hr.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/hr.png"},
  "idd" {"suffixes" ["85"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/hr.svg",
   "alt"
   "The flag of Croatia is composed of three equal horizontal bands of red, white and blue, with coat of arms of Croatia superimposed in the center.",
   "png" "https://flagcdn.com/w320/hr.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Croatia",
   "nativeName"
   {"hrv" {"official" "Republika Hrvatska", "common" "Hrvatska"}},
   "common" "Croatia"},
  "postalCode" {"regex" "^(?:HR)*(\\d{5})$", "format" "HR-#####"},
  "capitalInfo" {"latlng" [45.8 16.0]},
  "tld" [".hr"],
  "ccn3" "191",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"hrv" "Croatian"},
  "cioc" "CRO",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 4047200,
  "cca3" "HRV",
  "borders" ["BIH" "HUN" "MNE" "SRB" "SVN"],
  "capital" ["Zagreb"],
  "car" {"signs" ["HR"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇭🇷",
  "gini" {"2018" 29.7},
  "fifa" "CRO",
  "cca2" "HR"}
 {"subregion" "Northern Africa",
  "landlocked" false,
  "latlng" [32.0 -5.0],
  "area" 446550.0,
  "altSpellings"
  ["MA" "Kingdom of Morocco" "Al-Mamlakah al-Maġribiyah"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/6oMv3dyBZg3iaXQ5A",
   "openStreetMaps" "https://www.openstreetmap.org/relation/3630439"},
  "demonyms"
  {"eng" {"f" "Moroccan", "m" "Moroccan"},
   "fra" {"f" "Marocaine", "m" "Marocain"}},
  "translations"
  {"kor" {"official" "모로코 왕국", "common" "모로코"},
   "zho" {"official" "摩洛哥王国", "common" "摩洛哥"},
   "hun" {"official" "Marokkói Királyság", "common" "Marokkó"},
   "rus" {"official" "Королевство Марокко", "common" "Марокко"},
   "swe" {"official" "Konungariket Marocko", "common" "Marocko"},
   "ces" {"official" "Marocké království", "common" "Maroko"},
   "deu" {"official" "Königreich Marokko", "common" "Marokko"},
   "ara" {"official" "المملكة المغربية", "common" "المغرب"},
   "urd" {"official" "مملکتِ مراکش", "common" "مراکش"},
   "srp" {"official" "Краљевина Мароко", "common" "Мароко"},
   "tur" {"official" "Fas Krallığı", "common" "Fas"},
   "pol" {"official" "Królestwo Marokańskie", "common" "Maroko"},
   "cym" {"official" "Kingdom of Morocco", "common" "Morocco"},
   "hrv" {"official" "Kraljevina Maroko", "common" "Maroko"},
   "spa" {"official" "Reino de Marruecos", "common" "Marruecos"},
   "fin" {"official" "Marokon kuningaskunta", "common" "Marokko"},
   "per" {"official" "پادشاهی مراکش", "common" "مراکش"},
   "nld" {"official" "Koninkrijk Marokko", "common" "Marokko"},
   "fra" {"official" "Royaume du Maroc", "common" "Maroc"},
   "ita" {"official" "Regno del Marocco", "common" "Marocco"},
   "jpn" {"official" "モロッコ王国", "common" "モロッコ"},
   "est" {"official" "Maroko Kuningriik", "common" "Maroko"},
   "por" {"official" "Reino de Marrocos", "common" "Marrocos"},
   "slk" {"official" "Marocké kniežatstvo", "common" "Maroko"},
   "bre" {"official" "Rouantelezh Maroko", "common" "Maroko"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ma.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ma.png"},
  "idd" {"suffixes" ["12"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/ma.svg",
   "alt"
   "The flag of Morocco features a green pentagram — a five-pointed linear star — centered on a red field.",
   "png" "https://flagcdn.com/w320/ma.png"},
  "unMember" true,
  "name"
  {"official" "Kingdom of Morocco",
   "nativeName"
   {"ber" {"official" "ⵜⴰⴳⵍⴷⵉⵜ ⵏ ⵍⵎⵖⵔⵉⴱ", "common" "ⵍⵎⴰⵖⵔⵉⴱ"},
    "ara" {"official" "المملكة المغربية", "common" "المغرب"}},
   "common" "Morocco"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [34.02 -6.82]},
  "tld" [".ma" "المغرب."],
  "ccn3" "504",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"ber" "Berber", "ara" "Arabic"},
  "cioc" "MAR",
  "currencies" {"MAD" {"name" "Moroccan dirham", "symbol" "د.م."}},
  "independent" true,
  "population" 36910558,
  "cca3" "MAR",
  "borders" ["DZA" "ESH" "ESP"],
  "capital" ["Rabat"],
  "car" {"signs" ["MA"], "side" "right"},
  "timezones" ["UTC"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇲🇦",
  "gini" {"2013" 39.5},
  "fifa" "MAR",
  "cca2" "MA"}
 {"subregion" "Northern Africa",
  "landlocked" false,
  "latlng" [28.0 3.0],
  "area" 2381741.0,
  "altSpellings" ["DZ" "Dzayer" "Algérie"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/RsAyAfyaiNVb8DpW8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192756"},
  "demonyms"
  {"eng" {"f" "Algerian", "m" "Algerian"},
   "fra" {"f" "Algérienne", "m" "Algérien"}},
  "translations"
  {"kor" {"official" "알제리 인민 민주 공화국", "common" "알제리"},
   "zho" {"official" "阿尔及利亚人民民主共和国", "common" "阿尔及利亚"},
   "hun"
   {"official" "Algériai Népi Demokratikus Köztársaság",
    "common" "Algéria"},
   "rus"
   {"official" "Народно-Демократическая Республика Алжир",
    "common" "Алжир"},
   "swe"
   {"official" "Demokratiska folkrepubliken Algeriet",
    "common" "Algeriet"},
   "ces"
   {"official" "Alžírská demokratická a lidová republika",
    "common" "Alžírsko"},
   "deu"
   {"official" "Demokratische Volksrepublik Algerien",
    "common" "Algerien"},
   "ara"
   {"official" "الجمهورية الديمقراطية الشعبية الجزائرية",
    "common" "الجزائر"},
   "urd"
   {"official" "عوامی جمہوری جمہوریہ الجزائر", "common" "الجزائر"},
   "srp"
   {"official" "Народна Демократска Република Алжир",
    "common" "Алжир"},
   "tur"
   {"official" "Cezayir Demokratik Halk Cumhuriyeti",
    "common" "Cezayir"},
   "pol"
   {"official" "Algierska Republika Ludowo-Demokratyczna",
    "common" "Algieria"},
   "cym"
   {"official" "Gweriniaeth Ddemocrataidd Pobl Algeria",
    "common" "Algeria"},
   "hrv"
   {"official" "Narodna Demokratska Republika Alžir",
    "common" "Alžir"},
   "spa"
   {"official" "República Argelina Democrática y Popular",
    "common" "Argelia"},
   "fin"
   {"official" "Algerian demokraattinen kansantasavalta",
    "common" "Algeria"},
   "per"
   {"official" "جمهوری دموکراتیک خلق الجزایر", "common" "الجزایر"},
   "nld"
   {"official" "Democratische Volksrepubliek Algerije",
    "common" "Algerije"},
   "fra"
   {"official" "République démocratique et populaire d'Algérie",
    "common" "Algérie"},
   "ita"
   {"official" "Repubblica popolare democratica di Algeria",
    "common" "Algeria"},
   "jpn" {"official" "アルジェリア人民民主共和国", "common" "アルジェリア"},
   "est"
   {"official" "Alžeeria Demokraatlik Rahvavabariik",
    "common" "Alžeeria"},
   "por"
   {"official" "República Argelina Democrática e Popular",
    "common" "Argélia"},
   "slk"
   {"official" "Alžírska demokratická ľudová republika",
    "common" "Alžírsko"},
   "bre"
   {"official" "Republik Aljerian Demokratel ha Poblel",
    "common" "Aljeria"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/dz.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/dz.png"},
  "idd" {"suffixes" ["13"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/dz.svg",
   "alt"
   "The flag of Algeria features two equal vertical bands of green and white. A five-pointed red star within a fly-side facing red crescent is centered over the two-color boundary.",
   "png" "https://flagcdn.com/w320/dz.png"},
  "unMember" true,
  "name"
  {"official" "People's Democratic Republic of Algeria",
   "nativeName"
   {"ara"
    {"official" "الجمهورية الديمقراطية الشعبية الجزائرية",
     "common" "الجزائر"}},
   "common" "Algeria"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [36.75 3.05]},
  "tld" [".dz" "الجزائر."],
  "ccn3" "012",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"ara" "Arabic"},
  "cioc" "ALG",
  "currencies" {"DZD" {"name" "Algerian dinar", "symbol" "د.ج"}},
  "independent" true,
  "population" 44700000,
  "cca3" "DZA",
  "borders" ["TUN" "LBY" "NER" "ESH" "MRT" "MLI" "MAR"],
  "capital" ["Algiers"],
  "car" {"signs" ["DZ"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "sunday",
  "continents" ["Africa"],
  "flag" "🇩🇿",
  "gini" {"2011" 27.6},
  "fifa" "ALG",
  "cca2" "DZ"}
 {"landlocked" false,
  "latlng" [-90.0 0.0],
  "area" 1.4E7,
  "altSpellings" ["AQ"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/kyBuJriu4itiXank7",
   "openStreetMaps" "https://www.openstreetmap.org/node/36966060"},
  "demonyms"
  {"eng" {"f" "Antarctican", "m" "Antarctican"},
   "fra" {"f" "Antarcticaine", "m" "Antarcticain"}},
  "translations"
  {"kor" {"official" "남극", "common" "남극"},
   "zho" {"official" "南极洲", "common" "南极洲"},
   "hun" {"official" "Antarktisz", "common" "Antarktisz"},
   "rus" {"official" "Антарктида", "common" "Антарктида"},
   "swe" {"official" "Antarktis", "common" "Antarktis"},
   "ces" {"official" "Antarktida", "common" "Antarktida"},
   "deu" {"official" "Antarktika", "common" "Antarktis"},
   "ara" {"official" "أنتارتيكا", "common" "أنتارتيكا"},
   "urd" {"official" "انٹارکٹکا", "common" "انٹارکٹکا"},
   "srp" {"official" "Антарктик", "common" "Антарктик"},
   "tur" {"official" "Antarktika", "common" "Antarktika"},
   "pol" {"official" "Antarktyka", "common" "Antarktyka"},
   "cym" {"official" "Yr Antarctig", "common" "Yr Antarctig"},
   "hrv" {"official" "Antarktika", "common" "Antarktika"},
   "spa" {"official" "Antártida", "common" "Antártida"},
   "fin" {"official" "Etelämanner", "common" "Etelämanner"},
   "per" {"official" "جنوبگان", "common" "جنوبگان"},
   "nld" {"official" "Antarctica", "common" "Antarctica"},
   "fra" {"official" "Antarctique", "common" "Antarctique"},
   "ita" {"official" "Antartide", "common" "Antartide"},
   "jpn" {"official" "南極大陸", "common" "南極"},
   "est" {"official" "Antarktika", "common" "Antarktika"},
   "por" {"official" "Antártica", "common" "Antártida"},
   "slk" {"official" "Antarktída", "common" "Antarktída"},
   "bre" {"official" "Antarktika", "common" "Antarktika"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/aq.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/aq.png"},
  "idd" {},
  "flags"
  {"svg" "https://flagcdn.com/aq.svg",
   "png" "https://flagcdn.com/w320/aq.png"},
  "unMember" false,
  "name" {"official" "Antarctica", "common" "Antarctica"},
  "capitalInfo" {},
  "tld" [".aq"],
  "ccn3" "010",
  "status" "officially-assigned",
  "region" "Antarctic",
  "independent" false,
  "population" 1000,
  "cca3" "ATA",
  "car" {"signs" [""], "side" "right"},
  "timezones"
  ["UTC-03:00"
   "UTC+03:00"
   "UTC+05:00"
   "UTC+06:00"
   "UTC+07:00"
   "UTC+08:00"
   "UTC+10:00"
   "UTC+12:00"],
  "startOfWeek" "monday",
  "continents" ["Antarctica"],
  "flag" "🇦🇶",
  "cca2" "AQ"}
 {"subregion" "Western Europe",
  "landlocked" false,
  "latlng" [52.5 5.75],
  "area" 41850.0,
  "altSpellings" ["NL" "Holland" "Nederland" "The Netherlands"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/Hv6zQswGhFxoVVBm6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/47796"},
  "demonyms"
  {"eng" {"f" "Dutch", "m" "Dutch"},
   "fra" {"f" "Néerlandaise", "m" "Néerlandais"}},
  "translations"
  {"kor" {"official" "네덜란드 왕국", "common" "네덜란드"},
   "zho" {"official" "荷兰", "common" "荷兰"},
   "hun" {"official" "Holland Királyság", "common" "Hollandia"},
   "rus" {"official" "Нидерланды", "common" "Нидерланды"},
   "swe" {"official" "Nederländerna", "common" "Nederländerna"},
   "ces" {"official" "Nizozemské království", "common" "Nizozemsko"},
   "deu" {"official" "Niederlande", "common" "Niederlande"},
   "ara" {"official" "مملكة هولندا", "common" "هولندا"},
   "urd" {"official" "مملکتِ نیدرلینڈز", "common" "نیدرلینڈز"},
   "srp" {"official" "Краљевина Холандија", "common" "Холандија"},
   "tur" {"official" "Hollanda", "common" "Hollanda"},
   "pol" {"official" "Królestwo Niderlandów", "common" "Holandia"},
   "cym"
   {"official" "Kingdom of the Netherlands", "common" "Netherlands"},
   "hrv" {"official" "Holandija", "common" "Nizozemska"},
   "spa" {"official" "Países Bajos", "common" "Países Bajos"},
   "fin" {"official" "Alankomaat", "common" "Alankomaat"},
   "per" {"official" "هلند", "common" "هلند"},
   "nld" {"official" "Nederland", "common" "Nederland"},
   "fra" {"official" "Pays-Bas", "common" "Pays-Bas"},
   "ita" {"official" "Paesi Bassi", "common" "Paesi Bassi"},
   "jpn" {"official" "オランダ", "common" "オランダ"},
   "est" {"official" "Madalmaade Kuningriik", "common" "Holland"},
   "por" {"official" "Holanda", "common" "Holanda"},
   "slk" {"official" "Holandské kráľovstvo", "common" "Holansko"},
   "bre"
   {"official" "Rouantelezh an Izelvroioù", "common" "Izelvroioù"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/nl.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/nl.png"},
  "idd" {"suffixes" ["1"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/nl.svg",
   "alt"
   "The flag of the Netherlands is composed of three equal horizontal bands of red, white and blue.",
   "png" "https://flagcdn.com/w320/nl.png"},
  "unMember" true,
  "name"
  {"official" "Kingdom of the Netherlands",
   "nativeName"
   {"nld"
    {"official" "Koninkrijk der Nederlanden", "common" "Nederland"}},
   "common" "Netherlands"},
  "postalCode" {"regex" "^(\\d{4}[A-Z]{2})$", "format" "#### @@"},
  "capitalInfo" {"latlng" [52.35 4.92]},
  "tld" [".nl"],
  "ccn3" "528",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"nld" "Dutch"},
  "cioc" "NED",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 16655799,
  "cca3" "NLD",
  "borders" ["BEL" "DEU"],
  "capital" ["Amsterdam"],
  "car" {"signs" ["NL"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇳🇱",
  "gini" {"2018" 28.1},
  "fifa" "NED",
  "cca2" "NL"}
 {"subregion" "Northern Africa",
  "landlocked" false,
  "latlng" [15.0 30.0],
  "area" 1886068.0,
  "altSpellings" ["SD" "Republic of the Sudan" "Jumhūrīyat as-Sūdān"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/bNW7YUJCaqR8zcXn7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192789"},
  "demonyms"
  {"eng" {"f" "Sudanese", "m" "Sudanese"},
   "fra" {"f" "Soudanaise", "m" "Soudanais"}},
  "translations"
  {"kor" {"official" "수단 공화국", "common" "수단"},
   "zho" {"official" "苏丹共和国", "common" "苏丹"},
   "hun" {"official" "Szudáni Köztársaság", "common" "Szudán"},
   "rus" {"official" "Республика Судан", "common" "Судан"},
   "swe" {"official" "Republiken Sudan", "common" "Sudan"},
   "ces" {"official" "Súdánská republika", "common" "Súdán"},
   "deu" {"official" "Republik Sudan", "common" "Sudan"},
   "ara" {"official" "جمهورية السودان", "common" "السودان"},
   "urd" {"official" "جمہوریہ سودان", "common" "سودان"},
   "srp" {"official" "Република Судан", "common" "Судан"},
   "tur" {"official" "Sudan Cumhuriyeti", "common" "Sudan"},
   "pol" {"official" "Republika Sudanu", "common" "Sudan"},
   "cym" {"official" "Republic of the Sudan", "common" "Sudan"},
   "hrv" {"official" "Republika Sudan", "common" "Sudan"},
   "spa" {"official" "República de Sudán", "common" "Sudán"},
   "fin" {"official" "Sudanin tasavalta", "common" "Sudan"},
   "per" {"official" "جمهوری سودان", "common" "سودان"},
   "nld" {"official" "Republiek Soedan", "common" "Soedan"},
   "fra" {"official" "République du Soudan", "common" "Soudan"},
   "ita" {"official" "Repubblica del Sudan", "common" "Sudan"},
   "jpn" {"official" "スーダン共和国", "common" "スーダン"},
   "est" {"official" "Sudaani Vabariik", "common" "Sudaan"},
   "por" {"official" "República do Sudão", "common" "Sudão"},
   "slk" {"official" "Sudánska republika", "common" "Sudán"},
   "bre" {"official" "Republik Soudan", "common" "Soudan"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/sd.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/sd.png"},
  "idd" {"suffixes" ["49"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/sd.svg",
   "alt"
   "The flag of Sudan is composed of three equal horizontal bands of red, white and black, with a green isosceles triangle superimposed on the hoist side. The green triangle spans about two-fifth the width of the field with its base on the hoist end.",
   "png" "https://flagcdn.com/w320/sd.png"},
  "unMember" true,
  "name"
  {"official" "Republic of the Sudan",
   "nativeName"
   {"ara" {"official" "جمهورية السودان", "common" "السودان"},
    "eng" {"official" "Republic of the Sudan", "common" "Sudan"}},
   "common" "Sudan"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [15.6 32.53]},
  "tld" [".sd"],
  "ccn3" "729",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"ara" "Arabic", "eng" "English"},
  "cioc" "SUD",
  "currencies" {"SDG" {"name" "Sudanese pound", "symbol" "ج.س"}},
  "independent" true,
  "population" 43849269,
  "cca3" "SDN",
  "borders" ["CAF" "TCD" "EGY" "ERI" "ETH" "LBY" "SSD"],
  "capital" ["Khartoum"],
  "car" {"signs" ["SUD"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇸🇩",
  "gini" {"2014" 34.2},
  "fifa" "SDN",
  "cca2" "SD"}
 {"subregion" "Melanesia",
  "landlocked" false,
  "latlng" [17.7134 178.065],
  "area" 18272.0,
  "altSpellings"
  ["FJ" "Viti" "Republic of Fiji" "Matanitu ko Viti" "Fijī Gaṇarājya"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/r9fhDqoLZdg1zmE99",
   "openStreetMaps" "https://www.openstreetmap.org/relation/571747"},
  "demonyms"
  {"eng" {"f" "Fijian", "m" "Fijian"},
   "fra" {"f" "Fidjienne", "m" "Fidjien"}},
  "translations"
  {"kor" {"official" "피지 공화국", "common" "피지"},
   "zho" {"official" "斐济共和国", "common" "斐济"},
   "hun"
   {"official" "Fidzsi-szigeteki Köztársaság",
    "common" "Fidzsi-szigetek"},
   "rus" {"official" "Республика Фиджи", "common" "Фиджи"},
   "swe" {"official" "Republiken Fiji", "common" "Fiji"},
   "ces"
   {"official" "Republika Fidžijských ostrovů", "common" "Fidži"},
   "deu" {"official" "Republik Fidschi", "common" "Fidschi"},
   "ara" {"official" "جمهورية جزر فيجي", "common" "فيجي"},
   "urd" {"official" "جمہوریہ فجی", "common" "فجی"},
   "srp" {"official" "Република Фиџи", "common" "Фиџи"},
   "tur" {"official" "Fiji Cumhuriyeti", "common" "Fiji"},
   "pol" {"official" "Republika Fidżi", "common" "Fidżi"},
   "cym" {"official" "Republic of Fiji", "common" "Fiji"},
   "hrv" {"official" "Republika Fidži", "common" "Fiđi"},
   "spa" {"official" "República de Fiji", "common" "Fiyi"},
   "fin" {"official" "Fidžin tasavalta", "common" "Fidži"},
   "per" {"official" "جمهوری جزایر فیجی", "common" "فیجی"},
   "nld" {"official" "Republiek Fiji", "common" "Fiji"},
   "fra" {"official" "République des Fidji", "common" "Fidji"},
   "ita" {"official" "Repubblica di Figi", "common" "Figi"},
   "jpn" {"official" "フィジー共和国", "common" "フィジー"},
   "est" {"official" "Fidži Vabariik", "common" "Fidži"},
   "por" {"official" "República de Fiji", "common" "Fiji"},
   "slk" {"official" "Fidžijská republika", "common" "Fidži"},
   "bre" {"official" "Republik Fidji", "common" "Fidji"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/fj.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/fj.png"},
  "idd" {"suffixes" ["79"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/fj.svg",
   "alt"
   "The flag of Fiji has a light blue field. It features the flag of the United Kingdom — the Union Jack — in the canton and the shield of the national coat of arms centered in the fly half.",
   "png" "https://flagcdn.com/w320/fj.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Fiji",
   "nativeName"
   {"hif" {"official" "रिपब्लिक ऑफ फीजी", "common" "फिजी"},
    "fij" {"official" "Matanitu Tugalala o Viti", "common" "Viti"},
    "eng" {"official" "Republic of Fiji", "common" "Fiji"}},
   "common" "Fiji"},
  "capitalInfo" {"latlng" [-18.13 178.42]},
  "tld" [".fj"],
  "ccn3" "242",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"hif" "Fiji Hindi", "fij" "Fijian", "eng" "English"},
  "cioc" "FIJ",
  "currencies" {"FJD" {"name" "Fijian dollar", "symbol" "$"}},
  "independent" true,
  "population" 896444,
  "cca3" "FJI",
  "capital" ["Suva"],
  "car" {"signs" ["FJI"], "side" "left"},
  "timezones" ["UTC+12:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇫🇯",
  "gini" {"2013" 36.7},
  "fifa" "FIJ",
  "cca2" "FJ"}
 {"subregion" "Western Europe",
  "landlocked" true,
  "latlng" [47.26666666 9.53333333],
  "area" 160.0,
  "altSpellings"
  ["LI" "Principality of Liechtenstein" "Fürstentum Liechtenstein"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/KNuHeiJzAPodwM7y6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1155955"},
  "demonyms"
  {"eng" {"f" "Liechtensteiner", "m" "Liechtensteiner"},
   "fra" {"f" "Liechtensteinoise", "m" "Liechtensteinois"}},
  "translations"
  {"kor" {"official" "리히텐슈타인 공국", "common" "리히텐슈타인"},
   "zho" {"official" "列支敦士登公国", "common" "列支敦士登"},
   "hun"
   {"official" "Liechtensteini Hercegség", "common" "Liechtenstein"},
   "rus" {"official" "Княжество Лихтенштейн", "common" "Лихтенштейн"},
   "swe"
   {"official" "Furstendömet Liechtenstein", "common" "Liechtenstein"},
   "ces"
   {"official" "Knížectví Lichtenštejnské",
    "common" "Lichtenštejnsko"},
   "deu"
   {"official" "Fürstentum Liechtenstein", "common" "Liechtenstein"},
   "ara" {"official" "إمارة ليختنشتاين", "common" "ليختنشتاين"},
   "urd" {"official" "امارات لیختینستائن", "common" "لیختینستائن"},
   "srp" {"official" "Кнежевина Лихтенштајн", "common" "Лихтенштајн"},
   "tur" {"official" "Lihtenştayn Prensliği", "common" "Lihtenştayn"},
   "pol"
   {"official" "Księstwo Liechtensteinu", "common" "Liechtenstein"},
   "cym"
   {"official" "Principality of Liechtenstein",
    "common" "Liechtenstein"},
   "hrv" {"official" "Kneževina Lihtenštajn", "common" "Lihtenštajn"},
   "spa"
   {"official" "Principado de Liechtenstein",
    "common" "Liechtenstein"},
   "fin"
   {"official" "Liechensteinin ruhtinaskunta",
    "common" "Liechenstein"},
   "per"
   {"official" "شاهزاده‌نشین لیختن‌اشتاین", "common" "لیختن‌اشتاین"},
   "nld"
   {"official" "Vorstendom Liechtenstein", "common" "Liechtenstein"},
   "fra"
   {"official" "Principauté du Liechtenstein",
    "common" "Liechtenstein"},
   "ita"
   {"official" "Principato del Liechtenstein",
    "common" "Liechtenstein"},
   "jpn" {"official" "リヒテンシュタイン公国", "common" "リヒテンシュタイン"},
   "est"
   {"official" "Liechtensteini Vürstiriik", "common" "Liechtenstein"},
   "por"
   {"official" "Principado de Liechtenstein",
    "common" "Liechtenstein"},
   "slk"
   {"official" "Lichtenštajnské kniežatstvo",
    "common" "Lichtenštajnsko"},
   "bre"
   {"official" "Priñselezh Liechtenstein", "common" "Liechtenstein"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/li.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/li.png"},
  "idd" {"suffixes" ["23"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/li.svg",
   "alt"
   "The flag of Liechtenstein is composed of two equal horizontal bands of blue and red, with a golden-yellow crown on the hoist side of the blue band.",
   "png" "https://flagcdn.com/w320/li.png"},
  "unMember" true,
  "name"
  {"official" "Principality of Liechtenstein",
   "nativeName"
   {"deu"
    {"official" "Fürstentum Liechtenstein", "common" "Liechtenstein"}},
   "common" "Liechtenstein"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [47.13 9.52]},
  "tld" [".li"],
  "ccn3" "438",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"deu" "German"},
  "cioc" "LIE",
  "currencies" {"CHF" {"name" "Swiss franc", "symbol" "Fr"}},
  "independent" true,
  "population" 38137,
  "cca3" "LIE",
  "borders" ["AUT" "CHE"],
  "capital" ["Vaduz"],
  "car" {"signs" ["FL"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇱🇮",
  "fifa" "LIE",
  "cca2" "LI"}
 {"subregion" "Southern Asia",
  "landlocked" true,
  "latlng" [28.0 84.0],
  "area" 147181.0,
  "altSpellings"
  ["NP"
   "Federal Democratic Republic of Nepal"
   "Loktāntrik Ganatantra Nepāl"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/UMj2zpbQp7B5c3yT7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/184633"},
  "demonyms"
  {"eng" {"f" "Nepalese", "m" "Nepalese"},
   "fra" {"f" "Népalaise", "m" "Népalais"}},
  "translations"
  {"kor" {"official" "네팔 연방 민주 공화국", "common" "네팔"},
   "zho" {"official" "尼泊尔联邦民主共和国", "common" "尼泊尔"},
   "hun"
   {"official" "Nepáli Szövetségi Demokratikus Köztársaság",
    "common" "Nepál"},
   "rus"
   {"official" "Федеративная Демократическая Республика Непал",
    "common" "Непал"},
   "swe"
   {"official" "Demokratiska förbundsrepubliken Nepal",
    "common" "Nepal"},
   "ces"
   {"official" "Federativní demokratická republika Nepál",
    "common" "Nepál"},
   "deu"
   {"official" "Demokratische Bundesrepublik Nepal", "common" "Nepal"},
   "ara"
   {"official" "جمهورية نيبال الديمقراطية الاتحادية",
    "common" "نيبال"},
   "urd" {"official" "وفاقی جمہوری جمہوریہ نیپال", "common" "نیپال"},
   "srp"
   {"official" "Савезна Демократска Република Непал",
    "common" "Непал"},
   "tur"
   {"official" "Nepal Federal Demokratik Cumhuriyeti",
    "common" "Nepal"},
   "pol"
   {"official" "Federalna Demokratyczna Republika Nepalu",
    "common" "Nepal"},
   "cym"
   {"official" "Federal Democratic Republic of Nepal",
    "common" "Nepal"},
   "hrv"
   {"official" "Savezna Demokratska Republika Nepal",
    "common" "Nepal"},
   "spa"
   {"official" "República Democrática Federal de Nepal",
    "common" "Nepal"},
   "fin"
   {"official" "Nepalin demokraattinen liittotasavalta",
    "common" "Nepal"},
   "per" {"official" "جمهوری فدرال دموکراتیک نپال", "common" "نپال"},
   "nld"
   {"official" "Federale Democratische Republiek Nepal",
    "common" "Nepal"},
   "fra" {"official" "République du Népal", "common" "Népal"},
   "ita"
   {"official" "Repubblica federale democratica del Nepal",
    "common" "Nepal"},
   "jpn" {"official" "ネパール連邦民主共和国", "common" "ネパール"},
   "est"
   {"official" "Nepali Demokraatlik Liitvabariik", "common" "Nepal"},
   "por"
   {"official" "República Democrática Federal do Nepal",
    "common" "Nepal"},
   "slk"
   {"official" "Nepálska federatívna demokratická republika",
    "common" "Nepál"},
   "bre"
   {"official" "Republik Demokratel Kevreadel Nepal",
    "common" "Nepal"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/np.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/np.png"},
  "idd" {"suffixes" ["77"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/np.svg",
   "alt"
   "The flag of Nepal is the world's only non-quadrilateral flag of a sovereign country. It takes the shape of two adjoining right-angled triangles and has a crimson red field with deep blue edges. Within the smaller upper triangle is an emblem of the upper half of a white sun resting on an upward facing white crescent. The lower triangle bears a white sun with twelve rays.",
   "png" "https://flagcdn.com/w320/np.png"},
  "unMember" true,
  "name"
  {"official" "Federal Democratic Republic of Nepal",
   "nativeName"
   {"nep"
    {"official" "नेपाल संघीय लोकतान्त्रिक गणतन्त्र",
     "common" "नेपाल"}},
   "common" "Nepal"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [27.72 85.32]},
  "tld" [".np"],
  "ccn3" "524",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"nep" "Nepali"},
  "cioc" "NEP",
  "currencies" {"NPR" {"name" "Nepalese rupee", "symbol" "₨"}},
  "independent" true,
  "population" 29136808,
  "cca3" "NPL",
  "borders" ["CHN" "IND"],
  "capital" ["Kathmandu"],
  "car" {"signs" ["NEP"], "side" "left"},
  "timezones" ["UTC+05:45"],
  "startOfWeek" "sunday",
  "continents" ["Asia"],
  "flag" "🇳🇵",
  "gini" {"2010" 32.8},
  "fifa" "NEP",
  "cca2" "NP"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [18.25 -66.5],
  "area" 8870.0,
  "altSpellings"
  ["PR"
   "Commonwealth of Puerto Rico"
   "Estado Libre Asociado de Puerto Rico"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/sygfDbtwn389wu8x5",
   "openStreetMaps" "https://www.openstreetmap.org/relation/4422604"},
  "demonyms"
  {"eng" {"f" "Puerto Rican", "m" "Puerto Rican"},
   "fra" {"f" "Portoricaine", "m" "Portoricain"}},
  "translations"
  {"kor" {"official" "푸에르토리코", "common" "푸에르토리코"},
   "zho" {"official" "波多黎各联邦", "common" "波多黎各"},
   "hun" {"official" "Puerto Rico", "common" "Puerto Rico"},
   "rus"
   {"official" "Содружество Пуэрто-Рико", "common" "Пуэрто-Рико"},
   "swe" {"official" "Puerto Rico", "common" "Puerto Rico"},
   "ces" {"official" "Portoriko", "common" "Portoriko"},
   "deu" {"official" "Freistaat Puerto Rico", "common" "Puerto Rico"},
   "ara" {"official" "كومنولث بويرتوريكو", "common" "بويرتوريكو"},
   "urd"
   {"official" " دولتِ مشترکہ پورٹو ریکو", "common" "پورٹو ریکو"},
   "srp" {"official" "Комонвелт Порторико", "common" "Порторико"},
   "tur" {"official" "Porto Riko Topluluğu", "common" "Porto Riko"},
   "pol"
   {"official" "Wolne Stowarzyszone Państwo Portoryko",
    "common" "Portoryko"},
   "cym"
   {"official" "Commonwealth of Puerto Rico", "common" "Puerto Rico"},
   "hrv" {"official" "Zajednica Puerto Rico", "common" "Portoriko"},
   "spa"
   {"official" "Asociado de Puerto Rico", "common" "Puerto Rico"},
   "fin" {"official" "Puerto Rico", "common" "Puerto Rico"},
   "per" {"official" "قلمرو همسود پورتوریکو", "common" "پورتوریکو"},
   "nld"
   {"official" "Gemenebest van Puerto Rico", "common" "Puerto Rico"},
   "fra" {"official" "Porto Rico", "common" "Porto Rico"},
   "ita"
   {"official" "Commonwealth di Porto Rico", "common" "Porto Rico"},
   "jpn" {"official" "プエルトリコのコモンウェルス", "common" "プエルトリコ"},
   "est" {"official" "Puerto Rico Ühendus", "common" "Puerto Rico"},
   "por"
   {"official" "Commonwealth of Puerto Rico", "common" "Porto Rico"},
   "slk" {"official" "Portorické spoločenstvo", "common" "Portoriko"},
   "bre" {"official" "Kenglad Puerto Rico", "common" "Puerto Rico"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["787" "939"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/pr.svg",
   "png" "https://flagcdn.com/w320/pr.png"},
  "unMember" false,
  "name"
  {"official" "Commonwealth of Puerto Rico",
   "nativeName"
   {"eng"
    {"official" "Commonwealth of Puerto Rico", "common" "Puerto Rico"},
    "spa"
    {"official" "Estado Libre Asociado de Puerto Rico",
     "common" "Puerto Rico"}},
   "common" "Puerto Rico"},
  "postalCode" {"regex" "^(\\d{9})$", "format" "#####-####"},
  "capitalInfo" {"latlng" [18.47 -66.12]},
  "tld" [".pr"],
  "ccn3" "630",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English", "spa" "Spanish"},
  "cioc" "PUR",
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" false,
  "population" 3194034,
  "cca3" "PRI",
  "capital" ["San Juan"],
  "car" {"signs" ["USA"], "side" "right"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇵🇷",
  "fifa" "PUR",
  "cca2" "PR"}
 {"subregion" "Western Asia",
  "landlocked" false,
  "latlng" [42.0 43.5],
  "area" 69700.0,
  "altSpellings" ["GE" "Sakartvelo"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/bvCaGBePR1ZEDK5cA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/28699"},
  "demonyms"
  {"eng" {"f" "Georgian", "m" "Georgian"},
   "fra" {"f" "Géorgienne", "m" "Géorgien"}},
  "translations"
  {"kor" {"official" "조지아", "common" "조지아"},
   "zho" {"official" "格鲁吉亚", "common" "格鲁吉亚"},
   "hun" {"official" "Grúzia", "common" "Grúzia"},
   "rus" {"official" "Грузия", "common" "Грузия"},
   "swe" {"official" "Georgien", "common" "Georgien"},
   "ces" {"official" "Gruzie", "common" "Gruzie"},
   "deu" {"official" "Georgien", "common" "Georgien"},
   "ara" {"official" "جورجيا", "common" "جورجيا"},
   "urd" {"official" "جارجیا", "common" "جارجیا"},
   "srp" {"official" "Грузија", "common" "Грузија"},
   "tur" {"official" "Gürcistan", "common" "Gürcistan"},
   "pol" {"official" "Gruzja", "common" "Gruzja"},
   "cym" {"official" "Georgia", "common" "Georgia"},
   "hrv" {"official" "Gruzija", "common" "Gruzija"},
   "spa" {"official" "Georgia", "common" "Georgia"},
   "fin" {"official" "Georgia", "common" "Georgia"},
   "per" {"official" "گرجستان", "common" "گرجستان"},
   "nld" {"official" "Georgia", "common" "Georgië"},
   "fra" {"official" "République de Géorgie", "common" "Géorgie"},
   "ita" {"official" "Georgia", "common" "Georgia"},
   "jpn" {"official" "グルジア", "common" "グルジア"},
   "est" {"official" "Gruusia", "common" "Gruusia"},
   "por" {"official" "Georgia", "common" "Geórgia"},
   "slk" {"official" "Gruzínsko", "common" "Gruzínsko"},
   "bre" {"official" "Republik Jorjia", "common" "Jorjia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ge.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ge.png"},
  "idd" {"suffixes" ["95"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/ge.svg",
   "alt"
   "The flag of Georgia has a white field with a large centered red cross that extends to the edges and divides the field into four quarters. A small red Bolnur-Katskhuri cross is centered in each quarter.",
   "png" "https://flagcdn.com/w320/ge.png"},
  "unMember" true,
  "name"
  {"official" "Georgia",
   "nativeName"
   {"kat" {"official" "საქართველო", "common" "საქართველო"}},
   "common" "Georgia"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [41.68 44.83]},
  "tld" [".ge"],
  "ccn3" "268",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"kat" "Georgian"},
  "cioc" "GEO",
  "currencies" {"GEL" {"name" "lari", "symbol" "₾"}},
  "independent" true,
  "population" 3714000,
  "cca3" "GEO",
  "borders" ["ARM" "AZE" "RUS" "TUR"],
  "capital" ["Tbilisi"],
  "car" {"signs" ["GE"], "side" "right"},
  "timezones" ["UTC+04:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇬🇪",
  "gini" {"2019" 35.9},
  "fifa" "GEO",
  "cca2" "GE"}
 {"subregion" "Southern Asia",
  "landlocked" false,
  "latlng" [30.0 70.0],
  "area" 881912.0,
  "altSpellings"
  ["PK"
   "Pākistān"
   "Islamic Republic of Pakistan"
   "Islāmī Jumhūriya'eh Pākistān"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/5LYujdfR5yLUXoERA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/307573"},
  "demonyms"
  {"eng" {"f" "Pakistani", "m" "Pakistani"},
   "fra" {"f" "Pakistanaise", "m" "Pakistanais"}},
  "translations"
  {"kor" {"official" "파키스탄 이슬람 공화국", "common" "파키스탄"},
   "zho" {"official" "巴基斯坦伊斯兰共和国", "common" "巴基斯坦"},
   "hun" {"official" "Pakisztán", "common" "Pakisztán"},
   "rus"
   {"official" "Исламская Республика Пакистан", "common" "Пакистан"},
   "swe"
   {"official" "Islamiska republiken Pakistan", "common" "Pakistan"},
   "ces"
   {"official" "Pákistánská islámská republika", "common" "Pákistán"},
   "deu"
   {"official" "Islamische Republik Pakistan", "common" "Pakistan"},
   "ara" {"official" "جمهورية باكستان الإسلامية", "common" "باكستان"},
   "urd" {"official" "اسلامی جمہوریہ پاکستان", "common" "پاکستان"},
   "srp"
   {"official" "Исламска Република Пакистан", "common" "Пакистан"},
   "tur"
   {"official" "Pakistan İslam Cumhuriyeti", "common" "Pakistan"},
   "pol"
   {"official" "Islamska Republika Pakistanu", "common" "Pakistan"},
   "cym"
   {"official" "Islamic Republic of Pakistan", "common" "Pakistan"},
   "hrv"
   {"official" "Islamska Republika Pakistan", "common" "Pakistan"},
   "spa"
   {"official" "República Islámica de Pakistán", "common" "Pakistán"},
   "fin"
   {"official" "Pakistanin islamilainen tasavalta",
    "common" "Pakistan"},
   "per" {"official" "جمهوری اسلامی پاکستان", "common" "پاکستان"},
   "nld"
   {"official" "Islamitische Republiek Pakistan", "common" "Pakistan"},
   "fra"
   {"official" "République islamique du Pakistan",
    "common" "Pakistan"},
   "ita"
   {"official" "Repubblica islamica del Pakistan",
    "common" "Pakistan"},
   "jpn" {"official" "パキスタン", "common" "パキスタン"},
   "est" {"official" "Pakistani Islamivabariik", "common" "Pakistan"},
   "por"
   {"official" "República Islâmica do Paquistão",
    "common" "Paquistão"},
   "slk"
   {"official" "Pakistanská islamská republika", "common" "Pakistan"},
   "bre"
   {"official" "Republik islamek Pakistan", "common" "Pakistan"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/pk.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/pk.png"},
  "idd" {"suffixes" ["2"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/pk.svg",
   "alt"
   "The flag of Pakistan is composed of a white vertical band on its hoist side that takes up about one-fourth the width of the field and a dark green rectangular area that spans the rest of the field. A white fly-side facing crescent and five-pointed star are centered in the dark green area.",
   "png" "https://flagcdn.com/w320/pk.png"},
  "unMember" true,
  "name"
  {"official" "Islamic Republic of Pakistan",
   "nativeName"
   {"urd" {"official" "اسلامی جمہوریۂ پاكستان", "common" "پاكستان"},
    "eng"
    {"official" "Islamic Republic of Pakistan", "common" "Pakistan"}},
   "common" "Pakistan"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [33.68 73.05]},
  "tld" [".pk"],
  "ccn3" "586",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"urd" "Urdu", "eng" "English"},
  "cioc" "PAK",
  "currencies" {"PKR" {"name" "Pakistani rupee", "symbol" "₨"}},
  "independent" true,
  "population" 220892331,
  "cca3" "PAK",
  "borders" ["AFG" "CHN" "IND" "IRN"],
  "capital" ["Islamabad"],
  "car" {"signs" ["PK"], "side" "left"},
  "timezones" ["UTC+05:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇵🇰",
  "gini" {"2018" 31.6},
  "fifa" "PAK",
  "cca2" "PK"}
 {"subregion" "Western Europe",
  "landlocked" false,
  "latlng" [43.73333333 7.4],
  "area" 2.02,
  "altSpellings"
  ["MC" "Principality of Monaco" "Principauté de Monaco"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/DGpndDot28bYdXYn7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1124039"},
  "demonyms"
  {"eng" {"f" "Monegasque", "m" "Monegasque"},
   "fra" {"f" "Monégasque", "m" "Monégasque"}},
  "translations"
  {"kor" {"official" "모나코 공국", "common" "모나코"},
   "zho" {"official" "摩纳哥公国", "common" "摩纳哥"},
   "hun" {"official" "Monacói Hercegség", "common" "Monaco"},
   "rus" {"official" "Княжество Монако", "common" "Монако"},
   "swe" {"official" "Furstendömet Monaco", "common" "Monaco"},
   "ces" {"official" "Monacké knížectví", "common" "Monako"},
   "deu" {"official" "Fürstentum Monaco", "common" "Monaco"},
   "ara" {"official" "إمارة موناكو", "common" "موناكو"},
   "urd" {"official" "جمہوریہ مناکو", "common" "موناکو"},
   "srp" {"official" "Кнежевина Монако", "common" "Монако"},
   "tur" {"official" "Monako Prensliği", "common" "Monako"},
   "pol" {"official" "Księstwo Monako", "common" "Monako"},
   "cym" {"official" "Principality of Monaco", "common" "Monaco"},
   "hrv" {"official" "Kneževina Monako", "common" "Monako"},
   "spa" {"official" "Principado de Mónaco", "common" "Mónaco"},
   "fin" {"official" "Monacon ruhtinaskunta", "common" "Monaco"},
   "per" {"official" "شاهزاده‌نشین موناکو", "common" "موناکو"},
   "nld" {"official" "Vorstendom Monaco", "common" "Monaco"},
   "fra" {"official" "Principauté de Monaco", "common" "Monaco"},
   "ita"
   {"official" "Principato di Monaco",
    "common" "Principato di Monaco"},
   "jpn" {"official" "モナコ公国", "common" "モナコ"},
   "est" {"official" "Monaco Vürstiriik", "common" "Monaco"},
   "por" {"official" "Principado do Mónaco", "common" "Mónaco"},
   "slk" {"official" "Monacké kniežatstvo", "common" "Monako"},
   "bre" {"official" "Priñselezh Monako", "common" "Monako"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/mc.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/mc.png"},
  "idd" {"suffixes" ["77"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/mc.svg",
   "alt"
   "The flag of Monaco is composed of two equal horizontal bands of red and white.",
   "png" "https://flagcdn.com/w320/mc.png"},
  "unMember" true,
  "name"
  {"official" "Principality of Monaco",
   "nativeName"
   {"fra" {"official" "Principauté de Monaco", "common" "Monaco"}},
   "common" "Monaco"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [43.73 7.42]},
  "tld" [".mc"],
  "ccn3" "492",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"fra" "French"},
  "cioc" "MON",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 39244,
  "cca3" "MCO",
  "borders" ["FRA"],
  "capital" ["Monaco"],
  "car" {"signs" ["MC"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇲🇨",
  "cca2" "MC"}
 {"subregion" "Southern Africa",
  "landlocked" true,
  "latlng" [-22.0 24.0],
  "area" 582000.0,
  "altSpellings" ["BW" "Republic of Botswana" "Lefatshe la Botswana"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/E364KeLy6N4JwxwQ8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1889339"},
  "demonyms"
  {"eng" {"f" "Motswana", "m" "Motswana"},
   "fra" {"f" "Botswanaise", "m" "Botswanais"}},
  "translations"
  {"kor" {"official" "보츠와나 공화국", "common" "보츠와나"},
   "zho" {"official" "博茨瓦纳共和国", "common" "博茨瓦纳"},
   "hun" {"official" "Botswanai Köztársaság", "common" "Botswana"},
   "rus" {"official" "Республика Ботсвана", "common" "Ботсвана"},
   "swe" {"official" "Republiken Botswana", "common" "Botswana"},
   "ces" {"official" "Botswanská republika", "common" "Botswana"},
   "deu" {"official" "Republik Botsuana", "common" "Botswana"},
   "ara" {"official" "جمهورية بوتسوانا", "common" "بوتسوانا"},
   "urd" {"official" "جمہوریہ بوٹسوانا", "common" "بوٹسوانا"},
   "srp" {"official" "Република Боцвана", "common" "Боцвана"},
   "tur" {"official" "Botsvana Cumhuriyeti", "common" "Botsvana"},
   "pol" {"official" "Republika Botswany", "common" "Botswana"},
   "cym" {"official" "Republic of Botswana", "common" "Botswana"},
   "hrv" {"official" "Republika Bocvana", "common" "Bocvana"},
   "spa" {"official" "República de Botswana", "common" "Botswana"},
   "fin" {"official" "Botswanan tasavalta", "common" "Botswana"},
   "per" {"official" "جمهوری بوتسوانا", "common" "بوتسوانا"},
   "nld" {"official" "Republiek Botswana", "common" "Botswana"},
   "fra" {"official" "République du Botswana", "common" "Botswana"},
   "ita" {"official" "Repubblica del Botswana", "common" "Botswana"},
   "jpn" {"official" "ボツワナ共和国", "common" "ボツワナ"},
   "est" {"official" "Botswana Vabariik", "common" "Botswana"},
   "por" {"official" "República do Botswana", "common" "Botswana"},
   "slk" {"official" "Botswanská republika", "common" "Botswana"},
   "bre" {"official" "Republik Botswana", "common" "Botswana"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/bw.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/bw.png"},
  "idd" {"suffixes" ["67"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/bw.svg",
   "alt"
   "The flag of Botswana has a light blue field with a white-edged black horizontal band across its center.",
   "png" "https://flagcdn.com/w320/bw.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Botswana",
   "nativeName"
   {"tsn" {"official" "Lefatshe la Botswana", "common" "Botswana"},
    "eng" {"official" "Republic of Botswana", "common" "Botswana"}},
   "common" "Botswana"},
  "capitalInfo" {"latlng" [-24.63 25.9]},
  "tld" [".bw"],
  "ccn3" "072",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"tsn" "Tswana", "eng" "English"},
  "cioc" "BOT",
  "currencies" {"BWP" {"name" "Botswana pula", "symbol" "P"}},
  "independent" true,
  "population" 2351625,
  "cca3" "BWA",
  "borders" ["NAM" "ZAF" "ZMB" "ZWE"],
  "capital" ["Gaborone"],
  "car" {"signs" ["BW"], "side" "left"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇧🇼",
  "gini" {"2015" 53.3},
  "fifa" "BOT",
  "cca2" "BW"}
 {"subregion" "Western Asia",
  "landlocked" false,
  "latlng" [33.83333333 35.83333333],
  "area" 10452.0,
  "altSpellings"
  ["LB" "Lebanese Republic" "Al-Jumhūrīyah Al-Libnānīyah"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/Sz5VCU8UFBqMyTdc9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/184843"},
  "demonyms"
  {"eng" {"f" "Lebanese", "m" "Lebanese"},
   "fra" {"f" "Libanaise", "m" "Libanais"}},
  "translations"
  {"kor" {"official" "레바논 공화국", "common" "레바논"},
   "zho" {"official" "黎巴嫩共和国", "common" "黎巴嫩"},
   "hun" {"official" "Libanoni Köztársaság", "common" "Libanon"},
   "rus" {"official" "Ливанская Республика", "common" "Ливан"},
   "swe" {"official" "Republiken Libanon", "common" "Libanon"},
   "ces" {"official" "Libanonská republika", "common" "Libanon"},
   "deu" {"official" "Libanesische Republik", "common" "Libanon"},
   "ara" {"official" "الجمهورية اللبنانية", "common" "لبنان"},
   "urd" {"official" "جمہوریہ لبنان", "common" "لبنان"},
   "srp" {"official" "Либанска Република", "common" "Либан"},
   "tur" {"official" "Lübnan Cumhuriyeti", "common" "Lübnan"},
   "pol" {"official" "Republika Libańska", "common" "Liban"},
   "cym" {"official" "Lebanese Republic", "common" "Lebanon"},
   "hrv" {"official" "Libanonska Republika", "common" "Libanon"},
   "spa" {"official" "República Libanesa", "common" "Líbano"},
   "fin" {"official" "Libanonin tasavalta", "common" "Libanon"},
   "per" {"official" "جمهوری لبنان", "common" "لبنان"},
   "nld" {"official" "Libanese Republiek", "common" "Libanon"},
   "fra" {"official" "République libanaise", "common" "Liban"},
   "ita" {"official" "Repubblica libanese", "common" "Libano"},
   "jpn" {"official" "レバノン共和国", "common" "レバノン"},
   "est" {"official" "Liibanoni Vabariik", "common" "Liibanon"},
   "por" {"official" "República Libanesa", "common" "Líbano"},
   "slk" {"official" "Libanonská republika", "common" "Libanon"},
   "bre" {"official" "Republik Liban", "common" "Liban"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/lb.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/lb.png"},
  "idd" {"suffixes" ["61"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/lb.svg",
   "alt"
   "The flag of Lebanon is composed of three horizontal bands of red, white and red. The white band is twice the height of the red bands and bears a green Lebanese Cedar tree at its center.",
   "png" "https://flagcdn.com/w320/lb.png"},
  "unMember" true,
  "name"
  {"official" "Lebanese Republic",
   "nativeName"
   {"ara" {"official" "الجمهورية اللبنانية", "common" "لبنان"},
    "fra" {"official" "République libanaise", "common" "Liban"}},
   "common" "Lebanon"},
  "postalCode"
  {"regex" "^(\\d{4}(\\d{4})?)$", "format" "#### ####|####"},
  "capitalInfo" {"latlng" [33.87 35.5]},
  "tld" [".lb"],
  "ccn3" "422",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"ara" "Arabic", "fra" "French"},
  "cioc" "LBN",
  "currencies" {"LBP" {"name" "Lebanese pound", "symbol" "ل.ل"}},
  "independent" true,
  "population" 6825442,
  "cca3" "LBN",
  "borders" ["ISR" "SYR"],
  "capital" ["Beirut"],
  "car" {"signs" ["RL"], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇱🇧",
  "gini" {"2011" 31.8},
  "fifa" "LBN",
  "cca2" "LB"}
 {"subregion" "Melanesia",
  "landlocked" false,
  "latlng" [-6.0 147.0],
  "area" 462840.0,
  "altSpellings"
  ["PG"
   "Independent State of Papua New Guinea"
   "Independen Stet bilong Papua Niugini"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/ChGmzZBjZ3vnBwR2A",
   "openStreetMaps" "https://goo.gl/maps/ChGmzZBjZ3vnBwR2A"},
  "demonyms"
  {"eng" {"f" "Papua New Guinean", "m" "Papua New Guinean"},
   "fra" {"f" "Papouasienne", "m" "Papouasien"}},
  "translations"
  {"kor" {"official" "파푸아뉴기니 독립국", "common" "파푸아뉴기니"},
   "zho" {"official" "巴布亚新几内亚", "common" "巴布亚新几内亚"},
   "hun"
   {"official" "Pápua Új-Guinea Független Állam",
    "common" "Pápua Új-Guinea"},
   "rus"
   {"official" "Независимое Государство Папуа-Новой Гвинеи",
    "common" "Папуа — Новая Гвинея"},
   "swe"
   {"official" "Den oberoende staten Papua Nya Guinea",
    "common" "Papua Nya Guinea"},
   "ces"
   {"official" "Nezávislý stát Papua Nová Guinea",
    "common" "Papua-Nová Guinea"},
   "deu"
   {"official" "Unabhängiger Staat Papua-Neuguinea",
    "common" "Papua-Neuguinea"},
   "ara"
   {"official" "دولة بابوا غينيا الجديدة",
    "common" "بابوا غينيا الجديدة"},
   "urd"
   {"official" "آزاد ریاستِ پاپوا نیو گنی", "common" "پاپوا نیو گنی"},
   "srp"
   {"official" "Независна Држава Папуа Нова Гвинеја",
    "common" "Папуа Нова Гвинеја"},
   "tur"
   {"official" "Papua Yeni Gine Bağımsız Devleti",
    "common" "Papua Yeni Gine"},
   "pol"
   {"official" "Niezależne Państwo Papui-Nowej Gwinei",
    "common" "Papua-Nowa Gwinea"},
   "cym"
   {"official" "Independent State of Papua New Guinea",
    "common" "Papua New Guinea"},
   "hrv"
   {"official" "Nezavisna Država Papui Novoj Gvineji",
    "common" "Papua Nova Gvineja"},
   "spa"
   {"official" "Estado Independiente de Papúa Nueva Guinea",
    "common" "Papúa Nueva Guinea"},
   "fin"
   {"official" "Papua-Uuden-Guinean Itsenäinen valtio",
    "common" "Papua-Uusi-Guinea"},
   "per"
   {"official" "مملکت مستقل پاپوآ گینهٔ نو", "common" "پاپوآ گینه نو"},
   "nld"
   {"official" "Onafhankelijke Staat Papoea -Nieuw-Guinea",
    "common" "Papoea-Nieuw-Guinea"},
   "fra"
   {"official" "État indépendant de Papouasie-Nouvelle-Guinée",
    "common" "Papouasie-Nouvelle-Guinée"},
   "ita"
   {"official" "Stato indipendente di Papua Nuova Guinea",
    "common" "Papua Nuova Guinea"},
   "jpn" {"official" "パプアニューギニア独立国", "common" "パプアニューギニア"},
   "est"
   {"official" "Paapua Uus-Guinea Iseseisvusriik",
    "common" "Paapua Uus-Guinea"},
   "por"
   {"official" "Estado Independente da Papua Nova Guiné",
    "common" "Papua Nova Guiné"},
   "slk"
   {"official" "Nezávislý štát Papua-Nová Guinea",
    "common" "Papua-Nová Guinea"},
   "bre"
   {"official" "Stad dizalc'h Papoua-Ginea Nevez",
    "common" "Papoua-Ginea Nevez"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/pg.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/pg.png"},
  "idd" {"suffixes" ["75"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/pg.svg",
   "alt"
   "The flag of Papua New Guinea is divided diagonally, from the upper hoist-side corner to the lower fly-side corner, into a lower black and an upper red triangle. On the hoist side of the lower black triangle is a representation of the Southern Cross constellation made up of one small and four larger five-pointed white stars. A golden Raggiana bird-of-paradise is situated on the fly side of the upper red triangle.",
   "png" "https://flagcdn.com/w320/pg.png"},
  "unMember" true,
  "name"
  {"official" "Independent State of Papua New Guinea",
   "nativeName"
   {"hmo"
    {"official" "Independen Stet bilong Papua Niugini",
     "common" "Papua Niu Gini"},
    "eng"
    {"official" "Independent State of Papua New Guinea",
     "common" "Papua New Guinea"},
    "tpi"
    {"official" "Independen Stet bilong Papua Niugini",
     "common" "Papua Niugini"}},
   "common" "Papua New Guinea"},
  "postalCode" {"regex" "^(\\d{3})$", "format" "###"},
  "capitalInfo" {"latlng" [-9.45 147.18]},
  "tld" [".pg"],
  "ccn3" "598",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"hmo" "Hiri Motu", "eng" "English", "tpi" "Tok Pisin"},
  "cioc" "PNG",
  "currencies" {"PGK" {"name" "Papua New Guinean kina", "symbol" "K"}},
  "independent" true,
  "population" 8947027,
  "cca3" "PNG",
  "borders" ["IDN"],
  "capital" ["Port Moresby"],
  "car" {"signs" ["PNG"], "side" "left"},
  "timezones" ["UTC+10:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇵🇬",
  "gini" {"2009" 41.9},
  "fifa" "PNG",
  "cca2" "PG"}
 {"subregion" "Eastern Africa",
  "landlocked" false,
  "latlng" [-12.83333333 45.16666666],
  "area" 374.0,
  "altSpellings"
  ["YT" "Department of Mayotte" "Département de Mayotte"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/1e7MXmfBwQv3TQGF7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1259885"},
  "demonyms"
  {"eng" {"f" "Mahoran", "m" "Mahoran"},
   "fra" {"f" "Mahoraise", "m" "Mahorais"}},
  "translations"
  {"kor" {"official" "마요트", "common" "마요트"},
   "zho" {"official" "马约特", "common" "马约特"},
   "hun" {"official" "Mayotte", "common" "Mayotte"},
   "rus" {"official" "Департамент Майотта", "common" "Майотта"},
   "swe"
   {"official" "Departementsområdet Mayotte", "common" "Mayotte"},
   "ces" {"official" "Mayotte", "common" "Mayotte"},
   "deu"
   {"official" "Übersee-Département Mayotte", "common" "Mayotte"},
   "ara" {"official" "مايوت", "common" "مايوت"},
   "urd" {"official" "مایوٹ", "common" "مایوٹ"},
   "srp" {"official" "Мајот", "common" "Мајот"},
   "tur" {"official" "Mayotte", "common" "Mayotte"},
   "pol" {"official" "Majotta", "common" "Majotta"},
   "cym" {"official" "Department of Mayotte", "common" "Mayotte"},
   "hrv" {"official" "Odjel Mayotte", "common" "Mayotte"},
   "spa" {"official" "Departamento de Mayotte", "common" "Mayotte"},
   "fin" {"official" "Mayotte", "common" "Mayotte"},
   "per" {"official" "مجموعه شهرستانی مایوت", "common" "مایوت"},
   "nld" {"official" "Afdeling Mayotte", "common" "Mayotte"},
   "fra" {"official" "Département de Mayotte", "common" "Mayotte"},
   "ita" {"official" "Dipartimento di Mayotte", "common" "Mayotte"},
   "jpn" {"official" "マヨット科", "common" "マヨット"},
   "est" {"official" "Mayotte", "common" "Mayotte"},
   "por" {"official" "Departamento de Mayotte", "common" "Mayotte"},
   "slk" {"official" "Department Mayotte", "common" "Mayotte"},
   "bre" {"official" "Departamant Mayotte", "common" "Mayotte"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["62"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/yt.svg",
   "png" "https://flagcdn.com/w320/yt.png"},
  "unMember" false,
  "name"
  {"official" "Department of Mayotte",
   "nativeName"
   {"fra" {"official" "Département de Mayotte", "common" "Mayotte"}},
   "common" "Mayotte"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [-12.78 45.22]},
  "tld" [".yt"],
  "ccn3" "175",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"fra" "French"},
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" false,
  "population" 226915,
  "cca3" "MYT",
  "capital" ["Mamoudzou"],
  "car" {"signs" ["F"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇾🇹",
  "cca2" "YT"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [19.0 -70.66666666],
  "area" 48671.0,
  "altSpellings" ["DO"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/soxooTHxEeiAbn3UA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/307828"},
  "demonyms"
  {"eng" {"f" "Dominican", "m" "Dominican"},
   "fra" {"f" "Dominicaine", "m" "Dominicain"}},
  "translations"
  {"kor" {"official" "도미니카 공화국", "common" "도미니카 공화국"},
   "zho" {"official" "多明尼加共和国", "common" "多明尼加"},
   "hun"
   {"official" "Dominikai Köztársaság",
    "common" "Dominikai Köztársaság"},
   "rus"
   {"official" "Доминиканская Республика",
    "common" "Доминиканская Республика"},
   "swe"
   {"official" "Dominikanska republiken",
    "common" "Dominikanska republiken"},
   "ces"
   {"official" "Dominikánská republika",
    "common" "Dominikánská republika"},
   "deu"
   {"official" "Dominikanische Republik",
    "common" "Dominikanische Republik"},
   "ara"
   {"official" "جمهورية الدومينيكان", "common" "جمهورية الدومينيكان"},
   "urd" {"official" "جمہوریہ ڈومینیکن", "common" "ڈومینیکن"},
   "srp" {"official" "Доминиканска Република", "common" "Доминикана"},
   "tur"
   {"official" "Dominik Cumhuriyeti", "common" "Dominik Cumhuriyeti"},
   "pol" {"official" "Republika Dominikańska", "common" "Dominikana"},
   "cym"
   {"official" "Gweriniaeth Dominica",
    "common" "Gweriniaeth Dominica"},
   "hrv"
   {"official" "Dominikanska Republika",
    "common" "Dominikanska Republika"},
   "spa"
   {"official" "República Dominicana",
    "common" "República Dominicana"},
   "fin"
   {"official" "Dominikaaninen tasavalta",
    "common" "Dominikaaninen tasavalta"},
   "per" {"official" "جمهوری دومینیکن", "common" "جمهوری دومینیکن"},
   "nld"
   {"official" "Dominicaanse Republiek",
    "common" "Dominicaanse Republiek"},
   "fra"
   {"official" "République Dominicaine",
    "common" "République dominicaine"},
   "ita"
   {"official" "Repubblica Dominicana",
    "common" "Repubblica Dominicana"},
   "jpn" {"official" "ドミニカ共和国", "common" "ドミニカ共和国"},
   "est"
   {"official" "Dominikaani Vabariik",
    "common" "Dominikaani Vabariik"},
   "por"
   {"official" "República Dominicana",
    "common" "República Dominicana"},
   "slk"
   {"official" "Dominikánska republika",
    "common" "Dominikánska republika"},
   "bre"
   {"official" "Republik Dominikan", "common" "Republik Dominikan"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/do.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/do.png"},
  "idd" {"suffixes" ["809" "829" "849"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/do.svg",
   "alt"
   "The flag of the Dominican Republic is divided into four rectangles by a centered white cross that extends to the edges of the field and bears the national coat of arms in its center. The upper hoist-side and lower fly-side rectangles are blue and the lower hoist-side and upper fly-side rectangles are red.",
   "png" "https://flagcdn.com/w320/do.png"},
  "unMember" true,
  "name"
  {"official" "Dominican Republic",
   "nativeName"
   {"spa"
    {"official" "República Dominicana",
     "common" "República Dominicana"}},
   "common" "Dominican Republic"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [18.47 -69.9]},
  "tld" [".do"],
  "ccn3" "214",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"spa" "Spanish"},
  "cioc" "DOM",
  "currencies" {"DOP" {"name" "Dominican peso", "symbol" "$"}},
  "independent" true,
  "population" 10847904,
  "cca3" "DOM",
  "borders" ["HTI"],
  "capital" ["Santo Domingo"],
  "car" {"signs" ["DOM"], "side" "right"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇩🇴",
  "gini" {"2019" 41.9},
  "fifa" "DOM",
  "cca2" "DO"}
 {"subregion" "Australia and New Zealand",
  "landlocked" false,
  "latlng" [-29.03333333 167.95],
  "area" 36.0,
  "altSpellings"
  ["NF" "Territory of Norfolk Island" "Teratri of Norf'k Ailen"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/pbvtm6XYd1iZbjky5",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2574988"},
  "demonyms"
  {"eng" {"f" "Norfolk Islander", "m" "Norfolk Islander"},
   "fra" {"f" "Norfolkaise", "m" "Norfolkais"}},
  "translations"
  {"kor" {"official" "노퍽 섬", "common" "노퍽 섬"},
   "zho" {"official" "诺福克岛", "common" "诺福克岛"},
   "hun" {"official" "Norfolk-sziget", "common" "Norfolk-sziget"},
   "rus" {"official" "Территория острова Норфолк", "common" "Норфолк"},
   "swe" {"official" "Norfolkön", "common" "Norfolkön"},
   "ces" {"official" "Teritorium ostrova Norfolk", "common" "Norfolk"},
   "deu"
   {"official" "Gebiet der Norfolkinsel", "common" "Norfolkinsel"},
   "ara" {"official" "إقليم جزيرة نورفولك", "common" "جزيرة نورفولك"},
   "urd" {"official" "جزیرہ نورفک خطہ", "common" "جزیرہ نورفک"},
   "srp" {"official" "Територија Острва Норфок", "common" "Норфок"},
   "tur" {"official" "Norfolk Adası", "common" "Norfolk Adası"},
   "pol"
   {"official" "Terytorium Wyspy Norfolk", "common" "Wyspa Norfolk"},
   "cym"
   {"official" "Territory of Norfolk Island",
    "common" "Norfolk Island"},
   "hrv"
   {"official" "Teritorij Norfolk Island", "common" "Otok Norfolk"},
   "spa"
   {"official" "Territorio de la Isla Norfolk",
    "common" "Isla de Norfolk"},
   "fin"
   {"official" "Norfolkinsaaren territorio",
    "common" "Norfolkinsaari"},
   "per" {"official" "قلمرو جزایر نورفک", "common" "جزیره نورفک"},
   "nld"
   {"official" "Grondgebied van Norfolk Island",
    "common" "Norfolkeiland"},
   "fra"
   {"official" "Territoire de l'île Norfolk", "common" "Île Norfolk"},
   "ita"
   {"official" "Territorio di Norfolk Island",
    "common" "Isola Norfolk"},
   "jpn" {"official" "ノーフォーク島の領土", "common" "ノーフォーク島"},
   "est" {"official" "Norfolki saare ala", "common" "Norfolk"},
   "por"
   {"official" "Território da Ilha Norfolk", "common" "Ilha Norfolk"},
   "slk" {"official" "Teritórium ostrova Norfolk", "common" "Norfolk"},
   "bre" {"official" "Tiriad Enez Norfolk", "common" "Enez Norfolk"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["72"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/nf.svg",
   "png" "https://flagcdn.com/w320/nf.png"},
  "unMember" false,
  "name"
  {"official" "Territory of Norfolk Island",
   "nativeName"
   {"pih"
    {"official" "Teratri of Norf'k Ailen", "common" "Norf'k Ailen"},
    "eng"
    {"official" "Territory of Norfolk Island",
     "common" "Norfolk Island"}},
   "common" "Norfolk Island"},
  "capitalInfo" {"latlng" [-29.05 167.97]},
  "tld" [".nf"],
  "ccn3" "574",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"pih" "Norfuk", "eng" "English"},
  "currencies" {"AUD" {"name" "Australian dollar", "symbol" "$"}},
  "independent" false,
  "population" 2302,
  "cca3" "NFK",
  "capital" ["Kingston"],
  "car" {"signs" ["AUS"], "side" "left"},
  "timezones" ["UTC+11:30"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇳🇫",
  "cca2" "NF"}
 {"landlocked" false,
  "latlng" [54.4208 3.3464],
  "area" 49.0,
  "altSpellings" ["BV" "Bouvetøya" "Bouvet-øya"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/7WRQAEKZb4uK36yi9",
   "openStreetMaps" "https://www.openstreetmap.org/way/174996681"},
  "translations"
  {"kor" {"official" "부베 섬", "common" "부베 섬"},
   "zho" {"official" "布维岛", "common" "布维岛"},
   "hun" {"official" "Bouvet-sziget", "common" "Bouvet-sziget"},
   "rus" {"official" "Остров Буве", "common" "Остров Буве"},
   "swe" {"official" "Bouvetön", "common" "Bouvetön"},
   "ces" {"official" "Bouvetův ostrov", "common" "Bouvetův ostrov"},
   "deu" {"official" "Bouvetinsel", "common" "Bouvetinsel"},
   "ara" {"official" "جزر بوفيه", "common" "جزر بوفيه"},
   "urd" {"official" "جزیرہ بووہ", "common" "جزیرہ بووہ"},
   "srp" {"official" "Буве", "common" "Буве"},
   "tur" {"official" "Bouvet Adası", "common" "Bouvet Adası"},
   "pol" {"official" "Wyspa Bouveta", "common" "Wyspa Bouveta"},
   "cym" {"official" "Bouvet Island", "common" "Bouvet Island"},
   "hrv" {"official" "Bouvet Island", "common" "Otok Bouvet"},
   "spa" {"official" "Isla Bouvet", "common" "Isla Bouvet"},
   "fin" {"official" "Bouvet'nsaari", "common" "Bouvet'nsaari"},
   "per" {"official" "جزیرهٔ بووه", "common" "جزیرهٔ بووه"},
   "nld" {"official" "Bouvet Island", "common" "Bouveteiland"},
   "fra" {"official" "Île Bouvet", "common" "Île Bouvet"},
   "ita" {"official" "Isola Bouvet", "common" "Isola Bouvet"},
   "jpn" {"official" "ブーヴェ島", "common" "ブーベ島"},
   "est" {"official" "Bouvet’ saar", "common" "Bouvet’ saar"},
   "por" {"official" "Ilha Bouvet", "common" "Ilha Bouvet"},
   "slk" {"official" "Bouvetov ostrov", "common" "Bouvetov ostrov"},
   "bre" {"official" "Enez Bouvet", "common" "Enez Bouvet"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["7"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/bv.svg",
   "png" "https://flagcdn.com/w320/bv.png"},
  "unMember" false,
  "name"
  {"official" "Bouvet Island",
   "nativeName" {"nor" {"official" "Bouvetøya", "common" "Bouvetøya"}},
   "common" "Bouvet Island"},
  "capitalInfo" {},
  "tld" [".bv"],
  "ccn3" "074",
  "status" "officially-assigned",
  "region" "Antarctic",
  "languages" {"nor" "Norwegian"},
  "independent" false,
  "population" 0,
  "cca3" "BVT",
  "car" {"signs" [""], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Antarctica"],
  "flag" "🇧🇻",
  "cca2" "BV"}
 {"subregion" "Western Asia",
  "landlocked" false,
  "latlng" [25.5 51.25],
  "area" 11586.0,
  "altSpellings" ["QA" "State of Qatar" "Dawlat Qaṭar"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/ZV76Y49z7LLUZ2KQ6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/305095"},
  "demonyms"
  {"eng" {"f" "Qatari", "m" "Qatari"},
   "fra" {"f" "Qatarienne", "m" "Qatarien"}},
  "translations"
  {"kor" {"official" "카타르국", "common" "카타르"},
   "zho" {"official" "卡塔尔国", "common" "卡塔尔"},
   "hun" {"official" "Katari Állam", "common" "Katar"},
   "rus" {"official" "Государство Катар", "common" "Катар"},
   "swe" {"official" "Staten Qatar", "common" "Qatar"},
   "ces" {"official" "Stát Katar", "common" "Katar"},
   "deu" {"official" "Staat Katar", "common" "Katar"},
   "ara" {"official" "دولة قطر", "common" "قطر"},
   "urd" {"official" "ریاستِ قطر", "common" "قطر"},
   "srp" {"official" "Држава Катар", "common" "Катар"},
   "tur" {"official" "Katar Devleti", "common" "Katar"},
   "pol" {"official" "Państwo Katar", "common" "Katar"},
   "cym" {"official" "State of Qatar", "common" "Qatar"},
   "hrv" {"official" "Država Katar", "common" "Katar"},
   "spa" {"official" "Estado de Qatar", "common" "Catar"},
   "fin" {"official" "Qatarin valtio", "common" "Qatar"},
   "per" {"official" "دولت قطر", "common" "قطر"},
   "nld" {"official" "Staat Qatar", "common" "Qatar"},
   "fra" {"official" "État du Qatar", "common" "Qatar"},
   "ita" {"official" "Stato del Qatar", "common" "Qatar"},
   "jpn" {"official" "カタール国", "common" "カタール"},
   "est" {"official" "Katari Riik", "common" "Katar"},
   "por" {"official" "Estado do Qatar", "common" "Catar"},
   "slk" {"official" "Katarský štát", "common" "Katar"},
   "bre" {"official" "Stad Katar", "common" "Katar"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/qa.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/qa.png"},
  "idd" {"suffixes" ["74"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/qa.svg",
   "alt"
   "The flag of Qatar has a maroon field, on the hoist side of which is a white vertical band that spans about one-third the width of the field and is separated from the rest of the field by nine adjoining fly-side pointing white isosceles triangles that serve as a serrated line.",
   "png" "https://flagcdn.com/w320/qa.png"},
  "unMember" true,
  "name"
  {"official" "State of Qatar",
   "nativeName" {"ara" {"official" "دولة قطر", "common" "قطر"}},
   "common" "Qatar"},
  "capitalInfo" {"latlng" [25.28 51.53]},
  "tld" [".qa" "قطر."],
  "ccn3" "634",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"ara" "Arabic"},
  "cioc" "QAT",
  "currencies" {"QAR" {"name" "Qatari riyal", "symbol" "ر.ق"}},
  "independent" true,
  "population" 2881060,
  "cca3" "QAT",
  "borders" ["SAU"],
  "capital" ["Doha"],
  "car" {"signs" ["Q"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "sunday",
  "continents" ["Asia"],
  "flag" "🇶🇦",
  "fifa" "QAT",
  "cca2" "QA"}
 {"subregion" "Eastern Africa",
  "landlocked" false,
  "latlng" [-20.0 47.0],
  "area" 587041.0,
  "altSpellings"
  ["MG"
   "Republic of Madagascar"
   "Repoblikan'i Madagasikara"
   "République de Madagascar"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/AHQh2ABBaFW6Ngj26",
   "openStreetMaps" "https://www.openstreetmap.org/relation/447325"},
  "demonyms"
  {"eng" {"f" "Malagasy", "m" "Malagasy"},
   "fra" {"f" "Malgache", "m" "Malgache"}},
  "translations"
  {"kor" {"official" "마다가스카르 공화국", "common" "마다가스카르"},
   "zho" {"official" "马达加斯加共和国", "common" "马达加斯加"},
   "hun"
   {"official" "Madagaszkári Köztársaság", "common" "Madagaszkár"},
   "rus" {"official" "Республика Мадагаскар", "common" "Мадагаскар"},
   "swe" {"official" "Republiken Madagaskar", "common" "Madagaskar"},
   "ces" {"official" "Madagaskarská republika", "common" "Madagaskar"},
   "deu" {"official" "Republik Madagaskar", "common" "Madagaskar"},
   "ara" {"official" "جمهورية مدغشقر", "common" "مدغشقر"},
   "urd" {"official" "جمہوریہ مڈغاسکر", "common" "مڈغاسکر"},
   "srp" {"official" "Република Мадагаскар", "common" "Мадагаскар"},
   "tur" {"official" "Madagaskar Cumhuriyeti", "common" "Madagaskar"},
   "pol" {"official" "Republika Madagaskaru", "common" "Madagaskar"},
   "cym" {"official" "Republic of Madagascar", "common" "Madagascar"},
   "hrv" {"official" "Republika Madagaskar", "common" "Madagaskar"},
   "spa" {"official" "República de Madagascar", "common" "Madagascar"},
   "fin" {"official" "Madagaskarin tasavalta", "common" "Madagaskar"},
   "per" {"official" "جمهوری ماداگاسکار", "common" "ماداگاسکار"},
   "nld" {"official" "Republiek Madagaskar", "common" "Madagaskar"},
   "fra"
   {"official" "République de Madagascar", "common" "Madagascar"},
   "ita"
   {"official" "Repubblica del Madagascar", "common" "Madagascar"},
   "jpn" {"official" "マダガスカル共和国", "common" "マダガスカル"},
   "est" {"official" "Madagaskari Vabariik", "common" "Madagaskar"},
   "por" {"official" "República de Madagáscar", "common" "Madagáscar"},
   "slk" {"official" "Madagaskarská republika", "common" "Madagaskar"},
   "bre" {"official" "Republik Madagaskar", "common" "Madagaskar"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/mg.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/mg.png"},
  "idd" {"suffixes" ["61"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/mg.svg",
   "alt"
   "The flag of Madagascar features a white vertical band on the hoist side that takes up about one-third the width of the field, and two equal horizontal bands of red and green adjoining the vertical band.",
   "png" "https://flagcdn.com/w320/mg.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Madagascar",
   "nativeName"
   {"fra"
    {"official" "République de Madagascar", "common" "Madagascar"},
    "mlg"
    {"official" "Repoblikan'i Madagasikara", "common" "Madagasikara"}},
   "common" "Madagascar"},
  "postalCode" {"regex" "^(\\d{3})$", "format" "###"},
  "capitalInfo" {"latlng" [-18.92 47.52]},
  "tld" [".mg"],
  "ccn3" "450",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"fra" "French", "mlg" "Malagasy"},
  "cioc" "MAD",
  "currencies" {"MGA" {"name" "Malagasy ariary", "symbol" "Ar"}},
  "independent" true,
  "population" 27691019,
  "cca3" "MDG",
  "capital" ["Antananarivo"],
  "car" {"signs" ["RM"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇲🇬",
  "gini" {"2012" 42.6},
  "fifa" "MAD",
  "cca2" "MG"}
 {"subregion" "Southern Asia",
  "landlocked" false,
  "latlng" [20.0 77.0],
  "area" 3287590.0,
  "altSpellings"
  ["IN" "Bhārat" "Republic of India" "Bharat Ganrajya" "இந்தியா"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/WSk3fLwG4vtPQetp7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/304716"},
  "demonyms"
  {"eng" {"f" "Indian", "m" "Indian"},
   "fra" {"f" "Indienne", "m" "Indien"}},
  "translations"
  {"kor" {"official" "인도 공화국", "common" "인도"},
   "zho" {"official" "印度共和国", "common" "印度"},
   "hun" {"official" "Indiai Köztársaság", "common" "India"},
   "rus" {"official" "Республика Индия", "common" "Индия"},
   "swe" {"official" "Republiken Indien", "common" "Indien"},
   "ces" {"official" "Indická republika", "common" "Indie"},
   "deu" {"official" "Republik Indien", "common" "Indien"},
   "ara" {"official" "جمهورية الهند", "common" "الهند"},
   "urd" {"official" "جمہوریہ بھارت", "common" "بھارت"},
   "srp" {"official" "Република Индија", "common" "Индија"},
   "tur" {"official" "Hindistan Cumhuriyeti", "common" "Hindistan"},
   "pol" {"official" "Republika Indii", "common" "Indie"},
   "cym" {"official" "Republic of India", "common" "India"},
   "hrv" {"official" "Republika Indija", "common" "Indija"},
   "spa" {"official" "República de la India", "common" "India"},
   "fin" {"official" "Intian tasavalta", "common" "Intia"},
   "per" {"official" "جمهوری هندوستان", "common" "هند"},
   "nld" {"official" "Republiek India", "common" "India"},
   "fra" {"official" "République de l'Inde", "common" "Inde"},
   "ita" {"official" "Repubblica dell'India", "common" "India"},
   "jpn" {"official" "インド共和国", "common" "インド"},
   "est" {"official" "India Vabariik", "common" "India"},
   "por" {"official" "República da Índia", "common" "Índia"},
   "slk" {"official" "Indická republika", "common" "India"},
   "bre" {"official" "Republik India", "common" "India"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/in.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/in.png"},
  "idd" {"suffixes" ["1"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/in.svg",
   "alt"
   "The flag of India is composed of three equal horizontal bands of saffron, white and green. A navy blue wheel with twenty-four spokes — the Ashoka Chakra — is centered in the white band.",
   "png" "https://flagcdn.com/w320/in.png"},
  "unMember" true,
  "name"
  {"official" "Republic of India",
   "nativeName"
   {"hin" {"official" "भारत गणराज्य", "common" "भारत"},
    "eng" {"official" "Republic of India", "common" "India"},
    "tam" {"official" "இந்தியக் குடியரசு", "common" "இந்தியா"}},
   "common" "India"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "######"},
  "capitalInfo" {"latlng" [28.6 77.2]},
  "tld" [".in"],
  "ccn3" "356",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"hin" "Hindi", "eng" "English", "tam" "Tamil"},
  "cioc" "IND",
  "currencies" {"INR" {"name" "Indian rupee", "symbol" "₹"}},
  "independent" true,
  "population" 1380004385,
  "cca3" "IND",
  "borders" ["BGD" "BTN" "MMR" "CHN" "NPL" "PAK"],
  "capital" ["New Delhi"],
  "car" {"signs" ["IND"], "side" "left"},
  "timezones" ["UTC+05:30"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇮🇳",
  "gini" {"2011" 35.7},
  "fifa" "IND",
  "cca2" "IN"}
 {"subregion" "Western Asia",
  "landlocked" false,
  "latlng" [35.0 38.0],
  "area" 185180.0,
  "altSpellings"
  ["SY"
   "Syrian Arab Republic"
   "Al-Jumhūrīyah Al-ʻArabīyah As-Sūrīyah"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/Xe3VnFbwdb4nv2SM9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/184840"},
  "demonyms"
  {"eng" {"f" "Syrian", "m" "Syrian"},
   "fra" {"f" "Syrienne", "m" "Syrien"}},
  "translations"
  {"kor" {"official" "시리아 아랍 공화국", "common" "시리아"},
   "zho" {"official" "叙利亚阿拉伯共和国", "common" "叙利亚"},
   "hun" {"official" "Szíriai Arab Köztársaság", "common" "Szíria"},
   "rus"
   {"official" "Сирийская Арабская Республика", "common" "Сирия"},
   "swe" {"official" "Syriska arabiska republiken", "common" "Syrien"},
   "ces" {"official" "Syrská arabská republika", "common" "Sýrie"},
   "deu" {"official" "Arabische Republik Syrien", "common" "Syrien"},
   "ara" {"official" "الجمهورية العربية السورية", "common" "سوريا"},
   "urd" {"official" "عرب جمہوریہ سوریہ", "common" "سوریہ"},
   "srp" {"official" "Сиријска Арапска Република", "common" "Сирија"},
   "tur" {"official" "Suriye Arap Cumhuriyeti", "common" "Suriye"},
   "pol" {"official" "Syryjska Republika Arabska", "common" "Syria"},
   "cym" {"official" "Syrian Arab Republic", "common" "Syria"},
   "hrv" {"official" "Sirijska Arapska Republika", "common" "Sirija"},
   "spa" {"official" "República Árabe Siria", "common" "Siria"},
   "fin" {"official" "Syyrian arabitasavalta", "common" "Syyria"},
   "per" {"official" "جمهوری عربی سوریه", "common" "سوریه"},
   "nld" {"official" "Syrische Arabische Republiek", "common" "Syrië"},
   "fra" {"official" "République arabe syrienne", "common" "Syrie"},
   "ita" {"official" "Repubblica araba siriana", "common" "Siria"},
   "jpn" {"official" "シリアアラブ共和国", "common" "シリア・アラブ共和国"},
   "est" {"official" "Süüria Araabia Vabariik", "common" "Süüria"},
   "por" {"official" "República Árabe Síria", "common" "Síria"},
   "slk" {"official" "Sýrska arabská republika", "common" "Sýria"},
   "bre" {"official" "Republik Arab Siriat", "common" "Siria"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/sy.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/sy.png"},
  "idd" {"suffixes" ["63"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/sy.svg",
   "alt"
   "The flag of Syria is composed of three equal horizontal bands of red, white and black. At the center of the white band are two small five-pointed green stars arranged in a horizontal line.",
   "png" "https://flagcdn.com/w320/sy.png"},
  "unMember" true,
  "name"
  {"official" "Syrian Arab Republic",
   "nativeName"
   {"ara" {"official" "الجمهورية العربية السورية", "common" "سوريا"}},
   "common" "Syria"},
  "capitalInfo" {"latlng" [33.5 36.3]},
  "tld" [".sy" "سوريا."],
  "ccn3" "760",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"ara" "Arabic"},
  "cioc" "SYR",
  "currencies" {"SYP" {"name" "Syrian pound", "symbol" "£"}},
  "independent" true,
  "population" 17500657,
  "cca3" "SYR",
  "borders" ["IRQ" "ISR" "JOR" "LBN" "TUR"],
  "capital" ["Damascus"],
  "car" {"signs" ["SYR"], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇸🇾",
  "gini" {"2003" 37.5},
  "fifa" "SYR",
  "cca2" "SY"}
 {"subregion" "Southeast Europe",
  "landlocked" false,
  "latlng" [42.5 19.3],
  "area" 13812.0,
  "altSpellings" ["ME" "Crna Gora"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/4THX1fM7WqANuPbB8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/53296"},
  "demonyms"
  {"eng" {"f" "Montenegrin", "m" "Montenegrin"},
   "fra" {"f" "Monténégrine", "m" "Monténégrin"}},
  "translations"
  {"kor" {"official" "몬테네그로", "common" "몬테네그로"},
   "zho" {"official" "黑山", "common" "黑山"},
   "hun" {"official" "Montenegró", "common" "Montenegró"},
   "rus" {"official" "Черногория", "common" "Черногория"},
   "swe" {"official" "Montenegro", "common" "Montenegro"},
   "ces" {"official" "Černá Hora", "common" "Černá Hora"},
   "deu" {"official" "Montenegro", "common" "Montenegro"},
   "ara" {"official" "الجبل الاسود", "common" "الجبل الاسود"},
   "urd" {"official" "مونٹینیگرو", "common" "مونٹینیگرو"},
   "srp" {"official" "Црна Гора", "common" "Црна Гора"},
   "tur" {"official" "Karadağ", "common" "Karadağ"},
   "pol" {"official" "Czarnogóra", "common" "Czarnogóra"},
   "cym" {"official" "Montenegro", "common" "Montenegro"},
   "hrv" {"official" "Crna Gora", "common" "Crna Gora"},
   "spa" {"official" "Montenegro", "common" "Montenegro"},
   "fin" {"official" "Montenegro", "common" "Montenegro"},
   "per" {"official" "مونته‌نگرو", "common" "مونته‌نگرو"},
   "nld" {"official" "Montenegro", "common" "Montenegro"},
   "fra" {"official" "Monténégro", "common" "Monténégro"},
   "ita" {"official" "Montenegro", "common" "Montenegro"},
   "jpn" {"official" "モンテネグロ", "common" "モンテネグロ"},
   "est" {"official" "Montenegro", "common" "Montenegro"},
   "por" {"official" "Montenegro", "common" "Montenegro"},
   "slk" {"official" "Čierna Hora", "common" "Čierna Hora"},
   "bre" {"official" "Republik Montenegro", "common" "Montenegro"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/me.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/me.png"},
  "idd" {"suffixes" ["82"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/me.svg",
   "alt"
   "The flag of Montenegro features a large red central rectangular area surrounded by a golden-yellow border. The coat of arms of Montenegro is centered in the red rectangle.",
   "png" "https://flagcdn.com/w320/me.png"},
  "unMember" true,
  "name"
  {"official" "Montenegro",
   "nativeName" {"cnr" {"official" "Црна Гора", "common" "Црна Гора"}},
   "common" "Montenegro"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [42.43 19.27]},
  "tld" [".me"],
  "ccn3" "499",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"cnr" "Montenegrin"},
  "cioc" "MNE",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 621718,
  "cca3" "MNE",
  "borders" ["ALB" "BIH" "HRV" "UNK" "SRB"],
  "capital" ["Podgorica"],
  "car" {"signs" ["SCG"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇲🇪",
  "gini" {"2016" 38.5},
  "fifa" "MNE",
  "cca2" "ME"}
 {"subregion" "Southern Africa",
  "landlocked" true,
  "latlng" [-26.5 31.5],
  "area" 17364.0,
  "altSpellings"
  ["SZ"
   "Swaziland"
   "weSwatini"
   "Swatini"
   "Ngwane"
   "Kingdom of Eswatini"
   "Umbuso weSwatini"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/cUY79eqQihFSE8hV6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/88210"},
  "demonyms"
  {"eng" {"f" "Swazi", "m" "Swazi"},
   "fra" {"f" "Swazie", "m" "Swazie"}},
  "translations"
  {"kor" {"official" "에스와티니 왕국", "common" "에스와티니"},
   "zho" {"official" "斯威士兰王国", "common" "斯威士兰"},
   "hun" {"official" "Szváziföldi Királyság", "common" "Szváziföld"},
   "rus" {"official" "Королевство Свазиленд", "common" "Свазиленд"},
   "swe" {"official" "Konungariket Eswatini", "common" "Swaziland"},
   "ces" {"official" "Svazijské království", "common" "Svazijsko"},
   "deu" {"official" "Königreich Eswatini", "common" "Swasiland"},
   "ara" {"official" "مملكة إسواتيني", "common" "إسواتيني"},
   "urd" {"official" "مملکتِ سوازی لینڈ", "common" "سوازی لینڈ"},
   "srp" {"official" "Краљевина Есватини", "common" "Есватини"},
   "tur" {"official" "Esvatini Krallığı", "common" "Esvatini"},
   "pol" {"official" "Królestwo Suazi", "common" "Suazi"},
   "cym" {"official" "Kingdom of Eswatini", "common" "Eswatini"},
   "hrv" {"official" "Kraljevina eSwatini", "common" "Svazi"},
   "spa" {"official" "Reino de eSwatini", "common" "Suazilandia"},
   "fin" {"official" "Swazimaan kuningaskunta", "common" "Swazimaa"},
   "per" {"official" "پادشاهی سوازیلند", "common" "اسواتینی"},
   "nld" {"official" "Koninkrijk eSwatini", "common" "Swaziland"},
   "fra" {"official" "Royaume d’Eswatini", "common" "Swaziland"},
   "ita" {"official" "Regno di eSwatini", "common" "Swaziland"},
   "jpn" {"official" "スワジランド王国", "common" "スワジランド"},
   "est" {"official" "eSwatini Kuningriik", "common" "Svaasimaa"},
   "por" {"official" "Reino de eSwatini", "common" "Suazilândia"},
   "slk" {"official" "Svazijské kráľovstvo", "common" "Svazijsko"},
   "bre" {"official" "Rouantelezh Eswatini", "common" "Eswatini"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["68"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/sz.svg",
   "alt"
   "The flag of Eswatini is composed of three horizontal bands — a large central yellow-edged red band, and a light blue band above and beneath the red band. The red band is three times the height of the blue bands and bears a centered emblem made up of a large black and white Nguni shield covering two spears and a staff decorated with feather tassels, all placed horizontally.",
   "png" "https://flagcdn.com/w320/sz.png"},
  "unMember" true,
  "name"
  {"official" "Kingdom of Eswatini",
   "nativeName"
   {"eng" {"official" "Kingdom of Eswatini", "common" "Eswatini"},
    "ssw" {"official" "Umbuso weSwatini", "common" "eSwatini"}},
   "common" "Eswatini"},
  "postalCode" {"regex" "^([A-Z]\\d{3})$", "format" "@###"},
  "capitalInfo" {"latlng" [-26.32 31.13]},
  "tld" [".sz"],
  "ccn3" "748",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"eng" "English", "ssw" "Swazi"},
  "cioc" "SWZ",
  "currencies"
  {"ZAR" {"name" "South African rand", "symbol" "R"},
   "SZL" {"name" "Swazi lilangeni", "symbol" "L"}},
  "independent" true,
  "population" 1160164,
  "cca3" "SWZ",
  "borders" ["MOZ" "ZAF"],
  "capital" ["Mbabane"],
  "car" {"signs" ["SD"], "side" "left"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇸🇿",
  "gini" {"2016" 54.6},
  "fifa" "SWZ",
  "cca2" "SZ"}
 {"subregion" "South America",
  "landlocked" true,
  "latlng" [-23.0 -58.0],
  "area" 406752.0,
  "altSpellings"
  ["PY"
   "Republic of Paraguay"
   "República del Paraguay"
   "Tetã Paraguái"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/JtnqG73WJn1Gx6mz6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/287077"},
  "demonyms"
  {"eng" {"f" "Paraguayan", "m" "Paraguayan"},
   "fra" {"f" "Paraguayenne", "m" "Paraguayen"}},
  "translations"
  {"kor" {"official" "파라과이 공화국", "common" "파라과이"},
   "zho" {"official" "巴拉圭共和国", "common" "巴拉圭"},
   "hun" {"official" "Paraguayi Köztársaság", "common" "Paraguay"},
   "rus" {"official" "Республика Парагвай", "common" "Парагвай"},
   "swe" {"official" "Republiken Paraguay", "common" "Paraguay"},
   "ces" {"official" "Paraguayská republika", "common" "Paraguay"},
   "deu" {"official" "Republik Paraguay", "common" "Paraguay"},
   "ara" {"official" "جمهورية باراغواي", "common" "باراغواي"},
   "urd" {"official" "جمہوریہ پیراگوئے", "common" "پیراگوئے"},
   "srp" {"official" "Република Парагвај", "common" "Парагвај"},
   "tur" {"official" "Paraguay Cumhuriyeti", "common" "Paraguay"},
   "pol" {"official" "Republika Paragwaju", "common" "Paragwaj"},
   "cym" {"official" "Republic of Paraguay", "common" "Paraguay"},
   "hrv" {"official" "Republika Paragvaj", "common" "Paragvaj"},
   "spa" {"official" "República de Paraguay", "common" "Paraguay"},
   "fin" {"official" "Paraguayn tasavalta", "common" "Paraguay"},
   "per" {"official" "جمهوری پاراگوئه", "common" "پاراگوئه"},
   "nld" {"official" "Republiek Paraguay", "common" "Paraguay"},
   "fra" {"official" "République du Paraguay", "common" "Paraguay"},
   "ita" {"official" "Repubblica del Paraguay", "common" "Paraguay"},
   "jpn" {"official" "パラグアイ共和国", "common" "パラグアイ"},
   "est" {"official" "Paraguay Vabariik", "common" "Paraguay"},
   "por" {"official" "República do Paraguai", "common" "Paraguai"},
   "slk" {"official" "Paraguajská republika", "common" "Paraguaj"},
   "bre" {"official" "Republik Paraguay", "common" "Paraguay"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/py.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/py.png"},
  "idd" {"suffixes" ["95"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/py.svg",
   "alt"
   "The flag of Paraguay features three equal horizontal bands of red, white and blue, with an emblem centered in the white band. On the obverse side of the flag depicted, this emblem is the national coat of arms.",
   "png" "https://flagcdn.com/w320/py.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Paraguay",
   "nativeName"
   {"spa" {"official" "República de Paraguay", "common" "Paraguay"},
    "grn" {"official" "Tetã Paraguái", "common" "Paraguái"}},
   "common" "Paraguay"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [-25.28 -57.57]},
  "tld" [".py"],
  "ccn3" "600",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"spa" "Spanish", "grn" "Guaraní"},
  "cioc" "PAR",
  "currencies" {"PYG" {"name" "Paraguayan guaraní", "symbol" "₲"}},
  "independent" true,
  "population" 7132530,
  "cca3" "PRY",
  "borders" ["ARG" "BOL" "BRA"],
  "capital" ["Asunción"],
  "car" {"signs" ["PY"], "side" "right"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["South America"],
  "flag" "🇵🇾",
  "gini" {"2019" 45.7},
  "fifa" "PAR",
  "cca2" "PY"}
 {"subregion" "Central America",
  "landlocked" false,
  "latlng" [13.83333333 -88.91666666],
  "area" 21041.0,
  "altSpellings"
  ["SV" "Republic of El Salvador" "República de El Salvador"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/cZnCEi5sEMQtKKcB7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1520612"},
  "demonyms"
  {"eng" {"f" "Salvadoran", "m" "Salvadoran"},
   "fra" {"f" "Salvadorienne", "m" "Salvadorien"}},
  "translations"
  {"kor" {"official" "엘살바도르 공화국", "common" "엘살바도르"},
   "zho" {"official" "萨尔瓦多共和国", "common" "萨尔瓦多"},
   "hun" {"official" "Salvadori Köztársaság", "common" "Salvador"},
   "rus" {"official" "Республика Эль-Сальвадор", "common" "Сальвадор"},
   "swe" {"official" "Republiken El Salvador", "common" "El Salvador"},
   "ces" {"official" "Salvadorská republika", "common" "Salvador"},
   "deu" {"official" "Republik El Salvador", "common" "El Salvador"},
   "ara" {"official" "جمهورية السلفادور", "common" "السلفادور"},
   "urd" {"official" "جمہوریہ ایل سیلواڈور", "common" "ایل سیلواڈور"},
   "srp" {"official" "Република Ел Салвадор", "common" "Салвадор"},
   "tur"
   {"official" "El Salvador Cumhuriyeti", "common" "El Salvador"},
   "pol" {"official" "Republika Salwadoru", "common" "Salwador"},
   "cym"
   {"official" "Gweriniaeth El Salfador", "common" "El Salfador"},
   "hrv" {"official" "Republika El Salvador", "common" "Salvador"},
   "spa"
   {"official" "República de El Salvador", "common" "El Salvador"},
   "fin"
   {"official" "El Salvadorin tasavalta", "common" "El Salvador"},
   "per" {"official" "جمهوری السالوادور", "common" "السالوادور"},
   "nld" {"official" "Republiek El Salvador", "common" "El Salvador"},
   "fra" {"official" "République du Salvador", "common" "Salvador"},
   "ita"
   {"official" "Repubblica di El Salvador", "common" "El Salvador"},
   "jpn" {"official" "エルサルバドル共和国", "common" "エルサルバドル"},
   "est" {"official" "El Salvadori Vabariik", "common" "El Salvador"},
   "por"
   {"official" "República de El Salvador", "common" "El Salvador"},
   "slk" {"official" "Salvádorská republika", "common" "Salvádor"},
   "bre" {"official" "Republik El Salvador", "common" "El Salvador"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/sv.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/sv.png"},
  "idd" {"suffixes" ["03"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/sv.svg",
   "alt"
   "The flag of El Salvador is composed of three equal horizontal bands of cobalt blue, white and cobalt blue, with the national coat of arms centered in the white band.",
   "png" "https://flagcdn.com/w320/sv.png"},
  "unMember" true,
  "name"
  {"official" "Republic of El Salvador",
   "nativeName"
   {"spa"
    {"official" "República de El Salvador", "common" "El Salvador"}},
   "common" "El Salvador"},
  "postalCode" {"regex" "^(?:CP)*(\\d{4})$", "format" "CP ####"},
  "capitalInfo" {"latlng" [13.7 -89.2]},
  "tld" [".sv"],
  "ccn3" "222",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"spa" "Spanish"},
  "cioc" "ESA",
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" true,
  "population" 6486201,
  "cca3" "SLV",
  "borders" ["GTM" "HND"],
  "capital" ["San Salvador"],
  "car" {"signs" ["ES"], "side" "right"},
  "timezones" ["UTC-06:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇸🇻",
  "gini" {"2019" 38.8},
  "fifa" "SLV",
  "cca2" "SV"}
 {"subregion" "Eastern Europe",
  "landlocked" false,
  "latlng" [49.0 32.0],
  "area" 603500.0,
  "altSpellings" ["UA" "Ukrayina"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/DvgJMiPJ7aozKFZv7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/60199"},
  "demonyms"
  {"eng" {"f" "Ukrainian", "m" "Ukrainian"},
   "fra" {"f" "Ukrainienne", "m" "Ukrainien"}},
  "translations"
  {"kor" {"official" "우크라이나", "common" "우크라이나"},
   "zho" {"official" "乌克兰", "common" "乌克兰"},
   "hun" {"official" "Ukrajna", "common" "Ukrajna"},
   "rus" {"official" "Украина", "common" "Украина"},
   "swe" {"official" "Ukraina", "common" "Ukraina"},
   "ces" {"official" "Ukrajina", "common" "Ukrajina"},
   "deu" {"official" "Ukraine", "common" "Ukraine"},
   "ara" {"official" "أوكرانيا", "common" "أوكرانيا"},
   "urd" {"official" "یوکرین", "common" "یوکرین"},
   "srp" {"official" "Украјина", "common" "Украјина"},
   "tur" {"official" "Ukrayna", "common" "Ukrayna"},
   "pol" {"official" "Ukraina", "common" "Ukraina"},
   "cym" {"official" "Ukraine", "common" "Ukraine"},
   "hrv" {"official" "Ukrajina", "common" "Ukrajina"},
   "spa" {"official" "Ucrania", "common" "Ucrania"},
   "fin" {"official" "Ukraina", "common" "Ukraina"},
   "per" {"official" "اوکراین", "common" "اوکراین"},
   "nld" {"official" "Oekraïne", "common" "Oekraïne"},
   "fra" {"official" "Ukraine", "common" "Ukraine"},
   "ita" {"official" "Ucraina", "common" "Ucraina"},
   "jpn" {"official" "ウクライナ", "common" "ウクライナ"},
   "est" {"official" "Ukraina", "common" "Ukraina"},
   "por" {"official" "Ucrânia", "common" "Ucrânia"},
   "slk" {"official" "Ukrajina", "common" "Ukrajina"},
   "bre" {"official" "Ukraina", "common" "Ukraina"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ua.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ua.png"},
  "idd" {"suffixes" ["80"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/ua.svg",
   "alt"
   "The flag of Ukraine is composed of two equal horizontal bands of blue and yellow.",
   "png" "https://flagcdn.com/w320/ua.png"},
  "unMember" true,
  "name"
  {"official" "Ukraine",
   "nativeName" {"ukr" {"official" "Україна", "common" "Україна"}},
   "common" "Ukraine"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [50.43 30.52]},
  "tld" [".ua" ".укр"],
  "ccn3" "804",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"ukr" "Ukrainian"},
  "cioc" "UKR",
  "currencies" {"UAH" {"name" "Ukrainian hryvnia", "symbol" "₴"}},
  "independent" true,
  "population" 44134693,
  "cca3" "UKR",
  "borders" ["BLR" "HUN" "MDA" "POL" "ROU" "RUS" "SVK"],
  "capital" ["Kyiv"],
  "car" {"signs" ["UA"], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇺🇦",
  "gini" {"2019" 26.6},
  "fifa" "UKR",
  "cca2" "UA"}
 {"subregion" "Northern Europe",
  "landlocked" false,
  "latlng" [54.25 -4.5],
  "area" 572.0,
  "altSpellings" ["IM" "Ellan Vannin" "Mann" "Mannin"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/4DqVHDgVaFgnh8ZV8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/62269"},
  "demonyms" {"eng" {"f" "Manx", "m" "Manx"}},
  "translations"
  {"kor" {"official" "맨섬", "common" "맨섬"},
   "zho" {"official" "马恩岛", "common" "马恩岛"},
   "hun" {"official" "Man", "common" "Man"},
   "rus" {"official" "Остров Мэн", "common" "Остров Мэн"},
   "swe" {"official" "Isle of Man", "common" "Isle of Man"},
   "ces" {"official" "Ostrov Man", "common" "Ostrov Man"},
   "deu" {"official" "Isle of Man", "common" "Insel Man"},
   "ara" {"official" "جزيرة مان", "common" "جزيرة مان"},
   "urd" {"official" "آئل آف مین", "common" "آئل آف مین"},
   "srp" {"official" "Острво Мен", "common" "Острво Мен"},
   "tur" {"official" "Man Adası", "common" "Man Adası"},
   "pol" {"official" "Wyspa Man", "common" "Wyspa Man"},
   "cym" {"official" "Isle of Man", "common" "Isle of Man"},
   "hrv" {"official" "Mana ostrvo", "common" "Otok Man"},
   "spa" {"official" "Isla de Man", "common" "Isla de Man"},
   "fin" {"official" "Mansaari", "common" "Mansaari"},
   "per" {"official" "جزیرهٔ مَن", "common" "جزیرهٔ مَن"},
   "nld" {"official" "Isle of Man", "common" "Isle of Man"},
   "fra" {"official" "Isle of Man", "common" "Île de Man"},
   "ita" {"official" "Isola di Man", "common" "Isola di Man"},
   "jpn" {"official" "マン島", "common" "マン島"},
   "est" {"official" "Mani saar", "common" "Mani saar"},
   "por" {"official" "Isle of Man", "common" "Ilha de Man"},
   "slk" {"official" "Ostrov Man", "common" "Man"},
   "bre" {"official" "Enez Vanav", "common" "Enez Vanav"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/im.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/im.png"},
  "idd" {"suffixes" ["4"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/im.svg",
   "png" "https://flagcdn.com/w320/im.png"},
  "unMember" false,
  "name"
  {"official" "Isle of Man",
   "nativeName"
   {"glv" {"official" "Ellan Vannin or Mannin", "common" "Mannin"},
    "eng" {"official" "Isle of Man", "common" "Isle of Man"}},
   "common" "Isle of Man"},
  "postalCode"
  {"regex"
   "^(([A-Z]\\d{2}[A-Z]{2})|([A-Z]\\d{3}[A-Z]{2})|([A-Z]{2}\\d{2}[A-Z]{2})|([A-Z]{2}\\d{3}[A-Z]{2})|([A-Z]\\d[A-Z]\\d[A-Z]{2})|([A-Z]{2}\\d[A-Z]\\d[A-Z]{2})|(GIR0AA))$",
   "format" "@# #@@|@## #@@|@@# #@@|@@## #@@|@#@ #@@|@@#@ #@@|GIR0AA"},
  "capitalInfo" {"latlng" [54.15 -4.48]},
  "tld" [".im"],
  "ccn3" "833",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"glv" "Manx", "eng" "English"},
  "currencies"
  {"IMP" {"name" "Manx pound", "symbol" "£"},
   "GBP" {"name" "British pound", "symbol" "£"}},
  "independent" false,
  "population" 85032,
  "cca3" "IMN",
  "capital" ["Douglas"],
  "car" {"signs" ["GBM"], "side" "left"},
  "timezones" ["UTC+00:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇮🇲",
  "cca2" "IM"}
 {"subregion" "Southern Africa",
  "landlocked" false,
  "latlng" [-22.0 17.0],
  "area" 825615.0,
  "altSpellings" ["NA" "Namibië" "Republic of Namibia"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/oR1i8BFEYX3EY83WA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/195266"},
  "demonyms"
  {"eng" {"f" "Namibian", "m" "Namibian"},
   "fra" {"f" "Namibienne", "m" "Namibien"}},
  "translations"
  {"kor" {"official" "나미비아 공화국", "common" "나미비아"},
   "zho" {"official" "纳米比亚共和国", "common" "纳米比亚"},
   "hun" {"official" "Namíbiai Köztársaság", "common" "Namíbia"},
   "rus" {"official" "Республика Намибия", "common" "Намибия"},
   "swe" {"official" "Republiken Namibia", "common" "Namibia"},
   "ces" {"official" "Namibijská republika", "common" "Namibie"},
   "deu" {"official" "Republik Namibia", "common" "Namibia"},
   "ara" {"official" "جمهورية ناميبيا", "common" "ناميبيا"},
   "urd" {"official" "جمہوریہ نمیبیا", "common" "نمیبیا"},
   "srp" {"official" "Република Намибија", "common" "Намибија"},
   "tur" {"official" "Namibya Cumhuriyeti", "common" "Namibya"},
   "pol" {"official" "Republika Namibii", "common" "Namibia"},
   "cym" {"official" "Republic of Namibia", "common" "Namibia"},
   "hrv" {"official" "Republika Namibija", "common" "Namibija"},
   "spa" {"official" "República de Namibia", "common" "Namibia"},
   "fin" {"official" "Namibian tasavalta", "common" "Namibia"},
   "per" {"official" "جمهوری نامیبیا", "common" "نامیبیا"},
   "nld" {"official" "Republiek Namibië", "common" "Namibië"},
   "fra" {"official" "République de Namibie", "common" "Namibie"},
   "ita" {"official" "Repubblica di Namibia", "common" "Namibia"},
   "jpn" {"official" "ナミビア共和国", "common" "ナミビア"},
   "est" {"official" "Namiibia Vabariik", "common" "Namiibia"},
   "por" {"official" "República da Namíbia", "common" "Namíbia"},
   "slk" {"official" "Namíbijská republika", "common" "Namíbia"},
   "bre" {"official" "Republik Namibia", "common" "Namibia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/na.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/na.png"},
  "idd" {"suffixes" ["64"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/na.svg",
   "alt"
   "The flag of Namibia features a white-edged red diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a blue and green triangle respectively. A gold sun with twelve triangular rays is situated on the hoist side of the upper triangle.",
   "png" "https://flagcdn.com/w320/na.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Namibia",
   "nativeName"
   {"tsn" {"official" "Lefatshe la Namibia", "common" "Namibia"},
    "hgm" {"official" "Republic of Namibia", "common" "Namibia"},
    "deu" {"official" "Republik Namibia", "common" "Namibia"},
    "eng" {"official" "Republic of Namibia", "common" "Namibia"},
    "kwn" {"official" "Republic of Namibia", "common" "Namibia"},
    "loz" {"official" "Republic of Namibia", "common" "Namibia"},
    "afr" {"official" "Republiek van Namibië", "common" "Namibië"},
    "ndo" {"official" "Republic of Namibia", "common" "Namibia"},
    "her" {"official" "Republic of Namibia", "common" "Namibia"}},
   "common" "Namibia"},
  "capitalInfo" {"latlng" [-22.57 17.08]},
  "tld" [".na"],
  "ccn3" "516",
  "status" "officially-assigned",
  "region" "Africa",
  "languages"
  {"tsn" "Tswana",
   "hgm" "Khoekhoe",
   "deu" "German",
   "eng" "English",
   "kwn" "Kwangali",
   "loz" "Lozi",
   "afr" "Afrikaans",
   "ndo" "Ndonga",
   "her" "Herero"},
  "cioc" "NAM",
  "currencies"
  {"ZAR" {"name" "South African rand", "symbol" "R"},
   "NAD" {"name" "Namibian dollar", "symbol" "$"}},
  "independent" true,
  "population" 2540916,
  "cca3" "NAM",
  "borders" ["AGO" "BWA" "ZAF" "ZMB"],
  "capital" ["Windhoek"],
  "car" {"signs" ["NAM"], "side" "left"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇳🇦",
  "gini" {"2015" 59.1},
  "fifa" "NAM",
  "cca2" "NA"}
 {"subregion" "Western Asia",
  "landlocked" false,
  "latlng" [24.0 54.0],
  "area" 83600.0,
  "altSpellings" ["AE" "UAE" "Emirates"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/AZZTDA6GzVAnKMVd8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/307763"},
  "demonyms"
  {"eng" {"f" "Emirati", "m" "Emirati"},
   "fra" {"f" "Emirienne", "m" "Emirien"}},
  "translations"
  {"kor" {"official" "아랍 토후국 연방", "common" "아랍에미리트"},
   "zho" {"official" "阿拉伯联合酋长国", "common" "阿拉伯联合酋长国"},
   "hun"
   {"official" "Egyesült Arab Emírségek",
    "common" "Egyesült Arab Emírségek"},
   "rus"
   {"official" "Объединенные Арабские Эмираты",
    "common" "Объединённые Арабские Эмираты"},
   "swe"
   {"official" "Förenade Arabemiraten",
    "common" "Förenade Arabemiraten"},
   "ces"
   {"official" "Spojené arabské emiráty", "common" "Arabské emiráty"},
   "deu"
   {"official" "Vereinigte Arabische Emirate",
    "common" "Vereinigte Arabische Emirate"},
   "ara"
   {"official" "الإمارات العربية المتحدة",
    "common" "دولة الإمارات العربية المتحدة"},
   "urd" {"official" "متحدہ عرب امارات", "common" "متحدہ عرب امارات"},
   "srp"
   {"official" "Уједињени Арапски Емирати",
    "common" "Уједињени Арапски Емирати"},
   "tur"
   {"official" "Birleşik Arap Emirlikleri",
    "common" "Birleşik Arap Emirlikleri"},
   "pol"
   {"official" "Zjednoczone Emiraty Arabskie",
    "common" "Emiraty Arabskie"},
   "cym"
   {"official" "United Arab Emirates",
    "common" "United Arab Emirates"},
   "hrv"
   {"official" "Ujedinjeni Arapski Emirati",
    "common" "Arapski Emirati"},
   "spa"
   {"official" "Emiratos Árabes Unidos",
    "common" "Emiratos Árabes Unidos"},
   "fin"
   {"official" "Yhdistyneet arabiemiirikunnat",
    "common" "Arabiemiraatit"},
   "per" {"official" "امارات متحده عربی", "common" "امارات"},
   "nld"
   {"official" "Verenigde Arabische Emiraten",
    "common" "Verenigde Arabische Emiraten"},
   "fra"
   {"official" "Émirats arabes unis", "common" "Émirats arabes unis"},
   "ita"
   {"official" "Emirati Arabi Uniti", "common" "Emirati Arabi Uniti"},
   "jpn" {"official" "アラブ首長国連邦", "common" "アラブ首長国連邦"},
   "est"
   {"official" "Araabia Ühendemiraadid",
    "common" "Araabia Ühendemiraadid"},
   "por"
   {"official" "Emirados Árabes Unidos",
    "common" "Emirados Árabes Unidos"},
   "slk"
   {"official" "Spojené arabské emiráty", "common" "Arabské emiráty"},
   "bre"
   {"official" "Emirelezhioù Arab Unanet",
    "common" "Emirelezhioù Arab Unanet"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ae.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ae.png"},
  "idd" {"suffixes" ["71"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/ae.svg",
   "alt"
   "The flag of United Arab Emirates features a red vertical band on its hoist side that takes up about one-fourth the width of the field and three equal horizontal bands of green, white and black adjoining the vertical band.",
   "png" "https://flagcdn.com/w320/ae.png"},
  "unMember" true,
  "name"
  {"official" "United Arab Emirates",
   "nativeName"
   {"ara"
    {"official" "الإمارات العربية المتحدة",
     "common" "دولة الإمارات العربية المتحدة"}},
   "common" "United Arab Emirates"},
  "capitalInfo" {"latlng" [24.47 54.37]},
  "tld" [".ae" "امارات."],
  "ccn3" "784",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"ara" "Arabic"},
  "cioc" "UAE",
  "currencies"
  {"AED" {"name" "United Arab Emirates dirham", "symbol" "د.إ"}},
  "independent" true,
  "population" 9890400,
  "cca3" "ARE",
  "borders" ["OMN" "SAU"],
  "capital" ["Abu Dhabi"],
  "car" {"signs" ["UAE"], "side" "right"},
  "timezones" ["UTC+04:00"],
  "startOfWeek" "sunday",
  "continents" ["Asia"],
  "flag" "🇦🇪",
  "gini" {"2018" 26.0},
  "fifa" "UAE",
  "cca2" "AE"}
 {"subregion" "Southeast Europe",
  "landlocked" false,
  "latlng" [43.0 25.0],
  "area" 110879.0,
  "altSpellings" ["BG" "Republic of Bulgaria" "Република България"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/F5uAhDGWzc3BrHfm9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/186382"},
  "demonyms"
  {"eng" {"f" "Bulgarian", "m" "Bulgarian"},
   "fra" {"f" "Bulgare", "m" "Bulgare"}},
  "translations"
  {"kor" {"official" "불가리아 공화국", "common" "불가리아"},
   "zho" {"official" "保加利亚共和国", "common" "保加利亚"},
   "hun" {"official" "Bolgár Köztársaság", "common" "Bulgária"},
   "rus" {"official" "Республика Болгария", "common" "Болгария"},
   "swe" {"official" "Republiken Bulgarien", "common" "Bulgarien"},
   "ces" {"official" "Bulharská republika", "common" "Bulharsko"},
   "deu" {"official" "Republik Bulgarien", "common" "Bulgarien"},
   "ara" {"official" "جمهورية بلغاريا", "common" "بلغاريا"},
   "urd" {"official" "جمہوریہ بلغاریہ", "common" "بلغاریہ"},
   "srp" {"official" "Република Бугарска", "common" "Бугарска"},
   "tur"
   {"official" "Bulgaristan Cumhuriyeti", "common" "Bulgaristan"},
   "pol" {"official" "Republika Bułgarii", "common" "Bułgaria"},
   "cym" {"official" "Gweriniaeth Bwlgaria", "common" "Bwlgaria"},
   "hrv" {"official" "Republika Bugarska", "common" "Bugarska"},
   "spa" {"official" "República de Bulgaria", "common" "Bulgaria"},
   "fin" {"official" "Bulgarian tasavalta", "common" "Bulgaria"},
   "per" {"official" "جمهوری بلغارستان", "common" "بلغارستان"},
   "nld" {"official" "Republiek Bulgarije", "common" "Bulgarije"},
   "fra" {"official" "République de Bulgarie", "common" "Bulgarie"},
   "ita" {"official" "Repubblica di Bulgaria", "common" "Bulgaria"},
   "jpn" {"official" "ブルガリア共和国", "common" "ブルガリア"},
   "est" {"official" "Bulgaaria Vabariik", "common" "Bulgaaria"},
   "por" {"official" "República da Bulgária", "common" "Bulgária"},
   "slk" {"official" "Bulharská republika", "common" "Bulharsko"},
   "bre" {"official" "Republik Bulgaria", "common" "Bulgaria"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/bg.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/bg.png"},
  "idd" {"suffixes" ["59"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/bg.svg",
   "alt"
   "The flag of Bulgaria is composed of three equal horizontal bands of white, green and red.",
   "png" "https://flagcdn.com/w320/bg.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Bulgaria",
   "nativeName"
   {"bul" {"official" "Република България", "common" "България"}},
   "common" "Bulgaria"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [42.68 23.32]},
  "tld" [".bg"],
  "ccn3" "100",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"bul" "Bulgarian"},
  "cioc" "BUL",
  "currencies" {"BGN" {"name" "Bulgarian lev", "symbol" "лв"}},
  "independent" true,
  "population" 6927288,
  "cca3" "BGR",
  "borders" ["GRC" "MKD" "ROU" "SRB" "TUR"],
  "capital" ["Sofia"],
  "car" {"signs" ["BG"], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇧🇬",
  "gini" {"2018" 41.3},
  "fifa" "BUL",
  "cca2" "BG"}
 {"subregion" "North America",
  "landlocked" false,
  "latlng" [72.0 -40.0],
  "area" 2166086.0,
  "altSpellings" ["GL" "Grønland"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/j3289UPEQXt1ceSy8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2184073"},
  "demonyms"
  {"eng" {"f" "Greenlandic", "m" "Greenlandic"},
   "fra" {"f" "Groenlandaise", "m" "Groenlandais"}},
  "translations"
  {"kor" {"official" "그린란드", "common" "그린란드"},
   "zho" {"official" "格陵兰", "common" "格陵兰"},
   "hun" {"official" "Grönland", "common" "Grönland"},
   "rus" {"official" "Гренландия", "common" "Гренландия"},
   "swe" {"official" "Grönland", "common" "Grönland"},
   "ces" {"official" "Grónsko", "common" "Grónsko"},
   "deu" {"official" "Grönland", "common" "Grönland"},
   "ara" {"official" "جرينلاند", "common" "جرينلاند"},
   "urd" {"official" "گرین لینڈ", "common" "گرین لینڈ"},
   "srp" {"official" "Гренланд", "common" "Гренланд"},
   "tur" {"official" "Grönland", "common" "Grönland"},
   "pol" {"official" "Grenlandia", "common" "Grenlandia"},
   "cym" {"official" "Greenland", "common" "Greenland"},
   "hrv" {"official" "Grenland", "common" "Grenland"},
   "spa" {"official" "Groenlandia", "common" "Groenlandia"},
   "fin" {"official" "Groönlanti", "common" "Groönlanti"},
   "per" {"official" "گروئنلند", "common" "گرینلند"},
   "nld" {"official" "Groenland", "common" "Groenland"},
   "fra" {"official" "Groenland", "common" "Groenland"},
   "ita" {"official" "Groenlandia", "common" "Groenlandia"},
   "jpn" {"official" "グリーンランド", "common" "グリーンランド"},
   "est" {"official" "Gröönimaa", "common" "Gröönimaa"},
   "por" {"official" "Groenlândia", "common" "Gronelândia"},
   "slk" {"official" "Grónsko", "common" "Grónsko"},
   "bre" {"official" "Greunland", "common" "Greunland"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/gl.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/gl.png"},
  "idd" {"suffixes" ["99"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/gl.svg",
   "png" "https://flagcdn.com/w320/gl.png"},
  "unMember" false,
  "name"
  {"official" "Greenland",
   "nativeName"
   {"kal"
    {"official" "Kalaallit Nunaat", "common" "Kalaallit Nunaat"}},
   "common" "Greenland"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [64.18 -51.75]},
  "tld" [".gl"],
  "ccn3" "304",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"kal" "Greenlandic"},
  "currencies" {"DKK" {"name" "krone", "symbol" "kr."}},
  "independent" false,
  "population" 56367,
  "cca3" "GRL",
  "capital" ["Nuuk"],
  "car" {"signs" ["DK"], "side" "right"},
  "timezones" ["UTC-04:00" "UTC-03:00" "UTC-01:00" "UTC+00:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇬🇱",
  "cca2" "GL"}
 {"subregion" "Western Europe",
  "landlocked" false,
  "latlng" [51.0 9.0],
  "area" 357114.0,
  "altSpellings"
  ["DE" "Federal Republic of Germany" "Bundesrepublik Deutschland"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/mD9FBMq1nvXUBrkv6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/51477"},
  "demonyms"
  {"eng" {"f" "German", "m" "German"},
   "fra" {"f" "Allemande", "m" "Allemand"}},
  "translations"
  {"kor" {"official" "독일 연방 공화국", "common" "독일"},
   "zho" {"official" "德意志联邦共和国", "common" "德国"},
   "hun"
   {"official" "Német Szövetségi Köztársaság", "common" "Németország"},
   "rus"
   {"official" "Федеративная Республика Германия",
    "common" "Германия"},
   "swe"
   {"official" "Förbundsrepubliken Tyskland", "common" "Tyskland"},
   "ces" {"official" "Spolková republika Německo", "common" "Německo"},
   "deu"
   {"official" "Bundesrepublik Deutschland", "common" "Deutschland"},
   "ara" {"official" "جمهورية ألمانيا الاتحادية", "common" "ألمانيا"},
   "urd" {"official" "وفاقی جمہوریہ جرمنی", "common" "جرمنی"},
   "srp" {"official" "Савезна Република Немачка", "common" "Немачка"},
   "tur"
   {"official" "Almanya Federal Cumhuriyeti", "common" "Almanya"},
   "pol" {"official" "Republika Federalna Niemiec", "common" "Niemcy"},
   "cym"
   {"official" "Federal Republic of Germany", "common" "Germany"},
   "hrv"
   {"official" "Njemačka Federativna Republika", "common" "Njemačka"},
   "spa"
   {"official" "República Federal de Alemania", "common" "Alemania"},
   "fin" {"official" "Saksan liittotasavalta", "common" "Saksa"},
   "per" {"official" "جمهوری فدرال آلمان", "common" "آلمان"},
   "nld" {"official" "Bondsrepubliek Duitsland", "common" "Duitsland"},
   "fra"
   {"official" "République fédérale d'Allemagne",
    "common" "Allemagne"},
   "ita"
   {"official" "Repubblica federale di Germania", "common" "Germania"},
   "jpn" {"official" "ドイツ連邦共和国", "common" "ドイツ"},
   "est" {"official" "Saksamaa Liitvabariik", "common" "Saksamaa"},
   "por"
   {"official" "República Federal da Alemanha", "common" "Alemanha"},
   "slk" {"official" "Nemecká spolková republika", "common" "Nemecko"},
   "bre"
   {"official" "Republik Kevreadel Alamagn", "common" "Alamagn"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/de.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/de.png"},
  "idd" {"suffixes" ["9"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/de.svg",
   "alt"
   "The flag of Germany is composed of three equal horizontal bands of black, red and gold.",
   "png" "https://flagcdn.com/w320/de.png"},
  "unMember" true,
  "name"
  {"official" "Federal Republic of Germany",
   "nativeName"
   {"deu"
    {"official" "Bundesrepublik Deutschland", "common" "Deutschland"}},
   "common" "Germany"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [52.52 13.4]},
  "tld" [".de"],
  "ccn3" "276",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"deu" "German"},
  "cioc" "GER",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 83240525,
  "cca3" "DEU",
  "borders" ["AUT" "BEL" "CZE" "DNK" "FRA" "LUX" "NLD" "POL" "CHE"],
  "capital" ["Berlin"],
  "car" {"signs" ["DY"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇩🇪",
  "gini" {"2016" 31.9},
  "fifa" "GER",
  "cca2" "DE"}
 {"subregion" "South-Eastern Asia",
  "landlocked" false,
  "latlng" [13.0 105.0],
  "area" 181035.0,
  "altSpellings" ["KH" "Kingdom of Cambodia"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/nztQtFSrUXZymJaW8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/49898"},
  "demonyms"
  {"eng" {"f" "Cambodian", "m" "Cambodian"},
   "fra" {"f" "Cambodgienne", "m" "Cambodgien"}},
  "translations"
  {"kor" {"official" "캄보디아 왕국", "common" "캄보디아"},
   "zho" {"official" "柬埔寨王国", "common" "柬埔寨"},
   "hun" {"official" "Kambodzsai Királyság", "common" "Kambodzsa"},
   "rus" {"official" "Королевство Камбоджа", "common" "Камбоджа"},
   "swe" {"official" "Konungariket Kambodja", "common" "Kambodja"},
   "ces" {"official" "Kambodžské království", "common" "Kambodža"},
   "deu" {"official" "Königreich Kambodscha", "common" "Kambodscha"},
   "ara" {"official" "مملكة كمبوديا", "common" "كمبوديا"},
   "urd" {"official" "مملکتِ کمبوڈیا", "common" "کمبوڈیا"},
   "srp" {"official" "Краљевина Камбоџа", "common" "Камбоџа"},
   "tur" {"official" "Kamboçya Krallığı", "common" "Kamboçya"},
   "pol" {"official" "Królestwo Kambodży", "common" "Kambodża"},
   "cym" {"official" "Teyrnas Cambodia", "common" "Cambodia"},
   "hrv" {"official" "Kraljevina Kambodža", "common" "Kambodža"},
   "spa" {"official" "Reino de Camboya", "common" "Camboya"},
   "fin" {"official" "Kambodžan kuningaskunta", "common" "Kambodža"},
   "per" {"official" "پادشاهی کامبوج", "common" "کامبوج"},
   "nld" {"official" "Koninkrijk Cambodja", "common" "Cambodja"},
   "fra" {"official" "Royaume du Cambodge", "common" "Cambodge"},
   "ita" {"official" "Regno di Cambogia", "common" "Cambogia"},
   "jpn" {"official" "カンボジア王国", "common" "カンボジア"},
   "est" {"official" "Kambodža Kuningriik", "common" "Kambodža"},
   "por" {"official" "Reino do Camboja", "common" "Camboja"},
   "slk" {"official" "Kambodžské kráľovstvo", "common" "Kambodža"},
   "bre" {"official" "Rouantelezh Kambodja", "common" "Kambodja"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/kh.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/kh.png"},
  "idd" {"suffixes" ["55"], "root" "+8"},
  "flags"
  {"svg" "https://flagcdn.com/kh.svg",
   "alt"
   "The flag of Cambodia features three horizontal bands of blue, red and blue, with a white depiction of the temple complex, Angkor Wat centered in the red band.",
   "png" "https://flagcdn.com/w320/kh.png"},
  "unMember" true,
  "name"
  {"official" "Kingdom of Cambodia",
   "nativeName"
   {"khm" {"official" "ព្រះរាជាណាចក្រកម្ពុជា", "common" "Kâmpŭchéa"}},
   "common" "Cambodia"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [11.55 104.92]},
  "tld" [".kh"],
  "ccn3" "116",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"khm" "Khmer"},
  "cioc" "CAM",
  "currencies"
  {"KHR" {"name" "Cambodian riel", "symbol" "៛"},
   "USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" true,
  "population" 16718971,
  "cca3" "KHM",
  "borders" ["LAO" "THA" "VNM"],
  "capital" ["Phnom Penh"],
  "car" {"signs" ["K"], "side" "right"},
  "timezones" ["UTC+07:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇰🇭",
  "fifa" "CAM",
  "cca2" "KH"}
 {"subregion" "Western Asia",
  "landlocked" false,
  "latlng" [33.0 44.0],
  "area" 438317.0,
  "altSpellings" ["IQ" "Republic of Iraq" "Jumhūriyyat al-‘Irāq"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/iL8Bmy1sUCW9fUk18",
   "openStreetMaps" "https://www.openstreetmap.org/relation/304934"},
  "demonyms"
  {"eng" {"f" "Iraqi", "m" "Iraqi"},
   "fra" {"f" "Irakienne", "m" "Irakien"}},
  "translations"
  {"kor" {"official" "이라크 공화국", "common" "이라크"},
   "zho" {"official" "伊拉克共和国", "common" "伊拉克"},
   "hun" {"official" "Iraki Köztársaság", "common" "Irak"},
   "rus" {"official" "Республика Ирак", "common" "Ирак"},
   "swe" {"official" "Republiken Irak", "common" "Irak"},
   "ces" {"official" "Irácká republika", "common" "Irák"},
   "deu" {"official" "Republik Irak", "common" "Irak"},
   "ara" {"official" "جمهورية العراق", "common" "العراق"},
   "urd" {"official" "جمہوریہ عراق", "common" "عراق"},
   "srp" {"official" "Република Ирак", "common" "Ирак"},
   "tur" {"official" "Irak Cumhuriyeti", "common" "Irak"},
   "pol" {"official" "Republika Iraku", "common" "Irak"},
   "cym" {"official" "Republic of Iraq", "common" "Iraq"},
   "hrv" {"official" "Republika Irak", "common" "Irak"},
   "spa" {"official" "República de Irak", "common" "Irak"},
   "fin" {"official" "Irakin tasavalta", "common" "Irak"},
   "per" {"official" "جمهوری عراق", "common" "عراق"},
   "nld" {"official" "Republiek Irak", "common" "Irak"},
   "fra" {"official" "République d'Irak", "common" "Irak"},
   "ita" {"official" "Repubblica dell'Iraq", "common" "Iraq"},
   "jpn" {"official" "イラク共和国", "common" "イラク"},
   "est" {"official" "Iraagi Vabariik", "common" "Iraak"},
   "por" {"official" "República do Iraque", "common" "Iraque"},
   "slk" {"official" "Iracká republika", "common" "Irak"},
   "bre" {"official" "Republik Irak", "common" "Irak"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/iq.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/iq.png"},
  "idd" {"suffixes" ["64"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/iq.svg",
   "alt"
   "The flag of Iraq is composed of three equal horizontal bands of red, white and black. In the central white band are Arabic inscriptions in green.",
   "png" "https://flagcdn.com/w320/iq.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Iraq",
   "nativeName"
   {"ckb" {"official" "کۆماری عێراق", "common" "کۆماری"},
    "ara" {"official" "جمهورية العراق", "common" "العراق"},
    "arc" {"official" "ܩܘܼܛܢܵܐ ܐܝܼܪܲܩ", "common" "ܩܘܼܛܢܵܐ"}},
   "common" "Iraq"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [33.33 44.4]},
  "tld" [".iq"],
  "ccn3" "368",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"ckb" "Sorani", "ara" "Arabic", "arc" "Aramaic"},
  "cioc" "IRQ",
  "currencies" {"IQD" {"name" "Iraqi dinar", "symbol" "ع.د"}},
  "independent" true,
  "population" 40222503,
  "cca3" "IRQ",
  "borders" ["IRN" "JOR" "KWT" "SAU" "SYR" "TUR"],
  "capital" ["Baghdad"],
  "car" {"signs" ["IRQ"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "sunday",
  "continents" ["Asia"],
  "flag" "🇮🇶",
  "gini" {"2012" 29.5},
  "fifa" "IRQ",
  "cca2" "IQ"}
 {"landlocked" false,
  "latlng" [-49.25 69.167],
  "area" 7747.0,
  "altSpellings" ["TF" "French Southern Territories"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/6ua6CX1m4w1xF2Em7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2186658"},
  "demonyms"
  {"eng" {"f" "French", "m" "French"},
   "fra" {"f" "Française", "m" "Français"}},
  "translations"
  {"kor" {"official" "프랑스령 남부와 남극 지역", "common" "프랑스령 남부와 남극 지역"},
   "zho" {"official" "法国南部和南极土地", "common" "法国南部和南极土地"},
   "hun"
   {"official" "Francia déli és antarktiszi területek",
    "common" "Francia déli és antarktiszi területek"},
   "rus"
   {"official" "Территория Французские Южные и Антарктические земли",
    "common" "Французские Южные и Антарктические территории"},
   "swe"
   {"official" "Franska syd- och Antarktisterritorierna",
    "common" "Franska södra territorierna"},
   "ces"
   {"official" "Teritorium Francouzská jižní a antarktická území",
    "common" "Francouzská jižní a antarktická území"},
   "deu"
   {"official" "Gebiet der Französisch Süd- und Antarktisgebiete",
    "common" "Französische Süd- und Antarktisgebiete"},
   "ara"
   {"official" "مقاطعات وأقاليم ما وراء البحار الفرنسية",
    "common" "أراض فرنسية جنوبية وأنتارتيكية"},
   "urd"
   {"official" "سرزمینِ جنوبی فرانسیسیہ و انٹارکٹیکہ",
    "common" "سرزمین جنوبی فرانسیسیہ و انٹارکٹیکا"},
   "srp"
   {"official" "Француске јужне и антарктичке земље",
    "common" "Француске јужне и антарктичке земље"},
   "tur"
   {"official" "Fransız Güney ve Antarktika Toprakları",
    "common" "Fransız Güney ve Antarktika Toprakları"},
   "pol"
   {"official" "Francuskie Terytoria Południowe i Antarktyczne",
    "common" "Francuskie Terytoria Południowe i Antarktyczne"},
   "cym"
   {"official" "Territory of the French Southern and Antarctic Lands",
    "common" "French Southern and Antarctic Lands"},
   "hrv"
   {"official" "Teritoriju Francuski južni i antarktički teritoriji",
    "common" "Francuski južni i antarktički teritoriji"},
   "spa"
   {"official" "Territorio del Francés Tierras australes y antárticas",
    "common" "Tierras Australes y Antárticas Francesas"},
   "fin"
   {"official" "Ranskan eteläiset ja antarktiset alueet",
    "common" "Ranskan eteläiset ja antarktiset alueet"},
   "per"
   {"official" "سرزمین‌های جنوبی و جنوبگانی فرانسه",
    "common" "سرزمین‌های جنوبی و جنوبگانی فرانسه"},
   "nld"
   {"official"
    "Grondgebied van de Franse Zuidelijke en Antarctische gebieden",
    "common" "Franse Gebieden in de zuidelijke Indische Oceaan"},
   "fra"
   {"official"
    "Territoire des Terres australes et antarctiques françaises",
    "common" "Terres australes et antarctiques françaises"},
   "ita"
   {"official" "Territorio della australi e antartiche francesi Terre",
    "common" "Territori Francesi del Sud"},
   "jpn" {"official" "フランス領南方·南極地域の領土", "common" "フランス領南方・南極地域"},
   "est"
   {"official" "Prantsuse Lõunaalad", "common" "Prantsuse Lõunaalad"},
   "por"
   {"official" "Território do Sul e Antártica Francesa",
    "common" "Terras Austrais e Antárticas Francesas"},
   "slk"
   {"official" "Francúzske južné a antarktické územia",
    "common" "Francúzske juŽné a antarktické územia"},
   "bre"
   {"official" "Tiriad Douaroù Aostral hag Antarktikel Frañs",
    "common" "Douaroù Aostral hag Antarktikel Frañs"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/tf.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/tf.png"},
  "idd" {"suffixes" ["62"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/tf.svg",
   "png" "https://flagcdn.com/w320/tf.png"},
  "unMember" false,
  "name"
  {"official" "Territory of the French Southern and Antarctic Lands",
   "nativeName"
   {"fra"
    {"official"
     "Territoire des Terres australes et antarctiques françaises",
     "common" "Terres australes et antarctiques françaises"}},
   "common" "French Southern and Antarctic Lands"},
  "capitalInfo" {"latlng" [48.81 -1.4]},
  "tld" [".tf"],
  "ccn3" "260",
  "status" "officially-assigned",
  "region" "Antarctic",
  "languages" {"fra" "French"},
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" false,
  "population" 400,
  "cca3" "ATF",
  "capital" ["Port-aux-Français"],
  "car" {"signs" [""], "side" "right"},
  "timezones" ["UTC+05:00"],
  "startOfWeek" "monday",
  "continents" ["Antarctica"],
  "flag" "🇹🇫",
  "cca2" "TF"}
 {"subregion" "Northern Europe",
  "landlocked" false,
  "latlng" [62.0 15.0],
  "area" 450295.0,
  "altSpellings" ["SE" "Kingdom of Sweden" "Konungariket Sverige"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/iqygE491ADVgnBW39",
   "openStreetMaps" "https://www.openstreetmap.org/relation/52822"},
  "demonyms"
  {"eng" {"f" "Swedish", "m" "Swedish"},
   "fra" {"f" "Suédoise", "m" "Suédois"}},
  "translations"
  {"kor" {"official" "스웨덴 왕국", "common" "스웨덴"},
   "zho" {"official" "瑞典王国", "common" "瑞典"},
   "hun" {"official" "Svéd Királyság", "common" "Svédország"},
   "rus" {"official" "Королевство Швеция", "common" "Швеция"},
   "swe" {"official" "Konungariket Sverige", "common" "Sverige"},
   "ces" {"official" "Švédské království", "common" "Švédsko"},
   "deu" {"official" "Königreich Schweden", "common" "Schweden"},
   "ara" {"official" "مملكة السويد", "common" "السويد"},
   "urd" {"official" "مملکتِ سویڈن", "common" "سویڈن"},
   "srp" {"official" "Краљевина Шведска", "common" "Шведска"},
   "tur" {"official" "İsveç Krallığı", "common" "İsveç"},
   "pol" {"official" "Królestwo Szwecji", "common" "Szwecja"},
   "cym" {"official" "Kingdom of Sweden", "common" "Sweden"},
   "hrv" {"official" "Kraljevina Švedska", "common" "Švedska"},
   "spa" {"official" "Reino de Suecia", "common" "Suecia"},
   "fin" {"official" "Ruotsin kuningaskunta", "common" "Ruotsi"},
   "per" {"official" "پادشاهی سوئد", "common" "سوئد"},
   "nld" {"official" "Koninkrijk Zweden", "common" "Zweden"},
   "fra" {"official" "Royaume de Suède", "common" "Suède"},
   "ita" {"official" "Regno di Svezia", "common" "Svezia"},
   "jpn" {"official" "スウェーデン王国", "common" "スウェーデン"},
   "est" {"official" "Rootsi Kuningriik", "common" "Rootsi"},
   "por" {"official" "Reino da Suécia", "common" "Suécia"},
   "slk" {"official" "Švédske kráľovstvo", "common" "Švédsko"},
   "bre" {"official" "Rouantelezh Sveden", "common" "Sveden"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/se.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/se.png"},
  "idd" {"suffixes" ["6"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/se.svg",
   "alt"
   "The flag of Sweden has a blue field with a large golden-yellow cross that extend to the edges of the field. The vertical part of this cross is offset towards the hoist side.",
   "png" "https://flagcdn.com/w320/se.png"},
  "unMember" true,
  "name"
  {"official" "Kingdom of Sweden",
   "nativeName"
   {"swe" {"official" "Konungariket Sverige", "common" "Sverige"}},
   "common" "Sweden"},
  "postalCode" {"regex" "^(?:SE)*(\\d{5})$", "format" "SE-### ##"},
  "capitalInfo" {"latlng" [59.33 18.05]},
  "tld" [".se"],
  "ccn3" "752",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"swe" "Swedish"},
  "cioc" "SWE",
  "currencies" {"SEK" {"name" "Swedish krona", "symbol" "kr"}},
  "independent" true,
  "population" 10353442,
  "cca3" "SWE",
  "borders" ["FIN" "NOR"],
  "capital" ["Stockholm"],
  "car" {"signs" ["S"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇸🇪",
  "gini" {"2018" 30.0},
  "fifa" "SWE",
  "cca2" "SE"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [21.5 -80.0],
  "area" 109884.0,
  "altSpellings" ["CU" "Republic of Cuba" "República de Cuba"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/1dDw1QfZspfMUTm99",
   "openStreetMaps" "https://www.openstreetmap.org/relation/307833"},
  "demonyms"
  {"eng" {"f" "Cuban", "m" "Cuban"},
   "fra" {"f" "Cubaine", "m" "Cubain"}},
  "translations"
  {"kor" {"official" "쿠바 공화국", "common" "쿠바"},
   "zho" {"official" "古巴共和国", "common" "古巴"},
   "hun" {"official" "Kubai Köztársaság", "common" "Kuba"},
   "rus" {"official" "Республика Куба", "common" "Куба"},
   "swe" {"official" "Republiken Kuba", "common" "Kuba"},
   "ces" {"official" "Kubánská republika", "common" "Kuba"},
   "deu" {"official" "Republik Kuba", "common" "Kuba"},
   "ara" {"official" "جمهورية كوبا", "common" "كوبا"},
   "urd" {"official" "جمہوریہ کیوبا", "common" "کیوبا"},
   "srp" {"official" "Република Куба", "common" "Куба"},
   "tur" {"official" "Küba Cumhuriyeti", "common" "Küba"},
   "pol" {"official" "Republika Kuby", "common" "Kuba"},
   "cym" {"official" "Gweriniaeth Ciwba", "common" "Ciwba"},
   "hrv" {"official" "Republika Kuba", "common" "Kuba"},
   "spa" {"official" "República de Cuba", "common" "Cuba"},
   "fin" {"official" "Kuuban tasavalta", "common" "Kuuba"},
   "per" {"official" "جمهوری کوبا", "common" "کوبا"},
   "nld" {"official" "Republiek Cuba", "common" "Cuba"},
   "fra" {"official" "République de Cuba", "common" "Cuba"},
   "ita" {"official" "Repubblica di Cuba", "common" "Cuba"},
   "jpn" {"official" "キューバ共和国", "common" "キューバ"},
   "est" {"official" "Kuuba Vabariik", "common" "Kuuba"},
   "por" {"official" "República de Cuba", "common" "Cuba"},
   "slk" {"official" "Kubánska republika", "common" "Kuba"},
   "bre" {"official" "Republik Kuba", "common" "Kuba"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/cu.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/cu.png"},
  "idd" {"suffixes" ["3"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/cu.svg",
   "alt"
   "The flag of Cuba is composed of five equal horizontal bands of blue alternating with white and a red equilateral triangle superimposed on the hoist side of the field. The triangle has its base on the hoist end, spans about two-fifth the width of the field and bears a white five-pointed star at its center.",
   "png" "https://flagcdn.com/w320/cu.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Cuba",
   "nativeName"
   {"spa" {"official" "República de Cuba", "common" "Cuba"}},
   "common" "Cuba"},
  "postalCode" {"regex" "^(?:CP)*(\\d{5})$", "format" "CP #####"},
  "capitalInfo" {"latlng" [23.12 -82.35]},
  "tld" [".cu"],
  "ccn3" "192",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"spa" "Spanish"},
  "cioc" "CUB",
  "currencies"
  {"CUC" {"name" "Cuban convertible peso", "symbol" "$"},
   "CUP" {"name" "Cuban peso", "symbol" "$"}},
  "independent" true,
  "population" 11326616,
  "cca3" "CUB",
  "capital" ["Havana"],
  "car" {"signs" ["C"], "side" "right"},
  "timezones" ["UTC-05:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇨🇺",
  "fifa" "CUB",
  "cca2" "CU"}
 {"subregion" "Central Asia",
  "landlocked" true,
  "latlng" [41.0 75.0],
  "area" 199951.0,
  "altSpellings"
  ["KG"
   "Киргизия"
   "Kyrgyz Republic"
   "Кыргыз Республикасы"
   "Kyrgyz Respublikasy"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/SKG8BSMMQVvxkRkB7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/178009"},
  "demonyms"
  {"eng" {"f" "Kirghiz", "m" "Kirghiz"},
   "fra" {"f" "Kirghize", "m" "Kirghize"}},
  "translations"
  {"kor" {"official" "키르기스 공화국", "common" "키르기스스탄"},
   "zho" {"official" "吉尔吉斯斯坦共和国", "common" "吉尔吉斯斯坦"},
   "hun" {"official" "Kirgiz Köztársaság", "common" "Kirgizisztán"},
   "rus" {"official" "Кыргызская Республика", "common" "Киргизия"},
   "swe" {"official" "Republiken Kirgizistan", "common" "Kirgizistan"},
   "ces" {"official" "Kyrgyzská republika", "common" "Kyrgyzstán"},
   "deu" {"official" "Kirgisische Republik", "common" "Kirgisistan"},
   "ara" {"official" "الجمهورية القيرغيزية", "common" "قيرغيزستان"},
   "urd" {"official" "جمہوریہ کرغیزستان", "common" "کرغیزستان"},
   "srp" {"official" "Киргиска Република", "common" "Киргизија"},
   "tur"
   {"official" "Kırgızistan Cumhuriyeti", "common" "Kırgızistan"},
   "pol" {"official" "Republika Kirgiska", "common" "Kirgistan"},
   "cym" {"official" "Kyrgyz Republic", "common" "Kyrgyzstan"},
   "hrv" {"official" "Kirgistanu", "common" "Kirgistan"},
   "spa" {"official" "República Kirguisa", "common" "Kirguizistán"},
   "fin" {"official" "Kirgisian tasavalta", "common" "Kirgisia"},
   "per" {"official" "جمهوری قِرقیزستان", "common" "قرقیزستان"},
   "nld" {"official" "Kirgizische Republiek", "common" "Kirgizië"},
   "fra" {"official" "République kirghize", "common" "Kirghizistan"},
   "ita" {"official" "Kirghizistan", "common" "Kirghizistan"},
   "jpn" {"official" "キルギス共和国", "common" "キルギス"},
   "est" {"official" "Kirgiisi Vabariik", "common" "Kõrgõzstan"},
   "por"
   {"official" "República do Quirguistão", "common" "Quirguistão"},
   "slk" {"official" "Kirgizská republika", "common" "Kirgizsko"},
   "bre" {"official" "Republik Kirgiz", "common" "Kirgizstan"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/kg.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/kg.png"},
  "idd" {"suffixes" ["96"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/kg.svg",
   "alt"
   "The flag of Kyrgyzstan features a yellow sun with forty rays at the center of a red field. At the center of the sun is a stylized depiction of a tunduk.",
   "png" "https://flagcdn.com/w320/kg.png"},
  "unMember" true,
  "name"
  {"official" "Kyrgyz Republic",
   "nativeName"
   {"rus" {"official" "Кыргызская Республика", "common" "Киргизия"},
    "kir" {"official" "Кыргыз Республикасы", "common" "Кыргызстан"}},
   "common" "Kyrgyzstan"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "######"},
  "capitalInfo" {"latlng" [42.87 74.6]},
  "tld" [".kg"],
  "ccn3" "417",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"rus" "Russian", "kir" "Kyrgyz"},
  "cioc" "KGZ",
  "currencies" {"KGS" {"name" "Kyrgyzstani som", "symbol" "с"}},
  "independent" true,
  "population" 6591600,
  "cca3" "KGZ",
  "borders" ["CHN" "KAZ" "TJK" "UZB"],
  "capital" ["Bishkek"],
  "car" {"signs" ["KS"], "side" "right"},
  "timezones" ["UTC+06:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇰🇬",
  "gini" {"2019" 29.7},
  "fifa" "KGZ",
  "cca2" "KG"}
 {"subregion" "Eastern Europe",
  "landlocked" false,
  "latlng" [60.0 100.0],
  "area" 1.7098242E7,
  "altSpellings" ["RU" "Russian Federation" "Российская Федерация"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/4F4PpDhGJgVvLby57",
   "openStreetMaps"
   "https://www.openstreetmap.org/relation/60189#map=3/65.15/105.29"},
  "demonyms"
  {"eng" {"f" "Russian", "m" "Russian"},
   "fra" {"f" "Russe", "m" "Russe"}},
  "translations"
  {"kor" {"official" "러시아 연방", "common" "러시아"},
   "zho" {"official" "俄罗斯联邦", "common" "俄罗斯"},
   "hun" {"official" "Oroszországi Föderáció", "common" "Oroszország"},
   "rus" {"official" "Российская Федерация", "common" "Россия"},
   "swe" {"official" "Ryska federationen", "common" "Ryssland"},
   "ces" {"official" "Ruská federace", "common" "Rusko"},
   "deu" {"official" "Russische Föderation", "common" "Russland"},
   "ara" {"official" "روسيا الاتحادية", "common" "روسيا"},
   "urd" {"official" "روسی وفاق", "common" "روس"},
   "srp" {"official" "Руска Федерација", "common" "Русија"},
   "tur" {"official" "Rusya Federasyonu", "common" "Rusya"},
   "pol" {"official" "Federacja Rosyjska", "common" "Rosja"},
   "cym" {"official" "Russian Federation", "common" "Russia"},
   "hrv" {"official" "Ruska Federacija", "common" "Rusija"},
   "spa" {"official" "Federación de Rusia", "common" "Rusia"},
   "fin" {"official" "Venäjän federaatio", "common" "Venäjä"},
   "per" {"official" "فدراسیون روسیه", "common" "روسیه"},
   "nld" {"official" "Russische Federatie", "common" "Rusland"},
   "fra" {"official" "Fédération de Russie", "common" "Russie"},
   "ita" {"official" "Federazione russa", "common" "Russia"},
   "jpn" {"official" "ロシア連邦", "common" "ロシア連邦"},
   "est" {"official" "Venemaa Föderatsioon", "common" "Venemaa"},
   "por" {"official" "Federação Russa", "common" "Rússia"},
   "slk" {"official" "Ruská federácia", "common" "Rusko"},
   "bre" {"official" "Kevread Rusia", "common" "Rusia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ru.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ru.png"},
  "idd" {"suffixes" ["3" "4" "5" "8" "9"], "root" "+7"},
  "flags"
  {"svg" "https://flagcdn.com/ru.svg",
   "alt"
   "The flag of Russia is composed of three equal horizontal bands of white, blue and red.",
   "png" "https://flagcdn.com/w320/ru.png"},
  "unMember" true,
  "name"
  {"official" "Russian Federation",
   "nativeName"
   {"rus" {"official" "Российская Федерация", "common" "Россия"}},
   "common" "Russia"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "######"},
  "capitalInfo" {"latlng" [55.75 37.6]},
  "tld" [".ru" ".su" ".рф"],
  "ccn3" "643",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"rus" "Russian"},
  "cioc" "RUS",
  "currencies" {"RUB" {"name" "Russian ruble", "symbol" "₽"}},
  "independent" true,
  "population" 144104080,
  "cca3" "RUS",
  "borders"
  ["AZE"
   "BLR"
   "CHN"
   "EST"
   "FIN"
   "GEO"
   "KAZ"
   "PRK"
   "LVA"
   "LTU"
   "MNG"
   "NOR"
   "POL"
   "UKR"],
  "capital" ["Moscow"],
  "car" {"signs" ["RUS"], "side" "right"},
  "timezones"
  ["UTC+03:00"
   "UTC+04:00"
   "UTC+06:00"
   "UTC+07:00"
   "UTC+08:00"
   "UTC+09:00"
   "UTC+10:00"
   "UTC+11:00"
   "UTC+12:00"],
  "startOfWeek" "monday",
  "continents" ["Europe" "Asia"],
  "flag" "🇷🇺",
  "gini" {"2018" 37.5},
  "fifa" "RUS",
  "cca2" "RU"}
 {"subregion" "South-Eastern Asia",
  "landlocked" false,
  "latlng" [2.5 112.5],
  "area" 330803.0,
  "altSpellings" ["MY"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/qrY1PNeUXGyXDcPy6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2108121"},
  "demonyms"
  {"eng" {"f" "Malaysian", "m" "Malaysian"},
   "fra" {"f" "Malaisienne", "m" "Malaisien"}},
  "translations"
  {"kor" {"official" "말레이시아", "common" "말레이시아"},
   "zho" {"official" "马来西亚", "common" "马来西亚"},
   "hun" {"official" "Malajzia", "common" "Malajzia"},
   "rus" {"official" "Малайзия", "common" "Малайзия"},
   "swe" {"official" "Malaysia", "common" "Malaysia"},
   "ces" {"official" "Malajsie", "common" "Malajsie"},
   "deu" {"official" "Malaysia", "common" "Malaysia"},
   "ara" {"official" "ماليزيا", "common" "ماليزيا"},
   "urd" {"official" "ملائیشیا", "common" "ملائیشیا"},
   "srp" {"official" "Малезија", "common" "Малезија"},
   "tur" {"official" "Malezya", "common" "Malezya"},
   "pol" {"official" "Malezja", "common" "Malezja"},
   "cym" {"official" "Malaysia", "common" "Malaysia"},
   "hrv" {"official" "Malezija", "common" "Malezija"},
   "spa" {"official" "Malasia", "common" "Malasia"},
   "fin" {"official" "Malesia", "common" "Malesia"},
   "per" {"official" "فدراسیون مالزی", "common" "مالزی"},
   "nld" {"official" "Maleisië", "common" "Maleisië"},
   "fra" {"official" "Fédération de Malaisie", "common" "Malaisie"},
   "ita" {"official" "Malaysia", "common" "Malesia"},
   "jpn" {"official" "マレーシア", "common" "マレーシア"},
   "est" {"official" "Malaisia", "common" "Malaisia"},
   "por" {"official" "Malásia", "common" "Malásia"},
   "slk" {"official" "Malajzia", "common" "Malajzia"},
   "bre" {"official" "Malaysia", "common" "Malaysia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/my.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/my.png"},
  "idd" {"suffixes" ["0"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/my.svg",
   "alt"
   "The flag of Malaysia is composed of fourteen equal horizontal bands of red alternating with white. A blue rectangle, bearing a fly-side facing yellow crescent and a fourteen-pointed yellow star placed just outside the crescent opening, is superimposed in the canton.",
   "png" "https://flagcdn.com/w320/my.png"},
  "unMember" true,
  "name"
  {"official" "Malaysia",
   "nativeName"
   {"eng" {"official" "Malaysia", "common" "Malaysia"},
    "msa" {"official" "مليسيا", "common" "مليسيا"}},
   "common" "Malaysia"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [3.17 101.7]},
  "tld" [".my"],
  "ccn3" "458",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"eng" "English", "msa" "Malay"},
  "cioc" "MAS",
  "currencies" {"MYR" {"name" "Malaysian ringgit", "symbol" "RM"}},
  "independent" true,
  "population" 32365998,
  "cca3" "MYS",
  "borders" ["BRN" "IDN" "THA"],
  "capital" ["Kuala Lumpur"],
  "car" {"signs" ["MAL"], "side" "left"},
  "timezones" ["UTC+08:00"],
  "startOfWeek" "sunday",
  "continents" ["Asia"],
  "flag" "🇲🇾",
  "gini" {"2015" 41.1},
  "fifa" "MAS",
  "cca2" "MY"}
 {"subregion" "Middle Africa",
  "landlocked" false,
  "latlng" [1.0 7.0],
  "area" 964.0,
  "altSpellings"
  ["ST"
   "Democratic Republic of São Tomé and Príncipe"
   "Sao Tome and Principe"
   "República Democrática de São Tomé e Príncipe"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/9EUppm13RtPX9oF46",
   "openStreetMaps" "https://www.openstreetmap.org/relation/535880"},
  "demonyms"
  {"eng" {"f" "Sao Tomean", "m" "Sao Tomean"},
   "fra" {"f" "Santoméenne", "m" "Santoméen"}},
  "translations"
  {"kor" {"official" "상투메 프린시페 민주 공화국", "common" "상투메 프린시페"},
   "zho" {"official" "圣多美和普林西比民主共和国", "common" "圣多美和普林西比"},
   "hun"
   {"official" "São Tomé és Príncipe Demokratikus Köztársaság",
    "common" "São Tomé és Príncipe"},
   "rus"
   {"official" "Демократическая Республика Сан-Томе и Принсипи",
    "common" "Сан-Томе и Принсипи"},
   "swe"
   {"official" "Demokratiska republiken São Tomé och Príncipe",
    "common" "São Tomé och Príncipe"},
   "ces"
   {"official" "Demokratická republika Svatý Tomáš a Princův ostrov",
    "common" "Svatý Tomáš a Princův ostrov"},
   "deu"
   {"official" "Demokratische Republik São Tomé und Príncipe",
    "common" "São Tomé und Príncipe"},
   "ara"
   {"official" "جمهورية ساو تومي وبرينسيب الديمقراطية",
    "common" "ساو تومي وبرينسيب"},
   "urd"
   {"official" "جمہوریہ ساؤ ٹومے و پرنسپے",
    "common" "ساؤ ٹومے و پرنسپے"},
   "srp"
   {"official" "Демократска Република Сао Томе и Принсипе",
    "common" "Сао Томе и Принсипе"},
   "tur"
   {"official" "São Tomé ve Príncipe Demokratik Cumhuriyeti",
    "common" "São Tomé ve Príncipe"},
   "pol"
   {"official"
    "Demokratyczna Republika Wysp Świętego Tomasza i Książęcej",
    "common" "Wyspy Świętego Tomasza i Książęca"},
   "cym"
   {"official" "Democratic Republic of São Tomé and Príncipe",
    "common" "São Tomé and Príncipe"},
   "hrv"
   {"official" "Demokratska Republika São Tome i Principe",
    "common" "Sveti Toma i Princip"},
   "spa"
   {"official" "República Democrática de Santo Tomé y Príncipe",
    "common" "Santo Tomé y Príncipe"},
   "fin"
   {"official" "São Tomé ja Príncipen demokraattinen tasavalta",
    "common" "São Téme ja Príncipe"},
   "per"
   {"official" "جمهوری دموکراتیک سائوتومه و پرنسیپ",
    "common" "سائوتومه و پرنسیپ"},
   "nld"
   {"official" "Democratische Republiek Sao Tomé en Principe",
    "common" "Sao Tomé en Principe"},
   "fra"
   {"official" "République démocratique de São Tomé et Príncipe",
    "common" "São Tomé et Príncipe"},
   "ita"
   {"official" "Repubblica democratica di São Tomé e Príncipe",
    "common" "São Tomé e Príncipe"},
   "jpn" {"official" "サントメ·プリンシペ民主共和国", "common" "サントメ・プリンシペ"},
   "est"
   {"official" "São Tomé ja Príncipe Demokraatlik Vabariik",
    "common" "São Tomé ja Príncipe"},
   "por"
   {"official" "República Democrática de São Tomé e Príncipe",
    "common" "São Tomé e Príncipe"},
   "slk"
   {"official"
    "Demokratická republika Svätého Tomáša A princovho ostrova",
    "common" "Svätý Tomáš a Princov ostrov"},
   "bre"
   {"official" "Republik Demokratel São Tomé ha Príncipe",
    "common" "São Tomé ha Príncipe"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/st.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/st.png"},
  "idd" {"suffixes" ["39"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/st.svg",
   "alt"
   "The flag of South Sudan is composed of three equal horizontal bands of black, red with white top and bottom edges, and green. A blue equilateral triangle which spans about two-fifth the width of the field is superimposed on the hoist side with its base on the hoist end of the field. At the center of this triangle is a five-pointed yellow star.",
   "png" "https://flagcdn.com/w320/st.png"},
  "unMember" true,
  "name"
  {"official" "Democratic Republic of São Tomé and Príncipe",
   "nativeName"
   {"por"
    {"official" "República Democrática do São Tomé e Príncipe",
     "common" "São Tomé e Príncipe"}},
   "common" "São Tomé and Príncipe"},
  "capitalInfo" {"latlng" [0.34 6.73]},
  "tld" [".st"],
  "ccn3" "678",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"por" "Portuguese"},
  "cioc" "STP",
  "currencies"
  {"STN" {"name" "São Tomé and Príncipe dobra", "symbol" "Db"}},
  "independent" true,
  "population" 219161,
  "cca3" "STP",
  "capital" ["São Tomé"],
  "car" {"signs" ["STP"], "side" "right"},
  "timezones" ["UTC"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇸🇹",
  "gini" {"2017" 56.3},
  "fifa" "STP",
  "cca2" "ST"}
 {"subregion" "Southern Europe",
  "landlocked" false,
  "latlng" [35.0 33.0],
  "area" 9251.0,
  "altSpellings"
  ["CY"
   "Kýpros"
   "Kıbrıs"
   "Republic of Cyprus"
   "Κυπριακή Δημοκρατία"
   "Kıbrıs Cumhuriyeti"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/77hPBRdLid8yD5Bm7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/307787"},
  "demonyms"
  {"eng" {"f" "Cypriot", "m" "Cypriot"},
   "fra" {"f" "Chypriote", "m" "Chypriote"}},
  "translations"
  {"kor" {"official" "키프로스 공화국", "common" "키프로스"},
   "zho" {"official" "塞浦路斯共和国", "common" "塞浦路斯"},
   "hun" {"official" "Ciprusi Köztársaság", "common" "Ciprus"},
   "rus" {"official" "Республика Кипр", "common" "Кипр"},
   "swe" {"official" "Republiken Cypern", "common" "Cypern"},
   "ces" {"official" "Kyperská republika", "common" "Kypr"},
   "deu" {"official" "Republik Zypern", "common" "Zypern"},
   "ara" {"official" "جمهورية قبرص", "common" "قبرص"},
   "urd" {"official" "جمہوریہ قبرص", "common" "قبرص"},
   "srp" {"official" "Кипарска Република", "common" "Кипар"},
   "tur" {"official" "Kıbrıs Cumhuriyeti", "common" "Kıbrıs"},
   "pol" {"official" "Republika Cypryjska", "common" "Cypr"},
   "cym" {"official" "Gweriniaeth Cyprus", "common" "Cyprus"},
   "hrv" {"official" "Republika Cipar", "common" "Cipar"},
   "spa" {"official" "República de Chipre", "common" "Chipre"},
   "fin" {"official" "Kyproksen tasavalta", "common" "Kypros"},
   "per" {"official" "جمهوری قبرس", "common" "قِبرِس"},
   "nld" {"official" "Republiek Cyprus", "common" "Cyprus"},
   "fra" {"official" "République de Chypre", "common" "Chypre"},
   "ita" {"official" "Repubblica di Cipro", "common" "Cipro"},
   "jpn" {"official" "キプロス共和国", "common" "キプロス"},
   "est" {"official" "Küprose Vabariik", "common" "Küpros"},
   "por" {"official" "República de Chipre", "common" "Chipre"},
   "slk" {"official" "Cyperská republika", "common" "Cyprus"},
   "bre" {"official" "Republik Kiprenez", "common" "Kiprenez"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/cy.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/cy.png"},
  "idd" {"suffixes" ["57"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/cy.svg",
   "alt"
   "The flag of Cyprus has a white field, at the center of which is a copper-colored silhouette of the Island of Cyprus above two green olive branches crossed at the stem.",
   "png" "https://flagcdn.com/w320/cy.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Cyprus",
   "nativeName"
   {"tur" {"official" "Kıbrıs Cumhuriyeti", "common" "Kıbrıs"},
    "ell" {"official" "Δημοκρατία της Κύπρος", "common" "Κύπρος"}},
   "common" "Cyprus"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [35.17 33.37]},
  "tld" [".cy"],
  "ccn3" "196",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"tur" "Turkish", "ell" "Greek"},
  "cioc" "CYP",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 1207361,
  "cca3" "CYP",
  "capital" ["Nicosia"],
  "car" {"signs" ["CY"], "side" "left"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇨🇾",
  "gini" {"2018" 32.7},
  "fifa" "CYP",
  "cca2" "CY"}
 {"subregion" "North America",
  "landlocked" false,
  "latlng" [60.0 -95.0],
  "area" 9984670.0,
  "altSpellings" ["CA"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/jmEVLugreeqiZXxbA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1428125"},
  "demonyms"
  {"eng" {"f" "Canadian", "m" "Canadian"},
   "fra" {"f" "Canadienne", "m" "Canadien"}},
  "translations"
  {"kor" {"official" "캐나다", "common" "캐나다"},
   "zho" {"official" "加拿大", "common" "加拿大"},
   "hun" {"official" "Kanada", "common" "Kanada"},
   "rus" {"official" "Канада", "common" "Канада"},
   "swe" {"official" "Kanada", "common" "Kanada"},
   "ces" {"official" "Kanada", "common" "Kanada"},
   "deu" {"official" "Kanada", "common" "Kanada"},
   "ara" {"official" "كندا", "common" "كندا"},
   "urd" {"official" "کینیڈا", "common" "کینیڈا"},
   "srp" {"official" "Канада", "common" "Канада"},
   "tur" {"official" "Kanada", "common" "Kanada"},
   "pol" {"official" "Kanada", "common" "Kanada"},
   "cym" {"official" "Canada", "common" "Canada"},
   "hrv" {"official" "Kanada", "common" "Kanada"},
   "spa" {"official" "Canadá", "common" "Canadá"},
   "fin" {"official" "Kanada", "common" "Kanada"},
   "per" {"official" "کانادا", "common" "کانادا"},
   "nld" {"official" "Canada", "common" "Canada"},
   "fra" {"official" "Canada", "common" "Canada"},
   "ita" {"official" "Canada", "common" "Canada"},
   "jpn" {"official" "カナダ", "common" "カナダ"},
   "est" {"official" "Kanada", "common" "Kanada"},
   "por" {"official" "Canadá", "common" "Canadá"},
   "slk" {"official" "Kanada", "common" "Kanada"},
   "bre" {"official" "Kanada", "common" "Kanada"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ca.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ca.png"},
  "idd" {"suffixes" [""], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/ca.svg",
   "alt"
   "The flag of Canada is composed of a red vertical band on the hoist and fly sides and a central white square that is twice the width of the vertical bands. A large eleven-pointed red maple leaf is centered in the white square.",
   "png" "https://flagcdn.com/w320/ca.png"},
  "unMember" true,
  "name"
  {"official" "Canada",
   "nativeName"
   {"eng" {"official" "Canada", "common" "Canada"},
    "fra" {"official" "Canada", "common" "Canada"}},
   "common" "Canada"},
  "postalCode"
  {"regex"
   "^([ABCEGHJKLMNPRSTVXY]\\d[ABCEGHJKLMNPRSTVWXYZ]) ?(\\d[ABCEGHJKLMNPRSTVWXYZ]\\d)$",
   "format" "@#@ #@#"},
  "capitalInfo" {"latlng" [45.42 -75.7]},
  "tld" [".ca"],
  "ccn3" "124",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English", "fra" "French"},
  "cioc" "CAN",
  "currencies" {"CAD" {"name" "Canadian dollar", "symbol" "$"}},
  "independent" true,
  "population" 38005238,
  "cca3" "CAN",
  "borders" ["USA"],
  "capital" ["Ottawa"],
  "car" {"signs" ["CDN"], "side" "right"},
  "timezones"
  ["UTC-08:00"
   "UTC-07:00"
   "UTC-06:00"
   "UTC-05:00"
   "UTC-04:00"
   "UTC-03:30"],
  "startOfWeek" "sunday",
  "continents" ["North America"],
  "flag" "🇨🇦",
  "gini" {"2017" 33.3},
  "fifa" "CAN",
  "cca2" "CA"}
 {"subregion" "Eastern Africa",
  "landlocked" true,
  "latlng" [-13.5 34.0],
  "area" 118484.0,
  "altSpellings" ["MW" "Republic of Malawi"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/mc6z83pW9m98X2Ef6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/195290"},
  "demonyms"
  {"eng" {"f" "Malawian", "m" "Malawian"},
   "fra" {"f" "Malawienne", "m" "Malawien"}},
  "translations"
  {"kor" {"official" "말라위 공화국", "common" "말라위"},
   "zho" {"official" "马拉维共和国", "common" "马拉维"},
   "hun" {"official" "Malawi Köztársaság", "common" "Malawi"},
   "rus" {"official" "Республика Малави", "common" "Малави"},
   "swe" {"official" "Republiken Malawi", "common" "Malawi"},
   "ces" {"official" "Malawiská republika", "common" "Malawi"},
   "deu" {"official" "Republik Malawi", "common" "Malawi"},
   "ara" {"official" "جمهورية مالاوي", "common" "مالاوي"},
   "urd" {"official" "جمہوریہ ملاوی", "common" "ملاوی"},
   "srp" {"official" "Република Малави", "common" "Малави"},
   "tur" {"official" "Malavi Cumhuriyeti", "common" "Malavi"},
   "pol" {"official" "Republika Malawi", "common" "Malawi"},
   "cym" {"official" "Republic of Malawi", "common" "Malawi"},
   "hrv" {"official" "Republika Malavi", "common" "Malavi"},
   "spa" {"official" "República de Malawi", "common" "Malawi"},
   "fin" {"official" "Malawin tasavalta", "common" "Malawi"},
   "per" {"official" "جمهوری مالاوی", "common" "مالاوی"},
   "nld" {"official" "Republiek Malawi", "common" "Malawi"},
   "fra" {"official" "République du Malawi", "common" "Malawi"},
   "ita" {"official" "Repubblica del Malawi", "common" "Malawi"},
   "jpn" {"official" "マラウイ共和国", "common" "マラウイ"},
   "est" {"official" "Malawi Vabariik", "common" "Malawi"},
   "por" {"official" "República do Malawi", "common" "Malawi"},
   "slk" {"official" "Malawijská republika", "common" "Malawi"},
   "bre" {"official" "Republik Malawi", "common" "Malawi"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/mw.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/mw.png"},
  "idd" {"suffixes" ["65"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/mw.svg",
   "alt"
   "The flag of Malawi is composed of three equal horizontal bands of black, red and green. The top half of a red sun with thirty-one visible rays is centered in the black band.",
   "png" "https://flagcdn.com/w320/mw.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Malawi",
   "nativeName"
   {"nya"
    {"official" "Chalo cha Malawi, Dziko la Malaŵi",
     "common" "Malaŵi"},
    "eng" {"official" "Republic of Malawi", "common" "Malawi"}},
   "common" "Malawi"},
  "capitalInfo" {"latlng" [-13.97 33.78]},
  "tld" [".mw"],
  "ccn3" "454",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"nya" "Chewa", "eng" "English"},
  "cioc" "MAW",
  "currencies" {"MWK" {"name" "Malawian kwacha", "symbol" "MK"}},
  "independent" true,
  "population" 19129955,
  "cca3" "MWI",
  "borders" ["MOZ" "TZA" "ZMB"],
  "capital" ["Lilongwe"],
  "car" {"signs" ["MW"], "side" "left"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇲🇼",
  "gini" {"2016" 44.7},
  "fifa" "MWI",
  "cca2" "MW"}
 {"subregion" "Western Asia",
  "landlocked" false,
  "latlng" [25.0 45.0],
  "area" 2149690.0,
  "altSpellings"
  ["Saudi"
   "SA"
   "Kingdom of Saudi Arabia"
   "Al-Mamlakah al-‘Arabiyyah as-Su‘ūdiyyah"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/5PSjvdJ1AyaLFRrG9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/307584"},
  "demonyms"
  {"eng" {"f" "Saudi Arabian", "m" "Saudi Arabian"},
   "fra" {"f" "Saoudienne", "m" "Saoudien"}},
  "translations"
  {"kor" {"official" "사우디아라비아 왕국", "common" "사우디아라비아"},
   "zho" {"official" "沙特阿拉伯王国", "common" "沙特阿拉伯"},
   "hun" {"official" "Szaúd-Arábia", "common" "Szaúd-Arábia"},
   "rus"
   {"official" "Королевство Саудовская Аравия",
    "common" "Саудовская Аравия"},
   "swe"
   {"official" "Kungadömet Saudiarabien", "common" "Saudiarabien"},
   "ces"
   {"official" "Saúdskoarabské království", "common" "Saúdská Arábie"},
   "deu"
   {"official" "Königreich Saudi-Arabien", "common" "Saudi-Arabien"},
   "ara" {"official" "المملكة العربية السعودية", "common" "السعودية"},
   "urd" {"official" "مملکتِ سعودی عرب", "common" "سعودی عرب"},
   "srp"
   {"official" "Краљевина Саудијска Арабија",
    "common" "Саудијска Арабија"},
   "tur"
   {"official" "Suudi Arabistan Krallığı", "common" "Suudi Arabistan"},
   "pol"
   {"official" "Królestwo Arabii Saudyjskiej",
    "common" "Arabia Saudyjska"},
   "cym"
   {"official" "Kingdom of Saudi Arabia", "common" "Saudi Arabia"},
   "hrv"
   {"official" "Kraljevina Saudijska Arabija",
    "common" "Saudijska Arabija"},
   "spa"
   {"official" "Reino de Arabia Saudita", "common" "Arabia Saudí"},
   "fin"
   {"official" "Saudi-Arabian kuningaskunta", "common" "Saudi-Arabia"},
   "per" {"official" "پادشاهی عربی سَعودی", "common" "عربستان سعودی"},
   "nld"
   {"official" "Koninkrijk van Saoedi-Arabië",
    "common" "Saoedi-Arabië"},
   "fra"
   {"official" "Royaume d'Arabie Saoudite",
    "common" "Arabie Saoudite"},
   "ita" {"official" "Arabia Saudita", "common" "Arabia Saudita"},
   "jpn" {"official" "サウジアラビア王国", "common" "サウジアラビア"},
   "est"
   {"official" "Saudi Araabia Kuningriik", "common" "Saudi Araabia"},
   "por"
   {"official" "Reino da Arábia Saudita", "common" "Arábia Saudita"},
   "slk"
   {"official" "Saudskoarabské kráľovstvo", "common" "Saudská Arábia"},
   "bre"
   {"official" "Rouantelezh Arabia Saoudat",
    "common" "Arabia Saoudat"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/sa.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/sa.png"},
  "idd" {"suffixes" ["66"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/sa.svg",
   "alt"
   "The flag of Saudi Arabia has a green field, at the center of which is an Arabic inscription — the Shahada — in white above a white horizontal sabre with its tip pointed to the hoist side of the field.",
   "png" "https://flagcdn.com/w320/sa.png"},
  "unMember" true,
  "name"
  {"official" "Kingdom of Saudi Arabia",
   "nativeName"
   {"ara"
    {"official" "المملكة العربية السعودية",
     "common" "العربية السعودية"}},
   "common" "Saudi Arabia"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [24.65 46.7]},
  "tld" [".sa" ".السعودية"],
  "ccn3" "682",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"ara" "Arabic"},
  "cioc" "KSA",
  "currencies" {"SAR" {"name" "Saudi riyal", "symbol" "ر.س"}},
  "independent" true,
  "population" 34813867,
  "cca3" "SAU",
  "borders" ["IRQ" "JOR" "KWT" "OMN" "QAT" "ARE" "YEM"],
  "capital" ["Riyadh"],
  "car" {"signs" ["SA"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "sunday",
  "continents" ["Asia"],
  "flag" "🇸🇦",
  "fifa" "KSA",
  "cca2" "SA"}
 {"subregion" "Southeast Europe",
  "landlocked" false,
  "latlng" [44.0 18.0],
  "area" 51209.0,
  "altSpellings" ["BA" "Bosnia-Herzegovina" "Босна и Херцеговина"],
  "maps"
  {"googleMaps"
   "https://www.google.com/maps/place/Bosnia+and+Herzegovina",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2528142"},
  "demonyms"
  {"eng" {"f" "Bosnian, Herzegovinian", "m" "Bosnian, Herzegovinian"},
   "fra" {"f" "Bosnienne", "m" "Bosnien"}},
  "translations"
  {"kor" {"official" "보스니아 헤르체고비나", "common" "보스니아 헤르체고비나"},
   "zho" {"official" "波斯尼亚和黑塞哥维那", "common" "波斯尼亚和黑塞哥维那"},
   "hun"
   {"official" "Bosznia-Hercegovina", "common" "Bosznia-Hercegovina"},
   "rus"
   {"official" "Босния и Герцеговина",
    "common" "Босния и Герцеговина"},
   "swe"
   {"official" "Bosnien och Hercegovina",
    "common" "Bosnien och Hercegovina"},
   "ces"
   {"official" "Bosna a Hercegovina", "common" "Bosna a Hercegovina"},
   "deu"
   {"official" "Bosnien und Herzegowina",
    "common" "Bosnien und Herzegowina"},
   "ara"
   {"official" "جمهورية البوسنة والهرسك", "common" "البوسنة والهرسك"},
   "urd"
   {"official" "بوسنیا و ہرزیگووینا", "common" "بوسنیا و ہرزیگووینا"},
   "srp"
   {"official" "Босна и Херцеговина", "common" "Босна и Херцеговина"},
   "tur" {"official" "Bosna ve Hersek", "common" "Bosna-Hersek"},
   "pol"
   {"official" "Bośnia i Hercegowina",
    "common" "Bośnia i Hercegowina"},
   "cym"
   {"official" "Bosnia a Hercegovina",
    "common" "Bosnia a Hercegovina"},
   "hrv"
   {"official" "Bosna i Hercegovina", "common" "Bosna i Hercegovina"},
   "spa"
   {"official" "Bosnia y Herzegovina",
    "common" "Bosnia y Herzegovina"},
   "fin"
   {"official" "Bosnia ja Hertsegovina",
    "common" "Bosnia ja Hertsegovina"},
   "per" {"official" "بوسنی و هرزگوین", "common" "بوسنی و هرزگوین"},
   "nld"
   {"official" "Bosnië-Herzegovina", "common" "Bosnië en Herzegovina"},
   "fra"
   {"official" "Bosnie-et-Herzégovine", "common" "Bosnie-Herzégovine"},
   "ita"
   {"official" "Bosnia-Erzegovina", "common" "Bosnia ed Erzegovina"},
   "jpn" {"official" "ボスニア·ヘルツェゴビナ", "common" "ボスニア・ヘルツェゴビナ"},
   "est"
   {"official" "Bosnia ja Hertsegoviina",
    "common" "Bosnia ja Hertsegoviina"},
   "por"
   {"official" "Bósnia e Herzegovina",
    "common" "Bósnia e Herzegovina"},
   "slk"
   {"official" "Republika Bosny a Hercegoviny",
    "common" "Bosna a Hercegovina"},
   "bre"
   {"official" "Bosnia-ha-Herzegovina",
    "common" "Bosnia-ha-Herzegovina"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ba.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ba.png"},
  "idd" {"suffixes" ["87"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/ba.svg",
   "alt"
   "The flag of Bosnia and Herzegovina has a blue field, at the center of which is a large yellow hoist-side facing right-angled triangle that is based on the top edge and spans the height of the field. Adjacent to the hypotenuse of this triangle are nine adjoining five-pointed white stars with the top and bottom stars cut in half by the edges of the field.",
   "png" "https://flagcdn.com/w320/ba.png"},
  "unMember" true,
  "name"
  {"official" "Bosnia and Herzegovina",
   "nativeName"
   {"srp"
    {"official" "Босна и Херцеговина", "common" "Босна и Херцеговина"},
    "hrv"
    {"official" "Bosna i Hercegovina", "common" "Bosna i Hercegovina"},
    "bos"
    {"official" "Bosna i Hercegovina",
     "common" "Bosna i Hercegovina"}},
   "common" "Bosnia and Herzegovina"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [43.87 18.42]},
  "tld" [".ba"],
  "ccn3" "070",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"srp" "Serbian", "hrv" "Croatian", "bos" "Bosnian"},
  "cioc" "BIH",
  "currencies"
  {"BAM"
   {"name" "Bosnia and Herzegovina convertible mark", "symbol" "KM"}},
  "independent" true,
  "population" 3280815,
  "cca3" "BIH",
  "borders" ["HRV" "MNE" "SRB"],
  "capital" ["Sarajevo"],
  "car" {"signs" ["BIH"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇧🇦",
  "gini" {"2011" 33.0},
  "fifa" "BIH",
  "cca2" "BA"}
 {"subregion" "Eastern Africa",
  "landlocked" true,
  "latlng" [8.0 38.0],
  "area" 1104300.0,
  "altSpellings"
  ["ET"
   "ʾĪtyōṗṗyā"
   "Federal Democratic Republic of Ethiopia"
   "የኢትዮጵያ ፌዴራላዊ ዲሞክራሲያዊ ሪፐብሊክ"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/2Q4hQWCbhuZLj3fG6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192800"},
  "demonyms"
  {"eng" {"f" "Ethiopian", "m" "Ethiopian"},
   "fra" {"f" "Éthiopienne", "m" "Éthiopien"}},
  "translations"
  {"kor" {"official" "에티오피아 연방 민주 공화국", "common" "에티오피아"},
   "zho" {"official" "埃塞俄比亚联邦民主共和国", "common" "埃塞俄比亚"},
   "hun"
   {"official" "Etióp Szövetségi Demokratikus Köztársaság",
    "common" "Etiópia"},
   "rus"
   {"official" "Федеративная Демократическая Республика Эфиопия",
    "common" "Эфиопия"},
   "swe"
   {"official" "Demokratiska förbundsrepubliken Etiopien",
    "common" "Etiopien"},
   "ces"
   {"official" "Etiopská federativní demokratická republika",
    "common" "Etiopie"},
   "deu"
   {"official" "Demokratische Bundesrepublik Äthiopien",
    "common" "Äthiopien"},
   "ara"
   {"official" "جمهورية إثيوبيا الفدرالية الديموقراطية",
    "common" "إثيوبيا"},
   "urd"
   {"official" "وفاقی جمہوری جمہوریہ ایتھوپیا", "common" "ایتھوپیا"},
   "srp"
   {"official" "Савезна Демократска Република Етиопија",
    "common" "Етиопија"},
   "tur"
   {"official" "Etiyopya Federal Demokratik Cumhuriyeti",
    "common" "Etiyopya"},
   "pol"
   {"official" "Federalna Demokratyczna Republika Etiopii",
    "common" "Etiopia"},
   "cym"
   {"official" "Gweriniaeth Ddemocrataidd Ffederal Ethiopia",
    "common" "Ethiopia"},
   "hrv"
   {"official" "Savezna Demokratska Republika Etiopija",
    "common" "Etiopija"},
   "spa"
   {"official" "República Democrática Federal de Etiopía",
    "common" "Etiopía"},
   "fin"
   {"official" "Etiopian demokraattinen liittotasavalta",
    "common" "Etiopia"},
   "per"
   {"official" "جمهوری فدرال دموکراتیک اتیوپی", "common" "اِتیوپی"},
   "nld"
   {"official" "Federale Democratische Republiek Ethiopië",
    "common" "Ethiopië"},
   "fra"
   {"official" "République fédérale démocratique d'Éthiopie",
    "common" "Éthiopie"},
   "ita"
   {"official" "Repubblica federale democratica di Etiopia",
    "common" "Etiopia"},
   "jpn" {"official" "エチオピア連邦民主共和国", "common" "エチオピア"},
   "est"
   {"official" "Etioopia Demokraatlik Liitvabariik",
    "common" "Etioopia"},
   "por"
   {"official" "República Federal Democrática da Etiópia",
    "common" "Etiópia"},
   "slk"
   {"official" "Etiópska federatívna demokratická republika",
    "common" "Etiópia"},
   "bre"
   {"official" "Republik Demokratel Kevredadel Etiopia",
    "common" "Etiopia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/et.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/et.png"},
  "idd" {"suffixes" ["51"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/et.svg",
   "alt"
   "The flag of Ethiopia is composed of three equal horizontal bands of green, yellow and red, with the national emblem superimposed at the center of the field. The national emblem comprises a light blue circle bearing a golden-yellow pentagram with single yellow rays emanating from the angles between the points of the pentagram.",
   "png" "https://flagcdn.com/w320/et.png"},
  "unMember" true,
  "name"
  {"official" "Federal Democratic Republic of Ethiopia",
   "nativeName"
   {"amh" {"official" "የኢትዮጵያ ፌዴራላዊ ዲሞክራሲያዊ ሪፐብሊክ", "common" "ኢትዮጵያ"}},
   "common" "Ethiopia"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [9.03 38.7]},
  "tld" [".et"],
  "ccn3" "231",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"amh" "Amharic"},
  "cioc" "ETH",
  "currencies" {"ETB" {"name" "Ethiopian birr", "symbol" "Br"}},
  "independent" true,
  "population" 114963583,
  "cca3" "ETH",
  "borders" ["DJI" "ERI" "KEN" "SOM" "SSD" "SDN"],
  "capital" ["Addis Ababa"],
  "car" {"signs" ["ETH"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇪🇹",
  "gini" {"2015" 35.0},
  "fifa" "ETH",
  "cca2" "ET"}
 {"subregion" "Southern Europe",
  "landlocked" false,
  "latlng" [40.0 -4.0],
  "area" 505992.0,
  "altSpellings" ["ES" "Kingdom of Spain" "Reino de España"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/138JaXW8EZzRVitY9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1311341"},
  "demonyms"
  {"eng" {"f" "Spanish", "m" "Spanish"},
   "fra" {"f" "Espagnole", "m" "Espagnol"}},
  "translations"
  {"kor" {"official" "에스파냐 왕국", "common" "스페인"},
   "zho" {"official" "西班牙王国", "common" "西班牙"},
   "hun" {"official" "Spanyol Királyság", "common" "Spanyolország"},
   "rus" {"official" "Королевство Испания", "common" "Испания"},
   "swe" {"official" "Konungariket Spanien", "common" "Spanien"},
   "ces" {"official" "Španělské království", "common" "Španělsko"},
   "deu" {"official" "Königreich Spanien", "common" "Spanien"},
   "ara" {"official" "مملكة إسبانيا", "common" "إسبانيا"},
   "urd" {"official" "مملکتِ ہسپانیہ", "common" "ہسپانیہ"},
   "srp" {"official" "Краљевина Шпанија", "common" "Шпанија"},
   "tur" {"official" "İspanya Krallığı", "common" "İspanya"},
   "pol" {"official" "Królestwo Hiszpanii ", "common" "Hiszpania"},
   "cym" {"official" "Kingdom of Spain", "common" "Spain"},
   "hrv" {"official" "Kraljevina Španjolska", "common" "Španjolska"},
   "spa" {"official" "Reino de España", "common" "España"},
   "fin" {"official" "Espanjan kuningaskunta", "common" "Espanja"},
   "per" {"official" "پادشاهی اسپانیا", "common" "اسپانیا"},
   "nld" {"official" "Koninkrijk Spanje", "common" "Spanje"},
   "fra" {"official" "Royaume d'Espagne", "common" "Espagne"},
   "ita" {"official" "Regno di Spagna", "common" "Spagna"},
   "jpn" {"official" "スペイン王国", "common" "スペイン"},
   "est" {"official" "Hispaania Kuningriik", "common" "Hispaania"},
   "por" {"official" "Reino de Espanha", "common" "Espanha"},
   "slk" {"official" "Španielske kráľovstvo", "common" "Španielsko"},
   "bre" {"official" "Rouantelezh Spagn", "common" "Spagn"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/es.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/es.png"},
  "idd" {"suffixes" ["4"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/es.svg",
   "alt"
   "The flag of Spain is composed of three horizontal bands of red, yellow and red, with the yellow band twice the height of the red bands. In the yellow band is the national coat of arms offset slightly towards the hoist side of center.",
   "png" "https://flagcdn.com/w320/es.png"},
  "unMember" true,
  "name"
  {"official" "Kingdom of Spain",
   "nativeName"
   {"spa" {"official" "Reino de España", "common" "España"}},
   "common" "Spain"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [40.4 -3.68]},
  "tld" [".es"],
  "ccn3" "724",
  "status" "officially-assigned",
  "region" "Europe",
  "languages"
  {"eus" "Basque", "spa" "Spanish", "glc" "Galician", "cat" "Catalan"},
  "cioc" "ESP",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 47351567,
  "cca3" "ESP",
  "borders" ["AND" "FRA" "GIB" "PRT" "MAR"],
  "capital" ["Madrid"],
  "car" {"signs" ["E"], "side" "right"},
  "timezones" ["UTC" "UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇪🇸",
  "gini" {"2018" 34.7},
  "fifa" "ESP",
  "cca2" "ES"}
 {"subregion" "Central Europe",
  "landlocked" false,
  "latlng" [46.11666666 14.81666666],
  "area" 20273.0,
  "altSpellings" ["SI" "Republic of Slovenia" "Republika Slovenija"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/7zgFmswcCJh5L5D49",
   "openStreetMaps" "https://www.openstreetmap.org/relation/218657"},
  "demonyms"
  {"eng" {"f" "Slovene", "m" "Slovene"},
   "fra" {"f" "Slovène", "m" "Slovène"}},
  "translations"
  {"kor" {"official" "슬로베니아 공화국", "common" "슬로베니아"},
   "zho" {"official" "斯洛文尼亚共和国", "common" "斯洛文尼亚"},
   "hun" {"official" "Szlovén Köztársaság", "common" "Szlovénia"},
   "rus" {"official" "Республика Словения", "common" "Словения"},
   "swe" {"official" "Republiken Slovenien", "common" "Slovenien"},
   "ces" {"official" "Slovinská republika", "common" "Slovinsko"},
   "deu" {"official" "Republik Slowenien", "common" "Slowenien"},
   "ara" {"official" "جمهورية سلوفينيا", "common" "سلوفينيا"},
   "urd" {"official" "جمہوریہ سلووینیا", "common" "سلووینیا"},
   "srp" {"official" "Република Словенија", "common" "Словенија"},
   "tur" {"official" "Slovenya Cumhuriyeti", "common" "Slovenya"},
   "pol" {"official" "Republika Słowenii", "common" "Słowenia"},
   "cym" {"official" "Republic of Slovenia", "common" "Slovenia"},
   "hrv" {"official" "Republika Slovenija", "common" "Slovenija"},
   "spa" {"official" "República de Eslovenia", "common" "Eslovenia"},
   "fin" {"official" "Slovenian tasavalta", "common" "Slovenia"},
   "per" {"official" "جمهوری اسلوونی", "common" "اسلوونی"},
   "nld" {"official" "Republiek Slovenië", "common" "Slovenië"},
   "fra" {"official" "République de Slovénie", "common" "Slovénie"},
   "ita" {"official" "Repubblica di Slovenia", "common" "Slovenia"},
   "jpn" {"official" "スロベニア共和国", "common" "スロベニア"},
   "est" {"official" "Sloveenia Vabariik", "common" "Sloveenia"},
   "por" {"official" "República da Eslovénia", "common" "Eslovénia"},
   "slk" {"official" "Slovinská republika", "common" "Slovinsko"},
   "bre" {"official" "Republik Slovenia", "common" "Slovenia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/si.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/si.png"},
  "idd" {"suffixes" ["86"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/si.svg",
   "alt"
   "The flag of Slovenia is composed of three equal horizontal bands of white, blue and red. The national coat of arms is situated in the upper hoist side of the field centered on the boundary between the white and blue bands.",
   "png" "https://flagcdn.com/w320/si.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Slovenia",
   "nativeName"
   {"slv" {"official" "Republika Slovenija", "common" "Slovenija"}},
   "common" "Slovenia"},
  "postalCode" {"regex" "^(?:SI)*(\\d{4})$", "format" "SI- ####"},
  "capitalInfo" {"latlng" [46.05 14.52]},
  "tld" [".si"],
  "ccn3" "705",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"slv" "Slovene"},
  "cioc" "SLO",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 2100126,
  "cca3" "SVN",
  "borders" ["AUT" "HRV" "ITA" "HUN"],
  "capital" ["Ljubljana"],
  "car" {"signs" ["SLO"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇸🇮",
  "gini" {"2018" 24.6},
  "fifa" "SVN",
  "cca2" "SI"}
 {"subregion" "Western Asia",
  "landlocked" false,
  "latlng" [21.0 57.0],
  "area" 309500.0,
  "altSpellings" ["OM" "Sultanate of Oman" "Salṭanat ʻUmān"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/L2BoXoAwDDwWecnw5",
   "openStreetMaps" "https://www.openstreetmap.org/relation/305138"},
  "demonyms"
  {"eng" {"f" "Omani", "m" "Omani"},
   "fra" {"f" "Omanaise", "m" "Omanais"}},
  "translations"
  {"kor" {"official" "오만 술탄국", "common" "오만"},
   "zho" {"official" "阿曼苏丹国", "common" "阿曼"},
   "hun" {"official" "Ománi Szultanátus", "common" "Omán"},
   "rus" {"official" "Султанат Оман", "common" "Оман"},
   "swe" {"official" "Sultanatet Oman", "common" "Oman"},
   "ces" {"official" "Sultanát Omán", "common" "Omán"},
   "deu" {"official" "Sultanat Oman", "common" "Oman"},
   "ara" {"official" "سلطنة عمان", "common" "عمان"},
   "urd" {"official" "سلطنت عمان", "common" "عمان"},
   "srp" {"official" "Султанат Оман", "common" "Оман"},
   "tur" {"official" "Umman Sultanlığı", "common" "Umman"},
   "pol" {"official" "Sułtanat Omanu", "common" "Oman"},
   "cym" {"official" "Sultanate of Oman", "common" "Oman"},
   "hrv" {"official" "Sultanat Oman", "common" "Oman"},
   "spa" {"official" "Sultanato de Omán", "common" "Omán"},
   "fin" {"official" "Omanin sulttaanikunta", "common" "Oman"},
   "per" {"official" "سلطان‌نشین عُمان", "common" "عمان"},
   "nld" {"official" "Sultanaat van Oman", "common" "Oman"},
   "fra" {"official" "Sultanat d'Oman", "common" "Oman"},
   "ita" {"official" "Sultanato dell'Oman", "common" "oman"},
   "jpn" {"official" "オマーン·スルタン国", "common" "オマーン"},
   "est" {"official" "Omaani Sultaniriik", "common" "Omaan"},
   "por" {"official" "Sultanato de Omã", "common" "Omã"},
   "slk" {"official" "Ománsky sultanát", "common" "Omán"},
   "bre" {"official" "Sultanelezh Oman", "common" "Oman"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/om.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/om.png"},
  "idd" {"suffixes" ["68"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/om.svg",
   "alt"
   "The flag of Oman features a red vertical band on the hoist side that takes up about one-fourth the width of the field, and three equal horizontal bands of white, red and green adjoining the vertical band. At the top of the vertical band is the white emblem of Oman.",
   "png" "https://flagcdn.com/w320/om.png"},
  "unMember" true,
  "name"
  {"official" "Sultanate of Oman",
   "nativeName" {"ara" {"official" "سلطنة عمان", "common" "عمان"}},
   "common" "Oman"},
  "postalCode" {"regex" "^(\\d{3})$", "format" "###"},
  "capitalInfo" {"latlng" [23.62 58.58]},
  "tld" [".om"],
  "ccn3" "512",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"ara" "Arabic"},
  "cioc" "OMA",
  "currencies" {"OMR" {"name" "Omani rial", "symbol" "ر.ع."}},
  "independent" true,
  "population" 5106622,
  "cca3" "OMN",
  "borders" ["SAU" "ARE" "YEM"],
  "capital" ["Muscat"],
  "car" {"signs" ["OM"], "side" "right"},
  "timezones" ["UTC+04:00"],
  "startOfWeek" "sunday",
  "continents" ["Asia"],
  "flag" "🇴🇲",
  "fifa" "OMA",
  "cca2" "OM"}
 {"subregion" "North America",
  "landlocked" false,
  "latlng" [46.83333333 -56.33333333],
  "area" 242.0,
  "altSpellings"
  ["PM" "Collectivité territoriale de Saint-Pierre-et-Miquelon"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/bUM8Yc8pA8ghyhmt6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/3406826"},
  "demonyms"
  {"eng"
   {"f" "Saint-Pierrais, Miquelonnais",
    "m" "Saint-Pierrais, Miquelonnais"},
   "fra"
   {"f" "Saint-Pierraise, Miquelonaise",
    "m" "Saint-Pierrais, Miquelonais"}},
  "translations"
  {"kor" {"official" "생피에르 미클롱", "common" "생피에르 미클롱"},
   "zho" {"official" "圣皮埃尔和密克隆", "common" "圣皮埃尔和密克隆"},
   "hun"
   {"official" "Saint-Pierre és Miquelon",
    "common" "Saint-Pierre és Miquelon"},
   "rus"
   {"official" "Сен-Пьер и Микелон", "common" "Сен-Пьер и Микелон"},
   "swe"
   {"official" "Saint-Pierre och Miquelon",
    "common" "Saint-Pierre och Miquelon"},
   "ces"
   {"official" "Saint-Pierre a Miquelon",
    "common" "Saint-Pierre a Miquelon"},
   "deu"
   {"official" "St. Pierre und Miquelon",
    "common" "St. Pierre und Miquelon"},
   "ara" {"official" "سان بيير وميكلون", "common" "سان بيير وميكلون"},
   "urd"
   {"official" "سینٹ پیئر و میکیلون", "common" "سینٹ پیئر و میکیلون"},
   "srp"
   {"official" "Сен Пјер и Микелон", "common" "Сен Пјер и Микелон"},
   "tur"
   {"official" "Saint Pierre ve Miquelon",
    "common" "Saint Pierre ve Miquelon"},
   "pol"
   {"official" "Saint-Pierre i Miquelon",
    "common" "Saint-Pierre i Miquelon"},
   "cym"
   {"official" "Saint Pierre and Miquelon",
    "common" "Saint Pierre and Miquelon"},
   "hrv"
   {"official" "Saint Pierre i Miquelon",
    "common" "Sveti Petar i Mikelon"},
   "spa"
   {"official" "San Pedro y Miquelón",
    "common" "San Pedro y Miquelón"},
   "fin"
   {"official" "Saint-Pierre ja Miquelon",
    "common" "Saint-Pierre ja Miquelon"},
   "per" {"official" "سن-پیر-ا-میکلون", "common" "سن-پیِر و میکلُن"},
   "nld"
   {"official" "Saint-Pierre en Miquelon",
    "common" "Saint Pierre en Miquelon"},
   "fra"
   {"official" "Saint-Pierre-et-Miquelon",
    "common" "Saint-Pierre-et-Miquelon"},
   "ita"
   {"official" "Saint Pierre e Miquelon",
    "common" "Saint-Pierre e Miquelon"},
   "jpn" {"official" "サンピエール島·ミクロン島", "common" "サンピエール島・ミクロン島"},
   "est"
   {"official" "Saint-Pierre’i ja Miqueloni territoriaalühendus",
    "common" "Saint-Pierre ja Miquelon"},
   "por"
   {"official" "Saint Pierre e Miquelon",
    "common" "Saint-Pierre e Miquelon"},
   "slk"
   {"official" "Ostrovy Saint Pierre a Miquelon",
    "common" "Saint Pierre a Miquelon"},
   "bre"
   {"official" "Sant-Pêr-ha-Mikelon", "common" "Sant-Pêr-ha-Mikelon"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["08"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/pm.svg",
   "png" "https://flagcdn.com/w320/pm.png"},
  "unMember" false,
  "name"
  {"official" "Saint Pierre and Miquelon",
   "nativeName"
   {"fra"
    {"official"
     "Collectivité territoriale de Saint-Pierre-et-Miquelon",
     "common" "Saint-Pierre-et-Miquelon"}},
   "common" "Saint Pierre and Miquelon"},
  "postalCode" {"regex" "^(97500)$", "format" "#####"},
  "capitalInfo" {"latlng" [46.77 -56.18]},
  "tld" [".pm"],
  "ccn3" "666",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"fra" "French"},
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" false,
  "population" 6069,
  "cca3" "SPM",
  "capital" ["Saint-Pierre"],
  "car" {"signs" ["F"], "side" "right"},
  "timezones" ["UTC-03:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇵🇲",
  "cca2" "PM"}
 {"subregion" "Eastern Asia",
  "landlocked" false,
  "latlng" [22.16666666 113.55],
  "area" 30.0,
  "altSpellings"
  ["MO"
   "澳门"
   "Macao"
   "Macao Special Administrative Region of the People's Republic of China"
   "中華人民共和國澳門特別行政區"
   "Região Administrativa Especial de Macau da República Popular da China"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/whymRdk3dZFfAAs4A",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1867188"},
  "demonyms"
  {"eng" {"f" "Macanese", "m" "Macanese"},
   "fra" {"f" "Macanaise", "m" "Macanais"}},
  "translations"
  {"kor" {"official" "중화인민공화국 마카오 특별행정구", "common" "마카오"},
   "hun" {"official" "Makaó", "common" "Makaó"},
   "rus"
   {"official"
    "Специальный административный район Макао Китайской Народной Республики Китай",
    "common" "Макао"},
   "swe" {"official" "Macao", "common" "Macao"},
   "ces"
   {"official" "Zvláštní správní oblast Čínské lidové republiky Macao",
    "common" "Macao"},
   "deu"
   {"official" "Sonderverwaltungsregion Macau der Volksrepublik China",
    "common" "Macao"},
   "ara"
   {"official" "منطقة ماكاو الإدارية التابعة لجمهورية الصين الشعبية",
    "common" "ماكاو"},
   "urd"
   {"official" "مکاؤ عوامی جمہوریہ چین کا خصوصی انتظامی علاقہ",
    "common" "مکاؤ"},
   "srp"
   {"official"
    "Макао специјална административна област Народне Републике Кине",
    "common" "Макао"},
   "tur"
   {"official" "Çin Halk Cumhuriyeti Makao Özel İdari Bölgesi",
    "common" "Makao"},
   "pol"
   {"official"
    "Specjalny Region Administracyjny Chińskiej Republiki Ludowej Makau",
    "common" "Makau"},
   "cym"
   {"official"
    "Macao Special Administrative Region of the People's Republic of China",
    "common" "Macau"},
   "hrv"
   {"official"
    "Makao Posebnog upravnog područjaNarodne Republike Kine",
    "common" "Makao"},
   "spa"
   {"official"
    "Macao, Región Administrativa Especial de la República Popular China",
    "common" "Macao"},
   "fin"
   {"official" "Macaon Kiinan kansantasavallan erityishallintoalue",
    "common" "Macao"},
   "per" {"official" "ماکائو", "common" "ماکائو"},
   "nld"
   {"official"
    "Speciale Administratieve Regio Macau van de Volksrepubliek China",
    "common" "Macao"},
   "fra"
   {"official"
    "Région administrative spéciale de Macao de la République populaire de Chine",
    "common" "Macao"},
   "ita"
   {"official"
    "Macao Regione amministrativa speciale della Repubblica Popolare Cinese",
    "common" "Macao"},
   "jpn" {"official" "中華人民共和国マカオ特別行政区", "common" "マカオ"},
   "est" {"official" "Macau erihalduspiirkond", "common" "Macau"},
   "por"
   {"official"
    "Macau Região Administrativa Especial da República Popular da China",
    "common" "Macau"},
   "slk"
   {"official" "Macao, Špeciàlna administratívna oblasŦ",
    "common" "Macao"},
   "bre"
   {"official"
    "Rannvro velestradurel arbennik Makao eus Republik pobl Sina",
    "common" "Makao"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/mo.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/mo.png"},
  "idd" {"suffixes" ["53"], "root" "+8"},
  "flags"
  {"svg" "https://flagcdn.com/mo.svg",
   "png" "https://flagcdn.com/w320/mo.png"},
  "unMember" false,
  "name"
  {"official"
   "Macao Special Administrative Region of the People's Republic of China",
   "nativeName"
   {"zho" {"official" "中华人民共和国澳门特别行政区", "common" "澳门"},
    "por"
    {"official"
     "Região Administrativa Especial de Macau da República Popular da China",
     "common" "Macau"}},
   "common" "Macau"},
  "capitalInfo" {},
  "tld" [".mo"],
  "ccn3" "446",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"zho" "Chinese", "por" "Portuguese"},
  "currencies" {"MOP" {"name" "Macanese pataca", "symbol" "P"}},
  "independent" false,
  "population" 649342,
  "cca3" "MAC",
  "borders" ["CHN"],
  "car" {"signs" ["MO"], "side" "left"},
  "timezones" ["UTC+08:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇲🇴",
  "fifa" "MAC",
  "cca2" "MO"}
 {"subregion" "Southern Europe",
  "landlocked" true,
  "latlng" [43.76666666 12.41666666],
  "area" 61.0,
  "altSpellings"
  ["SM" "Republic of San Marino" "Repubblica di San Marino"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/rxCVJjm8dVY93RPY8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/54624"},
  "demonyms"
  {"eng" {"f" "Sammarinese", "m" "Sammarinese"},
   "fra" {"f" "Saint-Marinaise", "m" "Saint-Marinais"}},
  "translations"
  {"kor" {"official" "산마리노 공화국", "common" "산마리노"},
   "zho" {"official" "圣马力诺共和国", "common" "圣马力诺"},
   "hun" {"official" "San Marino Köztársaság", "common" "San Marino"},
   "rus"
   {"official" "Большинство Serene Республика Сан-Марино",
    "common" "Сан-Марино"},
   "swe" {"official" "Republiken San Marino", "common" "San Marino"},
   "ces" {"official" "Republika San Marino", "common" "San Marino"},
   "deu" {"official" "Republik San Marino", "common" "San Marino"},
   "ara" {"official" "جمهورية سان مارينو", "common" "سان مارينو"},
   "urd" {"official" "جمہوریہ سان مارینو", "common" "سان مارینو"},
   "srp"
   {"official" "Најузвишенија Република Сан Марино",
    "common" "Сан Марино"},
   "tur" {"official" "San Marino Cumhuriyeti", "common" "San Marino"},
   "pol" {"official" "Republika San Marino", "common" "San Marino"},
   "cym" {"official" "Republic of San Marino", "common" "San Marino"},
   "hrv"
   {"official" "Većina Serene Republika San Marino",
    "common" "San Marino"},
   "spa"
   {"official" "Serenísima República de San Marino",
    "common" "San Marino"},
   "fin"
   {"official" "San Marinon seesteinen tasavalta",
    "common" "San Marino"},
   "per" {"official" "جمهوری سان مارینو", "common" "سان مارینو"},
   "nld"
   {"official" "Meest Serene Republiek San Marino",
    "common" "San Marino"},
   "fra"
   {"official" "République de Saint-Marin", "common" "Saint-Marin"},
   "ita"
   {"official" "Serenissima Repubblica di San Marino",
    "common" "San Marino"},
   "jpn" {"official" "サンマリノのほとんどセリーヌ共和国", "common" "サンマリノ"},
   "est" {"official" "San Marino Vabariik", "common" "San Marino"},
   "por"
   {"official" "Sereníssima República de San Marino",
    "common" "San Marino"},
   "slk" {"official" "Sanmarínska republika", "common" "San Maríno"},
   "bre" {"official" "Republik San Marino", "common" "San Marino"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/sm.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/sm.png"},
  "idd" {"suffixes" ["78"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/sm.svg",
   "alt"
   "The flag of San Marino is composed of two equal horizontal bands of white and light blue, with the national coat of arms superimposed in the center.",
   "png" "https://flagcdn.com/w320/sm.png"},
  "unMember" true,
  "name"
  {"official" "Republic of San Marino",
   "nativeName"
   {"ita"
    {"official" "Repubblica di San Marino", "common" "San Marino"}},
   "common" "San Marino"},
  "postalCode" {"regex" "^(4789\\d)$", "format" "4789#"},
  "capitalInfo" {"latlng" [43.94 12.45]},
  "tld" [".sm"],
  "ccn3" "674",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"ita" "Italian"},
  "cioc" "SMR",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 33938,
  "cca3" "SMR",
  "borders" ["ITA"],
  "capital" ["City of San Marino"],
  "car" {"signs" ["RSM"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇸🇲",
  "fifa" "SMR",
  "cca2" "SM"}
 {"subregion" "Southern Africa",
  "landlocked" true,
  "latlng" [-29.5 28.5],
  "area" 30355.0,
  "altSpellings" ["LS" "Kingdom of Lesotho" "Muso oa Lesotho"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/H8gJi5mL4Cmd1SF28",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2093234"},
  "demonyms"
  {"eng" {"f" "Mosotho", "m" "Mosotho"},
   "fra" {"f" "Lésothienne", "m" "Lésothien"}},
  "translations"
  {"kor" {"official" "레소토 왕국", "common" "레소토"},
   "zho" {"official" "莱索托王国", "common" "莱索托"},
   "hun" {"official" "Lesothói Királyság", "common" "Lesotho"},
   "rus" {"official" "Королевство Лесото", "common" "Лесото"},
   "swe" {"official" "Konungariket Lesotho", "common" "Lesotho"},
   "ces" {"official" "Lesothské království", "common" "Lesotho"},
   "deu" {"official" "Königreich Lesotho", "common" "Lesotho"},
   "ara" {"official" "مملكة ليسوتو", "common" "ليسوتو"},
   "urd" {"official" "مملکتِ لیسوتھو", "common" "لیسوتھو"},
   "srp" {"official" "Краљевина Лесото", "common" "Лесото"},
   "tur" {"official" "Lesotho Krallığı", "common" "Lesotho"},
   "pol" {"official" "Królestwo Lesotho", "common" "Lesotho"},
   "cym" {"official" "Kingdom of Lesotho", "common" "Lesotho"},
   "hrv" {"official" "Kraljevina Lesoto", "common" "Lesoto"},
   "spa" {"official" "Reino de Lesotho", "common" "Lesotho"},
   "fin" {"official" "Lesothon kuningaskunta", "common" "Lesotho"},
   "per" {"official" "پادشاهی لسوتو", "common" "لسوتو"},
   "nld" {"official" "Koninkrijk Lesotho", "common" "Lesotho"},
   "fra" {"official" "Royaume du Lesotho", "common" "Lesotho"},
   "ita" {"official" "Regno del Lesotho", "common" "Lesotho"},
   "jpn" {"official" "レソト王国", "common" "レソト"},
   "est" {"official" "Lesotho Kuningriik", "common" "Lesotho"},
   "por" {"official" "Reino do Lesoto", "common" "Lesoto"},
   "slk" {"official" "Lesothské kráľovstvo", "common" "Lesotho"},
   "bre" {"official" "Rouantelezh Lesotho", "common" "Lesotho"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ls.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ls.png"},
  "idd" {"suffixes" ["66"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/ls.svg",
   "alt"
   "The flag of Lesotho is composed of three horizontal bands of blue, white and green in the ratio of 3:4:3. A black mokorotlo — a Basotho hat — is centered in the white band.",
   "png" "https://flagcdn.com/w320/ls.png"},
  "unMember" true,
  "name"
  {"official" "Kingdom of Lesotho",
   "nativeName"
   {"sot" {"official" "Kingdom of Lesotho", "common" "Lesotho"},
    "eng" {"official" "Kingdom of Lesotho", "common" "Lesotho"}},
   "common" "Lesotho"},
  "postalCode" {"regex" "^(\\d{3})$", "format" "###"},
  "capitalInfo" {"latlng" [-29.32 27.48]},
  "tld" [".ls"],
  "ccn3" "426",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"sot" "Sotho", "eng" "English"},
  "cioc" "LES",
  "currencies"
  {"ZAR" {"name" "South African rand", "symbol" "R"},
   "LSL" {"name" "Lesotho loti", "symbol" "L"}},
  "independent" true,
  "population" 2142252,
  "cca3" "LSO",
  "borders" ["ZAF"],
  "capital" ["Maseru"],
  "car" {"signs" ["LS"], "side" "left"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇱🇸",
  "gini" {"2017" 44.9},
  "fifa" "LES",
  "cca2" "LS"}
 {"subregion" "Micronesia",
  "landlocked" false,
  "latlng" [9.0 168.0],
  "area" 181.0,
  "altSpellings"
  ["MH" "Republic of the Marshall Islands" "Aolepān Aorōkin M̧ajeļ"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/A4xLi1XvcX88gi3W8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/571771"},
  "demonyms"
  {"eng" {"f" "Marshallese", "m" "Marshallese"},
   "fra" {"f" "Marshallaise", "m" "Marshallais"}},
  "translations"
  {"kor" {"official" "마셜 제도 공화국", "common" "마셜 제도"},
   "zho" {"official" "马绍尔群岛共和国", "common" "马绍尔群岛"},
   "hun"
   {"official" "Marshall-szigetek", "common" "Marshall-szigetek"},
   "rus"
   {"official" "Республика Маршалловы острова",
    "common" "Маршалловы Острова"},
   "swe"
   {"official" "Republiken Marshallöarna", "common" "Marshallöarna"},
   "ces"
   {"official" "Republika Marshallovy ostrovy",
    "common" "Marshallovy ostrovy"},
   "deu"
   {"official" "Republik Marshallinseln", "common" "Marshallinseln"},
   "ara" {"official" "جمهورية جزر مارشال", "common" "جزر مارشال"},
   "urd" {"official" "جمہوریہ جزائر مارشل", "common" "جزائر مارشل"},
   "srp"
   {"official" "Република Маршалска Острва",
    "common" "Маршалска Острва"},
   "tur"
   {"official" "Marshall Adaları Cumhuriyeti",
    "common" "Marshall Adaları"},
   "pol"
   {"official" "Republika Wysp Marshalla", "common" "Wyspy Marshalla"},
   "cym"
   {"official" "Republic of the Marshall Islands",
    "common" "Marshall Islands"},
   "hrv"
   {"official" "Republika Maršalovi Otoci",
    "common" "Maršalovi Otoci"},
   "spa"
   {"official" "República de las Islas Marshall",
    "common" "Islas Marshall"},
   "fin"
   {"official" "Marshallinsaarten tasavalta",
    "common" "Marshallinsaaret"},
   "per" {"official" "جمهوری جزایر مارشال", "common" "جزایر مارشال"},
   "nld"
   {"official" "Republiek van de Marshall-eilanden",
    "common" "Marshalleilanden"},
   "fra"
   {"official" "République des Îles Marshall",
    "common" "Îles Marshall"},
   "ita"
   {"official" "Repubblica delle Isole Marshall",
    "common" "Isole Marshall"},
   "jpn" {"official" "マーシャル諸島共和国", "common" "マーシャル諸島"},
   "est"
   {"official" "Marshalli Saarte Vabariik",
    "common" "Marshalli Saared"},
   "por"
   {"official" "República das Ilhas Marshall",
    "common" "Ilhas Marshall"},
   "slk"
   {"official" "Republika Marshallových ostrovov",
    "common" "Marshallove ostrovy"},
   "bre"
   {"official" "Republik Inizi Marshall", "common" "Inizi Marshall"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/mh.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/mh.png"},
  "idd" {"suffixes" ["92"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/mh.svg",
   "alt"
   "The flag of Marshall Islands has a blue field with two broadening adjacent diagonal bands of orange and white that extend from the lower hoist-side corner to the upper fly-side corner of the field. A large white star with twenty-four rays — four large rays at the cardinal points and twenty smaller rays — is situated in the upper hoist-side corner above the diagonal bands.",
   "png" "https://flagcdn.com/w320/mh.png"},
  "unMember" true,
  "name"
  {"official" "Republic of the Marshall Islands",
   "nativeName"
   {"eng"
    {"official" "Republic of the Marshall Islands",
     "common" "Marshall Islands"},
    "mah"
    {"official" "Republic of the Marshall Islands",
     "common" "M̧ajeļ"}},
   "common" "Marshall Islands"},
  "capitalInfo" {"latlng" [7.1 171.38]},
  "tld" [".mh"],
  "ccn3" "584",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"eng" "English", "mah" "Marshallese"},
  "cioc" "MHL",
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" true,
  "population" 59194,
  "cca3" "MHL",
  "capital" ["Majuro"],
  "car" {"signs" ["MH"], "side" "right"},
  "timezones" ["UTC+12:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇲🇭",
  "cca2" "MH"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [18.033333 -63.05],
  "area" 34.0,
  "altSpellings" ["SX" "Sint Maarten (Dutch part)"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/DjvcESy1a1oGEZuNA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1231790"},
  "demonyms"
  {"eng" {"f" "St. Maartener", "m" "St. Maartener"},
   "fra" {"f" "Saint-Martinoise", "m" "Saint-Martinois"}},
  "translations"
  {"kor" {"official" "신트마르턴", "common" "신트마르턴"},
   "zho" {"official" "圣马丁岛", "common" "圣马丁岛"},
   "hun" {"official" "Sint Maarten", "common" "Sint Maarten"},
   "rus" {"official" "Синт-Маартен", "common" "Синт-Мартен"},
   "swe" {"official" "Sint Maarten", "common" "Sint Maarten"},
   "ces"
   {"official" "Svatý Martin", "common" "Svatý Martin (Nizozemsko)"},
   "deu" {"official" "Sint Maarten", "common" "Sint Maarten"},
   "ara" {"official" "سينت مارتن", "common" "سينت مارتن"},
   "urd" {"official" "سنٹ مارٹن", "common" "سنٹ مارٹن"},
   "srp" {"official" "Свети Мартин", "common" "Свети Мартин"},
   "tur" {"official" "Sint Maarten", "common" "Sint Maarten"},
   "pol" {"official" "Sint Maarten", "common" "Sint Maarten"},
   "cym" {"official" "Sint Maarten", "common" "Sint Maarten"},
   "hrv" {"official" "Sveti Martin", "common" "Sveti Martin"},
   "spa" {"official" "Sint Maarten", "common" "Sint Maarten"},
   "fin" {"official" "Sint Maarten", "common" "Sint Maarten"},
   "per" {"official" "سن مارتن", "common" "سن مارتن"},
   "nld" {"official" "Sint Maarten", "common" "Sint Maarten"},
   "fra" {"official" "Sint Maarten", "common" "Saint-Martin"},
   "ita" {"official" "Sint Maarten", "common" "Sint Maarten"},
   "jpn" {"official" "シントマールテン島", "common" "シント・マールテン"},
   "est" {"official" "Sint Maarten", "common" "Sint Maarten"},
   "por" {"official" "Sint Maarten", "common" "São Martinho"},
   "slk" {"official" "Sint Maarten", "common" "Sint Maarten"},
   "bre" {"official" "Sint Maarten", "common" "Sint Maarten"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["721"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/sx.svg",
   "png" "https://flagcdn.com/w320/sx.png"},
  "unMember" false,
  "name"
  {"official" "Sint Maarten",
   "nativeName"
   {"eng" {"official" "Sint Maarten", "common" "Sint Maarten"},
    "nld" {"official" "Sint Maarten", "common" "Sint Maarten"},
    "fra" {"official" "Saint-Martin", "common" "Saint-Martin"}},
   "common" "Sint Maarten"},
  "capitalInfo" {"latlng" [18.02 -63.03]},
  "tld" [".sx"],
  "ccn3" "534",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English", "nld" "Dutch", "fra" "French"},
  "currencies"
  {"ANG" {"name" "Netherlands Antillean guilder", "symbol" "ƒ"}},
  "independent" false,
  "population" 40812,
  "cca3" "SXM",
  "borders" ["MAF"],
  "capital" ["Philipsburg"],
  "car" {"signs" ["SX"], "side" "right"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇸🇽",
  "cca2" "SX"}
 {"subregion" "Northern Europe",
  "landlocked" false,
  "latlng" [65.0 -18.0],
  "area" 103000.0,
  "altSpellings"
  ["IS" "Island" "Republic of Iceland" "Lýðveldið Ísland"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/WxFWSQuc3oamNxoE6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/299133"},
  "demonyms"
  {"eng" {"f" "Icelander", "m" "Icelander"},
   "fra" {"f" "Islandaise", "m" "Islandais"}},
  "translations"
  {"kor" {"official" "아이슬란드 공화국", "common" "아이슬란드"},
   "zho" {"official" "冰岛", "common" "冰岛"},
   "hun" {"official" "Izland", "common" "Izland"},
   "rus" {"official" "Исландия", "common" "Исландия"},
   "swe" {"official" "Island", "common" "Island"},
   "ces" {"official" "Island", "common" "Island"},
   "deu" {"official" "Island", "common" "Island"},
   "ara" {"official" "آيسلندا", "common" "آيسلندا"},
   "urd" {"official" "آئس لینڈ", "common" "آئس لینڈ"},
   "srp" {"official" "Исланд", "common" "Исланд"},
   "tur" {"official" "İzlanda", "common" "İzlanda"},
   "pol" {"official" "Republika Islandii", "common" "Islandia"},
   "cym" {"official" "Iceland", "common" "Iceland"},
   "hrv" {"official" "Island", "common" "Island"},
   "spa" {"official" "Islandia", "common" "Islandia"},
   "fin" {"official" "Islanti", "common" "Islanti"},
   "per" {"official" "جمهوری ایسلند", "common" "ایسلند"},
   "nld" {"official" "IJsland", "common" "IJsland"},
   "fra" {"official" "République d'Islande", "common" "Islande"},
   "ita" {"official" "Islanda", "common" "Islanda"},
   "jpn" {"official" "アイスランド", "common" "アイスランド"},
   "est" {"official" "Islandi Vabariik", "common" "Island"},
   "por" {"official" "Islândia", "common" "Islândia"},
   "slk" {"official" "Islandská republika", "common" "Island"},
   "bre" {"official" "Island", "common" "Island"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/is.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/is.png"},
  "idd" {"suffixes" ["54"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/is.svg",
   "alt"
   "The flag of Iceland has a blue field with a large white-edged red cross that extends to the edges of the field. The vertical part of this cross is offset towards the hoist side.",
   "png" "https://flagcdn.com/w320/is.png"},
  "unMember" true,
  "name"
  {"official" "Iceland",
   "nativeName" {"isl" {"official" "Ísland", "common" "Ísland"}},
   "common" "Iceland"},
  "postalCode" {"regex" "^(\\d{3})$", "format" "###"},
  "capitalInfo" {"latlng" [64.15 -21.95]},
  "tld" [".is"],
  "ccn3" "352",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"isl" "Icelandic"},
  "cioc" "ISL",
  "currencies" {"ISK" {"name" "Icelandic króna", "symbol" "kr"}},
  "independent" true,
  "population" 366425,
  "cca3" "ISL",
  "capital" ["Reykjavik"],
  "car" {"signs" ["IS"], "side" "right"},
  "timezones" ["UTC"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇮🇸",
  "gini" {"2017" 26.1},
  "fifa" "ISL",
  "cca2" "IS"}
 {"subregion" "Western Europe",
  "landlocked" true,
  "latlng" [49.75 6.16666666],
  "area" 2586.0,
  "altSpellings"
  ["LU"
   "Grand Duchy of Luxembourg"
   "Grand-Duché de Luxembourg"
   "Großherzogtum Luxemburg"
   "Groussherzogtum Lëtzebuerg"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/L6b2AgndgHprt2Ko9",
   "openStreetMaps"
   "https://www.openstreetmap.org/relation/2171347#map=10/49.8167/6.1335"},
  "demonyms"
  {"eng" {"f" "Luxembourger", "m" "Luxembourger"},
   "fra" {"f" "Luxembourgeoise", "m" "Luxembourgeois"}},
  "translations"
  {"kor" {"official" "룩셈부르크 대공국", "common" "룩셈부르크"},
   "zho" {"official" "卢森堡大公国", "common" "卢森堡"},
   "hun" {"official" "Luxemburgi Nagyhercegség", "common" "Luxemburg"},
   "rus"
   {"official" "Великое Герцогство Люксембург", "common" "Люксембург"},
   "swe"
   {"official" "Storhertigdömet Luxemburg", "common" "Luxemburg"},
   "ces"
   {"official" "Lucemburské velkovévodství", "common" "Lucembursko"},
   "deu" {"official" "Großherzogtum Luxemburg,", "common" "Luxemburg"},
   "ara" {"official" "دوقية لوكسمبورغ", "common" "لوكسمبورغ"},
   "urd" {"official" "دوقیہ کبیرلکسمبرگ", "common" "لکسمبرگ"},
   "srp"
   {"official" "Велико Војводство Луксембург", "common" "Луксембург"},
   "tur"
   {"official" "Lüksemburg Büyük Dükalığı", "common" "Lüksemburg"},
   "pol"
   {"official" "Wielkie Księstwo Luksemburga", "common" "Luksemburg"},
   "cym"
   {"official" "Grand Duchy of Luxembourg", "common" "Luxembourg"},
   "hrv"
   {"official" "Veliko Vojvodstvo Luksemburg", "common" "Luksemburg"},
   "spa"
   {"official" "Gran Ducado de Luxemburgo", "common" "Luxemburgo"},
   "fin"
   {"official" "Luxemburgin suurherttuakunta", "common" "Luxemburg"},
   "per" {"official" "دوک‌نشین لوکزامبورگ", "common" "لوکزامبورگ"},
   "nld" {"official" "Groothertogdom Luxemburg", "common" "Luxemburg"},
   "fra"
   {"official" "Grand-Duché de Luxembourg", "common" "Luxembourg"},
   "ita"
   {"official" "Granducato di Lussemburgo", "common" "Lussemburgo"},
   "jpn" {"official" "ルクセンブルク大公国", "common" "ルクセンブルク"},
   "est"
   {"official" "Luksemburgi Suurhertsogiriik", "common" "Luksemburg"},
   "por"
   {"official" "Grão-Ducado do Luxemburgo", "common" "Luxemburgo"},
   "slk"
   {"official" "Luxemburské veľkovojvodstvo", "common" "Luxembursko"},
   "bre"
   {"official" "Dugelezh Veur Luksembourg", "common" "Luksembourg"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/lu.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/lu.png"},
  "idd" {"suffixes" ["52"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/lu.svg",
   "alt"
   "The flag of Luxembourg is composed of three equal horizontal bands of red, white and light blue.",
   "png" "https://flagcdn.com/w320/lu.png"},
  "unMember" true,
  "name"
  {"official" "Grand Duchy of Luxembourg",
   "nativeName"
   {"deu" {"official" "Großherzogtum Luxemburg", "common" "Luxemburg"},
    "ltz"
    {"official" "Groussherzogtum Lëtzebuerg", "common" "Lëtzebuerg"},
    "fra"
    {"official" "Grand-Duché de Luxembourg", "common" "Luxembourg"}},
   "common" "Luxembourg"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [49.6 6.12]},
  "tld" [".lu"],
  "ccn3" "442",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"deu" "German", "ltz" "Luxembourgish", "fra" "French"},
  "cioc" "LUX",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 632275,
  "cca3" "LUX",
  "borders" ["BEL" "FRA" "DEU"],
  "capital" ["Luxembourg"],
  "car" {"signs" ["L"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇱🇺",
  "gini" {"2018" 35.4},
  "fifa" "LUX",
  "cca2" "LU"}
 {"subregion" "South America",
  "landlocked" false,
  "latlng" [-34.0 -64.0],
  "area" 2780400.0,
  "altSpellings" ["AR" "Argentine Republic" "República Argentina"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/Z9DXNxhf2o93kvyc6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/286393"},
  "demonyms"
  {"eng" {"f" "Argentine", "m" "Argentine"},
   "fra" {"f" "Argentine", "m" "Argentin"}},
  "translations"
  {"kor" {"official" "아르헨티나 공화국", "common" "아르헨티나"},
   "zho" {"official" "阿根廷共和国", "common" "阿根廷"},
   "hun" {"official" "Argentin Köztársaság", "common" "Argentína"},
   "rus" {"official" "Аргентинская Республика", "common" "Аргентина"},
   "swe" {"official" "Republiken Argentina", "common" "Argentina"},
   "ces" {"official" "Argentinská republika", "common" "Argentina"},
   "deu" {"official" "Argentinische Republik", "common" "Argentinien"},
   "ara" {"official" "جمهورية الأرجنتين", "common" "الأرجنتين"},
   "urd" {"official" "جمہوریہ ارجنٹائن", "common" "ارجنٹائن"},
   "srp" {"official" "Аргентинска Република", "common" "Аргентина"},
   "tur" {"official" "Arjantin Cumhuriyeti", "common" "Arjantin"},
   "pol" {"official" "Republika Argentyńska", "common" "Argentyna"},
   "cym" {"official" "Gweriniaeth yr Ariannin", "common" "Ariannin"},
   "hrv" {"official" "Argentinski Republika", "common" "Argentina"},
   "spa" {"official" "República Argentina", "common" "Argentina"},
   "fin" {"official" "Argentiinan tasavalta", "common" "Argentiina"},
   "per" {"official" "جمهوری آرژانتین", "common" "آرژانتین"},
   "nld" {"official" "Argentijnse Republiek", "common" "Argentinië"},
   "fra" {"official" "République argentine", "common" "Argentine"},
   "ita" {"official" "Repubblica Argentina", "common" "Argentina"},
   "jpn" {"official" "アルゼンチン共和国", "common" "アルゼンチン"},
   "est" {"official" "Argentina Vabariik", "common" "Argentina"},
   "por" {"official" "República Argentina", "common" "Argentina"},
   "slk" {"official" "Argentínska republika", "common" "Argentína"},
   "bre" {"official" "Republik Arc'hantina", "common" "Arc'hantina"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ar.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ar.png"},
  "idd" {"suffixes" ["4"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/ar.svg",
   "alt"
   "The flag of Argentina features three equal horizontal bands of light blue, white and light blue. A brown-edged golden sun is centered in the white band.",
   "png" "https://flagcdn.com/w320/ar.png"},
  "unMember" true,
  "name"
  {"official" "Argentine Republic",
   "nativeName"
   {"spa" {"official" "República Argentina", "common" "Argentina"},
    "grn" {"official" "Argentine Republic", "common" "Argentina"}},
   "common" "Argentina"},
  "postalCode"
  {"regex" "^([A-Z]\\d{4}[A-Z]{3})$", "format" "@####@@@"},
  "capitalInfo" {"latlng" [-34.58 -58.67]},
  "tld" [".ar"],
  "ccn3" "032",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"spa" "Spanish", "grn" "Guaraní"},
  "cioc" "ARG",
  "currencies" {"ARS" {"name" "Argentine peso", "symbol" "$"}},
  "independent" true,
  "population" 45376763,
  "cca3" "ARG",
  "borders" ["BOL" "BRA" "CHL" "PRY" "URY"],
  "capital" ["Buenos Aires"],
  "car" {"signs" ["RA"], "side" "right"},
  "timezones" ["UTC-03:00"],
  "startOfWeek" "monday",
  "continents" ["South America"],
  "flag" "🇦🇷",
  "gini" {"2019" 42.9},
  "fifa" "ARG",
  "cca2" "AR"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [21.75 -71.58333333],
  "area" 948.0,
  "altSpellings" ["TC"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/R8VUDQfwZiFtvmyn8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/547479"},
  "demonyms"
  {"eng"
   {"f" "Turks and Caicos Islander", "m" "Turks and Caicos Islander"}},
  "translations"
  {"kor" {"official" "터크스 케이커스 제도", "common" "터크스 케이커스 제도"},
   "zho" {"official" "特克斯和凯科斯群岛", "common" "特克斯和凯科斯群岛"},
   "hun"
   {"official" "Turks- és Caicos-szigetek",
    "common" "Turks- és Caicos-szigetek"},
   "rus"
   {"official" "Теркс и Кайкос острова", "common" "Теркс и Кайкос"},
   "swe"
   {"official" "Turks- och Caicosöarna",
    "common" "Turks- och Caicosöarna"},
   "ces" {"official" "Turks a Caicos", "common" "Turks a Caicos"},
   "deu"
   {"official" "Turks und Caicos Inseln",
    "common" "Turks-und Caicosinseln"},
   "ara"
   {"official" "جزر توركس وكايكوس", "common" "جزر توركس وكايكوس"},
   "urd"
   {"official" "جزائر کیکس و ترکیہ", "common" "جزائر کیکس و ترکیہ"},
   "srp"
   {"official" "Острва Теркс и Кејкос", "common" "Теркс и Кејкос"},
   "tur"
   {"official" "Turks ve Caicos Adaları",
    "common" "Turks ve Caicos Adaları"},
   "pol" {"official" "Turks i Caicos", "common" "Turks i Caicos"},
   "cym"
   {"official" "Turks and Caicos Islands",
    "common" "Turks and Caicos Islands"},
   "hrv"
   {"official" "Otoci Turks i Caicos",
    "common" "Otoci Turks i Caicos"},
   "spa"
   {"official" "Islas Turcas y Caicos",
    "common" "Islas Turks y Caicos"},
   "fin"
   {"official" "Turks-ja Caicossaaret",
    "common" "Turks-ja Caicossaaret"},
   "per"
   {"official" "جزایر تورکس و کایکوس",
    "common" "جزایر تورکس و کایکوس"},
   "nld"
   {"official" "Turks-en Caicoseilanden",
    "common" "Turks-en Caicoseilanden"},
   "fra"
   {"official" "Îles Turques et Caïques",
    "common" "Îles Turques-et-Caïques"},
   "ita"
   {"official" "Turks e Caicos", "common" "Isole Turks e Caicos"},
   "jpn" {"official" "タークス·カイコス諸島", "common" "タークス・カイコス諸島"},
   "est"
   {"official" "Turksi ja Caicose saared", "common" "Turks ja Caicos"},
   "por"
   {"official" "Ilhas Turks e Caicos",
    "common" "Ilhas Turks e Caicos"},
   "slk"
   {"official" "Ostrovy Turks a Caicos", "common" "Turks a Caicos"},
   "bre"
   {"official" "Inizi Turks ha Caicos",
    "common" "Inizi Turks ha Caicos"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["649"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/tc.svg",
   "png" "https://flagcdn.com/w320/tc.png"},
  "unMember" false,
  "name"
  {"official" "Turks and Caicos Islands",
   "nativeName"
   {"eng"
    {"official" "Turks and Caicos Islands",
     "common" "Turks and Caicos Islands"}},
   "common" "Turks and Caicos Islands"},
  "postalCode" {"regex" "^(TKCA 1ZZ)$", "format" "TKCA 1ZZ"},
  "capitalInfo" {"latlng" [21.46 -71.14]},
  "tld" [".tc"],
  "ccn3" "796",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" false,
  "population" 38718,
  "cca3" "TCA",
  "capital" ["Cockburn Town"],
  "car" {"signs" ["GB"], "side" "left"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇹🇨",
  "fifa" "TCA",
  "cca2" "TC"}
 {"subregion" "Micronesia",
  "landlocked" false,
  "latlng" [-0.53333333 166.91666666],
  "area" 21.0,
  "altSpellings"
  ["NR"
   "Naoero"
   "Pleasant Island"
   "Republic of Nauru"
   "Ripublik Naoero"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/kyAGw6XEJgjSMsTK7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/571804"},
  "demonyms"
  {"eng" {"f" "Nauruan", "m" "Nauruan"},
   "fra" {"f" "Nauruane", "m" "Nauruan"}},
  "translations"
  {"kor" {"official" "나우루 공화국", "common" "나우루"},
   "zho" {"official" "瑙鲁共和国", "common" "瑙鲁"},
   "hun" {"official" "Naurui Köztársaság", "common" "Nauru"},
   "rus" {"official" "Республика Науру", "common" "Науру"},
   "swe" {"official" "Republiken Nauru", "common" "Nauru"},
   "ces" {"official" "Republika Nauru", "common" "Nauru"},
   "deu" {"official" "Republik Nauru", "common" "Nauru"},
   "ara" {"official" "جمهورية ناورو", "common" "ناورو"},
   "urd" {"official" "جمہوریہ ناورو", "common" "ناورو"},
   "srp" {"official" "Република Науру", "common" "Науру"},
   "tur" {"official" "Nauru Cumhuriyeti", "common" "Nauru"},
   "pol" {"official" "Republika Nauru", "common" "Nauru"},
   "cym" {"official" "Republic of Nauru", "common" "Nauru"},
   "hrv" {"official" "Republika Nauru", "common" "Nauru"},
   "spa" {"official" "República de Nauru", "common" "Nauru"},
   "fin" {"official" "Naurun tasavalta", "common" "Nauru"},
   "per" {"official" "جمهوری نائورو", "common" "نائورو"},
   "nld" {"official" "Republiek Nauru", "common" "Nauru"},
   "fra" {"official" "République de Nauru", "common" "Nauru"},
   "ita" {"official" "Repubblica di Nauru", "common" "Nauru"},
   "jpn" {"official" "ナウル共和国", "common" "ナウル"},
   "est" {"official" "Nauru Vabariik", "common" "Nauru"},
   "por" {"official" "República de Nauru", "common" "Nauru"},
   "slk" {"official" "Naurská republika", "common" "Nauru"},
   "bre" {"official" "Republik Nauru", "common" "Nauru"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/nr.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/nr.png"},
  "idd" {"suffixes" ["74"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/nr.svg",
   "alt"
   "The flag of Nauru has a dark blue field with a thin yellow horizontal band across the center and a large white twelve-pointed star beneath the horizontal band on the hoist side of the field.",
   "png" "https://flagcdn.com/w320/nr.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Nauru",
   "nativeName"
   {"nau" {"official" "Republic of Nauru", "common" "Nauru"},
    "eng" {"official" "Republic of Nauru", "common" "Nauru"}},
   "common" "Nauru"},
  "capitalInfo" {"latlng" [-0.55 166.92]},
  "tld" [".nr"],
  "ccn3" "520",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"nau" "Nauru", "eng" "English"},
  "cioc" "NRU",
  "currencies" {"AUD" {"name" "Australian dollar", "symbol" "$"}},
  "independent" true,
  "population" 10834,
  "cca3" "NRU",
  "capital" ["Yaren"],
  "car" {"signs" ["NAU"], "side" "left"},
  "timezones" ["UTC+12:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇳🇷",
  "gini" {"2012" 34.8},
  "cca2" "NR"}
 {"subregion" "Australia and New Zealand",
  "landlocked" false,
  "latlng" [12.1642 96.871],
  "area" 14.0,
  "altSpellings" ["CC" "Keeling Islands" "Cocos Islands"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/3eCdKVpVfMcZyKcK6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/82636"},
  "demonyms" {"eng" {"f" "Cocos Islander", "m" "Cocos Islander"}},
  "translations"
  {"kor" {"official" "코코스 제도", "common" "코코스 제도"},
   "zho" {"official" "科科斯", "common" "科科斯"},
   "hun" {"official" "Kókusz-szigetek", "common" "Kókusz-szigetek"},
   "rus"
   {"official" "Территория Кокосовые (Килинг) острова",
    "common" "Кокосовые острова"},
   "swe" {"official" "Kokosöarna", "common" "Kokosöarna"},
   "ces" {"official" "Kokosové ostrovy", "common" "Kokosové ostrovy"},
   "deu"
   {"official" "Gebiet der Kokos- (Keeling-) Inseln",
    "common" "Kokosinseln"},
   "ara" {"official" "إقليم جزر كوكوس", "common" "جزر كوكوس"},
   "urd" {"official" "جزائر (کیلنگ) کوکوس", "common" "جزائر کوکوس"},
   "srp"
   {"official" "Кокосова (Килинг) Острва", "common" "Кокосова Острва"},
   "tur"
   {"official" "Cocos (Keeling) Adaları",
    "common" "Cocos (Keeling) Adaları"},
   "pol" {"official" "Wyspy Kokosowe", "common" "Wyspy Kokosowe"},
   "cym"
   {"official" "Tiriogaeth yr Ynysoedd Cocos (Keeling)",
    "common" "Ynysoedd Cocos"},
   "hrv"
   {"official" "Teritoriju Kokosovi (Keeling) Islands",
    "common" "Kokosovi Otoci"},
   "spa"
   {"official" "Territorio de los (Keeling) Islas Cocos",
    "common" "Islas Cocos o Islas Keeling"},
   "fin" {"official" "Kookossaaret", "common" "Kookossaaret"},
   "per" {"official" "جزایر کوکوس", "common" "جزایر کوکوس"},
   "nld"
   {"official" "Grondgebied van de Eilanden Cocos (Keeling )",
    "common" "Cocoseilanden"},
   "fra"
   {"official" "Territoire des îles Cocos (Keeling)",
    "common" "Îles Cocos"},
   "ita"
   {"official" "Territorio della (Keeling) Isole Cocos",
    "common" "Isole Cocos e Keeling"},
   "jpn" {"official" "ココス諸島の領土", "common" "ココス(キーリング)諸島"},
   "est" {"official" "Kookossaarte ala", "common" "Kookossaared"},
   "por"
   {"official" "Território dos Cocos (Keeling)",
    "common" "Ilhas Cocos (Keeling)"},
   "slk" {"official" "Kokosové ostrovy", "common" "Kokosové ostrovy"},
   "bre"
   {"official" "Tiriad Inizi Cocos (Keeling)",
    "common" "Inizi Cocos (Keeling)"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["1"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/cc.svg",
   "png" "https://flagcdn.com/w320/cc.png"},
  "unMember" false,
  "name"
  {"official" "Territory of the Cocos (Keeling) Islands",
   "nativeName"
   {"eng"
    {"official" "Territory of the Cocos (Keeling) Islands",
     "common" "Cocos (Keeling) Islands"}},
   "common" "Cocos (Keeling) Islands"},
  "capitalInfo" {"latlng" [-12.17 96.83]},
  "tld" [".cc"],
  "ccn3" "166",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"eng" "English"},
  "currencies" {"AUD" {"name" "Australian dollar", "symbol" "$"}},
  "independent" false,
  "population" 544,
  "cca3" "CCK",
  "capital" ["West Island"],
  "car" {"signs" ["AUS"], "side" "left"},
  "timezones" ["UTC+06:30"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇨🇨",
  "cca2" "CC"}
 {"subregion" "Northern Africa",
  "landlocked" false,
  "latlng" [24.5 -13.0],
  "area" 266000.0,
  "altSpellings" ["EH" "Taneẓroft Tutrimt"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/7nU3mB69vP6zQp7A8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/5441968"},
  "demonyms" {"eng" {"f" "Sahrawi", "m" "Sahrawi"}},
  "translations"
  {"kor" {"official" "사하라 아랍 민주 공화국", "common" "서사하라"},
   "zho" {"official" "阿拉伯撒哈拉民主共和国", "common" "西撒哈拉"},
   "hun" {"official" "Nyugat-Szahara", "common" "Nyugat-Szahara"},
   "rus"
   {"official" "Sahrawi Арабская Демократическая Республика",
    "common" "Западная Сахара"},
   "swe" {"official" "Västsahara", "common" "Västsahara"},
   "ces" {"official" "Západní Sahara", "common" "Západní Sahara"},
   "deu"
   {"official" "Demokratische Arabische Republik Sahara",
    "common" "Westsahara"},
   "ara"
   {"official" "الجمهورية العربية الصحراوية الديمقراطية",
    "common" "الصحراء الغربية"},
   "urd"
   {"official" "صحراوی عرب عوامی جمہوریہ", "common" "مغربی صحارا"},
   "srp"
   {"official" "Сахарска Арапска Демократска Република",
    "common" "Сахарска Република"},
   "tur"
   {"official" "Sahra Demokratik Arap Cumhuriyeti",
    "common" "Sahra Demokratik Arap Cumhuriyeti"},
   "pol"
   {"official" "Saharyjska Arabska Republika Demokratyczna",
    "common" "Sahara Zachodnia"},
   "cym"
   {"official" "Sahrawi Arab Democratic Republic",
    "common" "Western Sahara"},
   "hrv"
   {"official" "Sahrawi Arab Demokratska Republika",
    "common" "Zapadna Sahara"},
   "spa"
   {"official" "República Árabe Saharaui Democrática",
    "common" "Sahara Occidental"},
   "fin" {"official" "Länsi-Sahara", "common" "Länsi-Sahara"},
   "per" {"official" "صحرای غربی", "common" "صحرای غربی"},
   "nld"
   {"official" "Sahrawi Arabische Democratische Republiek",
    "common" "Westelijke Sahara"},
   "fra"
   {"official" "République arabe sahraouie démocratique",
    "common" "Sahara Occidental"},
   "ita"
   {"official" "Repubblica Araba Saharawi Democratica",
    "common" "Sahara Occidentale"},
   "jpn" {"official" "サハラアラブ民主共和国", "common" "西サハラ"},
   "est" {"official" "Lääne-Sahara", "common" "Lääne-Sahara"},
   "por"
   {"official" "República Árabe Saharaui Democrática",
    "common" "Saara Ocidental"},
   "slk" {"official" "Západná Sahara", "common" "Západná Sahara"},
   "bre"
   {"official" "Republik Arab Saharaoui Demokratel",
    "common" "Sahara ar C'hornôg"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["125288" "125289"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/eh.svg",
   "png" "https://flagcdn.com/w320/eh.png"},
  "unMember" false,
  "name"
  {"official" "Sahrawi Arab Democratic Republic",
   "nativeName"
   {"mey"
    {"official" "الجمهورية العربية الصحراوية الديمقراطية",
     "common" "الصحراء الغربية"},
    "ber"
    {"official" "Sahrawi Arab Democratic Republic",
     "common" "Western Sahara"},
    "spa"
    {"official" "República Árabe Saharaui Democrática",
     "common" "Sahara Occidental"}},
   "common" "Western Sahara"},
  "capitalInfo" {"latlng" [-13.28 27.14]},
  "tld" [".eh"],
  "ccn3" "732",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"mey" "Hassaniya", "ber" "Berber", "spa" "Spanish"},
  "currencies"
  {"DZD" {"name" "Algerian dinar", "symbol" "دج"},
   "MAD" {"name" "Moroccan dirham", "symbol" "DH"},
   "MRU" {"name" "Mauritanian ouguiya", "symbol" "UM"}},
  "independent" false,
  "population" 510713,
  "cca3" "ESH",
  "borders" ["DZA" "MRT" "MAR"],
  "capital" ["El Aaiún"],
  "car" {"signs" [""], "side" "right"},
  "timezones" ["UTC+00:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇪🇭",
  "cca2" "EH"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [15.41666666 -61.33333333],
  "area" 751.0,
  "altSpellings"
  ["DM" "Dominique" "Wai‘tu kubuli" "Commonwealth of Dominica"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/HSKdHYpFC8oHHuyV7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/307823"},
  "demonyms"
  {"eng" {"f" "Dominican", "m" "Dominican"},
   "fra" {"f" "Dominiquaise", "m" "Dominiquais"}},
  "translations"
  {"kor" {"official" "도미니카 공화국", "common" "도미니카 공화국"},
   "zho" {"official" "多米尼加共和国", "common" "多米尼加"},
   "hun"
   {"official" "Dominikai Közösség", "common" "Dominikai Közösség"},
   "rus" {"official" "Содружество Доминики", "common" "Доминика"},
   "swe" {"official" "Samväldet Dominica", "common" "Dominica"},
   "ces" {"official" "Dominikánské společenství", "common" "Dominika"},
   "deu" {"official" "Commonwealth von Dominica", "common" "Dominica"},
   "ara" {"official" "كومونولث دومينيكا", "common" "دومينيكا"},
   "urd" {"official" "دولتِ مشترکہ ڈومینیکا", "common" "ڈومینیکا"},
   "srp" {"official" "Комонвелт Доминика", "common" "Доминика"},
   "tur" {"official" "Dominika Topluluğu", "common" "Dominika"},
   "pol" {"official" "Wspólnota Dominiki", "common" "Dominika"},
   "cym" {"official" "Cymanwlad Dominica", "common" "Dominica"},
   "hrv" {"official" "Zajednica Dominika", "common" "Dominika"},
   "spa" {"official" "Mancomunidad de Dominica", "common" "Dominica"},
   "fin" {"official" "Dominican liittovaltio", "common" "Dominica"},
   "per" {"official" "قلمرو همسود دومینیکا", "common" "دومینیکا"},
   "nld" {"official" "Gemenebest Dominica", "common" "Dominica"},
   "fra"
   {"official" "Commonwealth de la Dominique", "common" "Dominique"},
   "ita" {"official" "Commonwealth di Dominica", "common" "Dominica"},
   "jpn" {"official" "ドミニカ国", "common" "ドミニカ国"},
   "est" {"official" "Dominica Ühendus", "common" "Dominica"},
   "por" {"official" "Comunidade da Dominica", "common" "Dominica"},
   "slk" {"official" "Dominické spoločenstvo", "common" "Dominika"},
   "bre" {"official" "Kenglad Dominika", "common" "Dominika"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/dm.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/dm.png"},
  "idd" {"suffixes" ["767"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/dm.svg",
   "alt"
   "The flag of Dominica has a green field with a large centered tricolor cross. The vertical and horizontal parts of the cross each comprise three bands of yellow, black and white. A red circle, bearing a hoist-side facing purple Sisserou parrot standing on a twig and encircled by ten five-pointed yellow-edged green stars, is superimposed at the center of the cross.",
   "png" "https://flagcdn.com/w320/dm.png"},
  "unMember" true,
  "name"
  {"official" "Commonwealth of Dominica",
   "nativeName"
   {"eng"
    {"official" "Commonwealth of Dominica", "common" "Dominica"}},
   "common" "Dominica"},
  "capitalInfo" {"latlng" [15.3 -61.4]},
  "tld" [".dm"],
  "ccn3" "212",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "cioc" "DMA",
  "currencies"
  {"XCD" {"name" "Eastern Caribbean dollar", "symbol" "$"}},
  "independent" true,
  "population" 71991,
  "cca3" "DMA",
  "capital" ["Roseau"],
  "car" {"signs" ["WD"], "side" "left"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇩🇲",
  "fifa" "DMA",
  "cca2" "DM"}
 {"subregion" "Central America",
  "landlocked" false,
  "latlng" [10.0 -84.0],
  "area" 51100.0,
  "altSpellings"
  ["CR" "Republic of Costa Rica" "República de Costa Rica"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/RFiwytjvNrpfKN7k6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/287667"},
  "demonyms"
  {"eng" {"f" "Costa Rican", "m" "Costa Rican"},
   "fra" {"f" "Costaricaine", "m" "Costaricain"}},
  "translations"
  {"kor" {"official" "코스타리카 공화국", "common" "코스타리카"},
   "zho" {"official" "哥斯达黎加共和国", "common" "哥斯达黎加"},
   "hun"
   {"official" "Costa Rica-i Köztársaság", "common" "Costa Rica"},
   "rus" {"official" "Республика Коста-Рика", "common" "Коста-Рика"},
   "swe" {"official" "Republiken Costa Rica", "common" "Costa Rica"},
   "ces" {"official" "Kostarická republika", "common" "Kostarika"},
   "deu" {"official" "Republik Costa Rica", "common" "Costa Rica"},
   "ara" {"official" "جمهورية كوستاريكا", "common" "كوستاريكا"},
   "urd" {"official" "جمہوریہ کوسٹاریکا", "common" "کوسٹاریکا"},
   "srp" {"official" "Република Костарика", "common" "Костарика"},
   "tur" {"official" "Kosta Rika Cumhuriyeti", "common" "Kosta Rika"},
   "pol" {"official" "Republika Kostaryki", "common" "Kostaryka"},
   "cym" {"official" "Gweriniaeth Costa Rica", "common" "Costa Rica"},
   "hrv" {"official" "Republika Kostarika", "common" "Kostarika"},
   "spa" {"official" "República de Costa Rica", "common" "Costa Rica"},
   "fin" {"official" "Costa Rican tasavalta", "common" "Costa Rica"},
   "per" {"official" "جمهوری کاستاریکا", "common" "کاستاریکا"},
   "nld" {"official" "Republiek Costa Rica", "common" "Costa Rica"},
   "fra"
   {"official" "République du Costa Rica", "common" "Costa Rica"},
   "ita"
   {"official" "Repubblica di Costa Rica", "common" "Costa Rica"},
   "jpn" {"official" "コスタリカ共和国", "common" "コスタリカ"},
   "est" {"official" "Costa Rica Vabariik", "common" "Costa Rica"},
   "por" {"official" "República da Costa Rica", "common" "Costa Rica"},
   "slk" {"official" "Kostarická republika", "common" "Kostarika"},
   "bre" {"official" "Republik Costa Rica", "common" "Costa Rica"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/cr.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/cr.png"},
  "idd" {"suffixes" ["06"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/cr.svg",
   "alt"
   "The flag of Costa Rica is composed of five horizontal bands of blue, white, red, white and blue. The central red band is twice the height of the other four bands.",
   "png" "https://flagcdn.com/w320/cr.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Costa Rica",
   "nativeName"
   {"spa"
    {"official" "República de Costa Rica", "common" "Costa Rica"}},
   "common" "Costa Rica"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [9.93 -84.09]},
  "tld" [".cr"],
  "ccn3" "188",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"spa" "Spanish"},
  "cioc" "CRC",
  "currencies" {"CRC" {"name" "Costa Rican colón", "symbol" "₡"}},
  "independent" true,
  "population" 5094114,
  "cca3" "CRI",
  "borders" ["NIC" "PAN"],
  "capital" ["San José"],
  "car" {"signs" ["CR"], "side" "right"},
  "timezones" ["UTC-06:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇨🇷",
  "gini" {"2019" 48.2},
  "fifa" "CRC",
  "cca2" "CR"}
 {"subregion" "Australia and New Zealand",
  "landlocked" false,
  "latlng" [-27.0 133.0],
  "area" 7692024.0,
  "altSpellings" ["AU"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/DcjaDa7UbhnZTndH6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/80500"},
  "demonyms"
  {"eng" {"f" "Australian", "m" "Australian"},
   "fra" {"f" "Australienne", "m" "Australien"}},
  "translations"
  {"kor" {"official" "오스트레일리아 연방", "common" "호주"},
   "zho" {"official" "澳大利亚联邦", "common" "澳大利亚"},
   "hun" {"official" "Ausztrál Államszövetség", "common" "Ausztrália"},
   "rus" {"official" "Содружество Австралии", "common" "Австралия"},
   "swe"
   {"official" "Australiska statsförbundet", "common" "Australien"},
   "ces" {"official" "Australské společenství", "common" "Austrálie"},
   "deu" {"official" "Commonwealth Australien", "common" "Australien"},
   "ara" {"official" "كومونولث أستراليا", "common" "أستراليا"},
   "urd" {"official" "دولتِ مشترکہ آسٹریلیا", "common" "آسٹریلیا"},
   "srp" {"official" "Комонвелт Аустралија", "common" "Аустралија"},
   "tur"
   {"official" "Avustralya Federal Devleti", "common" "Avustralya"},
   "pol" {"official" "Związek Australijski", "common" "Australia"},
   "cym" {"official" "Cymanwlad Awstralia", "common" "Awstralia"},
   "hrv"
   {"official" "Commonwealth of Australia", "common" "Australija"},
   "spa"
   {"official" "Mancomunidad de Australia", "common" "Australia"},
   "fin" {"official" "Australian liittovaltio", "common" "Australia"},
   "per" {"official" "قلمرو همسود استرالیا", "common" "استرالیا"},
   "nld" {"official" "Gemenebest van Australië", "common" "Australië"},
   "fra" {"official" "Australie", "common" "Australie"},
   "ita"
   {"official" "Commonwealth dell'Australia", "common" "Australia"},
   "jpn" {"official" "オーストラリア連邦", "common" "オーストラリア"},
   "est" {"official" "Austraalia Ühendus", "common" "Austraalia"},
   "por" {"official" "Comunidade da Austrália", "common" "Austrália"},
   "slk" {"official" "Austrálsky zväz", "common" "Austrália"},
   "bre" {"official" "Kenglad Aostralia", "common" "Aostralia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/au.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/au.png"},
  "idd" {"suffixes" ["1"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/au.svg",
   "alt"
   "The flag of Australia has a dark blue field. It features the flag of the United Kingdom — the Union Jack — in the canton, beneath which is a large white seven-pointed star. A representation of the Southern Cross constellation, made up of one small five-pointed and four larger seven-pointed white stars, is situated on the fly side of the field.",
   "png" "https://flagcdn.com/w320/au.png"},
  "unMember" true,
  "name"
  {"official" "Commonwealth of Australia",
   "nativeName"
   {"eng"
    {"official" "Commonwealth of Australia", "common" "Australia"}},
   "common" "Australia"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [-35.27 149.13]},
  "tld" [".au"],
  "ccn3" "036",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"eng" "English"},
  "cioc" "AUS",
  "currencies" {"AUD" {"name" "Australian dollar", "symbol" "$"}},
  "independent" true,
  "population" 25687041,
  "cca3" "AUS",
  "capital" ["Canberra"],
  "car" {"signs" ["AUS"], "side" "left"},
  "timezones"
  ["UTC+05:00"
   "UTC+06:30"
   "UTC+07:00"
   "UTC+08:00"
   "UTC+09:30"
   "UTC+10:00"
   "UTC+10:30"
   "UTC+11:30"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇦🇺",
  "gini" {"2014" 34.4},
  "fifa" "AUS",
  "cca2" "AU"}
 {"subregion" "South-Eastern Asia",
  "landlocked" false,
  "latlng" [15.0 100.0],
  "area" 513120.0,
  "altSpellings"
  ["TH"
   "Prathet"
   "Thai"
   "Kingdom of Thailand"
   "ราชอาณาจักรไทย"
   "Ratcha Anachak Thai"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/qeU6uqsfW4nCCwzw9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2067731"},
  "demonyms"
  {"eng" {"f" "Thai", "m" "Thai"},
   "fra" {"f" "Thaïlandaise", "m" "Thaïlandais"}},
  "translations"
  {"kor" {"official" "타이 왕국", "common" "태국"},
   "zho" {"official" "泰王国", "common" "泰国"},
   "hun" {"official" "Thaiföldi Királyság", "common" "Thaiföld"},
   "rus" {"official" "Королевство Таиланд", "common" "Таиланд"},
   "swe" {"official" "Konungariket Thailand", "common" "Thailand"},
   "ces" {"official" "Thajské království", "common" "Thajsko"},
   "deu" {"official" "Königreich Thailand", "common" "Thailand"},
   "ara" {"official" "مملكة تايلند", "common" "تايلند"},
   "urd" {"official" "مملکتِ تھائی لینڈ", "common" "تھائی لینڈ"},
   "srp" {"official" "Краљевина Тајланд", "common" "Тајланд"},
   "tur" {"official" "Tayland Krallığı", "common" "Tayland"},
   "pol" {"official" "Królestwo Tajlandii", "common" "Tajlandia"},
   "cym" {"official" "Kingdom of Thailand", "common" "Thailand"},
   "hrv" {"official" "Kraljevina Tajland", "common" "Tajland"},
   "spa" {"official" "Reino de Tailandia", "common" "Tailandia"},
   "fin" {"official" "Thaimaan kuningaskunta", "common" "Thaimaa"},
   "per" {"official" "پادشاهی تایلند", "common" "تایلند"},
   "nld" {"official" "Koninkrijk Thailand", "common" "Thailand"},
   "fra" {"official" "Royaume de Thaïlande", "common" "Thaïlande"},
   "ita" {"official" "Regno di Thailandia", "common" "Tailandia"},
   "jpn" {"official" "タイ王国", "common" "タイ"},
   "est" {"official" "Tai Kuningriik", "common" "Tai"},
   "por" {"official" "Reino da Tailândia", "common" "Tailândia"},
   "slk" {"official" "Thajské kráľovstvo", "common" "Thajsko"},
   "bre" {"official" "Rouantelezh Thailand", "common" "Thailand"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/th.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/th.png"},
  "idd" {"suffixes" ["6"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/th.svg",
   "alt"
   "The flag of Thailand is composed of five horizontal bands of red, white, blue, white and red, with the central blue band twice the height of the other four bands.",
   "png" "https://flagcdn.com/w320/th.png"},
  "unMember" true,
  "name"
  {"official" "Kingdom of Thailand",
   "nativeName"
   {"tha" {"official" "ราชอาณาจักรไทย", "common" "ประเทศไทย"}},
   "common" "Thailand"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [13.75 100.52]},
  "tld" [".th" ".ไทย"],
  "ccn3" "764",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"tha" "Thai"},
  "cioc" "THA",
  "currencies" {"THB" {"name" "Thai baht", "symbol" "฿"}},
  "independent" true,
  "population" 69799978,
  "cca3" "THA",
  "borders" ["MMR" "KHM" "LAO" "MYS"],
  "capital" ["Bangkok"],
  "car" {"signs" ["T"], "side" "left"},
  "timezones" ["UTC+07:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇹🇭",
  "gini" {"2019" 34.9},
  "fifa" "THA",
  "cca2" "TH"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [19.0 -72.41666666],
  "area" 27750.0,
  "altSpellings"
  ["HT" "Republic of Haiti" "République d'Haïti" "Repiblik Ayiti"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/9o13xtjuUdqFnHbn9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/307829"},
  "demonyms"
  {"eng" {"f" "Haitian", "m" "Haitian"},
   "fra" {"f" "Haïtienne", "m" "Haïtien"}},
  "translations"
  {"kor" {"official" "아이티 공화국", "common" "아이티"},
   "zho" {"official" "海地共和国", "common" "海地"},
   "hun" {"official" "Haiti Köztársaság", "common" "Haiti"},
   "rus" {"official" "Республика Гаити", "common" "Гаити"},
   "swe" {"official" "Republiken Haiti", "common" "Haiti"},
   "ces" {"official" "Republika Haiti", "common" "Haiti"},
   "deu" {"official" "Republik Haiti", "common" "Haiti"},
   "ara" {"official" "جمهورية هايتي", "common" "هايتي"},
   "urd" {"official" "جمہوریہ ہیٹی", "common" "ہیٹی"},
   "srp" {"official" "Република Хаити", "common" "Хаити"},
   "tur" {"official" "Haiti Cumhuriyeti", "common" "Haiti"},
   "pol" {"official" "Republika Haiti", "common" "Haiti"},
   "cym" {"official" "Republic of Haiti", "common" "Haiti"},
   "hrv" {"official" "Republika Haiti", "common" "Haiti"},
   "spa" {"official" "República de Haití", "common" "Haití"},
   "fin" {"official" "Haitin tasavalta", "common" "Haiti"},
   "per" {"official" "جمهوری هائیتی", "common" "هائیتی"},
   "nld" {"official" "Republiek Haïti", "common" "Haïti"},
   "fra" {"official" "République d'Haïti", "common" "Haïti"},
   "ita" {"official" "Repubblica di Haiti", "common" "Haiti"},
   "jpn" {"official" "ハイチ共和国", "common" "ハイチ"},
   "est" {"official" "Haiti Vabariik", "common" "Haiti"},
   "por" {"official" "República do Haiti", "common" "Haiti"},
   "slk" {"official" "Haitská republika", "common" "Haiti"},
   "bre" {"official" "Republik Haiti", "common" "Haiti"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ht.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ht.png"},
  "idd" {"suffixes" ["09"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/ht.svg",
   "alt"
   "The flag of Haiti is composed of two equal horizontal bands of blue and red. A white square bearing the national coat of arms is superimposed at the center of the field.",
   "png" "https://flagcdn.com/w320/ht.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Haiti",
   "nativeName"
   {"hat" {"official" "Repiblik Ayiti", "common" "Ayiti"},
    "fra" {"official" "République d'Haïti", "common" "Haïti"}},
   "common" "Haiti"},
  "postalCode" {"regex" "^(?:HT)*(\\d{4})$", "format" "HT####"},
  "capitalInfo" {"latlng" [18.53 -72.33]},
  "tld" [".ht"],
  "ccn3" "332",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"hat" "Haitian Creole", "fra" "French"},
  "cioc" "HAI",
  "currencies" {"HTG" {"name" "Haitian gourde", "symbol" "G"}},
  "independent" true,
  "population" 11402533,
  "cca3" "HTI",
  "borders" ["DOM"],
  "capital" ["Port-au-Prince"],
  "car" {"signs" ["RH"], "side" "right"},
  "timezones" ["UTC-05:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇭🇹",
  "gini" {"2012" 41.1},
  "fifa" "HAI",
  "cca2" "HT"}
 {"subregion" "Polynesia",
  "landlocked" false,
  "latlng" [-8.0 178.0],
  "area" 26.0,
  "altSpellings" ["TV"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/LbuUxtkgm1dfN1Pn6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2177266"},
  "demonyms"
  {"eng" {"f" "Tuvaluan", "m" "Tuvaluan"},
   "fra" {"f" "Tuvaluane", "m" "Tuvaluan"}},
  "translations"
  {"kor" {"official" "투발루", "common" "투발루"},
   "zho" {"official" "图瓦卢", "common" "图瓦卢"},
   "hun" {"official" "Tuvalu", "common" "Tuvalu"},
   "rus" {"official" "Тувалу", "common" "Тувалу"},
   "swe" {"official" "Tuvalu", "common" "Tuvalu"},
   "ces" {"official" "Tuvalu", "common" "Tuvalu"},
   "deu" {"official" "Tuvalu", "common" "Tuvalu"},
   "ara" {"official" "توفالو", "common" "توفالو"},
   "urd" {"official" "تووالو", "common" "تووالو"},
   "srp" {"official" "Тувалу", "common" "Тувалу"},
   "tur" {"official" "Tuvalu", "common" "Tuvalu"},
   "pol" {"official" "Tuvalu", "common" "Tuvalu"},
   "cym" {"official" "Tuvalu", "common" "Tuvalu"},
   "hrv" {"official" "Tuvalu", "common" "Tuvalu"},
   "spa" {"official" "Tuvalu", "common" "Tuvalu"},
   "fin" {"official" "Tuvalu", "common" "Tuvalu"},
   "per" {"official" "تووالو", "common" "تووالو"},
   "nld" {"official" "Tuvalu", "common" "Tuvalu"},
   "fra" {"official" "Tuvalu", "common" "Tuvalu"},
   "ita" {"official" "Tuvalu", "common" "Tuvalu"},
   "jpn" {"official" "ツバル", "common" "ツバル"},
   "est" {"official" "Tuvalu", "common" "Tuvalu"},
   "por" {"official" "Tuvalu", "common" "Tuvalu"},
   "slk" {"official" "Tuvalu", "common" "Tuvalu"},
   "bre" {"official" "Tuvalu", "common" "Tuvalu"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/tv.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/tv.png"},
  "idd" {"suffixes" ["88"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/tv.svg",
   "alt"
   "The flag of Tuvalu has a light blue field with the flag of the United Kingdom — the Union Jack — in the canton. A representation of the country's nine Islands using nine five-pointed yellow stars is situated in the fly half of the field.",
   "png" "https://flagcdn.com/w320/tv.png"},
  "unMember" true,
  "name"
  {"official" "Tuvalu",
   "nativeName"
   {"tvl" {"official" "Tuvalu", "common" "Tuvalu"},
    "eng" {"official" "Tuvalu", "common" "Tuvalu"}},
   "common" "Tuvalu"},
  "capitalInfo" {"latlng" [-8.52 179.22]},
  "tld" [".tv"],
  "ccn3" "798",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"tvl" "Tuvaluan", "eng" "English"},
  "cioc" "TUV",
  "currencies"
  {"TVD" {"name" "Tuvaluan dollar", "symbol" "$"},
   "AUD" {"name" "Australian dollar", "symbol" "$"}},
  "independent" true,
  "population" 11792,
  "cca3" "TUV",
  "capital" ["Funafuti"],
  "car" {"signs" ["TUV"], "side" "left"},
  "timezones" ["UTC+12:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇹🇻",
  "gini" {"2010" 39.1},
  "cca2" "TV"}
 {"subregion" "Central America",
  "landlocked" false,
  "latlng" [15.0 -86.5],
  "area" 112492.0,
  "altSpellings" ["HN" "Republic of Honduras" "República de Honduras"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/BbeJK8Sk2VkMHbdF8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/287670"},
  "demonyms"
  {"eng" {"f" "Honduran", "m" "Honduran"},
   "fra" {"f" "Hondurienne", "m" "Hondurien"}},
  "translations"
  {"kor" {"official" "온두라스 공화국", "common" "온두라스"},
   "zho" {"official" "洪都拉斯共和国", "common" "洪都拉斯"},
   "hun" {"official" "Hondurasi Köztársaság", "common" "Honduras"},
   "rus" {"official" "Республика Гондурас", "common" "Гондурас"},
   "swe" {"official" "Republiken Honduras", "common" "Honduras"},
   "ces" {"official" "Honduraská republika", "common" "Honduras"},
   "deu" {"official" "Republik Honduras", "common" "Honduras"},
   "ara" {"official" "جمهورية هندوراس", "common" "هندوراس"},
   "urd" {"official" "جمہوریہ ہونڈوراس", "common" "ہونڈوراس"},
   "srp" {"official" "Република Хондурас", "common" "Хондурас"},
   "tur" {"official" "Honduras Cumhuriyeti", "common" "Honduras"},
   "pol" {"official" "Republika Hondurasu", "common" "Honduras"},
   "cym" {"official" "Republic of Honduras", "common" "Honduras"},
   "hrv" {"official" "Republika Honduras", "common" "Honduras"},
   "spa" {"official" "República de Honduras", "common" "Honduras"},
   "fin" {"official" "Hondurasin tasavalta", "common" "Honduras"},
   "per" {"official" "جمهوری هندوراس", "common" "هُندوراس"},
   "nld" {"official" "Republiek Honduras", "common" "Honduras"},
   "fra" {"official" "République du Honduras", "common" "Honduras"},
   "ita" {"official" "Repubblica di Honduras", "common" "Honduras"},
   "jpn" {"official" "ホンジュラス共和国", "common" "ホンジュラス"},
   "est" {"official" "Hondurase Vabariik", "common" "Honduras"},
   "por" {"official" "República de Honduras", "common" "Honduras"},
   "slk" {"official" "Honduraská republika", "common" "Honduras"},
   "bre" {"official" "Republik Honduras", "common" "Honduras"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/hn.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/hn.png"},
  "idd" {"suffixes" ["04"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/hn.svg",
   "alt"
   "The flag of Honduras is composed of three equal horizontal bands of turquoise, white and turquoise, with five small five-pointed turquoise stars arranged in a quincuncial pattern at the center of the white band.",
   "png" "https://flagcdn.com/w320/hn.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Honduras",
   "nativeName"
   {"spa" {"official" "República de Honduras", "common" "Honduras"}},
   "common" "Honduras"},
  "postalCode" {"regex" "^([A-Z]{2}\\d{4})$", "format" "@@####"},
  "capitalInfo" {"latlng" [14.1 -87.22]},
  "tld" [".hn"],
  "ccn3" "340",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"spa" "Spanish"},
  "cioc" "HON",
  "currencies" {"HNL" {"name" "Honduran lempira", "symbol" "L"}},
  "independent" true,
  "population" 9904608,
  "cca3" "HND",
  "borders" ["GTM" "SLV" "NIC"],
  "capital" ["Tegucigalpa"],
  "car" {"signs" ["HN"], "side" "right"},
  "timezones" ["UTC-06:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇭🇳",
  "gini" {"2019" 48.2},
  "fifa" "HON",
  "cca2" "HN"}
 {"subregion" "Middle Africa",
  "landlocked" false,
  "latlng" [2.0 10.0],
  "area" 28051.0,
  "altSpellings"
  ["GQ"
   "Republic of Equatorial Guinea"
   "República de Guinea Ecuatorial"
   "République de Guinée équatoriale"
   "República da Guiné Equatorial"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/ucWfFd8aW1FbGMva9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192791"},
  "demonyms"
  {"eng" {"f" "Equatorial Guinean", "m" "Equatorial Guinean"},
   "fra" {"f" "Équato-guinéenne", "m" "Équato-guinéen"}},
  "translations"
  {"kor" {"official" "적도 기니 공화국", "common" "적도 기니"},
   "zho" {"official" "赤道几内亚共和国", "common" "赤道几内亚"},
   "hun"
   {"official" "Egyenlítői-Guinea-i Köztársaság",
    "common" "Egyenlítői-Guinea"},
   "rus"
   {"official" "Республика Экваториальная Гвинея",
    "common" "Экваториальная Гвинея"},
   "swe"
   {"official" "Republiken Ekvatorialguinea",
    "common" "Ekvatorialguinea"},
   "ces"
   {"official" "Republika Rovníková Guinea",
    "common" "Rovníková Guinea"},
   "deu"
   {"official" "Republik Äquatorialguinea",
    "common" "Äquatorialguinea"},
   "ara"
   {"official" "جمهورية غينيا الاستوائية",
    "common" "غينيا الاستوائية"},
   "urd" {"official" "جمہوریہ استوائی گنی", "common" "استوائی گنی"},
   "srp"
   {"official" "Република Екваторијална Гвинеја",
    "common" "Екваторијална Гвинеја"},
   "tur"
   {"official" "Ekvator Ginesi Cumhuriyeti",
    "common" "Ekvator Ginesi"},
   "pol"
   {"official" "Republika Gwinei Równikowej",
    "common" "Gwinea Równikowa"},
   "cym"
   {"official" "Gweriniaeth Gini Gyhydeddol",
    "common" "Gini Gyhydeddol"},
   "hrv"
   {"official" "Republika Ekvatorska Gvineja",
    "common" "Ekvatorijalna Gvineja"},
   "spa"
   {"official" "República de Guinea Ecuatorial",
    "common" "Guinea Ecuatorial"},
   "fin"
   {"official" "Päiväntasaajan Guinean tasavalta",
    "common" "Päiväntasaajan Guinea"},
   "per" {"official" "جمهوری گینه استوایی", "common" "گینه استوایی"},
   "nld"
   {"official" "Republiek Equatoriaal-Guinea",
    "common" "Equatoriaal-Guinea"},
   "fra"
   {"official" "République de Guinée équatoriale",
    "common" "Guinée équatoriale"},
   "ita"
   {"official" "Repubblica della Guinea Equatoriale",
    "common" "Guinea Equatoriale"},
   "jpn" {"official" "赤道ギニア共和国", "common" "赤道ギニア"},
   "est"
   {"official" "Ekvatoriaal-Guinea Vabariik",
    "common" "Ekvatoriaal-Guinea"},
   "por"
   {"official" "República da Guiné Equatorial",
    "common" "Guiné Equatorial"},
   "slk"
   {"official" "Republika rovníkovej Guiney",
    "common" "Rovníková Guinea"},
   "bre"
   {"official" "Republik Ginea ar C'heheder",
    "common" "Ginea ar C'heheder"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/gq.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/gq.png"},
  "idd" {"suffixes" ["40"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/gq.svg",
   "alt"
   "The flag of Equatorial Guinea is composed of three equal horizontal bands of green, white and red with the national coat of arms centered in the white band and an isosceles triangle superimposed on the hoist side of the field. The triangle is light blue, has its base on the hoist end and spans about one-fifth the width of the field.",
   "png" "https://flagcdn.com/w320/gq.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Equatorial Guinea",
   "nativeName"
   {"spa"
    {"official" "República de Guinea Ecuatorial",
     "common" "Guinea Ecuatorial"},
    "fra"
    {"official" "République de la Guinée Équatoriale",
     "common" "Guinée équatoriale"},
    "por"
    {"official" "República da Guiné Equatorial",
     "common" "Guiné Equatorial"}},
   "common" "Equatorial Guinea"},
  "capitalInfo" {"latlng" [3.75 8.78]},
  "tld" [".gq"],
  "ccn3" "226",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"spa" "Spanish", "fra" "French", "por" "Portuguese"},
  "cioc" "GEQ",
  "currencies"
  {"XAF" {"name" "Central African CFA franc", "symbol" "Fr"}},
  "independent" true,
  "population" 1402985,
  "cca3" "GNQ",
  "borders" ["CMR" "GAB"],
  "capital" ["Malabo"],
  "car" {"signs" ["GQ"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇬🇶",
  "fifa" "EQG",
  "cca2" "GQ"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [13.88333333 -60.96666666],
  "area" 616.0,
  "altSpellings" ["LC"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/4HhJ2jkPdSL9BPRcA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/550728"},
  "demonyms"
  {"eng" {"f" "Saint Lucian", "m" "Saint Lucian"},
   "fra" {"f" "Saint-Lucienne", "m" "Saint-Lucien"}},
  "translations"
  {"kor" {"official" "세인트루시아", "common" "세인트루시아"},
   "zho" {"official" "圣卢西亚", "common" "圣卢西亚"},
   "hun" {"official" "Saint Lucia", "common" "Saint Lucia"},
   "rus" {"official" "Сент-Люсия", "common" "Сент-Люсия"},
   "swe" {"official" "Saint Lucia", "common" "Saint Lucia"},
   "ces" {"official" "Svatá Lucie", "common" "Svatá Lucie"},
   "deu" {"official" "St. Lucia", "common" "St. Lucia"},
   "ara" {"official" "سانت لوسيا", "common" "سانت لوسيا"},
   "urd" {"official" "سینٹ لوسیا", "common" "سینٹ لوسیا"},
   "srp" {"official" "Света Луција", "common" "Света Луција"},
   "tur" {"official" "Saint Lucia", "common" "Saint Lucia"},
   "pol" {"official" "Saint Lucia", "common" "Saint Lucia"},
   "cym" {"official" "Saint Lucia", "common" "Saint Lucia"},
   "hrv" {"official" "Sveta Lucija", "common" "Sveta Lucija"},
   "spa" {"official" "Santa Lucía", "common" "Santa Lucía"},
   "fin" {"official" "Saint Lucia", "common" "Saint Lucia"},
   "per" {"official" "سنت لوسیا", "common" "سنت لوسیا"},
   "nld" {"official" "Saint Lucia", "common" "Saint Lucia"},
   "fra" {"official" "Sainte-Lucie", "common" "Sainte-Lucie"},
   "ita" {"official" "Santa Lucia", "common" "Santa Lucia"},
   "jpn" {"official" "セントルシア", "common" "セントルシア"},
   "est" {"official" "Saint Lucia", "common" "Saint Lucia"},
   "por" {"official" "Santa Lúcia", "common" "Santa Lúcia"},
   "slk" {"official" "Svätá Lucia", "common" "Svätá Lucia"},
   "bre" {"official" "Santez-Lusia", "common" "Santez-Lusia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/lc.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/lc.png"},
  "idd" {"suffixes" ["758"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/lc.svg",
   "alt"
   "The flag of Saint Lucia has a light blue field, at the center of which are two triangles which share a common base — a small golden-yellow isosceles triangle superimposed on a large white-edged black isosceles triangle.",
   "png" "https://flagcdn.com/w320/lc.png"},
  "unMember" true,
  "name"
  {"official" "Saint Lucia",
   "nativeName"
   {"eng" {"official" "Saint Lucia", "common" "Saint Lucia"}},
   "common" "Saint Lucia"},
  "capitalInfo" {"latlng" [14.0 -61.0]},
  "tld" [".lc"],
  "ccn3" "662",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "cioc" "LCA",
  "currencies"
  {"XCD" {"name" "Eastern Caribbean dollar", "symbol" "$"}},
  "independent" true,
  "population" 183629,
  "cca3" "LCA",
  "capital" ["Castries"],
  "car" {"signs" ["WL"], "side" "left"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇱🇨",
  "gini" {"2016" 51.2},
  "fifa" "LCA",
  "cca2" "LC"}
 {"subregion" "Polynesia",
  "landlocked" false,
  "latlng" [17.6797 149.4068],
  "area" 4167.0,
  "altSpellings"
  ["PF" "Polynésie française" "French Polynesia" "Pōrīnetia Farāni"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/xgg6BQTRyeQg4e1m6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/3412620"},
  "demonyms"
  {"eng" {"f" "French Polynesian", "m" "French Polynesian"},
   "fra" {"f" "Polynésienne", "m" "Polynésien"}},
  "translations"
  {"kor" {"official" "프랑스령 폴리네시아", "common" "프랑스령 폴리네시아"},
   "zho" {"official" "法属波利尼西亚", "common" "法属波利尼西亚"},
   "hun"
   {"official" "Francia Polinézia", "common" "Francia Polinézia"},
   "rus"
   {"official" "Французская Полинезия",
    "common" "Французская Полинезия"},
   "swe"
   {"official" "Franska Polynesien", "common" "Franska Polynesien"},
   "ces"
   {"official" "Francouzská Polynésie",
    "common" "Francouzská Polynésie"},
   "deu"
   {"official" "Französisch-Polynesien",
    "common" "Französisch-Polynesien"},
   "ara"
   {"official" "بولينزيا الفرنسية", "common" "بولينزيا الفرنسية"},
   "urd"
   {"official" "فرانسیسی پولینیشیا", "common" "فرانسیسی پولینیشیا"},
   "srp"
   {"official" "Француска Полинезија",
    "common" "Француска Полинезија"},
   "tur"
   {"official" "Fransız Polinezyası", "common" "Fransız Polinezyası"},
   "pol"
   {"official" "Polinezja Francuska", "common" "Polinezja Francuska"},
   "cym" {"official" "French Polynesia", "common" "French Polynesia"},
   "hrv"
   {"official" "Francuska Polinezija",
    "common" "Francuska Polinezija"},
   "spa"
   {"official" "Polinesia francés", "common" "Polinesia Francesa"},
   "fin"
   {"official" "Ranskan Polynesia", "common" "Ranskan Polynesia"},
   "per" {"official" "پُلی‌نِزی فرانسه", "common" "پُلی‌نِزی فرانسه"},
   "nld" {"official" "Frans-Polynesië", "common" "Frans-Polynesië"},
   "fra"
   {"official" "Polynésie française", "common" "Polynésie française"},
   "ita"
   {"official" "Polinesia Francese", "common" "Polinesia Francese"},
   "jpn" {"official" "フランス領ポリネシア", "common" "フランス領ポリネシア"},
   "est"
   {"official" "Prantsuse Polüneesia",
    "common" "Prantsuse Polüneesia"},
   "por"
   {"official" "Polinésia Francesa", "common" "Polinésia Francesa"},
   "slk"
   {"official" "Francúzska Polynézia",
    "common" "Francúzska Polynézia"},
   "bre" {"official" "Polinezia C'hall", "common" "Polinezia C'hall"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/pf.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/pf.png"},
  "idd" {"suffixes" ["89"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/pf.svg",
   "png" "https://flagcdn.com/w320/pf.png"},
  "unMember" false,
  "name"
  {"official" "French Polynesia",
   "nativeName"
   {"fra"
    {"official" "Polynésie française",
     "common" "Polynésie française"}},
   "common" "French Polynesia"},
  "postalCode" {"regex" "^((97|98)7\\d{2})$", "format" "#####"},
  "capitalInfo" {"latlng" [-17.53 -149.56]},
  "tld" [".pf"],
  "ccn3" "258",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"fra" "French"},
  "currencies" {"XPF" {"name" "CFP franc", "symbol" "₣"}},
  "independent" false,
  "population" 280904,
  "cca3" "PYF",
  "capital" ["Papeetē"],
  "car" {"signs" ["F"], "side" "right"},
  "timezones" ["UTC-10:00" "UTC-09:30" "UTC-09:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇵🇫",
  "cca2" "PF"}
 {"subregion" "Eastern Europe",
  "landlocked" true,
  "latlng" [53.0 28.0],
  "area" 207600.0,
  "altSpellings"
  ["BY"
   "Bielaruś"
   "Republic of Belarus"
   "Белоруссия"
   "Республика Белоруссия"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/PJUDU3EBPSszCQcu6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/59065"},
  "demonyms"
  {"eng" {"f" "Belarusian", "m" "Belarusian"},
   "fra" {"f" "Biélorusse", "m" "Biélorusse"}},
  "translations"
  {"kor" {"official" "벨라루스 공화국", "common" "벨라루스"},
   "zho" {"official" "白俄罗斯共和国", "common" "白俄罗斯"},
   "hun"
   {"official" "Fehérorosz Köztársaság", "common" "Fehéroroszország"},
   "rus" {"official" "Республика Беларусь", "common" "Беларусь"},
   "swe" {"official" "Republiken Vitryssland", "common" "Belarus"},
   "ces" {"official" "Běloruská republika", "common" "Bělorusko"},
   "deu" {"official" "Republik Belarus", "common" "Weißrussland"},
   "ara" {"official" "جمهورية بيلاروسيا", "common" "بيلاروسيا"},
   "urd" {"official" "جمہوریہ بیلاروس", "common" "بیلاروس"},
   "srp" {"official" "Република Белорусија", "common" "Белорусија"},
   "tur" {"official" "Belarus Cumhuriyeti", "common" "Belarus"},
   "pol" {"official" "Republika Białorusi", "common" "Białoruś"},
   "cym" {"official" "Gweriniaeth Belarws", "common" "Belarws"},
   "hrv" {"official" "Republika Bjelorusija", "common" "Bjelorusija"},
   "spa" {"official" "República de Belarús", "common" "Bielorrusia"},
   "fin"
   {"official" "Valko-Venäjän tasavalta", "common" "Valko-Venäjä"},
   "per" {"official" "جمهوری بلاروس", "common" "بلاروس"},
   "nld" {"official" "Republiek Belarus", "common" "Wit-Rusland"},
   "fra"
   {"official" "République de Biélorussie", "common" "Biélorussie"},
   "ita" {"official" "Repubblica di Belarus", "common" "Bielorussia"},
   "jpn" {"official" "ベラルーシ共和国", "common" "ベラルーシ"},
   "est" {"official" "Valgevene Vabariik", "common" "Valgevene"},
   "por"
   {"official" "República da Bielorrússia", "common" "Bielorússia"},
   "slk" {"official" "Bieloruská republika", "common" "Bielorusko"},
   "bre" {"official" "Republik Belarus", "common" "Belarus"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/by.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/by.png"},
  "idd" {"suffixes" ["75"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/by.svg",
   "alt"
   "The flag of Belarus features a vertical band, with a white and red ornamental pattern, spanning about one-fifth the width of the field on the hoist side. Adjoining the vertical band are two horizontal bands of red and green, with the red band twice the height of the green band.",
   "png" "https://flagcdn.com/w320/by.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Belarus",
   "nativeName"
   {"rus" {"official" "Республика Беларусь", "common" "Беларусь"},
    "bel" {"official" "Рэспубліка Беларусь", "common" "Белару́сь"}},
   "common" "Belarus"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "######"},
  "capitalInfo" {"latlng" [53.9 27.57]},
  "tld" [".by"],
  "ccn3" "112",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"rus" "Russian", "bel" "Belarusian"},
  "cioc" "BLR",
  "currencies" {"BYN" {"name" "Belarusian ruble", "symbol" "Br"}},
  "independent" true,
  "population" 9398861,
  "cca3" "BLR",
  "borders" ["LVA" "LTU" "POL" "RUS" "UKR"],
  "capital" ["Minsk"],
  "car" {"signs" ["BY"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇧🇾",
  "gini" {"2019" 25.3},
  "fifa" "BLR",
  "cca2" "BY"}
 {"subregion" "Northern Europe",
  "landlocked" false,
  "latlng" [57.0 25.0],
  "area" 64559.0,
  "altSpellings" ["LV" "Republic of Latvia" "Latvijas Republika"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/iQpUkH7ghq31ZtXe9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/72594"},
  "demonyms"
  {"eng" {"f" "Latvian", "m" "Latvian"},
   "fra" {"f" "Lettone", "m" "Letton"}},
  "translations"
  {"kor" {"official" "라트비아 공화국", "common" "라트비아"},
   "zho" {"official" "拉脱维亚共和国", "common" "拉脱维亚"},
   "hun" {"official" "Lett Köztársaság", "common" "Lettország"},
   "rus" {"official" "Латвийская Республика", "common" "Латвия"},
   "swe" {"official" "Republiken Lettland", "common" "Lettland"},
   "ces" {"official" "Lotyšská republika", "common" "Lotyšsko"},
   "deu" {"official" "Republik Lettland", "common" "Lettland"},
   "ara" {"official" "جمهورية لاتفيا", "common" "لاتفيا"},
   "urd" {"official" "جمہوریہ لٹویا", "common" "لٹویا"},
   "srp" {"official" "Летонска Република", "common" "Летонија"},
   "tur" {"official" "Letonya Cumhuriyeti", "common" "Letonya"},
   "pol" {"official" "Republika Łotewska", "common" "Łotwa"},
   "cym" {"official" "Republic of Latvia", "common" "Latvia"},
   "hrv" {"official" "Republika Latvija", "common" "Latvija"},
   "spa" {"official" "República de Letonia", "common" "Letonia"},
   "fin" {"official" "Latvian tasavalta", "common" "Latvia"},
   "per" {"official" "جمهوری لتونی", "common" "لتونی"},
   "nld" {"official" "Republiek Letland", "common" "Letland"},
   "fra" {"official" "République de Lettonie", "common" "Lettonie"},
   "ita" {"official" "Repubblica di Lettonia", "common" "Lettonia"},
   "jpn" {"official" "ラトビア共和国", "common" "ラトビア"},
   "est" {"official" "Läti Vabariik", "common" "Läti"},
   "por" {"official" "República da Letónia", "common" "Letónia"},
   "slk" {"official" "Lotyšská republika", "common" "Lotyšsko"},
   "bre" {"official" "Republik Latvia", "common" "Latvia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/lv.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/lv.png"},
  "idd" {"suffixes" ["71"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/lv.svg",
   "alt"
   "The flag of Latvia has a carmine-red field with a thin white horizontal band across the middle of the field.",
   "png" "https://flagcdn.com/w320/lv.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Latvia",
   "nativeName"
   {"lav" {"official" "Latvijas Republikas", "common" "Latvija"}},
   "common" "Latvia"},
  "postalCode" {"regex" "^(?:LV)*(\\d{4})$", "format" "LV-####"},
  "capitalInfo" {"latlng" [56.95 24.1]},
  "tld" [".lv"],
  "ccn3" "428",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"lav" "Latvian"},
  "cioc" "LAT",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 1901548,
  "cca3" "LVA",
  "borders" ["BLR" "EST" "LTU" "RUS"],
  "capital" ["Riga"],
  "car" {"signs" ["LV"], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇱🇻",
  "gini" {"2018" 35.1},
  "fifa" "LVA",
  "cca2" "LV"}
 {"subregion" "Micronesia",
  "landlocked" false,
  "latlng" [7.5 134.5],
  "area" 459.0,
  "altSpellings" ["PW" "Republic of Palau" "Beluu er a Belau"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/MVasQBbUkQP7qQDR9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/571805"},
  "demonyms"
  {"eng" {"f" "Palauan", "m" "Palauan"},
   "fra" {"f" "Paluane", "m" "Paluan"}},
  "translations"
  {"kor" {"official" "팔라우 공화국", "common" "팔라우"},
   "zho" {"official" "帕劳共和国", "common" "帕劳"},
   "hun" {"official" "Palaui Köztársaság", "common" "Palau"},
   "rus" {"official" "Республика Палау", "common" "Палау"},
   "swe" {"official" "Republiken Palau", "common" "Palau"},
   "ces" {"official" "Republika Palau", "common" "Palau"},
   "deu" {"official" "Republik Palau", "common" "Palau"},
   "ara" {"official" "جمهورية بالاو", "common" "بالاو"},
   "urd" {"official" "جمہوریہ پلاؤ", "common" "پلاؤ"},
   "srp" {"official" "Република Палау", "common" "Палау"},
   "tur" {"official" "Palau Cumhuriyeti", "common" "Palau"},
   "pol" {"official" "Republika Palau", "common" "Palau"},
   "cym" {"official" "Republic of Palau", "common" "Palau"},
   "hrv" {"official" "Republika Palau", "common" "Palau"},
   "spa" {"official" "República de Palau", "common" "Palau"},
   "fin" {"official" "Palaun tasavalta", "common" "Palau"},
   "per" {"official" "جمهوری پالائو", "common" "پالائو"},
   "nld" {"official" "Republiek van Palau", "common" "Palau"},
   "fra"
   {"official" "République des Palaos (Palau)",
    "common" "Palaos (Palau)"},
   "ita" {"official" "Repubblica di Palau", "common" "Palau"},
   "jpn" {"official" "パラオ共和国", "common" "パラオ"},
   "est" {"official" "Belau Vabariik", "common" "Belau"},
   "por" {"official" "República de Palau", "common" "Palau"},
   "slk" {"official" "Palauská republika", "common" "Palau"},
   "bre" {"official" "Republik Palau", "common" "Palau"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/pw.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/pw.png"},
  "idd" {"suffixes" ["80"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/pw.svg",
   "alt"
   "The flag of Palau has a light blue field with a large golden-yellow circle that is offset slightly towards the hoist side of center.",
   "png" "https://flagcdn.com/w320/pw.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Palau",
   "nativeName"
   {"pau" {"official" "Beluu er a Belau", "common" "Belau"},
    "eng" {"official" "Republic of Palau", "common" "Palau"}},
   "common" "Palau"},
  "postalCode" {"regex" "^(96940)$", "format" "96940"},
  "capitalInfo" {"latlng" [7.5 134.62]},
  "tld" [".pw"],
  "ccn3" "585",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"pau" "Palauan", "eng" "English"},
  "cioc" "PLW",
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" true,
  "population" 18092,
  "cca3" "PLW",
  "capital" ["Ngerulmud"],
  "car" {"signs" ["PAL"], "side" "right"},
  "timezones" ["UTC+09:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇵🇼",
  "cca2" "PW"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [16.25 -61.583333],
  "area" 1628.0,
  "altSpellings" ["GP" "Gwadloup"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/Dy9R2EufJtoWm8UN9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/7109289"},
  "demonyms"
  {"eng" {"f" "Guadeloupian", "m" "Guadeloupian"},
   "fra" {"f" "Guadeloupéenne", "m" "Guadeloupéen"}},
  "translations"
  {"kor" {"official" "과들루프", "common" "과들루프"},
   "zho" {"official" "瓜德罗普岛", "common" "瓜德罗普岛"},
   "hun" {"official" "Guadeloupe", "common" "Guadeloupe"},
   "rus" {"official" "Гваделупа", "common" "Гваделупа"},
   "swe" {"official" "Guadeloupe", "common" "Guadeloupe"},
   "ces" {"official" "Guadeloupe", "common" "Guadeloupe"},
   "deu" {"official" "Guadeloupe", "common" "Guadeloupe"},
   "ara" {"official" "غوادلوب", "common" "غوادلوب"},
   "urd" {"official" "گواڈیلوپ", "common" "گواڈیلوپ"},
   "srp" {"official" "Гваделуп", "common" "Гваделуп"},
   "tur" {"official" "Guadeloupe", "common" "Guadeloupe"},
   "pol" {"official" "Gwadelupa", "common" "Gwadelupa"},
   "cym" {"official" "Guadeloupe", "common" "Guadeloupe"},
   "hrv" {"official" "Gvadalupa", "common" "Gvadalupa"},
   "spa" {"official" "Guadalupe", "common" "Guadalupe"},
   "fin"
   {"official" "Guadeloupen departmentti", "common" "Guadeloupe"},
   "per" {"official" "گوادلوپ", "common" "گوادلوپ"},
   "nld" {"official" "Guadeloupe", "common" "Guadeloupe"},
   "fra" {"official" "Guadeloupe", "common" "Guadeloupe"},
   "ita" {"official" "Guadeloupe", "common" "Guadeloupa"},
   "jpn" {"official" "グアドループ島", "common" "グアドループ"},
   "est"
   {"official" "Guadeloupe’i ja sõltkondade departemang",
    "common" "Guadeloupe"},
   "por" {"official" "Guadalupe", "common" "Guadalupe"},
   "slk" {"official" "Guadeloupe", "common" "Guadeloupe"},
   "bre" {"official" "Gwadeloup", "common" "Gwadeloup"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/gp.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/gp.png"},
  "idd" {"suffixes" ["90"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/gp.svg",
   "png" "https://flagcdn.com/w320/gp.png"},
  "unMember" false,
  "name"
  {"official" "Guadeloupe",
   "nativeName"
   {"fra" {"official" "Guadeloupe", "common" "Guadeloupe"}},
   "common" "Guadeloupe"},
  "postalCode" {"regex" "^((97|98)\\d{3})$", "format" "#####"},
  "capitalInfo" {"latlng" [16.03 -61.73]},
  "tld" [".gp"],
  "ccn3" "312",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"fra" "French"},
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" false,
  "population" 400132,
  "cca3" "GLP",
  "capital" ["Basse-Terre"],
  "car" {"signs" ["F"], "side" "right"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇬🇵",
  "cca2" "GP"}
 {"subregion" "South-Eastern Asia",
  "landlocked" false,
  "latlng" [13.0 122.0],
  "area" 342353.0,
  "altSpellings"
  ["PH" "Republic of the Philippines" "Repúblika ng Pilipinas"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/k8T2fb5VMUfsWFX6A",
   "openStreetMaps" "https://www.openstreetmap.org/relation/443174"},
  "demonyms"
  {"eng" {"f" "Filipino", "m" "Filipino"},
   "fra" {"f" "Philippine", "m" "Philippin"}},
  "translations"
  {"kor" {"official" "필리핀 공화국", "common" "필리핀"},
   "zho" {"official" "菲律宾共和国", "common" "菲律宾"},
   "hun"
   {"official" "Fülöp-szigeteki Köztársaság",
    "common" "Fülöp-szigetek"},
   "rus" {"official" "Республика Филиппины", "common" "Филиппины"},
   "swe"
   {"official" "Republiken Filippinerna", "common" "Filippinerna"},
   "ces" {"official" "Filipínská republika", "common" "Filipíny"},
   "deu"
   {"official" "Republik der Philippinen", "common" "Philippinen"},
   "ara" {"official" "جمهورية الفلبين", "common" "الفلبين"},
   "urd" {"official" "جمہوریہ فلپائن", "common" "فلپائن"},
   "srp" {"official" "Република Филипини", "common" "Филипини"},
   "tur" {"official" "Filipinler Cumhuriyeti", "common" "Filipinler"},
   "pol" {"official" "Republika Filipin", "common" "Filipiny"},
   "cym"
   {"official" "Republic of the Philippines", "common" "Philippines"},
   "hrv" {"official" "Republika Filipini", "common" "Filipini"},
   "spa"
   {"official" "República de las Filipinas", "common" "Filipinas"},
   "fin" {"official" "Filippiinien tasavalta", "common" "Filippiinit"},
   "per" {"official" "جمهوری فیلیپین", "common" "فیلیپین"},
   "nld"
   {"official" "Republiek der Filipijnen", "common" "Filipijnen"},
   "fra"
   {"official" "République des Philippines", "common" "Philippines"},
   "ita"
   {"official" "Repubblica delle Filippine", "common" "Filippine"},
   "jpn" {"official" "フィリピン共和国", "common" "フィリピン"},
   "est" {"official" "Filipiini Vabariik", "common" "Filipiinid"},
   "por" {"official" "República das Filipinas", "common" "Filipinas"},
   "slk" {"official" "Filipínska republika", "common" "Filipíny"},
   "bre" {"official" "Republik Filipinez", "common" "Filipinez"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ph.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ph.png"},
  "idd" {"suffixes" ["3"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/ph.svg",
   "alt"
   "The flag of Philippines is composed of two equal horizontal bands of blue and red, with a white equilateral triangle superimposed on the hoist side of the field. This triangle has its base on the hoist end, spans about two-fifth the width of the field and bears a central golden-yellow sun with eight rays and a five-pointed golden-yellow star at each vertex.",
   "png" "https://flagcdn.com/w320/ph.png"},
  "unMember" true,
  "name"
  {"official" "Republic of the Philippines",
   "nativeName"
   {"eng"
    {"official" "Republic of the Philippines", "common" "Philippines"},
    "fil"
    {"official" "Republic of the Philippines", "common" "Pilipinas"}},
   "common" "Philippines"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [14.6 120.97]},
  "tld" [".ph"],
  "ccn3" "608",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"eng" "English", "fil" "Filipino"},
  "cioc" "PHI",
  "currencies" {"PHP" {"name" "Philippine peso", "symbol" "₱"}},
  "independent" true,
  "population" 109581085,
  "cca3" "PHL",
  "capital" ["Manila"],
  "car" {"signs" ["RP"], "side" "right"},
  "timezones" ["UTC+08:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇵🇭",
  "gini" {"2018" 42.3},
  "fifa" "PHI",
  "cca2" "PH"}
 {"subregion" "Southern Europe",
  "landlocked" false,
  "latlng" [36.13333333 -5.35],
  "area" 6.0,
  "altSpellings" ["GI"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/CEoHAs1t6byCBhHFA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1278736"},
  "demonyms"
  {"eng" {"f" "Gibraltar", "m" "Gibraltar"},
   "fra" {"f" "Gibraltarienne", "m" "Gibraltarien"}},
  "translations"
  {"kor" {"official" "지브롤터", "common" "지브롤터"},
   "zho" {"official" "直布罗陀", "common" "直布罗陀"},
   "hun" {"official" "Gibraltár", "common" "Gibraltár"},
   "rus" {"official" "Гибралтар", "common" "Гибралтар"},
   "swe" {"official" "Gibraltar", "common" "Gibraltar"},
   "ces" {"official" "Gibraltar", "common" "Gibraltar"},
   "deu" {"official" "Gibraltar", "common" "Gibraltar"},
   "ara" {"official" "جبل طارق", "common" "جبل طارق"},
   "urd" {"official" "جبل الطارق", "common" "جبل الطارق"},
   "srp" {"official" "Гибралтар", "common" "Гибралтар"},
   "tur" {"official" "Cebelitarık", "common" "Cebelitarık"},
   "pol" {"official" "Gibraltar", "common" "Gibraltar"},
   "cym" {"official" "Gibraltar", "common" "Gibraltar"},
   "hrv" {"official" "Gibraltar", "common" "Gibraltar"},
   "spa" {"official" "Gibraltar", "common" "Gibraltar"},
   "fin" {"official" "Gibraltar", "common" "Gibraltar"},
   "per" {"official" "جبل طارق", "common" "جبل طارق"},
   "nld" {"official" "Gibraltar", "common" "Gibraltar"},
   "fra" {"official" "Gibraltar", "common" "Gibraltar"},
   "ita" {"official" "Gibilterra", "common" "Gibilterra"},
   "jpn" {"official" "ジブラルタル", "common" "ジブラルタル"},
   "est" {"official" "Gibraltar", "common" "Gibraltar"},
   "por" {"official" "Gibraltar", "common" "Gibraltar"},
   "slk" {"official" "Gibraltár", "common" "Gibraltár"},
   "bre" {"official" "Jibraltar", "common" "Jibraltar"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/gi.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/gi.png"},
  "idd" {"suffixes" ["50"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/gi.svg",
   "png" "https://flagcdn.com/w320/gi.png"},
  "unMember" false,
  "name"
  {"official" "Gibraltar",
   "nativeName" {"eng" {"official" "Gibraltar", "common" "Gibraltar"}},
   "common" "Gibraltar"},
  "capitalInfo" {"latlng" [36.13 -5.35]},
  "tld" [".gi"],
  "ccn3" "292",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"eng" "English"},
  "currencies" {"GIP" {"name" "Gibraltar pound", "symbol" "£"}},
  "independent" false,
  "population" 33691,
  "cca3" "GIB",
  "borders" ["ESP"],
  "capital" ["Gibraltar"],
  "car" {"signs" ["GBZ"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇬🇮",
  "fifa" "GIB",
  "cca2" "GI"}
 {"subregion" "Northern Europe",
  "landlocked" false,
  "latlng" [56.0 10.0],
  "area" 43094.0,
  "altSpellings"
  ["DK" "Danmark" "Kingdom of Denmark" "Kongeriget Danmark"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/UddGPN7hAyrtpFiT6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/50046"},
  "demonyms"
  {"eng" {"f" "Danish", "m" "Danish"},
   "fra" {"f" "Danoise", "m" "Danois"}},
  "translations"
  {"kor" {"official" "덴마크 왕국", "common" "덴마크"},
   "zho" {"official" "丹麦王国", "common" "丹麦"},
   "hun" {"official" "Dán Királyság", "common" "Dánia"},
   "rus" {"official" "Королевство Дания", "common" "Дания"},
   "swe" {"official" "Konungariket Danmark", "common" "Danmark"},
   "ces" {"official" "Dánské království", "common" "Dánsko"},
   "deu" {"official" "Königreich Dänemark", "common" "Dänemark"},
   "ara" {"official" "مملكة الدنمارك", "common" "الدنمارك"},
   "urd" {"official" "مملکتِ ڈنمارک", "common" "ڈنمارک"},
   "srp" {"official" "Краљевина Данска", "common" "Данска"},
   "tur" {"official" "Danimarka Krallığı", "common" "Danimarka"},
   "pol" {"official" "Królestwo Danii", "common" "Dania"},
   "cym" {"official" "Teyrnas Denmarc", "common" "Denmarc"},
   "hrv" {"official" "Kraljevina Danska", "common" "Danska"},
   "spa" {"official" "Reino de Dinamarca", "common" "Dinamarca"},
   "fin" {"official" "Tanskan kuningaskunta", "common" "Tanska"},
   "per" {"official" "پادشاهی دانمارک", "common" "دانمارک"},
   "nld" {"official" "Koninkrijk Denemarken", "common" "Denemarken"},
   "fra" {"official" "Royaume du Danemark", "common" "Danemark"},
   "ita" {"official" "Regno di Danimarca", "common" "Danimarca"},
   "jpn" {"official" "デンマーク王国", "common" "デンマーク"},
   "est" {"official" "Taani Kuningriik", "common" "Taani"},
   "por" {"official" "Reino da Dinamarca", "common" "Dinamarca"},
   "slk" {"official" "Dánske kráľovstvo", "common" "Dánsko"},
   "bre" {"official" "Rouantelezh Danmark", "common" "Danmark"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/dk.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/dk.png"},
  "idd" {"suffixes" ["5"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/dk.svg",
   "alt"
   "The flag of Denmark has a red field with a large white cross that extend to the edges of the field. The vertical part of this cross is offset towards the hoist side.",
   "png" "https://flagcdn.com/w320/dk.png"},
  "unMember" true,
  "name"
  {"official" "Kingdom of Denmark",
   "nativeName"
   {"dan" {"official" "Kongeriget Danmark", "common" "Danmark"}},
   "common" "Denmark"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [55.67 12.58]},
  "tld" [".dk"],
  "ccn3" "208",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"dan" "Danish"},
  "cioc" "DEN",
  "currencies" {"DKK" {"name" "Danish krone", "symbol" "kr"}},
  "independent" true,
  "population" 5831404,
  "cca3" "DNK",
  "borders" ["DEU"],
  "capital" ["Copenhagen"],
  "car" {"signs" ["DK"], "side" "right"},
  "timezones" ["UTC-04:00" "UTC-03:00" "UTC-01:00" "UTC" "UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇩🇰",
  "gini" {"2018" 28.2},
  "fifa" "DEN",
  "cca2" "DK"}
 {"subregion" "Middle Africa",
  "landlocked" false,
  "latlng" [6.0 12.0],
  "area" 475442.0,
  "altSpellings"
  ["CM" "Republic of Cameroon" "République du Cameroun"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/JqiipHgFboG3rBJh9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192830"},
  "demonyms"
  {"eng" {"f" "Cameroonian", "m" "Cameroonian"},
   "fra" {"f" "Camerounaise", "m" "Camerounais"}},
  "translations"
  {"kor" {"official" "카메룬 공화국", "common" "카메룬"},
   "zho" {"official" "喀麦隆共和国", "common" "喀麦隆"},
   "hun" {"official" "Kameruni Köztársaság", "common" "Kamerun"},
   "rus" {"official" "Республика Камерун", "common" "Камерун"},
   "swe" {"official" "Republiken Kamerun", "common" "Kamerun"},
   "ces" {"official" "Kamerunská republika", "common" "Kamerun"},
   "deu" {"official" "Republik Kamerun", "common" "Kamerun"},
   "ara" {"official" "جمهورية الكاميرون", "common" "الكاميرون"},
   "urd" {"official" "جمہوریہ کیمرون", "common" "کیمرون"},
   "srp" {"official" "Република Камерун", "common" "Камерун"},
   "tur" {"official" "Kamerun Cumhuriyeti", "common" "Kamerun"},
   "pol" {"official" "Republika Kamerunu", "common" "Kamerun"},
   "cym" {"official" "Gweriniaeth Camerŵn", "common" "Camerŵn"},
   "hrv" {"official" "Republika Kamerun", "common" "Kamerun"},
   "spa" {"official" "República de Camerún", "common" "Camerún"},
   "fin" {"official" "Kamerunin tasavalta", "common" "Kamerun"},
   "per" {"official" "جمهوری کامِرون", "common" "کامِرون"},
   "nld" {"official" "Republiek Kameroen", "common" "Kameroen"},
   "fra" {"official" "République du Cameroun", "common" "Cameroun"},
   "ita" {"official" "Repubblica del Camerun", "common" "Camerun"},
   "jpn" {"official" "カメルーン共和国", "common" "カメルーン"},
   "est" {"official" "Kameruni Vabariik", "common" "Kamerun"},
   "por" {"official" "República dos Camarões", "common" "Camarões"},
   "slk" {"official" "Kamerunská republika", "common" "Kamerun"},
   "bre" {"official" "Republik Kameroun", "common" "Kameroun"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/cm.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/cm.png"},
  "idd" {"suffixes" ["37"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/cm.svg",
   "alt"
   "The flag of Cameroon is composed of three equal vertical bands of green, red and yellow, with a yellow five-pointed star in the center.",
   "png" "https://flagcdn.com/w320/cm.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Cameroon",
   "nativeName"
   {"eng" {"official" "Republic of Cameroon", "common" "Cameroon"},
    "fra" {"official" "République du Cameroun", "common" "Cameroun"}},
   "common" "Cameroon"},
  "capitalInfo" {"latlng" [3.85 11.5]},
  "tld" [".cm"],
  "ccn3" "120",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"eng" "English", "fra" "French"},
  "cioc" "CMR",
  "currencies"
  {"XAF" {"name" "Central African CFA franc", "symbol" "Fr"}},
  "independent" true,
  "population" 26545864,
  "cca3" "CMR",
  "borders" ["CAF" "TCD" "COG" "GNQ" "GAB" "NGA"],
  "capital" ["Yaoundé"],
  "car" {"signs" ["CAM"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇨🇲",
  "gini" {"2014" 46.6},
  "fifa" "CMR",
  "cca2" "CM"}
 {"subregion" "Western Africa",
  "landlocked" false,
  "latlng" [11.0 -10.0],
  "area" 245857.0,
  "altSpellings" ["GN" "Republic of Guinea" "République de Guinée"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/8J5oM5sA4Ayr1ZYGA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192778"},
  "demonyms"
  {"eng" {"f" "Guinean", "m" "Guinean"},
   "fra" {"f" "Guinéenne", "m" "Guinéen"}},
  "translations"
  {"kor" {"official" "기니 공화국", "common" "기니"},
   "zho" {"official" "几内亚共和国", "common" "几内亚"},
   "hun" {"official" "Guineai Köztársaság", "common" "Guinea"},
   "rus" {"official" "Республика Гвинея", "common" "Гвинея"},
   "swe" {"official" "Republiken Guinea", "common" "Guinea"},
   "ces" {"official" "Guinejská republika", "common" "Guinea"},
   "deu" {"official" "Republik Guinea", "common" "Guinea"},
   "ara" {"official" "جمهورية غينيا", "common" "غينيا"},
   "urd" {"official" "جمہوریہ گنی", "common" "گنی"},
   "srp"
   {"official" "Кооперативна Република Гвајана", "common" "Гвајана"},
   "tur" {"official" "Gine Cumhuriyeti", "common" "Gine"},
   "pol" {"official" "Republika Gwinei", "common" "Gwinea"},
   "cym" {"official" "Republic of Guinea", "common" "Guinea"},
   "hrv" {"official" "Republika Gvineja", "common" "Gvineja"},
   "spa" {"official" "República de Guinea", "common" "Guinea"},
   "fin" {"official" "Guinean tasavalta", "common" "Guinea"},
   "per"
   {"official" "مملکت مستقل پاپوآ گینه نو", "common" "پاپوآ گینه نو"},
   "nld" {"official" "Republiek Guinee", "common" "Guinee"},
   "fra" {"official" "République de Guinée", "common" "Guinée"},
   "ita" {"official" "Repubblica di Guinea", "common" "Guinea"},
   "jpn" {"official" "ギニア共和国", "common" "ギニア"},
   "est" {"official" "Guinea Vabariik", "common" "Guinea"},
   "por" {"official" "República da Guiné", "common" "Guiné"},
   "slk" {"official" "Guinejská republika", "common" "Guinea"},
   "bre" {"official" "Republik Ginea", "common" "Ginea"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/gn.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/gn.png"},
  "idd" {"suffixes" ["24"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/gn.svg",
   "alt"
   "The flag of Guinea is composed of three equal vertical bands of red, yellow and green.",
   "png" "https://flagcdn.com/w320/gn.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Guinea",
   "nativeName"
   {"fra" {"official" "République de Guinée", "common" "Guinée"}},
   "common" "Guinea"},
  "capitalInfo" {"latlng" [9.5 -13.7]},
  "tld" [".gn"],
  "ccn3" "324",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"fra" "French"},
  "cioc" "GUI",
  "currencies" {"GNF" {"name" "Guinean franc", "symbol" "Fr"}},
  "independent" true,
  "population" 13132792,
  "cca3" "GIN",
  "borders" ["CIV" "GNB" "LBR" "MLI" "SEN" "SLE"],
  "capital" ["Conakry"],
  "car" {"signs" ["RG"], "side" "right"},
  "timezones" ["UTC"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇬🇳",
  "gini" {"2012" 33.7},
  "fifa" "GUI",
  "cca2" "GN"}
 {"subregion" "Western Asia",
  "landlocked" false,
  "latlng" [26.0 50.55],
  "area" 765.0,
  "altSpellings" ["BH" "Kingdom of Bahrain" "Mamlakat al-Baḥrayn"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/5Zue99Zc6vFBHxzJ7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/378734"},
  "demonyms"
  {"eng" {"f" "Bahraini", "m" "Bahraini"},
   "fra" {"f" "Bahreïnienne", "m" "Bahreïnien"}},
  "translations"
  {"kor" {"official" "바레인 왕국", "common" "바레인"},
   "zho" {"official" "巴林王国", "common" "巴林"},
   "hun" {"official" "Bahreini Királyság", "common" "Bahrein"},
   "rus" {"official" "Королевство Бахрейн", "common" "Бахрейн"},
   "swe" {"official" "Konungariket Bahrain", "common" "Bahrain"},
   "ces" {"official" "Království Bahrajn", "common" "Bahrajn"},
   "deu" {"official" "Königreich Bahrain", "common" "Bahrain"},
   "ara" {"official" "مملكة البحرين", "common" "‏البحرين"},
   "urd" {"official" "مملکتِ بحرین", "common" "بحرین"},
   "srp" {"official" "Краљевина Бахреин", "common" "Бахреин"},
   "tur" {"official" "Bahreyn Krallığı", "common" "Bahreyn"},
   "pol" {"official" "Królestwo Bahrajnu", "common" "Bahrajn"},
   "cym" {"official" "Teyrnas Bahrein", "common" "Bahrain"},
   "hrv" {"official" "Kraljevina Bahrein", "common" "Bahrein"},
   "spa" {"official" "Reino de Bahrein", "common" "Bahrein"},
   "fin" {"official" "Bahrainin kuningaskunta", "common" "Bahrain"},
   "per" {"official" "پادشاهی بحرین", "common" "بحرین"},
   "nld" {"official" "Koninkrijk Bahrein", "common" "Bahrein"},
   "fra" {"official" "Royaume de Bahreïn", "common" "Bahreïn"},
   "ita" {"official" "Regno del Bahrain", "common" "Bahrein"},
   "jpn" {"official" "バーレーン王国", "common" "バーレーン"},
   "est" {"official" "Bahreini Kuningriik", "common" "Bahrein"},
   "por" {"official" "Reino do Bahrein", "common" "Bahrein"},
   "slk" {"official" "Bahrajnské kráľovstvo", "common" "Bahrajn"},
   "bre" {"official" "Rouantelezh Bahrein", "common" "Bahrein"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/bh.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/bh.png"},
  "idd" {"suffixes" ["73"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/bh.svg",
   "alt"
   "The flag of Bahrain has a red field. On the hoist side, it features a white vertical band that spans about one-third the width of the field and is separated from the rest of the field by five adjoining fly-side pointing white isosceles triangles that serve as a serrated line.",
   "png" "https://flagcdn.com/w320/bh.png"},
  "unMember" true,
  "name"
  {"official" "Kingdom of Bahrain",
   "nativeName"
   {"ara" {"official" "مملكة البحرين", "common" "‏البحرين"}},
   "common" "Bahrain"},
  "postalCode" {"regex" "^(\\d{3}\\d?)$", "format" "####|###"},
  "capitalInfo" {"latlng" [26.23 50.57]},
  "tld" [".bh"],
  "ccn3" "048",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"ara" "Arabic"},
  "cioc" "BHR",
  "currencies" {"BHD" {"name" "Bahraini dinar", "symbol" ".د.ب"}},
  "independent" true,
  "population" 1701583,
  "cca3" "BHR",
  "capital" ["Manama"],
  "car" {"signs" ["BRN"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇧🇭",
  "fifa" "BHR",
  "cca2" "BH"}
 {"subregion" "South America",
  "landlocked" false,
  "latlng" [4.0 -56.0],
  "area" 163820.0,
  "altSpellings"
  ["SR"
   "Sarnam"
   "Sranangron"
   "Republic of Suriname"
   "Republiek Suriname"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/iy7TuQLSi4qgoBoG7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/287082"},
  "demonyms"
  {"eng" {"f" "Surinamer", "m" "Surinamer"},
   "fra" {"f" "Surinamaise", "m" "Surinamais"}},
  "translations"
  {"kor" {"official" "수리남 공화국", "common" "수리남"},
   "zho" {"official" "苏里南共和国", "common" "苏里南"},
   "hun" {"official" "Suriname Köztársaság", "common" "Suriname"},
   "rus" {"official" "Республика Суринам", "common" "Суринам"},
   "swe" {"official" "Republiken Surinam", "common" "Surinam"},
   "ces" {"official" "Republika Surinam", "common" "Surinam"},
   "deu" {"official" "Republik Suriname", "common" "Suriname"},
   "ara" {"official" "جمهورية سورينام", "common" "سورينام"},
   "urd" {"official" "جمہوریہ سرینام", "common" "سرینام"},
   "srp" {"official" "Република Суринам", "common" "Суринам"},
   "tur" {"official" "Surinam Cumhuriyeti", "common" "Surinam"},
   "pol" {"official" "Republika Surinamu", "common" "Surinam"},
   "cym" {"official" "Republic of Suriname", "common" "Suriname"},
   "hrv" {"official" "Republika Surinam", "common" "Surinam"},
   "spa" {"official" "República de Suriname", "common" "Surinam"},
   "fin" {"official" "Surinamen tasavalta", "common" "Suriname"},
   "per" {"official" "جمهوری سورینام", "common" "سورینام"},
   "nld" {"official" "Republiek Suriname", "common" "Suriname"},
   "fra" {"official" "République du Suriname", "common" "Surinam"},
   "ita" {"official" "Repubblica del Suriname", "common" "Suriname"},
   "jpn" {"official" "スリナム共和国", "common" "スリナム"},
   "est" {"official" "Suriname Vabariik", "common" "Suriname"},
   "por" {"official" "República do Suriname", "common" "Suriname"},
   "slk" {"official" "Surinamská republika", "common" "Surinam"},
   "bre" {"official" "Republik Surinam", "common" "Surinam"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/sr.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/sr.png"},
  "idd" {"suffixes" ["97"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/sr.svg",
   "alt"
   "The flag of Suriname is composed of five horizontal bands of green, white, red, white and green in the ratio of 2:1:4:1:2. A large five-pointed yellow star is centered in the red band.",
   "png" "https://flagcdn.com/w320/sr.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Suriname",
   "nativeName"
   {"nld" {"official" "Republiek Suriname", "common" "Suriname"}},
   "common" "Suriname"},
  "capitalInfo" {"latlng" [5.83 -55.17]},
  "tld" [".sr"],
  "ccn3" "740",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"nld" "Dutch"},
  "cioc" "SUR",
  "currencies" {"SRD" {"name" "Surinamese dollar", "symbol" "$"}},
  "independent" true,
  "population" 586634,
  "cca3" "SUR",
  "borders" ["BRA" "GUF" "GUY"],
  "capital" ["Paramaribo"],
  "car" {"signs" ["SME"], "side" "left"},
  "timezones" ["UTC-03:00"],
  "startOfWeek" "monday",
  "continents" ["South America"],
  "flag" "🇸🇷",
  "gini" {"1999" 57.9},
  "fifa" "SUR",
  "cca2" "SR"}
 {"subregion" "Middle Africa",
  "landlocked" false,
  "latlng" [0.0 25.0],
  "area" 2344858.0,
  "altSpellings"
  ["CD"
   "DR Congo"
   "Congo-Kinshasa"
   "Congo, the Democratic Republic of the"
   "DRC"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/KfhNVn6VqdZXWu8n9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192795"},
  "demonyms"
  {"eng" {"f" "Congolese", "m" "Congolese"},
   "fra" {"f" "Congolaise", "m" "Congolais"}},
  "translations"
  {"kor" {"official" "콩고 민주 공화국", "common" "콩고 민주 공화국"},
   "zho" {"official" "刚果民主共和国", "common" "民主刚果"},
   "hun"
   {"official" "Kongói Demokratikus Köztársaság",
    "common" "Kongói Demokratikus Köztársaság"},
   "rus"
   {"official" "Демократическая Республика Конго",
    "common" "Демократическая Республика Конго"},
   "swe"
   {"official" "Demokratiska republiken Kongo",
    "common" "Kongo-Kinshasa"},
   "ces"
   {"official" "Demokratická republika Kongo", "common" "DR Kongo"},
   "deu"
   {"official" "Demokratische Republik Kongo",
    "common" "Kongo (Dem. Rep.)"},
   "ara"
   {"official" "جمهورية الكونغو الديمقراطية", "common" "الكونغو"},
   "urd" {"official" "جمہوری جمہوریہ کانگو", "common" "کانگو"},
   "srp"
   {"official" "Демократска Република Конго", "common" "ДР Конго"},
   "tur"
   {"official" "Kongo Demokratik Cumhuriyeti",
    "common" "Kongo Demokratik Cumhuriyeti"},
   "pol"
   {"official" "Demokratyczna Republika Konga",
    "common" "Demokratyczna Republika Konga"},
   "cym"
   {"official" "Gweriniaeth Ddemocrataidd Congo",
    "common" "Gweriniaeth Ddemocrataidd Congo"},
   "hrv"
   {"official" "Demokratska Republika Kongo",
    "common" "Kongo, Demokratska Republika"},
   "spa"
   {"official" "República Democrática del Congo",
    "common" "Congo (Rep. Dem.)"},
   "fin"
   {"official" "Kongon demokraattinen tasavalta",
    "common" "Kongon demokraattinen tasavalta"},
   "per"
   {"official" "جمهوری دموکراتیک کنگو", "common" "کنگو دموکراتیک"},
   "nld"
   {"official" "Democratische Republiek Congo",
    "common" "Congo (DRC)"},
   "fra"
   {"official" "République démocratique du Congo",
    "common" "Congo (Rép. dém.)"},
   "ita"
   {"official" "Repubblica Democratica del Congo",
    "common" "Congo (Rep. Dem.)"},
   "jpn" {"official" "コンゴ民主共和国", "common" "コンゴ民主共和国"},
   "est"
   {"official" "Kongo Demokraatlik Vabariik", "common" "Kongo DV"},
   "por"
   {"official" "República Democrática do Congo",
    "common" "República Democrática do Congo"},
   "slk"
   {"official" "Konžská demokratická republika", "common" "Kongo"},
   "bre"
   {"official" "Republik Demokratel Kongo",
    "common" "Kongo-Kinshasa"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/cd.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/cd.png"},
  "idd" {"suffixes" ["43"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/cd.svg",
   "alt"
   "The flag of the Democratic Republic of the Congo has a sky-blue field with a yellow-edged red diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. A large five-pointed yellow star is situated above the diagonal band on the upper hoist side of the field.",
   "png" "https://flagcdn.com/w320/cd.png"},
  "unMember" true,
  "name"
  {"official" "Democratic Republic of the Congo",
   "nativeName"
   {"lin"
    {"official" "Republiki ya Kongó Demokratiki",
     "common" "Republiki ya Kongó Demokratiki"},
    "lua"
    {"official" "Ditunga dia Kongu wa Mungalaata",
     "common" "Ditunga dia Kongu wa Mungalaata"},
    "kon"
    {"official" "Repubilika ya Kongo Demokratiki",
     "common" "Repubilika ya Kongo Demokratiki"},
    "fra"
    {"official" "République démocratique du Congo",
     "common" "RD Congo"},
    "swa"
    {"official" "Jamhuri ya Kidemokrasia ya Kongo",
     "common" "Jamhuri ya Kidemokrasia ya Kongo"}},
   "common" "DR Congo"},
  "capitalInfo" {"latlng" [-4.32 15.3]},
  "tld" [".cd"],
  "ccn3" "180",
  "status" "officially-assigned",
  "region" "Africa",
  "languages"
  {"lin" "Lingala",
   "lua" "Tshiluba",
   "kon" "Kikongo",
   "fra" "French",
   "swa" "Swahili"},
  "cioc" "COD",
  "currencies" {"CDF" {"name" "Congolese franc", "symbol" "FC"}},
  "independent" true,
  "population" 108407721,
  "cca3" "COD",
  "borders" ["AGO" "BDI" "CAF" "COG" "RWA" "SSD" "TZA" "UGA" "ZMB"],
  "capital" ["Kinshasa"],
  "car" {"signs" ["CGO"], "side" "right"},
  "timezones" ["UTC+01:00" "UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇨🇩",
  "gini" {"2012" 42.1},
  "fifa" "COD",
  "cca2" "CD"}
 {"subregion" "Eastern Africa",
  "landlocked" false,
  "latlng" [10.0 49.0],
  "area" 637657.0,
  "altSpellings"
  ["SO"
   "aṣ-Ṣūmāl"
   "Federal Republic of Somalia"
   "Jamhuuriyadda Federaalka Soomaaliya"
   "Jumhūriyyat aṣ-Ṣūmāl al-Fiderāliyya"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/8of8q7D1a8p7R6Fc9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192799"},
  "demonyms"
  {"eng" {"f" "Somali", "m" "Somali"},
   "fra" {"f" "Somalienne", "m" "Somalien"}},
  "translations"
  {"kor" {"official" " 소말리아 연방 공화국", "common" "소말리아"},
   "zho" {"official" "索马里共和国", "common" "索马里"},
   "hun"
   {"official" "Szomáli Szövetségi Köztársaság", "common" "Szomália"},
   "rus"
   {"official" "Федеративная Республика Сомали", "common" "Сомали"},
   "swe" {"official" "Förbundsrepubliken Somalia", "common" "Somalia"},
   "ces"
   {"official" "Somálská demokratická republika", "common" "Somálsko"},
   "deu" {"official" "Bundesrepublik Somalia", "common" "Somalia"},
   "ara" {"official" "جمهورية الصومال الفيدرالية", "common" "الصومال"},
   "urd" {"official" "وفاقی جمہوریہ صومالیہ", "common" "صومالیہ"},
   "srp"
   {"official" "Савезна Република Сомалија", "common" "Сомалија"},
   "tur" {"official" "Somali Federal Cumhuriyeti", "common" "Somali"},
   "pol"
   {"official" "Federalna Republika Somalii", "common" "Somalia"},
   "cym"
   {"official" "Federal Republic of Somalia", "common" "Somalia"},
   "hrv"
   {"official" "Savezna Republika Somaliji", "common" "Somalija"},
   "spa"
   {"official" "República Federal de Somalia", "common" "Somalia"},
   "fin" {"official" "Somalian liittotasavalta", "common" "Somalia"},
   "per" {"official" "جمهوری فدرال سومالی", "common" "سومالی"},
   "nld" {"official" "Federale Republiek Somalië", "common" "Somalië"},
   "fra"
   {"official" "République fédérale de Somalie", "common" "Somalie"},
   "ita"
   {"official" "Repubblica federale di Somalia", "common" "Somalia"},
   "jpn" {"official" "ソマリア連邦共和国", "common" "ソマリア"},
   "est" {"official" "Somaalia Liitvabariik", "common" "Somaalia"},
   "por"
   {"official" "República Federal da Somália", "common" "Somália"},
   "slk"
   {"official" "Somálska federatívna republika", "common" "Somálsko"},
   "bre"
   {"official" "Republik Kevreadel Somalia", "common" "Somalia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/so.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/so.png"},
  "idd" {"suffixes" ["52"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/so.svg",
   "alt"
   "The flag of Somalia features a large five-pointed white star centered on a light blue field.",
   "png" "https://flagcdn.com/w320/so.png"},
  "unMember" true,
  "name"
  {"official" "Federal Republic of Somalia",
   "nativeName"
   {"ara" {"official" "جمهورية الصومال‎‎", "common" "الصومال‎‎"},
    "som"
    {"official" "Jamhuuriyadda Federaalka Soomaaliya",
     "common" "Soomaaliya"}},
   "common" "Somalia"},
  "postalCode" {"regex" "^([A-Z]{2}\\d{5})$", "format" "@@  #####"},
  "capitalInfo" {"latlng" [2.07 45.33]},
  "tld" [".so"],
  "ccn3" "706",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"ara" "Arabic", "som" "Somali"},
  "cioc" "SOM",
  "currencies" {"SOS" {"name" "Somali shilling", "symbol" "Sh"}},
  "independent" true,
  "population" 15893219,
  "cca3" "SOM",
  "borders" ["DJI" "ETH" "KEN"],
  "capital" ["Mogadishu"],
  "car" {"signs" ["SO"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇸🇴",
  "gini" {"2017" 36.8},
  "fifa" "SOM",
  "cca2" "SO"}
 {"subregion" "Central Europe",
  "landlocked" true,
  "latlng" [49.75 15.5],
  "area" 78865.0,
  "altSpellings" ["CZ" "Česká republika" "Česko"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/47dmgeXMZyhDHyQW8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/51684"},
  "demonyms"
  {"eng" {"f" "Czech", "m" "Czech"},
   "fra" {"f" "Tchèque", "m" "Tchèque"}},
  "translations"
  {"kor" {"official" "체코", "common" "체코"},
   "zho" {"official" "捷克共和国", "common" "捷克"},
   "hun" {"official" "Cseh Köztársaság", "common" "Csehország"},
   "rus" {"official" "Чешская Республика", "common" "Чехия"},
   "swe" {"official" "Republiken Tjeckien", "common" "Tjeckien"},
   "ces" {"official" "Česká republika", "common" "Česko"},
   "deu" {"official" "Tschechische Republik", "common" "Tschechien"},
   "ara" {"official" "جمهورية التشيك", "common" "التشيك"},
   "urd" {"official" "چيک جمہوريہ", "common" "چيک"},
   "srp" {"official" "Чешка Република", "common" "Чешка"},
   "tur" {"official" "Çek Cumhuriyeti", "common" "Çekya"},
   "pol" {"official" "Republika Czeska", "common" "Czechy"},
   "cym"
   {"official" "Y Weriniaeth Tsiec", "common" "Y Weriniaeth Tsiec"},
   "hrv" {"official" "Češka", "common" "Češka"},
   "spa" {"official" "República Checa", "common" "Chequia"},
   "fin" {"official" "Tšekin tasavalta", "common" "Tšekki"},
   "per" {"official" "جمهوری چک", "common" "جمهوری چک"},
   "nld" {"official" "Tsjechische Republiek", "common" "Tsjechië"},
   "fra" {"official" "République tchèque", "common" "Tchéquie"},
   "ita" {"official" "Repubblica Ceca", "common" "Cechia"},
   "jpn" {"official" "チェコ共和国", "common" "チェコ"},
   "est" {"official" "Tšehhi Vabariik", "common" "Tšehhi"},
   "por" {"official" "República Checa", "common" "Chéquia"},
   "slk" {"official" "Česká republika", "common" "Česko"},
   "bre" {"official" "Republik Tchek", "common" "Tchekia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/cz.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/cz.png"},
  "idd" {"suffixes" ["20"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/cz.svg",
   "alt"
   "The flag of Czechia is composed of two equal horizontal bands of white and red, with a blue isosceles triangle superimposed on the hoist side of the field. The triangle has its base on the hoist end and spans about two-fifth the width of the field.",
   "png" "https://flagcdn.com/w320/cz.png"},
  "unMember" true,
  "name"
  {"official" "Czech Republic",
   "nativeName"
   {"ces" {"official" "Česká republika", "common" "Česko"},
    "slk" {"official" "Česká republika", "common" "Česko"}},
   "common" "Czechia"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "### ##"},
  "capitalInfo" {"latlng" [50.08 14.47]},
  "tld" [".cz"],
  "ccn3" "203",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"ces" "Czech", "slk" "Slovak"},
  "cioc" "CZE",
  "currencies" {"CZK" {"name" "Czech koruna", "symbol" "Kč"}},
  "independent" true,
  "population" 10698896,
  "cca3" "CZE",
  "borders" ["AUT" "DEU" "POL" "SVK"],
  "capital" ["Prague"],
  "car" {"signs" ["CZ"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇨🇿",
  "gini" {"2018" 25.0},
  "fifa" "CZE",
  "cca2" "CZ"}
 {"subregion" "Melanesia",
  "landlocked" false,
  "latlng" [-21.5 165.5],
  "area" 18575.0,
  "altSpellings" ["NC"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/cBhtCeMdob4U7FRU9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/3407643"},
  "demonyms"
  {"eng" {"f" "New Caledonian", "m" "New Caledonian"},
   "fra" {"f" "Néo-Calédonienne", "m" "Néo-Calédonien"}},
  "translations"
  {"kor" {"official" "누벨칼레도니", "common" "누벨칼레도니"},
   "zho" {"official" "新喀里多尼亚", "common" "新喀里多尼亚"},
   "hun" {"official" "Új-Kaledónia", "common" "Új-Kaledónia"},
   "rus" {"official" "Новая Каледония", "common" "Новая Каледония"},
   "swe" {"official" "Nya Kaledonien", "common" "Nya Kaledonien"},
   "ces" {"official" "Nová Kaledonie", "common" "Nová Kaledonie"},
   "deu" {"official" "Neukaledonien", "common" "Neukaledonien"},
   "ara"
   {"official" "كاليدونيا الجديدة", "common" "كاليدونيا الجديدة"},
   "urd" {"official" "نیو کیلیڈونیا", "common" "نیو کیلیڈونیا"},
   "srp" {"official" "Нова Каледонија", "common" "Нова Каледонија"},
   "tur" {"official" "Yeni Kaledonya", "common" "Yeni Kaledonya"},
   "pol" {"official" "Nowa Kaledonia", "common" "Nowa Kaledonia"},
   "cym" {"official" "New Caledonia", "common" "New Caledonia"},
   "hrv" {"official" "Nova Kaledonija", "common" "Nova Kaledonija"},
   "spa" {"official" "nueva Caledonia", "common" "Nueva Caledonia"},
   "fin" {"official" "Uusi-Kaledonia", "common" "Uusi-Kaledonia"},
   "per" {"official" "کالدونیای جدید", "common" "کالدونیای جدید"},
   "nld" {"official" "nieuw -Caledonië", "common" "Nieuw-Caledonië"},
   "fra"
   {"official" "Nouvelle-Calédonie", "common" "Nouvelle-Calédonie"},
   "ita" {"official" "Nuova Caledonia", "common" "Nuova Caledonia"},
   "jpn" {"official" "ニューカレドニア", "common" "ニューカレドニア"},
   "est" {"official" "Uus-Kaledoonia", "common" "Uus-Kaledoonia"},
   "por" {"official" "New Caledonia", "common" "Nova Caledónia"},
   "slk" {"official" "Nová Kaledónia", "common" "Nová Kaledónia"},
   "bre" {"official" "Kaledonia-Nevez", "common" "Kaledonia-Nevez"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/nc.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/nc.png"},
  "idd" {"suffixes" ["87"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/nc.svg",
   "png" "https://flagcdn.com/w320/nc.png"},
  "unMember" false,
  "name"
  {"official" "New Caledonia",
   "nativeName"
   {"fra"
    {"official" "Nouvelle-Calédonie", "common" "Nouvelle-Calédonie"}},
   "common" "New Caledonia"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [-22.27 166.45]},
  "tld" [".nc"],
  "ccn3" "540",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"fra" "French"},
  "currencies" {"XPF" {"name" "CFP franc", "symbol" "₣"}},
  "independent" false,
  "population" 271960,
  "cca3" "NCL",
  "capital" ["Nouméa"],
  "car" {"signs" ["F"], "side" "right"},
  "timezones" ["UTC+11:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇳🇨",
  "fifa" "NCL",
  "cca2" "NC"}
 {"subregion" "Melanesia",
  "landlocked" false,
  "latlng" [-16.0 167.0],
  "area" 12189.0,
  "altSpellings"
  ["VU"
   "Republic of Vanuatu"
   "Ripablik blong Vanuatu"
   "République de Vanuatu"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/hwAjehcT7VfvP5zJ8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2177246"},
  "demonyms"
  {"eng" {"f" "Ni-Vanuatu", "m" "Ni-Vanuatu"},
   "fra" {"f" "Vanuatuane", "m" "Vanuatuan"}},
  "translations"
  {"kor" {"official" "바누아투 공화국", "common" "바누아투"},
   "zho" {"official" "瓦努阿图共和国", "common" "瓦努阿图"},
   "hun" {"official" "Vanuatui Köztársaság", "common" "Vanuatu"},
   "rus" {"official" "Республика Вануату", "common" "Вануату"},
   "swe" {"official" "Republiken Vanuatu", "common" "Vanuatu"},
   "ces" {"official" "Republika Vanuatu", "common" "Vanuatu"},
   "deu" {"official" "Vanuatu", "common" "Vanuatu"},
   "ara" {"official" "جمهورية فانواتو", "common" "فانواتو"},
   "urd" {"official" "جمہوریہ وانواتو", "common" "وانواتو"},
   "srp" {"official" "Република Вануату", "common" "Вануату"},
   "tur" {"official" "Vanuatu Cumhuriyeti", "common" "Vanuatu"},
   "pol" {"official" "Republika Vanuatu", "common" "Vanuatu"},
   "cym" {"official" "Republic of Vanuatu", "common" "Vanuatu"},
   "hrv" {"official" "Republika Vanuatu", "common" "Vanuatu"},
   "spa" {"official" "República de Vanuatu", "common" "Vanuatu"},
   "fin" {"official" "Vanuatun tasavalta", "common" "Vanuatu"},
   "per" {"official" "جمهوری وانواتو", "common" "وانواتو"},
   "nld" {"official" "Republiek Vanuatu", "common" "Vanuatu"},
   "fra" {"official" "République de Vanuatu", "common" "Vanuatu"},
   "ita" {"official" "Repubblica di Vanuatu", "common" "Vanuatu"},
   "jpn" {"official" "バヌアツ共和国", "common" "バヌアツ"},
   "est" {"official" "Vanuatu Vabariik", "common" "Vanuatu"},
   "por" {"official" "República de Vanuatu", "common" "Vanuatu"},
   "slk" {"official" "Vanuatská republika", "common" "Vanuatu"},
   "bre" {"official" "Republik Vanuatu", "common" "Vanuatu"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/vu.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/vu.png"},
  "idd" {"suffixes" ["78"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/vu.svg",
   "alt"
   "The flag of Vanuatu is composed of two equal horizontal bands of red and green, with a black isosceles triangle superimposed on the hoist side of the field. This triangle has its base on the hoist end, spans about two-fifth the width of the field and is enclosed on its sides by the arms of a thin black-edged yellow horizontally oriented Y-shaped band which extends along the boundary of the red and green bands to the fly end of the field. A yellow boar's tusk encircling two yellow crossed namele leaves is centered in the triangle.",
   "png" "https://flagcdn.com/w320/vu.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Vanuatu",
   "nativeName"
   {"eng" {"official" "Republic of Vanuatu", "common" "Vanuatu"},
    "bis" {"official" "Ripablik blong Vanuatu", "common" "Vanuatu"},
    "fra" {"official" "République de Vanuatu", "common" "Vanuatu"}},
   "common" "Vanuatu"},
  "capitalInfo" {"latlng" [-17.73 168.32]},
  "tld" [".vu"],
  "ccn3" "548",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"eng" "English", "bis" "Bislama", "fra" "French"},
  "cioc" "VAN",
  "currencies" {"VUV" {"name" "Vanuatu vatu", "symbol" "Vt"}},
  "independent" true,
  "population" 307150,
  "cca3" "VUT",
  "capital" ["Port Vila"],
  "car" {"signs" ["VU"], "side" "right"},
  "timezones" ["UTC+11:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇻🇺",
  "gini" {"2010" 37.6},
  "fifa" "VAN",
  "cca2" "VU"}
 {"subregion" "Western Africa",
  "landlocked" false,
  "latlng" [-15.95 -5.72],
  "area" 394.0,
  "altSpellings"
  ["Saint Helena" "St. Helena, Ascension and Tristan da Cunha"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/iv4VxnPzHkjLCJuc6",
   "openStreetMaps"
   "https://www.openstreetmap.org/relation/4868269#map=13/-15.9657/-5.7120"},
  "demonyms"
  {"eng" {"f" "Saint Helenian", "m" "Saint Helenian"},
   "fra" {"f" "Sainte-Hélénoise", "m" "Sainte-Hélènois"}},
  "translations"
  {"kor" {"official" "세인트헬레나", "common" "세인트헬레나"},
   "zho"
   {"official" "圣赫勒拿、阿森松和特里斯坦-达库尼亚", "common" "圣赫勒拿、阿森松和特里斯坦-达库尼亚"},
   "hun" {"official" "Szent Ilona", "common" "Szent Ilona-sziget"},
   "rus"
   {"official" "Острова Святой Елены, Вознесения и Тристан-да-Кунья",
    "common" "Острова Святой Елены, Вознесения и Тристан-да-Кунья"},
   "swe" {"official" "Sankta Helena", "common" "Sankta Helena"},
   "ces"
   {"official" "Svatá Helena, Ascension a Tristan da Cunha",
    "common" "Svatá Helena, Ascension a Tristan da Cunha"},
   "deu"
   {"official" "Sankt Helena, Ascension und Tristan da Cunha",
    "common" "St. Helena, Ascension und Tristan da Cunha"},
   "ara"
   {"official" "سانت هيلينا وأسينشين وتريستان دا كونا",
    "common" "سانت هيلينا وأسينشين وتريستان دا كونا"},
   "urd"
   {"official" "سینٹ ہلینا، اسینشن و ترسٹان دا کونیا",
    "common" "سینٹ ہلینا، اسینشن و ترسٹان دا کونیا"},
   "srp"
   {"official" "Света Јелена, Асенсион и Тристан да Куња",
    "common" "Света Јелена"},
   "tur" {"official" "Saint Helena", "common" "Saint Helena"},
   "pol"
   {"official"
    "Wyspa Świętej Heleny, Wyspa Wniebowstąpienia i Tristan da Cunha",
    "common"
    "Wyspa Świętej Heleny, Wyspa Wniebowstąpienia i Tristan da Cunha"},
   "cym"
   {"official" "Saint Helena, Ascension and Tristan da Cunha",
    "common" "Saint Helena, Ascension and Tristan da Cunha"},
   "hrv" {"official" "Sveta Helena", "common" "Sveta Helena"},
   "spa"
   {"official" "Santa Elena, Ascensión y Tristán de Acuña",
    "common" "Santa Elena, Ascensión y Tristán de Acuña"},
   "fin"
   {"official" "Saint Helena, Ascension ja Tristan da Cunha",
    "common" "Saint Helena, Ascension ja Tristan da Cunha"},
   "per" {"official" "سنت هلن", "common" "سنت هلن"},
   "nld"
   {"official" "Sint-Helena, Ascension en Tristan da Cunha",
    "common" "Sint-Helena, Ascension en Tristan da Cunha"},
   "fra"
   {"official" "Sainte-Hélène, Ascension et Tristan da Cunha",
    "common" "Sainte-Hélène, Ascension et Tristan da Cunha"},
   "ita"
   {"official" "Sant'Elena, Ascensione e Tristan da Cunha",
    "common" "Sant'Elena, Ascensione e Tristan da Cunha"},
   "jpn"
   {"official" "セントヘレナ・アセンションおよびトリスタンダクーニャ",
    "common" "セントヘレナ・アセンションおよびトリスタンダクーニャ"},
   "est"
   {"official" "Saint Helena, Ascension ja Tristan da Cunha",
    "common" "Saint Helena, Ascension ja Tristan da Cunha"},
   "por"
   {"official" "Santa Helena, Ascensão e Tristão da Cunha",
    "common" "Santa Helena, Ascensão e Tristão da Cunha"},
   "slk"
   {"official" "Svätá Helena (zámorské územie)",
    "common" "Svätá Helena (zámorské územie)"},
   "bre"
   {"official" "Saint Helena, Ascension ha Tristan da Cunha",
    "common" "Saint Helena, Ascension ha Tristan da Cunha"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["90" "47"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/sh.svg",
   "png" "https://flagcdn.com/w320/sh.png"},
  "unMember" false,
  "name"
  {"official" "Saint Helena, Ascension and Tristan da Cunha",
   "nativeName"
   {"eng"
    {"official" "Saint Helena, Ascension and Tristan da Cunha",
     "common" "Saint Helena, Ascension and Tristan da Cunha"}},
   "common" "Saint Helena, Ascension and Tristan da Cunha"},
  "postalCode" {"regex" "^(STHL1ZZ)$", "format" "STHL 1ZZ"},
  "capitalInfo" {"latlng" [-15.93 -5.72]},
  "tld" [".sh" ".ac"],
  "ccn3" "654",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"eng" "English"},
  "currencies"
  {"SHP" {"name" "Saint Helena pound", "symbol" "£"},
   "GBP" {"name" "Pound sterling", "symbol" "£"}},
  "independent" false,
  "population" 53192,
  "cca3" "SHN",
  "capital" ["Jamestown"],
  "car" {"signs" ["GB"], "side" "left"},
  "timezones" ["UTC+00:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇸🇭",
  "cca2" "SH"}
 {"subregion" "Western Africa",
  "landlocked" false,
  "latlng" [8.0 1.16666666],
  "area" 56785.0,
  "altSpellings"
  ["TG" "Togolese" "Togolese Republic" "République Togolaise"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/jzAa9feXuXPrKVb89",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192782"},
  "demonyms"
  {"eng" {"f" "Togolese", "m" "Togolese"},
   "fra" {"f" "Togolaise", "m" "Togolais"}},
  "translations"
  {"kor" {"official" "토고 공화국", "common" "토고"},
   "zho" {"official" "多哥共和国", "common" "多哥"},
   "hun" {"official" "Togói Köztársaság", "common" "Togo"},
   "rus" {"official" "Того Республика", "common" "Того"},
   "swe" {"official" "Republiken Togo", "common" "Togo"},
   "ces" {"official" "Republika Togo", "common" "Togo"},
   "deu" {"official" "Republik Togo", "common" "Togo"},
   "ara" {"official" "جمهورية توغو", "common" "توغو"},
   "urd" {"official" "جمہوریہ ٹوگو", "common" "ٹوگو"},
   "srp" {"official" "Тоголешка Република", "common" "Того"},
   "tur" {"official" "Togo Cumhuriyeti", "common" "Togo"},
   "pol" {"official" "Republika Togijska", "common" "Togo"},
   "cym" {"official" "Togolese Republic", "common" "Togo"},
   "hrv" {"official" "Togolese Republika", "common" "Togo"},
   "spa" {"official" "República de Togo", "common" "Togo"},
   "fin" {"official" "Togon tasavalta", "common" "Togo"},
   "per" {"official" "جمهوری توگو", "common" "توگو"},
   "nld" {"official" "Republiek Togo", "common" "Togo"},
   "fra" {"official" "République togolaise", "common" "Togo"},
   "ita" {"official" "Repubblica del Togo", "common" "Togo"},
   "jpn" {"official" "トーゴ共和国", "common" "トーゴ"},
   "est" {"official" "Togo Vabariik", "common" "Togo"},
   "por" {"official" "República do Togo", "common" "Togo"},
   "slk" {"official" "Togská republika", "common" "Togo"},
   "bre" {"official" "Republik Togoat", "common" "Togo"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/tg.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/tg.png"},
  "idd" {"suffixes" ["28"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/tg.svg",
   "alt"
   "The flag of Togo is composed of five equal horizontal bands of green alternating with yellow. A red square bearing a five-pointed white star is superimposed in the canton.",
   "png" "https://flagcdn.com/w320/tg.png"},
  "unMember" true,
  "name"
  {"official" "Togolese Republic",
   "nativeName"
   {"fra" {"official" "République togolaise", "common" "Togo"}},
   "common" "Togo"},
  "capitalInfo" {"latlng" [6.14 1.21]},
  "tld" [".tg"],
  "ccn3" "768",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"fra" "French"},
  "cioc" "TOG",
  "currencies"
  {"XOF" {"name" "West African CFA franc", "symbol" "Fr"}},
  "independent" true,
  "population" 8278737,
  "cca3" "TGO",
  "borders" ["BEN" "BFA" "GHA"],
  "capital" ["Lomé"],
  "car" {"signs" ["TG"], "side" "right"},
  "timezones" ["UTC"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇹🇬",
  "gini" {"2015" 43.1},
  "fifa" "TOG",
  "cca2" "TG"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [18.431383 -64.62305],
  "area" 151.0,
  "altSpellings" ["VG" "Virgin Islands, British"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/49C9cSesNVAR9DQk8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/285454"},
  "demonyms" {"eng" {"f" "Virgin Islander", "m" "Virgin Islander"}},
  "translations"
  {"kor" {"official" "영국령 버진아일랜드", "common" "영국령 버진아일랜드"},
   "zho" {"official" "英属维尔京群岛", "common" "英属维尔京群岛"},
   "hun"
   {"official" "Brit Virgin-szigetek",
    "common" "Brit Virgin-szigetek"},
   "rus"
   {"official" "Виргинские острова",
    "common" "Британские Виргинские острова"},
   "swe"
   {"official" "Brittiska Jungfruöarna",
    "common" "Brittiska Jungfruöarna"},
   "ces"
   {"official" "Britské Panenské ostrovy",
    "common" "Britské Panenské ostrovy"},
   "deu"
   {"official" "Jungferninseln", "common" "Britische Jungferninseln"},
   "ara" {"official" "جزر العذراء البريطانية", "common" "جزر العذراء"},
   "urd"
   {"official" "برطانوی جزائر ورجن", "common" "برطانوی جزائر ورجن"},
   "srp"
   {"official" "Британска Девичанска Острва",
    "common" "Британска Девичанска Острва"},
   "tur" {"official" "Virjin Adaları", "common" "Virjin Adaları"},
   "pol"
   {"official" "Brytyjskie Wyspy Dziewicze",
    "common" "Brytyjskie Wyspy Dziewicze"},
   "cym"
   {"official" "Virgin Islands", "common" "British Virgin Islands"},
   "hrv"
   {"official" "Djevičanski Otoci",
    "common" "Britanski Djevičanski Otoci"},
   "spa"
   {"official" "Islas Vírgenes",
    "common" "Islas Vírgenes del Reino Unido"},
   "fin"
   {"official" "Brittiläiset Neitsytsaaret", "common" "Neitsytsaaret"},
   "per"
   {"official" "جزایر ویرجین بریتانیا",
    "common" "جزایر ویرجین بریتانیا"},
   "nld"
   {"official" "Maagdeneilanden", "common" "Britse Maagdeneilanden"},
   "fra"
   {"official" "îles Vierges", "common" "Îles Vierges britanniques"},
   "ita"
   {"official" "Isole Vergini", "common" "Isole Vergini Britanniche"},
   "jpn" {"official" "バージン諸島", "common" "イギリス領ヴァージン諸島"},
   "est" {"official" "Neitsisaared", "common" "Briti Neitsisaared"},
   "por" {"official" "Ilhas Virgens", "common" "Ilhas Virgens"},
   "slk" {"official" "Panenské ostrovy", "common" "Panenské ostrovy"},
   "bre"
   {"official" "Inizi Gwerc'h Breizhveurat",
    "common" "Inizi Gwerc'h Breizhveurat"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/vg.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/vg.png"},
  "idd" {"suffixes" ["284"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/vg.svg",
   "png" "https://flagcdn.com/w320/vg.png"},
  "unMember" false,
  "name"
  {"official" "Virgin Islands",
   "nativeName"
   {"eng"
    {"official" "Virgin Islands", "common" "British Virgin Islands"}},
   "common" "British Virgin Islands"},
  "capitalInfo" {"latlng" [18.42 -64.62]},
  "tld" [".vg"],
  "ccn3" "092",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "cioc" "IVB",
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" false,
  "population" 30237,
  "cca3" "VGB",
  "capital" ["Road Town"],
  "car" {"signs" ["BVI"], "side" "left"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇻🇬",
  "fifa" "VGB",
  "cca2" "VG"}
 {"subregion" "Eastern Africa",
  "landlocked" false,
  "latlng" [1.0 38.0],
  "area" 580367.0,
  "altSpellings" ["KE" "Republic of Kenya" "Jamhuri ya Kenya"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/Ni9M7wcCxf8bJHLX8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192798"},
  "demonyms"
  {"eng" {"f" "Kenyan", "m" "Kenyan"},
   "fra" {"f" "Kényane", "m" "Kényan"}},
  "translations"
  {"kor" {"official" "케냐 공화국", "common" "케냐"},
   "zho" {"official" "肯尼亚共和国", "common" "肯尼亚"},
   "hun" {"official" "Kenyai Köztársaság", "common" "Kenya"},
   "rus" {"official" "Республика Кения", "common" "Кения"},
   "swe" {"official" "Republiken Kenya", "common" "Kenya"},
   "ces" {"official" "Keňská republika", "common" "Keňa"},
   "deu" {"official" "Republik Kenia", "common" "Kenia"},
   "ara" {"official" "جمهورية كينيا", "common" "كينيا"},
   "urd" {"official" "جمہوریہ کینیا", "common" "کینیا"},
   "srp" {"official" "Република Кенија", "common" "Кенија"},
   "tur" {"official" "Kenya Cumhuriyeti", "common" "Kenya"},
   "pol" {"official" "Republika Kenii", "common" "Kenia"},
   "cym" {"official" "Republic of Kenya", "common" "Kenya"},
   "hrv" {"official" "Republika Kenija", "common" "Kenija"},
   "spa" {"official" "República de Kenya", "common" "Kenia"},
   "fin" {"official" "Kenian tasavalta", "common" "Kenia"},
   "per" {"official" "جمهوری کنیا", "common" "کنیا"},
   "nld" {"official" "Republiek Kenia", "common" "Kenia"},
   "fra" {"official" "République du Kenya", "common" "Kenya"},
   "ita" {"official" "Repubblica del Kenya", "common" "Kenya"},
   "jpn" {"official" "ケニア共和国", "common" "ケニア"},
   "est" {"official" "Keenia Vabariik", "common" "Keenia"},
   "por" {"official" "República do Quénia", "common" "Quénia"},
   "slk" {"official" "Kenská republika", "common" "Keňa"},
   "bre" {"official" "Republik Kenya", "common" "Kenya"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ke.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ke.png"},
  "idd" {"suffixes" ["54"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/ke.svg",
   "alt"
   "The flag of Kenya is composed of three equal horizontal bands of black, red with white top and bottom edges, and green. An emblem comprising a red, black and white Maasai shield covering two crossed white spears is superimposed at the center of the field.",
   "png" "https://flagcdn.com/w320/ke.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Kenya",
   "nativeName"
   {"eng" {"official" "Republic of Kenya", "common" "Kenya"},
    "swa" {"official" "Republic of Kenya", "common" "Kenya"}},
   "common" "Kenya"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [-1.28 36.82]},
  "tld" [".ke"],
  "ccn3" "404",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"eng" "English", "swa" "Swahili"},
  "cioc" "KEN",
  "currencies" {"KES" {"name" "Kenyan shilling", "symbol" "Sh"}},
  "independent" true,
  "population" 53771300,
  "cca3" "KEN",
  "borders" ["ETH" "SOM" "SSD" "TZA" "UGA"],
  "capital" ["Nairobi"],
  "car" {"signs" ["EAK"], "side" "left"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇰🇪",
  "gini" {"2015" 40.8},
  "fifa" "KEN",
  "cca2" "KE"}
 {"subregion" "Polynesia",
  "landlocked" false,
  "latlng" [-19.03333333 -169.86666666],
  "area" 260.0,
  "altSpellings" ["NU"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/xFgdzs3E55Rk1y8P9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1558556"},
  "demonyms"
  {"eng" {"f" "Niuean", "m" "Niuean"},
   "fra" {"f" "Niuéenne", "m" "Niuéen"}},
  "translations"
  {"kor" {"official" "니우에", "common" "니우에"},
   "zho" {"official" "纽埃", "common" "纽埃"},
   "hun" {"official" "Niue", "common" "Niue"},
   "rus" {"official" "Ниуэ", "common" "Ниуэ"},
   "swe" {"official" "Niue", "common" "Niue"},
   "ces" {"official" "Niue", "common" "Niue"},
   "deu" {"official" "Niue", "common" "Niue"},
   "ara" {"official" "نييوي", "common" "نييوي"},
   "urd" {"official" "نیووے", "common" "نیووے"},
   "srp" {"official" "Нијуе", "common" "Нијуе"},
   "tur" {"official" "Niue", "common" "Niue"},
   "pol" {"official" "Niue", "common" "Niue"},
   "cym" {"official" "Niue", "common" "Niue"},
   "hrv" {"official" "Niue", "common" "Niue"},
   "spa" {"official" "Niue", "common" "Niue"},
   "fin" {"official" "Niue", "common" "Niue"},
   "per" {"official" "نیووی", "common" "نیووی"},
   "nld" {"official" "Niue", "common" "Niue"},
   "fra" {"official" "Niue", "common" "Niue"},
   "ita" {"official" "Niue", "common" "Niue"},
   "jpn" {"official" "ニウエ", "common" "ニウエ"},
   "est" {"official" "Niue", "common" "Niue"},
   "por" {"official" "Niue", "common" "Niue"},
   "slk" {"official" "Niue", "common" "Niue"},
   "bre" {"official" "Niue", "common" "Niue"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["83"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/nu.svg",
   "png" "https://flagcdn.com/w320/nu.png"},
  "unMember" false,
  "name"
  {"official" "Niue",
   "nativeName"
   {"eng" {"official" "Niue", "common" "Niue"},
    "niu" {"official" "Niuē", "common" "Niuē"}},
   "common" "Niue"},
  "capitalInfo" {"latlng" [-19.02 -169.92]},
  "tld" [".nu"],
  "ccn3" "570",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"eng" "English", "niu" "Niuean"},
  "currencies" {"NZD" {"name" "New Zealand dollar", "symbol" "$"}},
  "independent" false,
  "population" 1470,
  "cca3" "NIU",
  "capital" ["Alofi"],
  "car" {"signs" ["NZ"], "side" "left"},
  "timezones" ["UTC-11:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇳🇺",
  "cca2" "NU"}
 {"landlocked" false,
  "latlng" [53.0818 73.5042],
  "area" 412.0,
  "altSpellings" ["HM" "Heard Island and McDonald Islands"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/k5FBAiVaVyozuYeA7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2177227"},
  "demonyms"
  {"eng"
   {"f" "Heard and McDonald Islander",
    "m" "Heard and McDonald Islander"}},
  "translations"
  {"kor" {"official" "허드 맥도널드 제도", "common" "허드 맥도널드 제도"},
   "zho" {"official" "赫德岛和麦当劳群岛", "common" "赫德岛和麦当劳群岛"},
   "hun"
   {"official" "Heard-sziget és McDonald-szigetek",
    "common" "Heard-sziget és McDonald-szigetek"},
   "rus"
   {"official" "Остров Херд и острова Макдональд",
    "common" "Остров Херд и острова Макдональд"},
   "swe"
   {"official" "Heard- och McDonaldöarna",
    "common" "Heard- och McDonaldöarna"},
   "ces"
   {"official" "Heardův ostrov a McDonaldovy ostrovy",
    "common" "Heardův ostrov a McDonaldovy ostrovy"},
   "deu"
   {"official" "Heard und McDonaldinseln",
    "common" "Heard und die McDonaldinseln"},
   "ara"
   {"official" "جزيرة هيرد وجزر ماكدونالد",
    "common" "جزيرة هيرد وجزر ماكدونالد"},
   "urd"
   {"official" "جزیرہ ہرڈ و جزائر مکڈونلڈ",
    "common" "جزیرہ ہرڈ و جزائر مکڈونلڈ"},
   "srp"
   {"official" "Острва Херд и Макдоналд",
    "common" "Острва Херд и Макдоналд"},
   "tur"
   {"official" "Heard Adası ve McDonald Adaları",
    "common" "Heard Adası ve McDonald Adaları"},
   "pol"
   {"official" "Terytorium Wysp Heard i McDonalda",
    "common" "Wyspy Heard i McDonalda"},
   "cym"
   {"official" "Heard Island and McDonald Islands",
    "common" "Heard Island and McDonald Islands"},
   "hrv"
   {"official" "Otok Heard i otočje McDonald",
    "common" "Otok Heard i otočje McDonald"},
   "spa"
   {"official" "Islas Heard y McDonald",
    "common" "Islas Heard y McDonald"},
   "fin"
   {"official" "Heard ja McDonaldinsaaret",
    "common" "Heard ja McDonaldinsaaret"},
   "per"
   {"official" "جزیره هرد و جزایر مک‌دونالد",
    "common" "جزیره هرد و جزایر مک‌دونالد"},
   "nld"
   {"official" "Heard en McDonaldeilanden",
    "common" "Heard-en McDonaldeilanden"},
   "fra"
   {"official" "Des îles Heard et McDonald",
    "common" "Îles Heard-et-MacDonald"},
   "ita"
   {"official" "Isole Heard e McDonald",
    "common" "Isole Heard e McDonald"},
   "jpn" {"official" "ハード島とマクドナルド諸島", "common" "ハード島とマクドナルド諸島"},
   "est"
   {"official" "Heardi ja McDonaldi saarte ala",
    "common" "Heard ja McDonald"},
   "por"
   {"official" "Ilha Heard e Ilhas McDonald",
    "common" "Ilha Heard e Ilhas McDonald"},
   "slk"
   {"official"
    "Teritórium Heardovho ostrova a Macdonaldových ostrovov",
    "common" "Heardov ostrov"},
   "bre"
   {"official" "Enez Heard hag Inizi McDonald",
    "common" "Inizi Heard ha McDonald"}},
  "coatOfArms" {},
  "idd" {},
  "flags"
  {"svg" "https://flagcdn.com/hm.svg",
   "png" "https://flagcdn.com/w320/hm.png"},
  "unMember" false,
  "name"
  {"official" "Heard Island and McDonald Islands",
   "nativeName"
   {"eng"
    {"official" "Heard Island and McDonald Islands",
     "common" "Heard Island and McDonald Islands"}},
   "common" "Heard Island and McDonald Islands"},
  "capitalInfo" {},
  "tld" [".hm" ".aq"],
  "ccn3" "334",
  "status" "officially-assigned",
  "region" "Antarctic",
  "languages" {"eng" "English"},
  "independent" false,
  "population" 0,
  "cca3" "HMD",
  "car" {"signs" [""], "side" "right"},
  "timezones" ["UTC+05:00"],
  "startOfWeek" "monday",
  "continents" ["Antarctica"],
  "flag" "🇭🇲",
  "cca2" "HM"}
 {"subregion" "Eastern Africa",
  "landlocked" true,
  "latlng" [-2.0 30.0],
  "area" 26338.0,
  "altSpellings"
  ["RW"
   "Republic of Rwanda"
   "Repubulika y'u Rwanda"
   "République du Rwanda"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/j5xb5r7CLqjYbyP86",
   "openStreetMaps" "https://www.openstreetmap.org/relation/171496"},
  "demonyms"
  {"eng" {"f" "Rwandan", "m" "Rwandan"},
   "fra" {"f" "Rwandaise", "m" "Rwandais"}},
  "translations"
  {"kor" {"official" "르완다 공화국", "common" "르완다"},
   "zho" {"official" "卢旺达共和国", "common" "卢旺达"},
   "hun" {"official" "Ruandai Köztársaság", "common" "Ruanda"},
   "rus" {"official" "Республика Руанда", "common" "Руанда"},
   "swe" {"official" "Republiken Rwanda", "common" "Rwanda"},
   "ces" {"official" "Rwandská republika", "common" "Rwanda"},
   "deu" {"official" "Republik Ruanda", "common" "Ruanda"},
   "ara" {"official" "جمهورية رواندا", "common" "رواندا"},
   "urd" {"official" "جمہوریہ روانڈا", "common" "روانڈا"},
   "srp" {"official" "Република Руанда", "common" "Руанда"},
   "tur" {"official" "Ruanda Cumhuriyeti", "common" "Ruanda"},
   "pol" {"official" "Republika Rwandy", "common" "Rwanda"},
   "cym" {"official" "Republic of Rwanda", "common" "Rwanda"},
   "hrv" {"official" "Republika Ruandi", "common" "Ruanda"},
   "spa" {"official" "República de Rwanda", "common" "Ruanda"},
   "fin" {"official" "Ruandan tasavalta", "common" "Ruanda"},
   "per" {"official" "جمهوری رواندا", "common" "رواندا"},
   "nld" {"official" "Republiek Rwanda", "common" "Rwanda"},
   "fra" {"official" "République rwandaise", "common" "Rwanda"},
   "ita" {"official" "Repubblica del Ruanda", "common" "Ruanda"},
   "jpn" {"official" "ルワンダ共和国", "common" "ルワンダ"},
   "est" {"official" "Rwanda Vabariik", "common" "Rwanda"},
   "por" {"official" "República do Ruanda", "common" "Ruanda"},
   "slk" {"official" "Rwandská republika", "common" "Rwanda"},
   "bre" {"official" "Republik Rwanda", "common" "Rwanda"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/rw.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/rw.png"},
  "idd" {"suffixes" ["50"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/rw.svg",
   "alt"
   "The flag of Rwanda is composed of three horizontal bands of light blue, yellow and green. The light blue band is twice the height of the other two bands and bears a yellow sun with twenty-four rays on its fly side.",
   "png" "https://flagcdn.com/w320/rw.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Rwanda",
   "nativeName"
   {"eng" {"official" "Republic of Rwanda", "common" "Rwanda"},
    "kin" {"official" "Repubulika y'u Rwanda", "common" "Rwanda"},
    "fra" {"official" "République rwandaise", "common" "Rwanda"}},
   "common" "Rwanda"},
  "capitalInfo" {"latlng" [-1.95 30.05]},
  "tld" [".rw"],
  "ccn3" "646",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"eng" "English", "kin" "Kinyarwanda", "fra" "French"},
  "cioc" "RWA",
  "currencies" {"RWF" {"name" "Rwandan franc", "symbol" "Fr"}},
  "independent" true,
  "population" 12952209,
  "cca3" "RWA",
  "borders" ["BDI" "COD" "TZA" "UGA"],
  "capital" ["Kigali"],
  "car" {"signs" ["RWA"], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇷🇼",
  "gini" {"2016" 43.7},
  "fifa" "RWA",
  "cca2" "RW"}
 {"subregion" "Northern Europe",
  "landlocked" false,
  "latlng" [59.0 26.0],
  "area" 45227.0,
  "altSpellings" ["EE" "Eesti" "Republic of Estonia" "Eesti Vabariik"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/6SsynwGUodL1sDvq8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/79510"},
  "demonyms"
  {"eng" {"f" "Estonian", "m" "Estonian"},
   "fra" {"f" "Estonienne", "m" "Estonien"}},
  "translations"
  {"kor" {"official" "에스토니아 공화국", "common" "에스토니아"},
   "zho" {"official" "爱沙尼亚共和国", "common" "爱沙尼亚"},
   "hun" {"official" "Észt Köztársaság", "common" "Észtország"},
   "rus" {"official" "Эстонская Республика", "common" "Эстония"},
   "swe" {"official" "Republiken Estland", "common" "Estland"},
   "ces" {"official" "Estonská republika", "common" "Estonsko"},
   "deu" {"official" "Republik Estland", "common" "Estland"},
   "ara" {"official" "جمهورية إستونيا", "common" "إستونيا"},
   "urd" {"official" "جمہوریہ اسٹونیا", "common" "اسٹونیا"},
   "srp" {"official" "Естонска Република", "common" "Естонија"},
   "tur" {"official" "Estonya Cumhuriyeti", "common" "Estonya"},
   "pol" {"official" "Republika Estońska", "common" "Estonia"},
   "cym" {"official" "Gweriniaeth Estonia", "common" "Estonia"},
   "hrv" {"official" "Republika Estonija", "common" "Estonija"},
   "spa" {"official" "República de Estonia", "common" "Estonia"},
   "fin" {"official" "Viron tasavalta", "common" "Viro"},
   "per" {"official" "جمهوری استونی", "common" "اِستونی"},
   "nld" {"official" "Republiek Estland", "common" "Estland"},
   "fra" {"official" "République d'Estonie", "common" "Estonie"},
   "ita" {"official" "Repubblica di Estonia", "common" "Estonia"},
   "jpn" {"official" "エストニア共和国", "common" "エストニア"},
   "est" {"official" "Eesti Vabariik", "common" "Eesti"},
   "por" {"official" "República da Estónia", "common" "Estónia"},
   "slk" {"official" "Estónska republika", "common" "Estónsko"},
   "bre" {"official" "Republik Estonia", "common" "Estonia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ee.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ee.png"},
  "idd" {"suffixes" ["72"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/ee.svg",
   "alt"
   "The flag of Estonia is composed of three equal horizontal bands of blue, black and white.",
   "png" "https://flagcdn.com/w320/ee.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Estonia",
   "nativeName"
   {"est" {"official" "Eesti Vabariik", "common" "Eesti"}},
   "common" "Estonia"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [59.43 24.72]},
  "tld" [".ee"],
  "ccn3" "233",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"est" "Estonian"},
  "cioc" "EST",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 1331057,
  "cca3" "EST",
  "borders" ["LVA" "RUS"],
  "capital" ["Tallinn"],
  "car" {"signs" ["EST"], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇪🇪",
  "gini" {"2018" 30.3},
  "fifa" "EST",
  "cca2" "EE"}
 {"subregion" "Southeast Europe",
  "landlocked" false,
  "latlng" [46.0 25.0],
  "area" 238391.0,
  "altSpellings" ["RO" "Rumania" "Roumania" "România"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/845hAgCf1mDkN3vr7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/90689"},
  "demonyms"
  {"eng" {"f" "Romanian", "m" "Romanian"},
   "fra" {"f" "Roumaine", "m" "Roumain"}},
  "translations"
  {"kor" {"official" "루마니아", "common" "루마니아"},
   "zho" {"official" "罗马尼亚", "common" "罗马尼亚"},
   "hun" {"official" "Románia", "common" "Románia"},
   "rus" {"official" "Румыния", "common" "Румыния"},
   "swe" {"official" "Rumänien", "common" "Rumänien"},
   "ces" {"official" "Rumunsko", "common" "Rumunsko"},
   "deu" {"official" "Rumänien", "common" "Rumänien"},
   "ara" {"official" "رومانيا", "common" "رومانيا"},
   "urd" {"official" "رومانیہ", "common" "رومانیہ"},
   "srp" {"official" "Румунија", "common" "Румунија"},
   "tur" {"official" "Romanya", "common" "Romanya"},
   "pol" {"official" "Rumunia", "common" "Rumunia"},
   "cym" {"official" "Romania", "common" "Romania"},
   "hrv" {"official" "Rumunija", "common" "Rumunjska"},
   "spa" {"official" "Rumania", "common" "Rumania"},
   "fin" {"official" "Romania", "common" "Romania"},
   "per" {"official" "رومانی", "common" "رومانی"},
   "nld" {"official" "Roemenië", "common" "Roemenië"},
   "fra" {"official" "Roumanie", "common" "Roumanie"},
   "ita" {"official" "Romania", "common" "Romania"},
   "jpn" {"official" "ルーマニア", "common" "ルーマニア"},
   "est" {"official" "Rumeenia", "common" "Rumeenia"},
   "por" {"official" "Romênia", "common" "Roménia"},
   "slk" {"official" "Rumunsko", "common" "Rumunsko"},
   "bre" {"official" "Roumania", "common" "Roumania"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ro.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ro.png"},
  "idd" {"suffixes" ["0"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/ro.svg",
   "alt"
   "The flag of Romania is composed of three equal vertical bands of navy blue, yellow and red.",
   "png" "https://flagcdn.com/w320/ro.png"},
  "unMember" true,
  "name"
  {"official" "Romania",
   "nativeName" {"ron" {"official" "România", "common" "România"}},
   "common" "Romania"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "######"},
  "capitalInfo" {"latlng" [44.43 26.1]},
  "tld" [".ro"],
  "ccn3" "642",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"ron" "Romanian"},
  "cioc" "ROU",
  "currencies" {"RON" {"name" "Romanian leu", "symbol" "lei"}},
  "independent" true,
  "population" 19286123,
  "cca3" "ROU",
  "borders" ["BGR" "HUN" "MDA" "SRB" "UKR"],
  "capital" ["Bucharest"],
  "car" {"signs" ["RO"], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇷🇴",
  "gini" {"2018" 35.8},
  "fifa" "ROU",
  "cca2" "RO"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [10.6918 -61.2225],
  "area" 5130.0,
  "altSpellings" ["TT" "Republic of Trinidad and Tobago"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/NrRfDEWoG8FGZqWY7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/555717"},
  "demonyms"
  {"eng" {"f" "Trinidadian", "m" "Trinidadian"},
   "fra" {"f" "Trinidadienne", "m" "Trinidadien"}},
  "translations"
  {"kor" {"official" "트리니다드 토바고 공화국", "common" "트리니다드 토바고"},
   "zho" {"official" "特立尼达和多巴哥共和国", "common" "特立尼达和多巴哥"},
   "hun"
   {"official" "Trinidad és Tobago Köztársaság",
    "common" "Trinidad és Tobago"},
   "rus"
   {"official" "Республика Тринидад и Тобаго",
    "common" "Тринидад и Тобаго"},
   "swe"
   {"official" "Republiken Trinidad och Tobago",
    "common" "Trinidad och Tobago"},
   "ces"
   {"official" "Republika Trinidad a Tobago",
    "common" "Trinidad a Tobago"},
   "deu"
   {"official" "Republik Trinidad und Tobago",
    "common" "Trinidad und Tobago"},
   "ara"
   {"official" "جمهورية ترينيداد وتوباغو",
    "common" "ترينيداد وتوباغو"},
   "urd"
   {"official" "جمہوریہ ٹرینیڈاڈ و ٹوباگو",
    "common" "ٹرینیڈاڈ و ٹوباگو"},
   "srp"
   {"official" "Република Тринидад и Тобаго",
    "common" "Тринидад и Тобаго"},
   "tur"
   {"official" "Trinidad ve Tobago", "common" "Trinidad ve Tobago"},
   "pol"
   {"official" "Trynidad i Tobago", "common" "Trynidad i Tobago"},
   "cym"
   {"official" "Republic of Trinidad and Tobago",
    "common" "Trinidad and Tobago"},
   "hrv"
   {"official" "Republika Trinidad i Tobago",
    "common" "Trinidad i Tobago"},
   "spa"
   {"official" "República de Trinidad y Tobago",
    "common" "Trinidad y Tobago"},
   "fin"
   {"official" "Trinidadin ja Tobagon tasavalta",
    "common" "Trinidad ja Tobago"},
   "per"
   {"official" "جمهوری ترینیداد و توباگو",
    "common" "ترینیداد و توباگو"},
   "nld"
   {"official" "Republiek Trinidad en Tobago",
    "common" "Trinidad en Tobago"},
   "fra"
   {"official" "République de Trinité-et-Tobago",
    "common" "Trinité-et-Tobago"},
   "ita"
   {"official" "Repubblica di Trinidad e Tobago",
    "common" "Trinidad e Tobago"},
   "jpn" {"official" "トリニダード·トバゴ共和国", "common" "トリニダード・トバゴ"},
   "est"
   {"official" "Trinidadi ja Tobago Vabariik",
    "common" "Trinidad ja Tobago"},
   "por"
   {"official" "República de Trinidad e Tobago",
    "common" "Trinidade e Tobago"},
   "slk"
   {"official" "Republika Trinidad a Tobaga",
    "common" "Trinidad a Tobago"},
   "bre"
   {"official" "Republik Trinidad ha Tobago",
    "common" "Trinidad ha Tobago"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/tt.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/tt.png"},
  "idd" {"suffixes" ["868"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/tt.svg",
   "alt"
   "The flag of Trinidad and Tobago has a red field with a white-edged black diagonal band that extends from the upper hoist-side corner to the lower fly-side corner of the field.",
   "png" "https://flagcdn.com/w320/tt.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Trinidad and Tobago",
   "nativeName"
   {"eng"
    {"official" "Republic of Trinidad and Tobago",
     "common" "Trinidad and Tobago"}},
   "common" "Trinidad and Tobago"},
  "capitalInfo" {"latlng" [10.65 -61.52]},
  "tld" [".tt"],
  "ccn3" "780",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "cioc" "TTO",
  "currencies"
  {"TTD" {"name" "Trinidad and Tobago dollar", "symbol" "$"}},
  "independent" true,
  "population" 1399491,
  "cca3" "TTO",
  "capital" ["Port of Spain"],
  "car" {"signs" ["TT"], "side" "left"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇹🇹",
  "gini" {"1992" 40.3},
  "fifa" "TRI",
  "cca2" "TT"}
 {"subregion" "South America",
  "landlocked" false,
  "latlng" [5.0 -59.0],
  "area" 214969.0,
  "altSpellings" ["GY" "Co-operative Republic of Guyana"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/DFsme2xEeugUAsCx5",
   "openStreetMaps" "https://www.openstreetmap.org/relation/287083"},
  "demonyms"
  {"eng" {"f" "Guyanese", "m" "Guyanese"},
   "fra" {"f" "Guyanienne", "m" "Guyanien"}},
  "translations"
  {"kor" {"official" "가이아나 협동 공화국", "common" "가이아나"},
   "zho" {"official" "圭亚那共和国", "common" "圭亚那"},
   "hun"
   {"official" "Guyanai Szövetkezeti Köztársaság", "common" "Guyana"},
   "rus"
   {"official" "Кооперативная Республика Гайана", "common" "Гайана"},
   "swe"
   {"official" "Kooperativa republiken Guyana", "common" "Guyana"},
   "ces"
   {"official" "Kooperativní republika Guyana", "common" "Guyana"},
   "deu" {"official" "Kooperative Republik Guyana", "common" "Guyana"},
   "ara" {"official" "جمهورية غيانا التعاونية", "common" "غيانا"},
   "urd" {"official" "تعاونی جمہوریہ گیانا", "common" "گیانا"},
   "srp"
   {"official" "Кооперативна Република Гвајана", "common" "Гвајана"},
   "tur"
   {"official" "Guyana Kooperatif Cumhuriyeti", "common" "Guyana"},
   "pol"
   {"official" "Kooperacyjna Republika Gujany", "common" "Gujana"},
   "cym"
   {"official" "Co-operative Republic of Guyana", "common" "Guyana"},
   "hrv" {"official" "Zadruga Republika Gvajana", "common" "Gvajana"},
   "spa"
   {"official" "República Cooperativa de Guyana", "common" "Guyana"},
   "fin"
   {"official" "Guayanan osuustoiminnallinen tasavalta",
    "common" "Guayana"},
   "per" {"official" "جمهوری تعاونی گویان", "common" "گویان"},
   "nld"
   {"official" "Coöperatieve Republiek Guyana", "common" "Guyana"},
   "fra"
   {"official" "République coopérative de Guyana", "common" "Guyana"},
   "ita"
   {"official" "Co -operative Republic of Guyana", "common" "Guyana"},
   "jpn" {"official" "ガイアナの協同共和国", "common" "ガイアナ"},
   "est" {"official" "Guyana Vabariik", "common" "Guyana"},
   "por"
   {"official" "Co -operative República da Guiana", "common" "Guiana"},
   "slk"
   {"official" "Guyanská kooperatívna republika", "common" "Guyana"},
   "bre" {"official" "Republik Kevelourel Gwiana", "common" "Guyana"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/gy.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/gy.png"},
  "idd" {"suffixes" ["92"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/gy.svg",
   "alt"
   "The flag of Guyana has a green field with two isosceles triangles which share a common base on the hoist end. The smaller black-edged red triangle spanning half the width of the field is superimposed on the larger white-edged yellow triangle which spans the full width of the field.",
   "png" "https://flagcdn.com/w320/gy.png"},
  "unMember" true,
  "name"
  {"official" "Co-operative Republic of Guyana",
   "nativeName"
   {"eng"
    {"official" "Co-operative Republic of Guyana", "common" "Guyana"}},
   "common" "Guyana"},
  "capitalInfo" {"latlng" [6.8 -58.15]},
  "tld" [".gy"],
  "ccn3" "328",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "cioc" "GUY",
  "currencies" {"GYD" {"name" "Guyanese dollar", "symbol" "$"}},
  "independent" true,
  "population" 786559,
  "cca3" "GUY",
  "borders" ["BRA" "SUR" "VEN"],
  "capital" ["Georgetown"],
  "car" {"signs" ["GUY"], "side" "left"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["South America"],
  "flag" "🇬🇾",
  "gini" {"1998" 45.1},
  "fifa" "GUY",
  "cca2" "GY"}
 {"subregion" "South-Eastern Asia",
  "landlocked" false,
  "latlng" [-8.83333333 125.91666666],
  "area" 14874.0,
  "altSpellings"
  ["TL"
   "East Timor"
   "Democratic Republic of Timor-Leste"
   "República Democrática de Timor-Leste"
   "Repúblika Demokrátika Timór-Leste"
   "Timór Lorosa'e"
   "Timor Lorosae"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/sFqBC9zjgUXPR1iTA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/305142"},
  "demonyms"
  {"eng" {"f" "East Timorese", "m" "East Timorese"},
   "fra" {"f" "Est-timoraise", "m" "Est-timorais"}},
  "translations"
  {"kor" {"official" "동티모르 민주 공화국", "common" "동티모르"},
   "zho" {"official" "东帝汶民主共和国", "common" "东帝汶"},
   "hun"
   {"official" "Kelet-timori Demokratikus Köztársaság",
    "common" "Kelet-Timor"},
   "rus"
   {"official" "Демократическая Республика Тимор -Лешти",
    "common" "Восточный Тимор"},
   "swe"
   {"official" "Demokratiska republiken Östtimor",
    "common" "Östtimor"},
   "ces"
   {"official" "Demokratická republika Východní Timor",
    "common" "Východní Timor"},
   "deu"
   {"official" "Demokratische Republik Timor-Leste",
    "common" "Osttimor"},
   "ara"
   {"official" "جمهورية تيمور الشرقية الديمقراطية",
    "common" "تيمور الشرقية"},
   "urd"
   {"official" "جمہوری جمہوریہ مشرقی تیمور", "common" "مشرقی تیمور"},
   "srp"
   {"official" "Демократска Република Источни Тимор",
    "common" "Источни Тимор"},
   "tur"
   {"official" "Doğu Timor Demokratik Cumhuriyeti",
    "common" "Doğu Timor"},
   "pol"
   {"official" "Demokratyczna Republika Timoru Wschodniego",
    "common" "Timor Wschodni"},
   "cym"
   {"official" "Democratic Republic of Timor-Leste",
    "common" "Timor-Leste"},
   "hrv"
   {"official" "Demokratska Republika Timor-Leste",
    "common" "Istočni Timor"},
   "spa"
   {"official" "República Democrática de Timor-Leste",
    "common" "Timor Oriental"},
   "fin"
   {"official" "Itä-Timorin demokraattinen tasavalta",
    "common" "Itä-Timor"},
   "per"
   {"official" "جمهوری دموکراتیک تیمور شرقی", "common" "تیمور شرقی"},
   "nld"
   {"official" "Democratische Republiek Oost-Timor",
    "common" "Oost-Timor"},
   "fra"
   {"official" "République démocratique du Timor oriental",
    "common" "Timor oriental"},
   "ita"
   {"official" "Repubblica Democratica di Timor Est",
    "common" "Timor Est"},
   "jpn" {"official" "東ティモール民主共和国", "common" "東ティモール"},
   "est"
   {"official" "Timor-Leste Demokraatlik Vabariik",
    "common" "Ida-Timor"},
   "por"
   {"official" "República Democrática de Timor-Leste",
    "common" "Timor-Leste"},
   "slk"
   {"official" "Východotimorská demokratická republika",
    "common" "Východný Timor"},
   "bre"
   {"official" "Republik demakratel Timor ar Reter",
    "common" "Timor ar Reter"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["70"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/tl.svg",
   "alt"
   "The flag of Timor-Leste has a red field with two isosceles triangles which share a common base on the hoist end. The smaller black triangle, which bears a five-pointed white star at its center and spans one-third the width of the field, is superimposed on the larger yellow triangle that extends to the center of the field.",
   "png" "https://flagcdn.com/w320/tl.png"},
  "unMember" true,
  "name"
  {"official" "Democratic Republic of Timor-Leste",
   "nativeName"
   {"tet"
    {"official" "Repúblika Demokrátika Timór-Leste",
     "common" "Timór-Leste"},
    "por"
    {"official" "República Democrática de Timor-Leste",
     "common" "Timor-Leste"}},
   "common" "Timor-Leste"},
  "capitalInfo" {"latlng" [-8.58 125.6]},
  "tld" [".tl"],
  "ccn3" "626",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"tet" "Tetum", "por" "Portuguese"},
  "cioc" "TLS",
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" true,
  "population" 1318442,
  "cca3" "TLS",
  "borders" ["IDN"],
  "capital" ["Dili"],
  "car" {"signs" ["TL"], "side" "left"},
  "timezones" ["UTC+09:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇹🇱",
  "gini" {"2014" 28.7},
  "fifa" "TLS",
  "cca2" "TL"}
 {"subregion" "South-Eastern Asia",
  "landlocked" false,
  "latlng" [16.16666666 107.83333333],
  "area" 331212.0,
  "altSpellings"
  ["VN"
   "Socialist Republic of Vietnam"
   "Cộng hòa Xã hội chủ nghĩa Việt Nam"
   "Viet Nam"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/PCpVt9WzdJ9A9nEZ9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/49915"},
  "demonyms"
  {"eng" {"f" "Vietnamese", "m" "Vietnamese"},
   "fra" {"f" "Vietnamienne", "m" "Vietnamien"}},
  "translations"
  {"kor" {"official" "베트남 사회주의 공화국", "common" "베트남"},
   "zho" {"official" "越南社会主义共和国", "common" "越南"},
   "hun"
   {"official" "Vietnámi Szocialista Köztársaság", "common" "Vietnám"},
   "rus"
   {"official" "Социалистическая Республика Вьетнам",
    "common" "Вьетнам"},
   "swe"
   {"official" "Socialistiska republiken Vietnam", "common" "Vietnam"},
   "ces"
   {"official" "Vietnamská socialistická republika",
    "common" "Vietnam"},
   "deu"
   {"official" "Sozialistische Republik Vietnam", "common" "Vietnam"},
   "ara" {"official" "جمهورية فيتنام الاشتراكية", "common" "فيتنام"},
   "urd" {"official" "اشتراکی جمہوریہ ویتنام", "common" "ویتنام"},
   "srp"
   {"official" "Социјалистичка Република Вијетнам",
    "common" "Вијетнам"},
   "tur"
   {"official" "Vietnam Sosyalist Cumhuriyeti", "common" "Vietnam"},
   "pol"
   {"official" "Socjalistyczna Republika Wietnamu",
    "common" "Wietnam"},
   "cym"
   {"official" "Socialist Republic of Vietnam", "common" "Vietnam"},
   "hrv"
   {"official" "Socijalistička Republika Vijetnam",
    "common" "Vijetnam"},
   "spa"
   {"official" "República Socialista de Vietnam", "common" "Vietnam"},
   "fin"
   {"official" "Vietnamin sosialistinen tasavalta",
    "common" "Vietnam"},
   "per" {"official" "جمهوری سوسیالیستی ویتنام", "common" "ویتنام"},
   "nld"
   {"official" "Socialistische Republiek Vietnam", "common" "Vietnam"},
   "fra"
   {"official" "République socialiste du Viêt Nam",
    "common" "Viêt Nam"},
   "ita"
   {"official" "Repubblica socialista del Vietnam",
    "common" "Vietnam"},
   "jpn" {"official" "ベトナム社会主義共和国", "common" "ベトナム"},
   "est"
   {"official" "Vietnami Sotsialistlik Vabariik", "common" "Vietnam"},
   "por"
   {"official" "República Socialista do Vietname",
    "common" "Vietname"},
   "slk"
   {"official" "Vietnamská socialistická republika",
    "common" "Vietnam"},
   "bre"
   {"official" "Republik Sokialour Viêt Nam", "common" "Viêt Nam"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/vn.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/vn.png"},
  "idd" {"suffixes" ["4"], "root" "+8"},
  "flags"
  {"svg" "https://flagcdn.com/vn.svg",
   "alt"
   "The flag of Vietnam features a large five-pointed yellow star on a red field.",
   "png" "https://flagcdn.com/w320/vn.png"},
  "unMember" true,
  "name"
  {"official" "Socialist Republic of Vietnam",
   "nativeName"
   {"vie"
    {"official" "Cộng hòa xã hội chủ nghĩa Việt Nam",
     "common" "Việt Nam"}},
   "common" "Vietnam"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "######"},
  "capitalInfo" {"latlng" [21.03 105.85]},
  "tld" [".vn"],
  "ccn3" "704",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"vie" "Vietnamese"},
  "cioc" "VIE",
  "currencies" {"VND" {"name" "Vietnamese đồng", "symbol" "₫"}},
  "independent" true,
  "population" 97338583,
  "cca3" "VNM",
  "borders" ["KHM" "CHN" "LAO"],
  "capital" ["Hanoi"],
  "car" {"signs" ["VN"], "side" "right"},
  "timezones" ["UTC+07:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇻🇳",
  "gini" {"2018" 35.7},
  "fifa" "VIE",
  "cca2" "VN"}
 {"subregion" "South America",
  "landlocked" false,
  "latlng" [-33.0 -56.0],
  "area" 181034.0,
  "altSpellings"
  ["UY"
   "Oriental Republic of Uruguay"
   "República Oriental del Uruguay"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/tiQ9Baekb1jQtDSD9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/287072"},
  "demonyms"
  {"eng" {"f" "Uruguayan", "m" "Uruguayan"},
   "fra" {"f" "Uruguayenne", "m" "Uruguayen"}},
  "translations"
  {"kor" {"official" "우루과이 동방 공화국", "common" "우루과이"},
   "zho" {"official" "乌拉圭东岸共和国", "common" "乌拉圭"},
   "hun"
   {"official" "Uruguayi Keleti Köztársaság", "common" "Uruguay"},
   "rus"
   {"official" "Восточной Республики Уругвай", "common" "Уругвай"},
   "swe" {"official" "Republiken Uruguay", "common" "Uruguay"},
   "ces"
   {"official" "Uruguayská východní republika", "common" "Uruguay"},
   "deu"
   {"official" "Republik Östlich des Uruguay", "common" "Uruguay"},
   "ara"
   {"official" "جمهورية الأوروغواي الشرقية", "common" "الأوروغواي"},
   "urd" {"official" "جمہوریہ شرقیہ یوراگوئے", "common" "یوراگوئے"},
   "srp" {"official" "Источна Република Уругвај", "common" "Уругвај"},
   "tur" {"official" "Uruguay Doğu Cumhuriyeti", "common" "Uruguay"},
   "pol"
   {"official" "Wschodnia Republika Urugwaju", "common" "Urugwaj"},
   "cym"
   {"official" "Oriental Republic of Uruguay", "common" "Uruguay"},
   "hrv"
   {"official" "Orijentalna Republika Urugvaj", "common" "Urugvaj"},
   "spa"
   {"official" "República Oriental del Uruguay", "common" "Uruguay"},
   "fin" {"official" "Uruguayn itäinen tasavalta", "common" "Uruguay"},
   "per" {"official" "جمهوری اروگوئه", "common" "اروگوئه"},
   "nld" {"official" "Oosterse Republiek Uruguay", "common" "Uruguay"},
   "fra"
   {"official" "République orientale de l'Uruguay",
    "common" "Uruguay"},
   "ita"
   {"official" "Repubblica Orientale dell'Uruguay",
    "common" "Uruguay"},
   "jpn" {"official" "ウルグアイ東方共和国", "common" "ウルグアイ"},
   "est" {"official" "Uruguay Idavabariik", "common" "Uruguay"},
   "por"
   {"official" "República Oriental do Uruguai", "common" "Uruguai"},
   "slk"
   {"official" "Uruguajská východná republika", "common" "Uruguaj"},
   "bre" {"official" "Republik Reter Uruguay", "common" "Uruguay"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/uy.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/uy.png"},
  "idd" {"suffixes" ["98"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/uy.svg",
   "alt"
   "The flag of Uruguay is composed of nine equal horizontal bands of white alternating with blue, with a white square superimposed in the canton. In the white square is a yellow sun bearing a human face — the Sun of May — from which sixteen rays extend. The sun's rays alternate between triangular and wavy.",
   "png" "https://flagcdn.com/w320/uy.png"},
  "unMember" true,
  "name"
  {"official" "Oriental Republic of Uruguay",
   "nativeName"
   {"spa"
    {"official" "República Oriental del Uruguay", "common" "Uruguay"}},
   "common" "Uruguay"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [-34.85 -56.17]},
  "tld" [".uy"],
  "ccn3" "858",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"spa" "Spanish"},
  "cioc" "URU",
  "currencies" {"UYU" {"name" "Uruguayan peso", "symbol" "$"}},
  "independent" true,
  "population" 3473727,
  "cca3" "URY",
  "borders" ["ARG" "BRA"],
  "capital" ["Montevideo"],
  "car" {"signs" ["ROU"], "side" "right"},
  "timezones" ["UTC-03:00"],
  "startOfWeek" "monday",
  "continents" ["South America"],
  "flag" "🇺🇾",
  "gini" {"2019" 39.7},
  "fifa" "URU",
  "cca2" "UY"}
 {"subregion" "Southern Europe",
  "landlocked" true,
  "latlng" [41.9 12.45],
  "area" 0.44,
  "altSpellings"
  ["VA"
   "Holy See (Vatican City State)"
   "Vatican City State"
   "Stato della Città del Vaticano"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/DTKvw5Bd1QZaDZmE8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/36989"},
  "demonyms"
  {"eng" {"f" "Vatican", "m" "Vatican"},
   "fra" {"f" "Vaticane", "m" "Vatican"}},
  "translations"
  {"kor" {"official" "바티칸 시국", "common" "바티칸"},
   "zho" {"official" "梵蒂冈城国", "common" "梵蒂冈"},
   "hun" {"official" "Vatikán Állam", "common" "Vatikán"},
   "rus" {"official" "Город-государство Ватикан", "common" "Ватикан"},
   "swe" {"official" "Vatikanstaten", "common" "Vatikanstaten"},
   "ces" {"official" "Městský stát Vatikán", "common" "Vatikán"},
   "deu" {"official" "Staat Vatikanstadt", "common" "Vatikanstadt"},
   "ara"
   {"official" "دولة مدينة الفاتيكان", "common" "مدينة الفاتيكان"},
   "urd" {"official" "ویٹیکن سٹی", "common" "ویٹیکن سٹی"},
   "srp" {"official" "Град Ватикан", "common" "Ватикан"},
   "tur" {"official" "Vatikan Şehir Devleti", "common" "Vatikan"},
   "pol" {"official" "Państwo Watykańskie", "common" "Watykan"},
   "cym" {"official" "Vatican City State", "common" "Vatican City"},
   "hrv" {"official" "Vatikan", "common" "Vatikan"},
   "spa"
   {"official" "Ciudad del Vaticano", "common" "Ciudad del Vaticano"},
   "fin"
   {"official" "Vatikaanin kaupunkivaltio", "common" "Vatikaani"},
   "per" {"official" "دولت‌شهر واتیکان", "common" "واتیکان"},
   "nld" {"official" "Vaticaanstad", "common" "Vaticaanstad"},
   "fra" {"official" "Cité du Vatican", "common" "Cité du Vatican"},
   "ita"
   {"official" "Città del Vaticano", "common" "Città del Vaticano"},
   "jpn" {"official" "バチカン市国の状態", "common" "バチカン市国"},
   "est" {"official" "Vatikani Linnriik", "common" "Vatikan"},
   "por"
   {"official" "Cidade do Vaticano", "common" "Cidade do Vaticano"},
   "slk"
   {"official" "Svätá stolica (Vatikánsky mestský štát",
    "common" "Vatikán"},
   "bre" {"official" "Riez Keoded ar Vatikan", "common" "Vatikan"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/va.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/va.png"},
  "idd" {"suffixes" ["906698" "79"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/va.svg",
   "alt"
   "The flag of Vatican City is square shaped. It is composed of two equal vertical bands of yellow and white, with national coat of arms centered in the white band. The national coat of arms comprises the Papal Tiara superimposed on two crossed keys.",
   "png" "https://flagcdn.com/w320/va.png"},
  "unMember" false,
  "name"
  {"official" "Vatican City State",
   "nativeName"
   {"lat"
    {"official" "Status Civitatis Vaticanæ", "common" "Vaticanæ"},
    "ita"
    {"official" "Stato della Città del Vaticano",
     "common" "Vaticano"}},
   "common" "Vatican City"},
  "capitalInfo" {"latlng" [41.9 12.45]},
  "tld" [".va"],
  "ccn3" "336",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"lat" "Latin", "ita" "Italian"},
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 451,
  "cca3" "VAT",
  "borders" ["ITA"],
  "capital" ["Vatican City"],
  "car" {"signs" ["V"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇻🇦",
  "cca2" "VA"}
 {"subregion" "Eastern Asia",
  "landlocked" false,
  "latlng" [22.267 114.188],
  "area" 1104.0,
  "altSpellings" ["HK"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/1sEnNmT47ffrC8MU8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/913110"},
  "demonyms"
  {"eng" {"f" "Hong Konger", "m" "Hong Konger"},
   "fra" {"f" "Hongkongaise", "m" "Hongkongais"}},
  "translations"
  {"kor" {"official" "중화인민공화국 홍콩 특별행정구", "common" "홍콩"},
   "hun" {"official" "Hongkong", "common" "Hongkong"},
   "rus"
   {"official"
    "Hong Kong Специальный административный район Китайской Народной Республики Китая",
    "common" "Гонконг"},
   "swe" {"official" "Hongkong", "common" "Hongkong"},
   "ces"
   {"official"
    "Zvláštní administrativní oblast Čínské lidové republiky Hongkong",
    "common" "Hongkong"},
   "deu"
   {"official"
    "Sonderverwaltungszone Hongkong der Volksrepublik China",
    "common" "Hongkong"},
   "ara"
   {"official"
    "منطقة هونغ كونغ الادارية التابعة لجمهورية الصين الشعبية",
    "common" "هونغ كونغ"},
   "urd"
   {"official" "ہانگ کانگ عوامی جمہوریہ چین کا خصوصی انتظامی علاقہ",
    "common" "ہانگ کانگ"},
   "srp"
   {"official"
    "Хонгконг специјална административна област Народне Републике Кине",
    "common" "Хонгконг"},
   "tur"
   {"official" "Çin Halk Cumhuriyeti Hong Kong Özel İdari Bölgesi",
    "common" "Hong Kong"},
   "pol"
   {"official"
    "Specjalny Region Administracyjny Chińskiej Republiki Ludowej Hongkong",
    "common" "Hongkong"},
   "cym"
   {"official"
    "Hong Kong Special Administrative Region of the People's Republic of China",
    "common" "Hong Kong"},
   "hrv"
   {"official"
    "Hong Kong Posebnog upravnog područjaNarodne Republike Kine",
    "common" "Hong Kong"},
   "spa"
   {"official"
    "Hong Kong Región Administrativa Especial de la República Popular China",
    "common" "Hong Kong"},
   "fin"
   {"official" "Hong Kongin erityishallintoalue", "common" "Hongkong"},
   "per" {"official" "هُنگ کُنگ", "common" "هُنگ کُنگ"},
   "nld"
   {"official"
    "Hong Kong Speciale Administratieve Regio van de Volksrepubliek China",
    "common" "Hongkong"},
   "fra"
   {"official"
    "Région administrative spéciale de Hong Kong de la République populaire de Chine",
    "common" "Hong Kong"},
   "ita"
   {"official"
    "Hong Kong Regione amministrativa speciale della Repubblica Popolare Cinese",
    "common" "Hong Kong"},
   "jpn" {"official" "中華人民共和国香港特別行政区", "common" "香港"},
   "est"
   {"official" "Hongkongi erihalduspiirkond", "common" "Hongkong"},
   "por"
   {"official"
    "Hong Kong Região Administrativa Especial da República Popular da China",
    "common" "Hong Kong"},
   "slk"
   {"official"
    "Špeciálna administratívna oblasťČínskej ľudovej republiky Hongkong",
    "common" "Hongkong"},
   "bre"
   {"official"
    "Rannvro velestradurel arbennik Hong Kong eus Republik pobl Sina",
    "common" "Hong Kong"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/hk.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/hk.png"},
  "idd" {"suffixes" ["52"], "root" "+8"},
  "flags"
  {"svg" "https://flagcdn.com/hk.svg",
   "png" "https://flagcdn.com/w320/hk.png"},
  "unMember" false,
  "name"
  {"official"
   "Hong Kong Special Administrative Region of the People's Republic of China",
   "nativeName"
   {"zho" {"official" "中华人民共和国香港特别行政区", "common" "香港"},
    "eng"
    {"official"
     "Hong Kong Special Administrative Region of the People's Republic of China",
     "common" "Hong Kong"}},
   "common" "Hong Kong"},
  "capitalInfo" {"latlng" [22.267 114.188]},
  "tld" [".hk" ".香港"],
  "ccn3" "344",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"zho" "Chinese", "eng" "English"},
  "cioc" "HKG",
  "currencies" {"HKD" {"name" "Hong Kong dollar", "symbol" "$"}},
  "independent" false,
  "population" 7500700,
  "cca3" "HKG",
  "borders" ["CHN"],
  "capital" ["City of Victoria"],
  "car" {"signs" ["HK"], "side" "left"},
  "timezones" ["UTC+08:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇭🇰",
  "fifa" "HKG",
  "cca2" "HK"}
 {"subregion" "Central Europe",
  "landlocked" true,
  "latlng" [47.33333333 13.33333333],
  "area" 83871.0,
  "altSpellings" ["AT" "Osterreich" "Oesterreich"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/pCWpWQhznHyRzQcu9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/16239"},
  "demonyms"
  {"eng" {"f" "Austrian", "m" "Austrian"},
   "fra" {"f" "Autrichienne", "m" "Autrichien"}},
  "translations"
  {"kor" {"official" "오스트리아 공화국", "common" "오스트리아"},
   "zho" {"official" "奥地利共和国", "common" "奥地利"},
   "hun" {"official" "Ausztria", "common" "Ausztria"},
   "rus" {"official" "Австрийская Республика", "common" "Австрия"},
   "swe" {"official" "Republiken Österrike", "common" "Österrike"},
   "ces" {"official" "Rakouská republika", "common" "Rakousko"},
   "deu" {"official" "Republik Österreich", "common" "Österreich"},
   "ara" {"official" "جمهورية النمسا", "common" "النمسا"},
   "urd" {"official" "جمہوریہ آسٹریا", "common" "آسٹریا"},
   "srp" {"official" "Република Аустрија", "common" "Аустрија"},
   "tur" {"official" "Avusturya Cumhuriyeti", "common" "Avusturya"},
   "pol" {"official" "Republika Austrii", "common" "Austria"},
   "cym" {"official" "Gweriniaeth Awstria", "common" "Awstria"},
   "hrv" {"official" "Republika Austrija", "common" "Austrija"},
   "spa" {"official" "República de Austria", "common" "Austria"},
   "fin" {"official" "Itävallan tasavalta", "common" "Itävalta"},
   "per" {"official" "جمهوری اتریش", "common" "اتریش"},
   "nld" {"official" "Republiek Oostenrijk", "common" "Oostenrijk"},
   "fra" {"official" "République d'Autriche", "common" "Autriche"},
   "ita" {"official" "Repubblica d'Austria", "common" "Austria"},
   "jpn" {"official" "オーストリア共和国", "common" "オーストリア"},
   "est" {"official" "Austria Vabariik", "common" "Austria"},
   "por" {"official" "República da Áustria", "common" "Áustria"},
   "slk" {"official" "Rakúska republika", "common" "Rakúsko"},
   "bre" {"official" "Republik Aostria", "common" "Aostria"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/at.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/at.png"},
  "idd" {"suffixes" ["3"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/at.svg",
   "alt"
   "The flag of Austria is composed of three equal horizontal bands of red, white and red.",
   "png" "https://flagcdn.com/w320/at.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Austria",
   "nativeName"
   {"bar" {"official" "Republik Österreich", "common" "Österreich"}},
   "common" "Austria"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [48.2 16.37]},
  "tld" [".at"],
  "ccn3" "040",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"de" "German"},
  "cioc" "AUT",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 8917205,
  "cca3" "AUT",
  "borders" ["CZE" "DEU" "HUN" "ITA" "LIE" "SVK" "SVN" "CHE"],
  "capital" ["Vienna"],
  "car" {"signs" ["A"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇦🇹",
  "gini" {"2018" 30.8},
  "fifa" "AUT",
  "cca2" "AT"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [17.05 -61.8],
  "area" 442.0,
  "altSpellings" ["AG"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/fnye4wGJ1RzC9jpX9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/536900"},
  "demonyms"
  {"eng" {"f" "Antiguan, Barbudan", "m" "Antiguan, Barbudan"},
   "fra"
   {"f" "Antiguaise et barbudienne", "m" "Antiguaise et barbudien"}},
  "translations"
  {"kor" {"official" "앤티가 바부다", "common" "앤티가 바부다"},
   "zho" {"official" "安提瓜和巴布达", "common" "安提瓜和巴布达"},
   "hun"
   {"official" "Antigua és Barbuda", "common" "Antigua és Barbuda"},
   "rus"
   {"official" "Антигуа и Барбуда", "common" "Антигуа и Барбуда"},
   "swe"
   {"official" "Antigua och Barbuda", "common" "Antigua och Barbuda"},
   "ces"
   {"official" "Antigua a Barbuda", "common" "Antigua a Barbuda"},
   "deu"
   {"official" "Antigua und Barbuda", "common" "Antigua und Barbuda"},
   "ara" {"official" "أنتيغوا وباربودا", "common" "أنتيغوا وباربودا"},
   "urd"
   {"official" "اینٹیگوا و باربوڈا", "common" "اینٹیگوا و باربوڈا"},
   "srp"
   {"official" "Антигва и Барбуда", "common" "Антигва и Барбуда"},
   "tur"
   {"official" "Antigua ve Barbuda", "common" "Antigua ve Barbuda"},
   "pol"
   {"official" "Antigua i Barbuda", "common" "Antigua i Barbuda"},
   "cym"
   {"official" "Antigwa a Barbiwda", "common" "Antigwa a Barbiwda"},
   "hrv"
   {"official" "Antigva i Barbuda", "common" "Antigva i Barbuda"},
   "spa"
   {"official" "Antigua y Barbuda", "common" "Antigua y Barbuda"},
   "fin"
   {"official" "Antigua ja Barbuda", "common" "Antigua ja Barbuda"},
   "per"
   {"official" "آنتیگوا و باربودا", "common" "آنتیگوا و باربودا"},
   "nld"
   {"official" "Antigua en Barbuda", "common" "Antigua en Barbuda"},
   "fra"
   {"official" "Antigua-et-Barbuda", "common" "Antigua-et-Barbuda"},
   "ita"
   {"official" "Antigua e Barbuda", "common" "Antigua e Barbuda"},
   "jpn" {"official" "アンチグアバーブーダ", "common" "アンティグア・バーブーダ"},
   "est"
   {"official" "Antigua ja Barbuda", "common" "Antigua ja Barbuda"},
   "por"
   {"official" "Antigua e Barbuda", "common" "Antígua e Barbuda"},
   "slk"
   {"official" "Antigua a Barbuda", "common" "Antigua a Barbuda"},
   "bre"
   {"official" "Antigua ha Barbuda", "common" "Antigua ha Barbuda"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ag.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ag.png"},
  "idd" {"suffixes" ["268"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/ag.svg",
   "alt"
   "The flag of Antigua and Barbuda has a red field with an inverted isosceles triangle based on the top edge and spanning the height of the field. This triangle has three horizontal bands of black, light blue and white, with the light blue band half the height of the two other bands. The top half of a golden-yellow sun is situated in the lower two-third of the black band to depict a rising sun.",
   "png" "https://flagcdn.com/w320/ag.png"},
  "unMember" true,
  "name"
  {"official" "Antigua and Barbuda",
   "nativeName"
   {"eng"
    {"official" "Antigua and Barbuda",
     "common" "Antigua and Barbuda"}},
   "common" "Antigua and Barbuda"},
  "capitalInfo" {"latlng" [17.12 -61.85]},
  "tld" [".ag"],
  "ccn3" "028",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "cioc" "ANT",
  "currencies"
  {"XCD" {"name" "Eastern Caribbean dollar", "symbol" "$"}},
  "independent" true,
  "population" 97928,
  "cca3" "ATG",
  "capital" ["Saint John's"],
  "car" {"signs" ["AG"], "side" "left"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇦🇬",
  "fifa" "ATG",
  "cca2" "AG"}
 {"subregion" "Central Asia",
  "landlocked" true,
  "latlng" [40.0 60.0],
  "area" 488100.0,
  "altSpellings" ["TM"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/cgfUcaQHSWKuqeKk9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/223026"},
  "demonyms"
  {"eng" {"f" "Turkmen", "m" "Turkmen"},
   "fra" {"f" "Turkmène", "m" "Turkmène"}},
  "translations"
  {"kor" {"official" "투르크메니스탄", "common" "투르크메니스탄"},
   "zho" {"official" "土库曼斯坦", "common" "土库曼斯坦"},
   "hun" {"official" "Türkmén Köztársaság", "common" "Türkmenisztán"},
   "rus" {"official" "Туркменистан", "common" "Туркмения"},
   "swe" {"official" "Turkmenistan", "common" "Turkmenistan"},
   "ces" {"official" "Turkmenistán", "common" "Turkmenistán"},
   "deu" {"official" "Turkmenistan", "common" "Turkmenistan"},
   "ara" {"official" "تركمانستان", "common" "تركمانستان"},
   "urd" {"official" "ترکمانستان", "common" "ترکمانستان"},
   "srp" {"official" "Туркменистан", "common" "Туркменистан"},
   "tur" {"official" "Türkmenistan", "common" "Türkmenistan"},
   "pol"
   {"official" "Republika Turkmenistanu", "common" "Turkmenistan"},
   "cym" {"official" "Turkmenistan", "common" "Turkmenistan"},
   "hrv" {"official" "Turkmenistan", "common" "Turkmenistan"},
   "spa" {"official" "Turkmenistán", "common" "Turkmenistán"},
   "fin" {"official" "Turkmenistan", "common" "Turkmenistan"},
   "per" {"official" "جمهوری خلق ترکمنستان", "common" "ترکمنستان"},
   "nld" {"official" "Turkmenistan", "common" "Turkmenistan"},
   "fra" {"official" "Turkménistan", "common" "Turkménistan"},
   "ita" {"official" "Turkmenistan", "common" "Turkmenistan"},
   "jpn" {"official" "トルクメニスタン", "common" "トルクメニスタン"},
   "est" {"official" "Türkmenistan", "common" "Türkmenistan"},
   "por" {"official" "Turcomenistão", "common" "Turquemenistão"},
   "slk" {"official" "Turkménsko", "common" "Turkménsko"},
   "bre"
   {"official" "Republik Turkmenistan", "common" "Turkmenistan"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/tm.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/tm.png"},
  "idd" {"suffixes" ["93"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/tm.svg",
   "alt"
   "The flag of Turkmenistan has a green field. It features a red vertical band, bearing five carpet guls stacked above two crossed olive branches, near the hoist end of the field. Just to the fly side of the vertical band near the top edge of the field is a hoist-side facing white crescent and five small five-pointed white stars placed just outside the crescent opening.",
   "png" "https://flagcdn.com/w320/tm.png"},
  "unMember" true,
  "name"
  {"official" "Turkmenistan",
   "nativeName"
   {"rus" {"official" "Туркменистан", "common" "Туркмения"},
    "tuk" {"official" "Türkmenistan", "common" "Türkmenistan"}},
   "common" "Turkmenistan"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "######"},
  "capitalInfo" {"latlng" [37.95 58.38]},
  "tld" [".tm"],
  "ccn3" "795",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"rus" "Russian", "tuk" "Turkmen"},
  "cioc" "TKM",
  "currencies" {"TMT" {"name" "Turkmenistan manat", "symbol" "m"}},
  "independent" true,
  "population" 6031187,
  "cca3" "TKM",
  "borders" ["AFG" "IRN" "KAZ" "UZB"],
  "capital" ["Ashgabat"],
  "car" {"signs" ["TM"], "side" "right"},
  "timezones" ["UTC+05:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇹🇲",
  "gini" {"1998" 40.8},
  "fifa" "TKM",
  "cca2" "TM"}
 {"subregion" "Eastern Africa",
  "landlocked" false,
  "latlng" [-18.25 35.0],
  "area" 801590.0,
  "altSpellings"
  ["MZ" "Republic of Mozambique" "República de Moçambique"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/xCLcY9fzU6x4Pueu5",
   "openStreetMaps" "https://www.openstreetmap.org/relation/195273"},
  "demonyms"
  {"eng" {"f" "Mozambican", "m" "Mozambican"},
   "fra" {"f" "Mozambicaine", "m" "Mozambicain"}},
  "translations"
  {"kor" {"official" "모잠비크 공화국", "common" "모잠비크"},
   "zho" {"official" "莫桑比克共和国", "common" "莫桑比克"},
   "hun" {"official" "Mozambiki Köztársaság", "common" "Mozambik"},
   "rus" {"official" "Республика Мозамбик", "common" "Мозамбик"},
   "swe" {"official" "Republiken Moçambique", "common" "Moçambique"},
   "ces" {"official" "Mosambická republika", "common" "Mosambik"},
   "deu" {"official" "Republik Mosambik", "common" "Mosambik"},
   "ara" {"official" "جمهورية موزمبيق", "common" "موزمبيق"},
   "urd" {"official" "جمہوریہ موزمبیق", "common" "موزمبیق"},
   "srp" {"official" "Република Мозамбик", "common" "Мозамбик"},
   "tur" {"official" "Mozambik Cumhuriyeti", "common" "Mozambik"},
   "pol" {"official" "Republika Mozambiku", "common" "Mozambik"},
   "cym" {"official" "Republic of Mozambique", "common" "Mozambique"},
   "hrv" {"official" "Republika Mozambiku", "common" "Mozambik"},
   "spa" {"official" "República de Mozambique", "common" "Mozambique"},
   "fin" {"official" "Mosambikin tasavalta", "common" "Mosambik"},
   "per" {"official" "جمهوری موزامبیک", "common" "موزامبیک"},
   "nld" {"official" "Republiek Mozambique", "common" "Mozambique"},
   "fra"
   {"official" "République du Mozambique", "common" "Mozambique"},
   "ita" {"official" "Repubblica del Mozambico", "common" "Mozambico"},
   "jpn" {"official" "モザンビーク共和国", "common" "モザンビーク"},
   "est" {"official" "Mosambiigi Vabariik", "common" "Mosambiik"},
   "por" {"official" "República de Moçambique", "common" "Moçambique"},
   "slk" {"official" "Mozambická republika", "common" "Mozambik"},
   "bre" {"official" "Republik Mozambik", "common" "Mozambik"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/mz.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/mz.png"},
  "idd" {"suffixes" ["58"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/mz.svg",
   "alt"
   "The flag of Mozambique is composed of three equal horizontal bands of teal, black with white top and bottom edges, and yellow. A red isosceles triangle spanning about two-fifth the width of the field is superimposed on the hoist side with its base on the hoist end. This triangle bears a crossed rifle and hoe in black superimposed on an open white book which is superimposed on a five-pointed yellow star.",
   "png" "https://flagcdn.com/w320/mz.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Mozambique",
   "nativeName"
   {"por"
    {"official" "República de Moçambique", "common" "Moçambique"}},
   "common" "Mozambique"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [-25.95 32.58]},
  "tld" [".mz"],
  "ccn3" "508",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"por" "Portuguese"},
  "cioc" "MOZ",
  "currencies" {"MZN" {"name" "Mozambican metical", "symbol" "MT"}},
  "independent" true,
  "population" 31255435,
  "cca3" "MOZ",
  "borders" ["MWI" "ZAF" "SWZ" "TZA" "ZMB" "ZWE"],
  "capital" ["Maputo"],
  "car" {"signs" ["MOC"], "side" "left"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇲🇿",
  "gini" {"2014" 54.0},
  "fifa" "MOZ",
  "cca2" "MZ"}
 {"subregion" "Central America",
  "landlocked" false,
  "latlng" [9.0 -80.0],
  "area" 75417.0,
  "altSpellings" ["PA" "Republic of Panama" "República de Panamá"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/sEN7sKqeawa5oPNLA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/287668"},
  "demonyms"
  {"eng" {"f" "Panamanian", "m" "Panamanian"},
   "fra" {"f" "Panaméenne", "m" "Panaméen"}},
  "translations"
  {"kor" {"official" "파나마 공화국", "common" "파나마"},
   "zho" {"official" "巴拿马共和国", "common" "巴拿马"},
   "hun" {"official" "Panamai Köztársaság", "common" "Panama"},
   "rus" {"official" "Республика Панама", "common" "Панама"},
   "swe" {"official" "Republiken Panama", "common" "Panama"},
   "ces" {"official" "Panamská republika", "common" "Panama"},
   "deu" {"official" "Republik Panama", "common" "Panama"},
   "ara" {"official" "جمهورية بنما", "common" "بنما"},
   "urd" {"official" "جمہوریہ پاناما", "common" "پاناما"},
   "srp" {"official" "Република Панама", "common" "Панама"},
   "tur" {"official" "Panama Cumhuriyeti", "common" "Panama"},
   "pol" {"official" "Republika Panamy", "common" "Panama"},
   "cym" {"official" "Republic of Panama", "common" "Panama"},
   "hrv" {"official" "Republika Panama", "common" "Panama"},
   "spa" {"official" "República de Panamá", "common" "Panamá"},
   "fin" {"official" "Panaman tasavalta", "common" "Panama"},
   "per" {"official" "جمهوری پاناما", "common" "پاناما"},
   "nld" {"official" "Republiek Panama", "common" "Panama"},
   "fra" {"official" "République du Panama", "common" "Panama"},
   "ita" {"official" "Repubblica di Panama", "common" "Panama"},
   "jpn" {"official" "パナマ共和国", "common" "パナマ"},
   "est" {"official" "Panama Vabariik", "common" "Panama"},
   "por" {"official" "República do Panamá", "common" "Panamá"},
   "slk" {"official" "Panamská republika", "common" "Panama"},
   "bre" {"official" "Republik Panama", "common" "Panama"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/pa.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/pa.png"},
  "idd" {"suffixes" ["07"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/pa.svg",
   "alt"
   "The flag of Panama is composed of four equal rectangular areas — a white rectangular area with a blue five-pointed star at its center, a red rectangular area, a white rectangular area with a red five-pointed star at its center, and a blue rectangular area — in the upper hoist side, upper fly side, lower fly side and lower hoist side respectively.",
   "png" "https://flagcdn.com/w320/pa.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Panama",
   "nativeName"
   {"spa" {"official" "República de Panamá", "common" "Panamá"}},
   "common" "Panama"},
  "capitalInfo" {"latlng" [8.97 -79.53]},
  "tld" [".pa"],
  "ccn3" "591",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"spa" "Spanish"},
  "cioc" "PAN",
  "currencies"
  {"PAB" {"name" "Panamanian balboa", "symbol" "B/."},
   "USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" true,
  "population" 4314768,
  "cca3" "PAN",
  "borders" ["COL" "CRI"],
  "capital" ["Panama City"],
  "car" {"signs" ["PA"], "side" "right"},
  "timezones" ["UTC-05:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇵🇦",
  "gini" {"2019" 49.8},
  "fifa" "PAN",
  "cca2" "PA"}
 {"subregion" "Micronesia",
  "landlocked" false,
  "latlng" [6.91666666 158.25],
  "area" 702.0,
  "altSpellings"
  ["FM"
   "Federated States of Micronesia"
   "Micronesia, Federated States of"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/LLcnofC5LxZsJXTo8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/571802"},
  "demonyms"
  {"eng" {"f" "Micronesian", "m" "Micronesian"},
   "fra" {"f" "Micronésienne", "m" "Micronésien"}},
  "translations"
  {"kor" {"official" "미크로네시아 연방", "common" "미크로네시아"},
   "zho" {"official" "密克罗尼西亚联邦", "common" "密克罗尼西亚"},
   "hun"
   {"official" "Mikronéziai Szövetségi Államok",
    "common" "Mikronéziai Szövetségi Államok"},
   "rus"
   {"official" "Федеративные Штаты Микронезии",
    "common" "Федеративные Штаты Микронезии"},
   "swe"
   {"official" "Mikronesiska federationen",
    "common" "Mikronesiska federationen"},
   "ces"
   {"official" "Federativní státy Mikronésie", "common" "Mikronésie"},
   "deu"
   {"official" "Föderierte Staaten von Mikronesien",
    "common" "Mikronesien"},
   "ara"
   {"official" "ولايات ميكرونيسيا المتحدة", "common" "ميكرونيسيا"},
   "urd"
   {"official" "ریاستہائے وفاقیہ مائکرونیشیا", "common" "مائکرونیشیا"},
   "srp"
   {"official" "Савез Држава Микронезије", "common" "Микронезија"},
   "tur"
   {"official" "Mikronezya Federal Devletleri", "common" "Mikronezya"},
   "pol"
   {"official" "Sfederowane Stany Mikronezji", "common" "Mikronezja"},
   "cym"
   {"official" "Federated States of Micronesia",
    "common" "Micronesia"},
   "hrv"
   {"official" "Savezne Države Mikronezije", "common" "Mikronezija"},
   "spa"
   {"official" "Estados Federados de Micronesia",
    "common" "Micronesia"},
   "fin"
   {"official" "Mikronesian liittovaltio", "common" "Mikronesia"},
   "per" {"official" "ایالات فدرال میکرونزی", "common" "میکرونزی"},
   "nld"
   {"official" "Federale Staten van Micronesia",
    "common" "Micronesië"},
   "fra"
   {"official" "États fédérés de Micronésie", "common" "Micronésie"},
   "ita"
   {"official" "Stati federati di Micronesia", "common" "Micronesia"},
   "jpn" {"official" "ミクロネシア連邦", "common" "ミクロネシア連邦"},
   "est"
   {"official" "Mikroneesia Liiduriigid", "common" "Mikroneesia"},
   "por"
   {"official" "Estados Federados da Micronésia",
    "common" "Micronésia"},
   "slk"
   {"official" "Mikronézske federatívne štáty", "common" "Mikronézia"},
   "bre"
   {"official" "Stadoù Kevreet Mikronezia", "common" "Mikronezia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/fm.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/fm.png"},
  "idd" {"suffixes" ["91"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/fm.svg",
   "alt"
   "The flag of Micronesia has a light blue field, at the center of which are four five-pointed white stars arranged in the shape of a diamond.",
   "png" "https://flagcdn.com/w320/fm.png"},
  "unMember" true,
  "name"
  {"official" "Federated States of Micronesia",
   "nativeName"
   {"eng"
    {"official" "Federated States of Micronesia",
     "common" "Micronesia"}},
   "common" "Micronesia"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [6.92 158.15]},
  "tld" [".fm"],
  "ccn3" "583",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"eng" "English"},
  "cioc" "FSM",
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" true,
  "population" 115021,
  "cca3" "FSM",
  "capital" ["Palikir"],
  "car" {"signs" ["FSM"], "side" "right"},
  "timezones" ["UTC+10:00" "UTC+11:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇫🇲",
  "gini" {"2013" 40.1},
  "cca2" "FM"}
 {"subregion" "Northern Europe",
  "landlocked" false,
  "latlng" [53.0 -8.0],
  "area" 70273.0,
  "altSpellings"
  ["IE" "Éire" "Republic of Ireland" "Poblacht na hÉireann"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/hxd1BKxgpchStzQC6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/62273"},
  "demonyms"
  {"eng" {"f" "Irish", "m" "Irish"},
   "fra" {"f" "Irlandaise", "m" "Irlandais"}},
  "translations"
  {"kor" {"official" "아일랜드 공화국", "common" "아일랜드"},
   "zho" {"official" "爱尔兰共和国", "common" "爱尔兰"},
   "hun" {"official" "Ír Köztársaság", "common" "Írország"},
   "rus" {"official" "Ирландия", "common" "Ирландия"},
   "swe" {"official" "Irland", "common" "Irland"},
   "ces" {"official" "Irsko", "common" "Irsko"},
   "deu" {"official" "Republik Irland", "common" "Irland"},
   "ara" {"official" "جمهورية أيرلندا", "common" "أيرلندا"},
   "urd"
   {"official" "جمہوریہ جزیرہ آئرلینڈ", "common" "جزیرہ آئرلینڈ"},
   "srp" {"official" "Република Ирска", "common" "Ирска"},
   "tur" {"official" "İrlanda Cumhuriyeti", "common" "İrlanda"},
   "pol" {"official" "Republika Irlandii", "common" "Irlandia"},
   "cym" {"official" "Republic of Ireland", "common" "Ireland"},
   "hrv" {"official" "Republika Irska", "common" "Irska"},
   "spa" {"official" "República de Irlanda", "common" "Irlanda"},
   "fin" {"official" "Irlannin tasavalta", "common" "Irlanti"},
   "per" {"official" "ایرلند", "common" "ایرلند"},
   "nld" {"official" "Republic of Ireland", "common" "Ierland"},
   "fra" {"official" "République d'Irlande", "common" "Irlande"},
   "ita" {"official" "Repubblica d'Irlanda", "common" "Irlanda"},
   "jpn" {"official" "アイルランド共和国", "common" "アイルランド"},
   "est" {"official" "Iirimaa", "common" "Iirimaa"},
   "por" {"official" "República da Irlanda", "common" "Irlanda"},
   "slk" {"official" "Írska republika", "common" "Írsko"},
   "bre" {"official" "Republik Iwerzhon", "common" "Iwerzhon"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ie.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ie.png"},
  "idd" {"suffixes" ["53"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/ie.svg",
   "alt"
   "The flag of Ireland is composed of three equal vertical bands of green, white and orange.",
   "png" "https://flagcdn.com/w320/ie.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Ireland",
   "nativeName"
   {"gle" {"official" "Poblacht na hÉireann", "common" "Éire"},
    "eng" {"official" "Republic of Ireland", "common" "Ireland"}},
   "common" "Ireland"},
  "capitalInfo" {"latlng" [53.32 -6.23]},
  "tld" [".ie"],
  "ccn3" "372",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"gle" "Irish", "eng" "English"},
  "cioc" "IRL",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 4994724,
  "cca3" "IRL",
  "borders" ["GBR"],
  "capital" ["Dublin"],
  "car" {"signs" ["IRL"], "side" "left"},
  "timezones" ["UTC"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇮🇪",
  "gini" {"2017" 31.4},
  "fifa" "IRL",
  "cca2" "IE"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [12.116667 -68.933333],
  "area" 444.0,
  "altSpellings"
  ["CW"
   "Curacao"
   "Kòrsou"
   "Country of Curaçao"
   "Land Curaçao"
   "Pais Kòrsou"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/9D3hTeA3qKaRT7S16",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1216719"},
  "demonyms"
  {"eng" {"f" "Curaçaoan", "m" "Curaçaoan"},
   "fra" {"f" "Curacienne", "m" "Curacien"}},
  "translations"
  {"kor" {"official" "퀴라소", "common" "퀴라소"},
   "zho" {"official" "库拉索", "common" "库拉索"},
   "hun" {"official" "Curaçao", "common" "Curaçao"},
   "rus" {"official" "Страна Кюрасао", "common" "Кюрасао"},
   "swe" {"official" "Curaçao", "common" "Curaçao"},
   "ces" {"official" "Autonomní země Curaçao", "common" "Curaçao"},
   "deu" {"official" "Land Curaçao", "common" "Curaçao"},
   "ara" {"official" "دولة كوراساو", "common" "كوراساو"},
   "urd" {"official" "مملکتِ کیوراساؤ", "common" "کیوراساؤ"},
   "srp" {"official" "Курасао", "common" "Курасао"},
   "tur" {"official" "Curaçao", "common" "Curaçao"},
   "pol" {"official" "Curaçao", "common" "Curaçao"},
   "cym" {"official" "Country of Curaçao", "common" "Curaçao"},
   "spa" {"official" "País de Curazao", "common" "Curazao"},
   "fin" {"official" "Curaçao", "common" "Curaçao"},
   "per" {"official" "کوراسائو", "common" "کوراسائو"},
   "nld" {"official" "Land Curaçao", "common" "Curaçao"},
   "fra" {"official" "Pays de Curaçao", "common" "Curaçao"},
   "ita" {"official" "Paese di Curaçao", "common" "Curaçao"},
   "est" {"official" "Curaçao", "common" "Curaçao"},
   "por" {"official" "País de Curaçao", "common" "ilha da Curação"},
   "slk" {"official" "Curacao", "common" "Curacao"},
   "bre" {"official" "Bro Curaçao", "common" "Curaçao"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/cw.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/cw.png"},
  "idd" {"suffixes" ["99"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/cw.svg",
   "png" "https://flagcdn.com/w320/cw.png"},
  "unMember" false,
  "name"
  {"official" "Country of Curaçao",
   "nativeName"
   {"eng" {"official" "Country of Curaçao", "common" "Curaçao"},
    "pap" {"official" "Pais Kòrsou", "common" "Pais Kòrsou"},
    "nld" {"official" "Land Curaçao", "common" "Curaçao"}},
   "common" "Curaçao"},
  "capitalInfo" {"latlng" [12.1 -68.92]},
  "tld" [".cw"],
  "ccn3" "531",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English", "pap" "Papiamento", "nld" "Dutch"},
  "currencies"
  {"ANG" {"name" "Netherlands Antillean guilder", "symbol" "ƒ"}},
  "independent" false,
  "population" 155014,
  "cca3" "CUW",
  "capital" ["Willemstad"],
  "car" {"signs" ["CW"], "side" "right"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇨🇼",
  "fifa" "CUW",
  "cca2" "CW"}
 {"subregion" "South America",
  "landlocked" false,
  "latlng" [4.0 -53.0],
  "area" 83534.0,
  "altSpellings" ["GF" "Guiana" "Guyane"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/NJawFwMzG7YtCrVP7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2502058"},
  "demonyms"
  {"eng" {"f" "Guianan", "m" "Guianan"},
   "fra" {"f" "Guyanaise", "m" "Guyanais"}},
  "translations"
  {"kor" {"official" "프랑스령 기아나", "common" "프랑스령 기아나"},
   "zho" {"official" "法属圭亚那", "common" "法属圭亚那"},
   "hun" {"official" "Francia Guyana", "common" "Francia Guyana"},
   "rus" {"official" "Гвиана", "common" "Французская Гвиана"},
   "swe" {"official" "Franska Guyana", "common" "Franska Guyana"},
   "ces"
   {"official" "Francouzská Guyana", "common" "Francouzská Guyana"},
   "deu"
   {"official" "Französisch-Guayana", "common" "Französisch-Guayana"},
   "ara" {"official" "غويانا الفرنسية", "common" "غويانا"},
   "urd" {"official" "گیانا", "common" "فرانسیسی گیانا"},
   "srp"
   {"official" "Француска Гвајана", "common" "Француска Гвајана"},
   "tur" {"official" "Fransız Guyanası", "common" "Fransız Guyanası"},
   "pol" {"official" "Gujana Francuska", "common" "Gujana Francuska"},
   "cym" {"official" "Guiana", "common" "French Guiana"},
   "hrv" {"official" "Gijana", "common" "Francuska Gvajana"},
   "spa" {"official" "Guayana", "common" "Guayana Francesa"},
   "fin" {"official" "Ranskan Guayana", "common" "Ranskan Guayana"},
   "per" {"official" "گویان فرانسه", "common" "گویان فرانسه"},
   "nld" {"official" "Guyana", "common" "Frans-Guyana"},
   "fra" {"official" "Guyane", "common" "Guyane"},
   "ita" {"official" "Guiana", "common" "Guyana francese"},
   "jpn" {"official" "ギアナ", "common" "フランス領ギアナ"},
   "est"
   {"official" "Guajaana departemang", "common" "Prantsuse Guajaana"},
   "por" {"official" "Guiana", "common" "Guiana Francesa"},
   "slk" {"official" "Francúzska Guyana", "common" "Guyana"},
   "bre" {"official" "Gwiana C'hall", "common" "Gwiana C'hall"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/gf.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/gf.png"},
  "idd" {"suffixes" ["94"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/gf.svg",
   "png" "https://flagcdn.com/w320/gf.png"},
  "unMember" false,
  "name"
  {"official" "Guiana",
   "nativeName"
   {"fra" {"official" "Guyane", "common" "Guyane française"}},
   "common" "French Guiana"},
  "postalCode" {"regex" "^((97|98)3\\d{2})$", "format" "#####"},
  "capitalInfo" {"latlng" [4.94 -52.33]},
  "tld" [".gf"],
  "ccn3" "254",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"fra" "French"},
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" false,
  "population" 254541,
  "cca3" "GUF",
  "borders" ["BRA" "SUR"],
  "capital" ["Cayenne"],
  "car" {"signs" ["F"], "side" "right"},
  "timezones" ["UTC-03:00"],
  "startOfWeek" "monday",
  "continents" ["South America"],
  "flag" "🇬🇫",
  "cca2" "GF"}
 {"subregion" "Northern Europe",
  "landlocked" false,
  "latlng" [62.0 10.0],
  "area" 323802.0,
  "altSpellings"
  ["NO"
   "Norge"
   "Noreg"
   "Kingdom of Norway"
   "Kongeriket Norge"
   "Kongeriket Noreg"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/htWRrphA7vNgQNdSA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2978650"},
  "demonyms"
  {"eng" {"f" "Norwegian", "m" "Norwegian"},
   "fra" {"f" "Norvégienne", "m" "Norvégien"}},
  "translations"
  {"kor" {"official" "노르웨이 왕국", "common" "노르웨이"},
   "zho" {"official" "挪威王国", "common" "挪威"},
   "hun" {"official" "Norvég Királyság", "common" "Norvégia"},
   "rus" {"official" "Королевство Норвегия", "common" "Норвегия"},
   "swe" {"official" "Konungariket Norge", "common" "Norge"},
   "ces" {"official" "Norské království", "common" "Norsko"},
   "deu" {"official" "Königreich Norwegen", "common" "Norwegen"},
   "ara" {"official" "مملكة النرويج", "common" "النرويج"},
   "urd" {"official" "مملکتِ ناروے", "common" "ناروے"},
   "srp" {"official" "Краљевина Норвешка", "common" "Норвешка"},
   "tur" {"official" "Norveç Krallığı", "common" "Norveç"},
   "pol" {"official" "Królestwo Norwegii", "common" "Norwegia"},
   "cym" {"official" "Kingdom of Norway", "common" "Norway"},
   "hrv" {"official" "Kraljevina Norveška", "common" "Norveška"},
   "spa" {"official" "Reino de Noruega", "common" "Noruega"},
   "fin" {"official" "Norjan kuningaskunta", "common" "Norja"},
   "per" {"official" "پادشاهی نروژ", "common" "نروژ"},
   "nld" {"official" "Koninkrijk Noorwegen", "common" "Noorwegen"},
   "fra" {"official" "Royaume de Norvège", "common" "Norvège"},
   "ita" {"official" "Regno di Norvegia", "common" "Norvegia"},
   "jpn" {"official" "ノルウェー王国", "common" "ノルウェー"},
   "est" {"official" "Norra Kuningriik", "common" "Norra"},
   "por" {"official" "Reino da Noruega", "common" "Noruega"},
   "slk" {"official" "Nórske kráľovstvo", "common" "Nórsko"},
   "bre" {"official" "Rouantelezh Norvegia", "common" "Norvegia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/no.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/no.png"},
  "idd" {"suffixes" ["7"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/no.svg",
   "alt"
   "The flag of Norway has a red field with a large white-edged navy blue cross that extends to the edges of the field. The vertical part of this cross is offset towards the hoist side.",
   "png" "https://flagcdn.com/w320/no.png"},
  "unMember" true,
  "name"
  {"official" "Kingdom of Norway",
   "nativeName"
   {"nno" {"official" "Kongeriket Noreg", "common" "Noreg"},
    "smi" {"official" "Norgga gonagasriika", "common" "Norgga"},
    "nob" {"official" "Kongeriket Norge", "common" "Norge"}},
   "common" "Norway"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [59.92 10.75]},
  "tld" [".no"],
  "ccn3" "578",
  "status" "officially-assigned",
  "region" "Europe",
  "languages"
  {"nno" "Norwegian Nynorsk", "smi" "Sami", "nob" "Norwegian Bokmål"},
  "cioc" "NOR",
  "currencies" {"NOK" {"name" "Norwegian krone", "symbol" "kr"}},
  "independent" true,
  "population" 5379475,
  "cca3" "NOR",
  "borders" ["FIN" "SWE" "RUS"],
  "capital" ["Oslo"],
  "car" {"signs" ["N"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇳🇴",
  "gini" {"2018" 27.6},
  "fifa" "NOR",
  "cca2" "NO"}
 {"subregion" "Northern Europe",
  "landlocked" false,
  "latlng" [60.116667 19.9],
  "area" 1580.0,
  "altSpellings" ["AX" "Aaland" "Aland" "Ahvenanmaa"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/ewFb3vYsfUmVCoSb8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1650407"},
  "demonyms"
  {"eng" {"f" "Ålandish", "m" "Ålandish"},
   "fra" {"f" "Ålandaise", "m" "Ålandais"}},
  "translations"
  {"kor" {"official" "올란드 제도", "common" "올란드 제도"},
   "zho" {"official" "奥兰群岛", "common" "奥兰群岛"},
   "hun" {"official" "Åland-szigetek", "common" "Åland-szigetek"},
   "rus"
   {"official" "Аландские острова", "common" "Аландские острова"},
   "swe" {"official" "Åland", "common" "Åland"},
   "ces" {"official" "Ålandské ostrovy", "common" "Ålandy"},
   "deu" {"official" "Åland-Inseln", "common" "Åland"},
   "ara" {"official" "جزر أولاند", "common" "جزر أولاند"},
   "urd" {"official" "جزائر اولند", "common" "جزائر اولند"},
   "srp" {"official" "Оландска Острва", "common" "Оландска Острва"},
   "tur" {"official" "Åland Adaları", "common" "Åland"},
   "pol" {"official" "Wyspy Alandzkie", "common" "Wyspy Alandzkie"},
   "cym" {"official" "Åland Islands", "common" "Åland Islands"},
   "hrv" {"official" "Aland Islands", "common" "Ålandski otoci"},
   "spa" {"official" "Islas Åland", "common" "Alandia"},
   "fin" {"official" "Ahvenanmaan maakunta", "common" "Ahvenanmaa"},
   "per" {"official" "جزایر الند", "common" "جزایر الند"},
   "nld" {"official" "Åland eilanden", "common" "Ålandeilanden"},
   "fra" {"official" "Ahvenanmaa", "common" "Ahvenanmaa"},
   "ita" {"official" "Isole Åland", "common" "Isole Aland"},
   "jpn" {"official" "オーランド諸島", "common" "オーランド諸島"},
   "est" {"official" "Ahvenamaa maakond", "common" "Ahvenamaa"},
   "por" {"official" "Ilhas Åland", "common" "Alândia"},
   "slk" {"official" "Alandské ostrovy", "common" "Alandy"},
   "bre" {"official" "Inizi Åland", "common" "Åland"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ax.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ax.png"},
  "idd" {"suffixes" ["5818"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/ax.svg",
   "png" "https://flagcdn.com/w320/ax.png"},
  "unMember" false,
  "name"
  {"official" "Åland Islands",
   "nativeName"
   {"swe" {"official" "Landskapet Åland", "common" "Åland"}},
   "common" "Åland Islands"},
  "capitalInfo" {"latlng" [60.12 19.9]},
  "tld" [".ax"],
  "ccn3" "248",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"swe" "Swedish"},
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" false,
  "population" 29458,
  "cca3" "ALA",
  "capital" ["Mariehamn"],
  "car" {"signs" [""], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇦🇽",
  "cca2" "AX"}
 {"subregion" "Middle Africa",
  "landlocked" true,
  "latlng" [7.0 21.0],
  "area" 622984.0,
  "altSpellings"
  ["CF" "Central African Republic" "République centrafricaine"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/51V8dsi2rGYC9n3c9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192790"},
  "demonyms"
  {"eng" {"f" "Central African", "m" "Central African"},
   "fra" {"f" "Centrafricaine", "m" "Centrafricain"}},
  "translations"
  {"kor" {"official" "중앙아프리카 공화국", "common" "중앙아프리카 공화국"},
   "zho" {"official" "中非共和国", "common" "中非共和国"},
   "hun"
   {"official" "Közép-afrikai Köztársaság",
    "common" "Közép-afrikai Köztársaság"},
   "rus"
   {"official" "Центрально-Африканская Республика",
    "common" "Центральноафриканская Республика"},
   "swe"
   {"official" "Centralafrikanska republiken",
    "common" "Centralafrikanska republiken"},
   "ces"
   {"official" "Středoafrická republika",
    "common" "Středoafrická republika"},
   "deu"
   {"official" "Zentralafrikanische Republik",
    "common" "Zentralafrikanische Republik"},
   "ara"
   {"official" "جمهورية أفريقيا الوسطى",
    "common" "جمهورية أفريقيا الوسطى"},
   "urd"
   {"official" "وسطی افریقی جمہوریہ", "common" "وسطی افریقی جمہوریہ"},
   "srp"
   {"official" "Централноафричка Република",
    "common" "Централноафричка Република"},
   "tur"
   {"official" "Orta Afrika Cumhuriyeti",
    "common" "Orta Afrika Cumhuriyeti"},
   "pol"
   {"official" "Republika Środkowoafrykańska",
    "common" "Republika Środkowoafrykańska"},
   "cym"
   {"official" "Gweriniaeth Canolbarth Affrica",
    "common" "Gweriniaeth Canolbarth Affrica"},
   "hrv"
   {"official" "Centralna Afrička Republika",
    "common" "Srednjoafrička Republika"},
   "spa"
   {"official" "República Centroafricana",
    "common" "República Centroafricana"},
   "fin"
   {"official" "Keski-Afrikan tasavalta",
    "common" "Keski-Afrikan tasavalta"},
   "per"
   {"official" "جمهوری آفریقای مرکزی",
    "common" "جمهوری آفریقای مرکزی"},
   "nld"
   {"official" "Centraal-Afrikaanse Republiek",
    "common" "Centraal-Afrikaanse Republiek"},
   "fra"
   {"official" "République centrafricaine",
    "common" "République centrafricaine"},
   "ita"
   {"official" "Repubblica Centrafricana",
    "common" "Repubblica Centrafricana"},
   "jpn" {"official" "中央アフリカ共和国", "common" "中央アフリカ共和国"},
   "est"
   {"official" "Kesk-Aafrika Vabariik",
    "common" "Kesk-Aafrika Vabariik"},
   "por"
   {"official" "República Centro-Africano",
    "common" "República Centro-Africana"},
   "slk"
   {"official" "Stredoafrická republika",
    "common" "Stredoafrická republika"},
   "bre"
   {"official" "Republik Kreizafrikan",
    "common" "Republik Kreizafrikan"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/cf.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/cf.png"},
  "idd" {"suffixes" ["36"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/cf.svg",
   "alt"
   "The flag of Central African Republic is composed of four equal horizontal bands of blue, white, green and yellow intersected at the center by a vertical red band of equal size as the horizontal bands. A yellow five-pointed star is situated on the hoist side of the blue band.",
   "png" "https://flagcdn.com/w320/cf.png"},
  "unMember" true,
  "name"
  {"official" "Central African Republic",
   "nativeName"
   {"sag" {"official" "Ködörösêse tî Bêafrîka", "common" "Bêafrîka"},
    "fra"
    {"official" "République centrafricaine",
     "common" "République centrafricaine"}},
   "common" "Central African Republic"},
  "capitalInfo" {"latlng" [4.37 18.58]},
  "tld" [".cf"],
  "ccn3" "140",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"sag" "Sango", "fra" "French"},
  "cioc" "CAF",
  "currencies"
  {"XAF" {"name" "Central African CFA franc", "symbol" "Fr"}},
  "independent" true,
  "population" 4829764,
  "cca3" "CAF",
  "borders" ["CMR" "TCD" "COD" "COG" "SSD" "SDN"],
  "capital" ["Bangui"],
  "car" {"signs" ["RCA"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇨🇫",
  "gini" {"2008" 56.2},
  "fifa" "CTA",
  "cca2" "CF"}
 {"subregion" "Western Africa",
  "landlocked" true,
  "latlng" [13.0 -2.0],
  "area" 272967.0,
  "altSpellings" ["BF"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/rKRmpcMbFher2ozb7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192783"},
  "demonyms"
  {"eng" {"f" "Burkinabe", "m" "Burkinabe"},
   "fra" {"f" "Burkinabée", "m" "Burkinabé"}},
  "translations"
  {"kor" {"official" "부르키나파소", "common" "부르키나파소"},
   "zho" {"official" "布基纳法索", "common" "布基纳法索"},
   "hun" {"official" "Burkina Faso", "common" "Burkina"},
   "rus" {"official" "Буркина -Фасо", "common" "Буркина-Фасо"},
   "swe" {"official" "Burkina Faso", "common" "Burkina Faso"},
   "ces" {"official" "Burkina Faso", "common" "Burkina Faso"},
   "deu" {"official" "Burkina Faso", "common" "Burkina Faso"},
   "ara" {"official" "بوركينا فاسو", "common" "بوركينا فاسو"},
   "urd" {"official" "برکینا فاسو", "common" "برکینا فاسو"},
   "srp" {"official" "Буркина Фасо", "common" "Буркина Фасо"},
   "tur" {"official" "Burkina Faso", "common" "Burkina Faso"},
   "pol" {"official" "Burkina Faso", "common" "Burkina Faso"},
   "cym" {"official" "Bwrcina Ffaso", "common" "Bwrcina Ffaso"},
   "hrv" {"official" "Burkina Faso", "common" "Burkina Faso"},
   "spa" {"official" "Burkina Faso", "common" "Burkina Faso"},
   "fin" {"official" "Burkina Faso", "common" "Burkina Faso"},
   "per" {"official" "بورکینافاسو", "common" "بورکینافاسو"},
   "nld" {"official" "Burkina Faso", "common" "Burkina Faso"},
   "fra" {"official" "République du Burkina", "common" "Burkina Faso"},
   "ita" {"official" "Burkina Faso", "common" "Burkina Faso"},
   "jpn" {"official" "ブルキナファソ", "common" "ブルキナファソ"},
   "est" {"official" "Burkina Faso", "common" "Burkina Faso"},
   "por" {"official" "Burkina Faso", "common" "Burkina Faso"},
   "slk" {"official" "Burkina Faso", "common" "Burkina Faso"},
   "bre" {"official" "Burkina Faso", "common" "Burkina Faso"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/bf.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/bf.png"},
  "idd" {"suffixes" ["26"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/bf.svg",
   "alt"
   "The flag of Burkina Faso features two equal horizontal bands of red and green, with a yellow five-pointed star in the center.",
   "png" "https://flagcdn.com/w320/bf.png"},
  "unMember" true,
  "name"
  {"official" "Burkina Faso",
   "nativeName"
   {"fra"
    {"official" "République du Burkina", "common" "Burkina Faso"}},
   "common" "Burkina Faso"},
  "capitalInfo" {"latlng" [12.37 -1.52]},
  "tld" [".bf"],
  "ccn3" "854",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"fra" "French"},
  "cioc" "BUR",
  "currencies"
  {"XOF" {"name" "West African CFA franc", "symbol" "Fr"}},
  "independent" true,
  "population" 20903278,
  "cca3" "BFA",
  "borders" ["BEN" "CIV" "GHA" "MLI" "NER" "TGO"],
  "capital" ["Ouagadougou"],
  "car" {"signs" ["BF"], "side" "right"},
  "timezones" ["UTC"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇧🇫",
  "gini" {"2014" 35.3},
  "fifa" "BFA",
  "cca2" "BF"}
 {"subregion" "Eastern Africa",
  "landlocked" false,
  "latlng" [15.0 39.0],
  "area" 117600.0,
  "altSpellings"
  ["ER"
   "State of Eritrea"
   "ሃገረ ኤርትራ"
   "Dawlat Iritriyá"
   "ʾErtrā"
   "Iritriyā"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/HRyqUpnPwwG6jY5j6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/296961"},
  "demonyms"
  {"eng" {"f" "Eritrean", "m" "Eritrean"},
   "fra" {"f" "Érythréenne", "m" "Érythréen"}},
  "translations"
  {"kor" {"official" "에리트레아국", "common" "에리트레아"},
   "zho" {"official" "厄立特里亚", "common" "厄立特里亚"},
   "hun" {"official" "Eritrea", "common" "Eritrea"},
   "rus" {"official" "Государство Эритрея", "common" "Эритрея"},
   "swe" {"official" "Staten Eritrea", "common" "Eritrea"},
   "ces" {"official" "Stát Eritrea", "common" "Eritrea"},
   "deu" {"official" "Staat Eritrea", "common" "Eritrea"},
   "ara" {"official" "دولة إريتريا", "common" "إريتريا"},
   "urd" {"official" "ریاستِ ارتریا", "common" "ارتریا"},
   "srp" {"official" "Држава Еритреја", "common" "Еритреја"},
   "tur" {"official" "Eritre Devleti", "common" "Eritre"},
   "pol" {"official" "Państwo Erytrea", "common" "Erytrea"},
   "cym" {"official" "Gwladwriaeth Eritrea", "common" "Eritrea"},
   "hrv" {"official" "Država Eritreji", "common" "Eritreja"},
   "spa" {"official" "Estado de Eritrea", "common" "Eritrea"},
   "fin" {"official" "Eritrean valtio", "common" "Eritrea"},
   "per" {"official" "جمهوری اریتره", "common" "اریتره"},
   "nld" {"official" "Staat Eritrea", "common" "Eritrea"},
   "fra" {"official" "État d'Érythrée", "common" "Érythrée"},
   "ita" {"official" "Stato di Eritrea", "common" "Eritrea"},
   "jpn" {"official" "エリトリア国", "common" "エリトリア"},
   "est" {"official" "Eritrea Riik", "common" "Eritrea"},
   "por" {"official" "Estado da Eritreia", "common" "Eritreia"},
   "slk" {"official" "Eritrejský štát", "common" "Eritrea"},
   "bre" {"official" "Stad Eritrea", "common" "Eritrea"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/er.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/er.png"},
  "idd" {"suffixes" ["91"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/er.svg",
   "alt"
   "The flag of Eritrea comprises three triangles — a large red isosceles triangle with its base spanning the hoist end and its apex at the midpoint on the fly end, and a green and blue right-angled triangle above and beneath the red triangle. On the hoist side of the red triangle is a golden vertical olive branch encircled by a golden olive wreath.",
   "png" "https://flagcdn.com/w320/er.png"},
  "unMember" true,
  "name"
  {"official" "State of Eritrea",
   "nativeName"
   {"tir" {"official" "ሃገረ ኤርትራ", "common" "ኤርትራ"},
    "ara" {"official" "دولة إرتريا", "common" "إرتريا‎"},
    "eng" {"official" "State of Eritrea", "common" "Eritrea"}},
   "common" "Eritrea"},
  "capitalInfo" {"latlng" [15.33 38.93]},
  "tld" [".er"],
  "ccn3" "232",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"tir" "Tigrinya", "ara" "Arabic", "eng" "English"},
  "cioc" "ERI",
  "currencies" {"ERN" {"name" "Eritrean nakfa", "symbol" "Nfk"}},
  "independent" true,
  "population" 5352000,
  "cca3" "ERI",
  "borders" ["DJI" "ETH" "SDN"],
  "capital" ["Asmara"],
  "car" {"signs" ["ER"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇪🇷",
  "fifa" "ERI",
  "cca2" "ER"}
 {"subregion" "Eastern Africa",
  "landlocked" false,
  "latlng" [-6.0 35.0],
  "area" 945087.0,
  "altSpellings"
  ["TZ"
   "Tanzania, United Republic of"
   "United Republic of Tanzania"
   "Jamhuri ya Muungano wa Tanzania"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/NWYMqZYXte4zGZ2Q8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/195270"},
  "demonyms"
  {"eng" {"f" "Tanzanian", "m" "Tanzanian"},
   "fra" {"f" "Tanzanienne", "m" "Tanzanien"}},
  "translations"
  {"kor" {"official" "탄자니아 연합 공화국", "common" "탄자니아"},
   "zho" {"official" "坦桑尼亚联合共和国", "common" "坦桑尼亚"},
   "hun" {"official" "Tádzsik Köztársaság", "common" "Tádzsikisztán"},
   "rus"
   {"official" "Объединенная Республика Танзания",
    "common" "Танзания"},
   "swe"
   {"official" "Förenade republiken Tanzania", "common" "Tanzania"},
   "ces"
   {"official" "Sjednocená tanzanská republika", "common" "Tanzanie"},
   "deu"
   {"official" "Vereinigte Republik Tansania", "common" "Tansania"},
   "ara" {"official" "جمهورية تنزانيا الاتحادية", "common" "تنزانيا"},
   "urd" {"official" "متحدہ جمہوریہ تنزانیہ", "common" "تنزانیہ"},
   "srp"
   {"official" "Уједињена Република Танзанија", "common" "Танзанија"},
   "tur"
   {"official" "Tanzanya Birleşik Cumhuriyeti", "common" "Tanzanya"},
   "pol"
   {"official" "Zjednoczona Republika Tanzanii", "common" "Tanzania"},
   "cym"
   {"official" "United Republic of Tanzania", "common" "Tanzania"},
   "hrv"
   {"official" "Ujedinjena Republika Tanzanija", "common" "Tanzanija"},
   "spa"
   {"official" "República Unida de Tanzania", "common" "Tanzania"},
   "fin"
   {"official" "Tansanian yhdistynyt tasavalta", "common" "Tansania"},
   "per" {"official" "جمهوری متحد تانزانیا", "common" "تانزانیا"},
   "nld"
   {"official" "Verenigde Republiek Tanzania", "common" "Tanzania"},
   "fra"
   {"official" "République -Unie de Tanzanie", "common" "Tanzanie"},
   "ita"
   {"official" "Repubblica Unita di Tanzania", "common" "Tanzania"},
   "jpn" {"official" "タンザニア連合共和国", "common" "タンザニア"},
   "est" {"official" "Tansaania Ühendvabariik", "common" "Tansaania"},
   "por"
   {"official" "República Unida da Tanzânia", "common" "Tanzânia"},
   "slk"
   {"official" "Tanzánijská zjednotená republika",
    "common" "Tanzánia"},
   "bre" {"official" "Republik Unanet Tanzania", "common" "Tanzania"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/tz.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/tz.png"},
  "idd" {"suffixes" ["55"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/tz.svg",
   "alt"
   "The flag of Tanzania features a yellow-edged black diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a green and light blue triangle respectively.",
   "png" "https://flagcdn.com/w320/tz.png"},
  "unMember" true,
  "name"
  {"official" "United Republic of Tanzania",
   "nativeName"
   {"eng"
    {"official" "United Republic of Tanzania", "common" "Tanzania"},
    "swa"
    {"official" "Jamhuri ya Muungano wa Tanzania",
     "common" "Tanzania"}},
   "common" "Tanzania"},
  "capitalInfo" {"latlng" [-6.16 35.75]},
  "tld" [".tz"],
  "ccn3" "834",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"eng" "English", "swa" "Swahili"},
  "cioc" "TAN",
  "currencies" {"TZS" {"name" "Tanzanian shilling", "symbol" "Sh"}},
  "independent" true,
  "population" 59734213,
  "cca3" "TZA",
  "borders" ["BDI" "COD" "KEN" "MWI" "MOZ" "RWA" "UGA" "ZMB"],
  "capital" ["Dodoma"],
  "car" {"signs" ["EAT"], "side" "left"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇹🇿",
  "gini" {"2017" 40.5},
  "fifa" "TAN",
  "cca2" "TZ"}
 {"subregion" "Eastern Asia",
  "landlocked" false,
  "latlng" [37.0 127.5],
  "area" 100210.0,
  "altSpellings"
  ["KR" "Korea, Republic of" "Republic of Korea" "남한" "남조선"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/7ecjaJXefjAQhxjGA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/307756"},
  "demonyms"
  {"eng" {"f" "South Korean", "m" "South Korean"},
   "fra" {"f" "Sud-coréenne", "m" "Sud-coréen"}},
  "translations"
  {"kor" {"official" "대한민국", "common" "한국"},
   "zho" {"official" "大韩民国", "common" "韩国"},
   "hun" {"official" "Koreai Köztársaság", "common" "Dél-Korea"},
   "rus" {"official" "Республика Корея", "common" "Южная Корея"},
   "swe" {"official" "Republiken Korea", "common" "Sydkorea"},
   "ces" {"official" "Korejská republika", "common" "Jižní Korea"},
   "deu" {"official" "Republik Korea", "common" "Südkorea"},
   "ara" {"official" "جمهورية كوريا", "common" "كوريا الجنوبية"},
   "urd" {"official" "جمہوریہ کوریا ", "common" "جنوبی کوریا"},
   "srp" {"official" "Република Кореја", "common" "Јужна Кореја"},
   "tur" {"official" "Kore Cumhuriyeti", "common" "Güney Kore"},
   "pol" {"official" "Republika Korei", "common" "Korea Południowa"},
   "cym" {"official" "Republic of Korea", "common" "South Korea"},
   "hrv" {"official" "Republika Koreja", "common" "Južna Koreja"},
   "spa" {"official" "República de Corea", "common" "Corea del Sur"},
   "fin" {"official" "Korean tasavalta", "common" "Etelä-Korea"},
   "per" {"official" "جمهوری کره", "common" "کرهٔ جنوبی"},
   "nld" {"official" "Republiek Korea", "common" "Zuid-Korea"},
   "fra" {"official" "République de Corée", "common" "Corée du Sud"},
   "ita" {"official" "Repubblica di Corea", "common" "Corea del Sud"},
   "jpn" {"official" "大韓民国", "common" "韓国"},
   "est" {"official" "Korea Vabariik", "common" "Lõuna-Korea"},
   "por" {"official" "República da Coreia", "common" "Coreia do Sul"},
   "slk" {"official" "Kórejská republika", "common" "Južná Kórea"},
   "bre" {"official" "Republik Korea", "common" "Korea ar Su"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/kr.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/kr.png"},
  "idd" {"suffixes" ["2"], "root" "+8"},
  "flags"
  {"svg" "https://flagcdn.com/kr.svg",
   "alt"
   "The flag of South Korea has a white field, at the center of which is a red and blue Taegeuk circle surrounded by four black trigrams, one in each corner.",
   "png" "https://flagcdn.com/w320/kr.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Korea",
   "nativeName" {"kor" {"official" "대한민국", "common" "한국"}},
   "common" "South Korea"},
  "postalCode"
  {"regex" "^(?:SEOUL)*(\\d{6})$", "format" "SEOUL ###-###"},
  "capitalInfo" {"latlng" [37.55 126.98]},
  "tld" [".kr" ".한국"],
  "ccn3" "410",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"kor" "Korean"},
  "cioc" "KOR",
  "currencies" {"KRW" {"name" "South Korean won", "symbol" "₩"}},
  "independent" true,
  "population" 51780579,
  "cca3" "KOR",
  "borders" ["PRK"],
  "capital" ["Seoul"],
  "car" {"signs" ["ROK"], "side" "right"},
  "timezones" ["UTC+09:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇰🇷",
  "gini" {"2016" 31.4},
  "fifa" "KOR",
  "cca2" "KR"}
 {"subregion" "Western Asia",
  "landlocked" false,
  "latlng" [31.0 36.0],
  "area" 89342.0,
  "altSpellings"
  ["JO"
   "Hashemite Kingdom of Jordan"
   "al-Mamlakah al-Urdunīyah al-Hāshimīyah"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/ko1dzSDKg8Gsi9A98",
   "openStreetMaps" "https://www.openstreetmap.org/relation/184818"},
  "demonyms"
  {"eng" {"f" "Jordanian", "m" "Jordanian"},
   "fra" {"f" "Jordanienne", "m" "Jordanien"}},
  "translations"
  {"kor" {"official" "요르단 하심 왕국", "common" "요르단"},
   "zho" {"official" "约旦哈希姆王国", "common" "约旦"},
   "hun" {"official" "Jordánia", "common" "Jordánia"},
   "rus"
   {"official" "Иорданского Хашимитского Королевства",
    "common" "Иордания"},
   "swe"
   {"official" "Hashimitiska kungadömet Jordanien",
    "common" "Jordanien"},
   "ces"
   {"official" "Jordánské hášimovské království",
    "common" "Jordánsko"},
   "deu"
   {"official" "Haschemitisches Königreich Jordanien",
    "common" "Jordanien"},
   "ara" {"official" "المملكة الأردنية الهاشمية", "common" "الأردن"},
   "urd" {"official" "ھاشمی مملکتِ اردن", "common" "اردن"},
   "srp" {"official" "Хашемитска Краљевина Јордан", "common" "Јордан"},
   "tur" {"official" "Ürdün Hâşimi Krallığı", "common" "Ürdün"},
   "pol"
   {"official" "Jordańskie Królestwo Haszymidzkie",
    "common" "Jordania"},
   "cym" {"official" "Hashemite Kingdom of Jordan", "common" "Jordan"},
   "hrv"
   {"official" "Hašemitske Kraljevine Jordan", "common" "Jordan"},
   "spa"
   {"official" "Reino Hachemita de Jordania", "common" "Jordania"},
   "fin"
   {"official" "Jordanian hašemiittinen kunigaskunta",
    "common" "Jordania"},
   "per" {"official" "پادشاهی اُردُن هاشمی", "common" "اردن"},
   "nld"
   {"official" "Hasjemitisch Koninkrijk Jordanië",
    "common" "Jordanië"},
   "fra"
   {"official" "Royaume hachémite de Jordanie", "common" "Jordanie"},
   "ita"
   {"official" "Regno hascemita di Giordania", "common" "Giordania"},
   "jpn" {"official" "ヨルダン·ハシミテ王国", "common" "ヨルダン"},
   "est"
   {"official" "Jordaania Hašimiidi Kuningriik", "common" "Jordaania"},
   "por"
   {"official" "Reino Hachemita da Jordânia", "common" "Jordânia"},
   "slk"
   {"official" "Jordánske hášimovské kráľovstvo",
    "common" "Jordánsko"},
   "bre"
   {"official" "Rouantelezh hachemit Jordania", "common" "Jordania"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/jo.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/jo.png"},
  "idd" {"suffixes" ["62"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/jo.svg",
   "alt"
   "The flag of Jordan is composed of three equal horizontal bands of black, white and green, with a red isosceles triangle superimposed on the hoist side of the field. This triangle has its base on the hoist end, spans about half the width of the field and bears a small seven-pointed white star at its center.",
   "png" "https://flagcdn.com/w320/jo.png"},
  "unMember" true,
  "name"
  {"official" "Hashemite Kingdom of Jordan",
   "nativeName"
   {"ara" {"official" "المملكة الأردنية الهاشمية", "common" "الأردن"}},
   "common" "Jordan"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [31.95 35.93]},
  "tld" [".jo" "الاردن."],
  "ccn3" "400",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"ara" "Arabic"},
  "cioc" "JOR",
  "currencies" {"JOD" {"name" "Jordanian dinar", "symbol" "د.ا"}},
  "independent" true,
  "population" 10203140,
  "cca3" "JOR",
  "borders" ["IRQ" "ISR" "PSE" "SAU" "SYR"],
  "capital" ["Amman"],
  "car" {"signs" ["HKJ"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "sunday",
  "continents" ["Asia"],
  "flag" "🇯🇴",
  "gini" {"2010" 33.7},
  "fifa" "JOR",
  "cca2" "JO"}
 {"subregion" "Western Africa",
  "landlocked" false,
  "latlng" [20.0 -12.0],
  "area" 1030700.0,
  "altSpellings"
  ["MR"
   "Islamic Republic of Mauritania"
   "al-Jumhūriyyah al-ʾIslāmiyyah al-Mūrītāniyyah"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/im2MmQ5jFjzxWBks5",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192763"},
  "demonyms"
  {"eng" {"f" "Mauritanian", "m" "Mauritanian"},
   "fra" {"f" "Mauritanienne", "m" "Mauritanien"}},
  "translations"
  {"kor" {"official" "모리타니 이슬람 공화국", "common" "모리타니"},
   "zho" {"official" "毛里塔尼亚伊斯兰共和国", "common" "毛里塔尼亚"},
   "hun"
   {"official" "Mauritániai Iszlám Köztársaság",
    "common" "Mauritánia"},
   "rus"
   {"official" "Исламская Республика Мавритания",
    "common" "Мавритания"},
   "swe"
   {"official" "Islamiska republiken Mauretanien",
    "common" "Mauretanien"},
   "ces"
   {"official" "Mauritánská islámská republika",
    "common" "Mauritánie"},
   "deu"
   {"official" "Islamische Republik Mauretanien",
    "common" "Mauretanien"},
   "ara"
   {"official" "الجمهورية الإسلامية الموريتانية",
    "common" "موريتانيا"},
   "urd" {"official" "اسلامی جمہوریہ موریتانیہ", "common" "موریتانیہ"},
   "srp"
   {"official" "Исламска Република Мауританија",
    "common" "Мауританија"},
   "tur"
   {"official" "Moritanya İslam Cumhuriyeti", "common" "Moritanya"},
   "pol"
   {"official" "Islamska Republika Mauretańska",
    "common" "Mauretania"},
   "cym"
   {"official" "Islamic Republic of Mauritania",
    "common" "Mauritania"},
   "hrv"
   {"official" "Islamska Republika Mauritanija",
    "common" "Mauritanija"},
   "spa"
   {"official" "República Islámica de Mauritania",
    "common" "Mauritania"},
   "fin"
   {"official" "Mauritanian islamilainen tasavalta",
    "common" "Mauritania"},
   "per" {"official" "جمهوری اسلامی موریتانی", "common" "موریتانی"},
   "nld"
   {"official" "Islamitische Republiek Mauritanië",
    "common" "Mauritanië"},
   "fra"
   {"official" "République islamique de Mauritanie",
    "common" "Mauritanie"},
   "ita"
   {"official" "Repubblica islamica di Mauritania",
    "common" "Mauritania"},
   "jpn" {"official" "モーリタニア·イスラム共和国", "common" "モーリタニア"},
   "est"
   {"official" "Mauritaania Islamivabariik", "common" "Mauritaania"},
   "por"
   {"official" "República Islâmica da Mauritânia",
    "common" "Mauritânia"},
   "slk"
   {"official" "Mauritánska islamská republika",
    "common" "Mauritánia"},
   "bre"
   {"official" "Republik islamek Maouritania",
    "common" "Maouritania"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/mr.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/mr.png"},
  "idd" {"suffixes" ["22"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/mr.svg",
   "alt"
   "The flag of Mauritania has a green field with a thin red horizontal band at the top and bottom of the field. At the center of the field is a five-pointed yellow star above an upward facing yellow crescent.",
   "png" "https://flagcdn.com/w320/mr.png"},
  "unMember" true,
  "name"
  {"official" "Islamic Republic of Mauritania",
   "nativeName"
   {"ara"
    {"official" "الجمهورية الإسلامية الموريتانية",
     "common" "موريتانيا"}},
   "common" "Mauritania"},
  "capitalInfo" {"latlng" [18.07 -15.97]},
  "tld" [".mr"],
  "ccn3" "478",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"ara" "Arabic"},
  "cioc" "MTN",
  "currencies" {"MRU" {"name" "Mauritanian ouguiya", "symbol" "UM"}},
  "independent" true,
  "population" 4649660,
  "cca3" "MRT",
  "borders" ["DZA" "MLI" "SEN" "ESH"],
  "capital" ["Nouakchott"],
  "car" {"signs" ["RIM"], "side" "right"},
  "timezones" ["UTC"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇲🇷",
  "gini" {"2014" 32.6},
  "fifa" "MTN",
  "cca2" "MR"}
 {"subregion" "Northern Europe",
  "landlocked" false,
  "latlng" [56.0 24.0],
  "area" 65300.0,
  "altSpellings" ["LT" "Republic of Lithuania" "Lietuvos Respublika"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/dd1s9rrLjrK2G8yY6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/72596"},
  "demonyms"
  {"eng" {"f" "Lithuanian", "m" "Lithuanian"},
   "fra" {"f" "Lituanienne", "m" "Lituanien"}},
  "translations"
  {"kor" {"official" "리투아니아 공화국", "common" "리투아니아"},
   "zho" {"official" "立陶宛共和国", "common" "立陶宛"},
   "hun" {"official" "Litván Köztársaság", "common" "Litvánia"},
   "rus" {"official" "Литовская Республика", "common" "Литва"},
   "swe" {"official" "Republiken Litauen", "common" "Litauen"},
   "ces" {"official" "Litevská republika", "common" "Litva"},
   "deu" {"official" "Republik Litauen", "common" "Litauen"},
   "ara" {"official" "جمهورية ليتوانيا", "common" "ليتوانيا"},
   "urd" {"official" "جمہوریہ لتھووینیا", "common" "لتھووینیا"},
   "srp" {"official" "Литванска Република", "common" "Литванија"},
   "tur" {"official" "Litvanya Cumhuriyeti", "common" "Litvanya"},
   "pol" {"official" "Republika Litewska", "common" "Litwa"},
   "cym" {"official" "Republic of Lithuania", "common" "Lithuania"},
   "hrv" {"official" "Republika Litva", "common" "Litva"},
   "spa" {"official" "República de Lituania", "common" "Lituania"},
   "fin" {"official" "Liettuan tasavalta", "common" "Liettua"},
   "per" {"official" "لیتوانیایی‌ها", "common" "لیتوانیایی‌ها"},
   "nld" {"official" "Republiek Litouwen", "common" "Litouwen"},
   "fra" {"official" "République de Lituanie", "common" "Lituanie"},
   "ita" {"official" "Repubblica di Lituania", "common" "Lituania"},
   "jpn" {"official" "リトアニア共和国", "common" "リトアニア"},
   "est" {"official" "Leedu Vabariik", "common" "Leedu"},
   "por" {"official" "República da Lituânia", "common" "Lituânia"},
   "slk" {"official" "Litovská republika", "common" "Litva"},
   "bre" {"official" "Republik Lituania", "common" "Lituania"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/lt.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/lt.png"},
  "idd" {"suffixes" ["70"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/lt.svg",
   "alt"
   "The flag of Lithuania is composed of three equal horizontal bands of yellow, green and red.",
   "png" "https://flagcdn.com/w320/lt.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Lithuania",
   "nativeName"
   {"lit" {"official" "Lietuvos Respublikos", "common" "Lietuva"}},
   "common" "Lithuania"},
  "postalCode" {"regex" "^(?:LT)*(\\d{5})$", "format" "LT-#####"},
  "capitalInfo" {"latlng" [54.68 25.32]},
  "tld" [".lt"],
  "ccn3" "440",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"lit" "Lithuanian"},
  "cioc" "LTU",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 2794700,
  "cca3" "LTU",
  "borders" ["BLR" "LVA" "POL" "RUS"],
  "capital" ["Vilnius"],
  "car" {"signs" ["LT"], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇱🇹",
  "gini" {"2018" 35.7},
  "fifa" "LTU",
  "cca2" "LT"}
 {"subregion" "North America",
  "landlocked" false,
  "latlng" [19.3 166.633333],
  "area" 34.2,
  "altSpellings" ["UM"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/hZKnrzgeK69dDyPF8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/6430384"},
  "demonyms"
  {"eng" {"f" "American Islander", "m" "American Islander"}},
  "translations"
  {"kor" {"official" "미국령 군소 제도", "common" "미국령 군소 제도"},
   "zho" {"official" "美国本土外小岛屿", "common" "美国本土外小岛屿"},
   "hun"
   {"official" "Az Amerikai Egyesült Államok lakatlan külbirtokai",
    "common" "Az Amerikai Egyesült Államok lakatlan külbirtokai"},
   "rus"
   {"official" "Внешние малые острова США",
    "common" "Внешние малые острова США"},
   "swe"
   {"official"
    "Förenta staternas mindre öar i Oceanien och Västindien",
    "common" "Förenta staternas mindre öar i Oceanien och Västindien"},
   "ces"
   {"official" "Menší odlehlé ostrovy Spojených států amerických",
    "common" "Menší odlehlé ostrovy USA"},
   "deu"
   {"official" "USA, kleinere ausgelagerte Inseln",
    "common" "Kleinere Inselbesitzungen der Vereinigten Staaten"},
   "ara"
   {"official" "جزر الولايات المتحدة الصغيرة النائية",
    "common" "جزر الولايات المتحدة الصغيرة النائية"},
   "urd"
   {"official" "امریکی چھوٹے بیرونی جزائر",
    "common" "امریکی چھوٹے بیرونی جزائر"},
   "srp"
   {"official" "Мала спољна острва Сједињених Америчких Држава",
    "common" "Мала спољна острва Сједињених Америчких Држава"},
   "tur"
   {"official" "Amerika Birleşik Devletleri Küçük Dış Adaları",
    "common" "Amerika Birleşik Devletleri Küçük Dış Adaları"},
   "pol"
   {"official" "Dalekie Wyspy Mniejsze Stanów Zjednoczonych",
    "common" "Dalekie Wyspy Mniejsze Stanów Zjednoczonych"},
   "cym"
   {"official" "United States Minor Outlying Islands",
    "common" "United States Minor Outlying Islands"},
   "hrv"
   {"official" "Mali udaljeni otoci SAD-a",
    "common" "Mali udaljeni otoci SAD-a"},
   "spa"
   {"official" "Estados Unidos Islas menores alejadas de",
    "common" "Islas Ultramarinas Menores de Estados Unidos"},
   "fin"
   {"official" "Yhdysvaltain asumattomat saaret",
    "common" "Yhdysvaltain asumattomat saaret"},
   "per"
   {"official" "جزایر کوچک حاشیه‌ای ایالات متحده آمریکا",
    "common" "جزایر کوچک حاشیه‌ای ایالات متحده آمریکا"},
   "nld"
   {"official" "Kleine afgelegen eilanden van de Verenigde Staten",
    "common" "Kleine afgelegen eilanden van de Verenigde Staten"},
   "fra"
   {"official" "Îles mineures éloignées des États-Unis",
    "common" "Îles mineures éloignées des États-Unis"},
   "ita"
   {"official" "Stati Uniti Isole Minori",
    "common" "Isole minori esterne degli Stati Uniti d'America"},
   "jpn" {"official" "アメリカ合衆国外諸島", "common" "合衆国領有小離島"},
   "est"
   {"official" "Ühendriikide väikesed hajasaared",
    "common" "Ühendriikide hajasaared"},
   "por"
   {"official" "Estados Unidos Ilhas Menores Distantes",
    "common" "Ilhas Menores Distantes dos Estados Unidos"},
   "slk"
   {"official" "Menšie odľahlé ostrovy Spjoených štátov",
    "common" "Menšie odľahlé ostrovy USA"},
   "bre"
   {"official" "Inizi Minor A-bell Stadoù-Unanet",
    "common" "Inizi Minor A-bell Stadoù-Unanet"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["68"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/um.svg",
   "png" "https://flagcdn.com/w320/um.png"},
  "unMember" false,
  "name"
  {"official" "United States Minor Outlying Islands",
   "nativeName"
   {"eng"
    {"official" "United States Minor Outlying Islands",
     "common" "United States Minor Outlying Islands"}},
   "common" "United States Minor Outlying Islands"},
  "capitalInfo" {},
  "tld" [".us"],
  "ccn3" "581",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" false,
  "population" 300,
  "cca3" "UMI",
  "capital" ["Washington DC"],
  "car" {"signs" [""], "side" "right"},
  "timezones" ["UTC-11:00" "UTC-10:00" "UTC+12:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇺🇲",
  "cca2" "UM"}
 {"subregion" "Central Europe",
  "landlocked" true,
  "latlng" [48.66666666 19.5],
  "area" 49037.0,
  "altSpellings" ["SK" "Slovak Republic" "Slovenská republika"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/uNSH2wW4bLoZVYJj7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/14296"},
  "demonyms"
  {"eng" {"f" "Slovak", "m" "Slovak"},
   "fra" {"f" "Slovaque", "m" "Slovaque"}},
  "translations"
  {"kor" {"official" "슬로바키아 공화국", "common" "슬로바키아"},
   "zho" {"official" "斯洛伐克共和国", "common" "斯洛伐克"},
   "hun" {"official" "Szlovák Köztársaság", "common" "Szlovákia"},
   "rus" {"official" "Словацкая Республика", "common" "Словакия"},
   "swe" {"official" "Republiken Slovakien", "common" "Slovakien"},
   "ces" {"official" "Slovenská republika", "common" "Slovensko"},
   "deu" {"official" "Slowakische Republik", "common" "Slowakei"},
   "ara" {"official" "جمهورية سلوفاكيا", "common" "سلوفاكيا"},
   "urd" {"official" "جمہوریہ سلوواکیہ", "common" "سلوواکیہ"},
   "srp" {"official" "Словачка Република", "common" "Словачка"},
   "tur" {"official" "Slovak Cumhuriyeti", "common" "Slovakya"},
   "pol" {"official" "Republika Słowacka", "common" "Słowacja"},
   "cym" {"official" "Slovak Republic", "common" "Slovakia"},
   "hrv" {"official" "slovačka", "common" "Slovačka"},
   "spa"
   {"official" "República Eslovaca", "common" "República Eslovaca"},
   "fin" {"official" "Slovakian tasavalta", "common" "Slovakia"},
   "per" {"official" "جمهوری اسلواکی", "common" "اِسلُواکی"},
   "nld" {"official" "Slowaakse Republiek", "common" "Slowakije"},
   "fra" {"official" "République slovaque", "common" "Slovaquie"},
   "ita" {"official" "Repubblica slovacca", "common" "Slovacchia"},
   "jpn" {"official" "スロバキア共和国", "common" "スロバキア"},
   "est" {"official" "Slovaki Vabariik", "common" "Slovakkia"},
   "por" {"official" "República Eslovaca", "common" "Eslováquia"},
   "slk" {"official" "Slovenská republika", "common" "Slovensko"},
   "bre" {"official" "Republik Slovak", "common" "Slovakia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/sk.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/sk.png"},
  "idd" {"suffixes" ["21"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/sk.svg",
   "alt"
   "The flag of Slovakia is composed of three equal horizontal bands of white, blue and red. The coat of arms of Slovakia is superimposed at the center of the field slightly towards the hoist side.",
   "png" "https://flagcdn.com/w320/sk.png"},
  "unMember" true,
  "name"
  {"official" "Slovak Republic",
   "nativeName"
   {"slk" {"official" "Slovenská republika", "common" "Slovensko"}},
   "common" "Slovakia"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "###  ##"},
  "capitalInfo" {"latlng" [48.15 17.12]},
  "tld" [".sk"],
  "ccn3" "703",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"slk" "Slovak"},
  "cioc" "SVK",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 5458827,
  "cca3" "SVK",
  "borders" ["AUT" "CZE" "HUN" "POL" "UKR"],
  "capital" ["Bratislava"],
  "car" {"signs" ["SK"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇸🇰",
  "gini" {"2018" 25.0},
  "fifa" "SVK",
  "cca2" "SK"}
 {"subregion" "Middle Africa",
  "landlocked" false,
  "latlng" [-12.5 18.5],
  "area" 1246700.0,
  "altSpellings" ["AO" "República de Angola" "ʁɛpublika de an'ɡɔla"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/q42Qbf1BmQL3fuZg9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/195267"},
  "demonyms"
  {"eng" {"f" "Angolan", "m" "Angolan"},
   "fra" {"f" "Angolaise", "m" "Angolais"}},
  "translations"
  {"kor" {"official" "앙골라 공화국", "common" "앙골라"},
   "zho" {"official" "安哥拉共和国", "common" "安哥拉"},
   "hun" {"official" "Angola", "common" "Angola"},
   "rus" {"official" "Республика Ангола", "common" "Ангола"},
   "swe" {"official" "Republiken Angola", "common" "Angola"},
   "ces" {"official" "Angolská republika", "common" "Angola"},
   "deu" {"official" "Republik Angola", "common" "Angola"},
   "ara" {"official" "أنغولا", "common" "جمهورية أنغولا"},
   "urd" {"official" "جمہوریہ انگولہ", "common" "انگولہ"},
   "srp" {"official" "Република Ангола", "common" "Ангола"},
   "tur" {"official" "Angola Cumhuriyeti", "common" "Angola"},
   "pol" {"official" "Republika Angoli", "common" "Angola"},
   "cym" {"official" "Gweriniaeth Angola", "common" "Angola"},
   "hrv" {"official" "Republika Angola", "common" "Angola"},
   "spa" {"official" "República de Angola", "common" "Angola"},
   "fin" {"official" "Angolan tasavalta", "common" "Angola"},
   "per" {"official" "جمهوری آنگولا", "common" "آنگولا"},
   "nld" {"official" "Republiek Angola", "common" "Angola"},
   "fra" {"official" "République d'Angola", "common" "Angola"},
   "ita" {"official" "Repubblica dell'Angola", "common" "Angola"},
   "jpn" {"official" "アンゴラ共和国", "common" "アンゴラ"},
   "est" {"official" "Angola Vabariik", "common" "Angola"},
   "por" {"official" "República de Angola", "common" "Angola"},
   "slk" {"official" "Angolská republika", "common" "Angola"},
   "bre" {"official" "Republik Angola", "common" "Angola"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ao.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ao.png"},
  "idd" {"suffixes" ["44"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/ao.svg",
   "alt"
   "The flag of Angola features two equal horizontal bands of red and black, with a yellow emblem at its centre. This emblem consists of a five-pointed star within the hoist-side facing half of a cogwheel that is crossed on its lower end by a machete.",
   "png" "https://flagcdn.com/w320/ao.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Angola",
   "nativeName"
   {"por" {"official" "República de Angola", "common" "Angola"}},
   "common" "Angola"},
  "capitalInfo" {"latlng" [-8.83 13.22]},
  "tld" [".ao"],
  "ccn3" "024",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"por" "Portuguese"},
  "cioc" "ANG",
  "currencies" {"AOA" {"name" "Angolan kwanza", "symbol" "Kz"}},
  "independent" true,
  "population" 32866268,
  "cca3" "AGO",
  "borders" ["COG" "COD" "ZMB" "NAM"],
  "capital" ["Luanda"],
  "car" {"signs" ["ANG"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇦🇴",
  "gini" {"2018" 51.3},
  "fifa" "ANG",
  "cca2" "AO"}
 {"subregion" "Central Asia",
  "landlocked" true,
  "latlng" [48.0196 66.9237],
  "area" 2724900.0,
  "altSpellings"
  ["KZ"
   "Qazaqstan"
   "Казахстан"
   "Republic of Kazakhstan"
   "Қазақстан Республикасы"
   "Qazaqstan Respublïkası"
   "Республика Казахстан"
   "Respublika Kazakhstan"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/8VohJGu7ShuzZYyeA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/214665"},
  "demonyms"
  {"eng" {"f" "Kazakhstani", "m" "Kazakhstani"},
   "fra" {"f" "Kazakhstanaise", "m" "Kazakhstanais"}},
  "translations"
  {"kor" {"official" "카자흐스탄 공화국", "common" "카자흐스탄"},
   "zho" {"official" "哈萨克斯坦共和国", "common" "哈萨克斯坦"},
   "hun" {"official" "Kazah Köztársaság", "common" "Kazahsztán"},
   "rus" {"official" "Республика Казахстан", "common" "Казахстан"},
   "swe" {"official" "Republiken Kazakstan", "common" "Kazakstan"},
   "ces" {"official" "Republika Kazachstán", "common" "Kazachstán"},
   "deu" {"official" "Republik Kasachstan", "common" "Kasachstan"},
   "ara" {"official" "جمهورية كازاخستان", "common" "كازاخستان"},
   "urd" {"official" "جمہوریہ قازقستان", "common" "قازقستان"},
   "srp" {"official" "Република Казахстан", "common" "Казахстан"},
   "tur" {"official" "Kazakistan Cumhuriyeti", "common" "Kazakistan"},
   "pol" {"official" "Republika Kazachstanu", "common" "Kazachstan"},
   "cym" {"official" "Republic of Kazakhstan", "common" "Kazakhstan"},
   "hrv" {"official" "Republika Kazahstan", "common" "Kazahstan"},
   "spa" {"official" "República de Kazajstán", "common" "Kazajistán"},
   "fin" {"official" "Kazakstanin tasavalta", "common" "Kazakstan"},
   "per" {"official" "جمهوری قزاقستان", "common" "قزاقستان"},
   "nld" {"official" "Republiek Kazachstan", "common" "Kazachstan"},
   "fra"
   {"official" "République du Kazakhstan", "common" "Kazakhstan"},
   "ita"
   {"official" "Repubblica del Kazakhstan", "common" "Kazakistan"},
   "jpn" {"official" "カザフスタン共和国", "common" "カザフスタン"},
   "est" {"official" "Kasahstani Vabariik", "common" "Kasahstan"},
   "por"
   {"official" "República do Cazaquistão", "common" "Cazaquistão"},
   "slk" {"official" "Kazašská republika", "common" "Kazachstan"},
   "bre" {"official" "Republik Kazakstan", "common" "Kazakstan"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/kz.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/kz.png"},
  "idd" {"suffixes" ["6" "7"], "root" "+7"},
  "flags"
  {"svg" "https://flagcdn.com/kz.svg",
   "alt"
   "The flag of Kazakhstan has a turquoise field, at the center of which is a gold sun with thirty-two rays above a soaring golden steppe eagle. A thin vertical band displays a national ornamental pattern — koshkar-muiz — in gold near the hoist end.",
   "png" "https://flagcdn.com/w320/kz.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Kazakhstan",
   "nativeName"
   {"rus" {"official" "Республика Казахстан", "common" "Казахстан"},
    "kaz" {"official" "Қазақстан Республикасы", "common" "Қазақстан"}},
   "common" "Kazakhstan"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "######"},
  "capitalInfo" {"latlng" [51.16 71.45]},
  "tld" [".kz" ".қаз"],
  "ccn3" "398",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"rus" "Russian", "kaz" "Kazakh"},
  "cioc" "KAZ",
  "currencies" {"KZT" {"name" "Kazakhstani tenge", "symbol" "₸"}},
  "independent" true,
  "population" 18754440,
  "cca3" "KAZ",
  "borders" ["CHN" "KGZ" "RUS" "TKM" "UZB"],
  "capital" ["Nur-Sultan"],
  "car" {"signs" ["KZ"], "side" "right"},
  "timezones" ["UTC+05:00" "UTC+06:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇰🇿",
  "gini" {"2018" 27.8},
  "fifa" "KAZ",
  "cca2" "KZ"}
 {"subregion" "Eastern Europe",
  "landlocked" true,
  "latlng" [47.0 29.0],
  "area" 33846.0,
  "altSpellings"
  ["MD"
   "Moldova, Republic of"
   "Republic of Moldova"
   "Republica Moldova"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/JjmyUuULujnDeFPf7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/58974"},
  "demonyms"
  {"eng" {"f" "Moldovan", "m" "Moldovan"},
   "fra" {"f" "Moldave", "m" "Moldave"}},
  "translations"
  {"kor" {"official" "몰도바 공화국", "common" "몰도바"},
   "zho" {"official" "摩尔多瓦共和国", "common" "摩尔多瓦"},
   "hun" {"official" "Moldovai Köztársaság", "common" "Moldova"},
   "rus" {"official" "Молдова", "common" "Молдавия"},
   "swe" {"official" "Republiken Moldavien", "common" "Moldavien"},
   "ces" {"official" "Moldavská republika", "common" "Moldavsko"},
   "deu" {"official" "Republik Moldau", "common" "Moldawien"},
   "ara" {"official" "جمهورية مولدوڤا", "common" "مولدوڤا"},
   "urd" {"official" "جمہوریہ مالدووا", "common" "مالدووا"},
   "srp" {"official" "Република Молдавија", "common" "Молдавија"},
   "tur" {"official" "Moldova Cumhuriyeti", "common" "Moldova"},
   "pol" {"official" "Republika Mołdawii", "common" "Mołdawia"},
   "cym" {"official" "Republic of Moldova", "common" "Moldova"},
   "hrv" {"official" "Moldavija", "common" "Moldova"},
   "spa" {"official" "República de Moldova", "common" "Moldavia"},
   "fin" {"official" "Moldovan tasavalta", "common" "Moldova"},
   "per" {"official" "جمهوری مولداوی", "common" "مولداوی"},
   "nld" {"official" "Republiek Moldavië", "common" "Moldavië"},
   "fra" {"official" "République de Moldavie", "common" "Moldavie"},
   "ita" {"official" "Repubblica di Moldova", "common" "Moldavia"},
   "jpn" {"official" "モルドバ共和国", "common" "モルドバ共和国"},
   "est" {"official" "Moldova Vabariik", "common" "Moldova"},
   "por" {"official" "República da Moldávia", "common" "Moldávia"},
   "slk" {"official" "Moldavská republika", "common" "Moldavsko"},
   "bre" {"official" "Republik Moldova", "common" "Moldova"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/md.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/md.png"},
  "idd" {"suffixes" ["73"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/md.svg",
   "alt"
   "The flag of Moldova is composed of three equal vertical bands of blue, yellow and red, with the national coat of arms centered in the yellow band.",
   "png" "https://flagcdn.com/w320/md.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Moldova",
   "nativeName"
   {"ron" {"official" "Republica Moldova", "common" "Moldova"}},
   "common" "Moldova"},
  "postalCode" {"regex" "^(?:MD)*(\\d{4})$", "format" "MD-####"},
  "capitalInfo" {"latlng" [47.01 28.9]},
  "tld" [".md"],
  "ccn3" "498",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"ron" "Romanian"},
  "cioc" "MDA",
  "currencies" {"MDL" {"name" "Moldovan leu", "symbol" "L"}},
  "independent" true,
  "population" 2617820,
  "cca3" "MDA",
  "borders" ["ROU" "UKR"],
  "capital" ["Chișinău"],
  "car" {"signs" ["MD"], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇲🇩",
  "gini" {"2018" 25.7},
  "fifa" "MDA",
  "cca2" "MD"}
 {"subregion" "Western Africa",
  "landlocked" true,
  "latlng" [17.0 -4.0],
  "area" 1240192.0,
  "altSpellings" ["ML" "Republic of Mali" "République du Mali"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/u9mYJkCB19wyuzh27",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192785"},
  "demonyms"
  {"eng" {"f" "Malian", "m" "Malian"},
   "fra" {"f" "Malienne", "m" "Malien"}},
  "translations"
  {"kor" {"official" "말리 공화국", "common" "말리"},
   "zho" {"official" "马里共和国", "common" "马里"},
   "hun" {"official" "Mali Köztársaság", "common" "Mali"},
   "rus" {"official" "Республика Мали", "common" "Мали"},
   "swe" {"official" "Republiken Mali", "common" "Mali"},
   "ces" {"official" "Republika Mali", "common" "Mali"},
   "deu" {"official" "Republik Mali", "common" "Mali"},
   "ara" {"official" "جمهورية مالي", "common" "مالي"},
   "urd" {"official" "جمہوریہ مالی", "common" "مالی"},
   "srp" {"official" "Република Мали", "common" "Мали"},
   "tur" {"official" "Mali Cumhuriyeti", "common" "Mali"},
   "pol" {"official" "Republika Mali", "common" "Mali"},
   "cym" {"official" "Republic of Mali", "common" "Mali"},
   "hrv" {"official" "Republika Mali", "common" "Mali"},
   "spa" {"official" "República de Malí", "common" "Mali"},
   "fin" {"official" "Malin tasavalta", "common" "Mali"},
   "per" {"official" "جمهوری مالی", "common" "مالی"},
   "nld" {"official" "Republiek Mali", "common" "Mali"},
   "fra" {"official" "République du Mali", "common" "Mali"},
   "ita" {"official" "Repubblica del Mali", "common" "Mali"},
   "jpn" {"official" "マリ共和国", "common" "マリ"},
   "est" {"official" "Mali Vabariik", "common" "Mali"},
   "por" {"official" "República do Mali", "common" "Mali"},
   "slk" {"official" "Malijská republika", "common" "Mali"},
   "bre" {"official" "Republik Mali", "common" "Mali"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ml.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ml.png"},
  "idd" {"suffixes" ["23"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/ml.svg",
   "alt"
   "The flag of Mali is composed of three equal vertical bands of green, yellow and red.",
   "png" "https://flagcdn.com/w320/ml.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Mali",
   "nativeName"
   {"fra" {"official" "République du Mali", "common" "Mali"}},
   "common" "Mali"},
  "capitalInfo" {"latlng" [12.65 -8.0]},
  "tld" [".ml"],
  "ccn3" "466",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"fra" "French"},
  "cioc" "MLI",
  "currencies"
  {"XOF" {"name" "West African CFA franc", "symbol" "Fr"}},
  "independent" true,
  "population" 20250834,
  "cca3" "MLI",
  "borders" ["DZA" "BFA" "GIN" "CIV" "MRT" "NER" "SEN"],
  "capital" ["Bamako"],
  "car" {"signs" ["RMM"], "side" "right"},
  "timezones" ["UTC"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇲🇱",
  "gini" {"2009" 33.0},
  "fifa" "MLI",
  "cca2" "ML"}
 {"subregion" "South America",
  "landlocked" false,
  "latlng" [-51.75 -59.0],
  "area" 12173.0,
  "altSpellings" ["FK" "Islas Malvinas" "Falkland Islands (Malvinas)"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/TZH1x7AGanQKifNk7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2185374"},
  "demonyms"
  {"eng" {"f" "Falkland Islander", "m" "Falkland Islander"},
   "fra" {"f" "Malouinne", "m" "Malouin"}},
  "translations"
  {"kor" {"official" "포클랜드 제도", "common" "포클랜드 제도"},
   "zho" {"official" "福克兰群岛", "common" "福克兰群岛"},
   "hun"
   {"official" "Falkland-szigetek", "common" "Falkland-szigetek"},
   "rus"
   {"official" "Фолклендские острова",
    "common" "Фолклендские острова"},
   "swe" {"official" "Falklandsöarna", "common" "Falklandsöarna"},
   "ces" {"official" "Falklandské ostrovy", "common" "Falklandy"},
   "deu" {"official" "Falklandinseln", "common" "Falklandinseln"},
   "ara" {"official" "جزر فوكلاند", "common" "جزر فوكلاند"},
   "urd" {"official" "جزائر فاکلینڈ", "common" "جزائر فاکلینڈ"},
   "srp" {"official" "Фолкландска Острва", "common" "Фолкланди"},
   "tur"
   {"official" "Falkland (Malvina) Adaları",
    "common" "Falkland (Malvina) Adaları"},
   "pol" {"official" "Falklandy", "common" "Falklandy"},
   "cym" {"official" "Falkland Islands", "common" "Falkland Islands"},
   "hrv"
   {"official" "Falklandski otoci", "common" "Falklandski Otoci"},
   "spa" {"official" "islas Malvinas", "common" "Islas Malvinas"},
   "fin" {"official" "Falkandinsaaret", "common" "Falkandinsaaret"},
   "per" {"official" "جزایر فالکلند", "common" "جزایر فالکلند"},
   "nld" {"official" "Falkland eilanden", "common" "Falklandeilanden"},
   "fra" {"official" "Îles Malouines", "common" "Îles Malouines"},
   "ita"
   {"official" "Isole Falkland",
    "common" "Isole Falkland o Isole Malvine"},
   "jpn" {"official" "フォークランド", "common" "フォークランド(マルビナス)諸島"},
   "est" {"official" "Falklandi saared", "common" "Falklandi saared"},
   "por" {"official" "Ilhas Malvinas", "common" "Ilhas Malvinas"},
   "slk" {"official" "Falklandské ostrovy", "common" "Falklandy"},
   "bre" {"official" "Inizi Maloù", "common" "Inizi Maloù"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/fk.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/fk.png"},
  "idd" {"suffixes" ["00"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/fk.svg",
   "png" "https://flagcdn.com/w320/fk.png"},
  "unMember" false,
  "name"
  {"official" "Falkland Islands",
   "nativeName"
   {"eng"
    {"official" "Falkland Islands", "common" "Falkland Islands"}},
   "common" "Falkland Islands"},
  "capitalInfo" {"latlng" [-51.7 -57.85]},
  "tld" [".fk"],
  "ccn3" "238",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "currencies" {"FKP" {"name" "Falkland Islands pound", "symbol" "£"}},
  "independent" false,
  "population" 2563,
  "cca3" "FLK",
  "capital" ["Stanley"],
  "car" {"signs" ["GB"], "side" "left"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["South America"],
  "flag" "🇫🇰",
  "cca2" "FK"}
 {"subregion" "Western Asia",
  "landlocked" true,
  "latlng" [40.0 45.0],
  "area" 29743.0,
  "altSpellings"
  ["AM" "Hayastan" "Republic of Armenia" "Հայաստանի Հանրապետություն"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/azWUtK9bUQYEyccbA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/364066"},
  "demonyms"
  {"eng" {"f" "Armenian", "m" "Armenian"},
   "fra" {"f" "Arménienne", "m" "Arménien"}},
  "translations"
  {"kor" {"official" "아르메니아 공화국", "common" "아르메니아"},
   "zho" {"official" "亚美尼亚共和国", "common" "亚美尼亚"},
   "hun" {"official" "Örményország", "common" "Örményország"},
   "rus" {"official" "Республика Армения", "common" "Армения"},
   "swe" {"official" "Republiken Armenien", "common" "Armenien"},
   "ces" {"official" "Arménská republika", "common" "Arménie"},
   "deu" {"official" "Republik Armenien", "common" "Armenien"},
   "ara" {"official" "جمهورية أرمينيا", "common" "أرمينيا"},
   "urd" {"official" "جمہوریہ آرمینیا", "common" "آرمینیا"},
   "srp" {"official" "Република Јерменија", "common" "Јерменија"},
   "tur" {"official" "Ermenistan Cumhuriyeti", "common" "Ermenistan"},
   "pol" {"official" "Republika Armenii", "common" "Armenia"},
   "cym" {"official" "Gweriniaeth Armenia", "common" "Armenia"},
   "hrv" {"official" "Republika Armenija", "common" "Armenija"},
   "spa" {"official" "República de Armenia", "common" "Armenia"},
   "fin" {"official" "Armenian tasavalta", "common" "Armenia"},
   "per" {"official" "جمهوری ارمنستان", "common" "ارمنستان"},
   "nld" {"official" "Republiek Armenië", "common" "Armenië"},
   "fra" {"official" "République d'Arménie", "common" "Arménie"},
   "ita" {"official" "Repubblica di Armenia", "common" "Armenia"},
   "jpn" {"official" "アルメニア共和国", "common" "アルメニア"},
   "est" {"official" "Armeenia Vabariik", "common" "Armeenia"},
   "por" {"official" "República da Arménia", "common" "Arménia"},
   "slk" {"official" "Arménska republika", "common" "Arménsko"},
   "bre" {"official" "Republik Armenia", "common" "Armenia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/am.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/am.png"},
  "idd" {"suffixes" ["74"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/am.svg",
   "alt"
   "The flag of Armenia is composed of three equal horizontal bands of red, blue and orange.",
   "png" "https://flagcdn.com/w320/am.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Armenia",
   "nativeName"
   {"hye"
    {"official" "Հայաստանի Հանրապետություն", "common" "Հայաստան"}},
   "common" "Armenia"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "######"},
  "capitalInfo" {"latlng" [40.17 44.5]},
  "tld" [".am"],
  "ccn3" "051",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"hye" "Armenian"},
  "cioc" "ARM",
  "currencies" {"AMD" {"name" "Armenian dram", "symbol" "֏"}},
  "independent" true,
  "population" 2963234,
  "cca3" "ARM",
  "borders" ["AZE" "GEO" "IRN" "TUR"],
  "capital" ["Yerevan"],
  "car" {"signs" ["AM"], "side" "right"},
  "timezones" ["UTC+04:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇦🇲",
  "gini" {"2019" 29.9},
  "fifa" "ARM",
  "cca2" "AM"}
 {"subregion" "Polynesia",
  "landlocked" false,
  "latlng" [-13.58333333 -172.33333333],
  "area" 2842.0,
  "altSpellings"
  ["WS"
   "Independent State of Samoa"
   "Malo Saʻoloto Tutoʻatasi o Sāmoa"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/CFC9fEFP9cfkYUBF9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1872673"},
  "demonyms"
  {"eng" {"f" "Samoan", "m" "Samoan"},
   "fra" {"f" "Samoane", "m" "Samoan"}},
  "translations"
  {"kor" {"official" "사모아 독립국", "common" "사모아"},
   "zho" {"official" "萨摩亚独立国", "common" "萨摩亚"},
   "hun" {"official" "Szamoai Független Állam", "common" "Szamoa"},
   "rus"
   {"official" "Независимое Государство Самоа", "common" "Самоа"},
   "swe" {"official" "Självständiga staten Samoa", "common" "Samoa"},
   "ces" {"official" "Nezávislý stát Samoa", "common" "Samoa"},
   "deu" {"official" "Unabhängige Staat Samoa", "common" "Samoa"},
   "ara" {"official" "دولة ساموا المستقلة", "common" "ساموا"},
   "urd" {"official" "آزاد سلطنتِ ساموا", "common" "سامووا"},
   "srp" {"official" "Независна Држава Самоа", "common" "Самоа"},
   "tur"
   {"official" "Bağımsız Samoa Devleti",
    "common" "Bağımsız Samoa Devleti"},
   "pol" {"official" "Niezależne Państwo Samoa", "common" "Samoa"},
   "cym" {"official" "Independent State of Samoa", "common" "Samoa"},
   "hrv" {"official" "Nezavisna Država Samoa", "common" "Samoa"},
   "spa"
   {"official" "Estado Independiente de Samoa", "common" "Samoa"},
   "fin" {"official" "Samoan itsenäinen valtio", "common" "Samoa"},
   "per" {"official" "ایالت مستقل ساموآ", "common" "ساموآ"},
   "nld" {"official" "Onafhankelijke Staat Samoa", "common" "Samoa"},
   "fra" {"official" "Samoa", "common" "Samoa"},
   "ita" {"official" "Stato indipendente di Samoa", "common" "Samoa"},
   "jpn" {"official" "サモア独立国", "common" "サモア"},
   "est" {"official" "Samoa Iseseisvusriik", "common" "Samoa"},
   "por" {"official" "Estado Independente de Samoa", "common" "Samoa"},
   "slk" {"official" "Nezávislý štátSamoa", "common" "Samoa"},
   "bre" {"official" "Stad Dizalc'h Samoa", "common" "Samoa"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ws.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ws.png"},
  "idd" {"suffixes" ["85"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/ws.svg",
   "alt"
   "The flag of Samoa has a red field. A blue rectangle, bearing a representation of the Southern Cross made up of five large and one smaller five-pointed white stars, is superimposed in the canton.",
   "png" "https://flagcdn.com/w320/ws.png"},
  "unMember" true,
  "name"
  {"official" "Independent State of Samoa",
   "nativeName"
   {"eng" {"official" "Independent State of Samoa", "common" "Samoa"},
    "smo"
    {"official" "Malo Saʻoloto Tutoʻatasi o Sāmoa", "common" "Sāmoa"}},
   "common" "Samoa"},
  "capitalInfo" {"latlng" [-13.82 -171.77]},
  "tld" [".ws"],
  "ccn3" "882",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"eng" "English", "smo" "Samoan"},
  "cioc" "SAM",
  "currencies" {"WST" {"name" "Samoan tālā", "symbol" "T"}},
  "independent" true,
  "population" 198410,
  "cca3" "WSM",
  "capital" ["Apia"],
  "car" {"signs" ["WS"], "side" "left"},
  "timezones" ["UTC+13:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇼🇸",
  "gini" {"2013" 38.7},
  "fifa" "SAM",
  "cca2" "WS"}
 {"subregion" "Northern Europe",
  "landlocked" false,
  "latlng" [49.25 -2.16666666],
  "area" 116.0,
  "altSpellings"
  ["JE"
   "Bailiwick of Jersey"
   "Bailliage de Jersey"
   "Bailliage dé Jèrri"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/rXG8GZZtsqK92kTCA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/367988"},
  "demonyms"
  {"eng" {"f" "Channel Islander", "m" "Channel Islander"},
   "fra" {"f" "Jersiaise", "m" "Jersiais"}},
  "translations"
  {"kor" {"official" "저지 섬", "common" "저지 섬"},
   "zho" {"official" "泽西岛", "common" "泽西岛"},
   "hun" {"official" "Jersey", "common" "Jersey"},
   "rus" {"official" "Коронное владение Джерси", "common" "Джерси"},
   "swe" {"official" "Jersey", "common" "Jersey"},
   "ces" {"official" "Rychtářství Jersey", "common" "Jersey"},
   "deu" {"official" "Vogtei Jersey", "common" "Jersey"},
   "ara" {"official" "جيرزي", "common" "جيرزي"},
   "urd" {"official" "جرزی", "common" "جرزی"},
   "srp" {"official" "Џерзи", "common" "Џерзи"},
   "tur" {"official" "Jersey", "common" "Jersey"},
   "pol" {"official" "Jersey", "common" "Jersey"},
   "cym" {"official" "Bailiwick of Jersey", "common" "Jersey"},
   "hrv" {"official" "Struka od Jersey", "common" "Jersey"},
   "spa" {"official" "Bailía de Jersey", "common" "Jersey"},
   "fin" {"official" "Jersey", "common" "Jersey"},
   "per" {"official" "جرزی", "common" "جرزی"},
   "nld" {"official" "Baljuwschap Jersey", "common" "Jersey"},
   "fra" {"official" "Bailliage de Jersey", "common" "Jersey"},
   "ita" {"official" "Baliato di Jersey", "common" "Isola di Jersey"},
   "jpn" {"official" "ジャージの得意分野", "common" "ジャージー"},
   "est" {"official" "Jersey foogtkond", "common" "Jersey"},
   "por" {"official" "Bailiado de Jersey", "common" "Jersey"},
   "slk" {"official" "Bailiwick Jersey", "common" "Jersey"},
   "bre" {"official" "Jerzenez", "common" "Jerzenez"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/je.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/je.png"},
  "idd" {"suffixes" ["4"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/je.svg",
   "png" "https://flagcdn.com/w320/je.png"},
  "unMember" false,
  "name"
  {"official" "Bailiwick of Jersey",
   "nativeName"
   {"nrf" {"official" "Bailliage dé Jèrri", "common" "Jèrri"},
    "eng" {"official" "Bailiwick of Jersey", "common" "Jersey"},
    "fra" {"official" "Bailliage de Jersey", "common" "Jersey"}},
   "common" "Jersey"},
  "postalCode"
  {"regex"
   "^(([A-Z]\\d{2}[A-Z]{2})|([A-Z]\\d{3}[A-Z]{2})|([A-Z]{2}\\d{2}[A-Z]{2})|([A-Z]{2}\\d{3}[A-Z]{2})|([A-Z]\\d[A-Z]\\d[A-Z]{2})|([A-Z]{2}\\d[A-Z]\\d[A-Z]{2})|(GIR0AA))$",
   "format" "@# #@@|@## #@@|@@# #@@|@@## #@@|@#@ #@@|@@#@ #@@|GIR0AA"},
  "capitalInfo" {"latlng" [49.18 -2.1]},
  "tld" [".je"],
  "ccn3" "832",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"nrf" "Jèrriais", "eng" "English", "fra" "French"},
  "currencies"
  {"JEP" {"name" "Jersey pound", "symbol" "£"},
   "GBP" {"name" "British pound", "symbol" "£"}},
  "independent" false,
  "population" 100800,
  "cca3" "JEY",
  "capital" ["Saint Helier"],
  "car" {"signs" ["GBJ"], "side" "left"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇯🇪",
  "cca2" "JE"}
 {"subregion" "Eastern Asia",
  "landlocked" false,
  "latlng" [36.0 138.0],
  "area" 377930.0,
  "altSpellings" ["JP" "Nippon" "Nihon"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/NGTLSCSrA8bMrvnX9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/382313"},
  "demonyms"
  {"eng" {"f" "Japanese", "m" "Japanese"},
   "fra" {"f" "Japonaise", "m" "Japonais"}},
  "translations"
  {"kor" {"official" "일본국", "common" "일본"},
   "zho" {"official" "日本国", "common" "日本"},
   "hun" {"official" "Japán", "common" "Japán"},
   "rus" {"official" "Япония", "common" "Япония"},
   "swe" {"official" "Japan", "common" "Japan"},
   "ces" {"official" "Japonsko", "common" "Japonsko"},
   "deu" {"official" "Japan", "common" "Japan"},
   "ara" {"official" "اليابان", "common" "اليابان"},
   "urd" {"official" "جاپان", "common" "جاپان"},
   "srp" {"official" "Јапан", "common" "Јапан"},
   "tur" {"official" "Japonya", "common" "Japonya"},
   "pol" {"official" "Japonia", "common" "Japonia"},
   "cym" {"official" "Japan", "common" "Japan"},
   "hrv" {"official" "Japan", "common" "Japan"},
   "spa" {"official" "Japón", "common" "Japón"},
   "fin" {"official" "Japani", "common" "Japani"},
   "per" {"official" "ژاپن", "common" "ژاپن"},
   "nld" {"official" "Japan", "common" "Japan"},
   "fra" {"official" "Japon", "common" "Japon"},
   "ita" {"official" "Giappone", "common" "Giappone"},
   "jpn" {"official" "日本", "common" "日本"},
   "est" {"official" "Jaapan", "common" "Jaapan"},
   "por" {"official" "Japão", "common" "Japão"},
   "slk" {"official" "Japonsko", "common" "Japonsko"},
   "bre" {"official" "Japan", "common" "Japan"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/jp.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/jp.png"},
  "idd" {"suffixes" ["1"], "root" "+8"},
  "flags"
  {"svg" "https://flagcdn.com/jp.svg",
   "alt"
   "The flag of Japan features a crimson-red circle at the center of a white field.",
   "png" "https://flagcdn.com/w320/jp.png"},
  "unMember" true,
  "name"
  {"official" "Japan",
   "nativeName" {"jpn" {"official" "日本", "common" "日本"}},
   "common" "Japan"},
  "postalCode" {"regex" "^(\\d{7})$", "format" "###-####"},
  "capitalInfo" {"latlng" [35.68 139.75]},
  "tld" [".jp" ".みんな"],
  "ccn3" "392",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"jpn" "Japanese"},
  "cioc" "JPN",
  "currencies" {"JPY" {"name" "Japanese yen", "symbol" "¥"}},
  "independent" true,
  "population" 125836021,
  "cca3" "JPN",
  "capital" ["Tokyo"],
  "car" {"signs" ["J"], "side" "left"},
  "timezones" ["UTC+09:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇯🇵",
  "gini" {"2013" 32.9},
  "fifa" "JPN",
  "cca2" "JP"}
 {"subregion" "South America",
  "landlocked" true,
  "latlng" [-17.0 -65.0],
  "area" 1098581.0,
  "altSpellings"
  ["BO"
   "Buliwya"
   "Wuliwya"
   "Bolivia, Plurinational State of"
   "Plurinational State of Bolivia"
   "Estado Plurinacional de Bolivia"
   "Buliwya Mamallaqta"
   "Wuliwya Suyu"
   "Tetã Volívia"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/9DfnyfbxNM2g5U9b9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/252645"},
  "demonyms"
  {"eng" {"f" "Bolivian", "m" "Bolivian"},
   "fra" {"f" "Bolivienne", "m" "Bolivien"}},
  "translations"
  {"kor" {"official" "볼리비아 다민족국", "common" "볼리비아"},
   "zho" {"official" "多民族玻利维亚国", "common" "玻利维亚"},
   "hun"
   {"official" "Bolíviai Többnemzetiségű Állam", "common" "Bolívia"},
   "rus"
   {"official" "Многонациональное Государство Боливия",
    "common" "Боливия"},
   "swe"
   {"official" "Mångnationella staten Bolivia", "common" "Bolivia"},
   "ces"
   {"official" "Mnohonárodnostní stát Bolívie", "common" "Bolívie"},
   "deu"
   {"official" "Plurinationaler Staat Bolivien", "common" "Bolivien"},
   "ara"
   {"official" "دولة بوليفيا المتعددة القوميات", "common" "بوليفيا"},
   "urd" {"official" "جمہوریہ بولیویا", "common" "بولیویا"},
   "srp"
   {"official" "Вишенационална Држава Боливија", "common" "Боливија"},
   "tur" {"official" "Bolivya Çokuluslu Devleti", "common" "Bolivya"},
   "pol"
   {"official" "Wielonarodowe Państwo Boliwia", "common" "Boliwia"},
   "cym" {"official" "Gweriniaeth Bolifia", "common" "Bolifia"},
   "hrv"
   {"official" "Plurinational State of Bolivia", "common" "Bolivija"},
   "spa"
   {"official" "Estado Plurinacional de Bolivia", "common" "Bolivia"},
   "fin"
   {"official" "Bolivian monikansainen valtio", "common" "Bolivia"},
   "per" {"official" "جمهوری بولیوی", "common" "بولیوی"},
   "nld"
   {"official" "Plurinationale Staat van Bolivia", "common" "Bolivia"},
   "fra"
   {"official" "État plurinational de Bolivie", "common" "Bolivie"},
   "ita"
   {"official" "Stato Plurinazionale della Bolivia",
    "common" "Bolivia"},
   "jpn" {"official" "ボリビアの多民族国", "common" "ボリビア多民族国"},
   "est"
   {"official" "Boliivia Paljurahvuseline Riik", "common" "Boliivia"},
   "por"
   {"official" "Estado Plurinacional da Bolívia", "common" "Bolívia"},
   "slk" {"official" "Bolívijská republika", "common" "Bolívia"},
   "bre" {"official" "Stad Liesvroadel Bolivia", "common" "Bolivia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/bo.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/bo.png"},
  "idd" {"suffixes" ["91"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/bo.svg",
   "alt"
   "The flag of Bolivia is composed of three equal horizontal bands of red, yellow and green, with the national coat of arms centered in the yellow band.",
   "png" "https://flagcdn.com/w320/bo.png"},
  "unMember" true,
  "name"
  {"official" "Plurinational State of Bolivia",
   "nativeName"
   {"que" {"official" "Buliwya Mamallaqta", "common" "Buliwya"},
    "spa"
    {"official" "Estado Plurinacional de Bolivia", "common" "Bolivia"},
    "grn" {"official" "Tetã Volívia", "common" "Volívia"},
    "aym" {"official" "Wuliwya Suyu", "common" "Wuliwya"}},
   "common" "Bolivia"},
  "capitalInfo" {"latlng" [-19.02 -65.26]},
  "tld" [".bo"],
  "ccn3" "068",
  "status" "officially-assigned",
  "region" "Americas",
  "languages"
  {"que" "Quechua", "spa" "Spanish", "grn" "Guaraní", "aym" "Aymara"},
  "cioc" "BOL",
  "currencies" {"BOB" {"name" "Bolivian boliviano", "symbol" "Bs."}},
  "independent" true,
  "population" 11673029,
  "cca3" "BOL",
  "borders" ["ARG" "BRA" "CHL" "PRY" "PER"],
  "capital" ["Sucre"],
  "car" {"signs" ["BOL"], "side" "right"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["South America"],
  "flag" "🇧🇴",
  "gini" {"2019" 41.6},
  "fifa" "BOL",
  "cca2" "BO"}
 {"subregion" "South America",
  "landlocked" false,
  "latlng" [-30.0 -71.0],
  "area" 756102.0,
  "altSpellings" ["CL" "Republic of Chile" "República de Chile"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/XboxyNHh2fAjCPNn9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/167454"},
  "demonyms"
  {"eng" {"f" "Chilean", "m" "Chilean"},
   "fra" {"f" "Chilienne", "m" "Chilien"}},
  "translations"
  {"kor" {"official" "칠레 공화국", "common" "칠레"},
   "zho" {"official" "智利共和国", "common" "智利"},
   "hun" {"official" "Chilei Köztársaság", "common" "Chile"},
   "rus" {"official" "Республика Чили", "common" "Чили"},
   "swe" {"official" "Republiken Chile", "common" "Chile"},
   "ces" {"official" "Chilská republika", "common" "Chile"},
   "deu" {"official" "Republik Chile", "common" "Chile"},
   "ara" {"official" "جمهورية تشيلي", "common" "تشيلي"},
   "urd" {"official" "جمہوریہ چلی", "common" "چلی"},
   "srp" {"official" "Република Чиле", "common" "Чиле"},
   "tur" {"official" "Şili Cumhuriyeti", "common" "Şili"},
   "pol" {"official" "Republika Chile", "common" "Chile"},
   "cym" {"official" "Gweriniaeth Chile", "common" "Chile"},
   "hrv" {"official" "Republika Čile", "common" "Čile"},
   "spa" {"official" "República de Chile", "common" "Chile"},
   "fin" {"official" "Chilen tasavalta", "common" "Chile"},
   "per" {"official" "جمهوری شیلی", "common" "شیلی"},
   "nld" {"official" "Republiek Chili", "common" "Chili"},
   "fra" {"official" "République du Chili", "common" "Chili"},
   "ita" {"official" "Repubblica del Cile", "common" "Cile"},
   "jpn" {"official" "チリ共和国", "common" "チリ"},
   "est" {"official" "Tšiili Vabariik", "common" "Tšiili"},
   "por" {"official" "República do Chile", "common" "Chile"},
   "slk" {"official" "Čílska republika", "common" "Čile"},
   "bre" {"official" "Republik Chile", "common" "Chile"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/cl.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/cl.png"},
  "idd" {"suffixes" ["6"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/cl.svg",
   "alt"
   "The flag of Chile is composed of two equal horizontal bands of white and red, with a blue square of the same height as the white band superimposed in the canton. A white five-pointed star is centered in the blue square.",
   "png" "https://flagcdn.com/w320/cl.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Chile",
   "nativeName"
   {"spa" {"official" "República de Chile", "common" "Chile"}},
   "common" "Chile"},
  "postalCode" {"regex" "^(\\d{7})$", "format" "#######"},
  "capitalInfo" {"latlng" [-33.45 -70.67]},
  "tld" [".cl"],
  "ccn3" "152",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"spa" "Spanish"},
  "cioc" "CHI",
  "currencies" {"CLP" {"name" "Chilean peso", "symbol" "$"}},
  "independent" true,
  "population" 19116209,
  "cca3" "CHL",
  "borders" ["ARG" "BOL" "PER"],
  "capital" ["Santiago"],
  "car" {"signs" ["RCH"], "side" "right"},
  "timezones" ["UTC-06:00" "UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["South America"],
  "flag" "🇨🇱",
  "gini" {"2017" 44.4},
  "fifa" "CHI",
  "cca2" "CL"}
 {"subregion" "North America",
  "landlocked" false,
  "latlng" [38.0 -97.0],
  "area" 9372610.0,
  "altSpellings" ["US" "USA" "United States of America"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/e8M246zY4BSjkjAv6",
   "openStreetMaps"
   "https://www.openstreetmap.org/relation/148838#map=2/20.6/-85.8"},
  "demonyms"
  {"eng" {"f" "American", "m" "American"},
   "fra" {"f" "Américaine", "m" "Américain"}},
  "translations"
  {"kor" {"official" "아메리카 합중국", "common" "미국"},
   "zho" {"official" "美利坚合众国", "common" "美国"},
   "hun"
   {"official" "Amerikai Egyesült Államok",
    "common" "Amerikai Egyesült Államok"},
   "rus"
   {"official" "Соединенные Штаты Америки",
    "common" "Соединённые Штаты Америки"},
   "swe" {"official" "Amerikas förenta stater", "common" "USA"},
   "ces"
   {"official" "Spojené státy americké", "common" "Spojené státy"},
   "deu"
   {"official" "Vereinigte Staaten von Amerika",
    "common" "Vereinigte Staaten"},
   "ara"
   {"official" "الولايات المتحدة الامريكية",
    "common" "الولايات المتحدة"},
   "urd"
   {"official" "ریاستہائے متحدہ امریکا", "common" "ریاستہائے متحدہ"},
   "srp"
   {"official" "Сједињене Америчке Државе",
    "common" "Сједињене Америчке Државе"},
   "tur"
   {"official" "Amerika Birleşik Devletleri",
    "common" "Amerika Birleşik Devletleri"},
   "pol"
   {"official" "Stany Zjednoczone Ameryki",
    "common" "Stany Zjednoczone"},
   "cym"
   {"official" "United States of America", "common" "United States"},
   "hrv"
   {"official" "Sjedinjene Države Amerike",
    "common" "Sjedinjene Američke Države"},
   "spa"
   {"official" "Estados Unidos de América", "common" "Estados Unidos"},
   "fin" {"official" "Amerikan yhdysvallat", "common" "Yhdysvallat"},
   "per"
   {"official" "ایالات متحده آمریکا", "common" "ایالات متحده آمریکا"},
   "nld"
   {"official" "Verenigde Staten van Amerika",
    "common" "Verenigde Staten"},
   "fra"
   {"official" "Les états-unis d'Amérique", "common" "États-Unis"},
   "ita"
   {"official" "Stati Uniti d'America",
    "common" "Stati Uniti d'America"},
   "jpn" {"official" "アメリカ合衆国", "common" "アメリカ合衆国"},
   "est"
   {"official" "Ameerika Ühendriigid",
    "common" "Ameerika Ühendriigid"},
   "por"
   {"official" "Estados Unidos da América", "common" "Estados Unidos"},
   "slk"
   {"official" "Spojené štáty Americké",
    "common" "Spojené štáty americké"},
   "bre"
   {"official" "Stadoù-Unanet Amerika", "common" "Stadoù-Unanet"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/us.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/us.png"},
  "idd"
  {"suffixes"
   ["201"
    "202"
    "203"
    "205"
    "206"
    "207"
    "208"
    "209"
    "210"
    "212"
    "213"
    "214"
    "215"
    "216"
    "217"
    "218"
    "219"
    "220"
    "224"
    "225"
    "227"
    "228"
    "229"
    "231"
    "234"
    "239"
    "240"
    "248"
    "251"
    "252"
    "253"
    "254"
    "256"
    "260"
    "262"
    "267"
    "269"
    "270"
    "272"
    "274"
    "276"
    "281"
    "283"
    "301"
    "302"
    "303"
    "304"
    "305"
    "307"
    "308"
    "309"
    "310"
    "312"
    "313"
    "314"
    "315"
    "316"
    "317"
    "318"
    "319"
    "320"
    "321"
    "323"
    "325"
    "327"
    "330"
    "331"
    "334"
    "336"
    "337"
    "339"
    "346"
    "347"
    "351"
    "352"
    "360"
    "361"
    "364"
    "380"
    "385"
    "386"
    "401"
    "402"
    "404"
    "405"
    "406"
    "407"
    "408"
    "409"
    "410"
    "412"
    "413"
    "414"
    "415"
    "417"
    "419"
    "423"
    "424"
    "425"
    "430"
    "432"
    "434"
    "435"
    "440"
    "442"
    "443"
    "447"
    "458"
    "463"
    "464"
    "469"
    "470"
    "475"
    "478"
    "479"
    "480"
    "484"
    "501"
    "502"
    "503"
    "504"
    "505"
    "507"
    "508"
    "509"
    "510"
    "512"
    "513"
    "515"
    "516"
    "517"
    "518"
    "520"
    "530"
    "531"
    "534"
    "539"
    "540"
    "541"
    "551"
    "559"
    "561"
    "562"
    "563"
    "564"
    "567"
    "570"
    "571"
    "573"
    "574"
    "575"
    "580"
    "585"
    "586"
    "601"
    "602"
    "603"
    "605"
    "606"
    "607"
    "608"
    "609"
    "610"
    "612"
    "614"
    "615"
    "616"
    "617"
    "618"
    "619"
    "620"
    "623"
    "626"
    "628"
    "629"
    "630"
    "631"
    "636"
    "641"
    "646"
    "650"
    "651"
    "657"
    "660"
    "661"
    "662"
    "667"
    "669"
    "678"
    "681"
    "682"
    "701"
    "702"
    "703"
    "704"
    "706"
    "707"
    "708"
    "712"
    "713"
    "714"
    "715"
    "716"
    "717"
    "718"
    "719"
    "720"
    "724"
    "725"
    "727"
    "730"
    "731"
    "732"
    "734"
    "737"
    "740"
    "743"
    "747"
    "754"
    "757"
    "760"
    "762"
    "763"
    "765"
    "769"
    "770"
    "772"
    "773"
    "774"
    "775"
    "779"
    "781"
    "785"
    "786"
    "801"
    "802"
    "803"
    "804"
    "805"
    "806"
    "808"
    "810"
    "812"
    "813"
    "814"
    "815"
    "816"
    "817"
    "818"
    "828"
    "830"
    "831"
    "832"
    "843"
    "845"
    "847"
    "848"
    "850"
    "854"
    "856"
    "857"
    "858"
    "859"
    "860"
    "862"
    "863"
    "864"
    "865"
    "870"
    "872"
    "878"
    "901"
    "903"
    "904"
    "906"
    "907"
    "908"
    "909"
    "910"
    "912"
    "913"
    "914"
    "915"
    "916"
    "917"
    "918"
    "919"
    "920"
    "925"
    "928"
    "929"
    "930"
    "931"
    "934"
    "936"
    "937"
    "938"
    "940"
    "941"
    "947"
    "949"
    "951"
    "952"
    "954"
    "956"
    "959"
    "970"
    "971"
    "972"
    "973"
    "975"
    "978"
    "979"
    "980"
    "984"
    "985"
    "989"],
   "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/us.svg",
   "alt"
   "The flag of the United States of America is composed of thirteen equal horizontal bands of red alternating with white. A blue rectangle, bearing fifty small five-pointed white stars arranged in nine rows where rows of six stars alternate with rows of five stars, is superimposed in the canton.",
   "png" "https://flagcdn.com/w320/us.png"},
  "unMember" true,
  "name"
  {"official" "United States of America",
   "nativeName"
   {"eng"
    {"official" "United States of America", "common" "United States"}},
   "common" "United States"},
  "postalCode" {"regex" "^\\d{5}(-\\d{4})?$", "format" "#####-####"},
  "capitalInfo" {"latlng" [38.89 -77.05]},
  "tld" [".us"],
  "ccn3" "840",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "cioc" "USA",
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" true,
  "population" 329484123,
  "cca3" "USA",
  "borders" ["CAN" "MEX"],
  "capital" ["Washington, D.C."],
  "car" {"signs" ["USA"], "side" "right"},
  "timezones"
  ["UTC-12:00"
   "UTC-11:00"
   "UTC-10:00"
   "UTC-09:00"
   "UTC-08:00"
   "UTC-07:00"
   "UTC-06:00"
   "UTC-05:00"
   "UTC-04:00"
   "UTC+10:00"
   "UTC+12:00"],
  "startOfWeek" "sunday",
  "continents" ["North America"],
  "flag" "🇺🇸",
  "gini" {"2018" 41.4},
  "fifa" "USA",
  "cca2" "US"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [13.25 -61.2],
  "area" 389.0,
  "altSpellings" ["VC"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/wMbnMqjG37FMnrwf7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/550725"},
  "demonyms"
  {"eng" {"f" "Saint Vincentian", "m" "Saint Vincentian"},
   "fra" {"f" "Vincentaise", "m" "Vincentais"}},
  "translations"
  {"kor" {"official" "세인트빈센트 그레나딘", "common" "세인트빈센트 그레나딘"},
   "zho" {"official" "圣文森特和格林纳丁斯", "common" "圣文森特和格林纳丁斯"},
   "hun"
   {"official" "Saint Vincent és a Grenadine-szigetek",
    "common" "Saint Vincent és a Grenadine-szigetek"},
   "rus"
   {"official" "Сент-Винсент и Гренадины",
    "common" "Сент-Винсент и Гренадины"},
   "swe"
   {"official" "Saint Vincent och Grenadinerna",
    "common" "Saint Vincent och Grenadinerna"},
   "ces"
   {"official" "Svatý Vincenc a Grenadiny",
    "common" "Svatý Vincenc a Grenadiny"},
   "deu"
   {"official" "St. Vincent und die Grenadinen",
    "common" "St. Vincent und die Grenadinen"},
   "ara"
   {"official" "سانت فينسنت والغرينادين",
    "common" "سانت فينسنت والغرينادين"},
   "urd"
   {"official" "سینٹ وینسینٹ و گریناڈائنز",
    "common" "سینٹ وینسینٹ و گریناڈائنز"},
   "srp"
   {"official" "Свети Винсент и Гренадини",
    "common" "Свети Винсент и Гренадини"},
   "tur"
   {"official" "Saint Vincent ve Grenadinler",
    "common" "Saint Vincent ve Grenadinler"},
   "pol"
   {"official" "Saint Vincent i Grenadyny",
    "common" "Saint Vincent i Grenadyny"},
   "cym"
   {"official" "Saint Vincent and the Grenadines",
    "common" "Saint Vincent and the Grenadines"},
   "hrv"
   {"official" "Sveti Vincent i Grenadini",
    "common" "Sveti Vincent i Grenadini"},
   "spa"
   {"official" "San Vicente y las Granadinas",
    "common" "San Vicente y Granadinas"},
   "fin"
   {"official" "Saint Vincent ja Grenadiinit",
    "common" "Saint Vincent ja Grenadiinit"},
   "per"
   {"official" "سنت وینسنت و گرنادین‌ها",
    "common" "سنت وینسنت و گرنادین‌ها"},
   "nld"
   {"official" "Saint Vincent en de Grenadines",
    "common" "Saint Vincent en de Grenadines"},
   "fra"
   {"official" "Saint-Vincent-et-les Grenadines",
    "common" "Saint-Vincent-et-les-Grenadines"},
   "ita"
   {"official" "Saint Vincent e Grenadine",
    "common" "Saint Vincent e Grenadine"},
   "jpn"
   {"official" "セントビンセントおよびグレナディーン諸島",
    "common" "セントビンセントおよびグレナディーン諸島"},
   "est"
   {"official" "Saint Vincent ja Grenadiinid",
    "common" "Saint Vincent"},
   "por"
   {"official" "São Vicente e Granadinas",
    "common" "São Vincente e Granadinas"},
   "slk"
   {"official" "Svätý Vincent a Grenadíny",
    "common" "Svätý Vincent a Grenadíny"},
   "bre"
   {"official" "Sant-Visant hag ar Grenadinez",
    "common" "Sant-Visant hag ar Grenadinez"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/vc.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/vc.png"},
  "idd" {"suffixes" ["784"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/vc.svg",
   "alt"
   "The flag of Saint Vincent and the Grenadines is composed of three vertical bands of blue, gold and green. The gold band is twice as wide as the other two bands and bears three green diamonds arranged to form the letter V at its center.",
   "png" "https://flagcdn.com/w320/vc.png"},
  "unMember" true,
  "name"
  {"official" "Saint Vincent and the Grenadines",
   "nativeName"
   {"eng"
    {"official" "Saint Vincent and the Grenadines",
     "common" "Saint Vincent and the Grenadines"}},
   "common" "Saint Vincent and the Grenadines"},
  "capitalInfo" {"latlng" [13.13 -61.22]},
  "tld" [".vc"],
  "ccn3" "670",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "cioc" "VIN",
  "currencies"
  {"XCD" {"name" "Eastern Caribbean dollar", "symbol" "$"}},
  "independent" true,
  "population" 110947,
  "cca3" "VCT",
  "capital" ["Kingstown"],
  "car" {"signs" ["WV"], "side" "left"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇻🇨",
  "fifa" "VIN",
  "cca2" "VC"}
 {"subregion" "North America",
  "landlocked" false,
  "latlng" [32.33333333 -64.75],
  "area" 54.0,
  "altSpellings"
  ["BM" "The Islands of Bermuda" "The Bermudas" "Somers Isles"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/NLsRGNjTzDghTtAJA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1993208"},
  "demonyms"
  {"eng" {"f" "Bermudian", "m" "Bermudian"},
   "fra" {"f" "Bermudienne", "m" "Bermudien"}},
  "translations"
  {"kor" {"official" "버뮤다", "common" "버뮤다"},
   "zho" {"official" "百慕大", "common" "百慕大"},
   "hun" {"official" "Bermuda", "common" "Bermuda"},
   "rus"
   {"official" "Бермудские острова", "common" "Бермудские Острова"},
   "swe" {"official" "Bermuda", "common" "Bermuda"},
   "ces" {"official" "Bermudské ostrovy", "common" "Bermudy"},
   "deu" {"official" "Bermuda", "common" "Bermuda"},
   "ara" {"official" "برمودا", "common" "برمودا"},
   "urd" {"official" "برمودا", "common" "برمودا"},
   "srp" {"official" "Бермуда", "common" "Бермуда"},
   "tur" {"official" "Bermuda", "common" "Bermuda"},
   "pol" {"official" "Bermudy", "common" "Bermudy"},
   "cym" {"official" "Bermiwda", "common" "Bermiwda"},
   "hrv" {"official" "Bermuda", "common" "Bermudi"},
   "spa" {"official" "Bermuda", "common" "Bermudas"},
   "fin" {"official" "Bermuda", "common" "Bermuda"},
   "per" {"official" "جزایر برمودا", "common" "برمودا"},
   "nld" {"official" "Bermuda", "common" "Bermuda"},
   "fra" {"official" "Bermudes", "common" "Bermudes"},
   "ita" {"official" "Bermuda", "common" "Bermuda"},
   "jpn" {"official" "バミューダ", "common" "バミューダ"},
   "est" {"official" "Bermuda", "common" "Bermuda"},
   "por" {"official" "Bermudas", "common" "Bermudas"},
   "slk" {"official" "Bermudy", "common" "Bermudy"},
   "bre" {"official" "Bermuda", "common" "Bermuda"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/bm.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/bm.png"},
  "idd" {"suffixes" ["441"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/bm.svg",
   "png" "https://flagcdn.com/w320/bm.png"},
  "unMember" false,
  "name"
  {"official" "Bermuda",
   "nativeName" {"eng" {"official" "Bermuda", "common" "Bermuda"}},
   "common" "Bermuda"},
  "postalCode" {"regex" "^([A-Z]{2}\\d{2})$", "format" "@@ ##"},
  "capitalInfo" {"latlng" [32.28 -64.78]},
  "tld" [".bm"],
  "ccn3" "060",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "cioc" "BER",
  "currencies" {"BMD" {"name" "Bermudian dollar", "symbol" "$"}},
  "independent" false,
  "population" 63903,
  "cca3" "BMU",
  "capital" ["Hamilton"],
  "car" {"signs" ["GB"], "side" "left"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇧🇲",
  "fifa" "BER",
  "cca2" "BM"}
 {"subregion" "Eastern Africa",
  "landlocked" false,
  "latlng" [-4.58333333 55.66666666],
  "area" 452.0,
  "altSpellings"
  ["SC"
   "Republic of Seychelles"
   "Repiblik Sesel"
   "République des Seychelles"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/aqCcy2TKh5TV5MAX8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/536765"},
  "demonyms"
  {"eng" {"f" "Seychellois", "m" "Seychellois"},
   "fra" {"f" "Seychelloise", "m" "Seychellois"}},
  "translations"
  {"kor" {"official" "세이셸 공화국", "common" "세이셸"},
   "zho" {"official" "塞舌尔共和国", "common" "塞舌尔"},
   "hun"
   {"official" "Seychelle Köztársaság", "common" "Seychelle-szigetek"},
   "rus"
   {"official" "Республика Сейшельские Острова",
    "common" "Сейшельские Острова"},
   "swe"
   {"official" "Republiken Seychellerna", "common" "Seychellerna"},
   "ces" {"official" "Seychelská republika", "common" "Seychely"},
   "deu" {"official" "Republik der Seychellen", "common" "Seychellen"},
   "ara" {"official" "جمهورية سيشل", "common" "سيشل"},
   "urd" {"official" "جمہوریہ سیچیلیس", "common" "سیچیلیس"},
   "srp" {"official" "Република Сејшели", "common" "Сејшели"},
   "tur" {"official" "Seyşeller Cumhuriyeti", "common" "Seyşeller"},
   "pol" {"official" "Republika Seszeli", "common" "Seszele"},
   "cym" {"official" "Republic of Seychelles", "common" "Seychelles"},
   "hrv" {"official" "Republika Sejšeli", "common" "Sejšeli"},
   "spa"
   {"official" "República de las Seychelles", "common" "Seychelles"},
   "fin" {"official" "Seychellien tasavalta", "common" "Seychellit"},
   "per" {"official" "جمهوری سیشل", "common" "سیشل"},
   "nld"
   {"official" "Republiek der Seychellen", "common" "Seychellen"},
   "fra"
   {"official" "République des Seychelles", "common" "Seychelles"},
   "ita"
   {"official" "Repubblica delle Seychelles", "common" "Seychelles"},
   "jpn" {"official" "セイシェル共和国", "common" "セーシェル"},
   "est" {"official" "Seišelli Vabariik", "common" "Seišellid"},
   "por" {"official" "República das Seychelles", "common" "Seicheles"},
   "slk" {"official" "Seychelská republika", "common" "Seychely"},
   "bre" {"official" "Republik Sechelez", "common" "Sechelez"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/sc.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/sc.png"},
  "idd" {"suffixes" ["48"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/sc.svg",
   "alt"
   "The flag of Seychelles is composed of five broadening oblique bands of blue, yellow, red, white and green, which extend from the hoist side of the bottom edge to the top and fly edges of the field.",
   "png" "https://flagcdn.com/w320/sc.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Seychelles",
   "nativeName"
   {"crs" {"official" "Repiblik Sesel", "common" "Sesel"},
    "eng" {"official" "Republic of Seychelles", "common" "Seychelles"},
    "fra"
    {"official" "République des Seychelles", "common" "Seychelles"}},
   "common" "Seychelles"},
  "capitalInfo" {"latlng" [-4.62 55.45]},
  "tld" [".sc"],
  "ccn3" "690",
  "status" "officially-assigned",
  "region" "Africa",
  "languages"
  {"crs" "Seychellois Creole", "eng" "English", "fra" "French"},
  "cioc" "SEY",
  "currencies" {"SCR" {"name" "Seychellois rupee", "symbol" "₨"}},
  "independent" true,
  "population" 98462,
  "cca3" "SYC",
  "capital" ["Victoria"],
  "car" {"signs" ["SY"], "side" "left"},
  "timezones" ["UTC+04:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇸🇨",
  "gini" {"2018" 32.1},
  "fifa" "SEY",
  "cca2" "SC"}
 {"subregion" "Eastern Africa",
  "landlocked" false,
  "latlng" [-6.0 71.5],
  "area" 60.0,
  "altSpellings" ["IO"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/bheNucgekVEYozoi6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1993867"},
  "demonyms" {"eng" {"f" "Indian", "m" "Indian"}},
  "translations"
  {"kor" {"official" "인도 공화국", "common" "인도"},
   "zho" {"official" "英属印度洋领地", "common" "英属印度洋领地"},
   "hun"
   {"official" "Brit Indiai-óceáni Terület",
    "common" "Brit Indiai-óceáni Terület"},
   "rus"
   {"official" "Британская территория Индийского океана",
    "common" "Британская территория в Индийском океане"},
   "swe"
   {"official" "Brittiska territoriet i Indiska Oceanen",
    "common" "Brittiska territoriet i Indiska Oceanen"},
   "ces"
   {"official" "Britské indickooceánské území",
    "common" "Britské indickooceánské území"},
   "deu"
   {"official" "Britisches Territorium im Indischen Ozean",
    "common" "Britisches Territorium im Indischen Ozean"},
   "ara"
   {"official" "إقليم المحيط الهندي البريطاني",
    "common" "إقليم المحيط الهندي البريطاني"},
   "urd"
   {"official" "برطانوی بحرہند خطہ", "common" "برطانوی بحرہند خطہ"},
   "srp"
   {"official" "Британска територија Индијског океана",
    "common" "Британска територија Индијског океана"},
   "tur"
   {"official" "Britanya Hint Okyanusu Toprakları",
    "common" "Britanya Hint Okyanusu Toprakları"},
   "pol"
   {"official" "Brytyjskie Terytorium Oceanu Indyjskiego",
    "common" "Brytyjskie Terytorium Oceanu Indyjskiego"},
   "cym"
   {"official" "Tiriogaeth Brydeinig Cefnfor India",
    "common" "Tiriogaeth Brydeinig Cefnfor India"},
   "hrv"
   {"official" "British Indian Ocean Territory",
    "common" "Britanski Indijskooceanski teritorij"},
   "spa"
   {"official" "Territorio Británico del Océano Índico",
    "common" "Territorio Británico del Océano Índico"},
   "fin"
   {"official" "Brittiläinen Intian valtameren alue",
    "common" "Brittiläinen Intian valtameren alue"},
   "per"
   {"official" "قلمرو بریتانیا در اقیانوس هند",
    "common" "قلمرو بریتانیا در اقیانوس هند"},
   "nld"
   {"official" "Brits Indische Oceaan Territorium",
    "common" "Britse Gebieden in de Indische Oceaan"},
   "fra"
   {"official" "Territoire britannique de l' océan Indien",
    "common" "Territoire britannique de l'océan Indien"},
   "ita"
   {"official" "Territorio britannico dell'Oceano Indiano",
    "common" "Territorio britannico dell'oceano indiano"},
   "jpn" {"official" "イギリス領インド洋地域", "common" "イギリス領インド洋地域"},
   "est"
   {"official" "Briti India ookeani ala",
    "common" "Briti India ookeani ala"},
   "por"
   {"official" "British Indian Ocean Territory",
    "common" "Território Britânico do Oceano Índico"},
   "slk"
   {"official" "Britské indickooceánske územie",
    "common" "Britské indickooceánske územie"},
   "bre"
   {"official" "Tiriad breizhveurat Meurvor Indez",
    "common" "Tiriad breizhveurat Meurvor Indez"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["46"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/io.svg",
   "png" "https://flagcdn.com/w320/io.png"},
  "unMember" false,
  "name"
  {"official" "British Indian Ocean Territory",
   "nativeName"
   {"eng"
    {"official" "British Indian Ocean Territory",
     "common" "British Indian Ocean Territory"}},
   "common" "British Indian Ocean Territory"},
  "capitalInfo" {"latlng" [-7.3 72.4]},
  "tld" [".io"],
  "ccn3" "086",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"eng" "English"},
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" false,
  "population" 3000,
  "cca3" "IOT",
  "capital" ["Diego Garcia"],
  "car" {"signs" ["GB"], "side" "right"},
  "timezones" ["UTC+06:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇮🇴",
  "cca2" "IO"}
 {"subregion" "Central America",
  "landlocked" false,
  "latlng" [15.5 -90.25],
  "area" 108889.0,
  "altSpellings" ["GT"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/JoRAbem4Hxb9FYbVA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1521463"},
  "demonyms"
  {"eng" {"f" "Guatemalan", "m" "Guatemalan"},
   "fra" {"f" "Guatémaltèque", "m" "Guatémaltèque"}},
  "translations"
  {"kor" {"official" "과테말라 공화국", "common" "과테말라"},
   "zho" {"official" "危地马拉共和国", "common" "危地马拉"},
   "hun" {"official" "Guatemalai Köztársaság", "common" "Guatemala"},
   "rus" {"official" "Республика Гватемала", "common" "Гватемала"},
   "swe" {"official" "Republiken Guatemala", "common" "Guatemala"},
   "ces" {"official" "Republika Guatemala", "common" "Guatemala"},
   "deu" {"official" "Republik Guatemala", "common" "Guatemala"},
   "ara" {"official" "جمهورية غواتيمالا", "common" "غواتيمالا"},
   "urd" {"official" "جمہوریہ گواتیمالا", "common" "گواتیمالا"},
   "srp" {"official" "Република Гватемала", "common" "Гватемала"},
   "tur" {"official" "Guatemala Cumhuriyeti", "common" "Guatemala"},
   "pol" {"official" "Republika Gwatemali", "common" "Gwatemala"},
   "cym" {"official" "Republic of Guatemala", "common" "Guatemala"},
   "hrv" {"official" "Republika Gvatemala", "common" "Gvatemala"},
   "spa" {"official" "República de Guatemala", "common" "Guatemala"},
   "fin" {"official" "Guatemalan tasavalta", "common" "Guatemala"},
   "per" {"official" "جمهوری گواتِمالا", "common" "گواتِمالا"},
   "nld" {"official" "Republiek Guatemala", "common" "Guatemala"},
   "fra" {"official" "République du Guatemala", "common" "Guatemala"},
   "ita" {"official" "Repubblica del Guatemala", "common" "Guatemala"},
   "jpn" {"official" "グアテマラ共和国", "common" "グアテマラ"},
   "est" {"official" "Guatemala Vabariik", "common" "Guatemala"},
   "por" {"official" "República da Guatemala", "common" "Guatemala"},
   "slk" {"official" "Guatemalská republika", "common" "Guatemala"},
   "bre" {"official" "Republik Guatemala", "common" "Guatemala"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/gt.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/gt.png"},
  "idd" {"suffixes" ["02"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/gt.svg",
   "alt"
   "The flag of Guatemala is composed of three equal vertical bands of light blue, white and light blue, with the national coat of arms centered in the white band.",
   "png" "https://flagcdn.com/w320/gt.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Guatemala",
   "nativeName"
   {"spa" {"official" "República de Guatemala", "common" "Guatemala"}},
   "common" "Guatemala"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [14.62 -90.52]},
  "tld" [".gt"],
  "ccn3" "320",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"spa" "Spanish"},
  "cioc" "GUA",
  "currencies" {"GTQ" {"name" "Guatemalan quetzal", "symbol" "Q"}},
  "independent" true,
  "population" 16858333,
  "cca3" "GTM",
  "borders" ["BLZ" "SLV" "HND" "MEX"],
  "capital" ["Guatemala City"],
  "car" {"signs" ["GCA"], "side" "right"},
  "timezones" ["UTC-06:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇬🇹",
  "gini" {"2014" 48.3},
  "fifa" "GUA",
  "cca2" "GT"}
 {"subregion" "South America",
  "landlocked" false,
  "latlng" [-2.0 -77.5],
  "area" 276841.0,
  "altSpellings" ["EC" "Republic of Ecuador" "República del Ecuador"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/TbX8hUW4gcbRPZiK7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/108089"},
  "demonyms"
  {"eng" {"f" "Ecuadorean", "m" "Ecuadorean"},
   "fra" {"f" "Équatorienne", "m" "Équatorien"}},
  "translations"
  {"kor" {"official" "에콰도르 공화국", "common" "에콰도르"},
   "zho" {"official" "厄瓜多尔共和国", "common" "厄瓜多尔"},
   "hun" {"official" "Ecuadori Köztársaság", "common" "Ecuador"},
   "rus" {"official" "Республика Эквадор", "common" "Эквадор"},
   "swe" {"official" "Republiken Ecuador", "common" "Ecuador"},
   "ces" {"official" "Ekvádorská republika", "common" "Ekvádor"},
   "deu" {"official" "Republik Ecuador", "common" "Ecuador"},
   "ara" {"official" "جمهورية الإكوادور", "common" "الإكوادور"},
   "urd" {"official" "جمہوریہ ایکوڈور", "common" "ایکواڈور"},
   "srp" {"official" "Република Еквадор", "common" "Еквадор"},
   "tur" {"official" "Ekvador Cumhuriyeti", "common" "Ekvador"},
   "pol" {"official" "Ekwador", "common" "Ekwador"},
   "cym" {"official" "Gweriniaeth Ecwador", "common" "Ecwador"},
   "hrv" {"official" "Republika Ekvador", "common" "Ekvador"},
   "spa" {"official" "República del Ecuador", "common" "Ecuador"},
   "fin" {"official" "Ecuadorin tasavalta", "common" "Ecuador"},
   "per" {"official" "جمهوری اکوادور", "common" "اکوادور"},
   "nld" {"official" "Republiek Ecuador", "common" "Ecuador"},
   "fra" {"official" "République de l'Équateur", "common" "Équateur"},
   "ita" {"official" "Repubblica dell'Ecuador", "common" "Ecuador"},
   "jpn" {"official" "エクアドル共和国", "common" "エクアドル"},
   "est" {"official" "Ecuadori Vabariik", "common" "Ecuador"},
   "por" {"official" "República do Equador", "common" "Equador"},
   "slk" {"official" "Ekvádorská republika", "common" "Ekvádor"},
   "bre" {"official" "Republik Ecuador", "common" "Ecuador"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ec.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ec.png"},
  "idd" {"suffixes" ["93"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/ec.svg",
   "alt"
   "The flag of Ecuador is composed of the horizontal bands of yellow, blue and red, with the yellow band twice the height of the other two bands. The Ecuadorian coat of arms is superimposed in the center of the field.",
   "png" "https://flagcdn.com/w320/ec.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Ecuador",
   "nativeName"
   {"spa" {"official" "República del Ecuador", "common" "Ecuador"}},
   "common" "Ecuador"},
  "postalCode"
  {"regex" "^([a-zA-Z]\\d{4}[a-zA-Z])$", "format" "@####@"},
  "capitalInfo" {"latlng" [-0.22 -78.5]},
  "tld" [".ec"],
  "ccn3" "218",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"spa" "Spanish"},
  "cioc" "ECU",
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" true,
  "population" 17643060,
  "cca3" "ECU",
  "borders" ["COL" "PER"],
  "capital" ["Quito"],
  "car" {"signs" ["EC"], "side" "right"},
  "timezones" ["UTC-06:00" "UTC-05:00"],
  "startOfWeek" "monday",
  "continents" ["South America"],
  "flag" "🇪🇨",
  "gini" {"2019" 45.7},
  "fifa" "ECU",
  "cca2" "EC"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [14.666667 -61.0],
  "area" 1128.0,
  "altSpellings" ["MQ"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/87ER7sDAFU7JjcvR6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2473088"},
  "demonyms"
  {"eng" {"f" "Martinican", "m" "Martinican"},
   "fra" {"f" "Martiniquaise", "m" "Martiniquais"}},
  "translations"
  {"kor" {"official" "마르티니크", "common" "마르티니크"},
   "zho" {"official" "马提尼克", "common" "马提尼克"},
   "hun" {"official" "Martinique", "common" "Martinique"},
   "rus" {"official" "Мартиника", "common" "Мартиника"},
   "swe" {"official" "Martinique", "common" "Martinique"},
   "ces" {"official" "Martinik", "common" "Martinik"},
   "deu" {"official" "Martinique", "common" "Martinique"},
   "ara" {"official" "مارتينيك", "common" "مارتينيك"},
   "urd" {"official" "مارٹینیک", "common" "مارٹینیک"},
   "srp" {"official" "Мартиник", "common" "Мартиник"},
   "tur" {"official" "Martinik", "common" "Martinik"},
   "pol" {"official" "Martynika", "common" "Martynika"},
   "cym" {"official" "Martinique", "common" "Martinique"},
   "hrv" {"official" "Martinique", "common" "Martinique"},
   "spa" {"official" "Martinica", "common" "Martinica"},
   "fin" {"official" "Martinique", "common" "Martinique"},
   "per" {"official" "مارتینیک", "common" "مارتینیک"},
   "nld" {"official" "Martinique", "common" "Martinique"},
   "fra" {"official" "Martinique", "common" "Martinique"},
   "ita" {"official" "Martinique", "common" "Martinica"},
   "jpn" {"official" "マルティニーク島", "common" "マルティニーク"},
   "est"
   {"official" "Martinique’i departemang", "common" "Martinique"},
   "por" {"official" "Martinique", "common" "Martinica"},
   "slk" {"official" "Martinique", "common" "Martinique"},
   "bre" {"official" "Martinik", "common" "Martinik"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/mq.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/mq.png"},
  "idd" {"suffixes" ["96"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/mq.svg",
   "png" "https://flagcdn.com/w320/mq.png"},
  "unMember" false,
  "name"
  {"official" "Martinique",
   "nativeName"
   {"fra" {"official" "Martinique", "common" "Martinique"}},
   "common" "Martinique"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [14.6 -61.08]},
  "tld" [".mq"],
  "ccn3" "474",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"fra" "French"},
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" false,
  "population" 378243,
  "cca3" "MTQ",
  "capital" ["Fort-de-France"],
  "car" {"signs" ["F"], "side" "right"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇲🇶",
  "cca2" "MQ"}
 {"subregion" "Central Asia",
  "landlocked" true,
  "latlng" [39.0 71.0],
  "area" 143100.0,
  "altSpellings"
  ["TJ"
   "Toçikiston"
   "Republic of Tajikistan"
   "Ҷумҳурии Тоҷикистон"
   "Çumhuriyi Toçikiston"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/8rQgW88jEXijhVb58",
   "openStreetMaps" "https://www.openstreetmap.org/relation/214626"},
  "demonyms"
  {"eng" {"f" "Tadzhik", "m" "Tadzhik"},
   "fra" {"f" "Tadjike", "m" "Tadjike"}},
  "translations"
  {"kor" {"official" "타지키스탄 공화국", "common" "타지키스탄"},
   "zho" {"official" "塔吉克斯坦共和国", "common" "塔吉克斯坦"},
   "hun" {"official" "Tádzsik Köztársaság", "common" "Tádzsikisztán"},
   "rus" {"official" "Республика Таджикистан", "common" "Таджикистан"},
   "swe"
   {"official" "Republiken Tadzjikistan", "common" "Tadzjikistan"},
   "ces" {"official" "Republika Tádžikistán", "common" "Tádžikistán"},
   "deu"
   {"official" "Republik Tadschikistan", "common" "Tadschikistan"},
   "ara" {"official" "جمهورية طاجيكستان", "common" "طاجيكستان"},
   "urd" {"official" "جمہوریہ تاجکستان", "common" "تاجکستان"},
   "srp" {"official" "Република Таџикистан", "common" "Таџикистан"},
   "tur" {"official" "Tacikistan Cumhuriyeti", "common" "Tacikistan"},
   "pol" {"official" "Republika Tadżykistanu", "common" "Tadżykistan"},
   "cym" {"official" "Republic of Tajikistan", "common" "Tajikistan"},
   "hrv" {"official" "Republika Tadžikistan", "common" "Tađikistan"},
   "spa" {"official" "República de Tayikistán", "common" "Tayikistán"},
   "fin"
   {"official" "Tadžikistanin tasavalta", "common" "Tadžikistan"},
   "per" {"official" "جمهوری تاجیکستان", "common" "تاجیکِستان"},
   "nld" {"official" "Tadzjikistan", "common" "Tadzjikistan"},
   "fra"
   {"official" "République du Tadjikistan", "common" "Tadjikistan"},
   "ita"
   {"official" "Repubblica del Tajikistan", "common" "Tagikistan"},
   "jpn" {"official" "タジキスタン共和国", "common" "タジキスタン"},
   "est" {"official" "Tadžikistani Vabariik", "common" "Tadžikistan"},
   "por"
   {"official" "República do Tajiquistão", "common" "Tajiquistão"},
   "slk" {"official" "Tadžická republika", "common" "Tadžikistan"},
   "bre" {"official" "Republik Tadjikistan", "common" "Tadjikistan"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/tj.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/tj.png"},
  "idd" {"suffixes" ["92"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/tj.svg",
   "alt"
   "The flag of Tajikistan is composed of three horizontal bands of red, white and green in the ratio of 2:3:2. A golden-yellow crown surmounted by an arc of seven five-pointed golden-yellow stars is centered in the white band.",
   "png" "https://flagcdn.com/w320/tj.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Tajikistan",
   "nativeName"
   {"tgk" {"official" "Ҷумҳурии Тоҷикистон", "common" "Тоҷикистон"},
    "rus"
    {"official" "Республика Таджикистан", "common" "Таджикистан"}},
   "common" "Tajikistan"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "######"},
  "capitalInfo" {"latlng" [38.55 68.77]},
  "tld" [".tj"],
  "ccn3" "762",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"tgk" "Tajik", "rus" "Russian"},
  "cioc" "TJK",
  "currencies" {"TJS" {"name" "Tajikistani somoni", "symbol" "ЅМ"}},
  "independent" true,
  "population" 9537642,
  "cca3" "TJK",
  "borders" ["AFG" "CHN" "KGZ" "UZB"],
  "capital" ["Dushanbe"],
  "car" {"signs" ["TJ"], "side" "right"},
  "timezones" ["UTC+05:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇹🇯",
  "gini" {"2015" 34.0},
  "fifa" "TJK",
  "cca2" "TJ"}
 {"subregion" "Southern Europe",
  "landlocked" false,
  "latlng" [35.9375 14.3754],
  "area" 316.0,
  "altSpellings" ["MT" "Republic of Malta" "Repubblika ta' Malta"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/skXCqguxDxxEKVk47",
   "openStreetMaps" "https://www.openstreetmap.org/relation/365307"},
  "demonyms"
  {"eng" {"f" "Maltese", "m" "Maltese"},
   "fra" {"f" "Maltaise", "m" "Maltais"}},
  "translations"
  {"kor" {"official" "몰타 공화국", "common" "몰타"},
   "zho" {"official" "马耳他共和国", "common" "马耳他"},
   "hun" {"official" "Máltai Köztársaság", "common" "Málta"},
   "rus" {"official" "Республика Мальта", "common" "Мальта"},
   "swe" {"official" "Republiken Malta", "common" "Malta"},
   "ces" {"official" "Maltská republika", "common" "Malta"},
   "deu" {"official" "Republik Malta", "common" "Malta"},
   "ara" {"official" "جمهورية مالطا", "common" "مالطا"},
   "urd" {"official" "جمہوریہ مالٹا", "common" "مالٹا"},
   "srp" {"official" " Република Малта", "common" "Малта"},
   "tur" {"official" "Malta Cumhuriyeti", "common" "Malta"},
   "pol" {"official" "Republika Malty", "common" "Malta"},
   "cym" {"official" "Republic of Malta", "common" "Malta"},
   "hrv" {"official" "Republika Malta", "common" "Malta"},
   "spa" {"official" "República de Malta", "common" "Malta"},
   "fin" {"official" "Maltan tasavalta", "common" "Malta"},
   "per" {"official" "جمهوری مالت", "common" "مالت"},
   "nld" {"official" "Republiek Malta", "common" "Malta"},
   "fra" {"official" "République de Malte", "common" "Malte"},
   "ita" {"official" "Repubblica di Malta", "common" "Malta"},
   "jpn" {"official" "マルタ共和国", "common" "マルタ"},
   "est" {"official" "Malta Vabariik", "common" "Malta"},
   "por" {"official" "República de Malta", "common" "Malta"},
   "slk" {"official" "Maltská republika", "common" "Malta"},
   "bre" {"official" "Republik Malta", "common" "Malta"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/mt.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/mt.png"},
  "idd" {"suffixes" ["56"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/mt.svg",
   "alt"
   "The flag of Malta is composed of two equal vertical bands of white and red. A representation of the George cross edged in red is situated on the upper hoist-side corner of the white band.",
   "png" "https://flagcdn.com/w320/mt.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Malta",
   "nativeName"
   {"mlt" {"official" "Repubblika ta ' Malta", "common" "Malta"},
    "eng" {"official" "Republic of Malta", "common" "Malta"}},
   "common" "Malta"},
  "postalCode"
  {"regex" "^([A-Z]{3}\\d{2}\\d?)$", "format" "@@@ ###|@@@ ##"},
  "capitalInfo" {"latlng" [35.88 14.5]},
  "tld" [".mt"],
  "ccn3" "470",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"mlt" "Maltese", "eng" "English"},
  "cioc" "MLT",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 525285,
  "cca3" "MLT",
  "capital" ["Valletta"],
  "car" {"signs" ["M"], "side" "left"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇲🇹",
  "gini" {"2018" 28.7},
  "fifa" "MLT",
  "cca2" "MT"}
 {"subregion" "Western Africa",
  "landlocked" false,
  "latlng" [13.46666666 -16.56666666],
  "area" 10689.0,
  "altSpellings" ["GM" "Republic of the Gambia"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/bbGBCxxtfD2A9Z4m6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192774"},
  "demonyms"
  {"eng" {"f" "Gambian", "m" "Gambian"},
   "fra" {"f" "Gambienne", "m" "Gambien"}},
  "translations"
  {"kor" {"official" "감비아 공화국", "common" "감비아"},
   "zho" {"official" "冈比亚共和国", "common" "冈比亚"},
   "hun" {"official" "Gambiai Köztársaság", "common" "Gambia"},
   "rus" {"official" "Республика Гамбия", "common" "Гамбия"},
   "swe" {"official" "Republiken Gambia", "common" "Gambia"},
   "ces" {"official" "Gambijská republika", "common" "Gambie"},
   "deu" {"official" "Republik Gambia", "common" "Gambia"},
   "ara" {"official" "جمهورية غامبيا", "common" "غامبيا"},
   "urd" {"official" "جمہوریہ گیمبیا", "common" "گیمبیا"},
   "srp" {"official" "Република Гамбија", "common" "Гамбија"},
   "tur" {"official" "Gambiya Cumhuriyeti", "common" "Gambiya"},
   "pol" {"official" "Republika Gambii", "common" "Gambia"},
   "cym" {"official" "Republic of the Gambia", "common" "Gambia"},
   "hrv" {"official" "Republika Gambija", "common" "Gambija"},
   "spa" {"official" "República de Gambia", "common" "Gambia"},
   "fin" {"official" "Gambian tasavalta", "common" "Gambia"},
   "per" {"official" "جمهوری گامبیا", "common" "گامبیا"},
   "nld" {"official" "Republiek Gambia", "common" "Gambia"},
   "fra" {"official" "République de Gambie", "common" "Gambie"},
   "ita" {"official" "Repubblica del Gambia", "common" "Gambia"},
   "jpn" {"official" "ガンビア共和国", "common" "ガンビア"},
   "est" {"official" "Gambia Vabariik", "common" "Gambia"},
   "por" {"official" "República da Gâmbia", "common" "Gâmbia"},
   "slk" {"official" "Gambijská republika", "common" "Gambia"},
   "bre" {"official" "Republik islamek ar Gambia", "common" "Gambia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/gm.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/gm.png"},
  "idd" {"suffixes" ["20"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/gm.svg",
   "alt"
   "The flag of Gambia is composed of three equal horizontal bands of red, blue with white top and bottom edges, and green.",
   "png" "https://flagcdn.com/w320/gm.png"},
  "unMember" true,
  "name"
  {"official" "Republic of the Gambia",
   "nativeName"
   {"eng" {"official" "Republic of the Gambia", "common" "Gambia"}},
   "common" "Gambia"},
  "capitalInfo" {"latlng" [13.45 -16.57]},
  "tld" [".gm"],
  "ccn3" "270",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"eng" "English"},
  "cioc" "GAM",
  "currencies" {"GMD" {"name" "dalasi", "symbol" "D"}},
  "independent" true,
  "population" 2416664,
  "cca3" "GMB",
  "borders" ["SEN"],
  "capital" ["Banjul"],
  "car" {"signs" ["WAG"], "side" "right"},
  "timezones" ["UTC+00:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇬🇲",
  "gini" {"2015" 35.9},
  "fifa" "GAM",
  "cca2" "GM"}
 {"subregion" "Western Africa",
  "landlocked" false,
  "latlng" [10.0 8.0],
  "area" 923768.0,
  "altSpellings"
  ["NG" "Nijeriya" "Naíjíríà" "Federal Republic of Nigeria"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/LTn417qWwBPFszuV9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192787"},
  "demonyms"
  {"eng" {"f" "Nigerian", "m" "Nigerian"},
   "fra" {"f" "Nigériane", "m" "Nigérian"}},
  "translations"
  {"kor" {"official" "나이지리아 연방 공화국", "common" "나이지리아"},
   "zho" {"official" "尼日利亚联邦共和国", "common" "尼日利亚"},
   "hun" {"official" "Nigéria", "common" "Nigéria"},
   "rus"
   {"official" "Федеративная Республика Нигерия", "common" "Нигерия"},
   "swe" {"official" "Förbundsrepubliken Nigeria", "common" "Nigeria"},
   "ces"
   {"official" "Nigerijská federativní republika", "common" "Nigérie"},
   "deu" {"official" "Bundesrepublik Nigeria", "common" "Nigeria"},
   "ara" {"official" "جمهورية نيجيريا الاتحادية", "common" "نيجيريا"},
   "urd" {"official" "وفاقی جمہوریہ نائجیریا", "common" "نائجیریا"},
   "srp"
   {"official" "Савезна Република Нигерија", "common" "Нигерија "},
   "tur"
   {"official" "Nijerya Federal Cumhuriyeti", "common" "Nijerya"},
   "pol"
   {"official" "Federalna Republika Nigerii", "common" "Nigeria"},
   "cym"
   {"official" "Federal Republic of Nigeria", "common" "Nigeria"},
   "hrv"
   {"official" "Savezna Republika Nigerija", "common" "Nigerija"},
   "spa"
   {"official" "República Federal de Nigeria", "common" "Nigeria"},
   "fin" {"official" "Nigerian liittotasavalta", "common" "Nigeria"},
   "per" {"official" "جمهوری فدرال نیجریه", "common" "نیجریه"},
   "nld" {"official" "Federale Republiek Nigeria", "common" "Nigeria"},
   "fra"
   {"official" "République fédérale du Nigeria", "common" "Nigéria"},
   "ita"
   {"official" "Repubblica federale di Nigeria", "common" "Nigeria"},
   "jpn" {"official" "ナイジェリア連邦共和国", "common" "ナイジェリア"},
   "est" {"official" "Nigeeria Liitvabariik", "common" "Nigeeria"},
   "por"
   {"official" "República Federal da Nigéria", "common" "Nigéria"},
   "slk"
   {"official" "Nigérijská federatívna republika", "common" "Nigéria"},
   "bre"
   {"official" "Republik Kevreadel Nigeria", "common" "Nigeria"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ng.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ng.png"},
  "idd" {"suffixes" ["34"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/ng.svg",
   "alt"
   "The flag of Nigeria is composed of three equal vertical bands of green, white and green.",
   "png" "https://flagcdn.com/w320/ng.png"},
  "unMember" true,
  "name"
  {"official" "Federal Republic of Nigeria",
   "nativeName"
   {"eng"
    {"official" "Federal Republic of Nigeria", "common" "Nigeria"}},
   "common" "Nigeria"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "######"},
  "capitalInfo" {"latlng" [9.08 7.53]},
  "tld" [".ng"],
  "ccn3" "566",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"eng" "English"},
  "cioc" "NGR",
  "currencies" {"NGN" {"name" "Nigerian naira", "symbol" "₦"}},
  "independent" true,
  "population" 206139587,
  "cca3" "NGA",
  "borders" ["BEN" "CMR" "TCD" "NER"],
  "capital" ["Abuja"],
  "car" {"signs" ["WAN"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇳🇬",
  "gini" {"2018" 35.1},
  "fifa" "NGA",
  "cca2" "NG"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [25.0343 -77.3963],
  "area" 13943.0,
  "altSpellings" ["BS" "Commonwealth of the Bahamas"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/1YzRs1BZrG8p8pmVA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/547469"},
  "demonyms"
  {"eng" {"f" "Bahamian", "m" "Bahamian"},
   "fra" {"f" "Bahamienne", "m" "Bahamien"}},
  "translations"
  {"kor" {"official" "바하마 연방", "common" "바하마"},
   "zho" {"official" "巴哈马联邦", "common" "巴哈马"},
   "hun" {"official" "Bahamai Közösség", "common" "Bahama-szigetek"},
   "rus"
   {"official" "Содружество Багамских Островов",
    "common" "Багамские Острова"},
   "swe" {"official" "Samväldet Bahamas", "common" "Bahamas"},
   "ces" {"official" "Bahamské společenství", "common" "Bahamy"},
   "deu" {"official" "Commonwealth der Bahamas", "common" "Bahamas"},
   "ara" {"official" "كومنولث جزر البهاما", "common" "باهاماس"},
   "urd" {"official" "دولتِ مشترکہ بہاماس", "common" "بہاماس"},
   "srp" {"official" "Комонвелт Бахама", "common" "Бахами"},
   "tur"
   {"official" "Bahama Milletler Topluluğu", "common" "Bahamalar"},
   "pol" {"official" "Bahamy", "common" "Bahamy"},
   "cym" {"official" "Cymanwlad y Bahamas", "common" "Bahamas"},
   "hrv" {"official" "Zajednica Bahama", "common" "Bahami"},
   "spa"
   {"official" "Commonwealth de las Bahamas", "common" "Bahamas"},
   "fin" {"official" "Bahaman liittovaltio", "common" "Bahamasaaret"},
   "per" {"official" "قلمرو همسود باهاما", "common" "باهاما"},
   "nld"
   {"official" "Gemenebest van de Bahama's", "common" "Bahama’s"},
   "fra" {"official" "Commonwealth des Bahamas", "common" "Bahamas"},
   "ita" {"official" "Commonwealth delle Bahamas", "common" "Bahamas"},
   "jpn" {"official" "バハマ", "common" "バハマ"},
   "est" {"official" "Bahama Ühendus", "common" "Bahama"},
   "por" {"official" "Comunidade das Bahamas", "common" "Bahamas"},
   "slk" {"official" "Bahamské spoločenstvo", "common" "Bahamy"},
   "bre" {"official" "Kenglad ar Bahamas", "common" "Bahamas"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/bs.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/bs.png"},
  "idd" {"suffixes" ["242"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/bs.svg",
   "alt"
   "The flag of the Bahamas is composed of three equal horizontal bands of aquamarine, yellow and aquamarine, with a black equilateral triangle superimposed on the hoist side of the field. This triangle has its base on the hoist end and spans about one-third the width of the field.",
   "png" "https://flagcdn.com/w320/bs.png"},
  "unMember" true,
  "name"
  {"official" "Commonwealth of the Bahamas",
   "nativeName"
   {"eng"
    {"official" "Commonwealth of the Bahamas", "common" "Bahamas"}},
   "common" "Bahamas"},
  "capitalInfo" {"latlng" [25.08 -77.35]},
  "tld" [".bs"],
  "ccn3" "044",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "cioc" "BAH",
  "currencies"
  {"BSD" {"name" "Bahamian dollar", "symbol" "$"},
   "USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" true,
  "population" 393248,
  "cca3" "BHS",
  "capital" ["Nassau"],
  "car" {"signs" ["BS"], "side" "left"},
  "timezones" ["UTC-05:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇧🇸",
  "fifa" "BAH",
  "cca2" "BS"}
 {"subregion" "Southeast Europe",
  "landlocked" true,
  "latlng" [42.666667 21.166667],
  "area" 10908.0,
  "altSpellings" ["XK" "Република Косово"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/CSC4Yc8SWPgburuD9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2088990"},
  "demonyms"
  {"eng" {"f" "Kosovar", "m" "Kosovar"},
   "fra" {"f" "Kosovare", "m" "Kosovar"}},
  "translations"
  {"kor" {"official" "코소보 공화국", "common" "코소보"},
   "zho" {"official" "科索沃共和国", "common" "科索沃"},
   "hun" {"official" "Koszovó", "common" "Koszovó"},
   "rus"
   {"official" "Республика Косово", "common" "Республика Косово"},
   "swe" {"official" "Republiken Kosovo", "common" "Kosovo"},
   "ces" {"official" "Kosovská republika", "common" "Kosovo"},
   "deu" {"official" "Republik Kosovo", "common" "Kosovo"},
   "ara" {"official" "جمهورية كوسوفو", "common" "كوسوفو"},
   "urd" {"official" "جمہوریہ کوسووہ", "common" "کوسووہ"},
   "srp" {"official" "Република Косово", "common" "Косово"},
   "tur" {"official" "Kosova Cumhuriyeti", "common" "Kosova"},
   "pol" {"official" "Republika Kosowa", "common" "Kosowo"},
   "cym" {"official" "Republic of Kosovo", "common" "Kosovo"},
   "hrv" {"official" "Republika Kosovo", "common" "Kosovo"},
   "spa" {"official" "República de Kosovo", "common" "Kosovo"},
   "fin" {"official" "Kosovon tasavalta", "common" "Kosovo"},
   "per" {"official" "جمهوری کوزوو", "common" "کوزوو"},
   "nld" {"official" "Republiek Kosovo", "common" "Kosovo"},
   "fra" {"official" "République du Kosovo", "common" "Kosovo"},
   "ita" {"official" "Repubblica del Kosovo", "common" "Kosovo"},
   "est" {"official" "Kosovo Vabariik", "common" "Kosovo"},
   "por" {"official" "República do Kosovo", "common" "Kosovo"},
   "slk" {"official" "Republika Kosovo", "common" "Kosovo"},
   "bre" {"official" "Republik Kosovo", "common" "Kosovo"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/xk.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/xk.png"},
  "idd" {"suffixes" ["83"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/xk.svg",
   "png" "https://flagcdn.com/w320/xk.png"},
  "unMember" false,
  "name"
  {"official" "Republic of Kosovo",
   "nativeName"
   {"sqi" {"official" "Republika e Kosovës", "common" "Kosova"},
    "srp" {"official" "Република Косово", "common" "Косово"}},
   "common" "Kosovo"},
  "capitalInfo" {"latlng" [42.67 21.17]},
  "status" "user-assigned",
  "region" "Europe",
  "languages" {"sqi" "Albanian", "srp" "Serbian"},
  "cioc" "KOS",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "population" 1775378,
  "cca3" "UNK",
  "borders" ["ALB" "MKD" "MNE" "SRB"],
  "capital" ["Pristina"],
  "car" {"signs" ["CS"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇽🇰",
  "gini" {"2017" 29.0},
  "fifa" "KVX",
  "cca2" "XK"}
 {"subregion" "Western Asia",
  "landlocked" false,
  "latlng" [29.5 45.75],
  "area" 17818.0,
  "altSpellings" ["KW" "State of Kuwait" "Dawlat al-Kuwait"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/aqr3aNQjS1BAvksJ7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/305099"},
  "demonyms"
  {"eng" {"f" "Kuwaiti", "m" "Kuwaiti"},
   "fra" {"f" "Koweïtienne", "m" "Koweïtien"}},
  "translations"
  {"kor" {"official" "쿠웨이트국", "common" "쿠웨이트"},
   "zho" {"official" "科威特国", "common" "科威特"},
   "hun" {"official" "Kuvaiti Állam", "common" "Kuvait"},
   "rus" {"official" "Государство Кувейт", "common" "Кувейт"},
   "swe" {"official" "Staten Kuwait", "common" "Kuwait"},
   "ces" {"official" "Stát Kuvajt", "common" "Kuvajt"},
   "deu" {"official" "Staat Kuwait", "common" "Kuwait"},
   "ara" {"official" "دولة الكويت", "common" "الكويت"},
   "urd" {"official" "دولتِ کویت", "common" "کویت"},
   "srp" {"official" "Држава Кувајт", "common" "Кувајт"},
   "tur" {"official" "Kuveyt Devleti", "common" "Kuveyt"},
   "pol" {"official" "Państwo Kuwejt", "common" "Kuwejt"},
   "cym" {"official" "State of Kuwait", "common" "Kuwait"},
   "hrv" {"official" "Država Kuvajt", "common" "Kuvajt"},
   "spa" {"official" "Estado de Kuwait", "common" "Kuwait"},
   "fin" {"official" "Kuwaitin valtio", "common" "Kuwait"},
   "per" {"official" "دولت کویت", "common" "کُویت"},
   "nld" {"official" "Staat Koeweit", "common" "Koeweit"},
   "fra" {"official" "État du Koweït", "common" "Koweït"},
   "ita" {"official" "Stato del Kuwait", "common" "Kuwait"},
   "jpn" {"official" "クウェート国", "common" "クウェート"},
   "est" {"official" "Kuveidi Riik", "common" "Kuveit"},
   "por" {"official" "Estado do Kuwait", "common" "Kuwait"},
   "slk" {"official" "Kuvajtský štát", "common" "Kuvajt"},
   "bre" {"official" "Stad Koweit", "common" "Koweit"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/kw.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/kw.png"},
  "idd" {"suffixes" ["65"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/kw.svg",
   "alt"
   "The flag of Kuwait is composed of three equal horizontal bands of green, white and red, with a black trapezium superimposed on the hoist side of the field. This trapezium has its base on the hoist end and spans about one-fourth the width of the field.",
   "png" "https://flagcdn.com/w320/kw.png"},
  "unMember" true,
  "name"
  {"official" "State of Kuwait",
   "nativeName" {"ara" {"official" "دولة الكويت", "common" "الكويت"}},
   "common" "Kuwait"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [29.37 47.97]},
  "tld" [".kw"],
  "ccn3" "414",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"ara" "Arabic"},
  "cioc" "KUW",
  "currencies" {"KWD" {"name" "Kuwaiti dinar", "symbol" "د.ك"}},
  "independent" true,
  "population" 4270563,
  "cca3" "KWT",
  "borders" ["IRQ" "SAU"],
  "capital" ["Kuwait City"],
  "car" {"signs" ["KWT"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "sunday",
  "continents" ["Asia"],
  "flag" "🇰🇼",
  "fifa" "KUW",
  "cca2" "KW"}
 {"subregion" "Southern Asia",
  "landlocked" false,
  "latlng" [3.25 73.0],
  "area" 300.0,
  "altSpellings"
  ["MV"
   "Maldive Islands"
   "Republic of the Maldives"
   "Dhivehi Raajjeyge Jumhooriyya"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/MNAWGq9vEdbZ9vUV7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/536773"},
  "demonyms"
  {"eng" {"f" "Maldivan", "m" "Maldivan"},
   "fra" {"f" "Maldivienne", "m" "Maldivien"}},
  "translations"
  {"kor" {"official" "몰디브 공화국", "common" "몰디브"},
   "zho" {"official" "马尔代夫共和国", "common" "马尔代夫"},
   "hun" {"official" "Maldív-szigetek", "common" "Maldív-szigetek"},
   "rus" {"official" "Республика Мальдивы", "common" "Мальдивы"},
   "swe" {"official" "Republiken Maldiverna", "common" "Maldiverna"},
   "ces" {"official" "Maledivská republika", "common" "Maledivy"},
   "deu" {"official" "Republik Malediven", "common" "Malediven"},
   "ara" {"official" "جمهورية المالديف", "common" "المالديف"},
   "urd" {"official" "جمہوریہ مالدیپ", "common" "مالدیپ"},
   "srp" {"official" "Малдивска Република", "common" "Малдиви"},
   "tur" {"official" "Maldivler Cumhuriyeti", "common" "Maldivler"},
   "pol" {"official" "Republika Malediwów", "common" "Malediwy"},
   "cym" {"official" "Republic of the Maldives", "common" "Maldives"},
   "hrv" {"official" "Republika Maldivi", "common" "Maldivi"},
   "spa" {"official" "República de las Maldivas", "common" "Maldivas"},
   "fin" {"official" "Malediivien tasavalta", "common" "Malediivit"},
   "per" {"official" "جمهوری مالدیو", "common" "مالدیو"},
   "nld"
   {"official" "Republiek van de Malediven", "common" "Maldiven"},
   "fra" {"official" "République des Maldives", "common" "Maldives"},
   "ita" {"official" "Repubblica delle Maldive", "common" "Maldive"},
   "jpn" {"official" "モルディブ共和国", "common" "モルディブ"},
   "est" {"official" "Maldiivi Vabariik", "common" "Maldiivid"},
   "por" {"official" "República das Maldivas", "common" "Maldivas"},
   "slk" {"official" "Maldivská republika", "common" "Maldivy"},
   "bre" {"official" "Republik Maldivez", "common" "Maldivez"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/mv.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/mv.png"},
  "idd" {"suffixes" ["60"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/mv.svg",
   "alt"
   "The flag of Maldives has a red field, at the center of which is a large green rectangle bearing a fly-side facing white crescent.",
   "png" "https://flagcdn.com/w320/mv.png"},
  "unMember" true,
  "name"
  {"official" "Republic of the Maldives",
   "nativeName"
   {"div"
    {"official" "ދިވެހިރާއްޖޭގެ ޖުމްހޫރިއްޔާ",
     "common" "ދިވެހިރާއްޖޭގެ"}},
   "common" "Maldives"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [4.17 73.51]},
  "tld" [".mv"],
  "ccn3" "462",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"div" "Maldivian"},
  "cioc" "MDV",
  "currencies" {"MVR" {"name" "Maldivian rufiyaa", "symbol" ".ރ"}},
  "independent" true,
  "population" 540542,
  "cca3" "MDV",
  "capital" ["Malé"],
  "car" {"signs" ["MV"], "side" "left"},
  "timezones" ["UTC+05:00"],
  "startOfWeek" "sunday",
  "continents" ["Asia"],
  "flag" "🇲🇻",
  "gini" {"2016" 31.3},
  "fifa" "MDV",
  "cca2" "MV"}
 {"subregion" "Middle Africa",
  "landlocked" true,
  "latlng" [7.0 30.0],
  "area" 619745.0,
  "altSpellings" ["SS"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/Zm1AYCXb9HSNF1P27",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1656678"},
  "demonyms"
  {"eng" {"f" "South Sudanese", "m" "South Sudanese"},
   "fra" {"f" "Sud-Soudanaise", "m" "Sud-Soudanais"}},
  "translations"
  {"kor" {"official" "남수단 공화국", "common" "남수단"},
   "zho" {"official" "南苏丹共和国", "common" "南苏丹"},
   "hun" {"official" "Dél-szudáni Köztársaság", "common" "Dél-Szudán"},
   "rus" {"official" "Республика Южный Судан", "common" "Южный Судан"},
   "swe" {"official" "Republiken Sydsudan", "common" "Sydsudan"},
   "ces" {"official" "Jihosúdánská republika", "common" "Jižní Súdán"},
   "deu" {"official" "Republik Südsudan", "common" "Südsudan"},
   "ara" {"official" "جمهورية جنوب السودان", "common" "جنوب السودان"},
   "urd" {"official" "جمہوریہ جنوبی سوڈان", "common" "جنوبی سوڈان"},
   "srp" {"official" "Република Јужни Судан", "common" "Јужни Судан"},
   "tur"
   {"official" "Güney Sudan Cumhuriyeti", "common" "Güney Sudan"},
   "pol" {"official" "Republika Sudanu", "common" "Sudan"},
   "cym"
   {"official" "Republic of South Sudan", "common" "South Sudan"},
   "hrv" {"official" "Republika Južni Sudan", "common" "Južni Sudan"},
   "spa"
   {"official" "República de Sudán del Sur", "common" "Sudán del Sur"},
   "fin"
   {"official" "Etelä-Sudanin tasavalta", "common" "Etelä-Sudan"},
   "per" {"official" "جمهوری سودان جنوبی", "common" "سودان جنوبی"},
   "nld" {"official" "Republiek Zuid-Soedan", "common" "Zuid-Soedan"},
   "fra"
   {"official" "République du Soudan du Sud",
    "common" "Soudan du Sud"},
   "ita"
   {"official" "Repubblica del Sudan del Sud",
    "common" "Sudan del sud"},
   "jpn" {"official" "南スーダン共和国", "common" "南スーダン"},
   "est"
   {"official" "Lõuna-Sudaani Vabariik", "common" "Lõuna-Sudaan"},
   "por"
   {"official" "República do Sudão do Sul", "common" "Sudão do Sul"},
   "slk" {"official" "Juhosudánska republika", "common" "Južný Sudán"},
   "bre"
   {"official" "Republik Soudan ar Su", "common" "Soudan ar Su"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ss.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ss.png"},
  "idd" {"suffixes" ["11"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/ss.svg",
   "alt"
   "The flag of South Sudan is composed of three equal horizontal bands of black, red with white top and bottom edges, and green. A blue equilateral triangle which spans about two-fifth the width of the field is superimposed on the hoist side with its base on the hoist end of the field. At the center of this triangle is a five-pointed yellow star.",
   "png" "https://flagcdn.com/w320/ss.png"},
  "unMember" true,
  "name"
  {"official" "Republic of South Sudan",
   "nativeName"
   {"eng"
    {"official" "Republic of South Sudan", "common" "South Sudan"}},
   "common" "South Sudan"},
  "capitalInfo" {"latlng" [4.85 31.62]},
  "tld" [".ss"],
  "ccn3" "728",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"eng" "English"},
  "cioc" "SSD",
  "currencies" {"SSP" {"name" "South Sudanese pound", "symbol" "£"}},
  "independent" true,
  "population" 11193729,
  "cca3" "SSD",
  "borders" ["CAF" "COD" "ETH" "KEN" "SDN" "UGA"],
  "capital" ["Juba"],
  "car" {"signs" [""], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "sunday",
  "continents" ["Africa"],
  "flag" "🇸🇸",
  "gini" {"2016" 44.1},
  "fifa" "SSD",
  "cca2" "SS"}
 {"subregion" "Southern Asia",
  "landlocked" false,
  "latlng" [32.0 53.0],
  "area" 1648195.0,
  "altSpellings"
  ["IR"
   "Islamic Republic of Iran"
   "Iran, Islamic Republic of"
   "Jomhuri-ye Eslāmi-ye Irān"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/dMgEGuacBPGYQnjY7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/304938"},
  "demonyms"
  {"eng" {"f" "Iranian", "m" "Iranian"},
   "fra" {"f" "Iranienne", "m" "Iranien"}},
  "translations"
  {"kor" {"official" "이란 이슬람 공화국", "common" "이란"},
   "zho" {"official" "伊朗伊斯兰共和国", "common" "伊朗"},
   "hun" {"official" "Iráni Iszlám Köztársaság", "common" "Irán"},
   "rus" {"official" "Исламская Республика Иран", "common" "Иран"},
   "swe" {"official" "Islamiska republiken Iran", "common" "Iran"},
   "ces" {"official" "Islámská republika Írán", "common" "Írán"},
   "deu" {"official" "Islamische Republik Iran", "common" "Iran"},
   "ara" {"official" "جمهورية إيران الإسلامية", "common" "إيران"},
   "urd" {"official" "جمہوریہ ایران", "common" "ایران"},
   "srp" {"official" "Исламска Република Иран", "common" "Иран"},
   "tur" {"official" "İran İslam Cumhuriyeti", "common" "İran"},
   "pol" {"official" "Islamska Republika Iranu", "common" "Iran"},
   "cym" {"official" "Islamic Republic of Iran", "common" "Iran"},
   "hrv" {"official" "Islamska Republika Iran", "common" "Iran"},
   "spa" {"official" "República Islámica de Irán", "common" "Iran"},
   "fin" {"official" "Iranin islamilainen tasavalta", "common" "Iran"},
   "nld" {"official" "Islamitische Republiek Iran", "common" "Iran"},
   "fra" {"official" "République islamique d'Iran", "common" "Iran"},
   "ita" {"official" "Repubblica islamica dell'Iran", "common" "Iran"},
   "jpn" {"official" "イラン·イスラム共和国", "common" "イラン・イスラム共和国"},
   "est" {"official" "Iraani Islamivabariik", "common" "Iraan"},
   "por" {"official" "República Islâmica do Irã", "common" "Irão"},
   "slk" {"official" "Iránska islamská republika", "common" "Irán"},
   "bre" {"official" "Republik Islamek Iran", "common" "Iran"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ir.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ir.png"},
  "idd" {"suffixes" ["8"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/ir.svg",
   "alt"
   "The flag of Iran is composed of three equal horizontal bands of green, white and red. A red emblem of Iran is centered in the white band and Arabic inscriptions in white span the bottom edge of the green band and the top edge of the red band.",
   "png" "https://flagcdn.com/w320/ir.png"},
  "unMember" true,
  "name"
  {"official" "Islamic Republic of Iran",
   "nativeName"
   {"fas" {"official" "جمهوری اسلامی ایران", "common" "ایران"}},
   "common" "Iran"},
  "postalCode" {"regex" "^(\\d{10})$", "format" "##########"},
  "capitalInfo" {"latlng" [35.7 51.42]},
  "tld" [".ir" "ایران."],
  "ccn3" "364",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"fas" "Persian (Farsi)"},
  "cioc" "IRI",
  "currencies" {"IRR" {"name" "Iranian rial", "symbol" "﷼"}},
  "independent" true,
  "population" 83992953,
  "cca3" "IRN",
  "borders" ["AFG" "ARM" "AZE" "IRQ" "PAK" "TUR" "TKM"],
  "capital" ["Tehran"],
  "car" {"signs" ["IR"], "side" "right"},
  "timezones" ["UTC+03:30"],
  "startOfWeek" "saturday",
  "continents" ["Asia"],
  "flag" "🇮🇷",
  "gini" {"2018" 42.0},
  "fifa" "IRN",
  "cca2" "IR"}
 {"subregion" "Southeast Europe",
  "landlocked" false,
  "latlng" [41.0 20.0],
  "area" 28748.0,
  "altSpellings" ["AL" "Shqipëri" "Shqipëria" "Shqipnia"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/BzN9cTuj68ZA8SyZ8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/53292"},
  "demonyms"
  {"eng" {"f" "Albanian", "m" "Albanian"},
   "fra" {"f" "Albanaise", "m" "Albanais"}},
  "translations"
  {"kor" {"official" "알바니아 공화국", "common" "알바니아"},
   "zho" {"official" "阿尔巴尼亚共和国", "common" "阿尔巴尼亚"},
   "hun" {"official" "Albán Köztársaság", "common" "Albánia"},
   "rus" {"official" "Республика Албания", "common" "Албания"},
   "swe" {"official" "Republiken Albanien", "common" "Albanien"},
   "ces" {"official" "Albánská republika", "common" "Albánie"},
   "deu" {"official" "Republik Albanien", "common" "Albanien"},
   "ara" {"official" "جمهورية ألبانيا", "common" "ألبانيا"},
   "urd" {"official" "جمہوریہ البانیا", "common" "البانیا"},
   "srp" {"official" "Република Албанија", "common" "Албанија"},
   "tur" {"official" "Arnavutluk Cumhuriyeti", "common" "Arnavutluk"},
   "pol" {"official" "Republika Albanii", "common" "Albania"},
   "cym" {"official" "Gweriniaeth Albania", "common" "Albania"},
   "hrv" {"official" "Republika Albanija", "common" "Albanija"},
   "spa" {"official" "República de Albania", "common" "Albania"},
   "fin" {"official" "Albanian tasavalta", "common" "Albania"},
   "per" {"official" "جمهوری آلبانی", "common" "آلبانی"},
   "nld" {"official" "Republiek Albanië", "common" "Albanië"},
   "fra" {"official" "République d'Albanie", "common" "Albanie"},
   "ita" {"official" "Repubblica d'Albania", "common" "Albania"},
   "jpn" {"official" "アルバニア共和国", "common" "アルバニア"},
   "est" {"official" "Albaania Vabariik", "common" "Albaania"},
   "por" {"official" "República da Albânia", "common" "Albânia"},
   "slk" {"official" "Albánska republika", "common" "Albánsko"},
   "bre" {"official" "Republik Albania", "common" "Albania"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/al.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/al.png"},
  "idd" {"suffixes" ["55"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/al.svg",
   "alt"
   "The flag of Albania features a silhouetted double-headed black eagle at the center of a red field.",
   "png" "https://flagcdn.com/w320/al.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Albania",
   "nativeName"
   {"sqi" {"official" "Republika e Shqipërisë", "common" "Shqipëria"}},
   "common" "Albania"},
  "capitalInfo" {"latlng" [41.32 19.82]},
  "tld" [".al"],
  "ccn3" "008",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"sqi" "Albanian"},
  "cioc" "ALB",
  "currencies" {"ALL" {"name" "Albanian lek", "symbol" "L"}},
  "independent" true,
  "population" 2837743,
  "cca3" "ALB",
  "borders" ["MNE" "GRC" "MKD" "UNK"],
  "capital" ["Tirana"],
  "car" {"signs" ["AL"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇦🇱",
  "gini" {"2017" 33.2},
  "fifa" "ALB",
  "cca2" "AL"}
 {"subregion" "South America",
  "landlocked" false,
  "latlng" [-10.0 -55.0],
  "area" 8515767.0,
  "altSpellings"
  ["BR"
   "Brasil"
   "Federative Republic of Brazil"
   "República Federativa do Brasil"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/waCKk21HeeqFzkNC9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/59470"},
  "demonyms"
  {"eng" {"f" "Brazilian", "m" "Brazilian"},
   "fra" {"f" "Brésilienne", "m" "Brésilien"}},
  "translations"
  {"kor" {"official" "브라질 연방 공화국", "common" "브라질"},
   "zho" {"official" "巴西联邦共和国", "common" "巴西"},
   "hun"
   {"official" "Brazil Szövetségi Köztársaság", "common" "Brazília"},
   "rus"
   {"official" "Федеративная Республика Бразилия",
    "common" "Бразилия"},
   "swe"
   {"official" "Förbundsrepubliken Brasilien", "common" "Brasilien"},
   "ces"
   {"official" "Brazilská federativní republika", "common" "Brazílie"},
   "deu"
   {"official" "Föderative Republik Brasilien", "common" "Brasilien"},
   "ara"
   {"official" "جمهورية البرازيل الاتحادية", "common" "البرازيل"},
   "urd" {"official" "وفاقی جمہوریہ برازیل", "common" "برازیل"},
   "srp" {"official" "Савезна Република Бразил", "common" "Бразил"},
   "tur"
   {"official" "Brezilya Federal Cumhuriyeti", "common" "Brezilya"},
   "pol"
   {"official" "Federacyjna Republika Brazylii", "common" "Brazylia"},
   "cym" {"official" "Gweriniaeth Ffederal Brasil", "common" "Brasil"},
   "hrv" {"official" "Savezne Republike Brazil", "common" "Brazil"},
   "spa"
   {"official" "República Federativa del Brasil", "common" "Brasil"},
   "fin" {"official" "Brasilian liittotasavalta", "common" "Brasilia"},
   "per" {"official" "جمهوری فدراتیو برزیل", "common" "برزیل"},
   "nld"
   {"official" "Federale Republiek Brazilië", "common" "Brazilië"},
   "fra"
   {"official" "République fédérative du Brésil", "common" "Brésil"},
   "ita"
   {"official" "Repubblica federativa del Brasile",
    "common" "Brasile"},
   "jpn" {"official" "ブラジル連邦共和国", "common" "ブラジル"},
   "est" {"official" "Brasiilia Liitvabariik", "common" "Brasiilia"},
   "por"
   {"official" "República Federativa do Brasil", "common" "Brasil"},
   "slk"
   {"official" "Brazílska federatívna republika", "common" "Brazília"},
   "bre" {"official" "Republik Kevreel Brazil", "common" "Brazil"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/br.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/br.png"},
  "idd" {"suffixes" ["5"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/br.svg",
   "alt"
   "The flag of Brazil has a green field with a large yellow rhombus in the center. Within the rhombus is a dark blue globe with twenty-seven small five-pointed white stars depicting a starry sky and a thin white convex horizontal band inscribed with the national motto 'Ordem e Progresso' across its center.",
   "png" "https://flagcdn.com/w320/br.png"},
  "unMember" true,
  "name"
  {"official" "Federative Republic of Brazil",
   "nativeName"
   {"por"
    {"official" "República Federativa do Brasil", "common" "Brasil"}},
   "common" "Brazil"},
  "postalCode" {"regex" "^(\\d{8})$", "format" "#####-###"},
  "capitalInfo" {"latlng" [-15.79 -47.88]},
  "tld" [".br"],
  "ccn3" "076",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"por" "Portuguese"},
  "cioc" "BRA",
  "currencies" {"BRL" {"name" "Brazilian real", "symbol" "R$"}},
  "independent" true,
  "population" 212559409,
  "cca3" "BRA",
  "borders"
  ["ARG" "BOL" "COL" "GUF" "GUY" "PRY" "PER" "SUR" "URY" "VEN"],
  "capital" ["Brasília"],
  "car" {"signs" ["BR"], "side" "right"},
  "timezones" ["UTC-05:00" "UTC-04:00" "UTC-03:00" "UTC-02:00"],
  "startOfWeek" "monday",
  "continents" ["South America"],
  "flag" "🇧🇷",
  "gini" {"2019" 53.4},
  "fifa" "BRA",
  "cca2" "BR"}
 {"subregion" "Southeast Europe",
  "landlocked" true,
  "latlng" [44.0 21.0],
  "area" 88361.0,
  "altSpellings"
  ["RS"
   "Srbija"
   "Republic of Serbia"
   "Република Србија"
   "Republika Srbija"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/2Aqof7aV2Naq8YEK8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1741311"},
  "demonyms"
  {"eng" {"f" "Serbian", "m" "Serbian"},
   "fra" {"f" "Serbe", "m" "Serbe"}},
  "translations"
  {"kor" {"official" "세르비아 공화국", "common" "세르비아"},
   "zho" {"official" "塞尔维亚共和国", "common" "塞尔维亚"},
   "hun" {"official" "Szerb Köztársaság", "common" "Szerbia"},
   "rus" {"official" "Республика Сербия", "common" "Сербия"},
   "swe" {"official" "Republiken Serbien", "common" "Serbien"},
   "ces" {"official" "Srbská republika", "common" "Srbsko"},
   "deu" {"official" "Republik Serbien", "common" "Serbien"},
   "ara" {"official" "جمهورية صيربيا", "common" "صيربيا"},
   "urd" {"official" "جمہوریہ سربیا", "common" "سربیا"},
   "srp" {"official" "Република Србија", "common" "Србија"},
   "tur" {"official" "Sırbistan Cumhuriyeti", "common" "Sırbistan"},
   "pol" {"official" "Republika Serbii", "common" "Serbia"},
   "cym" {"official" "Republic of Serbia", "common" "Serbia"},
   "hrv" {"official" "Republika Srbija", "common" "Srbija"},
   "spa" {"official" "República de Serbia", "common" "Serbia"},
   "fin" {"official" "Serbian tasavalta", "common" "Serbia"},
   "per" {"official" "جمهوری صربستان", "common" "صربستان"},
   "nld" {"official" "Republiek Servië", "common" "Servië"},
   "fra" {"official" "République de Serbie", "common" "Serbie"},
   "ita" {"official" "Repubblica di Serbia", "common" "Serbia"},
   "jpn" {"official" "セルビア共和国", "common" "セルビア"},
   "est" {"official" "Serbia Vabariik", "common" "Serbia"},
   "por" {"official" "República da Sérvia", "common" "Sérvia"},
   "slk" {"official" "Srbská republika", "common" "Srbsko"},
   "bre" {"official" "Republik Serbia", "common" "Serbia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/rs.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/rs.png"},
  "idd" {"suffixes" ["81"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/rs.svg",
   "alt"
   "The flag of Serbia is composed of three equal horizontal bands of red, blue and white. The coat of arms of Serbia is superimposed at the center of the field slightly towards the hoist side.",
   "png" "https://flagcdn.com/w320/rs.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Serbia",
   "nativeName"
   {"srp" {"official" "Република Србија", "common" "Србија"}},
   "common" "Serbia"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "######"},
  "capitalInfo" {"latlng" [44.83 20.5]},
  "tld" [".rs" ".срб"],
  "ccn3" "688",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"srp" "Serbian"},
  "cioc" "SRB",
  "currencies" {"RSD" {"name" "Serbian dinar", "symbol" "дин."}},
  "independent" true,
  "population" 6908224,
  "cca3" "SRB",
  "borders" ["BIH" "BGR" "HRV" "HUN" "UNK" "MKD" "MNE" "ROU"],
  "capital" ["Belgrade"],
  "car" {"signs" ["SRB"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇷🇸",
  "gini" {"2017" 36.2},
  "fifa" "SRB",
  "cca2" "RS"}
 {"subregion" "Central America",
  "landlocked" false,
  "latlng" [17.25 -88.75],
  "area" 22966.0,
  "altSpellings" ["BZ"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/jdCccpdLodm1uTmo9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/287827"},
  "demonyms"
  {"eng" {"f" "Belizean", "m" "Belizean"},
   "fra" {"f" "Bélizienne", "m" "Bélizien"}},
  "translations"
  {"kor" {"official" "벨리즈", "common" "벨리즈"},
   "zho" {"official" "伯利兹", "common" "伯利兹"},
   "hun" {"official" "Belize", "common" "Belize"},
   "rus" {"official" "Белиз", "common" "Белиз"},
   "swe" {"official" "Belize", "common" "Belize"},
   "ces" {"official" "Belize", "common" "Belize"},
   "deu" {"official" "Belize", "common" "Belize"},
   "ara" {"official" "بليز", "common" "بليز"},
   "urd" {"official" "بیلیز", "common" "بیلیز"},
   "srp" {"official" "Белизе", "common" "Белизе"},
   "tur" {"official" "Belize", "common" "Belize"},
   "pol" {"official" "Belize", "common" "Belize"},
   "cym" {"official" "Belîs", "common" "Belîs"},
   "hrv" {"official" "Belize", "common" "Belize"},
   "spa" {"official" "Belice", "common" "Belice"},
   "fin" {"official" "Belize", "common" "Belize"},
   "per" {"official" "بلیز", "common" "بلیز"},
   "nld" {"official" "Belize", "common" "Belize"},
   "fra" {"official" "Belize", "common" "Belize"},
   "ita" {"official" "Belize", "common" "Belize"},
   "jpn" {"official" "ベリーズ", "common" "ベリーズ"},
   "est" {"official" "Belize", "common" "Belize"},
   "por" {"official" "Belize", "common" "Belize"},
   "slk" {"official" "Belize", "common" "Belize"},
   "bre" {"official" "Belize", "common" "Belize"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/bz.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/bz.png"},
  "idd" {"suffixes" ["01"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/bz.svg",
   "alt"
   "The flag of Belize has a royal blue field with a thin red horizontal band at the top and bottom of the field and the national coat of arms in the center.",
   "png" "https://flagcdn.com/w320/bz.png"},
  "unMember" true,
  "name"
  {"official" "Belize",
   "nativeName"
   {"eng" {"official" "Belize", "common" "Belize"},
    "spa" {"official" "Belice", "common" "Belice"},
    "bjz" {"official" "Belize", "common" "Belize"}},
   "common" "Belize"},
  "capitalInfo" {"latlng" [17.25 -88.77]},
  "tld" [".bz"],
  "ccn3" "084",
  "status" "officially-assigned",
  "region" "Americas",
  "languages"
  {"eng" "English", "spa" "Spanish", "bjz" "Belizean Creole"},
  "cioc" "BIZ",
  "currencies" {"BZD" {"name" "Belize dollar", "symbol" "$"}},
  "independent" true,
  "population" 397621,
  "cca3" "BLZ",
  "borders" ["GTM" "MEX"],
  "capital" ["Belmopan"],
  "car" {"signs" ["BH"], "side" "right"},
  "timezones" ["UTC-06:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇧🇿",
  "gini" {"1999" 53.3},
  "fifa" "BLZ",
  "cca2" "BZ"}
 {"subregion" "South-Eastern Asia",
  "landlocked" false,
  "latlng" [22.0 98.0],
  "area" 676578.0,
  "altSpellings"
  ["MM"
   "Burma"
   "Republic of the Union of Myanmar"
   "Pyidaunzu Thanmăda Myăma Nainngandaw"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/4jrZyJkDERUfHyp26",
   "openStreetMaps" "https://www.openstreetmap.org/relation/50371"},
  "demonyms"
  {"eng" {"f" "Burmese", "m" "Burmese"},
   "fra" {"f" "Birmane", "m" "Birman"}},
  "translations"
  {"kor" {"official" "미얀마 연방 공화국", "common" "미얀마"},
   "zho" {"official" "缅甸联邦共和国", "common" "缅甸"},
   "hun"
   {"official" "Mianmari Államszövetség Köztársasága",
    "common" "Mianmar"},
   "rus" {"official" "Республика Союза Мьянма", "common" "Мьянма"},
   "swe" {"official" "Republiken Unionen Myanmar", "common" "Myanmar"},
   "ces" {"official" "Republika Myanmarský svaz", "common" "Myanmar"},
   "deu" {"official" "Republik der Union Myanmar", "common" "Myanmar"},
   "ara" {"official" "جمهورية اتحاد ميانمار", "common" "ميانمار"},
   "urd" {"official" "متحدہ جمہوریہ میانمار", "common" "میانمار"},
   "srp" {"official" "Република Савез Мјанмара", "common" "Мјанмар"},
   "tur"
   {"official" "Myanmar Birliği Cumhuriyeti", "common" "Myanmar"},
   "pol" {"official" "Republika Związku Mjanmy", "common" "Mjanma"},
   "cym"
   {"official" "Republic of the Union of Myanmar", "common" "Myanmar"},
   "hrv" {"official" "Republika Unije Mijanmar", "common" "Mijanmar"},
   "spa"
   {"official" "República de la Unión de Myanmar", "common" "Myanmar"},
   "fin" {"official" "Myanmarin liiton tasavalta", "common" "Myanmar"},
   "per" {"official" "اتحادیه جمهوری میانمار", "common" "میانمار"},
   "nld"
   {"official" "Republiek van de Unie van Myanmar",
    "common" "Myanmar"},
   "fra"
   {"official" "République de l'Union du Myanmar",
    "common" "Birmanie"},
   "ita"
   {"official" "Repubblica dell'Unione di Myanmar",
    "common" "Birmania"},
   "jpn" {"official" "ミャンマー連邦共和国", "common" "ミャンマー"},
   "est" {"official" "Myanmari Liidu Vabariik", "common" "Myanmar"},
   "por"
   {"official" "República da União de Myanmar", "common" "Myanmar"},
   "slk"
   {"official" "Mjanmarská zväzová republika", "common" "Mjanmarsko"},
   "bre" {"official" "Republik Unaniezh Myanmar", "common" "Myanmar"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/mm.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/mm.png"},
  "idd" {"suffixes" ["5"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/mm.svg",
   "alt"
   "The flag of Myanmar is composed of three equal horizontal bands of yellow, green and red, with a large five-pointed white star superimposed at the center of the field.",
   "png" "https://flagcdn.com/w320/mm.png"},
  "unMember" true,
  "name"
  {"official" "Republic of the Union of Myanmar",
   "nativeName"
   {"mya"
    {"official" "ပြည်ထောင်စု သမ္မတ မြန်မာနိုင်ငံတော်",
     "common" "မြန်မာ"}},
   "common" "Myanmar"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [19.76 96.07]},
  "tld" [".mm"],
  "ccn3" "104",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"mya" "Burmese"},
  "cioc" "MYA",
  "currencies" {"MMK" {"name" "Burmese kyat", "symbol" "Ks"}},
  "independent" true,
  "population" 54409794,
  "cca3" "MMR",
  "borders" ["BGD" "CHN" "IND" "LAO" "THA"],
  "capital" ["Naypyidaw"],
  "car" {"signs" ["BUR"], "side" "right"},
  "timezones" ["UTC+06:30"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇲🇲",
  "gini" {"2017" 30.7},
  "fifa" "MYA",
  "cca2" "MM"}
 {"subregion" "Southern Asia",
  "landlocked" true,
  "latlng" [27.5 90.5],
  "area" 38394.0,
  "altSpellings" ["BT" "Kingdom of Bhutan"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/VEfXXBftTFLUpNgp8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/184629"},
  "demonyms"
  {"eng" {"f" "Bhutanese", "m" "Bhutanese"},
   "fra" {"f" "Bhoutanaise", "m" "Bhoutanais"}},
  "translations"
  {"kor" {"official" "부탄 왕국", "common" "부탄"},
   "zho" {"official" "不丹王国", "common" "不丹"},
   "hun" {"official" "Bhutáni Királyság", "common" "Bhután"},
   "rus" {"official" "Королевство Бутан", "common" "Бутан"},
   "swe" {"official" "Konungariket Bhutan", "common" "Bhutan"},
   "ces" {"official" "Bhútánské království", "common" "Bhútán"},
   "deu" {"official" "Königreich Bhutan", "common" "Bhutan"},
   "ara" {"official" "مملكة بوتان", "common" "بوتان"},
   "urd" {"official" "سلطنت بھوٹان", "common" "بھوٹان"},
   "srp" {"official" "Краљевина Бутан", "common" "Бутан"},
   "tur" {"official" "Butan Krallığı", "common" "Butan"},
   "pol" {"official" "Bhutan", "common" "Bhutan"},
   "cym" {"official" "Teyrnas Bhwtan", "common" "Bhwtan"},
   "hrv" {"official" "Kraljevina Butan", "common" "Butan"},
   "spa" {"official" "Reino de Bután", "common" "Bután"},
   "fin" {"official" "Bhutanin kuningaskunta", "common" "Bhutan"},
   "per" {"official" "پادشاهی بوتان", "common" "بوتان"},
   "nld" {"official" "Koninkrijk Bhutan", "common" "Bhutan"},
   "fra" {"official" "Royaume du Bhoutan", "common" "Bhoutan"},
   "ita" {"official" "Regno del Bhutan", "common" "Bhutan"},
   "jpn" {"official" "ブータン王国", "common" "ブータン"},
   "est" {"official" "Bhutani Kuningriik", "common" "Bhutan"},
   "por" {"official" "Reino do Butão", "common" "Butão"},
   "slk" {"official" "Bhutánske krâľovstvo", "common" "Bhután"},
   "bre" {"official" "Rouantelezh Bhoutan", "common" "Bhoutan"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/bt.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/bt.png"},
  "idd" {"suffixes" ["75"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/bt.svg",
   "alt"
   "The flag of Bhutan is divided diagonally, from the lower hoist-side corner to the upper fly-side corner, into an upper yellow and a lower orange triangle. A fly-side facing white dragon holding four jewels in its claws is situated along the boundary of the two triangles.",
   "png" "https://flagcdn.com/w320/bt.png"},
  "unMember" true,
  "name"
  {"official" "Kingdom of Bhutan",
   "nativeName"
   {"dzo" {"official" "འབྲུག་རྒྱལ་ཁབ་", "common" "འབྲུག་ཡུལ་"}},
   "common" "Bhutan"},
  "capitalInfo" {"latlng" [27.47 89.63]},
  "tld" [".bt"],
  "ccn3" "064",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"dzo" "Dzongkha"},
  "cioc" "BHU",
  "currencies"
  {"BTN" {"name" "Bhutanese ngultrum", "symbol" "Nu."},
   "INR" {"name" "Indian rupee", "symbol" "₹"}},
  "independent" true,
  "population" 771612,
  "cca3" "BTN",
  "borders" ["CHN" "IND"],
  "capital" ["Thimphu"],
  "car" {"signs" ["BHT"], "side" "left"},
  "timezones" ["UTC+06:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇧🇹",
  "gini" {"2017" 37.4},
  "fifa" "BHU",
  "cca2" "BT"}
 {"subregion" "South America",
  "landlocked" false,
  "latlng" [8.0 -66.0],
  "area" 916445.0,
  "altSpellings"
  ["VE"
   "Bolivarian Republic of Venezuela"
   "Venezuela, Bolivarian Republic of"
   "República Bolivariana de Venezuela"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/KLCwDN8sec7z2kse9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/272644"},
  "demonyms"
  {"eng" {"f" "Venezuelan", "m" "Venezuelan"},
   "fra" {"f" "Vénézuélienne", "m" "Vénézuélien"}},
  "translations"
  {"kor" {"official" "베네수엘라 볼리바르 공화국", "common" "베네수엘라"},
   "zho" {"official" "委内瑞拉玻利瓦尔共和国", "common" "委内瑞拉"},
   "hun"
   {"official" "Venezuelai Bolivári Köztársaság",
    "common" "Venezuela"},
   "rus"
   {"official" "Боливарианская Республика Венесуэла",
    "common" "Венесуэла"},
   "swe"
   {"official" "Bolivarianska republiken Venezuela",
    "common" "Venezuela"},
   "ces"
   {"official" "Bolívarská republika Venezuela", "common" "Venezuela"},
   "deu"
   {"official" "Bolivarische Republik Venezuela",
    "common" "Venezuela"},
   "ara"
   {"official" "جمهورية فنزويلا البوليفارية", "common" "فنزويلا"},
   "urd" {"official" "جمہوریہ وینیزویلا", "common" "وینیزویلا"},
   "srp"
   {"official" "Боливарска Република Венецуела", "common" "Венецуела"},
   "tur"
   {"official" "Bolivarcı Venezuela Cumhuriyeti",
    "common" "Venezuela"},
   "pol"
   {"official" "Boliwariańska Republika Wenezueli",
    "common" "Wenezuela"},
   "cym"
   {"official" "Bolivarian Republic of Venezuela",
    "common" "Venezuela"},
   "hrv"
   {"official" "BOLIVARIJANSKA Republika Venezuela",
    "common" "Venezuela"},
   "spa"
   {"official" "República Bolivariana de Venezuela",
    "common" "Venezuela"},
   "fin"
   {"official" "Venezuelan bolivariaainen tasavalta",
    "common" "Venezuela"},
   "per" {"official" "جمهوری بولیواری ونزوئلا", "common" "ونزوئلا"},
   "nld"
   {"official" "Bolivariaanse Republiek Venezuela",
    "common" "Venezuela"},
   "fra"
   {"official" "République bolivarienne du Venezuela",
    "common" "Venezuela"},
   "ita"
   {"official" "Repubblica Bolivariana del Venezuela",
    "common" "Venezuela"},
   "jpn" {"official" "ベネズエラ·ボリバル共和国", "common" "ベネズエラ・ボリバル共和国"},
   "est"
   {"official" "Venezuela Bolívari Vabariik", "common" "Venezuela"},
   "por"
   {"official" "República Bolivariana da Venezuela",
    "common" "Venezuela"},
   "slk"
   {"official" "Venezuelská bolívarovská republika",
    "common" "Venezuela"},
   "bre"
   {"official" "Republik Volivarian Venezuela", "common" "Venezuela"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ve.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ve.png"},
  "idd" {"suffixes" ["8"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/ve.svg",
   "alt"
   "The flag of Venezuela is composed of three equal horizontal bands of yellow, blue and red. At the center of the blue band are eight five-pointed white stars arranged in a horizontal arc.",
   "png" "https://flagcdn.com/w320/ve.png"},
  "unMember" true,
  "name"
  {"official" "Bolivarian Republic of Venezuela",
   "nativeName"
   {"spa"
    {"official" "República Bolivariana de Venezuela",
     "common" "Venezuela"}},
   "common" "Venezuela"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [10.48 -66.87]},
  "tld" [".ve"],
  "ccn3" "862",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"spa" "Spanish"},
  "cioc" "VEN",
  "currencies"
  {"VES" {"name" "Venezuelan bolívar soberano", "symbol" "Bs.S."}},
  "independent" true,
  "population" 28435943,
  "cca3" "VEN",
  "borders" ["BRA" "COL" "GUY"],
  "capital" ["Caracas"],
  "car" {"signs" ["YV"], "side" "right"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["South America"],
  "flag" "🇻🇪",
  "gini" {"2006" 44.8},
  "fifa" "VEN",
  "cca2" "VE"}
 {"subregion" "Western Africa",
  "landlocked" false,
  "latlng" [6.5 -9.5],
  "area" 111369.0,
  "altSpellings" ["LR" "Republic of Liberia"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/4VsHsc2oeGeRL3wg6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192780"},
  "demonyms"
  {"eng" {"f" "Liberian", "m" "Liberian"},
   "fra" {"f" "Libérienne", "m" "Libérien"}},
  "translations"
  {"kor" {"official" "라이베리아 공화국", "common" "라이베리아"},
   "zho" {"official" "利比里亚共和国", "common" "利比里亚"},
   "hun" {"official" "Libériai Köztársaság", "common" "Libéria"},
   "rus" {"official" "Республика Либерия", "common" "Либерия"},
   "swe" {"official" "Republiken Liberia", "common" "Liberia"},
   "ces" {"official" "Liberijská republika", "common" "Libérie"},
   "deu" {"official" "Republik Liberia", "common" "Liberia"},
   "ara" {"official" "جمهورية ليبيريا", "common" "ليبيريا"},
   "urd" {"official" "جمہوریہ لائبیریا", "common" "لائبیریا"},
   "srp" {"official" "Република Либерија", "common" "Либерија"},
   "tur" {"official" "Liberya Cumhuriyeti", "common" "Liberya"},
   "pol" {"official" "Republika Liberii", "common" "Liberia"},
   "cym" {"official" "Republic of Liberia", "common" "Liberia"},
   "hrv" {"official" "Republika Liberija", "common" "Liberija"},
   "spa" {"official" "República de Liberia", "common" "Liberia"},
   "fin" {"official" "Liberian tasavalta", "common" "Liberia"},
   "per" {"official" "جمهوری لیبریا", "common" "لیبـِریا"},
   "nld" {"official" "Republiek Liberia", "common" "Liberia"},
   "fra" {"official" "République du Libéria", "common" "Liberia"},
   "ita" {"official" "Repubblica di Liberia", "common" "Liberia"},
   "jpn" {"official" "リベリア共和国", "common" "リベリア"},
   "est" {"official" "Libeeria Vabariik", "common" "Libeeria"},
   "por" {"official" "República da Libéria", "common" "Libéria"},
   "slk" {"official" "Libérijská republika", "common" "Libéria"},
   "bre" {"official" "Republik Liberia", "common" "Liberia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/lr.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/lr.png"},
  "idd" {"suffixes" ["31"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/lr.svg",
   "alt"
   "The flag of Liberia is composed of eleven equal horizontal bands of red alternating with white. A blue square bearing a five-pointed white star is superimposed in the canton.",
   "png" "https://flagcdn.com/w320/lr.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Liberia",
   "nativeName"
   {"eng" {"official" "Republic of Liberia", "common" "Liberia"}},
   "common" "Liberia"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [6.3 -10.8]},
  "tld" [".lr"],
  "ccn3" "430",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"eng" "English"},
  "cioc" "LBR",
  "currencies" {"LRD" {"name" "Liberian dollar", "symbol" "$"}},
  "independent" true,
  "population" 5057677,
  "cca3" "LBR",
  "borders" ["GIN" "CIV" "SLE"],
  "capital" ["Monrovia"],
  "car" {"signs" ["LB"], "side" "right"},
  "timezones" ["UTC"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇱🇷",
  "gini" {"2016" 35.3},
  "fifa" "LBR",
  "cca2" "LR"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [18.25 -77.5],
  "area" 10991.0,
  "altSpellings" ["JM"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/Z8mQ6jxnRQKFwJy9A",
   "openStreetMaps" "https://www.openstreetmap.org/relation/555017"},
  "demonyms"
  {"eng" {"f" "Jamaican", "m" "Jamaican"},
   "fra" {"f" "Jamaïcaine", "m" "Jamaïcain"}},
  "translations"
  {"kor" {"official" "자메이카", "common" "자메이카"},
   "zho" {"official" "牙买加", "common" "牙买加"},
   "hun" {"official" "Jamaica", "common" "Jamaica"},
   "rus" {"official" "Ямайка", "common" "Ямайка"},
   "swe" {"official" "Jamaica", "common" "Jamaica"},
   "ces" {"official" "Jamajka", "common" "Jamajka"},
   "deu" {"official" "Jamaika", "common" "Jamaika"},
   "ara" {"official" "جامايكا", "common" "جامايكا"},
   "urd" {"official" "جمیکا", "common" "جمیکا"},
   "srp" {"official" "Јамајка", "common" "Јамајка"},
   "tur" {"official" "Jamaika", "common" "Jamaika"},
   "pol" {"official" "Jamajka", "common" "Jamajka"},
   "cym" {"official" "Jamaica", "common" "Jamaica"},
   "hrv" {"official" "Jamajka", "common" "Jamajka"},
   "spa" {"official" "Jamaica", "common" "Jamaica"},
   "fin" {"official" "Jamaika", "common" "Jamaika"},
   "per" {"official" "جامائیکا", "common" "جامائیکا"},
   "nld" {"official" "Jamaica", "common" "Jamaica"},
   "fra" {"official" "Jamaïque", "common" "Jamaïque"},
   "ita" {"official" "Giamaica", "common" "Giamaica"},
   "jpn" {"official" "ジャマイカ", "common" "ジャマイカ"},
   "est" {"official" "Jamaica", "common" "Jamaica"},
   "por" {"official" "Jamaica", "common" "Jamaica"},
   "slk" {"official" "Jamajka", "common" "Jamajka"},
   "bre" {"official" "Jamaika", "common" "Jamaika"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/jm.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/jm.png"},
  "idd" {"suffixes" ["876"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/jm.svg",
   "alt"
   "The flag of Jamaica is divided by a gold diagonal cross into four alternating triangular areas of green at the top and bottom, and black on the hoist and fly sides",
   "png" "https://flagcdn.com/w320/jm.png"},
  "unMember" true,
  "name"
  {"official" "Jamaica",
   "nativeName"
   {"eng" {"official" "Jamaica", "common" "Jamaica"},
    "jam" {"official" "Jamaica", "common" "Jamaica"}},
   "common" "Jamaica"},
  "capitalInfo" {"latlng" [17.99702 -76.79358]},
  "tld" [".jm"],
  "ccn3" "388",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English", "jam" "Jamaican Patois"},
  "cioc" "JAM",
  "currencies" {"JMD" {"name" "Jamaican dollar", "symbol" "$"}},
  "independent" true,
  "population" 2961161,
  "cca3" "JAM",
  "capital" ["Kingston"],
  "car" {"signs" ["JA"], "side" "left"},
  "timezones" ["UTC-05:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇯🇲",
  "gini" {"2004" 45.5},
  "fifa" "JAM",
  "cca2" "JM"}
 {"subregion" "Central Europe",
  "landlocked" false,
  "latlng" [52.0 20.0],
  "area" 312679.0,
  "altSpellings" ["PL" "Republic of Poland" "Rzeczpospolita Polska"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/gY9Xw4Sf4415P4949",
   "openStreetMaps" "https://www.openstreetmap.org/relation/49715"},
  "demonyms"
  {"eng" {"f" "Polish", "m" "Polish"},
   "fra" {"f" "Polonaise", "m" "Polonais"}},
  "translations"
  {"kor" {"official" "폴란드 공화국", "common" "폴란드"},
   "zho" {"official" "波兰共和国", "common" "波兰"},
   "hun" {"official" "Lengyel Köztársaság", "common" "Lengyelország"},
   "rus" {"official" "Республика Польша", "common" "Польша"},
   "swe" {"official" "Republiken Polen", "common" "Polen"},
   "ces" {"official" "Polská republika", "common" "Polsko"},
   "deu" {"official" "Republik Polen", "common" "Polen"},
   "ara" {"official" "الجمهورية البولندية", "common" "بولندا"},
   "urd" {"official" "جمہوریہ پولینڈ", "common" "پولینڈ"},
   "srp" {"official" "Република Пољска", "common" "Пољска"},
   "tur" {"official" "Polonya Cumhuriyeti", "common" "Polonya"},
   "pol" {"official" "Rzeczpospolita Polska", "common" "Polska"},
   "cym" {"official" "Republic of Poland", "common" "Poland"},
   "hrv" {"official" "Republika Poljska", "common" "Poljska"},
   "spa" {"official" "República de Polonia", "common" "Polonia"},
   "fin" {"official" "Puolan tasavalta", "common" "Puola"},
   "per" {"official" "جمهوری لهستان", "common" "لهستان"},
   "nld" {"official" "Republiek Polen", "common" "Polen"},
   "fra" {"official" "République de Pologne", "common" "Pologne"},
   "ita" {"official" "Repubblica di Polonia", "common" "Polonia"},
   "jpn" {"official" "ポーランド共和国", "common" "ポーランド"},
   "est" {"official" "Poola Vabariik", "common" "Poola"},
   "por" {"official" "República da Polónia", "common" "Polónia"},
   "slk" {"official" "Poľská republika", "common" "Poľsko"},
   "bre" {"official" "Republik Polonia", "common" "Polonia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/pl.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/pl.png"},
  "idd" {"suffixes" ["8"], "root" "+4"},
  "flags"
  {"svg" "https://flagcdn.com/pl.svg",
   "alt"
   "The flag of Poland is composed of two equal horizontal bands of white and red.",
   "png" "https://flagcdn.com/w320/pl.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Poland",
   "nativeName"
   {"pol" {"official" "Rzeczpospolita Polska", "common" "Polska"}},
   "common" "Poland"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "##-###"},
  "capitalInfo" {"latlng" [52.25 21.0]},
  "tld" [".pl"],
  "ccn3" "616",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"pol" "Polish"},
  "cioc" "POL",
  "currencies" {"PLN" {"name" "Polish złoty", "symbol" "zł"}},
  "independent" true,
  "population" 37950802,
  "cca3" "POL",
  "borders" ["BLR" "CZE" "DEU" "LTU" "RUS" "SVK" "UKR"],
  "capital" ["Warsaw"],
  "car" {"signs" ["PL"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇵🇱",
  "gini" {"2018" 30.2},
  "fifa" "POL",
  "cca2" "PL"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [19.3133 -81.2546],
  "area" 264.0,
  "altSpellings" ["KY"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/P3ZVXX3LH63t91hL8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/7269765"},
  "demonyms"
  {"eng" {"f" "Caymanian", "m" "Caymanian"},
   "fra" {"f" "Caïmanienne", "m" "Caïmanien"}},
  "translations"
  {"kor" {"official" "케이맨 제도", "common" "케이맨 제도"},
   "zho" {"official" "开曼群岛", "common" "开曼群岛"},
   "hun" {"official" "Kajmán-szigetek", "common" "Kajmán-szigetek"},
   "rus"
   {"official" "Каймановы острова", "common" "Каймановы острова"},
   "swe" {"official" "Caymanöarna", "common" "Caymanöarna"},
   "ces"
   {"official" "Kajmanské ostrovy", "common" "Kajmanské ostrovy"},
   "deu" {"official" "Cayman-Inseln", "common" "Kaimaninseln"},
   "ara" {"official" "جزر كايمان", "common" "جزر كايمان"},
   "urd" {"official" "جزائر کیمین", "common" "جزائر کیمین"},
   "srp" {"official" "Кајманска Острва", "common" "Кајманска Острва"},
   "tur" {"official" "Cayman Adaları", "common" "Cayman Adaları"},
   "pol" {"official" "Kajmany", "common" "Kajmany"},
   "cym" {"official" "Ynysoedd Cayman", "common" "Ynysoedd Cayman"},
   "hrv" {"official" "Kajmanski otoci", "common" "Kajmanski otoci"},
   "spa" {"official" "Islas Caimán", "common" "Islas Caimán"},
   "fin" {"official" "Caymansaaret", "common" "Caymansaaret"},
   "per" {"official" "جزایر کیمن", "common" "جزایر کیمن"},
   "nld" {"official" "Caymaneilanden", "common" "Caymaneilanden"},
   "fra" {"official" "Îles Caïmans", "common" "Îles Caïmans"},
   "ita" {"official" "Isole Cayman", "common" "Isole Cayman"},
   "jpn" {"official" "ケイマン諸島", "common" "ケイマン諸島"},
   "est" {"official" "Kaimanisaared", "common" "Kaimanisaared"},
   "por" {"official" "Ilhas Cayman", "common" "Ilhas Caimão"},
   "slk" {"official" "Kajmanie ostrovy", "common" "Kajmanie ostrovy"},
   "bre" {"official" "Inizi Cayman", "common" "Inizi Cayman"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ky.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ky.png"},
  "idd" {"suffixes" ["345"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/ky.svg",
   "png" "https://flagcdn.com/w320/ky.png"},
  "unMember" false,
  "name"
  {"official" "Cayman Islands",
   "nativeName"
   {"eng" {"official" "Cayman Islands", "common" "Cayman Islands"}},
   "common" "Cayman Islands"},
  "capitalInfo" {"latlng" [19.3 -81.38]},
  "tld" [".ky"],
  "ccn3" "136",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "cioc" "CAY",
  "currencies" {"KYD" {"name" "Cayman Islands dollar", "symbol" "$"}},
  "independent" false,
  "population" 65720,
  "cca3" "CYM",
  "capital" ["George Town"],
  "car" {"signs" ["GB"], "side" "left"},
  "timezones" ["UTC-05:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇰🇾",
  "fifa" "CAY",
  "cca2" "KY"}
 {"subregion" "South-Eastern Asia",
  "landlocked" false,
  "latlng" [4.5 114.66666666],
  "area" 5765.0,
  "altSpellings"
  ["BN" "Brunei Darussalam" "Nation of Brunei" "the Abode of Peace"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/4jb4CqBXhr8vNh579",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2103120"},
  "demonyms"
  {"eng" {"f" "Bruneian", "m" "Bruneian"},
   "fra" {"f" "Brunéienne", "m" "Brunéien"}},
  "translations"
  {"kor" {"official" "브루나이 다루살람국", "common" "브루나이"},
   "zho" {"official" "文莱和平之国", "common" "文莱"},
   "hun" {"official" "Brunei Szultanátus", "common" "Brunei"},
   "rus" {"official" "Нация Бруней, обитель мира", "common" "Бруней"},
   "swe" {"official" "Brunei Darussalam", "common" "Brunei"},
   "ces" {"official" "Sultanát Brunej", "common" "Brunej"},
   "deu" {"official" "Sultanat Brunei Darussalam", "common" "Brunei"},
   "ara" {"official" "بروناي دار السلام", "common" "بروناي"},
   "urd" {"official" "ریاستِ برونائی دارالسلام", "common" "برونائی"},
   "srp"
   {"official" "Султанат Брунеј, боравиште мира", "common" "Брунеј"},
   "tur" {"official" "Brunei Barış Ülkesi Devleti", "common" "Brunei"},
   "pol" {"official" "Państwo Brunei Darussalam", "common" "Brunei"},
   "cym" {"official" "Teyrnas Brwnei", "common" "Brunei"},
   "hrv"
   {"official" "Nacija od Bruneja, Kuću Mira", "common" "Brunej"},
   "spa"
   {"official" "Nación de Brunei, Morada de la Paz",
    "common" "Brunei"},
   "fin" {"official" "Brunei Darussalamin valtio", "common" "Brunei"},
   "per" {"official" "برونئی سرای صلح", "common" "برونئی"},
   "nld"
   {"official" "Natie van Brunei, de verblijfplaats van de Vrede",
    "common" "Brunei"},
   "fra" {"official" "État de Brunei Darussalam", "common" "Brunei"},
   "ita"
   {"official" "Nazione di Brunei, Dimora della Pace",
    "common" "Brunei"},
   "jpn" {"official" "ブルネイ、平和の精舎の国家", "common" "ブルネイ・ダルサラーム"},
   "est" {"official" "Brunei Darussalami Riik", "common" "Brunei"},
   "por"
   {"official" "Nação do Brunei, Morada da Paz", "common" "Brunei"},
   "slk" {"official" "Brunejský sultanât", "common" "Brunej"},
   "bre" {"official" "Stad Brunei Darussalam", "common" "Brunei"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/bn.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/bn.png"},
  "idd" {"suffixes" ["73"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/bn.svg",
   "alt"
   "The flag of Brunei has a yellow field with two adjoining diagonal bands of white and black that extend from the upper hoist side of the field to the lower fly side. The red emblem of Brunei is centered on the field.",
   "png" "https://flagcdn.com/w320/bn.png"},
  "unMember" true,
  "name"
  {"official" "Nation of Brunei, Abode of Peace",
   "nativeName"
   {"msa"
    {"official" "Nation of Brunei, Abode Damai",
     "common" "Negara Brunei Darussalam"}},
   "common" "Brunei"},
  "postalCode" {"regex" "^([A-Z]{2}\\d{4})$", "format" "@@####"},
  "capitalInfo" {"latlng" [4.88 114.93]},
  "tld" [".bn"],
  "ccn3" "096",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"msa" "Malay"},
  "cioc" "BRU",
  "currencies"
  {"SGD" {"name" "Singapore dollar", "symbol" "$"},
   "BND" {"name" "Brunei dollar", "symbol" "$"}},
  "independent" true,
  "population" 437483,
  "cca3" "BRN",
  "borders" ["MYS"],
  "capital" ["Bandar Seri Begawan"],
  "car" {"signs" ["BRU"], "side" "left"},
  "timezones" ["UTC+08:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇧🇳",
  "fifa" "BRU",
  "cca2" "BN"}
 {"subregion" "Eastern Africa",
  "landlocked" false,
  "latlng" [-12.16666666 44.25],
  "area" 1862.0,
  "altSpellings"
  ["KM"
   "Union of the Comoros"
   "Union des Comores"
   "Udzima wa Komori"
   "al-Ittiḥād al-Qumurī"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/eas4GP28C1GyStnu6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/535790"},
  "demonyms"
  {"eng" {"f" "Comoran", "m" "Comoran"},
   "fra" {"f" "Comorienne", "m" "Comorien"}},
  "translations"
  {"kor" {"official" "코모로 연방", "common" "코모로"},
   "zho" {"official" "科摩罗联盟", "common" "科摩罗"},
   "hun"
   {"official" "Comore-szigeteki Unió", "common" "Comore-szigetek"},
   "rus" {"official" "Союз Коморских Островов", "common" "Коморы"},
   "swe" {"official" "Unionen Komorerna", "common" "Komorerna"},
   "ces" {"official" "Komorský svaz", "common" "Komory"},
   "deu" {"official" "Union der Komoren", "common" "Komoren"},
   "ara" {"official" "الإتحاد القمري", "common" "جزر القمر"},
   "urd" {"official" "اتحاد القمری", "common" "القمری"},
   "srp" {"official" "Савез Комора", "common" "Комори"},
   "tur" {"official" "Komorlar Birliği", "common" "Komorlar"},
   "pol" {"official" "Związek Komorów", "common" "Komory"},
   "cym" {"official" "Undeb y Comoros", "common" "Y Comoros"},
   "hrv" {"official" "Savez Komori", "common" "Komori"},
   "spa" {"official" "Unión de las Comoras", "common" "Comoras"},
   "fin" {"official" "Komorien liitto", "common" "Komorit"},
   "per" {"official" "مجمع‌الجزایر قمر", "common" "اتحاد قُمُر"},
   "nld" {"official" "Unie van de Comoren", "common" "Comoren"},
   "fra" {"official" "Union des Comores", "common" "Comores"},
   "ita" {"official" "Unione delle Comore", "common" "Comore"},
   "jpn" {"official" "コモロ連合", "common" "コモロ"},
   "est" {"official" "Komoori Liit", "common" "Komoorid"},
   "por" {"official" "União das Comores", "common" "Comores"},
   "slk" {"official" "Komorská únia", "common" "Komory"},
   "bre" {"official" "Unaniezh Komorez", "common" "Komorez"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/km.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/km.png"},
  "idd" {"suffixes" ["69"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/km.svg",
   "alt"
   "The flag of Comoros is composed of four equal horizontal bands of yellow, white, red and blue, with a green isosceles triangle superimposed on the hoist side of the field. This triangle has its base on the hoist end, spans about two-fifth the width of the field and bears a fly-side facing white crescent and four five-pointed white stars arranged in a vertical line along the opening of the crescent.",
   "png" "https://flagcdn.com/w320/km.png"},
  "unMember" true,
  "name"
  {"official" "Union of the Comoros",
   "nativeName"
   {"ara" {"official" "الاتحاد القمري", "common" "القمر‎"},
    "zdj" {"official" "Udzima wa Komori", "common" "Komori"},
    "fra" {"official" "Union des Comores", "common" "Comores"}},
   "common" "Comoros"},
  "capitalInfo" {"latlng" [-11.7 43.23]},
  "tld" [".km"],
  "ccn3" "174",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"ara" "Arabic", "zdj" "Comorian", "fra" "French"},
  "cioc" "COM",
  "currencies" {"KMF" {"name" "Comorian franc", "symbol" "Fr"}},
  "independent" true,
  "population" 869595,
  "cca3" "COM",
  "capital" ["Moroni"],
  "car" {"signs" ["COM"], "side" "right"},
  "timezones" ["UTC+03:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇰🇲",
  "gini" {"2014" 45.3},
  "fifa" "COM",
  "cca2" "KM"}
 {"subregion" "Micronesia",
  "landlocked" false,
  "latlng" [13.46666666 144.78333333],
  "area" 549.0,
  "altSpellings" ["GU" "Guåhån"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/Xfnq2i279b18cH3C9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/306001"},
  "demonyms" {"eng" {"f" "Guamanian", "m" "Guamanian"}},
  "translations"
  {"kor" {"official" "괌", "common" "괌"},
   "zho" {"official" "关岛", "common" "关岛"},
   "hun" {"official" "Guam", "common" "Guam"},
   "rus" {"official" "Гуам", "common" "Гуам"},
   "swe" {"official" "Guam", "common" "Guam"},
   "ces" {"official" "Guam", "common" "Guam"},
   "deu" {"official" "Guam", "common" "Guam"},
   "ara" {"official" "غوام", "common" "غوام"},
   "urd" {"official" "گوام", "common" "گوام"},
   "srp" {"official" "Гуам", "common" "Гуам"},
   "tur" {"official" "Guam Toprağı", "common" "Guam"},
   "pol" {"official" "Terytorium Guamu", "common" "Guam"},
   "cym" {"official" "Guam", "common" "Guam"},
   "hrv" {"official" "Guam", "common" "Guam"},
   "spa" {"official" "Guam", "common" "Guam"},
   "fin" {"official" "Guam", "common" "Guam"},
   "per" {"official" "گوآم", "common" "گوآم"},
   "nld" {"official" "Guam", "common" "Guam"},
   "fra" {"official" "Guam", "common" "Guam"},
   "ita" {"official" "Guam", "common" "Guam"},
   "jpn" {"official" "グアム", "common" "グアム"},
   "est" {"official" "Guami ala", "common" "Guam"},
   "por" {"official" "Guam", "common" "Guam"},
   "slk" {"official" "Guam", "common" "Guam"},
   "bre" {"official" "Guam", "common" "Guam"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/gu.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/gu.png"},
  "idd" {"suffixes" ["671"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/gu.svg",
   "png" "https://flagcdn.com/w320/gu.png"},
  "unMember" false,
  "name"
  {"official" "Guam",
   "nativeName"
   {"eng" {"official" "Guam", "common" "Guam"},
    "spa" {"official" "Guam", "common" "Guam"},
    "cha" {"official" "Guåhån", "common" "Guåhån"}},
   "common" "Guam"},
  "postalCode" {"regex" "^(969\\d{2})$", "format" "969##"},
  "capitalInfo" {"latlng" [13.48 144.75]},
  "tld" [".gu"],
  "ccn3" "316",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"eng" "English", "spa" "Spanish", "cha" "Chamorro"},
  "cioc" "GUM",
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" false,
  "population" 168783,
  "cca3" "GUM",
  "capital" ["Hagåtña"],
  "car" {"signs" ["USA"], "side" "right"},
  "timezones" ["UTC+10:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇬🇺",
  "fifa" "GUM",
  "cca2" "GU"}
 {"subregion" "Polynesia",
  "landlocked" false,
  "latlng" [-20.0 -175.0],
  "area" 747.0,
  "altSpellings" ["TO"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/p5YALBY2QdEzswRo7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2186665"},
  "demonyms"
  {"eng" {"f" "Tongan", "m" "Tongan"},
   "fra" {"f" "Tonguienne", "m" "Tonguien"}},
  "translations"
  {"kor" {"official" "통가 왕국", "common" "통가"},
   "zho" {"official" "汤加王国", "common" "汤加"},
   "hun" {"official" "Tongai Királyság", "common" "Tonga"},
   "rus" {"official" "Королевство Тонга", "common" "Тонга"},
   "swe" {"official" "Konungariket Tonga", "common" "Tonga"},
   "ces" {"official" "Království Tonga", "common" "Tonga"},
   "deu" {"official" "Königreich Tonga", "common" "Tonga"},
   "ara" {"official" "مملكة تونغا", "common" "تونغا"},
   "urd" {"official" "مملکتِ ٹونگا", "common" "ٹونگا"},
   "srp" {"official" "Краљевина Тонга", "common" "Тонга"},
   "tur" {"official" "Tonga Krallığı", "common" "Tonga"},
   "pol" {"official" "Królestwo Tonga", "common" "Tonga"},
   "cym" {"official" "Kingdom of Tonga", "common" "Tonga"},
   "hrv" {"official" "Kraljevina Tonga", "common" "Tonga"},
   "spa" {"official" "Reino de Tonga", "common" "Tonga"},
   "fin" {"official" "Tongan kuningaskunta", "common" "Tonga"},
   "per" {"official" "پادشاهی تونگا", "common" "تونگا"},
   "nld" {"official" "Koninkrijk Tonga", "common" "Tonga"},
   "fra" {"official" "Royaume des Tonga", "common" "Tonga"},
   "ita" {"official" "Regno di Tonga", "common" "Tonga"},
   "jpn" {"official" "トンガ王国", "common" "トンガ"},
   "est" {"official" "Tonga Kuningriik", "common" "Tonga"},
   "por" {"official" "Reino de Tonga", "common" "Tonga"},
   "slk" {"official" "Tongské kráľovstvo", "common" "Tonga"},
   "bre" {"official" "Rouantelezh Tonga", "common" "Tonga"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/to.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/to.png"},
  "idd" {"suffixes" ["76"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/to.svg",
   "alt"
   "The flag of Tonga has a red field. A white rectangle bearing a red Greek cross is superimposed in the canton.",
   "png" "https://flagcdn.com/w320/to.png"},
  "unMember" true,
  "name"
  {"official" "Kingdom of Tonga",
   "nativeName"
   {"eng" {"official" "Kingdom of Tonga", "common" "Tonga"},
    "ton" {"official" "Kingdom of Tonga", "common" "Tonga"}},
   "common" "Tonga"},
  "capitalInfo" {"latlng" [-21.13 -175.2]},
  "tld" [".to"],
  "ccn3" "776",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"eng" "English", "ton" "Tongan"},
  "cioc" "TGA",
  "currencies" {"TOP" {"name" "Tongan paʻanga", "symbol" "T$"}},
  "independent" true,
  "population" 105697,
  "cca3" "TON",
  "capital" ["Nuku'alofa"],
  "car" {"signs" ["TO"], "side" "left"},
  "timezones" ["UTC+13:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇹🇴",
  "gini" {"2015" 37.6},
  "fifa" "TGA",
  "cca2" "TO"}
 {"subregion" "Micronesia",
  "landlocked" false,
  "latlng" [1.41666666 173.0],
  "area" 811.0,
  "altSpellings" ["KI" "Republic of Kiribati" "Ribaberiki Kiribati"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/NBfYvrndW4skAimw9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/571178"},
  "demonyms"
  {"eng" {"f" "I-Kiribati", "m" "I-Kiribati"},
   "fra" {"f" "Kiribatienne", "m" "Kiribatien"}},
  "translations"
  {"kor" {"official" "키리바시 공화국", "common" "키리바시"},
   "zho" {"official" "基里巴斯共和国", "common" "基里巴斯"},
   "hun" {"official" "Kiribati Köztársaság", "common" "Kiribati"},
   "rus"
   {"official" "Независимой и суверенной Республики Кирибати",
    "common" "Кирибати"},
   "swe" {"official" "Republiken Kiribati", "common" "Kiribati"},
   "ces" {"official" "Republika Kiribati", "common" "Kiribati"},
   "deu" {"official" "Republik Kiribati", "common" "Kiribati"},
   "ara" {"official" "جمهورية كيريباتي", "common" "كيريباتي"},
   "urd"
   {"official" "سلطنت آزاد جمہوریہ کیریباتی", "common" "کیریباتی"},
   "srp"
   {"official" "Независна и Суверена Република Кирибати",
    "common" "Кирибати"},
   "tur" {"official" "Kiribati Cumhuriyeti", "common" "Kiribati"},
   "pol" {"official" "Republika Kiribati", "common" "Kiribati"},
   "cym"
   {"official" "Independent and Sovereign Republic of Kiribati",
    "common" "Kiribati"},
   "hrv"
   {"official" "Samostalne i suverene Republike Kiribati",
    "common" "Kiribati"},
   "spa"
   {"official" "República Independiente y Soberano de Kiribati",
    "common" "Kiribati"},
   "fin" {"official" "Kiribatin tasavalta", "common" "Kiribati"},
   "per" {"official" "جمهوری کیریباتی", "common" "کیریباتی"},
   "nld"
   {"official" "Onafhankelijke en soevereine republiek Kiribati",
    "common" "Kiribati"},
   "fra" {"official" "République de Kiribati", "common" "Kiribati"},
   "ita"
   {"official" "Repubblica indipendente e sovrano di Kiribati",
    "common" "Kiribati"},
   "jpn" {"official" "キリバスの独立と主権共和国", "common" "キリバス"},
   "est" {"official" "Kiribati Vabariik", "common" "Kiribati"},
   "por"
   {"official" "Independente e soberano República de Kiribati",
    "common" "Kiribati"},
   "slk" {"official" "Kiribatská republika", "common" "Kiribati"},
   "bre" {"official" "Republik Kiribati", "common" "Kiribati"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ki.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ki.png"},
  "idd" {"suffixes" ["86"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/ki.svg",
   "alt"
   "The flag of Kiribati is divided into two halves. While the upper half has a red field, at the center of which is a yellow frigate bird flying over the top half of a rising yellow sun with seventeen visible rays, the lower half is composed of six horizontal wavy bands of white alternating with blue to depict the ocean.",
   "png" "https://flagcdn.com/w320/ki.png"},
  "unMember" true,
  "name"
  {"official" "Independent and Sovereign Republic of Kiribati",
   "nativeName"
   {"gil" {"official" "Ribaberiki Kiribati", "common" "Kiribati"},
    "eng"
    {"official" "Independent and Sovereign Republic of Kiribati",
     "common" "Kiribati"}},
   "common" "Kiribati"},
  "capitalInfo" {"latlng" [1.33 172.98]},
  "tld" [".ki"],
  "ccn3" "296",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"gil" "Gilbertese", "eng" "English"},
  "cioc" "KIR",
  "currencies"
  {"AUD" {"name" "Australian dollar", "symbol" "$"},
   "KID" {"name" "Kiribati dollar", "symbol" "$"}},
  "independent" true,
  "population" 119446,
  "cca3" "KIR",
  "capital" ["South Tarawa"],
  "car" {"signs" ["KIR"], "side" "left"},
  "timezones" ["UTC+12:00" "UTC+13:00" "UTC+14:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇰🇮",
  "gini" {"2006" 37.0},
  "cca2" "KI"}
 {"subregion" "Western Africa",
  "landlocked" false,
  "latlng" [8.0 -2.0],
  "area" 238533.0,
  "altSpellings" ["GH"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/Avy5RSmdsXFBaiXq8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192781"},
  "demonyms"
  {"eng" {"f" "Ghanaian", "m" "Ghanaian"},
   "fra" {"f" "Ghanéenne", "m" "Ghanéen"}},
  "translations"
  {"kor" {"official" "가나 공화국", "common" "가나"},
   "zho" {"official" "加纳共和国", "common" "加纳"},
   "hun" {"official" "Ghánai Köztársaság", "common" "Ghána"},
   "rus" {"official" "Республика Гана", "common" "Гана"},
   "swe" {"official" "Republiken Ghana", "common" "Ghana"},
   "ces" {"official" "Ghanská republika", "common" "Ghana"},
   "deu" {"official" "Republik Ghana", "common" "Ghana"},
   "ara" {"official" "جمهورية غانا", "common" "غانا"},
   "urd" {"official" "جمہوریہ گھانا", "common" "گھانا"},
   "srp" {"official" "Република Гана", "common" "Гана"},
   "tur" {"official" "Gana Cumhuriyeti", "common" "Gana"},
   "pol" {"official" "Republika Ghany", "common" "Ghana"},
   "cym" {"official" "Republic of Ghana", "common" "Ghana"},
   "hrv" {"official" "Republika Gana", "common" "Gana"},
   "spa" {"official" "República de Ghana", "common" "Ghana"},
   "fin" {"official" "Ghanan tasavalta", "common" "Ghana"},
   "per" {"official" "جمهوری غنا", "common" "غنا"},
   "nld" {"official" "Republiek Ghana", "common" "Ghana"},
   "fra" {"official" "République du Ghana", "common" "Ghana"},
   "ita" {"official" "Repubblica del Ghana", "common" "Ghana"},
   "jpn" {"official" "ガーナ共和国", "common" "ガーナ"},
   "est" {"official" "Ghana Vabariik", "common" "Ghana"},
   "por" {"official" "República do Gana", "common" "Gana"},
   "slk" {"official" "Ghanská republika", "common" "Ghana"},
   "bre" {"official" "Republik Ghana", "common" "Ghana"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/gh.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/gh.png"},
  "idd" {"suffixes" ["33"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/gh.svg",
   "alt"
   "The flag of Ghana is composed of three equal horizontal bands of red, gold and green, with a five-pointed black star centered in the gold band.",
   "png" "https://flagcdn.com/w320/gh.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Ghana",
   "nativeName"
   {"eng" {"official" "Republic of Ghana", "common" "Ghana"}},
   "common" "Ghana"},
  "capitalInfo" {"latlng" [5.55 -0.22]},
  "tld" [".gh"],
  "ccn3" "288",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"eng" "English"},
  "cioc" "GHA",
  "currencies" {"GHS" {"name" "Ghanaian cedi", "symbol" "₵"}},
  "independent" true,
  "population" 31072945,
  "cca3" "GHA",
  "borders" ["BFA" "CIV" "TGO"],
  "capital" ["Accra"],
  "car" {"signs" ["GH"], "side" "right"},
  "timezones" ["UTC"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇬🇭",
  "gini" {"2016" 43.5},
  "fifa" "GHA",
  "cca2" "GH"}
 {"subregion" "Middle Africa",
  "landlocked" true,
  "latlng" [15.0 19.0],
  "area" 1284000.0,
  "altSpellings"
  ["TD" "Tchad" "Republic of Chad" "République du Tchad"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/ziUdAZ8skuNfx5Hx7",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2361304"},
  "demonyms"
  {"eng" {"f" "Chadian", "m" "Chadian"},
   "fra" {"f" "Tchadienne", "m" "Tchadien"}},
  "translations"
  {"kor" {"official" "차드 공화국", "common" "차드"},
   "zho" {"official" "乍得共和国", "common" "乍得"},
   "hun" {"official" "Csád Köztársaság", "common" "Csád"},
   "rus" {"official" "Республика Чад", "common" "Чад"},
   "swe" {"official" "Republiken Tchad", "common" "Tchad"},
   "ces" {"official" "Čadská republika", "common" "Čad"},
   "deu" {"official" "Republik Tschad", "common" "Tschad"},
   "ara" {"official" "جمهورية تشاد", "common" "تشاد"},
   "urd" {"official" "جمہوریہ چاڈ", "common" "چاڈ"},
   "srp" {"official" "Република Чад", "common" "Чад"},
   "tur" {"official" "Çad Cumhuriyeti", "common" "Çad"},
   "pol" {"official" "Republika Czadu", "common" "Czad"},
   "cym" {"official" "Gweriniaeth Tsiad", "common" "Tsiad"},
   "hrv" {"official" "Čadu", "common" "Čad"},
   "spa" {"official" "República de Chad", "common" "Chad"},
   "fin" {"official" "Tšadin tasavalta", "common" "Tšad"},
   "per" {"official" "جمهوری چاد", "common" "چاد"},
   "nld" {"official" "Republiek Tsjaad", "common" "Tsjaad"},
   "fra" {"official" "République du Tchad", "common" "Tchad"},
   "ita" {"official" "Repubblica del Ciad", "common" "Ciad"},
   "jpn" {"official" "チャド共和国", "common" "チャド"},
   "est" {"official" "Tšaadi Vabariik", "common" "Tšaad"},
   "por" {"official" "República do Chade", "common" "Chade"},
   "slk" {"official" "Čadská republika", "common" "Čad"},
   "bre" {"official" "Republik Tchad", "common" "Tchad"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/td.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/td.png"},
  "idd" {"suffixes" ["35"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/td.svg",
   "alt"
   "The flag of Chad is composed of three equal vertical bands of blue, gold and red.",
   "png" "https://flagcdn.com/w320/td.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Chad",
   "nativeName"
   {"ara" {"official" "جمهورية تشاد", "common" "تشاد‎"},
    "fra" {"official" "République du Tchad", "common" "Tchad"}},
   "common" "Chad"},
  "capitalInfo" {"latlng" [12.1 15.03]},
  "tld" [".td"],
  "ccn3" "148",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"ara" "Arabic", "fra" "French"},
  "cioc" "CHA",
  "currencies"
  {"XAF" {"name" "Central African CFA franc", "symbol" "Fr"}},
  "independent" true,
  "population" 16425859,
  "cca3" "TCD",
  "borders" ["CMR" "CAF" "LBY" "NER" "NGA" "SDN"],
  "capital" ["N'Djamena"],
  "car" {"signs" ["TCH" "TD"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇹🇩",
  "gini" {"2011" 43.3},
  "fifa" "CHA",
  "cca2" "TD"}
 {"subregion" "Southern Africa",
  "landlocked" true,
  "latlng" [-20.0 30.0],
  "area" 390757.0,
  "altSpellings" ["ZW" "Republic of Zimbabwe"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/M26BqdwQctqxXS65A",
   "openStreetMaps" "https://www.openstreetmap.org/relation/195272"},
  "demonyms"
  {"eng" {"f" "Zimbabwean", "m" "Zimbabwean"},
   "fra" {"f" "Zimbabwéenne", "m" "Zimbabwéen"}},
  "translations"
  {"kor" {"official" "짐바브웨 공화국", "common" "짐바브웨"},
   "zho" {"official" "津巴布韦共和国", "common" "津巴布韦"},
   "hun" {"official" "Zimbabwei Köztársaság", "common" "Zimbabwe"},
   "rus" {"official" "Республика Зимбабве", "common" "Зимбабве"},
   "swe" {"official" "Republiken Zimbabwe", "common" "Zimbabwe"},
   "ces" {"official" "Zimbabwská republika", "common" "Zimbabwe"},
   "deu" {"official" "Republik Simbabwe", "common" "Simbabwe"},
   "ara" {"official" "جمهورية زيمبابوي", "common" "زيمبابوي"},
   "urd" {"official" "جمہوریہ زمبابوے", "common" "زمبابوے"},
   "srp" {"official" "Република Зимбабве", "common" "Зимбабве"},
   "tur" {"official" "Zimbabve Cumhuriyeti", "common" "Zimbabve"},
   "pol" {"official" "Republika Zimbabwe", "common" "Zimbabwe"},
   "cym" {"official" "Republic of Zimbabwe", "common" "Zimbabwe"},
   "hrv" {"official" "Republika Zimbabve", "common" "Zimbabve"},
   "spa" {"official" "República de Zimbabue", "common" "Zimbabue"},
   "fin" {"official" "Zimbabwen tasavalta", "common" "Zimbabwe"},
   "per" {"official" "جمهوری زیمبابوه", "common" "زیمبابوه"},
   "nld" {"official" "Republiek Zimbabwe", "common" "Zimbabwe"},
   "fra" {"official" "République du Zimbabwe", "common" "Zimbabwe"},
   "ita" {"official" "Repubblica dello Zimbabwe", "common" "Zimbabwe"},
   "jpn" {"official" "ジンバブエ共和国", "common" "ジンバブエ"},
   "est" {"official" "Zimbabwe Vabariik", "common" "Zimbabwe"},
   "por" {"official" "República do Zimbabwe", "common" "Zimbabwe"},
   "slk" {"official" "Zimbabwianska republika", "common" "Zimbabwe"},
   "bre" {"official" "Republik Zimbabwe", "common" "Zimbabwe"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/zw.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/zw.png"},
  "idd" {"suffixes" ["63"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/zw.svg",
   "alt"
   "The flag of Zimbabwe is composed of seven equal horizontal bands of green, yellow, red, black, red, yellow and green, with a white isosceles triangle superimposed on the hoist side of the field. This triangle is edged in black, spans about one-fourth the width of the field and has its base on the hoist end. A yellow Zimbabwe bird superimposed on a five-pointed red star is centered in the triangle.",
   "png" "https://flagcdn.com/w320/zw.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Zimbabwe",
   "nativeName"
   {"nya" {"official" "Republic of Zimbabwe", "common" "Zimbabwe"},
    "toi" {"official" "Republic of Zimbabwe", "common" "Zimbabwe"},
    "tsn" {"official" "Republic of Zimbabwe", "common" "Zimbabwe"},
    "sot" {"official" "Republic of Zimbabwe", "common" "Zimbabwe"},
    "nde" {"official" "Republic of Zimbabwe", "common" "Zimbabwe"},
    "kck" {"official" "Republic of Zimbabwe", "common" "Zimbabwe"},
    "bwg" {"official" "Republic of Zimbabwe", "common" "Zimbabwe"},
    "eng" {"official" "Republic of Zimbabwe", "common" "Zimbabwe"},
    "zib" {"official" "Republic of Zimbabwe", "common" "Zimbabwe"},
    "tso" {"official" "Republic of Zimbabwe", "common" "Zimbabwe"},
    "ven" {"official" "Republic of Zimbabwe", "common" "Zimbabwe"},
    "xho" {"official" "Republic of Zimbabwe", "common" "Zimbabwe"},
    "sna" {"official" "Republic of Zimbabwe", "common" "Zimbabwe"},
    "khi" {"official" "Republic of Zimbabwe", "common" "Zimbabwe"},
    "ndc" {"official" "Republic of Zimbabwe", "common" "Zimbabwe"}},
   "common" "Zimbabwe"},
  "capitalInfo" {"latlng" [-17.82 31.03]},
  "tld" [".zw"],
  "ccn3" "716",
  "status" "officially-assigned",
  "region" "Africa",
  "languages"
  {"nya" "Chewa",
   "toi" "Tonga",
   "tsn" "Tswana",
   "sot" "Sotho",
   "nde" "Northern Ndebele",
   "kck" "Kalanga",
   "bwg" "Chibarwe",
   "eng" "English",
   "zib" "Zimbabwean Sign Language",
   "tso" "Tsonga",
   "ven" "Venda",
   "xho" "Xhosa",
   "sna" "Shona",
   "khi" "Khoisan",
   "ndc" "Ndau"},
  "cioc" "ZIM",
  "currencies" {"ZWL" {"name" "Zimbabwean dollar", "symbol" "$"}},
  "independent" true,
  "population" 14862927,
  "cca3" "ZWE",
  "borders" ["BWA" "MOZ" "ZAF" "ZMB"],
  "capital" ["Harare"],
  "car" {"signs" ["ZW"], "side" "left"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇿🇼",
  "gini" {"2019" 50.3},
  "fifa" "ZIM",
  "cca2" "ZW"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [18.0708 63.0501],
  "area" 53.0,
  "altSpellings"
  ["MF"
   "Collectivity of Saint Martin"
   "Collectivité de Saint-Martin"
   "Saint Martin (French part)"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/P9ho9QuJ9EAR28JEA",
   "openStreetMaps" "https://www.openstreetmap.org/relation/63064"},
  "demonyms"
  {"eng" {"f" "Saint Martin Islander", "m" "Saint Martin Islander"},
   "fra" {"f" "Saint-Martinoise", "m" "Saint-Martinois"}},
  "translations"
  {"kor" {"official" "생마르탱", "common" "생마르탱"},
   "zho" {"official" "圣马丁", "common" "圣马丁"},
   "hun" {"official" "Saint-Martin Közösség", "common" "Saint-Martin"},
   "rus" {"official" "Сен-Мартен", "common" "Сен-Мартен"},
   "swe"
   {"official" "Förvaltningsområdet Saint-Martin",
    "common" "Saint-Martin"},
   "ces"
   {"official" "Svatý Martin", "common" "Svatý Martin (Francie)"},
   "deu" {"official" "Saint-Martin", "common" "Saint-Martin"},
   "ara" {"official" "سانت مارتن", "common" "سانت مارتن"},
   "urd" {"official" "سینٹ مارٹن", "common" "سینٹ مارٹن"},
   "srp" {"official" "Свети Мартин", "common" "Свети Мартин"},
   "tur" {"official" "Saint Martin", "common" "Saint Martin"},
   "pol"
   {"official" "Wspólnota Saint-Martin", "common" "Saint-Martin"},
   "cym" {"official" "Saint Martin", "common" "Saint Martin"},
   "hrv" {"official" "Saint Martin", "common" "Sveti Martin"},
   "spa" {"official" "Saint Martin", "common" "Saint Martin"},
   "fin" {"official" "Saint-Martin", "common" "Saint-Martin"},
   "per" {"official" "سن مارتن", "common" "سن مارتن"},
   "nld" {"official" "Saint Martin", "common" "Saint-Martin"},
   "fra" {"official" "Saint-Martin", "common" "Saint-Martin"},
   "ita" {"official" "saint Martin", "common" "Saint Martin"},
   "jpn" {"official" "サンマルタン島", "common" "サン・マルタン(フランス領)"},
   "est" {"official" "Saint-Martini ühendus", "common" "Saint-Martin"},
   "por" {"official" "saint Martin", "common" "São Martinho"},
   "slk" {"official" "Saint-Martin", "common" "Saint-Martin"},
   "bre" {"official" "Saint-Martin", "common" "Saint-Martin"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["90"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/mf.svg",
   "png" "https://flagcdn.com/w320/mf.png"},
  "unMember" false,
  "name"
  {"official" "Saint Martin",
   "nativeName"
   {"fra" {"official" "Saint-Martin", "common" "Saint-Martin"}},
   "common" "Saint Martin"},
  "postalCode" {"format" "### ###"},
  "capitalInfo" {"latlng" [18.07 -63.08]},
  "tld" [".fr" ".gp"],
  "ccn3" "663",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"fra" "French"},
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" false,
  "population" 38659,
  "cca3" "MAF",
  "borders" ["SXM"],
  "capital" ["Marigot"],
  "car" {"signs" ["F"], "side" "right"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇲🇫",
  "cca2" "MF"}
 {"subregion" "Eastern Asia",
  "landlocked" true,
  "latlng" [46.0 105.0],
  "area" 1564110.0,
  "altSpellings" ["MN"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/A1X7bMCKThBDNjzH6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/161033"},
  "demonyms"
  {"eng" {"f" "Mongolian", "m" "Mongolian"},
   "fra" {"f" "Mongole", "m" "Mongol"}},
  "translations"
  {"kor" {"official" "몽골", "common" "몽골국"},
   "zho" {"official" "蒙古", "common" "蒙古"},
   "hun" {"official" "Mongólia", "common" "Mongólia"},
   "rus" {"official" "Монголия", "common" "Монголия"},
   "swe" {"official" "Mongoliet", "common" "Mongoliet"},
   "ces" {"official" "Stát Mongolsko", "common" "Mongolsko"},
   "deu" {"official" "Mongolei", "common" "Mongolei"},
   "ara" {"official" "جمهورية منغوليا", "common" "منغوليا"},
   "urd" {"official" "منگولیا", "common" "منگولیا"},
   "srp" {"official" "Монголија", "common" "Монголија"},
   "tur" {"official" "Moğolistan", "common" "Moğolistan"},
   "pol" {"official" "Mongolia", "common" "Mongolia"},
   "cym" {"official" "Mongolia", "common" "Mongolia"},
   "hrv" {"official" "Mongolija", "common" "Mongolija"},
   "spa" {"official" "Mongolia", "common" "Mongolia"},
   "fin" {"official" "Mongolian tasavalta", "common" "Mongolia"},
   "per" {"official" "مغولستان", "common" "مغولستان"},
   "nld" {"official" "Mongolië", "common" "Mongolië"},
   "fra" {"official" "Mongolie", "common" "Mongolie"},
   "ita" {"official" "Mongolia", "common" "Mongolia"},
   "jpn" {"official" "モンゴル", "common" "モンゴル"},
   "est" {"official" "Mongoolia", "common" "Mongoolia"},
   "por" {"official" "Mongólia", "common" "Mongólia"},
   "slk" {"official" "Mongolsko", "common" "Mongolsko"},
   "bre" {"official" "Mongolia", "common" "Mongolia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/mn.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/mn.png"},
  "idd" {"suffixes" ["76"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/mn.svg",
   "alt"
   "The flag of Mongolia is composed of three equal vertical bands of red, blue and red, with the national emblem — the Soyombo — in gold centered in the hoist-side red band.",
   "png" "https://flagcdn.com/w320/mn.png"},
  "unMember" true,
  "name"
  {"official" "Mongolia",
   "nativeName"
   {"mon" {"official" "Монгол улс", "common" "Монгол улс"}},
   "common" "Mongolia"},
  "postalCode" {"regex" "^(\\d{6})$", "format" "######"},
  "capitalInfo" {"latlng" [47.92 106.91]},
  "tld" [".mn"],
  "ccn3" "496",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"mon" "Mongolian"},
  "cioc" "MGL",
  "currencies" {"MNT" {"name" "Mongolian tögrög", "symbol" "₮"}},
  "independent" true,
  "population" 3278292,
  "cca3" "MNG",
  "borders" ["CHN" "RUS"],
  "capital" ["Ulan Bator"],
  "car" {"signs" ["MGL"], "side" "right"},
  "timezones" ["UTC+07:00" "UTC+08:00"],
  "startOfWeek" "monday",
  "continents" ["Asia"],
  "flag" "🇲🇳",
  "gini" {"2018" 32.7},
  "fifa" "MNG",
  "cca2" "MN"}
 {"subregion" "Southern Europe",
  "landlocked" false,
  "latlng" [39.5 -8.0],
  "area" 92090.0,
  "altSpellings"
  ["PT" "Portuguesa" "Portuguese Republic" "República Portuguesa"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/BaTBSyc4GWMmbAKB8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/295480"},
  "demonyms"
  {"eng" {"f" "Portuguese", "m" "Portuguese"},
   "fra" {"f" "Portugaise", "m" "Portugais"}},
  "translations"
  {"kor" {"official" "포르투갈 공화국", "common" "포르투갈"},
   "zho" {"official" "葡萄牙共和国", "common" "葡萄牙"},
   "hun" {"official" "Portugál Köztársaság", "common" "Portugália"},
   "rus"
   {"official" "Португальская Республика", "common" "Португалия"},
   "swe" {"official" "Republiken Portugal", "common" "Portugal"},
   "ces" {"official" "Portugalská republika", "common" "Portugalsko"},
   "deu" {"official" "Portugiesische Republik", "common" "Portugal"},
   "ara" {"official" "الجمهورية البرتغالية", "common" "البرتغال"},
   "urd" {"official" "جمہوریہ پرتگال", "common" "پرتگال"},
   "srp" {"official" "Португалска Република", "common" "Португал"},
   "tur" {"official" "Portekiz Cumhuriyeti", "common" "Portekiz"},
   "pol" {"official" "Republika Portugalska", "common" "Portugalia"},
   "cym" {"official" "Portuguese Republic", "common" "Portugal"},
   "hrv" {"official" "Portugalska Republika", "common" "Portugal"},
   "spa" {"official" "República Portuguesa", "common" "Portugal"},
   "fin" {"official" "Portugalin tasavalta", "common" "Portugali"},
   "per" {"official" "جمهوری پرتغال", "common" "پرتغال"},
   "nld" {"official" "Portugese Republiek", "common" "Portugal"},
   "fra" {"official" "République portugaise", "common" "Portugal"},
   "ita" {"official" "Repubblica portoghese", "common" "Portogallo"},
   "jpn" {"official" "ポルトガル共和国", "common" "ポルトガル"},
   "est" {"official" "Portugali Vabariik", "common" "Portugal"},
   "por" {"official" "República português", "common" "Portugal"},
   "slk" {"official" "Portugalská republika", "common" "Portugalsko"},
   "bre" {"official" "Republik Portugalat", "common" "Portugal"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/pt.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/pt.png"},
  "idd" {"suffixes" ["51"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/pt.svg",
   "alt"
   "The flag of Portugal is composed of two vertical bands of green and red in the ratio of 2:3, with the coat of arms of Portugal centered over the two-color boundary.",
   "png" "https://flagcdn.com/w320/pt.png"},
  "unMember" true,
  "name"
  {"official" "Portuguese Republic",
   "nativeName"
   {"por" {"official" "República português", "common" "Portugal"}},
   "common" "Portugal"},
  "postalCode" {"regex" "^(\\d{7})$", "format" "####-###"},
  "capitalInfo" {"latlng" [38.72 -9.13]},
  "tld" [".pt"],
  "ccn3" "620",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"por" "Portuguese"},
  "cioc" "POR",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 10305564,
  "cca3" "PRT",
  "borders" ["ESP"],
  "capital" ["Lisbon"],
  "car" {"signs" ["P"], "side" "right"},
  "timezones" ["UTC-01:00" "UTC"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇵🇹",
  "gini" {"2018" 33.5},
  "fifa" "POR",
  "cca2" "PT"}
 {"subregion" "Polynesia",
  "landlocked" false,
  "latlng" [-14.33333333 -170.0],
  "area" 199.0,
  "altSpellings"
  ["AS" "Amerika Sāmoa" "Amelika Sāmoa" "Sāmoa Amelika"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/Re9ePMjwP1sFCBFA6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2177187"},
  "demonyms"
  {"eng" {"f" "American Samoan", "m" "American Samoan"},
   "fra" {"f" "Samoane", "m" "Samoan"}},
  "translations"
  {"kor" {"official" "아메리칸사모아", "common" "아메리칸사모아"},
   "zho" {"official" "美属萨摩亚", "common" "美属萨摩亚"},
   "hun" {"official" "Szamoa", "common" "Szamoa"},
   "rus"
   {"official" "американское Самоа", "common" "Американское Самоа"},
   "swe"
   {"official" "Amerikanska Samoa", "common" "Amerikanska Samoa"},
   "ces" {"official" "Americká Samoa", "common" "Americká Samoa"},
   "deu"
   {"official" "Amerikanisch-Samoa", "common" "Amerikanisch-Samoa"},
   "ara" {"official" "ساموا الأمريكية", "common" "ساموا الأمريكية"},
   "urd" {"official" "امریکی سمووا", "common" "امریکی سمووا"},
   "srp" {"official" "Америчка Самоа", "common" "Америчка Самоа"},
   "tur" {"official" "Amerikan Samoası", "common" "Amerikan Samoası"},
   "pol"
   {"official" "Samoa Amerykańskie", "common" "Samoa Amerykańskie"},
   "cym" {"official" "American Samoa", "common" "American Samoa"},
   "hrv" {"official" "američka Samoa", "common" "Američka Samoa"},
   "spa" {"official" "Samoa Americana", "common" "Samoa Americana"},
   "fin" {"official" "Amerikan Samoa", "common" "Amerikan Samoa"},
   "per" {"official" "ساموآی آمریکا", "common" "ساموآی آمریکا"},
   "nld" {"official" "Amerikaans Samoa", "common" "Amerikaans Samoa"},
   "fra"
   {"official" "Samoa américaines", "common" "Samoa américaines"},
   "ita" {"official" "Samoa americane", "common" "Samoa Americane"},
   "jpn" {"official" "米サモア", "common" "アメリカ領サモア"},
   "est" {"official" "Ameerika Samoa", "common" "Ameerika Samoa"},
   "por" {"official" "Samoa americana", "common" "Samoa Americana"},
   "slk" {"official" "Americká Samoa", "common" "Americká Samoa"},
   "bre" {"official" "Samoa Amerikan", "common" "Samoa Amerikan"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["684"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/as.svg",
   "png" "https://flagcdn.com/w320/as.png"},
  "unMember" false,
  "name"
  {"official" "American Samoa",
   "nativeName"
   {"eng" {"official" "American Samoa", "common" "American Samoa"},
    "smo" {"official" "Sāmoa Amelika", "common" "Sāmoa Amelika"}},
   "common" "American Samoa"},
  "capitalInfo" {"latlng" [-14.27 -170.7]},
  "tld" [".as"],
  "ccn3" "016",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages" {"eng" "English", "smo" "Samoan"},
  "cioc" "ASA",
  "currencies" {"USD" {"name" "United States dollar", "symbol" "$"}},
  "independent" false,
  "population" 55197,
  "cca3" "ASM",
  "capital" ["Pago Pago"],
  "car" {"signs" ["USA"], "side" "right"},
  "timezones" ["UTC-11:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇦🇸",
  "fifa" "ASA",
  "cca2" "AS"}
 {"subregion" "Middle Africa",
  "landlocked" false,
  "latlng" [-1.0 15.0],
  "area" 342000.0,
  "altSpellings" ["CG" "Congo" "Congo-Brazzaville"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/Phf5dDDKdfCtuBTb6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/192794"},
  "demonyms"
  {"eng" {"f" "Congolese", "m" "Congolese"},
   "fra" {"f" "Congolaise", "m" "Congolais"}},
  "translations"
  {"kor" {"official" "콩고", "common" "콩고"},
   "zho" {"official" "刚果共和国", "common" "刚果"},
   "hun"
   {"official" "Kongói Köztársaság", "common" "Kongói Köztársaság"},
   "rus" {"official" "Республика Конго", "common" "Республика Конго"},
   "swe" {"official" "Republiken Kongo", "common" "Kongo-Brazzaville"},
   "ces" {"official" "Konžská republika", "common" "Kongo"},
   "deu" {"official" "Republik Kongo", "common" "Kongo"},
   "ara" {"official" "جمهورية الكونغو", "common" "جمهورية الكونفو"},
   "urd" {"official" "جمہوریہ کانگو", "common" "جمہوریہ کانگو"},
   "srp" {"official" "Република Конго", "common" "Конго"},
   "tur"
   {"official" "Kongo Cumhuriyeti", "common" "Kongo Cumhuriyeti"},
   "pol" {"official" "Republika Konga", "common" "Kongo"},
   "cym"
   {"official" "Gweriniaeth y Congo", "common" "Gweriniaeth y Congo"},
   "hrv" {"official" "Republika Kongo", "common" "Kongo"},
   "spa" {"official" "República del Congo", "common" "Congo"},
   "fin" {"official" "Kongon tasavalta", "common" "Kongo-Brazzaville"},
   "per" {"official" "جمهوری برازاویل کُنگو", "common" "جمهوری کُنگو"},
   "nld" {"official" "Republiek Congo", "common" "Congo"},
   "fra" {"official" "République du Congo", "common" "Congo"},
   "ita" {"official" "Repubblica del Congo", "common" "Congo"},
   "jpn" {"official" "コンゴ共和国", "common" "コンゴ共和国"},
   "est" {"official" "Kongo Vabariik", "common" "Kongo Vabariik"},
   "por" {"official" "República do Congo", "common" "Congo"},
   "slk" {"official" "Konžská republika", "common" "Kongo"},
   "bre" {"official" "Republik Kongo", "common" "Kongo-Brazzaville"}},
  "coatOfArms" {},
  "idd" {"suffixes" ["42"], "root" "+2"},
  "flags"
  {"svg" "https://flagcdn.com/cg.svg",
   "alt"
   "The flag of the Republic of the Congo features a yellow diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a green and red triangle respectively.",
   "png" "https://flagcdn.com/w320/cg.png"},
  "unMember" true,
  "name"
  {"official" "Republic of the Congo",
   "nativeName"
   {"lin"
    {"official" "Republíki ya Kongó", "common" "Republíki ya Kongó"},
    "kon"
    {"official" "Repubilika ya Kongo", "common" "Repubilika ya Kongo"},
    "fra"
    {"official" "République du Congo",
     "common" "République du Congo"}},
   "common" "Republic of the Congo"},
  "capitalInfo" {"latlng" [-4.25 15.28]},
  "tld" [".cg"],
  "ccn3" "178",
  "status" "officially-assigned",
  "region" "Africa",
  "languages" {"lin" "Lingala", "kon" "Kikongo", "fra" "French"},
  "cioc" "CGO",
  "currencies"
  {"XAF" {"name" "Central African CFA franc", "symbol" "Fr"}},
  "independent" true,
  "population" 5657000,
  "cca3" "COG",
  "borders" ["AGO" "CMR" "CAF" "COD" "GAB"],
  "capital" ["Brazzaville"],
  "car" {"signs" ["RCB"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Africa"],
  "flag" "🇨🇬",
  "gini" {"2011" 48.9},
  "fifa" "CGO",
  "cca2" "CG"}
 {"subregion" "Western Europe",
  "landlocked" false,
  "latlng" [50.83333333 4.0],
  "area" 30528.0,
  "altSpellings"
  ["BE"
   "België"
   "Belgie"
   "Belgien"
   "Belgique"
   "Kingdom of Belgium"
   "Koninkrijk België"
   "Royaume de Belgique"
   "Königreich Belgien"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/UQQzat85TCtPRXAL8",
   "openStreetMaps" "https://www.openstreetmap.org/relation/52411"},
  "demonyms"
  {"eng" {"f" "Belgian", "m" "Belgian"},
   "fra" {"f" "Belge", "m" "Belge"}},
  "translations"
  {"kor" {"official" "벨기에 왕국", "common" "벨기에"},
   "zho" {"official" "比利时王国", "common" "比利时"},
   "hun" {"official" "Belga Királyság", "common" "Belgium"},
   "rus" {"official" "Королевство Бельгия", "common" "Бельгия"},
   "swe" {"official" "Konungariket Belgien", "common" "Belgien"},
   "ces" {"official" "Belgické království", "common" "Belgie"},
   "deu" {"official" "Königreich Belgien", "common" "Belgien"},
   "ara" {"official" "مملكة بلجيكا", "common" "بلجيكا"},
   "urd" {"official" "مملکتِ بلجئیم", "common" "بلجئیم"},
   "srp" {"official" "Краљевина Белгија", "common" "Белгија"},
   "tur" {"official" "Belçika Krallığı", "common" "Belğika"},
   "pol" {"official" "Królestwo Belgii", "common" "Belgia"},
   "cym" {"official" "Teyrnas Gwlad Belg", "common" "Gwlad Belg"},
   "hrv" {"official" "Kraljevina Belgija", "common" "Belgija"},
   "spa" {"official" "Reino de Bélgica", "common" "Bélgica"},
   "fin" {"official" "Belgian kuningaskunta", "common" "Belgia"},
   "per" {"official" "پادشاهی بلژیک", "common" "بلژیک"},
   "nld" {"official" "Koninkrijk België", "common" "België"},
   "fra" {"official" "Royaume de Belgique", "common" "Belgique"},
   "ita" {"official" "Regno del Belgio", "common" "Belgio"},
   "jpn" {"official" "ベルギー王国", "common" "ベルギー"},
   "est" {"official" "Belgia Kuningriik", "common" "Belgia"},
   "por" {"official" "Reino da Bélgica", "common" "Bélgica"},
   "slk" {"official" "Belgické kráľovstvo", "common" "Belgicko"},
   "bre" {"official" "Rouantelezh Belgia", "common" "Belgia"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/be.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/be.png"},
  "idd" {"suffixes" ["2"], "root" "+3"},
  "flags"
  {"svg" "https://flagcdn.com/be.svg",
   "alt"
   "The flag of Belgium is composed of three equal vertical bands of black, yellow and red.",
   "png" "https://flagcdn.com/w320/be.png"},
  "unMember" true,
  "name"
  {"official" "Kingdom of Belgium",
   "nativeName"
   {"deu" {"official" "Königreich Belgien", "common" "Belgien"},
    "nld" {"official" "Koninkrijk België", "common" "België"},
    "fra" {"official" "Royaume de Belgique", "common" "Belgique"}},
   "common" "Belgium"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [50.83 4.33]},
  "tld" [".be"],
  "ccn3" "056",
  "status" "officially-assigned",
  "region" "Europe",
  "languages" {"deu" "German", "nld" "Dutch", "fra" "French"},
  "cioc" "BEL",
  "currencies" {"EUR" {"name" "Euro", "symbol" "€"}},
  "independent" true,
  "population" 11555997,
  "cca3" "BEL",
  "borders" ["FRA" "DEU" "LUX" "NLD"],
  "capital" ["Brussels"],
  "car" {"signs" ["B"], "side" "right"},
  "timezones" ["UTC+01:00"],
  "startOfWeek" "monday",
  "continents" ["Europe"],
  "flag" "🇧🇪",
  "gini" {"2018" 27.2},
  "fifa" "BEL",
  "cca2" "BE"}
 {"subregion" "Western Asia",
  "landlocked" false,
  "latlng" [31.47 35.13],
  "area" 20770.0,
  "altSpellings" ["IL" "State of Israel" "Medīnat Yisrā'el"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/6UY1AH8XeafVwdC97",
   "openStreetMaps" "https://www.openstreetmap.org/relation/1473946"},
  "demonyms"
  {"eng" {"f" "Israeli", "m" "Israeli"},
   "fra" {"f" "Israélienne", "m" "Israélien"}},
  "translations"
  {"kor" {"official" "이스라엘국", "common" "이스라엘"},
   "zho" {"official" "以色列国", "common" "以色列"},
   "hun" {"official" "Izrael", "common" "Izrael"},
   "rus" {"official" "Государство Израиль", "common" "Израиль"},
   "swe" {"official" "Staten Israel", "common" "Israel"},
   "ces" {"official" "Stát Izrael", "common" "Izrael"},
   "deu" {"official" "Staat Israel", "common" "Israel"},
   "ara" {"official" "دولة إسرائيل", "common" "إسرائيل"},
   "urd" {"official" "ریاستِ اسرائیل", "common" "اسرائیل"},
   "srp" {"official" "Држава Израел", "common" "Израел"},
   "tur" {"official" "İsrail Devleti", "common" "İsrail"},
   "pol" {"official" "Państwo Izrael", "common" "Izrael"},
   "cym" {"official" "State of Israel", "common" "Israel"},
   "hrv" {"official" "Država Izrael", "common" "Izrael"},
   "spa" {"official" "Estado de Israel", "common" "Israel"},
   "fin" {"official" "Israelin valtio", "common" "Israel"},
   "per" {"official" "فلسطين اشغالی", "common" "فلسطين اشغالی"},
   "nld" {"official" "Staat Israël", "common" "Israël"},
   "fra" {"official" "État d'Israël", "common" "Israël"},
   "ita" {"official" "Stato di Israele", "common" "Israele"},
   "jpn" {"official" "イスラエル国", "common" "イスラエル"},
   "est" {"official" "Iisraeli Riik", "common" "Iisrael"},
   "por" {"official" "Estado de Israel", "common" "Israel"},
   "slk" {"official" "Izraelský štát", "common" "Izrael"},
   "bre" {"official" "Stad Israel", "common" "Israel"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/il.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/il.png"},
  "idd" {"suffixes" ["72"], "root" "+9"},
  "flags"
  {"svg" "https://flagcdn.com/il.svg",
   "alt"
   "The flag of Israel has a white field with a blue hexagram — the Magen David — centered between two equal horizontal blue bands situated near the top and bottom edges of the field.",
   "png" "https://flagcdn.com/w320/il.png"},
  "unMember" true,
  "name"
  {"official" "State of Israel",
   "nativeName"
   {"ara" {"official" "دولة إسرائيل", "common" "إسرائيل"},
    "heb" {"official" "מדינת ישראל", "common" "ישראל"}},
   "common" "Israel"},
  "postalCode" {"regex" "^(\\d{5})$", "format" "#####"},
  "capitalInfo" {"latlng" [31.77 35.23]},
  "tld" [".il"],
  "ccn3" "376",
  "status" "officially-assigned",
  "region" "Asia",
  "languages" {"ara" "Arabic", "heb" "Hebrew"},
  "cioc" "ISR",
  "currencies" {"ILS" {"name" "Israeli new shekel", "symbol" "₪"}},
  "independent" true,
  "population" 9216900,
  "cca3" "ISR",
  "borders" ["EGY" "JOR" "LBN" "PSE" "SYR"],
  "capital" ["Jerusalem"],
  "car" {"signs" ["IL"], "side" "right"},
  "timezones" ["UTC+02:00"],
  "startOfWeek" "sunday",
  "continents" ["Asia"],
  "flag" "🇮🇱",
  "gini" {"2016" 39.0},
  "fifa" "ISR",
  "cca2" "IL"}
 {"subregion" "Australia and New Zealand",
  "landlocked" false,
  "latlng" [-41.0 174.0],
  "area" 270467.0,
  "altSpellings" ["NZ" "Aotearoa"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/xXiDQo65dwdpw9iu8",
   "openStreetMaps"
   "https://www.openstreetmap.org/relation/556706#map=5/-46.710/172.046"},
  "demonyms"
  {"eng" {"f" "New Zealander", "m" "New Zealander"},
   "fra" {"f" "Neo-Zélandaise", "m" "Neo-Zélandais"}},
  "translations"
  {"kor" {"official" "뉴질랜드", "common" "뉴질랜드"},
   "zho" {"official" "新西兰", "common" "新西兰"},
   "hun" {"official" "Új-Zéland", "common" "Új-Zéland"},
   "rus" {"official" "Новая Зеландия", "common" "Новая Зеландия"},
   "swe" {"official" "Nya Zeeland", "common" "Nya Zeeland"},
   "ces" {"official" "Nový Zéland", "common" "Nový Zéland"},
   "deu" {"official" "Neuseeland", "common" "Neuseeland"},
   "ara" {"official" "نيوزيلندا", "common" "نيوزيلندا"},
   "urd" {"official" "نیوزی لینڈ", "common" "نیوزی لینڈ"},
   "srp" {"official" "Нови Зеланд", "common" "Нови Зеланд"},
   "tur" {"official" "Yeni Zelanda", "common" "Yeni Zelanda"},
   "pol" {"official" "Nowa Zelandia", "common" "Nowa Zelandia"},
   "cym" {"official" "New Zealand", "common" "New Zealand"},
   "hrv" {"official" "Novi Zeland", "common" "Novi Zeland"},
   "spa" {"official" "nueva Zelanda", "common" "Nueva Zelanda"},
   "fin" {"official" "Uusi-Seelanti", "common" "Uusi-Seelanti"},
   "per" {"official" "نیوزیلند", "common" "نیوزیلند"},
   "nld" {"official" "Nieuw Zeeland", "common" "Nieuw-Zeeland"},
   "fra" {"official" "Nouvelle-Zélande", "common" "Nouvelle-Zélande"},
   "ita" {"official" "Nuova Zelanda", "common" "Nuova Zelanda"},
   "jpn" {"official" "ニュージーランド", "common" "ニュージーランド"},
   "est" {"official" "Uus-Meremaa", "common" "Uus-Meremaa"},
   "por" {"official" "nova Zelândia", "common" "Nova Zelândia"},
   "slk" {"official" "Nový Zéland", "common" "Nový Zéland"},
   "bre" {"official" "Zeland-Nevez", "common" "Zeland-Nevez"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/nz.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/nz.png"},
  "idd" {"suffixes" ["4"], "root" "+6"},
  "flags"
  {"svg" "https://flagcdn.com/nz.svg",
   "alt"
   "The flag of New Zealand has a dark blue field with the flag of the United Kingdom — the Union Jack — in the canton and a representation of the Southern Cross constellation, made up of four five-pointed white-edged red stars, on the fly side of the field.",
   "png" "https://flagcdn.com/w320/nz.png"},
  "unMember" true,
  "name"
  {"official" "New Zealand",
   "nativeName"
   {"nzs" {"official" "New Zealand", "common" "New Zealand"},
    "eng" {"official" "New Zealand", "common" "New Zealand"},
    "mri" {"official" "Aotearoa", "common" "Aotearoa"}},
   "common" "New Zealand"},
  "postalCode" {"regex" "^(\\d{4})$", "format" "####"},
  "capitalInfo" {"latlng" [-41.3 174.78]},
  "tld" [".nz"],
  "ccn3" "554",
  "status" "officially-assigned",
  "region" "Oceania",
  "languages"
  {"nzs" "New Zealand Sign Language", "eng" "English", "mri" "Māori"},
  "cioc" "NZL",
  "currencies" {"NZD" {"name" "New Zealand dollar", "symbol" "$"}},
  "independent" true,
  "population" 5084300,
  "cca3" "NZL",
  "capital" ["Wellington"],
  "car" {"signs" ["NZ"], "side" "left"},
  "timezones"
  ["UTC-11:00" "UTC-10:00" "UTC+12:00" "UTC+12:45" "UTC+13:00"],
  "startOfWeek" "monday",
  "continents" ["Oceania"],
  "flag" "🇳🇿",
  "fifa" "NZL",
  "cca2" "NZ"}
 {"subregion" "Central America",
  "landlocked" false,
  "latlng" [13.0 -85.0],
  "area" 130373.0,
  "altSpellings"
  ["NI" "Republic of Nicaragua" "República de Nicaragua"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/P77LaEVkKJKXneRC6",
   "openStreetMaps" "https://www.openstreetmap.org/relation/287666"},
  "demonyms"
  {"eng" {"f" "Nicaraguan", "m" "Nicaraguan"},
   "fra" {"f" "Nicaraguayenne", "m" "Nicaraguayen"}},
  "translations"
  {"kor" {"official" "니카라과 공화국", "common" "니카라과"},
   "zho" {"official" "尼加拉瓜共和国", "common" "尼加拉瓜"},
   "hun" {"official" "Nicaraguai Köztársaság", "common" "Nicaragua"},
   "rus" {"official" "Республика Никарагуа", "common" "Никарагуа"},
   "swe" {"official" "Republiken Nicaragua", "common" "Nicaragua"},
   "ces" {"official" "Republika Nikaragua", "common" "Nikaragua"},
   "deu" {"official" "Republik Nicaragua", "common" "Nicaragua"},
   "ara" {"official" "جمهورية نيكاراغوا", "common" "نيكاراغوا"},
   "urd" {"official" "جمہوریہ نکاراگوا", "common" "نکاراگوا"},
   "srp" {"official" "Република Никарагва", "common" "Никарагва"},
   "tur" {"official" "Nikaragua Cumhuriyeti", "common" "Nikaragua"},
   "pol" {"official" "Republika Nikaragui", "common" "Nikaragua"},
   "cym" {"official" "Republic of Nicaragua", "common" "Nicaragua"},
   "hrv" {"official" "Republika Nikaragva", "common" "Nikaragva"},
   "spa" {"official" "República de Nicaragua", "common" "Nicaragua"},
   "fin" {"official" "Nicaraguan tasavalta", "common" "Nicaragua"},
   "per" {"official" "جمهوری نیکاراگوئه", "common" "نیکاراگوئه"},
   "nld" {"official" "Republiek Nicaragua", "common" "Nicaragua"},
   "fra" {"official" "République du Nicaragua", "common" "Nicaragua"},
   "ita" {"official" "Repubblica del Nicaragua", "common" "Nicaragua"},
   "jpn" {"official" "ニカラグア共和国", "common" "ニカラグア"},
   "est" {"official" "Nicaragua Vabariik", "common" "Nicaragua"},
   "por" {"official" "República da Nicarágua", "common" "Nicarágua"},
   "slk" {"official" "Nikaragujská republika", "common" "Nikaragua"},
   "bre" {"official" "Republik Nicaragua", "common" "Nicaragua"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ni.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ni.png"},
  "idd" {"suffixes" ["05"], "root" "+5"},
  "flags"
  {"svg" "https://flagcdn.com/ni.svg",
   "alt"
   "The flag of Nicaragua is composed of three equal horizontal bands of blue, white and blue, with the national coat of arms centered in the white band.",
   "png" "https://flagcdn.com/w320/ni.png"},
  "unMember" true,
  "name"
  {"official" "Republic of Nicaragua",
   "nativeName"
   {"spa" {"official" "República de Nicaragua", "common" "Nicaragua"}},
   "common" "Nicaragua"},
  "postalCode" {"regex" "^(\\d{7})$", "format" "###-###-#"},
  "capitalInfo" {"latlng" [12.13 -86.25]},
  "tld" [".ni"],
  "ccn3" "558",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"spa" "Spanish"},
  "cioc" "NCA",
  "currencies" {"NIO" {"name" "Nicaraguan córdoba", "symbol" "C$"}},
  "independent" true,
  "population" 6624554,
  "cca3" "NIC",
  "borders" ["CRI" "HND"],
  "capital" ["Managua"],
  "car" {"signs" ["NIC"], "side" "right"},
  "timezones" ["UTC-06:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇳🇮",
  "gini" {"2014" 46.2},
  "fifa" "NCA",
  "cca2" "NI"}
 {"subregion" "Caribbean",
  "landlocked" false,
  "latlng" [18.25 -63.16666666],
  "area" 91.0,
  "altSpellings" ["AI"],
  "maps"
  {"googleMaps" "https://goo.gl/maps/3KgLnEyN7amdno2p9",
   "openStreetMaps" "https://www.openstreetmap.org/relation/2177161"},
  "demonyms"
  {"eng" {"f" "Anguillian", "m" "Anguillian"},
   "fra" {"f" "Anguillane", "m" "Anguillan"}},
  "translations"
  {"kor" {"official" "앵귈라", "common" "앵귈라"},
   "zho" {"official" "安圭拉", "common" "安圭拉"},
   "hun" {"official" "Anguilla", "common" "Anguilla"},
   "rus" {"official" "Ангилья", "common" "Ангилья"},
   "swe" {"official" "Anguilla", "common" "Anguilla"},
   "ces" {"official" "Anguilla", "common" "Anguilla"},
   "deu" {"official" "Anguilla", "common" "Anguilla"},
   "ara" {"official" "أنغويلا", "common" "أنغويلا"},
   "urd" {"official" "اینگویلا", "common" "اینگویلا"},
   "srp" {"official" "Ангвила", "common" "Ангвила"},
   "tur" {"official" "Anguilla", "common" "Anguilla"},
   "pol" {"official" "Anguilla", "common" "Anguilla"},
   "cym" {"official" "Anguilla", "common" "Anguilla"},
   "hrv" {"official" "Anguilla", "common" "Angvila"},
   "spa" {"official" "Anguila", "common" "Anguilla"},
   "fin" {"official" "Anguilla", "common" "Anguilla"},
   "per" {"official" "آنگویلا", "common" "آنگویلا"},
   "nld" {"official" "Anguilla", "common" "Anguilla"},
   "fra" {"official" "Anguilla", "common" "Anguilla"},
   "ita" {"official" "Anguilla", "common" "Anguilla"},
   "jpn" {"official" "アングィラ", "common" "アンギラ"},
   "est" {"official" "Anguilla", "common" "Anguilla"},
   "por" {"official" "Anguilla", "common" "Anguilla"},
   "slk" {"official" "Anguilla", "common" "Anguilla"},
   "bre" {"official" "Anguilla", "common" "Anguilla"}},
  "coatOfArms"
  {"svg" "https://mainfacts.com/media/images/coats_of_arms/ai.svg",
   "png" "https://mainfacts.com/media/images/coats_of_arms/ai.png"},
  "idd" {"suffixes" ["264"], "root" "+1"},
  "flags"
  {"svg" "https://flagcdn.com/ai.svg",
   "png" "https://flagcdn.com/w320/ai.png"},
  "unMember" false,
  "name"
  {"official" "Anguilla",
   "nativeName" {"eng" {"official" "Anguilla", "common" "Anguilla"}},
   "common" "Anguilla"},
  "capitalInfo" {"latlng" [18.22 -63.05]},
  "tld" [".ai"],
  "ccn3" "660",
  "status" "officially-assigned",
  "region" "Americas",
  "languages" {"eng" "English"},
  "currencies"
  {"XCD" {"name" "Eastern Caribbean dollar", "symbol" "$"}},
  "independent" false,
  "population" 13452,
  "cca3" "AIA",
  "capital" ["The Valley"],
  "car" {"signs" ["GB"], "side" "left"},
  "timezones" ["UTC-04:00"],
  "startOfWeek" "monday",
  "continents" ["North America"],
  "flag" "🇦🇮",
  "fifa" "AIA",
  "cca2" "AI"}]
(tc/dataset (-> countries-response
                :body
                (ch/read-json)))

_unnamed [250 35]:

landlocked latlng area altSpellings maps demonyms translations coatOfArms idd flags unMember name capitalInfo tld ccn3 status region languages currencies independent population cca3 capital car timezones startOfWeek continents flag cca2 subregion cioc fifa postalCode borders gini
false [-54.5 -37.0] 3903.0 [GS South Georgia and the South Sandwich Islands] {googleMaps https://goo.gl/maps/mJzdaBwKBbm2B81q9, {eng {kor {official 조지아, common 조지아}, {} {suffixes [00], root +5} {svg https://flagcdn.com/gs.svg, png https://flagcdn.com/w320/gs.png} false {official South Georgia and the South Sandwich Islands, {latlng [-54.28 -36.5]} [.gs] 239 officially-assigned Antarctic {eng English} {SHP {name Saint Helena pound, symbol £}} false 30 SGS [King Edward Point] {signs [], side right} [UTC-02:00] monday [Antarctica] 🇬🇸 GS
openStreetMaps https://www.openstreetmap.org/relation/1983629} {f South Georgian South Sandwich Islander, zho {official 南乔治亚岛和南桑威奇群岛, common 南乔治亚}, nativeName
m South Georgian South Sandwich Islander}} hun {eng
{official Déli-Georgia és Déli-Sandwich-szigetek, {official South Georgia and the South Sandwich Islands,
common Déli-Georgia és Déli-Sandwich-szigetek}, common South Georgia}},
rus common South Georgia}
{official Южная Георгия и Южные Сандвичевы острова,
common Южная Георгия и Южные Сандвичевы острова},
swe {official Sydgeorgien, common Sydgeorgien},
ces
{official Jižní Georgie a Jižní Sandwichovy ostrovy,
common Jižní Georgie a Jižní Sandwichovy ostrovy},
deu
{official Südgeorgien und die Südlichen Sandwichinseln,
common Südgeorgien und die Südlichen Sandwichinseln},
ara
{official جورجيا الجنوبية وجزر ساندوتش الجنوبية,
common جورجيا الجنوبية},
urd {official جنوبی جارجیا و جزائر جنوبی سینڈوچ, common جنوبی جارجیا},
srp
{official Јужна Џорџија и Јужна Сендвичка Острва,
common Јужна Џорџија и Јужна Сендвичка Острва},
tur
{official Güney Georgia ve Güney Sandwich Adaları,
common Güney Georgia ve Güney Sandwich Adaları},
pol
{official Georgia Południowa i Sandwich Południowy,
common Georgia Południowa i Sandwich Południowy},
cym
{official South Georgia and the South Sandwich Islands,
common South Georgia},
hrv
{official Južna Džordžija i Otoci Južni Sendvič,
common Južna Georgija i otočje Južni Sandwich},
spa
{official Georgia del Sur y las Islas Sandwich del Sur,
common Islas Georgias del Sur y Sandwich del Sur},
fin
{official Etelä-Georgia ja Eteläiset Sandwichsaaret,
common Etelä-Georgia ja Eteläiset Sandwichsaaret},
per
{official جزایر جورجیای جنوبی و ساندویچ جنوبی,
common جزایر جورجیای جنوبی و ساندویچ جنوبی},
nld
{official Zuid-Georgië en de Zuidelijke Sandwich-eilanden,
common Zuid-Georgia en Zuidelijke Sandwicheilanden},
fra
{official Géorgie du Sud et les îles Sandwich du Sud,
common Géorgie du Sud-et-les Îles Sandwich du Sud},
ita
{official Georgia del Sud e isole Sandwich del Sud,
common Georgia del Sud e Isole Sandwich Meridionali},
jpn {official サウスジョージア·サウスサンドウィッチ諸島, common サウスジョージア・サウスサンドウィッチ諸島},
est
{official Lõuna-Georgia ja Lõuna-Sandwichi saared,
common Lõuna-Georgia ja Lõuna-Sandwichi saared},
por
{official Geórgia do Sul e Sandwich do Sul,
common Ilhas Geórgia do Sul e Sandwich do Sul},
slk
{official Južná Georgia a Južné Sandwichove ostrovy,
common Južná Georgia a Južné Sandwichove ostrovy},
bre
{official Georgia ar Su hag Inizi Sandwich ar Su,
common Georgia ar Su hag Inizi Sandwich ar Su}}
false [12.11666666 -61.66666666] 344.0 [GD] {googleMaps https://goo.gl/maps/rqWyfUAt4xhvk1Zy9, {eng {f Grenadian, m Grenadian}, fra {f Grenadienne, m Grenadien}} {kor {official 그레나다, common 그레나다}, {svg https://mainfacts.com/media/images/coats_of_arms/gd.svg, {suffixes [473], root +1} {svg https://flagcdn.com/gd.svg, true {official Grenada, {latlng [32.38 -64.68]} [.gd] 308 officially-assigned Americas {eng English} {XCD {name Eastern Caribbean dollar, symbol \(}} | true | 112519 | GRD | [St. George's] | {signs [WG], side left} | [UTC-04:00] | monday | [North America] | 🇬🇩 | GD | Caribbean | GRN | GRN | | | | | | | | | openStreetMaps https://www.openstreetmap.org/relation/550727} | | zho {official 格林纳达, common 格林纳达}, | png https://mainfacts.com/media/images/coats_of_arms/gd.png} | | alt | | nativeName {eng {official Grenada, common Grenada}}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hun {official Grenada, common Grenada}, | | | The flag of Grenada features a large central rectangular area surrounded by a red border, with three five-pointed yellow stars centered on the top and bottom borders. The central rectangle is divided diagonally into four alternating triangular areas of yellow at the top and bottom and green on the hoist and fly sides, and a five-pointed yellow star on a red circle is superimposed at its center. A symbolic nutmeg pod is situated on the green hoist-side triangle., | | common Grenada} | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rus {official Гренада, common Гренада}, | | | png https://flagcdn.com/w320/gd.png} | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | swe {official Grenada, common Grenada}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ces {official Grenada, common Grenada}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | deu {official Grenada, common Grenada}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ara {official غرينادا, common غرينادا}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | urd {official گریناڈا, common گریناڈا}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | srp {official Гренада, common Гренада}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tur {official Grenada, common Grenada}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pol {official Grenada, common Grenada}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cym {official Grenada, common Grenada}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hrv {official Grenada, common Grenada}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | spa {official Granada, common Grenada}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fin {official Grenada, common Grenada}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | per {official گرنادا, common گرنادا}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nld {official Grenada, common Grenada}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fra {official Grenade, common Grenade}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ita {official Grenada, common Grenada}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | jpn {official グレナダ, common グレナダ}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | est {official Grenada, common Grenada}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | por {official Grenada, common Granada}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | slk {official Grenada, common Grenada}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bre {official Grenada, common Grenada}} | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | true | [47.0 8.0] | 41284.0 | [CH Swiss Confederation Schweiz Suisse Svizzera Svizra] | {googleMaps https://goo.gl/maps/uVuZcXaxSx5jLyEC9, | {eng {f Swiss, m Swiss}, fra {f Suisse, m Suisse}} | {kor {official 스위스 연방, common 스위스}, | {svg https://mainfacts.com/media/images/coats_of_arms/ch.svg, | {suffixes [1], root +4} | {svg https://flagcdn.com/ch.svg, | true | {official Swiss Confederation, | {latlng [46.92 7.47]} | [.ch] | 756 | officially-assigned | Europe | {roh Romansh, gsw Swiss German, fra French, ita Italian} | {CHF {name Swiss franc, symbol Fr.}} | true | 8654622 | CHE | [Bern] | {signs [CH], side right} | [UTC+01:00] | monday | [Europe] | 🇨🇭 | CH | Western Europe | SUI | SUI | {regex ^(\d{4})\), format ####} [AUT FRA ITA LIE DEU] {2018 33.1}
openStreetMaps https://www.openstreetmap.org/relation/51701} zho {official 瑞士联邦, common 瑞士}, png https://mainfacts.com/media/images/coats_of_arms/ch.png} alt nativeName
hun {official Svájc, common Svájc}, The flag of Switzerland is square shaped. It features a white Swiss cross centered on a red field., {roh {official Confederaziun svizra, common Svizra},
rus {official Швейцарская Конфедерация, common Швейцария}, png https://flagcdn.com/w320/ch.png} gsw {official Schweizerische Eidgenossenschaft, common Schweiz},
swe {official Schweiziska edsförbundet, common Schweiz}, fra {official Confédération suisse, common Suisse},
ces {official Švýcarská konfederace, common Švýcarsko}, ita {official Confederazione Svizzera, common Svizzera}},
deu {official Schweizerische Eidgenossenschaft, common Schweiz}, common Switzerland}
ara {official الاتحاد السويسري, common سويسرا},
urd {official سوئیس متحدہ, common سویٹذرلینڈ},
srp {official Швајцарска Конфедерација, common Швајцарска},
tur {official İsviçre Konfederasyonu, common İsviçre},
pol {official Konfederacja Szwajcarska, common Szwajcaria},
cym {official Swiss Confederation, common Switzerland},
hrv {official švicarska Konfederacija, common Švicarska},
spa {official Confederación Suiza, common Suiza},
fin {official Sveitsin valaliitto, common Sveitsi},
per {official کنفدراسیون سوئیس, common سوئیس},
nld {official Zwitserse Confederatie, common Zwitserland},
fra {official Confédération suisse, common Suisse},
ita {official Confederazione svizzera, common Svizzera},
jpn {official スイス連邦, common スイス},
est {official Šveitsi Konföderatsioon, common Šveits},
por {official Confederação Suíça, common Suíça},
slk {official Švajčiarska konfederácia, common Švajčiarsko},
bre {official Kengevredad Suis, common Suis}}
false [8.5 -11.5] 71740.0 [SL Republic of Sierra Leone] {googleMaps https://goo.gl/maps/jhacar85oq9QaeKB7, {eng {f Sierra Leonean, m Sierra Leonean}, {kor {official 시에라리온 공화국, common 시에라리온}, {svg https://mainfacts.com/media/images/coats_of_arms/sl.svg, {suffixes [32], root +2} {svg https://flagcdn.com/sl.svg, true {official Republic of Sierra Leone, {latlng [8.48 -13.23]} [.sl] 694 officially-assigned Africa {eng English} {SLL {name Sierra Leonean leone, symbol Le}} true 7976985 SLE [Freetown] {signs [WAL], side right} [UTC] monday [Africa] 🇸🇱 SL Western Africa SLE SLE [GIN LBR] {2018 35.7}
openStreetMaps https://www.openstreetmap.org/relation/192777} fra {f Sierra-leonaise, m Sierra-leonais}} zho {official 塞拉利昂共和国, common 塞拉利昂}, png https://mainfacts.com/media/images/coats_of_arms/sl.png} alt nativeName
hun {official Sierra Leone Köztársaság, common Sierra Leone}, The flag of Sierra Leone is composed of three equal horizontal bands of green, white and blue., {eng {official Republic of Sierra Leone, common Sierra Leone}},
rus {official Республика Сьерра-Леоне, common Сьерра-Леоне}, png https://flagcdn.com/w320/sl.png} common Sierra Leone}
swe {official Republiken Sierra Leone, common Sierra Leone},
ces {official Republika Sierra Leone, common Sierra Leone},
deu {official Republik Sierra Leone, common Sierra Leone},
ara {official جمهورية سيراليون, common سيراليون},
urd {official جمہوریہ سیرالیون, common سیرالیون},
srp {official Република Сијера Леоне, common Сијера Леоне},
tur {official Sierra Leone Cumhuriyeti, common Sierra Leone},
pol {official Sierra Leone, common Sierra Leone},
cym {official Republic of Sierra Leone, common Sierra Leone},
hrv {official Republika Sijera Leone, common Sijera Leone},
spa {official República de Sierra Leona, common Sierra Leone},
fin {official Sierra Leonen tasavalta, common Sierra Leone},
per {official جمهوری سیرالئون, common سیرالئون},
nld {official Republiek Sierra Leone, common Sierra Leone},
fra {official République de Sierra Leone, common Sierra Leone},
ita {official Repubblica della Sierra Leone, common Sierra Leone},
jpn {official シエラレオネ共和国, common シエラレオネ},
est {official Sierra Leone Vabariik, common Sierra Leone},
por {official República da Serra Leoa, common Serra Leoa},
slk {official Sierraleonská republika, common Sierra Leone},
bre {official Republik Sierra Leone, common Sierra Leone}}
true [47.0 20.0] 93028.0 [HU] {googleMaps https://goo.gl/maps/9gfPupm5bffixiFJ6, {eng {f Hungarian, m Hungarian}, fra {f Hongroise, m Hongrois}} {kor {official 헝가리, common 헝가리}, {svg https://mainfacts.com/media/images/coats_of_arms/hu.svg, {suffixes [6], root +3} {svg https://flagcdn.com/hu.svg, true {official Hungary, {latlng [47.5 19.08]} [.hu] 348 officially-assigned Europe {hun Hungarian} {HUF {name Hungarian forint, symbol Ft}} true 9749763 HUN [Budapest] {signs [H], side right} [UTC+01:00] monday [Europe] 🇭🇺 HU Central Europe HUN HUN {regex ^()$, format ####} [AUT HRV ROU SRB SVK SVN UKR] {2018 29.6}
openStreetMaps https://www.openstreetmap.org/relation/21335} zho {official 匈牙利, common 匈牙利}, png https://mainfacts.com/media/images/coats_of_arms/hu.png} alt nativeName {hun {official Magyarország, common Magyarország}},
hun {official Magyarország, common Magyarország}, The flag of Hungary is composed of three equal horizontal bands of red, white and green., common Hungary}
rus {official Венгрия, common Венгрия}, png https://flagcdn.com/w320/hu.png}
swe {official Ungern, common Ungern},
ces {official Maďarsko, common Maďarsko},
deu {official Ungarn, common Ungarn},
ara {official الجمهورية المجرية, common المجر},
urd {official مجارستان, common مجارستان},
srp {official Мађарска, common Мађарска},
tur {official Macaristan, common Macaristan},
pol {official Węgry, common Węgry},
cym {official Hungary, common Hungary},
hrv {official Madžarska, common Mađarska},
spa {official Hungría, common Hungría},
fin {official Unkari, common Unkari},
per {official مجارستان, common مجارستان},
nld {official Hongarije, common Hongarije},
fra {official Hongrie, common Hongrie},
ita {official Ungheria, common Ungheria},
jpn {official ハンガリー, common ハンガリー},
est {official Ungari, common Ungari},
por {official Hungria, common Hungria},
slk {official Maďarsko, common Maďarsko},
bre {official Hungaria, common Hungaria}}
false [23.5 121.0] 36193.0 [TW Táiwān Republic of China 中華民國 Zhōnghuá Mínguó Chinese Taipei] {googleMaps https://goo.gl/maps/HgMKFQjNadF3Wa6B6, {eng {f Taiwanese, m Taiwanese}, fra {f Taïwanaise, m Taïwanais}} {kor {official 중화민국, common 대만}, {svg https://mainfacts.com/media/images/coats_of_arms/tw.svg, {suffixes [86], root +8} {svg https://flagcdn.com/tw.svg, png https://flagcdn.com/w320/tw.png} false {official Republic of China (Taiwan), {latlng [25.03 121.52]} [.tw .台灣 .台湾] 158 officially-assigned Asia {zho Chinese} {TWD {name New Taiwan dollar, symbol \(}} | false | 23503349 | TWN | [Taipei] | {signs [RC], side right} | [UTC+08:00] | monday | [Asia] | 🇹🇼 | TW | Eastern Asia | TPE | TPE | {regex ^(\d{5})\), format #####}
openStreetMaps https://www.openstreetmap.org/relation/449220} hun {official Kínai Köztársaság, common Tajvan}, png https://mainfacts.com/media/images/coats_of_arms/tw.png} nativeName {zho {official 中華民國, common 台灣}},
rus {official Китайская Республика, common Тайвань}, common Taiwan}
swe {official Republiken Kina, common Taiwan},
ces {official Čínská republika, common Tchaj-wan},
deu {official Republik China (Taiwan), common Taiwan},
ara {official جمهورية الصين (تايوان), common تايوان},
urd {official جمہوریہ چین (تائیوان), common تائیوان},
srp {official Република Кина, common Тајван},
tur {official Çin Cumhuriyeti (Tayvan), common Tayvan},
pol {official Republika Chińska (Tajwan), common Tajwan},
cym {official Republic of China (Taiwan), common Taiwan},
hrv {official Republika Kina, common Tajvan},
spa {official República de China en Taiwán, common Taiwán},
fin {official Kiinan tasavalta, common Taiwan},
per {official جمهوری چین, common تایوان},
nld {official Republiek China (Taiwan), common Taiwan},
fra {official République de Chine (Taïwan), common Taïwan},
ita {official Repubblica cinese (Taiwan), common Taiwan},
jpn {official 中華民国, common 台湾},
est {official Taiwani, common Taiwan},
por {official República da China, common Ilha Formosa},
slk {official Čínska republika, common Taiwan},
bre {official Republik Sina (Taiwan), common Taiwan}}
false [-13.3 -176.2] 142.0 [WF {googleMaps https://goo.gl/maps/CzVqK74QYtbHv65r5, {eng {f Wallis and Futuna Islander, m Wallis and Futuna Islander}} {kor {official 왈리스 퓌튀나, common 왈리스 퓌튀나}, {} {suffixes [81], root +6} {svg https://flagcdn.com/wf.svg, png https://flagcdn.com/w320/wf.png} false {official Territory of the Wallis and Futuna Islands, {latlng [-13.95 -171.93]} [.wf] 876 officially-assigned Oceania {fra French} {XPF {name CFP franc, symbol ₣}} false 11750 WLF [Mata-Utu] {signs [F], side right} [UTC+12:00] monday [Oceania] 🇼🇫 WF Polynesia {regex ^(986)$, format #####}
Territory of the Wallis and Futuna Islands openStreetMaps https://www.openstreetmap.org/relation/3412448} zho {official 瓦利斯和富图纳群岛, common 瓦利斯和富图纳群岛}, nativeName
Territoire des îles Wallis et Futuna] hun {official Wallis és Futuna, common Wallis és Futuna}, {fra
rus {official Territoire des îles Wallis et Futuna,
{official Территория Уоллис и Футуна острова, common Уоллис и Футуна}, common Wallis et Futuna}},
swe common Wallis and Futuna}
{official Territoriet Wallis- och Futunaöarna,
common Wallis- och Futunaöarna},
ces
{official Teritorium ostrovů Wallis a Futuna, common Wallis a Futuna},
deu {official Gebiet der Wallis und Futuna, common Wallis und Futuna},
ara {official إقليم جزر واليس وفوتونا, common واليس وفوتونا},
urd {official سر زمینِ والس و فتونہ جزائر, common والس و فتونہ},
srp
{official Територија државе Валис и Футуна, common Валис и Футуна},
tur
{official Wallis ve Futuna Adaları Bölgesi,
common Wallis ve Futuna Adaları Bölgesi},
pol
{official Terytorium Wysp Wallis i Futuna, common Wallis i Futuna},
cym
{official Territory of the Wallis and Futuna Islands,
common Wallis and Futuna},
hrv {official Teritoriju Wallis i Futuna, common Wallis i Fortuna},
spa
{official Territorio de las Islas Wallis y Futuna,
common Wallis y Futuna},
fin {official Wallisin ja Futunan yhteisö, common Wallis ja Futuna},
per {official جزایر والیس و فوتونا, common والیس و فوتونا},
nld
{official Grondgebied van de Wallis en Futuna,
common Wallis en Futuna},
fra
{official Territoire des îles Wallis et Futuna,
common Wallis-et-Futuna},
ita
{official Territorio delle Isole Wallis e Futuna,
common Wallis e Futuna},
jpn {official ウォリス·フツナ諸島の領土, common ウォリス・フツナ},
est {official Wallise ja Futuna ala, common Wallis ja Futuna},
por
{official Território das Ilhas Wallis e Futuna,
common Wallis e Futuna},
slk
{official Teritórium ostrovov Wallis a Futuna,
common Wallis a Futuna},
bre {official Tiriad Inizi Wallis ha Futuna, common Wallis ha Futuna}}
false [13.16666666 -59.53333333] 430.0 [BB] {googleMaps https://goo.gl/maps/2m36v8STvbGAWd9c7, {eng {f Barbadian, m Barbadian}, fra {f Barbadienne, m Barbadien}} {kor {official 바베이도스, common 바베이도스}, {svg https://mainfacts.com/media/images/coats_of_arms/bb.svg, {suffixes [246], root +1} {svg https://flagcdn.com/bb.svg, true {official Barbados, {latlng [13.1 -59.62]} [.bb] 052 officially-assigned Americas {eng English} {BBD {name Barbadian dollar, symbol \(}} | true | 287371 | BRB | [Bridgetown] | {signs [BDS], side left} | [UTC-04:00] | monday | [North America] | 🇧🇧 | BB | Caribbean | BAR | BRB | {regex ^(?:BB)*(\d{5})\), format BB#####}
openStreetMaps https://www.openstreetmap.org/relation/547511} zho {official 巴巴多斯, common 巴巴多斯}, png https://mainfacts.com/media/images/coats_of_arms/bb.png} alt nativeName {eng {official Barbados, common Barbados}},
hun {official Barbados, common Barbados}, The flag of Barbados is composed of three equal vertical bands of ultramarine, gold and ultramarine. The head of a black trident is centered in the gold band., common Barbados}
rus {official Барбадос, common Барбадос}, png https://flagcdn.com/w320/bb.png}
swe {official Barbados, common Barbados},
ces {official Barbados, common Barbados},
deu {official Barbados, common Barbados},
ara {official باربادوس, common باربادوس},
urd {official بارباڈوس, common بارباڈوس},
srp {official Барбадос, common Барбадос},
tur {official Barbados, common Barbados},
pol {official Barbados, common Barbados},
cym {official Barbados, common Barbados},
hrv {official Barbados, common Barbados},
spa {official Barbados, common Barbados},
fin {official Barbados, common Barbados},
per {official باربادوس, common باربادوس},
nld {official Barbados, common Barbados},
fra {official Barbade, common Barbade},
ita {official Barbados, common Barbados},
jpn {official バルバドス, common バルバドス},
est {official Barbados, common Barbados},
por {official Barbados, common Barbados},
slk {official Barbados, common Barbados},
bre {official Barbados, common Barbados}}
false [-25.06666666 -130.1] 47.0 [PN Pitcairn Pitcairn Henderson Ducie and Oeno Islands] {googleMaps https://goo.gl/maps/XGJMnMAigXjXcxSa7, {eng {f Pitcairn Islander, m Pitcairn Islander}, {kor {official 핏케언 제도, common 핏케언 제도}, {} {suffixes [4], root +6} {svg https://flagcdn.com/pn.svg, png https://flagcdn.com/w320/pn.png} false {official Pitcairn Group of Islands, {latlng [-25.07 -130.08]} [.pn] 612 officially-assigned Oceania {eng English} {NZD {name New Zealand dollar, symbol $}} false 56 PCN [Adamstown] {signs [GB], side left} [UTC-08:00] monday [Oceania] 🇵🇳 PN Polynesia
openStreetMaps https://www.openstreetmap.org/relation/2185375} fra {f Pitcairnaise, m Pitcairnais}} zho {official 皮特凯恩群岛, common 皮特凯恩群岛}, nativeName
hun {official Pitcairn-szigetek, common Pitcairn-szigetek}, {eng {official Pitcairn Group of Islands, common Pitcairn Islands}},
rus {official Питкэрн группа островов, common Острова Питкэрн}, common Pitcairn Islands}
swe {official Pitcairnöarna, common Pitcairnöarna},
ces {official Pitcairnovy ostrovy, common Pitcairnovy ostrovy},
deu {official Pitcairninseln, common Pitcairninseln},
ara {official جزر بيتكيرن, common جزر بيتكيرن},
urd {official پٹکیرن جزائر, common جزائر پٹکیرن},
srp
{official Острва Питкерн, Хендерсон, Дуци и Оин,
common Острва Питкерн},
tur
{official Pitcairn, Henderson, Ducie ve Oeno Adaları,
common Pitcairn Adaları},
pol
{official Wyspy Pitcairn, Henderson, Ducie i Oeno, common Pitcairn},
cym {official Pitcairn Group of Islands, common Pitcairn Islands},
hrv {official Pitcairn skupine otoka, common Pitcairnovo otočje},
spa {official Grupo de Islas Pitcairn, common Islas Pitcairn},
fin {official Pitcairn, common Pitcairn},
per {official جزایر پیت‌کرن, common جزایر پیت‌کرن},
nld {official Pitcairn groep eilanden, common Pitcairneilanden},
fra {official Groupe d’îles Pitcairn, common Îles Pitcairn},
ita {official Pitcairn gruppo di isole, common Isole Pitcairn},
jpn {official 島のピトケアングループ, common ピトケアン},
est
{official Pitcairni, Hendersoni, Ducie ja Oeno saar, common Pitcairn},
por {official Pitcairn grupo de ilhas, common Ilhas Pitcairn},
slk {official Pitcairnove ostrovy, common Pitcairnove ostrovy},
bre
{official Inizi Pitcairn, Henderson, Ducie hag Oeno,
common Inizi Pitcairn}}
false [8.0 -5.0] 322463.0 [CI {googleMaps https://goo.gl/maps/wKsmN7f5qAeNtGjP6, {eng {f Ivorian, m Ivorian}, fra {f Ivoirienne, m Ivoirien}} {kor {official 코트디부아르 공화국, common 코트디부아르}, {svg https://mainfacts.com/media/images/coats_of_arms/ci.svg, {suffixes [25], root +2} {svg https://flagcdn.com/ci.svg, true {official Republic of Côte d’Ivoire, {latlng [6.82 -5.27]} [.ci] 384 officially-assigned Africa {fra French} {XOF {name West African CFA franc, symbol Fr}} true 26378275 CIV [Yamoussoukro] {signs [CI], side right} [UTC] monday [Africa] 🇨🇮 CI Western Africa CIV CIV [BFA GHA GIN LBR MLI] {2015 41.5}
Côte d’Ivoire openStreetMaps https://www.openstreetmap.org/relation/192779} zho {official 科特迪瓦共和国, common 科特迪瓦}, png https://mainfacts.com/media/images/coats_of_arms/ci.png} alt nativeName
Ivory Coast hun {official Elefántcsontparti Köztársaság, common Elefántcsontpart}, The flag of Ivory Coast is composed of three equal vertical bands of orange, white and green., {fra {official République de Côte d’Ivoire, common Côte d’Ivoire}},
Republic of Côte d’Ivoire rus {official Республика Кот-д’Ивуаре, common Кот-д’Ивуар}, png https://flagcdn.com/w320/ci.png} common Ivory Coast}
République de Côte d’Ivoire] swe {official Republiken Elfenbenskusten, common Elfenbenskusten},
ces {official Republika Pobřeží slonoviny, common Pobřeží slonoviny},
deu {official Republik Côte d’Ivoire, common Elfenbeinküste},
ara {official جمهورية ساحل العاج, common ساحل العاج},
urd {official جمہوریہ کوت دیواغ, common آئیوری کوسٹ},
srp {official Република Обала Слоноваче, common Обала Слоноваче},
tur {official Fildişi Sahili, common Fildişi Sahili},
pol
{official Republika WybrzeŻa Kości Słoniowej,
common WybrzeŻe Kości Słoniowej},
cym {official Republic of Côte d’Ivoire, common Ivory Coast},
hrv {official Republika Côte d’Ivoire, common Obala Bjelokosti},
spa {official República de Côte d’Ivoire, common Costa de Marfil},
fin {official Norsunluurannikon tasavalta, common Norsunluurannikko},
per {official جمهوری ساحل عاج, common ساحل عاج},
nld {official Republiek Ivoorkust, common Ivoorkust},
fra {official République de Côte d’ Ivoire, common Côte d’Ivoire},
ita {official Repubblica della Costa d’Avorio, common Costa d’Avorio},
jpn {official コートジボワール共和国, common コートジボワール},
est {official Côte d’Ivoire’i Vabariik, common Elevandiluurannik},
por {official República da Côte d’Ivoire, common Costa do Marfim},
slk {official Republika Pobrežie Slonoviny, common Pobržie Slonoviny},
bre {official Republik Aod an Olifant, common Aod an Olifant}}
true [-20.0 30.0] 390757.0 [ZW Republic of Zimbabwe] {googleMaps https://goo.gl/maps/M26BqdwQctqxXS65A, {eng {f Zimbabwean, m Zimbabwean}, fra {f Zimbabwéenne, m Zimbabwéen}} {kor {official 짐바브웨 공화국, common 짐바브웨}, {svg https://mainfacts.com/media/images/coats_of_arms/zw.svg, {suffixes [63], root +2} {svg https://flagcdn.com/zw.svg, true {official Republic of Zimbabwe, {latlng [-17.82 31.03]} [.zw] 716 officially-assigned Africa {nya Chewa, {ZWL {name Zimbabwean dollar, symbol \(}} | true | 14862927 | ZWE | [Harare] | {signs [ZW], side left} | [UTC+02:00] | monday | [Africa] | 🇿🇼 | ZW | Southern Africa | ZIM | ZIM | | [BWA MOZ ZAF ZMB] | {2019 50.3} | | | | | | openStreetMaps https://www.openstreetmap.org/relation/195272} | | zho {official 津巴布韦共和国, common 津巴布韦}, | png https://mainfacts.com/media/images/coats_of_arms/zw.png} | | alt | | nativeName | | | | | | toi Tonga, | | | | | | | | | | | | | | | | | | | | | | | | | hun {official Zimbabwei Köztársaság, common Zimbabwe}, | | | The flag of Zimbabwe is composed of seven equal horizontal bands of green, yellow, red, black, red, yellow and green, with a white isosceles triangle superimposed on the hoist side of the field. This triangle is edged in black, spans about one-fourth the width of the field and has its base on the hoist end. A yellow Zimbabwe bird superimposed on a five-pointed red star is centered in the triangle., | | {nya {official Republic of Zimbabwe, common Zimbabwe}, | | | | | | tsn Tswana, | | | | | | | | | | | | | | | | | | | | | | | | | rus {official Республика Зимбабве, common Зимбабве}, | | | png https://flagcdn.com/w320/zw.png} | | toi {official Republic of Zimbabwe, common Zimbabwe}, | | | | | | sot Sotho, | | | | | | | | | | | | | | | | | | | | | | | | | swe {official Republiken Zimbabwe, common Zimbabwe}, | | | | | tsn {official Republic of Zimbabwe, common Zimbabwe}, | | | | | | nde Northern Ndebele, | | | | | | | | | | | | | | | | | | | | | | | | | ces {official Zimbabwská republika, common Zimbabwe}, | | | | | sot {official Republic of Zimbabwe, common Zimbabwe}, | | | | | | kck Kalanga, | | | | | | | | | | | | | | | | | | | | | | | | | deu {official Republik Simbabwe, common Simbabwe}, | | | | | nde {official Republic of Zimbabwe, common Zimbabwe}, | | | | | | bwg Chibarwe, | | | | | | | | | | | | | | | | | | | | | | | | | ara {official جمهورية زيمبابوي, common زيمبابوي}, | | | | | kck {official Republic of Zimbabwe, common Zimbabwe}, | | | | | | eng English, | | | | | | | | | | | | | | | | | | | | | | | | | urd {official جمہوریہ زمبابوے, common زمبابوے}, | | | | | bwg {official Republic of Zimbabwe, common Zimbabwe}, | | | | | | zib Zimbabwean Sign Language, | | | | | | | | | | | | | | | | | | | | | | | | | srp {official Република Зимбабве, common Зимбабве}, | | | | | eng {official Republic of Zimbabwe, common Zimbabwe}, | | | | | | tso Tsonga, | | | | | | | | | | | | | | | | | | | | | | | | | tur {official Zimbabve Cumhuriyeti, common Zimbabve}, | | | | | zib {official Republic of Zimbabwe, common Zimbabwe}, | | | | | | ven Venda, | | | | | | | | | | | | | | | | | | | | | | | | | pol {official Republika Zimbabwe, common Zimbabwe}, | | | | | tso {official Republic of Zimbabwe, common Zimbabwe}, | | | | | | xho Xhosa, | | | | | | | | | | | | | | | | | | | | | | | | | cym {official Republic of Zimbabwe, common Zimbabwe}, | | | | | ven {official Republic of Zimbabwe, common Zimbabwe}, | | | | | | sna Shona, | | | | | | | | | | | | | | | | | | | | | | | | | hrv {official Republika Zimbabve, common Zimbabve}, | | | | | xho {official Republic of Zimbabwe, common Zimbabwe}, | | | | | | khi Khoisan, | | | | | | | | | | | | | | | | | | | | | | | | | spa {official República de Zimbabue, common Zimbabue}, | | | | | sna {official Republic of Zimbabwe, common Zimbabwe}, | | | | | | ndc Ndau} | | | | | | | | | | | | | | | | | | | | | | | | | fin {official Zimbabwen tasavalta, common Zimbabwe}, | | | | | khi {official Republic of Zimbabwe, common Zimbabwe}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | per {official جمهوری زیمبابوه, common زیمبابوه}, | | | | | ndc {official Republic of Zimbabwe, common Zimbabwe}}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nld {official Republiek Zimbabwe, common Zimbabwe}, | | | | | common Zimbabwe} | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fra {official République du Zimbabwe, common Zimbabwe}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ita {official Repubblica dello Zimbabwe, common Zimbabwe}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | jpn {official ジンバブエ共和国, common ジンバブエ}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | est {official Zimbabwe Vabariik, common Zimbabwe}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | por {official República do Zimbabwe, common Zimbabwe}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | slk {official Zimbabwianska republika, common Zimbabwe}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bre {official Republik Zimbabwe, common Zimbabwe}} | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | false | [18.0708 63.0501] | 53.0 | [MF | {googleMaps https://goo.gl/maps/P9ho9QuJ9EAR28JEA, | {eng {f Saint Martin Islander, m Saint Martin Islander}, | {kor {official 생마르탱, common 생마르탱}, | {} | {suffixes [90], root +5} | {svg https://flagcdn.com/mf.svg, png https://flagcdn.com/w320/mf.png} | false | {official Saint Martin, | {latlng [18.07 -63.08]} | [.fr .gp] | 663 | officially-assigned | Americas | {fra French} | {EUR {name Euro, symbol €}} | false | 38659 | MAF | [Marigot] | {signs [F], side right} | [UTC-04:00] | monday | [North America] | 🇲🇫 | MF | Caribbean | | | {format ### ###} | [SXM] | | | | | | Collectivity of Saint Martin | openStreetMaps https://www.openstreetmap.org/relation/63064} | fra {f Saint-Martinoise, m Saint-Martinois}} | zho {official 圣马丁, common 圣马丁}, | | | | | nativeName {fra {official Saint-Martin, common Saint-Martin}}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | Collectivité de Saint-Martin | | | hun {official Saint-Martin Közösség, common Saint-Martin}, | | | | | common Saint Martin} | | | | | | | | | | | | | | | | | | | | | | | | | | | | Saint Martin (French part)] | | | rus {official Сен-Мартен, common Сен-Мартен}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | swe {official Förvaltningsområdet Saint-Martin, common Saint-Martin}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ces {official Svatý Martin, common Svatý Martin (Francie)}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | deu {official Saint-Martin, common Saint-Martin}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ara {official سانت مارتن, common سانت مارتن}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | urd {official سینٹ مارٹن, common سینٹ مارٹن}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | srp {official Свети Мартин, common Свети Мартин}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tur {official Saint Martin, common Saint Martin}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pol {official Wspólnota Saint-Martin, common Saint-Martin}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cym {official Saint Martin, common Saint Martin}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hrv {official Saint Martin, common Sveti Martin}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | spa {official Saint Martin, common Saint Martin}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fin {official Saint-Martin, common Saint-Martin}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | per {official سن مارتن, common سن مارتن}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nld {official Saint Martin, common Saint-Martin}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fra {official Saint-Martin, common Saint-Martin}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ita {official saint Martin, common Saint Martin}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | jpn {official サンマルタン島, common サン・マルタン(フランス領)}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | est {official Saint-Martini ühendus, common Saint-Martin}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | por {official saint Martin, common São Martinho}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | slk {official Saint-Martin, common Saint-Martin}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bre {official Saint-Martin, common Saint-Martin}} | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | true | [46.0 105.0] | 1564110.0 | [MN] | {googleMaps https://goo.gl/maps/A1X7bMCKThBDNjzH6, | {eng {f Mongolian, m Mongolian}, fra {f Mongole, m Mongol}} | {kor {official 몽골, common 몽골국}, | {svg https://mainfacts.com/media/images/coats_of_arms/mn.svg, | {suffixes [76], root +9} | {svg https://flagcdn.com/mn.svg, | true | {official Mongolia, | {latlng [47.92 106.91]} | [.mn] | 496 | officially-assigned | Asia | {mon Mongolian} | {MNT {name Mongolian tögrög, symbol ₮}} | true | 3278292 | MNG | [Ulan Bator] | {signs [MGL], side right} | [UTC+07:00 UTC+08:00] | monday | [Asia] | 🇲🇳 | MN | Eastern Asia | MGL | MNG | {regex ^(\d{6})\), format ######} [CHN RUS] {2018 32.7}
openStreetMaps https://www.openstreetmap.org/relation/161033} zho {official 蒙古, common 蒙古}, png https://mainfacts.com/media/images/coats_of_arms/mn.png} alt nativeName {mon {official Монгол улс, common Монгол улс}},
hun {official Mongólia, common Mongólia}, The flag of Mongolia is composed of three equal vertical bands of red, blue and red, with the national emblem — the Soyombo — in gold centered in the hoist-side red band., common Mongolia}
rus {official Монголия, common Монголия}, png https://flagcdn.com/w320/mn.png}
swe {official Mongoliet, common Mongoliet},
ces {official Stát Mongolsko, common Mongolsko},
deu {official Mongolei, common Mongolei},
ara {official جمهورية منغوليا, common منغوليا},
urd {official منگولیا, common منگولیا},
srp {official Монголија, common Монголија},
tur {official Moğolistan, common Moğolistan},
pol {official Mongolia, common Mongolia},
cym {official Mongolia, common Mongolia},
hrv {official Mongolija, common Mongolija},
spa {official Mongolia, common Mongolia},
fin {official Mongolian tasavalta, common Mongolia},
per {official مغولستان, common مغولستان},
nld {official Mongolië, common Mongolië},
fra {official Mongolie, common Mongolie},
ita {official Mongolia, common Mongolia},
jpn {official モンゴル, common モンゴル},
est {official Mongoolia, common Mongoolia},
por {official Mongólia, common Mongólia},
slk {official Mongolsko, common Mongolsko},
bre {official Mongolia, common Mongolia}}
false [39.5 -8.0] 92090.0 [PT Portuguesa Portuguese Republic República Portuguesa] {googleMaps https://goo.gl/maps/BaTBSyc4GWMmbAKB8, {eng {f Portuguese, m Portuguese}, fra {f Portugaise, m Portugais}} {kor {official 포르투갈 공화국, common 포르투갈}, {svg https://mainfacts.com/media/images/coats_of_arms/pt.svg, {suffixes [51], root +3} {svg https://flagcdn.com/pt.svg, true {official Portuguese Republic, {latlng [38.72 -9.13]} [.pt] 620 officially-assigned Europe {por Portuguese} {EUR {name Euro, symbol €}} true 10305564 PRT [Lisbon] {signs [P], side right} [UTC-01:00 UTC] monday [Europe] 🇵🇹 PT Southern Europe POR POR {regex ^()$, format ####-###} [ESP] {2018 33.5}
openStreetMaps https://www.openstreetmap.org/relation/295480} zho {official 葡萄牙共和国, common 葡萄牙}, png https://mainfacts.com/media/images/coats_of_arms/pt.png} alt nativeName {por {official República português, common Portugal}},
hun {official Portugál Köztársaság, common Portugália}, The flag of Portugal is composed of two vertical bands of green and red in the ratio of 2:3, with the coat of arms of Portugal centered over the two-color boundary., common Portugal}
rus {official Португальская Республика, common Португалия}, png https://flagcdn.com/w320/pt.png}
swe {official Republiken Portugal, common Portugal},
ces {official Portugalská republika, common Portugalsko},
deu {official Portugiesische Republik, common Portugal},
ara {official الجمهورية البرتغالية, common البرتغال},
urd {official جمہوریہ پرتگال, common پرتگال},
srp {official Португалска Република, common Португал},
tur {official Portekiz Cumhuriyeti, common Portekiz},
pol {official Republika Portugalska, common Portugalia},
cym {official Portuguese Republic, common Portugal},
hrv {official Portugalska Republika, common Portugal},
spa {official República Portuguesa, common Portugal},
fin {official Portugalin tasavalta, common Portugali},
per {official جمهوری پرتغال, common پرتغال},
nld {official Portugese Republiek, common Portugal},
fra {official République portugaise, common Portugal},
ita {official Repubblica portoghese, common Portogallo},
jpn {official ポルトガル共和国, common ポルトガル},
est {official Portugali Vabariik, common Portugal},
por {official República português, common Portugal},
slk {official Portugalská republika, common Portugalsko},
bre {official Republik Portugalat, common Portugal}}
false [-14.33333333 -170.0] 199.0 [AS Amerika Sāmoa Amelika Sāmoa Sāmoa Amelika] {googleMaps https://goo.gl/maps/Re9ePMjwP1sFCBFA6, {eng {f American Samoan, m American Samoan}, fra {f Samoane, m Samoan}} {kor {official 아메리칸사모아, common 아메리칸사모아}, {} {suffixes [684], root +1} {svg https://flagcdn.com/as.svg, png https://flagcdn.com/w320/as.png} false {official American Samoa, {latlng [-14.27 -170.7]} [.as] 016 officially-assigned Oceania {eng English, smo Samoan} {USD {name United States dollar, symbol \(}} | false | 55197 | ASM | [Pago Pago] | {signs [USA], side right} | [UTC-11:00] | monday | [Oceania] | 🇦🇸 | AS | Polynesia | ASA | ASA | | | | | | | | | openStreetMaps https://www.openstreetmap.org/relation/2177187} | | zho {official 美属萨摩亚, common 美属萨摩亚}, | | | | | nativeName | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hun {official Szamoa, common Szamoa}, | | | | | {eng {official American Samoa, common American Samoa}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rus {official американское Самоа, common Американское Самоа}, | | | | | smo {official Sāmoa Amelika, common Sāmoa Amelika}}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | swe {official Amerikanska Samoa, common Amerikanska Samoa}, | | | | | common American Samoa} | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ces {official Americká Samoa, common Americká Samoa}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | deu {official Amerikanisch-Samoa, common Amerikanisch-Samoa}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ara {official ساموا الأمريكية, common ساموا الأمريكية}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | urd {official امریکی سمووا, common امریکی سمووا}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | srp {official Америчка Самоа, common Америчка Самоа}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tur {official Amerikan Samoası, common Amerikan Samoası}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pol {official Samoa Amerykańskie, common Samoa Amerykańskie}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cym {official American Samoa, common American Samoa}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hrv {official američka Samoa, common Američka Samoa}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | spa {official Samoa Americana, common Samoa Americana}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fin {official Amerikan Samoa, common Amerikan Samoa}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | per {official ساموآی آمریکا, common ساموآی آمریکا}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nld {official Amerikaans Samoa, common Amerikaans Samoa}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fra {official Samoa américaines, common Samoa américaines}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ita {official Samoa americane, common Samoa Americane}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | jpn {official 米サモア, common アメリカ領サモア}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | est {official Ameerika Samoa, common Ameerika Samoa}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | por {official Samoa americana, common Samoa Americana}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | slk {official Americká Samoa, common Americká Samoa}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bre {official Samoa Amerikan, common Samoa Amerikan}} | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | false | [-1.0 15.0] | 342000.0 | [CG Congo Congo-Brazzaville] | {googleMaps https://goo.gl/maps/Phf5dDDKdfCtuBTb6, | {eng {f Congolese, m Congolese}, fra {f Congolaise, m Congolais}} | {kor {official 콩고, common 콩고}, | {} | {suffixes [42], root +2} | {svg https://flagcdn.com/cg.svg, | true | {official Republic of the Congo, | {latlng [-4.25 15.28]} | [.cg] | 178 | officially-assigned | Africa | {lin Lingala, kon Kikongo, fra French} | {XAF {name Central African CFA franc, symbol Fr}} | true | 5657000 | COG | [Brazzaville] | {signs [RCB], side right} | [UTC+01:00] | monday | [Africa] | 🇨🇬 | CG | Middle Africa | CGO | CGO | | [AGO CMR CAF COD GAB] | {2011 48.9} | | | | | | openStreetMaps https://www.openstreetmap.org/relation/192794} | | zho {official 刚果共和国, common 刚果}, | | | alt | | nativeName | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hun {official Kongói Köztársaság, common Kongói Köztársaság}, | | | The flag of the Republic of the Congo features a yellow diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a green and red triangle respectively., | | {lin {official Republíki ya Kongó, common Republíki ya Kongó}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rus {official Республика Конго, common Республика Конго}, | | | png https://flagcdn.com/w320/cg.png} | | kon {official Repubilika ya Kongo, common Repubilika ya Kongo}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | swe {official Republiken Kongo, common Kongo-Brazzaville}, | | | | | fra {official République du Congo, common République du Congo}}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ces {official Konžská republika, common Kongo}, | | | | | common Republic of the Congo} | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | deu {official Republik Kongo, common Kongo}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ara {official جمهورية الكونغو, common جمهورية الكونفو}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | urd {official جمہوریہ کانگو, common جمہوریہ کانگو}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | srp {official Република Конго, common Конго}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tur {official Kongo Cumhuriyeti, common Kongo Cumhuriyeti}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pol {official Republika Konga, common Kongo}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cym {official Gweriniaeth y Congo, common Gweriniaeth y Congo}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hrv {official Republika Kongo, common Kongo}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | spa {official República del Congo, common Congo}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fin {official Kongon tasavalta, common Kongo-Brazzaville}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | per {official جمهوری برازاویل کُنگو, common جمهوری کُنگو}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nld {official Republiek Congo, common Congo}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fra {official République du Congo, common Congo}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ita {official Repubblica del Congo, common Congo}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | jpn {official コンゴ共和国, common コンゴ共和国}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | est {official Kongo Vabariik, common Kongo Vabariik}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | por {official República do Congo, common Congo}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | slk {official Konžská republika, common Kongo}, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bre {official Republik Kongo, common Kongo-Brazzaville}} | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | false | [50.83333333 4.0] | 30528.0 | [BE | {googleMaps https://goo.gl/maps/UQQzat85TCtPRXAL8, | {eng {f Belgian, m Belgian}, fra {f Belge, m Belge}} | {kor {official 벨기에 왕국, common 벨기에}, | {svg https://mainfacts.com/media/images/coats_of_arms/be.svg, | {suffixes [2], root +3} | {svg https://flagcdn.com/be.svg, | true | {official Kingdom of Belgium, | {latlng [50.83 4.33]} | [.be] | 056 | officially-assigned | Europe | {deu German, nld Dutch, fra French} | {EUR {name Euro, symbol €}} | true | 11555997 | BEL | [Brussels] | {signs [B], side right} | [UTC+01:00] | monday | [Europe] | 🇧🇪 | BE | Western Europe | BEL | BEL | {regex ^(\d{4})\), format ####} [FRA DEU LUX NLD] {2018 27.2}
België openStreetMaps https://www.openstreetmap.org/relation/52411} zho {official 比利时王国, common 比利时}, png https://mainfacts.com/media/images/coats_of_arms/be.png} alt nativeName
Belgie hun {official Belga Királyság, common Belgium}, The flag of Belgium is composed of three equal vertical bands of black, yellow and red., {deu {official Königreich Belgien, common Belgien},
Belgien rus {official Королевство Бельгия, common Бельгия}, png https://flagcdn.com/w320/be.png} nld {official Koninkrijk België, common België},
Belgique swe {official Konungariket Belgien, common Belgien}, fra {official Royaume de Belgique, common Belgique}},
Kingdom of Belgium ces {official Belgické království, common Belgie}, common Belgium}
Koninkrijk België deu {official Königreich Belgien, common Belgien},
Royaume de Belgique ara {official مملكة بلجيكا, common بلجيكا},
Königreich Belgien] urd {official مملکتِ بلجئیم, common بلجئیم},
srp {official Краљевина Белгија, common Белгија},
tur {official Belçika Krallığı, common Belğika},
pol {official Królestwo Belgii, common Belgia},
cym {official Teyrnas Gwlad Belg, common Gwlad Belg},
hrv {official Kraljevina Belgija, common Belgija},
spa {official Reino de Bélgica, common Bélgica},
fin {official Belgian kuningaskunta, common Belgia},
per {official پادشاهی بلژیک, common بلژیک},
nld {official Koninkrijk België, common België},
fra {official Royaume de Belgique, common Belgique},
ita {official Regno del Belgio, common Belgio},
jpn {official ベルギー王国, common ベルギー},
est {official Belgia Kuningriik, common Belgia},
por {official Reino da Bélgica, common Bélgica},
slk {official Belgické kráľovstvo, common Belgicko},
bre {official Rouantelezh Belgia, common Belgia}}
false [31.47 35.13] 20770.0 [IL State of Israel Medīnat Yisrā’el] {googleMaps https://goo.gl/maps/6UY1AH8XeafVwdC97, {eng {f Israeli, m Israeli}, fra {f Israélienne, m Israélien}} {kor {official 이스라엘국, common 이스라엘}, {svg https://mainfacts.com/media/images/coats_of_arms/il.svg, {suffixes [72], root +9} {svg https://flagcdn.com/il.svg, true {official State of Israel, {latlng [31.77 35.23]} [.il] 376 officially-assigned Asia {ara Arabic, heb Hebrew} {ILS {name Israeli new shekel, symbol ₪}} true 9216900 ISR [Jerusalem] {signs [IL], side right} [UTC+02:00] sunday [Asia] 🇮🇱 IL Western Asia ISR ISR {regex ^()$, format #####} [EGY JOR LBN PSE SYR] {2016 39.0}
openStreetMaps https://www.openstreetmap.org/relation/1473946} zho {official 以色列国, common 以色列}, png https://mainfacts.com/media/images/coats_of_arms/il.png} alt nativeName
hun {official Izrael, common Izrael}, The flag of Israel has a white field with a blue hexagram — the Magen David — centered between two equal horizontal blue bands situated near the top and bottom edges of the field., {ara {official دولة إسرائيل, common إسرائيل},
rus {official Государство Израиль, common Израиль}, png https://flagcdn.com/w320/il.png} heb {official מדינת ישראל, common ישראל}},
swe {official Staten Israel, common Israel}, common Israel}
ces {official Stát Izrael, common Izrael},
deu {official Staat Israel, common Israel},
ara {official دولة إسرائيل, common إسرائيل},
urd {official ریاستِ اسرائیل, common اسرائیل},
srp {official Држава Израел, common Израел},
tur {official İsrail Devleti, common İsrail},
pol {official Państwo Izrael, common Izrael},
cym {official State of Israel, common Israel},
hrv {official Država Izrael, common Izrael},
spa {official Estado de Israel, common Israel},
fin {official Israelin valtio, common Israel},
per {official فلسطين اشغالی, common فلسطين اشغالی},
nld {official Staat Israël, common Israël},
fra {official État d’Israël, common Israël},
ita {official Stato di Israele, common Israele},
jpn {official イスラエル国, common イスラエル},
est {official Iisraeli Riik, common Iisrael},
por {official Estado de Israel, common Israel},
slk {official Izraelský štát, common Izrael},
bre {official Stad Israel, common Israel}}
false [-41.0 174.0] 270467.0 [NZ Aotearoa] {googleMaps https://goo.gl/maps/xXiDQo65dwdpw9iu8, {eng {f New Zealander, m New Zealander}, {kor {official 뉴질랜드, common 뉴질랜드}, {svg https://mainfacts.com/media/images/coats_of_arms/nz.svg, {suffixes [4], root +6} {svg https://flagcdn.com/nz.svg, true {official New Zealand, {latlng [-41.3 174.78]} [.nz] 554 officially-assigned Oceania {nzs New Zealand Sign Language, eng English, mri Māori} {NZD {name New Zealand dollar, symbol \(}} | true | 5084300 | NZL | [Wellington] | {signs [NZ], side left} | [UTC-11:00 UTC-10:00 UTC+12:00 UTC+12:45 UTC+13:00] | monday | [Oceania] | 🇳🇿 | NZ | Australia and New Zealand | NZL | NZL | {regex ^(\d{4})\), format ####}
openStreetMaps fra {f Neo-Zélandaise, m Neo-Zélandais}} zho {official 新西兰, common 新西兰}, png https://mainfacts.com/media/images/coats_of_arms/nz.png} alt nativeName
https://www.openstreetmap.org/relation/556706#map=5/-46.710/172.046} hun {official Új-Zéland, common Új-Zéland}, The flag of New Zealand has a dark blue field with the flag of the United Kingdom — the Union Jack — in the canton and a representation of the Southern Cross constellation, made up of four five-pointed white-edged red stars, on the fly side of the field., {nzs {official New Zealand, common New Zealand},
rus {official Новая Зеландия, common Новая Зеландия}, png https://flagcdn.com/w320/nz.png} eng {official New Zealand, common New Zealand},
swe {official Nya Zeeland, common Nya Zeeland}, mri {official Aotearoa, common Aotearoa}},
ces {official Nový Zéland, common Nový Zéland}, common New Zealand}
deu {official Neuseeland, common Neuseeland},
ara {official نيوزيلندا, common نيوزيلندا},
urd {official نیوزی لینڈ, common نیوزی لینڈ},
srp {official Нови Зеланд, common Нови Зеланд},
tur {official Yeni Zelanda, common Yeni Zelanda},
pol {official Nowa Zelandia, common Nowa Zelandia},
cym {official New Zealand, common New Zealand},
hrv {official Novi Zeland, common Novi Zeland},
spa {official nueva Zelanda, common Nueva Zelanda},
fin {official Uusi-Seelanti, common Uusi-Seelanti},
per {official نیوزیلند, common نیوزیلند},
nld {official Nieuw Zeeland, common Nieuw-Zeeland},
fra {official Nouvelle-Zélande, common Nouvelle-Zélande},
ita {official Nuova Zelanda, common Nuova Zelanda},
jpn {official ニュージーランド, common ニュージーランド},
est {official Uus-Meremaa, common Uus-Meremaa},
por {official nova Zelândia, common Nova Zelândia},
slk {official Nový Zéland, common Nový Zéland},
bre {official Zeland-Nevez, common Zeland-Nevez}}
false [13.0 -85.0] 130373.0 [NI Republic of Nicaragua República de Nicaragua] {googleMaps https://goo.gl/maps/P77LaEVkKJKXneRC6, {eng {f Nicaraguan, m Nicaraguan}, {kor {official 니카라과 공화국, common 니카라과}, {svg https://mainfacts.com/media/images/coats_of_arms/ni.svg, {suffixes [05], root +5} {svg https://flagcdn.com/ni.svg, true {official Republic of Nicaragua, {latlng [12.13 -86.25]} [.ni] 558 officially-assigned Americas {spa Spanish} {NIO {name Nicaraguan córdoba, symbol C\(}} | true | 6624554 | NIC | [Managua] | {signs [NIC], side right} | [UTC-06:00] | monday | [North America] | 🇳🇮 | NI | Central America | NCA | NCA | {regex ^(\d{7})\), format ###-###-#} [CRI HND] {2014 46.2}
openStreetMaps https://www.openstreetmap.org/relation/287666} fra {f Nicaraguayenne, m Nicaraguayen}} zho {official 尼加拉瓜共和国, common 尼加拉瓜}, png https://mainfacts.com/media/images/coats_of_arms/ni.png} alt nativeName {spa {official República de Nicaragua, common Nicaragua}},
hun {official Nicaraguai Köztársaság, common Nicaragua}, The flag of Nicaragua is composed of three equal horizontal bands of blue, white and blue, with the national coat of arms centered in the white band., common Nicaragua}
rus {official Республика Никарагуа, common Никарагуа}, png https://flagcdn.com/w320/ni.png}
swe {official Republiken Nicaragua, common Nicaragua},
ces {official Republika Nikaragua, common Nikaragua},
deu {official Republik Nicaragua, common Nicaragua},
ara {official جمهورية نيكاراغوا, common نيكاراغوا},
urd {official جمہوریہ نکاراگوا, common نکاراگوا},
srp {official Република Никарагва, common Никарагва},
tur {official Nikaragua Cumhuriyeti, common Nikaragua},
pol {official Republika Nikaragui, common Nikaragua},
cym {official Republic of Nicaragua, common Nicaragua},
hrv {official Republika Nikaragva, common Nikaragva},
spa {official República de Nicaragua, common Nicaragua},
fin {official Nicaraguan tasavalta, common Nicaragua},
per {official جمهوری نیکاراگوئه, common نیکاراگوئه},
nld {official Republiek Nicaragua, common Nicaragua},
fra {official République du Nicaragua, common Nicaragua},
ita {official Repubblica del Nicaragua, common Nicaragua},
jpn {official ニカラグア共和国, common ニカラグア},
est {official Nicaragua Vabariik, common Nicaragua},
por {official República da Nicarágua, common Nicarágua},
slk {official Nikaragujská republika, common Nikaragua},
bre {official Republik Nicaragua, common Nicaragua}}
false [18.25 -63.16666666] 91.0 [AI] {googleMaps https://goo.gl/maps/3KgLnEyN7amdno2p9, {eng {f Anguillian, m Anguillian}, fra {f Anguillane, m Anguillan}} {kor {official 앵귈라, common 앵귈라}, {svg https://mainfacts.com/media/images/coats_of_arms/ai.svg, {suffixes [264], root +1} {svg https://flagcdn.com/ai.svg, png https://flagcdn.com/w320/ai.png} false {official Anguilla, {latlng [18.22 -63.05]} [.ai] 660 officially-assigned Americas {eng English} {XCD {name Eastern Caribbean dollar, symbol $}} false 13452 AIA [The Valley] {signs [GB], side left} [UTC-04:00] monday [North America] 🇦🇮 AI Caribbean AIA
openStreetMaps https://www.openstreetmap.org/relation/2177161} zho {official 安圭拉, common 安圭拉}, png https://mainfacts.com/media/images/coats_of_arms/ai.png} nativeName {eng {official Anguilla, common Anguilla}},
hun {official Anguilla, common Anguilla}, common Anguilla}
rus {official Ангилья, common Ангилья},
swe {official Anguilla, common Anguilla},
ces {official Anguilla, common Anguilla},
deu {official Anguilla, common Anguilla},
ara {official أنغويلا, common أنغويلا},
urd {official اینگویلا, common اینگویلا},
srp {official Ангвила, common Ангвила},
tur {official Anguilla, common Anguilla},
pol {official Anguilla, common Anguilla},
cym {official Anguilla, common Anguilla},
hrv {official Anguilla, common Angvila},
spa {official Anguila, common Anguilla},
fin {official Anguilla, common Anguilla},
per {official آنگویلا, common آنگویلا},
nld {official Anguilla, common Anguilla},
fra {official Anguilla, common Anguilla},
ita {official Anguilla, common Anguilla},
jpn {official アングィラ, common アンギラ},
est {official Anguilla, common Anguilla},
por {official Anguilla, common Anguilla},
slk {official Anguilla, common Anguilla},
bre {official Anguilla, common Anguilla}}

(def countries-df (tc/dataset (map #(select-keys % [:name :capital :population :area :region :subregion :languages :currencies :timezones]) countries-data)))

;; Relational data - Star Wars API ;; Returns characters with nested references to films, vehicles etc (def sw-data (-> (http/get “https://swapi.dev/api/people/”) :body (json/parse-string true) :results))

(def sw-df (tc/dataset (map #(assoc % :film_count (count (:films %))) sw-data)))

;; Deeply nested - OpenLibrary API ;; Returns nested book data with author/publisher hierarchies (def book-data (-> (http/get “https://openlibrary.org/works/OL45804W.json”) :body (json/parse-string true)))

(def book-df (tc/dataset {:title [(:title book-data)] :subjects (get book-data :subjects) :author_count [(count (get-in book-data [:authors]))]}))

;; Custom headers - NASA API ;; Requires API key in header (def nasa-data (-> (http/get “https://api.nasa.gov/planetary/apod” {:query-params {“api_key” “DEMO_KEY” “count” “10”}}) :body (json/parse-string true)))

(def nasa-df (tc/dataset (map #(select-keys % [:title :date :explanation]) nasa-data)))

;; - The Internet, including scraping web pages and processing the often hierarchical and deeply-nested data returned by many APIs.

source: src/book/part_1_data_import/4_the_internet.clj