From da9e5dbb2926235d787fd0e04703f3ad2a95a288 Mon Sep 17 00:00:00 2001 From: rolux Date: Sat, 17 Sep 2011 19:39:38 +0200 Subject: [PATCH] fix event handlers and split panel resize event --- source/Ox.UI/js/Bar/Ox.Resizebar.js | 18 +- source/Ox.UI/js/Calendar/Ox.Calendar.js | 2 +- source/Ox.UI/js/Core/Ox.Element.js | 3 +- source/Ox.UI/js/Form/Ox.ColorInput.js | 2 +- source/Ox.UI/js/Form/Ox.ColorPicker.js | 2 +- source/Ox.UI/js/Form/Ox.DateInput.js | 2 +- source/Ox.UI/js/Form/Ox.Filter.js | 2 +- source/Ox.UI/js/Form/Ox.Form.js | 8 +- source/Ox.UI/js/Form/Ox.FormElementGroup.js | 2 +- source/Ox.UI/js/Form/Ox.Input.js | 8 +- source/Ox.UI/js/Form/Ox.InputGroup.js | 4 +- source/Ox.UI/js/Form/Ox.PlacePicker.js | 8 +- source/Ox.UI/js/Form/Ox.Select.js | 4 +- source/Ox.UI/js/List/Ox.List.js | 2 +- source/Ox.UI/js/List/Ox.TextList.js | 3 +- source/Ox.UI/js/List/Ox.TreeList.js | 2 +- source/Ox.UI/js/Map/Ox.ListMap.js | 18 +- source/Ox.UI/js/Map/Ox.Map.js | 4 +- source/Ox.UI/js/Video/Ox.AnnotationPanel.js | 10 +- source/Ox.UI/js/Video/Ox.VideoEditor.js | 22 +- source/Ox.UI/js/Video/Ox.VideoEditorPlayer.js | 6 +- source/Ox.UI/js/Video/Ox.VideoPanelPlayer.js | 20 +- tools/geo/json/countries.json | 621 +++++++++++++++++- tools/geo/json/geonames.org/countries.json | 21 +- tools/geo/json/wikipedia.org/countries.json | 12 +- tools/geo/py/_tmp.data | 31 +- tools/geo/py/wikipedia.py | 3 +- 27 files changed, 722 insertions(+), 118 deletions(-) diff --git a/source/Ox.UI/js/Bar/Ox.Resizebar.js b/source/Ox.UI/js/Bar/Ox.Resizebar.js index 141e5a87..657f431e 100644 --- a/source/Ox.UI/js/Bar/Ox.Resizebar.js +++ b/source/Ox.UI/js/Bar/Ox.Resizebar.js @@ -183,15 +183,15 @@ Ox.Resizebar = function(options, self) { } function triggerEvents(event) { - self.options.elements[0].triggerEvent(event, - self.isLeftOrTop ? - self.options.size : - self.options.elements[0][self.dimensions[1]]() - ); - self.options.elements[1].triggerEvent(event, - self.isLeftOrTop ? - self.options.elements[1][self.dimensions[1]]() : - self.options.size + self.options.elements[0].triggerEvent(event, { + size: self.isLeftOrTop + ? self.options.size + : self.options.elements[0][self.dimensions[1]]() + }); + self.options.elements[1].triggerEvent(event, { + size: self.isLeftOrTop + ? self.options.elements[1][self.dimensions[1]]() + : self.options.size ); } diff --git a/source/Ox.UI/js/Calendar/Ox.Calendar.js b/source/Ox.UI/js/Calendar/Ox.Calendar.js index aeb0e25d..d02e2ee9 100644 --- a/source/Ox.UI/js/Calendar/Ox.Calendar.js +++ b/source/Ox.UI/js/Calendar/Ox.Calendar.js @@ -420,7 +420,7 @@ Ox.Calendar = function(options, self) { } - function changeZoom(event, data) { + function changeZoom(data) { self.options.zoom = data.value; renderCalendar(); } diff --git a/source/Ox.UI/js/Core/Ox.Element.js b/source/Ox.UI/js/Core/Ox.Element.js index 9428c599..d5b4b345 100644 --- a/source/Ox.UI/js/Core/Ox.Element.js +++ b/source/Ox.UI/js/Core/Ox.Element.js @@ -101,11 +101,10 @@ Ox.Element = function(options, self) { function bind(action, event, fn) { self.$eventHandler[action]('ox_' + event, function(event, data) { - // fixme: remove second parameter (legacy) fn(Ox.extend({ _element: that.$element, _event: event - }, data), data); + }, data)); }); } diff --git a/source/Ox.UI/js/Form/Ox.ColorInput.js b/source/Ox.UI/js/Form/Ox.ColorInput.js index 57ba7d76..b5d3a981 100644 --- a/source/Ox.UI/js/Form/Ox.ColorInput.js +++ b/source/Ox.UI/js/Form/Ox.ColorInput.js @@ -41,7 +41,7 @@ Ox.ColorInput = function(options, self) { self.$inputs[4] = Ox.ColorPicker({ id: 'picker' }) - .bindEvent('change', function(event, data) { + .bindEvent('change', function(data) { //Ox.print('change function called'); self.options.value = data.value; self.values = data.value.split(', '); diff --git a/source/Ox.UI/js/Form/Ox.ColorPicker.js b/source/Ox.UI/js/Form/Ox.ColorPicker.js index a17f838c..8a58ae4f 100644 --- a/source/Ox.UI/js/Form/Ox.ColorPicker.js +++ b/source/Ox.UI/js/Form/Ox.ColorPicker.js @@ -42,7 +42,7 @@ Ox.ColorPicker = function(options, self) { position: 'absolute', top: (i * 15) + 'px' }) - .bindEvent('change', function(event, data) { + .bindEvent('change', function(data) { change(i, data.value); }) .appendTo(that); diff --git a/source/Ox.UI/js/Form/Ox.DateInput.js b/source/Ox.UI/js/Form/Ox.DateInput.js index 5843cba6..bd8c1f0d 100644 --- a/source/Ox.UI/js/Form/Ox.DateInput.js +++ b/source/Ox.UI/js/Form/Ox.DateInput.js @@ -90,7 +90,7 @@ Ox.DateInput = function(options, self) { }) .bindEvent('autocomplete', changeMonthOrYear), year: Ox.Input({ - autocomplete: $.map($.merge(Ox.range(1900, 3000), Ox.range(1000, 1900)), function(v, i) { + autocomplete: Ox.merge(Ox.range(1900, 3000), Ox.range(1000, 1900)).map(function(v) { return v.toString(); }), autocompleteReplace: true, diff --git a/source/Ox.UI/js/Form/Ox.Filter.js b/source/Ox.UI/js/Form/Ox.Filter.js index bbc96055..190ff581 100644 --- a/source/Ox.UI/js/Form/Ox.Filter.js +++ b/source/Ox.UI/js/Form/Ox.Filter.js @@ -289,7 +289,7 @@ Ox.Filter = function(options, self) { } } - function changeOperator(event, data) { + function changeOperator(data) { self.options.query.operator = data.selected[0].id; that.$element.find('.OxGroupLabel').html(self.options.query.operator == '&' ? 'and' : 'or'); } diff --git a/source/Ox.UI/js/Form/Ox.Form.js b/source/Ox.UI/js/Form/Ox.Form.js index 37872e1f..353c4647 100644 --- a/source/Ox.UI/js/Form/Ox.Form.js +++ b/source/Ox.UI/js/Form/Ox.Form.js @@ -41,7 +41,7 @@ Ox.Form = function(options, self) { that.append(self.$items[i] = Ox.FormItem({element: item})); item.bindEvent({ /* - blur: function(event, data) { + blur: function(data) { validate(i, data.valid); if (data.valid) { self.$messages[i].html('').hide(); @@ -50,15 +50,15 @@ Ox.Form = function(options, self) { } }, */ - autovalidate: function(event, data) { + autovalidate: function(data) { data.valid = !!data.value.length; validate(i, data.valid); data.valid && self.$items[i].setMessage(''); }, - submit: function(event, data) { + submit: function(data) { self.formIsValid && that.submit(); }, - validate: function(event, data) { + validate: function(data) { validate(i, data.valid); self.$items[i].setMessage(data.valid ? '' : data.message); } diff --git a/source/Ox.UI/js/Form/Ox.FormElementGroup.js b/source/Ox.UI/js/Form/Ox.FormElementGroup.js index 86f0fb22..159d2035 100644 --- a/source/Ox.UI/js/Form/Ox.FormElementGroup.js +++ b/source/Ox.UI/js/Form/Ox.FormElementGroup.js @@ -36,7 +36,7 @@ Ox.FormElementGroup = function(options, self) { float: self.options.float // fixme: make this a class }) .bindEvent({ - validate: function(event, data) { + validate: function(data) { that.triggerEvent({ validate: data }); diff --git a/source/Ox.UI/js/Form/Ox.Input.js b/source/Ox.UI/js/Form/Ox.Input.js index a439ea06..a5533f5d 100644 --- a/source/Ox.UI/js/Form/Ox.Input.js +++ b/source/Ox.UI/js/Form/Ox.Input.js @@ -616,7 +616,7 @@ Ox.Input = function(options, self) { self.$input.val(self.options.value);//.focus(); } - function clickMenu(event, data) { + function clickMenu(data) { //Ox.print('clickMenu', data); self.options.value = data.title; self.$input.val(self.options.value).focus(); @@ -724,7 +724,7 @@ Ox.Input = function(options, self) { data.text && self.$input.val(data.text); } - function selectMenu(event, data) { + function selectMenu(data) { var pos = cursor(); //if (self.options.value) { //Ox.print('selectMenu', pos, data.title) @@ -1242,7 +1242,7 @@ Ox.Input_ = function(options, self) { //width(self.options.width); - function changeKey(event, data) { + function changeKey(data) { //Ox.print('changeKey', data); if (data) { // fixme: necessary? self.key = { @@ -1591,7 +1591,7 @@ Ox.InputElement_ = function(options, self) { that.$element.val('').focus(); } - function clickMenu(event, data) { + function clickMenu(data) { //Ox.print('clickMenu', data); that.$element.val(data.title); //self.$autosuggestMenu.hideMenu(); diff --git a/source/Ox.UI/js/Form/Ox.InputGroup.js b/source/Ox.UI/js/Form/Ox.InputGroup.js index 058af532..37a1448f 100644 --- a/source/Ox.UI/js/Form/Ox.InputGroup.js +++ b/source/Ox.UI/js/Form/Ox.InputGroup.js @@ -73,7 +73,7 @@ Ox.InputGroup = function(options, self) { .appendTo(that); }); - function change(event, data) { + function change(data) { //Ox.print('InputGroup change') that.triggerEvent('change', { value: self.options.inputs.map(function($input) { @@ -110,7 +110,7 @@ Ox.InputGroup = function(options, self) { }); } - function validate(event, data) { + function validate(data) { //Ox.print('INPUTGROUP TRIGGER VALIDATE') that.triggerEvent('validate', data); } diff --git a/source/Ox.UI/js/Form/Ox.PlacePicker.js b/source/Ox.UI/js/Form/Ox.PlacePicker.js index 3fd9b2a1..fc388bf5 100644 --- a/source/Ox.UI/js/Form/Ox.PlacePicker.js +++ b/source/Ox.UI/js/Form/Ox.PlacePicker.js @@ -97,7 +97,7 @@ Ox.PlacePicker = function(options, self) { self.map = false; - function changeZoom(event, data) { + function changeZoom(data) { //Ox.print('changeZoom') self.$map.zoom(data.value); } @@ -114,18 +114,18 @@ Ox.PlacePicker = function(options, self) { } } - function findPlace(event, data) { + function findPlace(data) { //Ox.print('findPlace', data); self.$map.find(data.value, function(place) { place && that.$label.html(place.geoname); }); } - function onSelect(event, data) { + function onSelect(data) { that.$label.html(data.geoname); } - function onZoom(event, data) { + function onZoom(data) { self.$range.options({ value: data.value }); diff --git a/source/Ox.UI/js/Form/Ox.Select.js b/source/Ox.UI/js/Form/Ox.Select.js index 653dcd92..957df51f 100644 --- a/source/Ox.UI/js/Form/Ox.Select.js +++ b/source/Ox.UI/js/Form/Ox.Select.js @@ -135,11 +135,11 @@ Ox.Select = function(options, self) { self.options.type == 'image' && self.$menu.addClass('OxRight'); - function clickMenu(event, data) { + function clickMenu(data) { that.triggerEvent('click', data); } - function changeMenu(event, data) { + function changeMenu(data) { //Ox.print('clickMenu: ', self.options.id, data) self.checked = self.optionGroup.checked(); self.$title && self.$title.html( diff --git a/source/Ox.UI/js/List/Ox.List.js b/source/Ox.UI/js/List/Ox.List.js index 975335e9..127b22bf 100644 --- a/source/Ox.UI/js/List/Ox.List.js +++ b/source/Ox.UI/js/List/Ox.List.js @@ -1486,7 +1486,7 @@ Ox.List = function(options, self) { function remove() { that.triggerEvent('remove', item.id); } - function submit(event, data) { + function submit(data) { item.value = data.value; //$input.loseFocus().remove(); // fixme: leaky, inputs remain in focus stack diff --git a/source/Ox.UI/js/List/Ox.TextList.js b/source/Ox.UI/js/List/Ox.TextList.js index 65c6b8bd..7b6287e4 100644 --- a/source/Ox.UI/js/List/Ox.TextList.js +++ b/source/Ox.UI/js/List/Ox.TextList.js @@ -259,7 +259,7 @@ Ox.TextList = function(options, self) { that.$body.reloadPages(); } - function changeColumns(event, data) { + function changeColumns(data) { var add, ids = []; Ox.forEach(data.selected, function(column) { @@ -522,6 +522,7 @@ Ox.TextList = function(options, self) { function dragendResize(id, e) { var pos = getColumnPositionById(id); + // fixme: shouldn't this be resizecolumn? that.triggerEvent('columnresize', { id: id, width: self.columnWidths[pos] diff --git a/source/Ox.UI/js/List/Ox.TreeList.js b/source/Ox.UI/js/List/Ox.TreeList.js index 283b89a4..75cabaf3 100644 --- a/source/Ox.UI/js/List/Ox.TreeList.js +++ b/source/Ox.UI/js/List/Ox.TreeList.js @@ -196,7 +196,7 @@ Ox.TreeList = function(options, self) { that.$element.removeItems(pos + 1, parseItems(item.items, item.level + 1).length); } - function toggleItems(event, data) { + function toggleItems(data) { data.ids.forEach(function(id, i) { var item = getItemById(id); if (item.items && data.expanded != !!item.expanded) { diff --git a/source/Ox.UI/js/Map/Ox.ListMap.js b/source/Ox.UI/js/Map/Ox.ListMap.js index d1f2c8f4..e826fde6 100644 --- a/source/Ox.UI/js/Map/Ox.ListMap.js +++ b/source/Ox.UI/js/Map/Ox.ListMap.js @@ -299,7 +299,7 @@ Ox.ListMap = function(options, self) { }) .bindEvent({ /* - addplace: function(event, data) { + addplace: function(data) { that.triggerEvent('addplace', data); }, */ @@ -317,9 +317,11 @@ Ox.ListMap = function(options, self) { geocode: function(data) { that.triggerEvent('geocode', data); }, + /* resize: function() { self.$map.resizeMap(); // fixme: don't need event }, + */ selectplace: selectPlace }); @@ -616,11 +618,11 @@ Ox.ListMap = function(options, self) { orientation: 'vertical' }) .bindEvent({ - resize: function(foo, size) { - self.$placeTitleName.options({width: size - 48}); + resize: function(data) { + self.$placeTitleName.options({width: data.size - 48}); // fixme: pass width through form self.$placeFormItems.forEach(function($item) { - $item.options({width: size - 16}); + $item.options({width: data.size - 16}); }); } }), @@ -705,18 +707,18 @@ Ox.ListMap = function(options, self) { ); } - function openItem(event, data) { - selectItem(event, data); + function openItem(data) { + selectItem(data); self.$map.zoomToPlace(data.ids[0]); } - function removeItem(event, data) { + function removeItem(data) { var id = data.ids[0]; that.triggerEvent('removeplace', {id: id}); self.$map.removePlace(id); } - function selectItem(event, data) { + function selectItem(data) { Ox.print('selectItem', data.ids[0]) var id = data.ids.length ? data.ids[0] : null; self.$map.options({selected: id}); diff --git a/source/Ox.UI/js/Map/Ox.Map.js b/source/Ox.UI/js/Map/Ox.Map.js index ae05066c..29066cd9 100644 --- a/source/Ox.UI/js/Map/Ox.Map.js +++ b/source/Ox.UI/js/Map/Ox.Map.js @@ -455,7 +455,7 @@ Ox.Map = function(options, self) { self.centerChanged = true; } - function changeZoom(event, data) { + function changeZoom(data) { self.map.setZoom(data.value); } @@ -1094,7 +1094,7 @@ Ox.Map = function(options, self) { //Ox.print('STATUS DONE'); } - function submitFind(event, data) { + function submitFind(data) { that.findPlace(data.value, function(place) { setStatus(place); }); diff --git a/source/Ox.UI/js/Video/Ox.AnnotationPanel.js b/source/Ox.UI/js/Video/Ox.AnnotationPanel.js index 4030cb96..7969cef0 100644 --- a/source/Ox.UI/js/Video/Ox.AnnotationPanel.js +++ b/source/Ox.UI/js/Video/Ox.AnnotationPanel.js @@ -39,7 +39,7 @@ Ox.AnnotationPanel = function(options, self) { tooltip: 'Add', type: 'image' }).bindEvent({ - click: function(event, data) { + click: function(data) { that.triggerEvent('add', {value: ''}); } }) @@ -72,13 +72,13 @@ Ox.AnnotationPanel = function(options, self) { //reset in/out points selectAnnotation({}, {ids: [item.id]}); }, - open: function(event, data) { + open: function(data) { if (data.ids.length == 1) { var pos = Ox.getPositionById(self.$annotations.options('items'), data.ids[0]); self.$annotations.editItem(pos); } }, - remove: function(event, data) { + remove: function(data) { that.triggerEvent('remove', data); }, select: selectAnnotation, @@ -100,7 +100,7 @@ Ox.AnnotationPanel = function(options, self) { .appendTo(self.$annotations); }); */ - function selectAnnotation(event, data) { + function selectAnnotation(data) { var item = Ox.getObjectById(self.options.items, data.ids[0]); item && that.triggerEvent('select', { 'in': item['in'], @@ -108,7 +108,7 @@ Ox.AnnotationPanel = function(options, self) { 'layer': self.options.id }); } - function updateAnnotation(event, data) { + function updateAnnotation(data) { var item = Ox.getObjectById(self.options.items, data.id); item.value = data.value; that.triggerEvent('submit', item); diff --git a/source/Ox.UI/js/Video/Ox.VideoEditor.js b/source/Ox.UI/js/Video/Ox.VideoEditor.js index d6e48d71..5c574efc 100644 --- a/source/Ox.UI/js/Video/Ox.VideoEditor.js +++ b/source/Ox.UI/js/Video/Ox.VideoEditor.js @@ -267,26 +267,26 @@ Ox.VideoEditor = function(options, self) { }, layer) ) .bindEvent({ - add: function(event, data) { + add: function(data) { data.layer = layer.id; data['in'] = self.options['in']; data.out = self.options.out; that.triggerEvent('addannotation', data); }, - remove: function(event, data) { + remove: function(data) { data = { ids: [data], layer: layer.id }; that.triggerEvent('removeannotations', data); }, - select: function(event, data) { + select: function(data) { self.options.layers.forEach(function(l, j) { // fixme: l? j? if(l.id != layer.id) { self.$annotationPanel[j].deselectItems(); } }); - selectAnnotation(event, data); + selectAnnotation(data); }, submit: updateAnnotation }); @@ -852,13 +852,13 @@ Ox.VideoEditor = function(options, self) { self.$player[0].playInToOut(); } - function resizeAnnotations(event, data) { - self.options.annotationsSize = data; + function resizeAnnotations(data) { + self.options.annotationsSize = data.size; setSizes(); } - function resizeEditor(event, data) { - var width = data - 2 * margin + 100; + function resizeEditor(data) { + var width = data.size - 2 * margin + 100; resizeVideoPlayers(width); $timelineLarge.options({ width: width @@ -881,12 +881,12 @@ Ox.VideoEditor = function(options, self) { }); } - function selectAnnotation(event, data) { + function selectAnnotation(data) { setPosition(data['in']); setPoint('in', data['in']); setPoint('out', data.out); } - function updateAnnotation(event, data) { + function updateAnnotation(data) { data['in'] = self.options['in']; data.out = self.options.out; that.triggerEvent('updateannotation', data); @@ -983,7 +983,7 @@ Ox.VideoEditor = function(options, self) { } } - function toggleAnnotations(event, data) { + function toggleAnnotations(data) { self.options.showAnnotations = !data.collapsed; setSizes(); that.triggerEvent('toggleannotations', { diff --git a/source/Ox.UI/js/Video/Ox.VideoEditorPlayer.js b/source/Ox.UI/js/Video/Ox.VideoEditorPlayer.js index 117d6191..1a8c5ad7 100644 --- a/source/Ox.UI/js/Video/Ox.VideoEditorPlayer.js +++ b/source/Ox.UI/js/Video/Ox.VideoEditorPlayer.js @@ -251,11 +251,11 @@ Ox.VideoEditorPlayer = function(options, self) { }); } - function paused(event, data) { + function paused() { self.$playButton.toggleTitle(); } - function playing(event, data) { + function playing(data) { self.options.position = data.position; setMarkers(); setSubtitle(); @@ -365,7 +365,7 @@ Ox.VideoEditorPlayer = function(options, self) { self.video.paused ? that.play() : that.pause(); } - function toggleSize(event, data) { + function toggleSize(data) { self.options.size = data.id that.triggerEvent('togglesize', { size: self.options.size diff --git a/source/Ox.UI/js/Video/Ox.VideoPanelPlayer.js b/source/Ox.UI/js/Video/Ox.VideoPanelPlayer.js index 69238fd9..758eb507 100644 --- a/source/Ox.UI/js/Video/Ox.VideoPanelPlayer.js +++ b/source/Ox.UI/js/Video/Ox.VideoPanelPlayer.js @@ -182,9 +182,9 @@ Ox.VideoPanelPlayer = function(options, self) { self.options.annotationsSize - 16 - 1; } - function resizeAnnotations(event, data) { + function resizeAnnotations(data) { // called on annotations resize - self.options.annotationsSize = data; + self.options.annotationsSize = data.size; self.$video.options({ width: getPlayerWidth() }); @@ -193,22 +193,22 @@ Ox.VideoPanelPlayer = function(options, self) { }); } - function resizeendAnnotations(event, data) { - self.options.annotationsSize = data; + function resizeendAnnotations(data) { + self.options.annotationsSize = data.size; that.triggerEvent('resizeannotations', { annotationsSize: self.options.annotationsSize }); } - function resizeElement(event, data) { + function resizeElement(data) { // called on browser toggle - self.options.height = data; + self.options.height = data.size; self.$video.options({ height: getPlayerHeight() }); } - function resizePanel(event, data) { + function resizePanel(data) { // called on annotations toggle self.$video.options({ width: getPlayerWidth() @@ -218,7 +218,7 @@ Ox.VideoPanelPlayer = function(options, self) { }); } - function setPosition(event, data) { + function setPosition(data) { self.options.position = data.position; //self.$video.position(self.options.position); self.$timeline.options({ @@ -226,7 +226,7 @@ Ox.VideoPanelPlayer = function(options, self) { }); } - function toggleAnnotations(event, data) { + function toggleAnnotations(data) { self.options.showAnnotations = !data.collapsed; self.$video.options({ height: getPlayerHeight() @@ -236,7 +236,7 @@ Ox.VideoPanelPlayer = function(options, self) { }); } - function toggleControls(event, data) { + function toggleControls(data) { self.options.showControls = !data.collapsed; self.$video.options({ height: getPlayerHeight() diff --git a/tools/geo/json/countries.json b/tools/geo/json/countries.json index 794a9e09..c5ac59eb 100644 --- a/tools/geo/json/countries.json +++ b/tools/geo/json/countries.json @@ -9,6 +9,9 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/27/Flag_of_Abkhazia.svg", + "languages": [ + "Abkhazian" + ], "name": "Abkhazia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Abkhazia" @@ -23,6 +26,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/a7/Flag_of_the_French_Southern_and_Antarctic_Lands.svg", + "languages": [], "name": "Ad\u00e9lie Land", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Ad\u00e9lie_Land" @@ -37,6 +41,10 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/9a/Flag_of_Afghanistan.svg", "imdbCode": "af", "imdbName": "Afghanistan", + "languages": [ + "Pashtu", + "Dari" + ], "name": "Afghanistan", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Afghanistan" @@ -51,6 +59,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/ae/Flag_of_the_United_Kingdom.svg", + "languages": [], "name": "Akrotiri and Dhekelia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Akrotiri_and_Dhekelia" @@ -65,6 +74,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/3/36/Flag_of_Albania.svg", "imdbCode": "al", "imdbName": "Albania", + "languages": [ + "Albanian" + ], "name": "Albania", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Albania" @@ -79,6 +91,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/7/77/Flag_of_Algeria.svg", "imdbCode": "dz", "imdbName": "Algeria", + "languages": [ + "Tamashek" + ], "name": "Algeria", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Algeria" @@ -95,6 +110,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/87/Flag_of_American_Samoa.svg", "imdbCode": "as", "imdbName": "American Samoa", + "languages": [], "name": "American Samoa", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/American_Samoa" @@ -109,6 +125,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/19/Flag_of_Andorra.svg", "imdbCode": "ad", "imdbName": "Andorra", + "languages": [], "name": "Andorra", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Andorra" @@ -123,6 +140,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/9d/Flag_of_Angola.svg", "imdbCode": "ao", "imdbName": "Angola", + "languages": [], "name": "Angola", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Angola" @@ -139,6 +157,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/b4/Flag_of_Anguilla.svg", "imdbCode": "ai", "imdbName": "Anguilla", + "languages": [], "name": "Anguilla", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Anguilla" @@ -161,6 +180,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/68/Flag_of_the_Antarctic_Treaty.svg", "imdbCode": "aq", "imdbName": "Antarctica", + "languages": [], "name": "Antarctica", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Antarctica" @@ -175,6 +195,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/89/Flag_of_Antigua_and_Barbuda.svg", "imdbCode": "ag", "imdbName": "Antigua and Barbuda", + "languages": [], "name": "Antigua and Barbuda", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Antigua_and_Barbuda" @@ -189,6 +210,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/8d/Flag_of_Magallanes%2C_Chile.svg", + "languages": [], "name": "Ant\u00e1rtica", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Ant\u00e1rtica" @@ -205,6 +227,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/1a/Flag_of_Argentina.svg", "imdbCode": "ar", "imdbName": "Argentina", + "languages": [], "name": "Argentina", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Argentina" @@ -219,6 +242,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/01/Flag_of_Tierra_del_Fuego_province_in_Argentina.svg", + "languages": [], "name": "Argentine Antarctica", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Argentine_Antarctica" @@ -233,6 +257,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/2f/Flag_of_Armenia.svg", "imdbCode": "am", "imdbName": "Armenia", + "languages": [ + "Armenian" + ], "name": "Armenia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Armenia" @@ -249,6 +276,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/f6/Flag_of_Aruba.svg", "imdbCode": "aw", "imdbName": "Aruba", + "languages": [], "name": "Aruba", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Aruba" @@ -263,6 +291,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/ae/Flag_of_the_United_Kingdom.svg", + "languages": [], "name": "Ascension Island", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Ascension_Island" @@ -277,6 +306,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/b9/Flag_of_Australia.svg", + "languages": [], "name": "Ashmore and Cartier Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Ashmore_and_Cartier_Islands" @@ -299,6 +329,11 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/b9/Flag_of_Australia.svg", "imdbCode": "au", "imdbName": "Australia", + "languages": [ + "Aboriginal", + "Australian", + "Gunwinggu" + ], "name": "Australia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Australia" @@ -313,6 +348,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/b9/Flag_of_Australia.svg", + "languages": [], "name": "Australian Antarctic Territory", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Australian_Antarctic_Territory" @@ -327,6 +363,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/41/Flag_of_Austria.svg", "imdbCode": "at", "imdbName": "Austria", + "languages": [], "name": "Austria", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Austria" @@ -343,6 +380,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/dd/Flag_of_Azerbaijan.svg", "imdbCode": "az", "imdbName": "Azerbaijan", + "languages": [ + "Azerbaijani" + ], "name": "Azerbaijan", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Azerbaijan" @@ -358,6 +398,7 @@ "googleName": "The Bahamas", "imdbCode": "bs", "imdbName": "Bahamas", + "languages": [], "name": "Bahamas", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Bahamas" @@ -372,6 +413,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/2c/Flag_of_Bahrain.svg", "imdbCode": "bh", "imdbName": "Bahrain", + "languages": [], "name": "Bahrain", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Bahrain" @@ -386,6 +428,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/f9/Flag_of_Bangladesh.svg", "imdbCode": "bd", "imdbName": "Bangladesh", + "languages": [ + "Bengali" + ], "name": "Bangladesh", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Bangladesh" @@ -400,6 +445,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/ef/Flag_of_Barbados.svg", "imdbCode": "bb", "imdbName": "Barbados", + "languages": [], "name": "Barbados", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Barbados" @@ -414,6 +460,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/85/Flag_of_Belarus.svg", "imdbCode": "by", "imdbName": "Belarus", + "languages": [ + "Belarusian" + ], "name": "Belarus", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Belarus" @@ -428,6 +477,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/92/Flag_of_Belgium_%28civil%29.svg", "imdbCode": "be", "imdbName": "Belgium", + "languages": [ + "Flemish" + ], "name": "Belgium", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Belgium" @@ -442,6 +494,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/e7/Flag_of_Belize.svg", "imdbCode": "bz", "imdbName": "Belize", + "languages": [], "name": "Belize", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Belize" @@ -456,6 +509,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/0a/Flag_of_Benin.svg", "imdbCode": "bj", "imdbName": "Benin", + "languages": [], "name": "Benin", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Benin" @@ -472,6 +526,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/bf/Flag_of_Bermuda.svg", "imdbCode": "bm", "imdbName": "Bermuda", + "languages": [], "name": "Bermuda", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Bermuda" @@ -486,6 +541,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/91/Flag_of_Bhutan.svg", "imdbCode": "bt", "imdbName": "Bhutan", + "languages": [], "name": "Bhutan", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Bhutan" @@ -500,6 +556,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/de/Flag_of_Bolivia_%28state%29.svg", "imdbCode": "bo", "imdbName": "Bolivia", + "languages": [ + "Aymara" + ], "name": "Bolivia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Bolivia" @@ -514,6 +573,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/1e/Flag_of_Bonaire.svg", + "languages": [], "name": "Bonaire, Saint Eustatius and Saba", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Bonaire,_Saint_Eustatius_and_Saba" @@ -528,6 +588,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/bf/Flag_of_Bosnia_and_Herzegovina.svg", "imdbCode": "ba", "imdbName": "Bosnia and Herzegovina", + "languages": [ + "Bosnian" + ], "name": "Bosnia and Herzegovina", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Bosnia_and_Herzegovina" @@ -542,6 +605,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/fa/Flag_of_Botswana.svg", "imdbCode": "bw", "imdbName": "Botswana", + "languages": [], "name": "Botswana", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Botswana" @@ -558,6 +622,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/d9/Flag_of_Norway.svg", "imdbCode": "bv", "imdbName": "Bouvet Island", + "languages": [], "name": "Bouvet Island", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Bouvet_Island" @@ -572,6 +637,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/05/Flag_of_Brazil.svg", "imdbCode": "br", "imdbName": "Brazil", + "languages": [ + "Brazilian" + ], "name": "Brazil", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Brazil" @@ -586,6 +654,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/fd/Flag_of_the_British_Antarctic_Territory.svg", + "languages": [], "name": "British Antarctic Territory", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/British_Antarctic_Territory" @@ -602,6 +671,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/6e/Flag_of_the_British_Indian_Ocean_Territory.svg", "imdbCode": "io", "imdbName": "British Indian Ocean Territory", + "languages": [], "name": "British Indian Ocean Territory", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/British_Indian_Ocean_Territory" @@ -618,6 +688,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/42/Flag_of_the_British_Virgin_Islands.svg", "imdbCode": "vg", "imdbName": "British Virgin Islands", + "languages": [], "name": "British Virgin Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/British_Virgin_Islands" @@ -633,6 +704,7 @@ "googleName": "Brunei Darussalam", "imdbCode": "bn", "imdbName": "Brunei Darussalam", + "languages": [], "name": "Brunei", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Brunei" @@ -647,6 +719,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/9a/Flag_of_Bulgaria.svg", "imdbCode": "bg", "imdbName": "Bulgaria", + "languages": [ + "Bulgarian" + ], "name": "Bulgaria", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Bulgaria" @@ -661,6 +736,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/3/31/Flag_of_Burkina_Faso.svg", "imdbCode": "bf", "imdbName": "Burkina Faso", + "languages": [ + "More" + ], "name": "Burkina Faso", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Burkina_Faso" @@ -677,6 +755,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/1d/Flag_of_Myanmar_%281974-2010%29.svg", "imdbCode": "xbu", "imdbName": "Burma", + "languages": [ + "Burmese" + ], "name": "Burma", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Burma" @@ -691,6 +772,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/50/Flag_of_Burundi.svg", "imdbCode": "bi", "imdbName": "Burundi", + "languages": [], "name": "Burundi", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Burundi" @@ -707,6 +789,7 @@ "Belarus" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/46/Flag_of_Byelorussian_SSR.svg", + "languages": [], "name": "Byelorussian Soviet Socialist Republic", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Byelorussian_Soviet_Socialist_Republic" @@ -720,7 +803,8 @@ "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/86/Flag_of_Cote_d%27Ivoire.svg", "imdbCode": "ci", - "imdbName": "Côte d'Ivoire", + "imdbName": "Ivory Coast", + "languages": [], "name": "C\u00f4te d'Ivoire", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/C%C3%B4te_d%27Ivoire" @@ -735,6 +819,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/83/Flag_of_Cambodia.svg", "imdbCode": "kh", "imdbName": "Cambodia", + "languages": [ + "Central Khmer" + ], "name": "Cambodia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Cambodia" @@ -749,6 +836,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/4f/Flag_of_Cameroon.svg", "imdbCode": "cm", "imdbName": "Cameroon", + "languages": [], "name": "Cameroon", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Cameroon" @@ -763,6 +851,10 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/cf/Flag_of_Canada.svg", "imdbCode": "ca", "imdbName": "Canada", + "languages": [ + "Cree", + "Nisga'a" + ], "name": "Canada", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Canada" @@ -777,6 +869,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/b0/Flag_of_the_Canary_Islands.svg", + "languages": [], "name": "Canary Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Canary_Islands" @@ -794,6 +887,7 @@ "Kiribati" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/4d/Flag_of_Gilbert_and_Ellice_Islands.svg", + "languages": [], "name": "Canton and Enderbury Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Canton_and_Enderbury_Islands" @@ -808,6 +902,10 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/3/38/Flag_of_Cape_Verde.svg", "imdbCode": "cv", "imdbName": "Cape Verde", + "languages": [ + "Kabuverdianu", + "Kriolu" + ], "name": "Cape Verde", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Cape_Verde" @@ -824,6 +922,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/0f/Flag_of_the_Cayman_Islands.svg", "imdbCode": "ky", "imdbName": "Cayman Islands", + "languages": [], "name": "Cayman Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Cayman_Islands" @@ -838,6 +937,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/6f/Flag_of_the_Central_African_Republic.svg", "imdbCode": "cf", "imdbName": "Central African Republic", + "languages": [], "name": "Central African Republic", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Central_African_Republic" @@ -852,6 +952,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/fd/Flag_Ceuta.svg", + "languages": [], "name": "Ceuta and Melilla", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Ceuta_and_Melilla" @@ -866,6 +967,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/4b/Flag_of_Chad.svg", "imdbCode": "td", "imdbName": "Chad", + "languages": [], "name": "Chad", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Chad" @@ -882,6 +984,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/7/78/Flag_of_Chile.svg", "imdbCode": "cl", "imdbName": "Chile", + "languages": [ + "Mapudungun" + ], "name": "Chile", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Chile" @@ -898,6 +1003,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/67/Flag_of_Christmas_Island.svg", "imdbCode": "cx", "imdbName": "Christmas Island", + "languages": [], "name": "Christmas Island", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Christmas_Island" @@ -912,6 +1018,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/c3/Flag_of_France.svg", + "languages": [], "name": "Clipperton Island", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Clipperton_Island" @@ -929,6 +1036,7 @@ "googleName": "Cocos (Keeling) Islands", "imdbCode": "cc", "imdbName": "Cocos (Keeling) Islands", + "languages": [], "name": "Cocos Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Cocos_Islands" @@ -945,6 +1053,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/ec/Flag_of_Saint-Martin_%28local%29.svg", "imdbCode": "mf", "imdbName": "Saint Martin (French part)", + "languages": [], "name": "Saint Martin", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Collectivity_of_Saint_Martin" @@ -959,6 +1068,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/21/Flag_of_Colombia.svg", "imdbCode": "co", "imdbName": "Colombia", + "languages": [], "name": "Colombia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Colombia" @@ -973,6 +1083,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/94/Flag_of_the_Comoros.svg", "imdbCode": "km", "imdbName": "Comoros", + "languages": [], "name": "Comoros", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Comoros" @@ -989,6 +1100,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/3/35/Flag_of_the_Cook_Islands.svg", "imdbCode": "ck", "imdbName": "Cook Islands", + "languages": [], "name": "Cook Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Cook_Islands" @@ -1003,6 +1115,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/b9/Flag_of_Australia.svg", + "languages": [], "name": "Coral Sea Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Coral_Sea_Islands" @@ -1017,6 +1130,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/bc/Flag_of_Costa_Rica_%28state%29.svg", "imdbCode": "cr", "imdbName": "Costa Rica", + "languages": [], "name": "Costa Rica", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Costa_Rica" @@ -1031,6 +1145,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/1b/Flag_of_Croatia.svg", "imdbCode": "hr", "imdbName": "Croatia", + "languages": [ + "Croatian" + ], "name": "Croatia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Croatia" @@ -1045,6 +1162,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/bd/Flag_of_Cuba.svg", "imdbCode": "cu", "imdbName": "Cuba", + "languages": [], "name": "Cuba", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Cuba" @@ -1059,6 +1177,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/b1/Flag_of_Cura%C3%A7ao.svg", + "languages": [], "name": "Cura\u00e7ao", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Cura%C3%A7ao" @@ -1075,6 +1194,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/d4/Flag_of_Cyprus.svg", "imdbCode": "cy", "imdbName": "Cyprus", + "languages": [], "name": "Cyprus", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Cyprus" @@ -1089,6 +1209,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/cb/Flag_of_the_Czech_Republic.svg", "imdbCode": "cz", "imdbName": "Czech Republic", + "languages": [ + "Czech" + ], "name": "Czech Republic", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Czech_Republic" @@ -1106,6 +1229,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/2d/Flag_of_Czechoslovakia.svg", "imdbCode": "xcs", "imdbName": "Czechoslovakia", + "languages": [], "name": "Czechoslovakia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Czechoslovakia" @@ -1119,7 +1243,10 @@ "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/6f/Flag_of_the_Democratic_Republic_of_the_Congo.svg", "imdbCode": "cd", - "imdbName": "Democratic Republic of the Congo", + "imdbName": "Democratic Republic of Congo", + "languages": [ + "Lingala" + ], "name": "Democratic Republic of the Congo", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Democratic_Republic_of_the_Congo" @@ -1137,6 +1264,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/9c/Flag_of_Denmark.svg", "imdbCode": "dk", "imdbName": "Denmark", + "languages": [ + "Danish" + ], "name": "Denmark", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Denmark" @@ -1151,6 +1281,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/6e/Flag_of_the_British_Indian_Ocean_Territory.svg", + "languages": [], "name": "Diego Garcia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Diego_Garcia" @@ -1165,6 +1296,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/3/34/Flag_of_Djibouti.svg", "imdbCode": "dj", "imdbName": "Djibouti", + "languages": [], "name": "Djibouti", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Djibouti" @@ -1179,6 +1311,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/c4/Flag_of_Dominica.svg", "imdbCode": "dm", "imdbName": "Dominica", + "languages": [], "name": "Dominica", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Dominica" @@ -1193,6 +1326,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/9f/Flag_of_the_Dominican_Republic.svg", "imdbCode": "do", "imdbName": "Dominican Republic", + "languages": [], "name": "Dominican Republic", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Dominican_Republic" @@ -1209,6 +1343,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/a1/Flag_of_East_Germany.svg", "imdbCode": "xeg", "imdbName": "East Germany", + "languages": [], "name": "East Germany", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/East_Germany" @@ -1223,6 +1358,7 @@ "Timor-Leste" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/26/Flag_of_East_Timor.svg", + "languages": [], "name": "East Timor", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/East_Timor" @@ -1237,6 +1373,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/e8/Flag_of_Ecuador.svg", "imdbCode": "ec", "imdbName": "Ecuador", + "languages": [], "name": "Ecuador", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Ecuador" @@ -1251,6 +1388,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/fe/Flag_of_Egypt.svg", "imdbCode": "eg", "imdbName": "Egypt", + "languages": [ + "Egyptian (Ancient)" + ], "name": "Egypt", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Egypt" @@ -1265,6 +1405,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/3/34/Flag_of_El_Salvador.svg", "imdbCode": "sv", "imdbName": "El Salvador", + "languages": [], "name": "El Salvador", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/El_Salvador" @@ -1279,6 +1420,10 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/be/Flag_of_England.svg", + "languages": [ + "Middle English", + "Old English" + ], "name": "England", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/England" @@ -1293,6 +1438,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/3/31/Flag_of_Equatorial_Guinea.svg", "imdbCode": "gq", "imdbName": "Equatorial Guinea", + "languages": [], "name": "Equatorial Guinea", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Equatorial_Guinea" @@ -1307,6 +1453,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/29/Flag_of_Eritrea.svg", "imdbCode": "er", "imdbName": "Eritrea", + "languages": [], "name": "Eritrea", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Eritrea" @@ -1321,6 +1468,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/8f/Flag_of_Estonia.svg", "imdbCode": "ee", "imdbName": "Estonia", + "languages": [ + "Estonian" + ], "name": "Estonia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Estonia" @@ -1335,6 +1485,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/7/71/Flag_of_Ethiopia.svg", "imdbCode": "et", "imdbName": "Ethiopia", + "languages": [ + "Amharic" + ], "name": "Ethiopia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Ethiopia" @@ -1347,6 +1500,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/b7/Flag_of_Europe.svg", + "languages": [], "name": "European Union", "other": true, "wikipediaURL": "http://en.wikipedia.org/wiki/European_Union" @@ -1363,6 +1517,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/83/Flag_of_the_Falkland_Islands.svg", "imdbCode": "fk", "imdbName": "Falkland Islands", + "languages": [], "name": "Falkland Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Falkland_Islands" @@ -1379,6 +1534,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/3/3c/Flag_of_the_Faroe_Islands.svg", "imdbCode": "fo", "imdbName": "Faroe Islands", + "languages": [ + "Faroese" + ], "name": "Faroe Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Faroe_Islands" @@ -1390,9 +1548,10 @@ "disputed": [], "disputes": [], "dissolved": [], - "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/4c/Flag_of_Federated_States_of_Micronesia.svg", + "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/e4/Flag_of_the_Federated_States_of_Micronesia.svg", "imdbCode": "fm", "imdbName": "Federated States of Micronesia", + "languages": [], "name": "Micronesia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Federated_States_of_Micronesia" @@ -1407,6 +1566,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/ba/Flag_of_Fiji.svg", "imdbCode": "fj", "imdbName": "Fiji", + "languages": [], "name": "Fiji", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Fiji" @@ -1423,6 +1583,10 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/bc/Flag_of_Finland.svg", "imdbCode": "fi", "imdbName": "Finland", + "languages": [ + "Saami", + "Finnish" + ], "name": "Finland", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Finland" @@ -1454,6 +1618,11 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/c3/Flag_of_France.svg", "imdbCode": "fr", "imdbName": "France", + "languages": [ + "French", + "Breton", + "Corsican" + ], "name": "France", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/France" @@ -1470,6 +1639,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/29/Flag_of_French_Guiana.svg", "imdbCode": "gf", "imdbName": "French Guiana", + "languages": [], "name": "French Guiana", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/French_Guiana" @@ -1486,6 +1656,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/db/Flag_of_French_Polynesia.svg", "imdbCode": "pf", "imdbName": "French Polynesia", + "languages": [], "name": "French Polynesia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/French_Polynesia" @@ -1502,6 +1673,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/a7/Flag_of_the_French_Southern_and_Antarctic_Lands.svg", "imdbCode": "tf", "imdbName": "French Southern Territories", + "languages": [], "name": "French Southern Territories", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/French_Southern_Territories" @@ -1519,6 +1691,7 @@ "French Southern Territories" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/a7/Flag_of_the_French_Southern_and_Antarctic_Lands.svg", + "languages": [], "name": "French Southern and Antarctic Territories", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/French_Southern_and_Antarctic_Territories" @@ -1535,6 +1708,7 @@ "Djibouti" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/c3/Flag_of_France.svg", + "languages": [], "name": "French Afar and Issas", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/French_Territory_of_the_Afars_and_the_Issas" @@ -1549,6 +1723,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/04/Flag_of_Gabon.svg", "imdbCode": "ga", "imdbName": "Gabon", + "languages": [], "name": "Gabon", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Gabon" @@ -1564,6 +1739,7 @@ "googleName": "The Gambia", "imdbCode": "gm", "imdbName": "Gambia", + "languages": [], "name": "Gambia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Gambia" @@ -1581,6 +1757,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/0f/Flag_of_Georgia.svg", "imdbCode": "ge", "imdbName": "Georgia", + "languages": [ + "Georgian" + ], "name": "Georgia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Georgia_(country)" @@ -1595,6 +1774,12 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/ba/Flag_of_Germany.svg", "imdbCode": "de", "imdbName": "Germany", + "languages": [ + "German", + "Eastern Frisian", + "Sorbian", + "Low German" + ], "name": "Germany", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Germany" @@ -1609,6 +1794,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/19/Flag_of_Ghana.svg", "imdbCode": "gh", "imdbName": "Ghana", + "languages": [], "name": "Ghana", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Ghana" @@ -1625,6 +1811,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/02/Flag_of_Gibraltar.svg", "imdbCode": "gi", "imdbName": "Gibraltar", + "languages": [], "name": "Gibraltar", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Gibraltar" @@ -1642,6 +1829,7 @@ "Tuvalu" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/4d/Flag_of_Gilbert_and_Ellice_Islands.svg", + "languages": [], "name": "Gilbert and Ellice Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Gilbert_and_Ellice_Islands" @@ -1656,6 +1844,10 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/5c/Flag_of_Greece.svg", "imdbCode": "gr", "imdbName": "Greece", + "languages": [ + "Greek, Ancient (to 1453)", + "Greek" + ], "name": "Greece", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Greece" @@ -1672,6 +1864,10 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/09/Flag_of_Greenland.svg", "imdbCode": "gl", "imdbName": "Greenland", + "languages": [ + "Greenlandic", + "East-Greenlandic" + ], "name": "Greenland", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Greenland" @@ -1686,6 +1882,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/bc/Flag_of_Grenada.svg", "imdbCode": "gd", "imdbName": "Grenada", + "languages": [], "name": "Grenada", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Grenada" @@ -1699,9 +1896,10 @@ "disputed": [], "disputes": [], "dissolved": [], - "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/04/Flag_of_Guadeloupe_%28local%29.svg", + "flagURL": "http://upload.wikimedia.org/wikipedia/commons/7/7d/Flag_of_Guadeloupe_%28local%29_variant.svg", "imdbCode": "gp", "imdbName": "Guadeloupe", + "languages": [], "name": "Guadeloupe", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Guadeloupe" @@ -1718,6 +1916,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/07/Flag_of_Guam.svg", "imdbCode": "gu", "imdbName": "Guam", + "languages": [], "name": "Guam", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Guam" @@ -1732,6 +1931,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/ec/Flag_of_Guatemala.svg", "imdbCode": "gt", "imdbName": "Guatemala", + "languages": [], "name": "Guatemala", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Guatemala" @@ -1748,6 +1948,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/fa/Flag_of_Guernsey.svg", "imdbCode": "gg", "imdbName": "Guernsey", + "languages": [], "name": "Guernsey", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Guernsey" @@ -1762,6 +1963,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/ed/Flag_of_Guinea.svg", "imdbCode": "gn", "imdbName": "Guinea", + "languages": [ + "Malinka" + ], "name": "Guinea", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Guinea" @@ -1776,6 +1980,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/01/Flag_of_Guinea-Bissau.svg", "imdbCode": "gw", "imdbName": "Guinea-Bissau", + "languages": [], "name": "Guinea-Bissau", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Guinea-Bissau" @@ -1790,6 +1995,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/99/Flag_of_Guyana.svg", "imdbCode": "gy", "imdbName": "Guyana", + "languages": [], "name": "Guyana", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Guyana" @@ -1804,6 +2010,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/56/Flag_of_Haiti.svg", "imdbCode": "ht", "imdbName": "Haiti", + "languages": [ + "Haitian" + ], "name": "Haiti", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Haiti" @@ -1817,9 +2026,10 @@ "disputed": [], "disputes": [], "dissolved": [], - "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/b9/Flag_of_Australia.svg", + "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/fa/Flag_of_Antarctica.svg", "imdbCode": "hm", "imdbName": "Heard Island and McDonald Islands", + "languages": [], "name": "Heard Island and McDonald Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Heard_Island_and_McDonald_Islands" @@ -1834,6 +2044,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/82/Flag_of_Honduras.svg", "imdbCode": "hn", "imdbName": "Honduras", + "languages": [], "name": "Honduras", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Honduras" @@ -1850,6 +2061,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/5b/Flag_of_Hong_Kong.svg", "imdbCode": "hk", "imdbName": "Hong Kong", + "languages": [], "name": "Hong Kong", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Hong_Kong" @@ -1864,6 +2076,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/c1/Flag_of_Hungary.svg", "imdbCode": "hu", "imdbName": "Hungary", + "languages": [ + "Hungarian" + ], "name": "Hungary", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Hungary" @@ -1878,6 +2093,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/ce/Flag_of_Iceland.svg", "imdbCode": "is", "imdbName": "Iceland", + "languages": [ + "Icelandic" + ], "name": "Iceland", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Iceland" @@ -1892,6 +2110,22 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/41/Flag_of_India.svg", "imdbCode": "in", "imdbName": "India", + "languages": [ + "Telugu", + "Malayalam", + "Ladakhi", + "Marathi", + "Punjabi", + "Chhattisgarhi", + "Gujarati", + "Indian", + "Hindi", + "Rajasthani", + "Kannada", + "Konkani", + "Assamese", + "Nagpuri" + ], "name": "India", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/India" @@ -1906,6 +2140,10 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/9f/Flag_of_Indonesia.svg", "imdbCode": "id", "imdbName": "Indonesia", + "languages": [ + "Indonesian", + "Balinese" + ], "name": "Indonesia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Indonesia" @@ -1920,6 +2158,10 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/ca/Flag_of_Iran.svg", "imdbCode": "ir", "imdbName": "Iran", + "languages": [ + "Parsee", + "Persian" + ], "name": "Iran", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Iran" @@ -1936,6 +2178,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/f6/Flag_of_Iraq.svg", "imdbCode": "iq", "imdbName": "Iraq", + "languages": [], "name": "Iraq", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Iraq" @@ -1952,6 +2195,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/bc/Flag_of_the_Isle_of_Man.svg", "imdbCode": "im", "imdbName": "Isle of Man", + "languages": [], "name": "Isle of Man", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Isle_of_Man" @@ -1966,6 +2210,10 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/d4/Flag_of_Israel.svg", "imdbCode": "il", "imdbName": "Israel", + "languages": [ + "Yiddish", + "Hebrew" + ], "name": "Israel", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Israel" @@ -1980,6 +2228,13 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/03/Flag_of_Italy.svg", "imdbCode": "it", "imdbName": "Italy", + "languages": [ + "Italian", + "Latin", + "Sicilian", + "Sardinian", + "Neapolitan" + ], "name": "Italy", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Italy" @@ -1994,6 +2249,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/0a/Flag_of_Jamaica.svg", "imdbCode": "jm", "imdbName": "Jamaica", + "languages": [], "name": "Jamaica", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Jamaica" @@ -2008,6 +2264,10 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/9e/Flag_of_Japan.svg", "imdbCode": "jp", "imdbName": "Japan", + "languages": [ + "Ryukyuan", + "Japanese" + ], "name": "Japan", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Japan" @@ -2024,6 +2284,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/1c/Flag_of_Jersey.svg", "imdbCode": "je", "imdbName": "Jersey", + "languages": [], "name": "Jersey", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Jersey" @@ -2040,6 +2301,7 @@ "United States Minor Outlying Islands" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/e5/Flag_of_Johnston_Atoll_%28local%29.svg", + "languages": [], "name": "Johnston Island", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Johnston_Island" @@ -2054,6 +2316,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/c0/Flag_of_Jordan.svg", "imdbCode": "jo", "imdbName": "Jordan", + "languages": [], "name": "Jordan", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Jordan" @@ -2068,6 +2331,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/d3/Flag_of_Kazakhstan.svg", "imdbCode": "kz", "imdbName": "Kazakhstan", + "languages": [ + "Kazakh" + ], "name": "Kazakhstan", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Kazakhstan" @@ -2082,6 +2348,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/49/Flag_of_Kenya.svg", "imdbCode": "ke", "imdbName": "Kenya", + "languages": [ + "Swahili" + ], "name": "Kenya", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Kenya" @@ -2096,6 +2365,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/d3/Flag_of_Kiribati.svg", "imdbCode": "ki", "imdbName": "Kiribati", + "languages": [], "name": "Kiribati", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Kiribati" @@ -2113,6 +2383,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/90/Flag_of_Korea_1882.svg", "imdbCode": "xko", "imdbName": "Korea", + "languages": [], "name": "Korea", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Korea" @@ -2127,6 +2398,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/aa/Flag_of_Kuwait.svg", "imdbCode": "kw", "imdbName": "Kuwait", + "languages": [], "name": "Kuwait", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Kuwait" @@ -2141,6 +2413,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/c7/Flag_of_Kyrgyzstan.svg", "imdbCode": "kg", "imdbName": "Kyrgyzstan", + "languages": [ + "Kyrgyz" + ], "name": "Kyrgyzstan", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Kyrgyzstan" @@ -2155,6 +2430,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/56/Flag_of_Laos.svg", "imdbCode": "la", "imdbName": "Laos", + "languages": [ + "Lao" + ], "name": "Laos", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Laos" @@ -2169,6 +2447,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/84/Flag_of_Latvia.svg", "imdbCode": "lv", "imdbName": "Latvia", + "languages": [ + "Latvian" + ], "name": "Latvia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Latvia" @@ -2183,6 +2464,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/59/Flag_of_Lebanon.svg", "imdbCode": "lb", "imdbName": "Lebanon", + "languages": [], "name": "Lebanon", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Lebanon" @@ -2197,6 +2479,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/4a/Flag_of_Lesotho.svg", "imdbCode": "ls", "imdbName": "Lesotho", + "languages": [ + "Sotho" + ], "name": "Lesotho", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Lesotho" @@ -2211,6 +2496,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/b8/Flag_of_Liberia.svg", "imdbCode": "lr", "imdbName": "Liberia", + "languages": [], "name": "Liberia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Liberia" @@ -2222,9 +2508,10 @@ "disputed": [], "disputes": [], "dissolved": [], - "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/66/Flag_of_the_Libyan_Jamahiriya_1977.svg", + "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/f5/Flag_of_Libya_%281951%29.svg", "imdbCode": "ly", "imdbName": "Libya", + "languages": [], "name": "Libya", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Libya" @@ -2239,6 +2526,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/47/Flag_of_Liechtenstein.svg", "imdbCode": "li", "imdbName": "Liechtenstein", + "languages": [], "name": "Liechtenstein", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Liechtenstein" @@ -2253,6 +2541,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/11/Flag_of_Lithuania.svg", "imdbCode": "lt", "imdbName": "Lithuania", + "languages": [ + "Lithuanian" + ], "name": "Lithuania", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Lithuania" @@ -2267,6 +2558,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/da/Flag_of_Luxembourg.svg", "imdbCode": "lu", "imdbName": "Luxembourg", + "languages": [], "name": "Luxembourg", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Luxembourg" @@ -2283,6 +2575,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/63/Flag_of_Macau.svg", "imdbCode": "mo", "imdbName": "Macao", + "languages": [], "name": "Macau", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Macau" @@ -2297,6 +2590,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/bc/Flag_of_Madagascar.svg", "imdbCode": "mg", "imdbName": "Madagascar", + "languages": [ + "Malagasy" + ], "name": "Madagascar", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Madagascar" @@ -2311,6 +2607,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/d1/Flag_of_Malawi.svg", "imdbCode": "mw", "imdbName": "Malawi", + "languages": [ + "Nyanja" + ], "name": "Malawi", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Malawi" @@ -2325,6 +2624,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/66/Flag_of_Malaysia.svg", "imdbCode": "my", "imdbName": "Malaysia", + "languages": [ + "Malay" + ], "name": "Malaysia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Malaysia" @@ -2339,6 +2641,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/0f/Flag_of_Maldives.svg", "imdbCode": "mv", "imdbName": "Maldives", + "languages": [], "name": "Maldives", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Maldives" @@ -2353,6 +2656,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/92/Flag_of_Mali.svg", "imdbCode": "ml", "imdbName": "Mali", + "languages": [ + "Bambara" + ], "name": "Mali", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Mali" @@ -2367,6 +2673,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/7/73/Flag_of_Malta.svg", "imdbCode": "mt", "imdbName": "Malta", + "languages": [ + "Maltese" + ], "name": "Malta", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Malta" @@ -2381,6 +2690,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/2e/Flag_of_the_Marshall_Islands.svg", "imdbCode": "mh", "imdbName": "Marshall Islands", + "languages": [ + "Marshallese" + ], "name": "Marshall Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Marshall_Islands" @@ -2397,6 +2709,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/52/Flag_of_Martinique.svg", "imdbCode": "mq", "imdbName": "Martinique", + "languages": [], "name": "Martinique", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Martinique" @@ -2411,6 +2724,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/43/Flag_of_Mauritania.svg", "imdbCode": "mr", "imdbName": "Mauritania", + "languages": [ + "Hassanya" + ], "name": "Mauritania", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Mauritania" @@ -2425,6 +2741,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/7/77/Flag_of_Mauritius.svg", "imdbCode": "mu", "imdbName": "Mauritius", + "languages": [], "name": "Mauritius", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Mauritius" @@ -2441,6 +2758,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/c3/Flag_of_France.svg", "imdbCode": "yt", "imdbName": "Mayotte", + "languages": [], "name": "Mayotte", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Mayotte" @@ -2453,6 +2771,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/c3/Flag_of_France.svg", + "languages": [], "name": "Metropolitan France", "other": true, "wikipediaURL": "http://en.wikipedia.org/wiki/Metropolitan_France" @@ -2467,6 +2786,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/fc/Flag_of_Mexico.svg", "imdbCode": "mx", "imdbName": "Mexico", + "languages": [ + "Maya" + ], "name": "Mexico", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Mexico" @@ -2483,6 +2805,7 @@ "United States Minor Outlying Islands" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/2a/Flag_of_the_Midway_Islands_%28local%29.svg", + "languages": [], "name": "Midway Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Midway_Islands" @@ -2499,6 +2822,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/27/Flag_of_Moldova.svg", "imdbCode": "md", "imdbName": "Moldova", + "languages": [], "name": "Moldova", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Moldova" @@ -2513,6 +2837,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/ea/Flag_of_Monaco.svg", "imdbCode": "mc", "imdbName": "Monaco", + "languages": [], "name": "Monaco", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Monaco" @@ -2527,6 +2852,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/4c/Flag_of_Mongolia.svg", "imdbCode": "mn", "imdbName": "Mongolia", + "languages": [ + "Mongolian" + ], "name": "Mongolia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Mongolia" @@ -2541,6 +2869,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/64/Flag_of_Montenegro.svg", "imdbCode": "me", "imdbName": "Montenegro", + "languages": [], "name": "Montenegro", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Montenegro" @@ -2557,6 +2886,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/d0/Flag_of_Montserrat.svg", "imdbCode": "ms", "imdbName": "Montserrat", + "languages": [], "name": "Montserrat", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Montserrat" @@ -2571,6 +2901,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/2c/Flag_of_Morocco.svg", "imdbCode": "ma", "imdbName": "Morocco", + "languages": [ + "Berber" + ], "name": "Morocco", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Morocco" @@ -2585,6 +2918,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/d0/Flag_of_Mozambique.svg", "imdbCode": "mz", "imdbName": "Mozambique", + "languages": [], "name": "Mozambique", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Mozambique" @@ -2600,6 +2934,7 @@ "googleName": "Burma", "imdbCode": "mm", "imdbName": "Myanmar", + "languages": [], "name": "Myanmar", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Myanmar" @@ -2614,6 +2949,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/8d/Flag_of_Nagorno-Karabakh.svg", + "languages": [], "name": "Nagorno-Karabakh", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Nagorno-Karabakh_Republic" @@ -2628,6 +2964,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/00/Flag_of_Namibia.svg", "imdbCode": "na", "imdbName": "Namibia", + "languages": [], "name": "Namibia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Namibia" @@ -2642,6 +2979,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/3/30/Flag_of_Nauru.svg", "imdbCode": "nr", "imdbName": "Nauru", + "languages": [], "name": "Nauru", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Nauru" @@ -2656,6 +2994,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/9b/Flag_of_Nepal.svg", "imdbCode": "np", "imdbName": "Nepal", + "languages": [ + "Nepali" + ], "name": "Nepal", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Nepal" @@ -2676,6 +3017,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/20/Flag_of_the_Netherlands.svg", "imdbCode": "nl", "imdbName": "Netherlands", + "languages": [ + "Dutch" + ], "name": "Netherlands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Netherlands" @@ -2696,6 +3040,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/0f/Flag_of_the_Netherlands_Antilles_%281959-1986%29.svg", "imdbCode": "an", "imdbName": "Netherlands Antilles", + "languages": [], "name": "Netherlands Antilles", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Netherlands_Antilles" @@ -2712,6 +3057,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/c3/Flag_of_France.svg", "imdbCode": "nc", "imdbName": "New Caledonia", + "languages": [], "name": "New Caledonia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/New_Caledonia" @@ -2729,6 +3075,7 @@ "Vanuatu" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/42/Flag_of_Anglo-French_Joint_Naval_Commission.svg", + "languages": [], "name": "New Hebrides", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/New_Hebrides" @@ -2748,6 +3095,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/3/3e/Flag_of_New_Zealand.svg", "imdbCode": "nz", "imdbName": "New Zealand", + "languages": [ + "Maori" + ], "name": "New Zealand", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/New_Zealand" @@ -2762,6 +3112,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/19/Flag_of_Nicaragua.svg", "imdbCode": "ni", "imdbName": "Nicaragua", + "languages": [], "name": "Nicaragua", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Nicaragua" @@ -2776,6 +3127,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/f4/Flag_of_Niger.svg", "imdbCode": "ne", "imdbName": "Niger", + "languages": [ + "Djerma" + ], "name": "Niger", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Niger" @@ -2790,6 +3144,11 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/7/79/Flag_of_Nigeria.svg", "imdbCode": "ng", "imdbName": "Nigeria", + "languages": [ + "Yoruba", + "Ibo", + "Hausa" + ], "name": "Nigeria", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Nigeria" @@ -2806,6 +3165,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/01/Flag_of_Niue.svg", "imdbCode": "nu", "imdbName": "Niue", + "languages": [], "name": "Niue", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Niue" @@ -2822,6 +3182,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/48/Flag_of_Norfolk_Island.svg", "imdbCode": "nf", "imdbName": "Norfolk Island", + "languages": [], "name": "Norfolk Island", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Norfolk_Island" @@ -2836,6 +3197,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/51/Flag_of_North_Korea.svg", "imdbCode": "kp", "imdbName": "North Korea", + "languages": [], "name": "North Korea", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/North_Korea" @@ -2849,9 +3211,10 @@ "dissolved": [ "Vietnam" ], - "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/21/Flag_of_Vietnam.svg", + "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/6b/Flag_of_North_Vietnam_1945-1955.svg", "imdbCode": "xnv", "imdbName": "North Vietnam", + "languages": [], "name": "North Vietnam", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/North_Vietnam" @@ -2866,6 +3229,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/1e/Flag_of_the_Turkish_Republic_of_Northern_Cyprus.svg", + "languages": [], "name": "Northern Cyprus", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Northern_Cyprus" @@ -2880,6 +3244,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/88/Ulster_banner.svg", + "languages": [], "name": "Northern Ireland", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Northern_Ireland" @@ -2896,6 +3261,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/e0/Flag_of_the_Northern_Mariana_Islands.svg", "imdbCode": "mp", "imdbName": "Northern Mariana Islands", + "languages": [], "name": "Northern Mariana Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Northern_Mariana_Islands" @@ -2915,6 +3281,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/d9/Flag_of_Norway.svg", "imdbCode": "no", "imdbName": "Norway", + "languages": [ + "Norwegian" + ], "name": "Norway", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Norway" @@ -2929,6 +3298,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/dd/Flag_of_Oman.svg", "imdbCode": "om", "imdbName": "Oman", + "languages": [], "name": "Oman", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Oman" @@ -2943,6 +3313,10 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/3/32/Flag_of_Pakistan.svg", "imdbCode": "pk", "imdbName": "Pakistan", + "languages": [ + "Sindhi", + "Urdu" + ], "name": "Pakistan", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Pakistan" @@ -2957,6 +3331,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/48/Flag_of_Palau.svg", "imdbCode": "pw", "imdbName": "Palau", + "languages": [], "name": "Palau", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Palau" @@ -2971,6 +3346,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/ab/Flag_of_Panama.svg", "imdbCode": "pa", "imdbName": "Panama", + "languages": [], "name": "Panama", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Panama" @@ -2987,6 +3363,7 @@ "Panama" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/b0/Panama_Canal_Zone_Flag.png", + "languages": [], "name": "Panama Canal Zone", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Panama_Canal_Zone" @@ -3001,6 +3378,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/e3/Flag_of_Papua_New_Guinea.svg", "imdbCode": "pg", "imdbName": "Papua New Guinea", + "languages": [ + "Korowai" + ], "name": "Papua New Guinea", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Papua_New_Guinea" @@ -3015,6 +3395,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/27/Flag_of_Paraguay.svg", "imdbCode": "py", "imdbName": "Paraguay", + "languages": [ + "Guarani" + ], "name": "Paraguay", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Paraguay" @@ -3032,6 +3415,18 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/fa/Flag_of_the_People%27s_Republic_of_China.svg", "imdbCode": "cn", "imdbName": "China", + "languages": [ + "Mandarin", + "Hakka", + "Cantonese", + "Tibetan", + "Chinese", + "Chaozhou", + "Shanghainese", + "Hokkien", + "Naxi", + "Shanxi" + ], "name": "China", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/People%27s_Republic_of_China" @@ -3046,6 +3441,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/cf/Flag_of_Peru.svg", "imdbCode": "pe", "imdbName": "Peru", + "languages": [ + "Quechua" + ], "name": "Peru", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Peru" @@ -3060,6 +3458,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/d9/Flag_of_Norway.svg", + "languages": [], "name": "Peter I Island", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Peter_I_Island" @@ -3074,6 +3473,11 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/99/Flag_of_the_Philippines.svg", "imdbCode": "ph", "imdbName": "Philippines", + "languages": [ + "Bicolano", + "Filipino", + "Tagalog" + ], "name": "Philippines", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Philippines" @@ -3090,6 +3494,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/88/Flag_of_the_Pitcairn_Islands.svg", "imdbCode": "pn", "imdbName": "Pitcairn", + "languages": [], "name": "Pitcairn Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Pitcairn_Islands" @@ -3104,6 +3509,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/12/Flag_of_Poland.svg", "imdbCode": "pl", "imdbName": "Poland", + "languages": [ + "Polish" + ], "name": "Poland", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Poland" @@ -3118,6 +3526,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/5c/Flag_of_Portugal.svg", "imdbCode": "pt", "imdbName": "Portugal", + "languages": [ + "Portuguese" + ], "name": "Portugal", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Portugal" @@ -3134,6 +3545,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/28/Flag_of_Puerto_Rico.svg", "imdbCode": "pr", "imdbName": "Puerto Rico", + "languages": [], "name": "Puerto Rico", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Puerto_Rico" @@ -3148,6 +3560,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/65/Flag_of_Qatar.svg", "imdbCode": "qa", "imdbName": "Qatar", + "languages": [], "name": "Qatar", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Qatar" @@ -3162,6 +3575,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/d9/Flag_of_Norway.svg", + "languages": [], "name": "Queen Maud Land", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Queen_Maud_Land" @@ -3178,6 +3592,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/9a/Drapeau_Reunion_APDR.png", "imdbCode": "re", "imdbName": "Réunion", + "languages": [], "name": "R\u00e9union", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/R%C3%A9union" @@ -3192,6 +3607,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/7/72/Flag_of_the_Republic_of_China.svg", "imdbCode": "tw", "imdbName": "Taiwan", + "languages": [], "name": "Taiwan", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Republic_of_China" @@ -3206,6 +3622,7 @@ "Benin" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/0a/Flag_of_Benin.svg", + "languages": [], "name": "Dahomey", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Republic_of_Dahomey" @@ -3220,6 +3637,10 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/45/Flag_of_Ireland.svg", "imdbCode": "ie", "imdbName": "Ireland", + "languages": [ + "Irish Gaelic", + "Gaelic" + ], "name": "Ireland", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Republic_of_Ireland" @@ -3237,6 +3658,7 @@ "googleName": "Kosova (Kosovo)", "imdbCode": "xkv", "imdbName": "Kosovo", + "languages": [], "name": "Kosovo", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Republic_of_Kosovo" @@ -3252,6 +3674,9 @@ "googleName": "Former Yugoslav Republic of Macedonia", "imdbCode": "mk", "imdbName": "Republic of Macedonia", + "languages": [ + "Macedonian" + ], "name": "Macedonia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Republic_of_Macedonia" @@ -3266,6 +3691,7 @@ "Burkina Faso" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/4a/Flag_of_Upper_Volta.svg", + "languages": [], "name": "Upper Volta", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Republic_of_Upper_Volta" @@ -3281,6 +3707,7 @@ "googleName": "Congo", "imdbCode": "cg", "imdbName": "Congo", + "languages": [], "name": "Republic of the Congo", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Republic_of_the_Congo" @@ -3295,6 +3722,7 @@ "Zimbabwe" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/e1/Flag_of_Rhodesia.svg", + "languages": [], "name": "Rhodesia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Rhodesia" @@ -3309,6 +3737,10 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/7/73/Flag_of_Romania.svg", "imdbCode": "ro", "imdbName": "Romania", + "languages": [ + "Romanian", + "Romany" + ], "name": "Romania", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Romania" @@ -3323,6 +3755,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/3/3e/Flag_of_New_Zealand.svg", + "languages": [], "name": "Ross Dependency", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Ross_Dependency" @@ -3337,6 +3770,12 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/f3/Flag_of_Russia.svg", "imdbCode": "ru", "imdbName": "Russia", + "languages": [ + "Tatar", + "Russian", + "Chechen", + "Khanty" + ], "name": "Russia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Russia" @@ -3351,6 +3790,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/17/Flag_of_Rwanda.svg", "imdbCode": "rw", "imdbName": "Rwanda", + "languages": [], "name": "Rwanda", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Rwanda" @@ -3365,6 +3805,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/4f/Flag_of_Sao_Tome_and_Principe.svg", "imdbCode": "st", "imdbName": "Sao Tome and Principe", + "languages": [], "name": "S\u00e3o Tom\u00e9 and Pr\u00edncipe", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/S%C3%A3o_Tom%C3%A9_and_Pr%C3%ADncipe" @@ -3380,6 +3821,7 @@ "googleName": "Western Sahara", "imdbCode": "eh", "imdbName": "Western Sahara", + "languages": [], "name": "Sahrawi", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Sahrawi_Arab_Democratic_Republic" @@ -3396,6 +3838,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/df/Flag_of_Saint_Barthelemy_%28local%29.svg", "imdbCode": "bl", "imdbName": "Saint Barthélemy", + "languages": [], "name": "Saint Barth\u00e9lemy", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Saint_Barth%C3%A9lemy" @@ -3412,6 +3855,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/00/Flag_of_Saint_Helena.svg", "imdbCode": "sh", "imdbName": "Saint Helena", + "languages": [], "name": "Saint Helena", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Saint_Helena" @@ -3426,6 +3870,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/fe/Flag_of_Saint_Kitts_and_Nevis.svg", "imdbCode": "kn", "imdbName": "Saint Kitts and Nevis", + "languages": [], "name": "Saint Kitts and Nevis", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Saint_Kitts_and_Nevis" @@ -3440,6 +3885,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/9f/Flag_of_Saint_Lucia.svg", "imdbCode": "lc", "imdbName": "Saint Lucia", + "languages": [], "name": "Saint Lucia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Saint_Lucia" @@ -3456,6 +3902,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/7/74/Flag_of_Saint-Pierre_and_Miquelon.svg", "imdbCode": "pm", "imdbName": "Saint Pierre and Miquelon", + "languages": [], "name": "Saint Pierre and Miquelon", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Saint_Pierre_and_Miquelon" @@ -3470,6 +3917,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/6d/Flag_of_Saint_Vincent_and_the_Grenadines.svg", "imdbCode": "vc", "imdbName": "Saint Vincent and the Grenadines", + "languages": [], "name": "Saint Vincent and the Grenadines", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Saint_Vincent_and_the_Grenadines" @@ -3484,6 +3932,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/3/31/Flag_of_Samoa.svg", "imdbCode": "ws", "imdbName": "Samoa", + "languages": [ + "Samoan" + ], "name": "Samoa", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Samoa" @@ -3498,6 +3949,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/b1/Flag_of_San_Marino.svg", "imdbCode": "sm", "imdbName": "San Marino", + "languages": [], "name": "San Marino", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/San_Marino" @@ -3516,6 +3968,7 @@ "Saudi Arabia" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/2f/Flag_of_the_United_Nations.svg", + "languages": [], "name": "Neutral Zone", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Saudi-Iraqi_neutral_zone" @@ -3532,6 +3985,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/0d/Flag_of_Saudi_Arabia.svg", "imdbCode": "sa", "imdbName": "Saudi Arabia", + "languages": [ + "Arabic" + ], "name": "Saudi Arabia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Saudi_Arabia" @@ -3546,6 +4002,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/10/Flag_of_Scotland.svg", + "languages": [], "name": "Scotland", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Scotland" @@ -3560,6 +4017,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/fd/Flag_of_Senegal.svg", "imdbCode": "sn", "imdbName": "Senegal", + "languages": [ + "Wolof" + ], "name": "Senegal", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Senegal" @@ -3576,6 +4036,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/ff/Flag_of_Serbia.svg", "imdbCode": "rs", "imdbName": "Serbia", + "languages": [ + "Serbian" + ], "name": "Serbia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Serbia" @@ -3591,8 +4054,9 @@ "Montenegro" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/90/Flag_of_Serbia_and_Montenegro.svg", - "imdbCode": "xsm", - "imdbName": "Serbia and Montenegro", + "imdbCode": "xfy", + "imdbName": "Federal Republic of Yugoslavia", + "languages": [], "name": "Serbia and Montenegro", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Serbia_and_Montenegro" @@ -3607,6 +4071,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/92/Flag_of_the_Seychelles.svg", "imdbCode": "sc", "imdbName": "Seychelles", + "languages": [], "name": "Seychelles", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Seychelles" @@ -3623,6 +4088,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/dd/State_Flag_of_Thailand_%281916%29.svg", "imdbCode": "xsi", "imdbName": "Siam", + "languages": [], "name": "Siam", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Siam" @@ -3637,6 +4103,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/17/Flag_of_Sierra_Leone.svg", "imdbCode": "sl", "imdbName": "Sierra Leone", + "languages": [ + "Mende" + ], "name": "Sierra Leone", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Sierra_Leone" @@ -3651,6 +4120,7 @@ "India" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/1e/Flag_of_Sikkim_monarchy.svg", + "languages": [], "name": "Sikkim", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Sikkim" @@ -3665,6 +4135,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/48/Flag_of_Singapore.svg", "imdbCode": "sg", "imdbName": "Singapore", + "languages": [], "name": "Singapore", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Singapore" @@ -3679,6 +4150,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/d3/Flag_of_Sint_Maarten.svg", + "languages": [], "name": "Sint Maarten", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Sint_Maarten" @@ -3693,6 +4165,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/e6/Flag_of_Slovakia.svg", "imdbCode": "sk", "imdbName": "Slovakia", + "languages": [ + "Slovak" + ], "name": "Slovakia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Slovakia" @@ -3707,6 +4182,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/f0/Flag_of_Slovenia.svg", "imdbCode": "si", "imdbName": "Slovenia", + "languages": [ + "Slovenian" + ], "name": "Slovenia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Slovenia" @@ -3721,6 +4199,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/7/74/Flag_of_the_Solomon_Islands.svg", "imdbCode": "sb", "imdbName": "Solomon Islands", + "languages": [], "name": "Solomon Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Solomon_Islands" @@ -3737,6 +4216,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/a0/Flag_of_Somalia.svg", "imdbCode": "so", "imdbName": "Somalia", + "languages": [ + "Somali" + ], "name": "Somalia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Somalia" @@ -3751,6 +4233,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/4d/Flag_of_Somaliland.svg", + "languages": [], "name": "Somaliland", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Somaliland" @@ -3765,6 +4248,11 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/af/Flag_of_South_Africa.svg", "imdbCode": "za", "imdbName": "South Africa", + "languages": [ + "Xhosa", + "Afrikaans", + "Zulu" + ], "name": "South Africa", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/South_Africa" @@ -3781,6 +4269,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/ed/Flag_of_South_Georgia_and_the_South_Sandwich_Islands.svg", "imdbCode": "gs", "imdbName": "South Georgia and the South Sandwich Islands", + "languages": [], "name": "South Georgia and the South Sandwich Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/South_Georgia_and_the_South_Sandwich_Islands" @@ -3795,6 +4284,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/09/Flag_of_South_Korea.svg", "imdbCode": "kr", "imdbName": "South Korea", + "languages": [ + "Korean" + ], "name": "South Korea", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/South_Korea" @@ -3809,6 +4301,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/12/Flag_of_South_Ossetia.svg", + "languages": [], "name": "South Ossetia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/South_Ossetia" @@ -3820,7 +4313,8 @@ "disputed": [], "disputes": [], "dissolved": [], - "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/ae/Flag_of_the_SPLAM.svg", + "flagURL": "http://upload.wikimedia.org/wikipedia/commons/7/7a/Flag_of_South_Sudan.svg", + "languages": [], "name": "South Sudan", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/South_Sudan" @@ -3835,6 +4329,7 @@ "Yemen" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/db/Flag_of_South_Yemen.svg", + "languages": [], "name": "South Yemen", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/South_Yemen" @@ -3867,6 +4362,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/a9/Flag_of_the_Soviet_Union.svg", "imdbCode": "xsu", "imdbName": "Soviet Union", + "languages": [], "name": "Soviet Union", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Soviet_Union" @@ -3884,6 +4380,12 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/9a/Flag_of_Spain.svg", "imdbCode": "es", "imdbName": "Spain", + "languages": [ + "Spanish", + "Galician", + "Catalan", + "Basque" + ], "name": "Spain", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Spain" @@ -3898,6 +4400,10 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/11/Flag_of_Sri_Lanka.svg", "imdbCode": "lk", "imdbName": "Sri Lanka", + "languages": [ + "Tamil", + "Sinhala" + ], "name": "Sri Lanka", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Sri_Lanka" @@ -3911,7 +4417,8 @@ "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/00/Flag_of_Palestine.svg", "imdbCode": "ps", - "imdbName": "Palestinian Territory", + "imdbName": "Occupied Palestinian Territory", + "languages": [], "name": "Palestine", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/State_of_Palestine" @@ -3926,6 +4433,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/01/Flag_of_Sudan.svg", "imdbCode": "sd", "imdbName": "Sudan", + "languages": [], "name": "Sudan", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Sudan" @@ -3940,6 +4448,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/60/Flag_of_Suriname.svg", "imdbCode": "sr", "imdbName": "Suriname", + "languages": [], "name": "Suriname", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Suriname" @@ -3956,6 +4465,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/d9/Flag_of_Norway.svg", "imdbCode": "sj", "imdbName": "Svalbard and Jan Mayen", + "languages": [], "name": "Svalbard and Jan Mayen", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Svalbard_and_Jan_Mayen" @@ -3970,6 +4480,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/1e/Flag_of_Swaziland.svg", "imdbCode": "sz", "imdbName": "Swaziland", + "languages": [], "name": "Swaziland", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Swaziland" @@ -3984,6 +4495,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/4c/Flag_of_Sweden.svg", "imdbCode": "se", "imdbName": "Sweden", + "languages": [ + "Swedish" + ], "name": "Sweden", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Sweden" @@ -3998,6 +4512,10 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/08/Flag_of_Switzerland_%28Pantone%29.svg", "imdbCode": "ch", "imdbName": "Switzerland", + "languages": [ + "Romansh", + "Swiss German" + ], "name": "Switzerland", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Switzerland" @@ -4012,6 +4530,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/53/Flag_of_Syria.svg", "imdbCode": "sy", "imdbName": "Syria", + "languages": [ + "Aramaic" + ], "name": "Syria", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Syria" @@ -4026,6 +4547,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/d0/Flag_of_Tajikistan.svg", "imdbCode": "tj", "imdbName": "Tajikistan", + "languages": [ + "Tajik" + ], "name": "Tajikistan", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Tajikistan" @@ -4040,6 +4564,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/3/38/Flag_of_Tanzania.svg", "imdbCode": "tz", "imdbName": "Tanzania", + "languages": [], "name": "Tanzania", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Tanzania" @@ -4054,6 +4579,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/a9/Flag_of_Thailand.svg", "imdbCode": "th", "imdbName": "Thailand", + "languages": [ + "Thai" + ], "name": "Thailand", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Thailand" @@ -4068,6 +4596,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/26/Flag_of_East_Timor.svg", "imdbCode": "tl", "imdbName": "Timor-Leste", + "languages": [], "name": "Timor-Leste", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Timor-Leste" @@ -4082,6 +4611,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/68/Flag_of_Togo.svg", "imdbCode": "tg", "imdbName": "Togo", + "languages": [], "name": "Togo", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Togo" @@ -4098,6 +4628,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/8e/Flag_of_Tokelau.svg", "imdbCode": "tk", "imdbName": "Tokelau", + "languages": [], "name": "Tokelau", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Tokelau" @@ -4112,6 +4643,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/9a/Flag_of_Tonga.svg", "imdbCode": "to", "imdbName": "Tonga", + "languages": [ + "Tonga (Tonga Islands)" + ], "name": "Tonga", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Tonga" @@ -4126,6 +4660,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/93/Transnistria_State_Flag.svg", + "languages": [], "name": "Transnistria", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Transnistria" @@ -4140,6 +4675,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/64/Flag_of_Trinidad_and_Tobago.svg", "imdbCode": "tt", "imdbName": "Trinidad and Tobago", + "languages": [], "name": "Trinidad and Tobago", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Trinidad_and_Tobago" @@ -4154,6 +4690,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/89/Flag_of_Tristan_da_Cunha.svg", + "languages": [], "name": "Tristan da Cunha", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Tristan_da_Cunha" @@ -4173,6 +4710,7 @@ "Palau" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/41/Flag_of_the_Trust_Territory_of_the_Pacific_Islands.svg", + "languages": [], "name": "Pacific Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Trust_Territory_of_the_Pacific_Islands" @@ -4187,6 +4725,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/ce/Flag_of_Tunisia.svg", "imdbCode": "tn", "imdbName": "Tunisia", + "languages": [], "name": "Tunisia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Tunisia" @@ -4201,6 +4740,10 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/b4/Flag_of_Turkey.svg", "imdbCode": "tr", "imdbName": "Turkey", + "languages": [ + "Turkish", + "Kurdish" + ], "name": "Turkey", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Turkey" @@ -4215,6 +4758,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/1b/Flag_of_Turkmenistan.svg", "imdbCode": "tm", "imdbName": "Turkmenistan", + "languages": [ + "Turkmen" + ], "name": "Turkmenistan", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Turkmenistan" @@ -4231,6 +4777,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/a0/Flag_of_the_Turks_and_Caicos_Islands.svg", "imdbCode": "tc", "imdbName": "Turks and Caicos Islands", + "languages": [], "name": "Turks and Caicos Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Turks_and_Caicos_Islands" @@ -4245,6 +4792,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/3/38/Flag_of_Tuvalu.svg", "imdbCode": "tv", "imdbName": "Tuvalu", + "languages": [], "name": "Tuvalu", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Tuvalu" @@ -4257,6 +4805,7 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/ae/Flag_of_the_United_Kingdom.svg", + "languages": [], "name": "UK", "other": true, "wikipediaURL": "http://en.wikipedia.org/wiki/UK" @@ -4271,6 +4820,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/4e/Flag_of_Uganda.svg", "imdbCode": "ug", "imdbName": "Uganda", + "languages": [], "name": "Uganda", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Uganda" @@ -4285,6 +4835,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/49/Flag_of_Ukraine.svg", "imdbCode": "ua", "imdbName": "Ukraine", + "languages": [ + "Ukrainian" + ], "name": "Ukraine", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Ukraine" @@ -4299,6 +4852,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/cb/Flag_of_the_United_Arab_Emirates.svg", "imdbCode": "ae", "imdbName": "United Arab Emirates", + "languages": [], "name": "United Arab Emirates", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/United_Arab_Emirates" @@ -4316,6 +4870,11 @@ "googleName": "UK", "imdbCode": "gb", "imdbName": "United Kingdom", + "languages": [ + "Cornish", + "English", + "British" + ], "name": "United Kingdom", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/United_Kingdom" @@ -4344,6 +4903,17 @@ "googleName": "USA", "imdbCode": "us", "imdbName": "United States", + "languages": [ + "Navajo", + "Creek", + "Cheyenne", + "Hawaiian", + "Sioux", + "Cherokee", + "American", + "Hopi", + "Shoshoni" + ], "name": "United States", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/United_States" @@ -4360,6 +4930,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/a4/Flag_of_the_United_States.svg", "imdbCode": "um", "imdbName": "United States Minor Outlying Islands", + "languages": [], "name": "United States Minor Outlying Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/United_States_Minor_Outlying_Islands" @@ -4376,6 +4947,7 @@ "United States Minor Outlying Islands" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/a4/Flag_of_the_United_States.svg", + "languages": [], "name": "United States Miscellaneous Pacific Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/United_States_Miscellaneous_Pacific_Islands" @@ -4392,6 +4964,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/f8/Flag_of_the_United_States_Virgin_Islands.svg", "imdbCode": "vi", "imdbName": "U.S. Virgin Islands", + "languages": [], "name": "United States Virgin Islands", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/United_States_Virgin_Islands" @@ -4406,6 +4979,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/fe/Flag_of_Uruguay.svg", "imdbCode": "uy", "imdbName": "Uruguay", + "languages": [], "name": "Uruguay", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Uruguay" @@ -4420,6 +4994,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/84/Flag_of_Uzbekistan.svg", "imdbCode": "uz", "imdbName": "Uzbekistan", + "languages": [ + "Uzbek" + ], "name": "Uzbekistan", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Uzbekistan" @@ -4434,6 +5011,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/bc/Flag_of_Vanuatu.svg", "imdbCode": "vu", "imdbName": "Vanuatu", + "languages": [], "name": "Vanuatu", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Vanuatu" @@ -4448,6 +5026,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/00/Flag_of_the_Vatican_City.svg", "imdbCode": "va", "imdbName": "Holy See (Vatican City State)", + "languages": [], "name": "Vatican City", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Vatican_City" @@ -4462,6 +5041,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/7/7b/Flag_of_Venezuela_%28state%29.svg", "imdbCode": "ve", "imdbName": "Venezuela", + "languages": [], "name": "Venezuela", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Venezuela" @@ -4476,6 +5056,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/21/Flag_of_Vietnam.svg", "imdbCode": "vn", "imdbName": "Vietnam", + "languages": [ + "Vietnamese" + ], "name": "Vietnam", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Vietnam" @@ -4492,6 +5075,7 @@ "United States Minor Outlying Islands" ], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/47/Flag_of_Wake_Island.svg", + "languages": [], "name": "Wake Island", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Wake_Island" @@ -4506,6 +5090,9 @@ "disputes": [], "dissolved": [], "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/59/Flag_of_Wales_2.svg", + "languages": [ + "Welsh" + ], "name": "Wales", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Wales" @@ -4522,6 +5109,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/d2/Flag_of_Wallis_and_Futuna.svg", "imdbCode": "wf", "imdbName": "Wallis and Futuna", + "languages": [], "name": "Wallis and Futuna", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Wallis_and_Futuna" @@ -4538,6 +5126,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/ba/Flag_of_Germany.svg", "imdbCode": "xwg", "imdbName": "West Germany", + "languages": [], "name": "West Germany", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/West_Germany" @@ -4552,6 +5141,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/89/Flag_of_Yemen.svg", "imdbCode": "ye", "imdbName": "Yemen", + "languages": [], "name": "Yemen", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Yemen" @@ -4568,6 +5158,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/7/71/Flag_of_SFR_Yugoslavia.svg", "imdbCode": "xyu", "imdbName": "Yugoslavia", + "languages": [ + "Serbo-Croatian" + ], "name": "Yugoslavia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Yugoslavia" @@ -4584,6 +5177,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/5c/Flag_of_Zaire.svg", "imdbCode": "xzr", "imdbName": "Zaire", + "languages": [], "name": "Zaire", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Zaire" @@ -4598,6 +5192,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/06/Flag_of_Zambia.svg", "imdbCode": "zm", "imdbName": "Zambia", + "languages": [], "name": "Zambia", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Zambia" @@ -4612,6 +5207,9 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/6a/Flag_of_Zimbabwe.svg", "imdbCode": "zw", "imdbName": "Zimbabwe", + "languages": [ + "Shona" + ], "name": "Zimbabwe", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/Zimbabwe" @@ -4628,6 +5226,7 @@ "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/52/Flag_of_%C3%85land.svg", "imdbCode": "ax", "imdbName": "Åland Islands", + "languages": [], "name": "\u00c5land", "other": false, "wikipediaURL": "http://en.wikipedia.org/wiki/\u00c5land" diff --git a/tools/geo/json/geonames.org/countries.json b/tools/geo/json/geonames.org/countries.json index 40a53a33..df4bfcc4 100644 --- a/tools/geo/json/geonames.org/countries.json +++ b/tools/geo/json/geonames.org/countries.json @@ -39,8 +39,8 @@ {"Area": 22966.0, "Capital": "Belmopan", "Continent": "NA", "Country": "Belize", "CurrencyCode": "BZD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "BZ", "ISO-Numeric": "084", "ISO3": "BLZ", "Languages": ["en-BZ", "es"], "Phone": "501", "Population": 314522, "Postal Code Format": "", "Postal Code Regex": "", "fips": "BH", "geonameid": 3582678, "neighbours": ["GT", "MX"], "tld": ".bz"}, {"Area": 9984670.0, "Capital": "Ottawa", "Continent": "NA", "Country": "Canada", "CurrencyCode": "CAD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "CA", "ISO-Numeric": "124", "ISO3": "CAN", "Languages": ["en-CA", "fr-CA", "iu"], "Phone": "1", "Population": 33679000, "Postal Code Format": "@#@ #@#", "Postal Code Regex": "^([a-zA-Z]\\d[a-zA-Z]\\d[a-zA-Z]\\d)$", "fips": "CA", "geonameid": 6251999, "neighbours": ["US"], "tld": ".ca"}, {"Area": 14.0, "Capital": "West Island", "Continent": "AS", "Country": "Cocos Islands", "CurrencyCode": "AUD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "CC", "ISO-Numeric": "166", "ISO3": "CCK", "Languages": ["ms-CC", "en"], "Phone": "61", "Population": 628, "Postal Code Format": "", "Postal Code Regex": "", "fips": "CK", "geonameid": 1547376, "neighbours": [], "tld": ".cc"}, - {"Area": 2345410.0, "Capital": "Kinshasa", "Continent": "AF", "Country": "Democratic Republic of the Congo", "CurrencyCode": "CDF", "CurrencyName": "Franc", "EquivalentFipsCode": "", "ISO": "CD", "ISO-Numeric": "180", "ISO3": "COD", "Languages": ["fr-CD", "ln", "kg"], "Phone": "243", "Population": 70916439, "Postal Code Format": "", "Postal Code Regex": "", "fips": "CG", "geonameid": 203312, "neighbours": ["TZ", "CF", "SD", "RW", "ZM", "BI", "UG", "CG", "AO"], "tld": ".cd"}, - {"Area": 622984.0, "Capital": "Bangui", "Continent": "AF", "Country": "Central African Republic", "CurrencyCode": "XAF", "CurrencyName": "Franc", "EquivalentFipsCode": "", "ISO": "CF", "ISO-Numeric": "140", "ISO3": "CAF", "Languages": ["fr-CF", "sg", "ln", "kg"], "Phone": "236", "Population": 4844927, "Postal Code Format": "", "Postal Code Regex": "", "fips": "CT", "geonameid": 239880, "neighbours": ["TD", "SD", "CD", "CM", "CG"], "tld": ".cf"}, + {"Area": 2345410.0, "Capital": "Kinshasa", "Continent": "AF", "Country": "Democratic Republic of the Congo", "CurrencyCode": "CDF", "CurrencyName": "Franc", "EquivalentFipsCode": "", "ISO": "CD", "ISO-Numeric": "180", "ISO3": "COD", "Languages": ["fr-CD", "ln", "kg"], "Phone": "243", "Population": 70916439, "Postal Code Format": "", "Postal Code Regex": "", "fips": "CG", "geonameid": 203312, "neighbours": ["TZ", "CF", "SS", "RW", "ZM", "BI", "UG", "CG", "AO"], "tld": ".cd"}, + {"Area": 622984.0, "Capital": "Bangui", "Continent": "AF", "Country": "Central African Republic", "CurrencyCode": "XAF", "CurrencyName": "Franc", "EquivalentFipsCode": "", "ISO": "CF", "ISO-Numeric": "140", "ISO3": "CAF", "Languages": ["fr-CF", "sg", "ln", "kg"], "Phone": "236", "Population": 4844927, "Postal Code Format": "", "Postal Code Regex": "", "fips": "CT", "geonameid": 239880, "neighbours": ["TD", "SD", "CD", "SS", "CM", "CG"], "tld": ".cf"}, {"Area": 342000.0, "Capital": "Brazzaville", "Continent": "AF", "Country": "Republic of the Congo", "CurrencyCode": "XAF", "CurrencyName": "Franc", "EquivalentFipsCode": "", "ISO": "CG", "ISO-Numeric": "178", "ISO3": "COG", "Languages": ["fr-CG", "kg", "ln-CG"], "Phone": "242", "Population": 3039126, "Postal Code Format": "", "Postal Code Regex": "", "fips": "CF", "geonameid": 2260494, "neighbours": ["CF", "GA", "CD", "CM", "AO"], "tld": ".cg"}, {"Area": 41290.0, "Capital": "Berne", "Continent": "EU", "Country": "Switzerland", "CurrencyCode": "CHF", "CurrencyName": "Franc", "EquivalentFipsCode": "", "ISO": "CH", "ISO-Numeric": "756", "ISO3": "CHE", "Languages": ["de-CH", "fr-CH", "it-CH", "rm"], "Phone": "41", "Population": 7581000, "Postal Code Format": "####", "Postal Code Regex": "^(\\d{4})$", "fips": "SZ", "geonameid": 2658434, "neighbours": ["DE", "IT", "LI", "FR", "AT"], "tld": ".ch"}, {"Area": 322460.0, "Capital": "Yamoussoukro", "Continent": "AF", "Country": "Ivory Coast", "CurrencyCode": "XOF", "CurrencyName": "Franc", "EquivalentFipsCode": "", "ISO": "CI", "ISO-Numeric": "384", "ISO3": "CIV", "Languages": ["fr-CI"], "Phone": "225", "Population": 21058798, "Postal Code Format": "", "Postal Code Regex": "", "fips": "IV", "geonameid": 2287781, "neighbours": ["LR", "GH", "GN", "BF", "ML"], "tld": ".ci"}, @@ -69,7 +69,7 @@ {"Area": 266000.0, "Capital": "El-Aaiun", "Continent": "AF", "Country": "Western Sahara", "CurrencyCode": "MAD", "CurrencyName": "Dirham", "EquivalentFipsCode": "", "ISO": "EH", "ISO-Numeric": "732", "ISO3": "ESH", "Languages": ["ar", "mey"], "Phone": "212", "Population": 273008, "Postal Code Format": "", "Postal Code Regex": "", "fips": "WI", "geonameid": 2461445, "neighbours": ["DZ", "MR", "MA"], "tld": ".eh"}, {"Area": 121320.0, "Capital": "Asmara", "Continent": "AF", "Country": "Eritrea", "CurrencyCode": "ERN", "CurrencyName": "Nakfa", "EquivalentFipsCode": "", "ISO": "ER", "ISO-Numeric": "232", "ISO3": "ERI", "Languages": ["aa-ER", "ar", "tig", "kun", "ti-ER"], "Phone": "291", "Population": 5792984, "Postal Code Format": "", "Postal Code Regex": "", "fips": "ER", "geonameid": 338010, "neighbours": ["ET", "SD", "DJ"], "tld": ".er"}, {"Area": 504782.0, "Capital": "Madrid", "Continent": "EU", "Country": "Spain", "CurrencyCode": "EUR", "CurrencyName": "Euro", "EquivalentFipsCode": "", "ISO": "ES", "ISO-Numeric": "724", "ISO3": "ESP", "Languages": ["es-ES", "ca", "gl", "eu", "oc"], "Phone": "34", "Population": 46505963, "Postal Code Format": "#####", "Postal Code Regex": "^(\\d{5})$", "fips": "SP", "geonameid": 2510769, "neighbours": ["AD", "PT", "GI", "FR", "MA"], "tld": ".es"}, - {"Area": 1127127.0, "Capital": "Addis Ababa", "Continent": "AF", "Country": "Ethiopia", "CurrencyCode": "ETB", "CurrencyName": "Birr", "EquivalentFipsCode": "", "ISO": "ET", "ISO-Numeric": "231", "ISO3": "ETH", "Languages": ["am", "en-ET", "om-ET", "ti-ET", "so-ET", "sid"], "Phone": "251", "Population": 88013491, "Postal Code Format": "####", "Postal Code Regex": "^(\\d{4})$", "fips": "ET", "geonameid": 337996, "neighbours": ["ER", "KE", "SD", "SO", "DJ"], "tld": ".et"}, + {"Area": 1127127.0, "Capital": "Addis Ababa", "Continent": "AF", "Country": "Ethiopia", "CurrencyCode": "ETB", "CurrencyName": "Birr", "EquivalentFipsCode": "", "ISO": "ET", "ISO-Numeric": "231", "ISO3": "ETH", "Languages": ["am", "en-ET", "om-ET", "ti-ET", "so-ET", "sid"], "Phone": "251", "Population": 88013491, "Postal Code Format": "####", "Postal Code Regex": "^(\\d{4})$", "fips": "ET", "geonameid": 337996, "neighbours": ["ER", "KE", "SD", "SS", "SO", "DJ"], "tld": ".et"}, {"Area": 337030.0, "Capital": "Helsinki", "Continent": "EU", "Country": "Finland", "CurrencyCode": "EUR", "CurrencyName": "Euro", "EquivalentFipsCode": "", "ISO": "FI", "ISO-Numeric": "246", "ISO3": "FIN", "Languages": ["fi-FI", "sv-FI", "smn"], "Phone": "358", "Population": 5244000, "Postal Code Format": "#####", "Postal Code Regex": "^(?:FI)*(\\d{5})$", "fips": "FI", "geonameid": 660013, "neighbours": ["NO", "RU", "SE"], "tld": ".fi"}, {"Area": 18270.0, "Capital": "Suva", "Continent": "OC", "Country": "Fiji", "CurrencyCode": "FJD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "FJ", "ISO-Numeric": "242", "ISO3": "FJI", "Languages": ["en-FJ", "fj"], "Phone": "679", "Population": 875983, "Postal Code Format": "", "Postal Code Regex": "", "fips": "FJ", "geonameid": 2205218, "neighbours": [], "tld": ".fj"}, {"Area": 12173.0, "Capital": "Stanley", "Continent": "SA", "Country": "Falkland Islands", "CurrencyCode": "FKP", "CurrencyName": "Pound", "EquivalentFipsCode": "", "ISO": "FK", "ISO-Numeric": "238", "ISO3": "FLK", "Languages": ["en-FK"], "Phone": "500", "Population": 2638, "Postal Code Format": "", "Postal Code Regex": "", "fips": "FK", "geonameid": 3474414, "neighbours": [], "tld": ".fk"}, @@ -115,7 +115,7 @@ {"Area": 10991.0, "Capital": "Kingston", "Continent": "NA", "Country": "Jamaica", "CurrencyCode": "JMD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "JM", "ISO-Numeric": "388", "ISO3": "JAM", "Languages": ["en-JM"], "Phone": "+1-876", "Population": 2847232, "Postal Code Format": "", "Postal Code Regex": "", "fips": "JM", "geonameid": 3489940, "neighbours": [], "tld": ".jm"}, {"Area": 92300.0, "Capital": "Amman", "Continent": "AS", "Country": "Jordan", "CurrencyCode": "JOD", "CurrencyName": "Dinar", "EquivalentFipsCode": "", "ISO": "JO", "ISO-Numeric": "400", "ISO3": "JOR", "Languages": ["ar-JO", "en"], "Phone": "962", "Population": 6407085, "Postal Code Format": "#####", "Postal Code Regex": "^(\\d{5})$", "fips": "JO", "geonameid": 248816, "neighbours": ["SY", "SA", "IQ", "IL", "PS"], "tld": ".jo"}, {"Area": 377835.0, "Capital": "Tokyo", "Continent": "AS", "Country": "Japan", "CurrencyCode": "JPY", "CurrencyName": "Yen", "EquivalentFipsCode": "", "ISO": "JP", "ISO-Numeric": "392", "ISO3": "JPN", "Languages": ["ja"], "Phone": "81", "Population": 127288000, "Postal Code Format": "###-####", "Postal Code Regex": "^(\\d{7})$", "fips": "JA", "geonameid": 1861060, "neighbours": [], "tld": ".jp"}, - {"Area": 582650.0, "Capital": "Nairobi", "Continent": "AF", "Country": "Kenya", "CurrencyCode": "KES", "CurrencyName": "Shilling", "EquivalentFipsCode": "", "ISO": "KE", "ISO-Numeric": "404", "ISO3": "KEN", "Languages": ["en-KE", "sw-KE"], "Phone": "254", "Population": 40046566, "Postal Code Format": "#####", "Postal Code Regex": "^(\\d{5})$", "fips": "KE", "geonameid": 192950, "neighbours": ["ET", "TZ", "SD", "SO", "UG"], "tld": ".ke"}, + {"Area": 582650.0, "Capital": "Nairobi", "Continent": "AF", "Country": "Kenya", "CurrencyCode": "KES", "CurrencyName": "Shilling", "EquivalentFipsCode": "", "ISO": "KE", "ISO-Numeric": "404", "ISO3": "KEN", "Languages": ["en-KE", "sw-KE"], "Phone": "254", "Population": 40046566, "Postal Code Format": "#####", "Postal Code Regex": "^(\\d{5})$", "fips": "KE", "geonameid": 192950, "neighbours": ["ET", "TZ", "SS", "SO", "UG"], "tld": ".ke"}, {"Area": 198500.0, "Capital": "Bishkek", "Continent": "AS", "Country": "Kyrgyzstan", "CurrencyCode": "KGS", "CurrencyName": "Som", "EquivalentFipsCode": "", "ISO": "KG", "ISO-Numeric": "417", "ISO3": "KGZ", "Languages": ["ky", "uz", "ru"], "Phone": "996", "Population": 5508626, "Postal Code Format": "######", "Postal Code Regex": "^(\\d{6})$", "fips": "KG", "geonameid": 1527747, "neighbours": ["CN", "TJ", "UZ", "KZ"], "tld": ".kg"}, {"Area": 181040.0, "Capital": "Phnom Penh", "Continent": "AS", "Country": "Cambodia", "CurrencyCode": "KHR", "CurrencyName": "Riels", "EquivalentFipsCode": "", "ISO": "KH", "ISO-Numeric": "116", "ISO3": "KHM", "Languages": ["km", "fr", "en"], "Phone": "855", "Population": 14453680, "Postal Code Format": "#####", "Postal Code Regex": "^(\\d{5})$", "fips": "CB", "geonameid": 1831722, "neighbours": ["LA", "TH", "VN"], "tld": ".kh"}, {"Area": 811.0, "Capital": "Tarawa", "Continent": "OC", "Country": "Kiribati", "CurrencyCode": "AUD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "KI", "ISO-Numeric": "296", "ISO3": "KIR", "Languages": ["en-KI", "gil"], "Phone": "686", "Population": 92533, "Postal Code Format": "", "Postal Code Regex": "", "fips": "KR", "geonameid": 4030945, "neighbours": [], "tld": ".ki"}, @@ -143,7 +143,7 @@ {"Area": 14026.0, "Capital": "Podgorica", "Continent": "EU", "Country": "Montenegro", "CurrencyCode": "EUR", "CurrencyName": "Euro", "EquivalentFipsCode": "", "ISO": "ME", "ISO-Numeric": "499", "ISO3": "MNE", "Languages": ["sr", "hu", "bs", "sq", "hr", "rom"], "Phone": "382", "Population": 666730, "Postal Code Format": "#####", "Postal Code Regex": "^(\\d{5})$", "fips": "MJ", "geonameid": 3194884, "neighbours": ["AL", "HR", "BA", "RS", "XK"], "tld": ".me"}, {"Area": 53.0, "Capital": "Marigot", "Continent": "NA", "Country": "Saint Martin", "CurrencyCode": "EUR", "CurrencyName": "Euro", "EquivalentFipsCode": "", "ISO": "MF", "ISO-Numeric": "663", "ISO3": "MAF", "Languages": ["fr"], "Phone": "590", "Population": 35925, "Postal Code Format": "### ###", "Postal Code Regex": "", "fips": "RN", "geonameid": 3578421, "neighbours": ["SX"], "tld": ".gp"}, {"Area": 587040.0, "Capital": "Antananarivo", "Continent": "AF", "Country": "Madagascar", "CurrencyCode": "MGA", "CurrencyName": "Ariary", "EquivalentFipsCode": "", "ISO": "MG", "ISO-Numeric": "450", "ISO3": "MDG", "Languages": ["fr-MG", "mg"], "Phone": "261", "Population": 21281844, "Postal Code Format": "###", "Postal Code Regex": "^(\\d{3})$", "fips": "MA", "geonameid": 1062947, "neighbours": [], "tld": ".mg"}, - {"Area": 181.30000000000001, "Capital": "Majuro", "Continent": "OC", "Country": "Marshall Islands", "CurrencyCode": "USD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "MH", "ISO-Numeric": "584", "ISO3": "MHL", "Languages": ["mh", "en-MH"], "Phone": "692", "Population": 65859, "Postal Code Format": "", "Postal Code Regex": "", "fips": "RM", "geonameid": 2080185, "neighbours": [], "tld": ".mh"}, + {"Area": 181.3, "Capital": "Majuro", "Continent": "OC", "Country": "Marshall Islands", "CurrencyCode": "USD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "MH", "ISO-Numeric": "584", "ISO3": "MHL", "Languages": ["mh", "en-MH"], "Phone": "692", "Population": 65859, "Postal Code Format": "", "Postal Code Regex": "", "fips": "RM", "geonameid": 2080185, "neighbours": [], "tld": ".mh"}, {"Area": 25333.0, "Capital": "Skopje", "Continent": "EU", "Country": "Macedonia", "CurrencyCode": "MKD", "CurrencyName": "Denar", "EquivalentFipsCode": "", "ISO": "MK", "ISO-Numeric": "807", "ISO3": "MKD", "Languages": ["mk", "sq", "tr", "rmm", "sr"], "Phone": "389", "Population": 2061000, "Postal Code Format": "####", "Postal Code Regex": "^(\\d{4})$", "fips": "MK", "geonameid": 718075, "neighbours": ["AL", "GR", "CS", "BG", "RS", "XK"], "tld": ".mk"}, {"Area": 1240000.0, "Capital": "Bamako", "Continent": "AF", "Country": "Mali", "CurrencyCode": "XOF", "CurrencyName": "Franc", "EquivalentFipsCode": "", "ISO": "ML", "ISO-Numeric": "466", "ISO3": "MLI", "Languages": ["fr-ML", "bm"], "Phone": "223", "Population": 13796354, "Postal Code Format": "", "Postal Code Regex": "", "fips": "ML", "geonameid": 2453866, "neighbours": ["SN", "NE", "DZ", "CI", "GN", "MR", "BF"], "tld": ".ml"}, {"Area": 678500.0, "Capital": "Nay Pyi Taw", "Continent": "AS", "Country": "Myanmar", "CurrencyCode": "MMK", "CurrencyName": "Kyat", "EquivalentFipsCode": "", "ISO": "MM", "ISO-Numeric": "104", "ISO3": "MMR", "Languages": ["my"], "Phone": "95", "Population": 53414374, "Postal Code Format": "#####", "Postal Code Regex": "^(\\d{5})$", "fips": "BM", "geonameid": 1327865, "neighbours": ["CN", "LA", "TH", "BD", "IN"], "tld": ".mm"}, @@ -163,7 +163,7 @@ {"Area": 825418.0, "Capital": "Windhoek", "Continent": "AF", "Country": "Namibia", "CurrencyCode": "NAD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "NA", "ISO-Numeric": "516", "ISO3": "NAM", "Languages": ["en-NA", "af", "de", "hz", "naq"], "Phone": "264", "Population": 2128471, "Postal Code Format": "", "Postal Code Regex": "", "fips": "WA", "geonameid": 3355338, "neighbours": ["ZA", "BW", "ZM", "AO"], "tld": ".na"}, {"Area": 19060.0, "Capital": "Noum\u00e9a", "Continent": "OC", "Country": "New Caledonia", "CurrencyCode": "XPF", "CurrencyName": "Franc", "EquivalentFipsCode": "", "ISO": "NC", "ISO-Numeric": "540", "ISO3": "NCL", "Languages": ["fr-NC"], "Phone": "687", "Population": 216494, "Postal Code Format": "#####", "Postal Code Regex": "^(\\d{5})$", "fips": "NC", "geonameid": 2139685, "neighbours": [], "tld": ".nc"}, {"Area": 1267000.0, "Capital": "Niamey", "Continent": "AF", "Country": "Niger", "CurrencyCode": "XOF", "CurrencyName": "Franc", "EquivalentFipsCode": "", "ISO": "NE", "ISO-Numeric": "562", "ISO3": "NER", "Languages": ["fr-NE", "ha", "kr", "dje"], "Phone": "227", "Population": 15878271, "Postal Code Format": "####", "Postal Code Regex": "^(\\d{4})$", "fips": "NG", "geonameid": 2440476, "neighbours": ["TD", "BJ", "DZ", "LY", "BF", "NG", "ML"], "tld": ".ne"}, - {"Area": 34.600000000000001, "Capital": "Kingston", "Continent": "OC", "Country": "Norfolk Island", "CurrencyCode": "AUD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "NF", "ISO-Numeric": "574", "ISO3": "NFK", "Languages": ["en-NF"], "Phone": "672", "Population": 1828, "Postal Code Format": "", "Postal Code Regex": "", "fips": "NF", "geonameid": 2155115, "neighbours": [], "tld": ".nf"}, + {"Area": 34.6, "Capital": "Kingston", "Continent": "OC", "Country": "Norfolk Island", "CurrencyCode": "AUD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "NF", "ISO-Numeric": "574", "ISO3": "NFK", "Languages": ["en-NF"], "Phone": "672", "Population": 1828, "Postal Code Format": "", "Postal Code Regex": "", "fips": "NF", "geonameid": 2155115, "neighbours": [], "tld": ".nf"}, {"Area": 923768.0, "Capital": "Abuja", "Continent": "AF", "Country": "Nigeria", "CurrencyCode": "NGN", "CurrencyName": "Naira", "EquivalentFipsCode": "", "ISO": "NG", "ISO-Numeric": "566", "ISO3": "NGA", "Languages": ["en-NG", "ha", "yo", "ig", "ff"], "Phone": "234", "Population": 154000000, "Postal Code Format": "######", "Postal Code Regex": "^(\\d{6})$", "fips": "NI", "geonameid": 2328926, "neighbours": ["TD", "NE", "BJ", "CM"], "tld": ".ng"}, {"Area": 129494.0, "Capital": "Managua", "Continent": "NA", "Country": "Nicaragua", "CurrencyCode": "NIO", "CurrencyName": "Cordoba", "EquivalentFipsCode": "", "ISO": "NI", "ISO-Numeric": "558", "ISO3": "NIC", "Languages": ["es-NI", "en"], "Phone": "505", "Population": 5995928, "Postal Code Format": "###-###-#", "Postal Code Regex": "^(\\d{7})$", "fips": "NU", "geonameid": 3617476, "neighbours": ["CR", "HN"], "tld": ".ni"}, {"Area": 41526.0, "Capital": "Amsterdam", "Continent": "EU", "Country": "Netherlands", "CurrencyCode": "EUR", "CurrencyName": "Euro", "EquivalentFipsCode": "", "ISO": "NL", "ISO-Numeric": "528", "ISO3": "NLD", "Languages": ["nl-NL", "fy-NL"], "Phone": "31", "Population": 16645000, "Postal Code Format": "#### @@", "Postal Code Regex": "^(\\d{4}[A-Z]{2})$", "fips": "NL", "geonameid": 2750405, "neighbours": ["DE", "BE"], "tld": ".nl"}, @@ -196,18 +196,19 @@ {"Area": 1960582.0, "Capital": "Riyadh", "Continent": "AS", "Country": "Saudi Arabia", "CurrencyCode": "SAR", "CurrencyName": "Rial", "EquivalentFipsCode": "", "ISO": "SA", "ISO-Numeric": "682", "ISO3": "SAU", "Languages": ["ar-SA"], "Phone": "966", "Population": 25731776, "Postal Code Format": "#####", "Postal Code Regex": "^(\\d{5})$", "fips": "SA", "geonameid": 102358, "neighbours": ["QA", "OM", "IQ", "YE", "JO", "AE", "KW"], "tld": ".sa"}, {"Area": 28450.0, "Capital": "Honiara", "Continent": "OC", "Country": "Solomon Islands", "CurrencyCode": "SBD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "SB", "ISO-Numeric": "090", "ISO3": "SLB", "Languages": ["en-SB", "tpi"], "Phone": "677", "Population": 559198, "Postal Code Format": "", "Postal Code Regex": "", "fips": "BP", "geonameid": 2103350, "neighbours": [], "tld": ".sb"}, {"Area": 455.0, "Capital": "Victoria", "Continent": "AF", "Country": "Seychelles", "CurrencyCode": "SCR", "CurrencyName": "Rupee", "EquivalentFipsCode": "", "ISO": "SC", "ISO-Numeric": "690", "ISO3": "SYC", "Languages": ["en-SC", "fr-SC"], "Phone": "248", "Population": 88340, "Postal Code Format": "", "Postal Code Regex": "", "fips": "SE", "geonameid": 241170, "neighbours": [], "tld": ".sc"}, - {"Area": 2505810.0, "Capital": "Khartoum", "Continent": "AF", "Country": "Sudan", "CurrencyCode": "SDG", "CurrencyName": "Dinar", "EquivalentFipsCode": "", "ISO": "SD", "ISO-Numeric": "736", "ISO3": "SDN", "Languages": ["ar-SD", "en", "fia"], "Phone": "249", "Population": 43939598, "Postal Code Format": "#####", "Postal Code Regex": "^(\\d{5})$", "fips": "SU", "geonameid": 366755, "neighbours": ["TD", "ER", "ET", "LY", "KE", "CF", "CD", "UG", "EG"], "tld": ".sd"}, + {"Area": 1861484.0, "Capital": "Khartoum", "Continent": "AF", "Country": "Sudan", "CurrencyCode": "SDG", "CurrencyName": "Pound", "EquivalentFipsCode": "", "ISO": "SD", "ISO-Numeric": "729", "ISO3": "SDN", "Languages": ["ar-SD", "en", "fia"], "Phone": "249", "Population": 35000000, "Postal Code Format": "#####", "Postal Code Regex": "^(\\d{5})$", "fips": "SU", "geonameid": 366755, "neighbours": ["SS", "TD", "EG", "ET", "ER", "LY", "CF"], "tld": ".sd"}, {"Area": 449964.0, "Capital": "Stockholm", "Continent": "EU", "Country": "Sweden", "CurrencyCode": "SEK", "CurrencyName": "Krona", "EquivalentFipsCode": "", "ISO": "SE", "ISO-Numeric": "752", "ISO3": "SWE", "Languages": ["sv-SE", "se", "sma", "fi-SE"], "Phone": "46", "Population": 9045000, "Postal Code Format": "SE-### ##", "Postal Code Regex": "^(?:SE)*(\\d{5})$", "fips": "SW", "geonameid": 2661886, "neighbours": ["NO", "FI"], "tld": ".se"}, - {"Area": 692.70000000000005, "Capital": "Singapur", "Continent": "AS", "Country": "Singapore", "CurrencyCode": "SGD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "SG", "ISO-Numeric": "702", "ISO3": "SGP", "Languages": ["cmn", "en-SG", "ms-SG", "ta-SG", "zh-SG"], "Phone": "65", "Population": 4701069, "Postal Code Format": "######", "Postal Code Regex": "^(\\d{6})$", "fips": "SN", "geonameid": 1880251, "neighbours": [], "tld": ".sg"}, + {"Area": 692.7, "Capital": "Singapur", "Continent": "AS", "Country": "Singapore", "CurrencyCode": "SGD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "SG", "ISO-Numeric": "702", "ISO3": "SGP", "Languages": ["cmn", "en-SG", "ms-SG", "ta-SG", "zh-SG"], "Phone": "65", "Population": 4701069, "Postal Code Format": "######", "Postal Code Regex": "^(\\d{6})$", "fips": "SN", "geonameid": 1880251, "neighbours": [], "tld": ".sg"}, {"Area": 410.0, "Capital": "Jamestown", "Continent": "AF", "Country": "Saint Helena", "CurrencyCode": "SHP", "CurrencyName": "Pound", "EquivalentFipsCode": "", "ISO": "SH", "ISO-Numeric": "654", "ISO3": "SHN", "Languages": ["en-SH"], "Phone": "290", "Population": 7460, "Postal Code Format": "STHL 1ZZ", "Postal Code Regex": "^(STHL1ZZ)$", "fips": "SH", "geonameid": 3370751, "neighbours": [], "tld": ".sh"}, {"Area": 20273.0, "Capital": "Ljubljana", "Continent": "EU", "Country": "Slovenia", "CurrencyCode": "EUR", "CurrencyName": "Euro", "EquivalentFipsCode": "", "ISO": "SI", "ISO-Numeric": "705", "ISO3": "SVN", "Languages": ["sl", "sh"], "Phone": "386", "Population": 2007000, "Postal Code Format": "SI- ####", "Postal Code Regex": "^(?:SI)*(\\d{4})$", "fips": "SI", "geonameid": 3190538, "neighbours": ["HU", "IT", "HR", "AT"], "tld": ".si"}, {"Area": 62049.0, "Capital": "Longyearbyen", "Continent": "EU", "Country": "Svalbard and Jan Mayen", "CurrencyCode": "NOK", "CurrencyName": "Krone", "EquivalentFipsCode": "", "ISO": "SJ", "ISO-Numeric": "744", "ISO3": "SJM", "Languages": ["no", "ru"], "Phone": "47", "Population": 2550, "Postal Code Format": "", "Postal Code Regex": "", "fips": "SV", "geonameid": 607072, "neighbours": [], "tld": ".sj"}, {"Area": 48845.0, "Capital": "Bratislava", "Continent": "EU", "Country": "Slovakia", "CurrencyCode": "EUR", "CurrencyName": "Euro", "EquivalentFipsCode": "", "ISO": "SK", "ISO-Numeric": "703", "ISO3": "SVK", "Languages": ["sk", "hu"], "Phone": "421", "Population": 5455000, "Postal Code Format": "### ##", "Postal Code Regex": "^(\\d{5})$", "fips": "LO", "geonameid": 3057568, "neighbours": ["PL", "HU", "CZ", "UA", "AT"], "tld": ".sk"}, {"Area": 71740.0, "Capital": "Freetown", "Continent": "AF", "Country": "Sierra Leone", "CurrencyCode": "SLL", "CurrencyName": "Leone", "EquivalentFipsCode": "", "ISO": "SL", "ISO-Numeric": "694", "ISO3": "SLE", "Languages": ["en-SL", "men", "tem"], "Phone": "232", "Population": 5245695, "Postal Code Format": "", "Postal Code Regex": "", "fips": "SL", "geonameid": 2403846, "neighbours": ["LR", "GN"], "tld": ".sl"}, - {"Area": 61.200000000000003, "Capital": "San Marino", "Continent": "EU", "Country": "San Marino", "CurrencyCode": "EUR", "CurrencyName": "Euro", "EquivalentFipsCode": "", "ISO": "SM", "ISO-Numeric": "674", "ISO3": "SMR", "Languages": ["it-SM"], "Phone": "378", "Population": 31477, "Postal Code Format": "4789#", "Postal Code Regex": "^(4789\\d)$", "fips": "SM", "geonameid": 3168068, "neighbours": ["IT"], "tld": ".sm"}, + {"Area": 61.2, "Capital": "San Marino", "Continent": "EU", "Country": "San Marino", "CurrencyCode": "EUR", "CurrencyName": "Euro", "EquivalentFipsCode": "", "ISO": "SM", "ISO-Numeric": "674", "ISO3": "SMR", "Languages": ["it-SM"], "Phone": "378", "Population": 31477, "Postal Code Format": "4789#", "Postal Code Regex": "^(4789\\d)$", "fips": "SM", "geonameid": 3168068, "neighbours": ["IT"], "tld": ".sm"}, {"Area": 196190.0, "Capital": "Dakar", "Continent": "AF", "Country": "Senegal", "CurrencyCode": "XOF", "CurrencyName": "Franc", "EquivalentFipsCode": "", "ISO": "SN", "ISO-Numeric": "686", "ISO3": "SEN", "Languages": ["fr-SN", "wo", "fuc", "mnk"], "Phone": "221", "Population": 12323252, "Postal Code Format": "#####", "Postal Code Regex": "^(\\d{5})$", "fips": "SG", "geonameid": 2245662, "neighbours": ["GN", "MR", "GW", "GM", "ML"], "tld": ".sn"}, {"Area": 637657.0, "Capital": "Mogadishu", "Continent": "AF", "Country": "Somalia", "CurrencyCode": "SOS", "CurrencyName": "Shilling", "EquivalentFipsCode": "", "ISO": "SO", "ISO-Numeric": "706", "ISO3": "SOM", "Languages": ["so-SO", "ar-SO", "it", "en-SO"], "Phone": "252", "Population": 10112453, "Postal Code Format": "@@ #####", "Postal Code Regex": "^([A-Z]{2}\\d{5})$", "fips": "SO", "geonameid": 51537, "neighbours": ["ET", "KE", "DJ"], "tld": ".so"}, {"Area": 163270.0, "Capital": "Paramaribo", "Continent": "SA", "Country": "Suriname", "CurrencyCode": "SRD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "SR", "ISO-Numeric": "740", "ISO3": "SUR", "Languages": ["nl-SR", "en", "srn", "hns", "jv"], "Phone": "597", "Population": 492829, "Postal Code Format": "", "Postal Code Regex": "", "fips": "NS", "geonameid": 3382998, "neighbours": ["GY", "BR", "GF"], "tld": ".sr"}, + {"Area": 644329.0, "Capital": "Juba", "Continent": "AF", "Country": "South Sudan", "CurrencyCode": "SSP", "CurrencyName": "Pound", "EquivalentFipsCode": "", "ISO": "SS", "ISO-Numeric": "728", "ISO3": "SSD", "Languages": ["en"], "Phone": "211", "Population": 8260490, "Postal Code Format": "", "Postal Code Regex": "", "fips": "OD", "geonameid": 7909807, "neighbours": ["CD", "CF", "ET", "KE", "SD", "UG", ""], "tld": ""}, {"Area": 1001.0, "Capital": "S\u00e3o Tom\u00e9", "Continent": "AF", "Country": "Sao Tome and Principe", "CurrencyCode": "STD", "CurrencyName": "Dobra", "EquivalentFipsCode": "", "ISO": "ST", "ISO-Numeric": "678", "ISO3": "STP", "Languages": ["pt-ST"], "Phone": "239", "Population": 175808, "Postal Code Format": "", "Postal Code Regex": "", "fips": "TP", "geonameid": 2410758, "neighbours": [], "tld": ".st"}, {"Area": 21040.0, "Capital": "San Salvador", "Continent": "NA", "Country": "El Salvador", "CurrencyCode": "USD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "SV", "ISO-Numeric": "222", "ISO3": "SLV", "Languages": ["es-SV"], "Phone": "503", "Population": 6052064, "Postal Code Format": "CP ####", "Postal Code Regex": "^(?:CP)*(\\d{4})$", "fips": "ES", "geonameid": 3585968, "neighbours": ["GT", "HN"], "tld": ".sv"}, {"Area": 0.0, "Capital": "Philipsburg", "Continent": "NA", "Country": "Sint Maarten", "CurrencyCode": "ANG", "CurrencyName": "Guilder", "EquivalentFipsCode": "", "ISO": "SX", "ISO-Numeric": "534", "ISO3": "SXM", "Languages": ["nl", "en"], "Phone": "599", "Population": 37429, "Postal Code Format": "", "Postal Code Regex": "", "fips": "NN", "geonameid": 7609695, "neighbours": ["MF"], "tld": ".sx"}, @@ -230,7 +231,7 @@ {"Area": 35980.0, "Capital": "Taipei", "Continent": "AS", "Country": "Taiwan", "CurrencyCode": "TWD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "TW", "ISO-Numeric": "158", "ISO3": "TWN", "Languages": ["zh-TW", "zh", "nan", "hak"], "Phone": "886", "Population": 22894384, "Postal Code Format": "#####", "Postal Code Regex": "^(\\d{5})$", "fips": "TW", "geonameid": 1668284, "neighbours": [], "tld": ".tw"}, {"Area": 945087.0, "Capital": "Dodoma", "Continent": "AF", "Country": "Tanzania", "CurrencyCode": "TZS", "CurrencyName": "Shilling", "EquivalentFipsCode": "", "ISO": "TZ", "ISO-Numeric": "834", "ISO3": "TZA", "Languages": ["sw-TZ", "en", "ar"], "Phone": "255", "Population": 41892895, "Postal Code Format": "", "Postal Code Regex": "", "fips": "TZ", "geonameid": 149590, "neighbours": ["MZ", "KE", "CD", "RW", "ZM", "BI", "UG", "MW"], "tld": ".tz"}, {"Area": 603700.0, "Capital": "Kiev", "Continent": "EU", "Country": "Ukraine", "CurrencyCode": "UAH", "CurrencyName": "Hryvnia", "EquivalentFipsCode": "", "ISO": "UA", "ISO-Numeric": "804", "ISO3": "UKR", "Languages": ["uk", "ru-UA", "rom", "pl", "hu"], "Phone": "380", "Population": 45415596, "Postal Code Format": "#####", "Postal Code Regex": "^(\\d{5})$", "fips": "UP", "geonameid": 690791, "neighbours": ["PL", "MD", "HU", "SK", "BY", "RO", "RU"], "tld": ".ua"}, - {"Area": 236040.0, "Capital": "Kampala", "Continent": "AF", "Country": "Uganda", "CurrencyCode": "UGX", "CurrencyName": "Shilling", "EquivalentFipsCode": "", "ISO": "UG", "ISO-Numeric": "800", "ISO3": "UGA", "Languages": ["en-UG", "lg", "sw", "ar"], "Phone": "256", "Population": 33398682, "Postal Code Format": "", "Postal Code Regex": "", "fips": "UG", "geonameid": 226074, "neighbours": ["TZ", "KE", "SD", "CD", "RW"], "tld": ".ug"}, + {"Area": 236040.0, "Capital": "Kampala", "Continent": "AF", "Country": "Uganda", "CurrencyCode": "UGX", "CurrencyName": "Shilling", "EquivalentFipsCode": "", "ISO": "UG", "ISO-Numeric": "800", "ISO3": "UGA", "Languages": ["en-UG", "lg", "sw", "ar"], "Phone": "256", "Population": 33398682, "Postal Code Format": "", "Postal Code Regex": "", "fips": "UG", "geonameid": 226074, "neighbours": ["TZ", "KE", "SS", "CD", "RW"], "tld": ".ug"}, {"Area": 0.0, "Capital": "", "Continent": "OC", "Country": "United States Minor Outlying Islands", "CurrencyCode": "USD", "CurrencyName": "Dollar ", "EquivalentFipsCode": "", "ISO": "UM", "ISO-Numeric": "581", "ISO3": "UMI", "Languages": ["en-UM"], "Phone": "1", "Population": 0, "Postal Code Format": "", "Postal Code Regex": "", "fips": "", "geonameid": 5854968, "neighbours": [], "tld": ".um"}, {"Area": 9629091.0, "Capital": "Washington", "Continent": "NA", "Country": "United States", "CurrencyCode": "USD", "CurrencyName": "Dollar", "EquivalentFipsCode": "", "ISO": "US", "ISO-Numeric": "840", "ISO3": "USA", "Languages": ["en-US", "es-US", "haw", "fr"], "Phone": "1", "Population": 310232863, "Postal Code Format": "#####-####", "Postal Code Regex": "^(\\d{9})$", "fips": "US", "geonameid": 6252001, "neighbours": ["CA", "MX", "CU"], "tld": ".us"}, {"Area": 176220.0, "Capital": "Montevideo", "Continent": "SA", "Country": "Uruguay", "CurrencyCode": "UYU", "CurrencyName": "Peso", "EquivalentFipsCode": "", "ISO": "UY", "ISO-Numeric": "858", "ISO3": "URY", "Languages": ["es-UY"], "Phone": "598", "Population": 3477000, "Postal Code Format": "#####", "Postal Code Regex": "^(\\d{5})$", "fips": "UY", "geonameid": 3439705, "neighbours": ["BR", "AR"], "tld": ".uy"}, diff --git a/tools/geo/json/wikipedia.org/countries.json b/tools/geo/json/wikipedia.org/countries.json index 4c201bad..92ab368a 100644 --- a/tools/geo/json/wikipedia.org/countries.json +++ b/tools/geo/json/wikipedia.org/countries.json @@ -93,7 +93,7 @@ {"code": "EU", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/b7/Flag_of_Europe.svg", "name": "European Union", "wikipediaURL": "http://en.wikipedia.org/wiki/European_Union"}, {"code": "FK", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/83/Flag_of_the_Falkland_Islands.svg", "name": "Falkland Islands", "wikipediaURL": "http://en.wikipedia.org/wiki/Falkland_Islands"}, {"code": "FO", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/3/3c/Flag_of_the_Faroe_Islands.svg", "name": "Faroe Islands", "wikipediaURL": "http://en.wikipedia.org/wiki/Faroe_Islands"}, - {"code": "FM", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/4c/Flag_of_Federated_States_of_Micronesia.svg", "name": "Micronesia", "wikipediaURL": "http://en.wikipedia.org/wiki/Federated_States_of_Micronesia"}, + {"code": "FM", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/e4/Flag_of_the_Federated_States_of_Micronesia.svg", "name": "Micronesia", "wikipediaURL": "http://en.wikipedia.org/wiki/Federated_States_of_Micronesia"}, {"code": "FJ", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/ba/Flag_of_Fiji.svg", "name": "Fiji", "wikipediaURL": "http://en.wikipedia.org/wiki/Fiji"}, {"code": "FI", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/bc/Flag_of_Finland.svg", "name": "Finland", "wikipediaURL": "http://en.wikipedia.org/wiki/Finland"}, {"code": "FR", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/c3/Flag_of_France.svg", "name": "France", "wikipediaURL": "http://en.wikipedia.org/wiki/France"}, @@ -112,7 +112,7 @@ {"code": "GR", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/5c/Flag_of_Greece.svg", "name": "Greece", "wikipediaURL": "http://en.wikipedia.org/wiki/Greece"}, {"code": "GL", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/09/Flag_of_Greenland.svg", "name": "Greenland", "wikipediaURL": "http://en.wikipedia.org/wiki/Greenland"}, {"code": "GD", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/bc/Flag_of_Grenada.svg", "name": "Grenada", "wikipediaURL": "http://en.wikipedia.org/wiki/Grenada"}, - {"code": "GP", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/04/Flag_of_Guadeloupe_%28local%29.svg", "name": "Guadeloupe", "wikipediaURL": "http://en.wikipedia.org/wiki/Guadeloupe"}, + {"code": "GP", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/7/7d/Flag_of_Guadeloupe_%28local%29_variant.svg", "name": "Guadeloupe", "wikipediaURL": "http://en.wikipedia.org/wiki/Guadeloupe"}, {"code": "GU", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/07/Flag_of_Guam.svg", "name": "Guam", "wikipediaURL": "http://en.wikipedia.org/wiki/Guam"}, {"code": "GT", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/ec/Flag_of_Guatemala.svg", "name": "Guatemala", "wikipediaURL": "http://en.wikipedia.org/wiki/Guatemala"}, {"code": "GG", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/fa/Flag_of_Guernsey.svg", "name": "Guernsey", "wikipediaURL": "http://en.wikipedia.org/wiki/Guernsey"}, @@ -120,7 +120,7 @@ {"code": "GW", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/01/Flag_of_Guinea-Bissau.svg", "name": "Guinea-Bissau", "wikipediaURL": "http://en.wikipedia.org/wiki/Guinea-Bissau"}, {"code": "GY", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/99/Flag_of_Guyana.svg", "name": "Guyana", "wikipediaURL": "http://en.wikipedia.org/wiki/Guyana"}, {"code": "HT", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/56/Flag_of_Haiti.svg", "name": "Haiti", "wikipediaURL": "http://en.wikipedia.org/wiki/Haiti"}, - {"code": "HM", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/b9/Flag_of_Australia.svg", "name": "Heard Island and McDonald Islands", "wikipediaURL": "http://en.wikipedia.org/wiki/Heard_Island_and_McDonald_Islands"}, + {"code": "HM", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/fa/Flag_of_Antarctica.svg", "name": "Heard Island and McDonald Islands", "wikipediaURL": "http://en.wikipedia.org/wiki/Heard_Island_and_McDonald_Islands"}, {"code": "HN", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/82/Flag_of_Honduras.svg", "name": "Honduras", "wikipediaURL": "http://en.wikipedia.org/wiki/Honduras"}, {"code": "HK", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/5b/Flag_of_Hong_Kong.svg", "name": "Hong Kong", "wikipediaURL": "http://en.wikipedia.org/wiki/Hong_Kong"}, {"code": "HU", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/c/c1/Flag_of_Hungary.svg", "name": "Hungary", "wikipediaURL": "http://en.wikipedia.org/wiki/Hungary"}, @@ -148,7 +148,7 @@ {"code": "LB", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/59/Flag_of_Lebanon.svg", "name": "Lebanon", "wikipediaURL": "http://en.wikipedia.org/wiki/Lebanon"}, {"code": "LS", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/4a/Flag_of_Lesotho.svg", "name": "Lesotho", "wikipediaURL": "http://en.wikipedia.org/wiki/Lesotho"}, {"code": "LR", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/b/b8/Flag_of_Liberia.svg", "name": "Liberia", "wikipediaURL": "http://en.wikipedia.org/wiki/Liberia"}, - {"code": "LY", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/66/Flag_of_the_Libyan_Jamahiriya_1977.svg", "name": "Libya", "wikipediaURL": "http://en.wikipedia.org/wiki/Libya"}, + {"code": "LY", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/f/f5/Flag_of_Libya_%281951%29.svg", "name": "Libya", "wikipediaURL": "http://en.wikipedia.org/wiki/Libya"}, {"code": "LI", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/47/Flag_of_Liechtenstein.svg", "name": "Liechtenstein", "wikipediaURL": "http://en.wikipedia.org/wiki/Liechtenstein"}, {"code": "LT", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/11/Flag_of_Lithuania.svg", "name": "Lithuania", "wikipediaURL": "http://en.wikipedia.org/wiki/Lithuania"}, {"code": "LU", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/da/Flag_of_Luxembourg.svg", "name": "Luxembourg", "wikipediaURL": "http://en.wikipedia.org/wiki/Luxembourg"}, @@ -190,7 +190,7 @@ {"code": "NU", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/01/Flag_of_Niue.svg", "name": "Niue", "wikipediaURL": "http://en.wikipedia.org/wiki/Niue"}, {"code": "NF", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/4/48/Flag_of_Norfolk_Island.svg", "name": "Norfolk Island", "wikipediaURL": "http://en.wikipedia.org/wiki/Norfolk_Island"}, {"code": "KP", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/5/51/Flag_of_North_Korea.svg", "name": "North Korea", "wikipediaURL": "http://en.wikipedia.org/wiki/North_Korea"}, - {"code": "VDVN", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/2/21/Flag_of_Vietnam.svg", "name": "North Vietnam", "wikipediaURL": "http://en.wikipedia.org/wiki/North_Vietnam"}, + {"code": "VDVN", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/6/6b/Flag_of_North_Vietnam_1945-1955.svg", "name": "North Vietnam", "wikipediaURL": "http://en.wikipedia.org/wiki/North_Vietnam"}, {"code": "CY-NC", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/1e/Flag_of_the_Turkish_Republic_of_Northern_Cyprus.svg", "name": "Northern Cyprus", "wikipediaURL": "http://en.wikipedia.org/wiki/Northern_Cyprus"}, {"code": "GB-NIR", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/8/88/Ulster_banner.svg", "name": "Northern Ireland", "wikipediaURL": "http://en.wikipedia.org/wiki/Northern_Ireland"}, {"code": "MP", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/e0/Flag_of_the_Northern_Mariana_Islands.svg", "name": "Northern Mariana Islands", "wikipediaURL": "http://en.wikipedia.org/wiki/Northern_Mariana_Islands"}, @@ -256,7 +256,7 @@ {"code": "GS", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/e/ed/Flag_of_South_Georgia_and_the_South_Sandwich_Islands.svg", "name": "South Georgia and the South Sandwich Islands", "wikipediaURL": "http://en.wikipedia.org/wiki/South_Georgia_and_the_South_Sandwich_Islands"}, {"code": "KR", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/0/09/Flag_of_South_Korea.svg", "name": "South Korea", "wikipediaURL": "http://en.wikipedia.org/wiki/South_Korea"}, {"code": "GE-SO", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/1/12/Flag_of_South_Ossetia.svg", "name": "South Ossetia", "wikipediaURL": "http://en.wikipedia.org/wiki/South_Ossetia"}, - {"code": "SS", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/ae/Flag_of_the_SPLAM.svg", "name": "South Sudan", "wikipediaURL": "http://en.wikipedia.org/wiki/South_Sudan"}, + {"code": "SS", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/7/7a/Flag_of_South_Sudan.svg", "name": "South Sudan", "wikipediaURL": "http://en.wikipedia.org/wiki/South_Sudan"}, {"code": "YDYE", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/d/db/Flag_of_South_Yemen.svg", "name": "South Yemen", "wikipediaURL": "http://en.wikipedia.org/wiki/South_Yemen"}, {"code": "SUHH", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/a/a9/Flag_of_the_Soviet_Union.svg", "name": "Soviet Union", "wikipediaURL": "http://en.wikipedia.org/wiki/Soviet_Union"}, {"code": "ES", "flagURL": "http://upload.wikimedia.org/wikipedia/commons/9/9a/Flag_of_Spain.svg", "name": "Spain", "wikipediaURL": "http://en.wikipedia.org/wiki/Spain"}, diff --git a/tools/geo/py/_tmp.data b/tools/geo/py/_tmp.data index 22ae73d8..db091a21 100644 --- a/tools/geo/py/_tmp.data +++ b/tools/geo/py/_tmp.data @@ -16,13 +16,13 @@ # # # CS (Serbia and Montenegro) with geonameId = 863038 no longer exists. -# AN (the Netherlands Antilles) with geonameId = 3513447 was dissolved on 10 October 2010. +# AN (the Netherlands Antilles) with geonameId = 3513447 was dissolved on 10 October 2010. # # # Currencies : # ============ # -# A number of territories are not included in ISO 4217, because their currencies are not per se an independent currency, +# A number of territories are not included in ISO 4217, because their currencies are not per se an independent currency, # but a variant of another currency. These currencies are: # # 1. FO : Faroese krona (1:1 pegged to the Danish krone) @@ -33,18 +33,18 @@ # 6. CK : Cook Islands dollar (1:1 pegged to the New Zealand dollar). # # The following non-ISO codes are, however, sometimes used: GGP for the Guernsey pound, -# JEP for the Jersey pound and IMP for the Isle of Man pound (http://en.wikipedia.org/wiki/ISO_4217) +# JEP for the Jersey pound and IMP for the Isle of Man pound (http://en.wikipedia.org/wiki/ISO_4217) # # -# A list of currency symbols is available here : http://forum.geonames.org/gforum/posts/list/437.page -# another list with fractional units is here: http://forum.geonames.org/gforum/posts/list/1961.page +# A list of currency symbols is available here : http://forum.geonames.org/gforum/posts/list/437.page +# another list with fractional units is here: http://forum.geonames.org/gforum/posts/list/1961.page # # # Languages : # =========== # -# The column 'languages' lists the languages spoken in a country ordered by the number of speakers. The language code is a 'locale' -# where any two-letter primary-tag is an ISO-639 language abbreviation and any two-letter initial subtag is an ISO-3166 country code. +# The column 'languages' lists the languages spoken in a country ordered by the number of speakers. The language code is a 'locale' +# where any two-letter primary-tag is an ISO-639 language abbreviation and any two-letter initial subtag is an ISO-3166 country code. # # Example : es-AR is the Spanish variant spoken in Argentina. # @@ -88,8 +88,8 @@ BY BLR 112 BO Belarus Minsk 207600 9685000 EU .by BYR Ruble 375 ###### ^(\d{6})$ BZ BLZ 084 BH Belize Belmopan 22966 314522 NA .bz BZD Dollar 501 en-BZ,es 3582678 GT,MX CA CAN 124 CA Canada Ottawa 9984670 33679000 NA .ca CAD Dollar 1 @#@ #@# ^([a-zA-Z]\d[a-zA-Z]\d[a-zA-Z]\d)$ en-CA,fr-CA,iu 6251999 US CC CCK 166 CK Cocos Islands West Island 14 628 AS .cc AUD Dollar 61 ms-CC,en 1547376 -CD COD 180 CG Democratic Republic of the Congo Kinshasa 2345410 70916439 AF .cd CDF Franc 243 fr-CD,ln,kg 203312 TZ,CF,SD,RW,ZM,BI,UG,CG,AO -CF CAF 140 CT Central African Republic Bangui 622984 4844927 AF .cf XAF Franc 236 fr-CF,sg,ln,kg 239880 TD,SD,CD,CM,CG +CD COD 180 CG Democratic Republic of the Congo Kinshasa 2345410 70916439 AF .cd CDF Franc 243 fr-CD,ln,kg 203312 TZ,CF,SS,RW,ZM,BI,UG,CG,AO +CF CAF 140 CT Central African Republic Bangui 622984 4844927 AF .cf XAF Franc 236 fr-CF,sg,ln,kg 239880 TD,SD,CD,SS,CM,CG CG COG 178 CF Republic of the Congo Brazzaville 342000 3039126 AF .cg XAF Franc 242 fr-CG,kg,ln-CG 2260494 CF,GA,CD,CM,AO CH CHE 756 SZ Switzerland Berne 41290 7581000 EU .ch CHF Franc 41 #### ^(\d{4})$ de-CH,fr-CH,it-CH,rm 2658434 DE,IT,LI,FR,AT CI CIV 384 IV Ivory Coast Yamoussoukro 322460 21058798 AF .ci XOF Franc 225 fr-CI 2287781 LR,GH,GN,BF,ML @@ -117,7 +117,7 @@ EG EGY 818 EG Egypt Cairo 1001450 80471869 AF .eg EGP Pound 20 ##### ^(\d{5})$ a EH ESH 732 WI Western Sahara El-Aaiun 266000 273008 AF .eh MAD Dirham 212 ar,mey 2461445 DZ,MR,MA ER ERI 232 ER Eritrea Asmara 121320 5792984 AF .er ERN Nakfa 291 aa-ER,ar,tig,kun,ti-ER 338010 ET,SD,DJ ES ESP 724 SP Spain Madrid 504782 46505963 EU .es EUR Euro 34 ##### ^(\d{5})$ es-ES,ca,gl,eu,oc 2510769 AD,PT,GI,FR,MA -ET ETH 231 ET Ethiopia Addis Ababa 1127127 88013491 AF .et ETB Birr 251 #### ^(\d{4})$ am,en-ET,om-ET,ti-ET,so-ET,sid 337996 ER,KE,SD,SO,DJ +ET ETH 231 ET Ethiopia Addis Ababa 1127127 88013491 AF .et ETB Birr 251 #### ^(\d{4})$ am,en-ET,om-ET,ti-ET,so-ET,sid 337996 ER,KE,SD,SS,SO,DJ FI FIN 246 FI Finland Helsinki 337030 5244000 EU .fi EUR Euro 358 ##### ^(?:FI)*(\d{5})$ fi-FI,sv-FI,smn 660013 NO,RU,SE FJ FJI 242 FJ Fiji Suva 18270 875983 OC .fj FJD Dollar 679 en-FJ,fj 2205218 FK FLK 238 FK Falkland Islands Stanley 12173 2638 SA .fk FKP Pound 500 en-FK 3474414 @@ -163,7 +163,7 @@ JE JEY 832 JE Jersey Saint Helier 116 90812 EU .je GBP Pound +44-1534 @# #@@|@## JM JAM 388 JM Jamaica Kingston 10991 2847232 NA .jm JMD Dollar +1-876 en-JM 3489940 JO JOR 400 JO Jordan Amman 92300 6407085 AS .jo JOD Dinar 962 ##### ^(\d{5})$ ar-JO,en 248816 SY,SA,IQ,IL,PS JP JPN 392 JA Japan Tokyo 377835 127288000 AS .jp JPY Yen 81 ###-#### ^(\d{7})$ ja 1861060 -KE KEN 404 KE Kenya Nairobi 582650 40046566 AF .ke KES Shilling 254 ##### ^(\d{5})$ en-KE,sw-KE 192950 ET,TZ,SD,SO,UG +KE KEN 404 KE Kenya Nairobi 582650 40046566 AF .ke KES Shilling 254 ##### ^(\d{5})$ en-KE,sw-KE 192950 ET,TZ,SS,SO,UG KG KGZ 417 KG Kyrgyzstan Bishkek 198500 5508626 AS .kg KGS Som 996 ###### ^(\d{6})$ ky,uz,ru 1527747 CN,TJ,UZ,KZ KH KHM 116 CB Cambodia Phnom Penh 181040 14453680 AS .kh KHR Riels 855 ##### ^(\d{5})$ km,fr,en 1831722 LA,TH,VN KI KIR 296 KR Kiribati Tarawa 811 92533 OC .ki AUD Dollar 686 en-KI,gil 4030945 @@ -245,7 +245,8 @@ RW RWA 646 RW Rwanda Kigali 26338 11055976 AF .rw RWF Franc 250 rw,en-RW,fr-RW SA SAU 682 SA Saudi Arabia Riyadh 1960582 25731776 AS .sa SAR Rial 966 ##### ^(\d{5})$ ar-SA 102358 QA,OM,IQ,YE,JO,AE,KW SB SLB 090 BP Solomon Islands Honiara 28450 559198 OC .sb SBD Dollar 677 en-SB,tpi 2103350 SC SYC 690 SE Seychelles Victoria 455 88340 AF .sc SCR Rupee 248 en-SC,fr-SC 241170 -SD SDN 736 SU Sudan Khartoum 2505810 43939598 AF .sd SDG Dinar 249 ##### ^(\d{5})$ ar-SD,en,fia 366755 TD,ER,ET,LY,KE,CF,CD,UG,EG +SD SDN 729 SU Sudan Khartoum 1861484 35000000 AF .sd SDG Pound 249 ##### ^(\d{5})$ ar-SD,en,fia 366755 SS,TD,EG,ET,ER,LY,CF +SS SSD 728 OD South Sudan Juba 644329 8260490 AF SSP Pound 211 en 7909807 CD,CF,ET,KE,SD,UG, SE SWE 752 SW Sweden Stockholm 449964 9045000 EU .se SEK Krona 46 SE-### ## ^(?:SE)*(\d{5})$ sv-SE,se,sma,fi-SE 2661886 NO,FI SG SGP 702 SN Singapore Singapur 692.7 4701069 AS .sg SGD Dollar 65 ###### ^(\d{6})$ cmn,en-SG,ms-SG,ta-SG,zh-SG 1880251 SH SHN 654 SH Saint Helena Jamestown 410 7460 AF .sh SHP Pound 290 STHL 1ZZ ^(STHL1ZZ)$ en-SH 3370751 @@ -279,7 +280,7 @@ TV TUV 798 TV Tuvalu Funafuti 26 10472 OC .tv AUD Dollar 688 tvl,en,sm,gil 211 TW TWN 158 TW Taiwan Taipei 35980 22894384 AS .tw TWD Dollar 886 ##### ^(\d{5})$ zh-TW,zh,nan,hak 1668284 TZ TZA 834 TZ Tanzania Dodoma 945087 41892895 AF .tz TZS Shilling 255 sw-TZ,en,ar 149590 MZ,KE,CD,RW,ZM,BI,UG,MW UA UKR 804 UP Ukraine Kiev 603700 45415596 EU .ua UAH Hryvnia 380 ##### ^(\d{5})$ uk,ru-UA,rom,pl,hu 690791 PL,MD,HU,SK,BY,RO,RU -UG UGA 800 UG Uganda Kampala 236040 33398682 AF .ug UGX Shilling 256 en-UG,lg,sw,ar 226074 TZ,KE,SD,CD,RW +UG UGA 800 UG Uganda Kampala 236040 33398682 AF .ug UGX Shilling 256 en-UG,lg,sw,ar 226074 TZ,KE,SS,CD,RW UM UMI 581 United States Minor Outlying Islands 0 0 OC .um USD Dollar 1 en-UM 5854968 US USA 840 US United States Washington 9629091 310232863 NA .us USD Dollar 1 #####-#### ^(\d{9})$ en-US,es-US,haw,fr 6252001 CA,MX,CU UY URY 858 UY Uruguay Montevideo 176220 3477000 SA .uy UYU Peso 598 ##### ^(\d{5})$ es-UY 3439705 BR,AR @@ -298,5 +299,5 @@ YT MYT 175 MF Mayotte Mamoudzou 374 159042 AF .yt EUR Euro 262 ##### ^(\d{5})$ f ZA ZAF 710 SF South Africa Pretoria 1219912 49000000 AF .za ZAR Rand 27 #### ^(\d{4})$ zu,xh,af,nso,en-ZA,tn,st,ts,ss,ve,nr 953987 ZW,SZ,MZ,BW,NA,LS ZM ZMB 894 ZA Zambia Lusaka 752614 13460305 AF .zm ZMK Kwacha 260 ##### ^(\d{5})$ en-ZM,bem,loz,lun,lue,ny,toi 895949 ZW,TZ,MZ,CD,NA,MW,AO ZW ZWE 716 ZI Zimbabwe Harare 390580 11651858 AF .zw ZWL Dollar 263 en-ZW,sn,nr,nd 878675 ZA,MZ,BW,ZM -CS SCG 891 YI Serbia and Montenegro Belgrade 102350 10829175 EU .cs RSD Dinar 381 ##### ^(\d{5})$ cu,hu,sq,sr 0 AL,HU,MK,RO,HR,BA,BG -AN ANT 530 NT Netherlands Antilles Willemstad 960 136197 NA .an ANG Guilder 599 nl-AN,en,es 0 GP +CS SCG 891 YI Serbia and Montenegro Belgrade 102350 10829175 EU .cs RSD Dinar 381 ##### ^(\d{5})$ cu,hu,sq,sr AL,HU,MK,RO,HR,BA,BG +AN ANT 530 NT Netherlands Antilles Willemstad 960 136197 NA .an ANG Guilder 599 nl-AN,en,es GP diff --git a/tools/geo/py/wikipedia.py b/tools/geo/py/wikipedia.py index 1206058d..07096616 100644 --- a/tools/geo/py/wikipedia.py +++ b/tools/geo/py/wikipedia.py @@ -5,6 +5,7 @@ import re from geo import geo, read_url, write_log from geo import write_json +# special is unused, geo in geo.py is used special = { 'code': { # incorrect on wikipedia @@ -125,7 +126,7 @@ special = { 'Diego Garcia': 'Flag_of_the_British_Indian_Ocean_Territory.svg', 'French Guiana': 'Flag_of_French_Guiana.svg', 'Korea': 'Flag_of_Korea_1882.svg', - 'Libya': 'Flag_of_the_Libyan_Jamahiriya_1977.svg', + # 'Libya': 'Flag_of_the_Libyan_Jamahiriya_1977.svg', 'Metropolitan France': 'Flag_of_France.svg', 'Neutral Zone': 'Flag_of_the_United_Nations.svg', 'New Hebrides': 'Flag_of_Anglo-French_Joint_Naval_Commission.svg',