diff --git a/Js/script.js b/Js/script.js new file mode 100644 index 0000000000000000000000000000000000000000..33c4a940d36d54f285acce0b65fd7c4adb04b7e7 --- /dev/null +++ b/Js/script.js @@ -0,0 +1,295 @@ +let paises = []; +let nombresDeVariables = []; +let seleccionAnno="2020"; + +document.addEventListener('DOMContentLoaded', function () { + d3.csv("./datos/paises.csv").then(function (data) { + nombresDeVariables = Object.keys(data[0]); + dibujaSelector(); + data.forEach(function (fila) { + let countryData = [fila.countryName]; + Object.keys(fila).forEach(function (key) { + if (key !== "countryName") { + // Convert the value to a number if it's a valid number, otherwise keep it as a string + const value = isNaN(fila[key]) ? fila[key] : parseFloat(fila[key]); + + countryData.push(value); + /*console.log(value);*/ + } + }); + paises.push(countryData); + + }); + dibujaMapa(seleccionAnno); + }); +}); + +function dibujaSelector(){ + nombresDeVariables.pop(); + const container = document.getElementById("yearSelectorContainer"); + const select = document.createElement("select"); + select.id = "yearSelector"; // Asignamos un id para referencia futura + nombresDeVariables.forEach(function(year) { + const option = document.createElement("option"); + option.value = year; + option.textContent = year; + select.appendChild(option); // Agregar la opción al select + }); + container.appendChild(select); + select.value=seleccionAnno; + // Escuchar cambios en el selector + select.addEventListener("change", function () { + seleccionAnno = select.value; // Actualizar la variable seleccionAnno + /* console.log(seleccionAnno);*/ + dibujaMapa(seleccionAnno); + }); +} + + + +function dibujaMapa(seleccionAnno) { + /*console.log(paises);*/ + anno=parseInt(seleccionAnno); + + let datosAnno=[]; + for(i=0;i<paises.length;i++){ + datosAnno.push(paises[i][anno-1959]); + }/**aqui seleccionamos los valores para los paises y el anno seleccionado para poder tener el maximo y el minimo*/ + + //console.log(datosAnno); + + let min=Math.min(...datosAnno.filter(value => value !== 0)); /* minimo y maximo para poder hacer la escala de colores */ + let max=Math.max(...datosAnno); + + d3.json("./JsonPaises/world-geo.json").then(function (geojson) { + // Configuración del mapa + var DivMapa = document.getElementById("map"); + var width = DivMapa.clientWidth; + var height = DivMapa.clientHeight; + + + // Eliminamos mapas anteriores + d3.selectAll("#Map").remove(); + // Creamos el svg + var svg = d3.select("#map") + .append("svg") + .attr("id", "Map") + .attr("width", width) + .attr("height", height); + + // Configuración de la proyección + var projection = d3.geoEquirectangular() + .scale(width/8.5) + .rotate([0, 0]) + .center([0, 0]) + .translate([width/2,height/2 +15]); + var path = d3.geoPath().projection(projection); + + + var logScale = d3.scaleLog().domain([min, max]).range([0, 1]); + var colores = d3.scaleSequential(d3.interpolateViridis).domain([ Math.log(min),Math.log(max)]); + + + geojson.features.forEach(function (feature) { + const countryName = feature.properties.name; + const index = paises.findIndex(p => p[0] === countryName); + //console.log(`Buscando: ${countryName}, Encontrado en Ãndice: ${index}`); + if (index !== -1) { + // Agregar un valor de datosAnno al GeoJSON + feature.properties.value = datosAnno[index]; + } else { + feature.properties.value = 0; // Si no se encuentra, asignar 0 + } + }); + svg.selectAll("path") + .data(geojson.features) + .enter() + .append("path") + .attr("d", path) + .style("fill", function (d) { + const value = d.properties.value; + // console.log(value); + return value === 0 ? "#cce5df" : colores(Math.log(value)); // Colores para paÃses con datos + }) + .style("stroke-width", 0.55) + .style("stroke","black") + .on("mouseover",function(event,d){ + const centroid = path.centroid(d); + d3.select(this) + .raise() + .style("stroke-width", 0.75) + .attr("transform", ` + translate(${centroid[0]}, ${centroid[1]}) + scale(1.2) + translate(${-centroid[0]}, ${-centroid[1]})`); + + + const textElement=svg.append("text") + .attr("id","texto") + .attr("x", centroid[0]) + .attr("y", centroid[1] - 10) + .style("fill","black") + .text(`${d.properties.name}: ${d.properties.value ? d.properties.value.toFixed(2) : 'Sin datos'}`) + .style("opacity", 1); + const textBBox = textElement.node().getBBox(); + + svg.append("rect") + .attr("class", "background-rect") + .attr("id","rectanguloTexto") + .attr("x", textBBox.x -5) + .attr("y", textBBox.y -2) + .attr("width", textBBox.width + 10) + .attr("height", textBBox.height + 4) + .attr("rx", 5) + .attr("ry", 5) + .style("fill", "white") + .style("opacity", 0.2); + + textElement.raise(); + + }) + .on("mouseout",function(){ + d3.select(this) + .style("stroke-width", 0.55) + .attr("transform", null); + d3.selectAll("#texto").remove(); + d3.selectAll("#rectanguloTexto").remove(); + }) + .on("click",function(event,d){ + dibujaGrafico(d.properties.name,paises); + + }) + + var legend = svg.append("g") + .attr("class", "legend") + .attr("transform", "translate(20, 50)"); + + var legendScale = d3.scaleLog() + .domain([min, max]) + .range([0, 300]); + var legendAxis = d3.axisLeft(legendScale) + .ticks(4) + .tickFormat(d3.format(".2f")); + var legendBar = d3.scaleSequential(d3.interpolateViridis) + .domain([ Math.log(min),Math.log(max)]); + + legend.append("g") + .attr("class", "axis") + .call(legendAxis) + .selectAll("text") + .attr("transform", "translate(30, 0)") // Desplazar los valores de la leyenda a la derecha + .style("text-anchor", "start"); // Alinear los valores de la leyenda a la derecha; + + for (let i = Math.log(min); i <= Math.log(max); i += 0.1) { + legend.append("rect") + .attr("x", 0) + .attr("y", legendScale(Math.exp(i))) + .attr("width", 20) + .attr("height", legendScale(Math.exp(i + 0.1)) - legendScale(Math.exp(i))) + .style("fill", legendBar(i)); + } + }); + +} + +function dibujaGrafico(country,paises){ + let datosPais=[]; + let index; + for(i=0;i<paises.length;i++){ + if(paises[i][0]===country){ + // console.log(paises[i][0]); + index=i; + //datosPais.push(paises[i]); + + } + } + datosPais=paises[index]; + console.log(datosPais); + const datos = nombresDeVariables.map((year, i) => ({ + Year: parseInt(year), + Valor: typeof datosPais[i + 1] === "number" ? datosPais[i + 1] : null + })).filter(d => d.Valor !== null); // Filtramos valores nulos o no numéricos + + const GraficoLineas = document.getElementById("grafico"); + const margin = { top: 20, right: 20, bottom: 50, left: 50 }; + const width = GraficoLineas.clientWidth - margin.left - margin.right; + const height = GraficoLineas.clientHeight - margin.top - margin.bottom; + + // Se elimina el gráfico existente + d3.selectAll("#GraficoLineasSvg").remove(); + + // Creamos el SVG para el gráfico + const svg = d3.select("#grafico") + .append("svg") + .attr("id", "GraficoLineasSvg") + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .append("g") + .attr("transform", `translate(${margin.left},${margin.top})`); + + // Escalas + // Escala X + const xScale = d3.scaleLinear() + .domain(d3.extent(datos, d => d.Year)) + .range([0, width]); + // Escala Y + const yScale = d3.scaleLinear() + .domain([d3.min(datos, d => d.Valor) - 0.05, d3.max(datos, d => d.Valor) + 0.05]) + .range([height, 0]); + + // LÃnea + const line = d3.line() + .x(d => xScale(d.Year)) + .y(d => yScale(d.Valor)); + + // Ponemos la lÃnea en el gráfico + const path = svg.append("path") + .data([datos]) + .attr("class", "line") + .attr("d", line) + .style("fill", "none") + .style("stroke", "black") + .style("stroke-width", 2); + + // Animación para la lÃnea + const totalLength = path.node().getTotalLength(); + path + .attr("stroke-dasharray", totalLength + " " + totalLength) + .attr("stroke-dashoffset", totalLength) + .transition() + .duration(3000) + .ease(d3.easeLinear) + .attr("stroke-dashoffset", 0); + + // Ejes + // Eje X + svg.append("g") + .attr("class", "x axis") + .attr("transform", `translate(0,${height})`) + .call(d3.axisBottom(xScale).tickFormat(d3.format("d"))); + + svg.append("text") + .attr("text-anchor", "middle") + .attr("transform", `translate(${width / 2},${height + margin.bottom - 10})`) + .text("Años"); + + // Eje Y + svg.append("g") + .attr("class", "y axis") + .call(d3.axisLeft(yScale)); + + svg.append("text") + .attr("text-anchor", "middle") + .attr("transform", `rotate(-90) translate(${-height / 2},${-margin.left + 10})`) + .text("Valor"); + + // TÃtulo + svg.append("text") + .attr("x", width / 2) + .attr("y", -8) + .attr("text-anchor", "middle") + .style("font-size", "18px") + .style("font-weight", "bold") + .text(`Evolución de los datos para ${country}`); +} + diff --git a/JsonPaises/world-geo.json b/JsonPaises/world-geo.json new file mode 100644 index 0000000000000000000000000000000000000000..9d2fe0049a573cd89792d5769d20e35edcdaabd1 --- /dev/null +++ b/JsonPaises/world-geo.json @@ -0,0 +1,177 @@ +{"type":"FeatureCollection","features":[ {"type":"Feature","properties":{"name":"Afghanistan"},"geometry":{"type":"Polygon","coordinates":[[[61.210817,35.650072],[62.230651,35.270664],[62.984662,35.404041],[63.193538,35.857166],[63.982896,36.007957],[64.546479,36.312073],[64.746105,37.111818],[65.588948,37.305217],[65.745631,37.661164],[66.217385,37.39379],[66.518607,37.362784],[67.075782,37.356144],[67.83,37.144994],[68.135562,37.023115],[68.859446,37.344336],[69.196273,37.151144],[69.518785,37.608997],[70.116578,37.588223],[70.270574,37.735165],[70.376304,38.138396],[70.806821,38.486282],[71.348131,38.258905],[71.239404,37.953265],[71.541918,37.905774],[71.448693,37.065645],[71.844638,36.738171],[72.193041,36.948288],[72.63689,37.047558],[73.260056,37.495257],[73.948696,37.421566],[74.980002,37.41999],[75.158028,37.133031],[74.575893,37.020841],[74.067552,36.836176],[72.920025,36.720007],[71.846292,36.509942],[71.262348,36.074388],[71.498768,35.650563],[71.613076,35.153203],[71.115019,34.733126],[71.156773,34.348911],[70.881803,33.988856],[69.930543,34.02012],[70.323594,33.358533],[69.687147,33.105499],[69.262522,32.501944],[69.317764,31.901412],[68.926677,31.620189],[68.556932,31.71331],[67.792689,31.58293],[67.683394,31.303154],[66.938891,31.304911],[66.381458,30.738899],[66.346473,29.887943],[65.046862,29.472181],[64.350419,29.560031],[64.148002,29.340819],[63.550261,29.468331],[62.549857,29.318572],[60.874248,29.829239],[61.781222,30.73585],[61.699314,31.379506],[60.941945,31.548075],[60.863655,32.18292],[60.536078,32.981269],[60.9637,33.528832],[60.52843,33.676446],[60.803193,34.404102],[61.210817,35.650072]]]},"id":"AFG"}, +{"type":"Feature","properties":{"name":"Angola"},"geometry":{"type":"MultiPolygon","coordinates":[[[[16.326528,-5.87747],[16.57318,-6.622645],[16.860191,-7.222298],[17.089996,-7.545689],[17.47297,-8.068551],[18.134222,-7.987678],[18.464176,-7.847014],[19.016752,-7.988246],[19.166613,-7.738184],[19.417502,-7.155429],[20.037723,-7.116361],[20.091622,-6.94309],[20.601823,-6.939318],[20.514748,-7.299606],[21.728111,-7.290872],[21.746456,-7.920085],[21.949131,-8.305901],[21.801801,-8.908707],[21.875182,-9.523708],[22.208753,-9.894796],[22.155268,-11.084801],[22.402798,-10.993075],[22.837345,-11.017622],[23.456791,-10.867863],[23.912215,-10.926826],[24.017894,-11.237298],[23.904154,-11.722282],[24.079905,-12.191297],[23.930922,-12.565848],[24.016137,-12.911046],[21.933886,-12.898437],[21.887843,-16.08031],[22.562478,-16.898451],[23.215048,-17.523116],[21.377176,-17.930636],[18.956187,-17.789095],[18.263309,-17.309951],[14.209707,-17.353101],[14.058501,-17.423381],[13.462362,-16.971212],[12.814081,-16.941343],[12.215461,-17.111668],[11.734199,-17.301889],[11.640096,-16.673142],[11.778537,-15.793816],[12.123581,-14.878316],[12.175619,-14.449144],[12.500095,-13.5477],[12.738479,-13.137906],[13.312914,-12.48363],[13.633721,-12.038645],[13.738728,-11.297863],[13.686379,-10.731076],[13.387328,-10.373578],[13.120988,-9.766897],[12.87537,-9.166934],[12.929061,-8.959091],[13.236433,-8.562629],[12.93304,-7.596539],[12.728298,-6.927122],[12.227347,-6.294448],[12.322432,-6.100092],[12.735171,-5.965682],[13.024869,-5.984389],[13.375597,-5.864241],[16.326528,-5.87747]]],[[[12.436688,-5.684304],[12.182337,-5.789931],[11.914963,-5.037987],[12.318608,-4.60623],[12.62076,-4.438023],[12.995517,-4.781103],[12.631612,-4.991271],[12.468004,-5.248362],[12.436688,-5.684304]]]]},"id":"AGO"}, +{"type":"Feature","properties":{"name":"Albania"},"geometry":{"type":"Polygon","coordinates":[[[20.590247,41.855404],[20.463175,41.515089],[20.605182,41.086226],[21.02004,40.842727],[20.99999,40.580004],[20.674997,40.435],[20.615,40.110007],[20.150016,39.624998],[19.98,39.694993],[19.960002,39.915006],[19.406082,40.250773],[19.319059,40.72723],[19.40355,41.409566],[19.540027,41.719986],[19.371769,41.877548],[19.304486,42.195745],[19.738051,42.688247],[19.801613,42.500093],[20.0707,42.58863],[20.283755,42.32026],[20.52295,42.21787],[20.590247,41.855404]]]},"id":"ALB"}, +{"type":"Feature","properties":{"name":"United Arab Emirates"},"geometry":{"type":"Polygon","coordinates":[[[51.579519,24.245497],[51.757441,24.294073],[51.794389,24.019826],[52.577081,24.177439],[53.404007,24.151317],[54.008001,24.121758],[54.693024,24.797892],[55.439025,25.439145],[56.070821,26.055464],[56.261042,25.714606],[56.396847,24.924732],[55.886233,24.920831],[55.804119,24.269604],[55.981214,24.130543],[55.528632,23.933604],[55.525841,23.524869],[55.234489,23.110993],[55.208341,22.70833],[55.006803,22.496948],[52.000733,23.001154],[51.617708,24.014219],[51.579519,24.245497]]]},"id":"ARE"}, +{"type":"Feature","properties":{"name":"Argentina"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-65.5,-55.2],[-66.45,-55.25],[-66.95992,-54.89681],[-67.56244,-54.87001],[-68.63335,-54.8695],[-68.63401,-52.63637],[-68.25,-53.1],[-67.75,-53.85],[-66.45,-54.45],[-65.05,-54.7],[-65.5,-55.2]]],[[[-64.964892,-22.075862],[-64.377021,-22.798091],[-63.986838,-21.993644],[-62.846468,-22.034985],[-62.685057,-22.249029],[-60.846565,-23.880713],[-60.028966,-24.032796],[-58.807128,-24.771459],[-57.777217,-25.16234],[-57.63366,-25.603657],[-58.618174,-27.123719],[-57.60976,-27.395899],[-56.486702,-27.548499],[-55.695846,-27.387837],[-54.788795,-26.621786],[-54.625291,-25.739255],[-54.13005,-25.547639],[-53.628349,-26.124865],[-53.648735,-26.923473],[-54.490725,-27.474757],[-55.162286,-27.881915],[-56.2909,-28.852761],[-57.625133,-30.216295],[-57.874937,-31.016556],[-58.14244,-32.044504],[-58.132648,-33.040567],[-58.349611,-33.263189],[-58.427074,-33.909454],[-58.495442,-34.43149],[-57.22583,-35.288027],[-57.362359,-35.97739],[-56.737487,-36.413126],[-56.788285,-36.901572],[-57.749157,-38.183871],[-59.231857,-38.72022],[-61.237445,-38.928425],[-62.335957,-38.827707],[-62.125763,-39.424105],[-62.330531,-40.172586],[-62.145994,-40.676897],[-62.745803,-41.028761],[-63.770495,-41.166789],[-64.73209,-40.802677],[-65.118035,-41.064315],[-64.978561,-42.058001],[-64.303408,-42.359016],[-63.755948,-42.043687],[-63.458059,-42.563138],[-64.378804,-42.873558],[-65.181804,-43.495381],[-65.328823,-44.501366],[-65.565269,-45.036786],[-66.509966,-45.039628],[-67.293794,-45.551896],[-67.580546,-46.301773],[-66.597066,-47.033925],[-65.641027,-47.236135],[-65.985088,-48.133289],[-67.166179,-48.697337],[-67.816088,-49.869669],[-68.728745,-50.264218],[-69.138539,-50.73251],[-68.815561,-51.771104],[-68.149995,-52.349983],[-68.571545,-52.299444],[-69.498362,-52.142761],[-71.914804,-52.009022],[-72.329404,-51.425956],[-72.309974,-50.67701],[-72.975747,-50.74145],[-73.328051,-50.378785],[-73.415436,-49.318436],[-72.648247,-48.878618],[-72.331161,-48.244238],[-72.447355,-47.738533],[-71.917258,-46.884838],[-71.552009,-45.560733],[-71.659316,-44.973689],[-71.222779,-44.784243],[-71.329801,-44.407522],[-71.793623,-44.207172],[-71.464056,-43.787611],[-71.915424,-43.408565],[-72.148898,-42.254888],[-71.746804,-42.051386],[-71.915734,-40.832339],[-71.680761,-39.808164],[-71.413517,-38.916022],[-70.814664,-38.552995],[-71.118625,-37.576827],[-71.121881,-36.658124],[-70.364769,-36.005089],[-70.388049,-35.169688],[-69.817309,-34.193571],[-69.814777,-33.273886],[-70.074399,-33.09121],[-70.535069,-31.36501],[-69.919008,-30.336339],[-70.01355,-29.367923],[-69.65613,-28.459141],[-69.001235,-27.521214],[-68.295542,-26.89934],[-68.5948,-26.506909],[-68.386001,-26.185016],[-68.417653,-24.518555],[-67.328443,-24.025303],[-66.985234,-22.986349],[-67.106674,-22.735925],[-66.273339,-21.83231],[-64.964892,-22.075862]]]]},"id":"ARG"}, +{"type":"Feature","properties":{"name":"Armenia"},"geometry":{"type":"Polygon","coordinates":[[[43.582746,41.092143],[44.97248,41.248129],[45.179496,40.985354],[45.560351,40.81229],[45.359175,40.561504],[45.891907,40.218476],[45.610012,39.899994],[46.034534,39.628021],[46.483499,39.464155],[46.50572,38.770605],[46.143623,38.741201],[45.735379,39.319719],[45.739978,39.473999],[45.298145,39.471751],[45.001987,39.740004],[44.79399,39.713003],[44.400009,40.005],[43.656436,40.253564],[43.752658,40.740201],[43.582746,41.092143]]]},"id":"ARM"}, +{"type":"Feature","properties":{"name":"Antarctica"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-59.572095,-80.040179],[-59.865849,-80.549657],[-60.159656,-81.000327],[-62.255393,-80.863178],[-64.488125,-80.921934],[-65.741666,-80.588827],[-65.741666,-80.549657],[-66.290031,-80.255773],[-64.037688,-80.294944],[-61.883246,-80.39287],[-61.138976,-79.981371],[-60.610119,-79.628679],[-59.572095,-80.040179]]],[[[-159.208184,-79.497059],[-161.127601,-79.634209],[-162.439847,-79.281465],[-163.027408,-78.928774],[-163.066604,-78.869966],[-163.712896,-78.595667],[-163.712896,-78.595667],[-163.105801,-78.223338],[-161.245113,-78.380176],[-160.246208,-78.693645],[-159.482405,-79.046338],[-159.208184,-79.497059]]],[[[-45.154758,-78.04707],[-43.920828,-78.478103],[-43.48995,-79.08556],[-43.372438,-79.516645],[-43.333267,-80.026123],[-44.880537,-80.339644],[-46.506174,-80.594357],[-48.386421,-80.829485],[-50.482107,-81.025442],[-52.851988,-80.966685],[-54.164259,-80.633528],[-53.987991,-80.222028],[-51.853134,-79.94773],[-50.991326,-79.614623],[-50.364595,-79.183487],[-49.914131,-78.811209],[-49.306959,-78.458569],[-48.660616,-78.047018],[-48.660616,-78.047019],[-48.151396,-78.04707],[-46.662857,-77.831476],[-45.154758,-78.04707]]],[[[-121.211511,-73.50099],[-119.918851,-73.657725],[-118.724143,-73.481353],[-119.292119,-73.834097],[-120.232217,-74.08881],[-121.62283,-74.010468],[-122.621735,-73.657778],[-122.621735,-73.657777],[-122.406245,-73.324619],[-121.211511,-73.50099]]],[[[-125.559566,-73.481353],[-124.031882,-73.873268],[-124.619469,-73.834097],[-125.912181,-73.736118],[-127.28313,-73.461769],[-127.28313,-73.461768],[-126.558472,-73.246226],[-125.559566,-73.481353]]],[[[-98.98155,-71.933334],[-97.884743,-72.070535],[-96.787937,-71.952971],[-96.20035,-72.521205],[-96.983765,-72.442864],[-98.198083,-72.482035],[-99.432013,-72.442864],[-100.783455,-72.50162],[-101.801868,-72.305663],[-102.330725,-71.894164],[-102.330725,-71.894164],[-101.703967,-71.717792],[-100.430919,-71.854993],[-98.98155,-71.933334]]],[[[-68.451346,-70.955823],[-68.333834,-71.406493],[-68.510128,-71.798407],[-68.784297,-72.170736],[-69.959471,-72.307885],[-71.075889,-72.503842],[-72.388134,-72.484257],[-71.8985,-72.092343],[-73.073622,-72.229492],[-74.19004,-72.366693],[-74.953895,-72.072757],[-75.012625,-71.661258],[-73.915819,-71.269345],[-73.915819,-71.269344],[-73.230331,-71.15178],[-72.074717,-71.190951],[-71.780962,-70.681473],[-71.72218,-70.309196],[-71.741791,-69.505782],[-71.173815,-69.035475],[-70.253252,-68.87874],[-69.724447,-69.251017],[-69.489422,-69.623346],[-69.058518,-70.074016],[-68.725541,-70.505153],[-68.451346,-70.955823]]],[[[-58.614143,-64.152467],[-59.045073,-64.36801],[-59.789342,-64.211223],[-60.611928,-64.309202],[-61.297416,-64.54433],[-62.0221,-64.799094],[-62.51176,-65.09303],[-62.648858,-65.484942],[-62.590128,-65.857219],[-62.120079,-66.190326],[-62.805567,-66.425505],[-63.74569,-66.503847],[-64.294106,-66.837004],[-64.881693,-67.150474],[-65.508425,-67.58161],[-65.665082,-67.953887],[-65.312545,-68.365335],[-64.783715,-68.678908],[-63.961103,-68.913984],[-63.1973,-69.227556],[-62.785955,-69.619419],[-62.570516,-69.991747],[-62.276736,-70.383661],[-61.806661,-70.716768],[-61.512906,-71.089045],[-61.375809,-72.010074],[-61.081977,-72.382351],[-61.003661,-72.774265],[-60.690269,-73.166179],[-60.827367,-73.695242],[-61.375809,-74.106742],[-61.96337,-74.439848],[-63.295201,-74.576997],[-63.74569,-74.92974],[-64.352836,-75.262847],[-65.860987,-75.635124],[-67.192818,-75.79191],[-68.446282,-76.007452],[-69.797724,-76.222995],[-70.600724,-76.634494],[-72.206776,-76.673665],[-73.969536,-76.634494],[-75.555977,-76.712887],[-77.24037,-76.712887],[-76.926979,-77.104802],[-75.399294,-77.28107],[-74.282876,-77.55542],[-73.656119,-77.908112],[-74.772536,-78.221633],[-76.4961,-78.123654],[-77.925858,-78.378419],[-77.984666,-78.789918],[-78.023785,-79.181833],[-76.848637,-79.514939],[-76.633224,-79.887216],[-75.360097,-80.259545],[-73.244852,-80.416331],[-71.442946,-80.69063],[-70.013163,-81.004151],[-68.191646,-81.317672],[-65.704279,-81.474458],[-63.25603,-81.748757],[-61.552026,-82.042692],[-59.691416,-82.37585],[-58.712121,-82.846106],[-58.222487,-83.218434],[-57.008117,-82.865691],[-55.362894,-82.571755],[-53.619771,-82.258235],[-51.543644,-82.003521],[-49.76135,-81.729171],[-47.273931,-81.709586],[-44.825708,-81.846735],[-42.808363,-82.081915],[-42.16202,-81.65083],[-40.771433,-81.356894],[-38.244818,-81.337309],[-36.26667,-81.121715],[-34.386397,-80.906172],[-32.310296,-80.769023],[-30.097098,-80.592651],[-28.549802,-80.337938],[-29.254901,-79.985195],[-29.685805,-79.632503],[-29.685805,-79.260226],[-31.624808,-79.299397],[-33.681324,-79.456132],[-35.639912,-79.456132],[-35.914107,-79.083855],[-35.77701,-78.339248],[-35.326546,-78.123654],[-33.896763,-77.888526],[-32.212369,-77.65345],[-30.998051,-77.359515],[-29.783732,-77.065579],[-28.882779,-76.673665],[-27.511752,-76.497345],[-26.160336,-76.360144],[-25.474822,-76.281803],[-23.927552,-76.24258],[-22.458598,-76.105431],[-21.224694,-75.909474],[-20.010375,-75.674346],[-18.913543,-75.439218],[-17.522982,-75.125698],[-16.641589,-74.79254],[-15.701491,-74.498604],[-15.40771,-74.106742],[-16.46532,-73.871614],[-16.112784,-73.460114],[-15.446855,-73.146542],[-14.408805,-72.950585],[-13.311973,-72.715457],[-12.293508,-72.401936],[-11.510067,-72.010074],[-11.020433,-71.539767],[-10.295774,-71.265416],[-9.101015,-71.324224],[-8.611381,-71.65733],[-7.416622,-71.696501],[-7.377451,-71.324224],[-6.868232,-70.93231],[-5.790985,-71.030289],[-5.536375,-71.402617],[-4.341667,-71.461373],[-3.048981,-71.285053],[-1.795492,-71.167438],[-0.659489,-71.226246],[-0.228637,-71.637745],[0.868195,-71.304639],[1.886686,-71.128267],[3.022638,-70.991118],[4.139055,-70.853917],[5.157546,-70.618789],[6.273912,-70.462055],[7.13572,-70.246512],[7.742866,-69.893769],[8.48711,-70.148534],[9.525135,-70.011333],[10.249845,-70.48164],[10.817821,-70.834332],[11.953824,-70.638375],[12.404287,-70.246512],[13.422778,-69.972162],[14.734998,-70.030918],[15.126757,-70.403247],[15.949342,-70.030918],[17.026589,-69.913354],[18.201711,-69.874183],[19.259373,-69.893769],[20.375739,-70.011333],[21.452985,-70.07014],[21.923034,-70.403247],[22.569403,-70.697182],[23.666184,-70.520811],[24.841357,-70.48164],[25.977309,-70.48164],[27.093726,-70.462055],[28.09258,-70.324854],[29.150242,-70.20729],[30.031583,-69.93294],[30.971733,-69.75662],[31.990172,-69.658641],[32.754053,-69.384291],[33.302443,-68.835642],[33.870419,-68.502588],[34.908495,-68.659271],[35.300202,-69.012014],[36.16201,-69.247142],[37.200035,-69.168748],[37.905108,-69.52144],[38.649404,-69.776205],[39.667894,-69.541077],[40.020431,-69.109941],[40.921358,-68.933621],[41.959434,-68.600514],[42.938702,-68.463313],[44.113876,-68.267408],[44.897291,-68.051866],[45.719928,-67.816738],[46.503343,-67.601196],[47.44344,-67.718759],[48.344419,-67.366068],[48.990736,-67.091718],[49.930885,-67.111303],[50.753471,-66.876175],[50.949325,-66.523484],[51.791547,-66.249133],[52.614133,-66.053176],[53.613038,-65.89639],[54.53355,-65.818049],[55.414943,-65.876805],[56.355041,-65.974783],[57.158093,-66.249133],[57.255968,-66.680218],[58.137361,-67.013324],[58.744508,-67.287675],[59.939318,-67.405239],[60.605221,-67.679589],[61.427806,-67.953887],[62.387489,-68.012695],[63.19049,-67.816738],[64.052349,-67.405239],[64.992447,-67.620729],[65.971715,-67.738345],[66.911864,-67.855909],[67.891133,-67.934302],[68.890038,-67.934302],[69.712624,-68.972791],[69.673453,-69.227556],[69.555941,-69.678226],[68.596258,-69.93294],[67.81274,-70.305268],[67.949889,-70.697182],[69.066307,-70.677545],[68.929157,-71.069459],[68.419989,-71.441788],[67.949889,-71.853287],[68.71377,-72.166808],[69.869307,-72.264787],[71.024895,-72.088415],[71.573285,-71.696501],[71.906288,-71.324224],[72.454627,-71.010703],[73.08141,-70.716768],[73.33602,-70.364024],[73.864877,-69.874183],[74.491557,-69.776205],[75.62756,-69.737034],[76.626465,-69.619419],[77.644904,-69.462684],[78.134539,-69.07077],[78.428371,-68.698441],[79.113859,-68.326216],[80.093127,-68.071503],[80.93535,-67.875546],[81.483792,-67.542388],[82.051767,-67.366068],[82.776426,-67.209282],[83.775331,-67.30726],[84.676206,-67.209282],[85.655527,-67.091718],[86.752359,-67.150474],[87.477017,-66.876175],[87.986289,-66.209911],[88.358411,-66.484261],[88.828408,-66.954568],[89.67063,-67.150474],[90.630365,-67.228867],[91.5901,-67.111303],[92.608539,-67.189696],[93.548637,-67.209282],[94.17542,-67.111303],[95.017591,-67.170111],[95.781472,-67.385653],[96.682399,-67.248504],[97.759646,-67.248504],[98.68021,-67.111303],[99.718182,-67.248504],[100.384188,-66.915346],[100.893356,-66.58224],[101.578896,-66.30789],[102.832411,-65.563284],[103.478676,-65.700485],[104.242557,-65.974783],[104.90846,-66.327527],[106.181561,-66.934931],[107.160881,-66.954568],[108.081393,-66.954568],[109.15864,-66.837004],[110.235835,-66.699804],[111.058472,-66.425505],[111.74396,-66.13157],[112.860378,-66.092347],[113.604673,-65.876805],[114.388088,-66.072762],[114.897308,-66.386283],[115.602381,-66.699804],[116.699161,-66.660633],[117.384701,-66.915346],[118.57946,-67.170111],[119.832924,-67.268089],[120.871,-67.189696],[121.654415,-66.876175],[122.320369,-66.562654],[123.221296,-66.484261],[124.122274,-66.621462],[125.160247,-66.719389],[126.100396,-66.562654],[127.001427,-66.562654],[127.882768,-66.660633],[128.80328,-66.758611],[129.704259,-66.58224],[130.781454,-66.425505],[131.799945,-66.386283],[132.935896,-66.386283],[133.85646,-66.288304],[134.757387,-66.209963],[135.031582,-65.72007],[135.070753,-65.308571],[135.697485,-65.582869],[135.873805,-66.033591],[136.206705,-66.44509],[136.618049,-66.778197],[137.460271,-66.954568],[138.596223,-66.895761],[139.908442,-66.876175],[140.809421,-66.817367],[142.121692,-66.817367],[143.061842,-66.797782],[144.374061,-66.837004],[145.490427,-66.915346],[146.195552,-67.228867],[145.999699,-67.601196],[146.646067,-67.895131],[147.723263,-68.130259],[148.839629,-68.385024],[150.132314,-68.561292],[151.483705,-68.71813],[152.502247,-68.874813],[153.638199,-68.894502],[154.284567,-68.561292],[155.165857,-68.835642],[155.92979,-69.149215],[156.811132,-69.384291],[158.025528,-69.482269],[159.181013,-69.599833],[159.670699,-69.991747],[160.80665,-70.226875],[161.570479,-70.579618],[162.686897,-70.736353],[163.842434,-70.716768],[164.919681,-70.775524],[166.11444,-70.755938],[167.309095,-70.834332],[168.425616,-70.971481],[169.463589,-71.20666],[170.501665,-71.402617],[171.20679,-71.696501],[171.089227,-72.088415],[170.560422,-72.441159],[170.109958,-72.891829],[169.75737,-73.24452],[169.287321,-73.65602],[167.975101,-73.812806],[167.387489,-74.165498],[166.094803,-74.38104],[165.644391,-74.772954],[164.958851,-75.145283],[164.234193,-75.458804],[163.822797,-75.870303],[163.568239,-76.24258],[163.47026,-76.693302],[163.489897,-77.065579],[164.057873,-77.457442],[164.273363,-77.82977],[164.743464,-78.182514],[166.604126,-78.319611],[166.995781,-78.750748],[165.193876,-78.907483],[163.666217,-79.123025],[161.766385,-79.162248],[160.924162,-79.730482],[160.747894,-80.200737],[160.316964,-80.573066],[159.788211,-80.945395],[161.120016,-81.278501],[161.629287,-81.690001],[162.490992,-82.062278],[163.705336,-82.395435],[165.095949,-82.708956],[166.604126,-83.022477],[168.895665,-83.335998],[169.404782,-83.825891],[172.283934,-84.041433],[172.477049,-84.117914],[173.224083,-84.41371],[175.985672,-84.158997],[178.277212,-84.472518],[180,-84.71338],[-179.942499,-84.721443],[-179.058677,-84.139412],[-177.256772,-84.452933],[-177.140807,-84.417941],[-176.084673,-84.099259],[-175.947235,-84.110449],[-175.829882,-84.117914],[-174.382503,-84.534323],[-173.116559,-84.117914],[-172.889106,-84.061019],[-169.951223,-83.884647],[-168.999989,-84.117914],[-168.530199,-84.23739],[-167.022099,-84.570497],[-164.182144,-84.82521],[-161.929775,-85.138731],[-158.07138,-85.37391],[-155.192253,-85.09956],[-150.942099,-85.295517],[-148.533073,-85.609038],[-145.888918,-85.315102],[-143.107718,-85.040752],[-142.892279,-84.570497],[-146.829068,-84.531274],[-150.060732,-84.296146],[-150.902928,-83.904232],[-153.586201,-83.68869],[-153.409907,-83.23802],[-153.037759,-82.82652],[-152.665637,-82.454192],[-152.861517,-82.042692],[-154.526299,-81.768394],[-155.29018,-81.41565],[-156.83745,-81.102129],[-154.408787,-81.160937],[-152.097662,-81.004151],[-150.648293,-81.337309],[-148.865998,-81.043373],[-147.22075,-80.671045],[-146.417749,-80.337938],[-146.770286,-79.926439],[-148.062947,-79.652089],[-149.531901,-79.358205],[-151.588416,-79.299397],[-153.390322,-79.162248],[-155.329376,-79.064269],[-155.975668,-78.69194],[-157.268302,-78.378419],[-158.051768,-78.025676],[-158.365134,-76.889207],[-157.875474,-76.987238],[-156.974573,-77.300759],[-155.329376,-77.202728],[-153.742832,-77.065579],[-152.920247,-77.496664],[-151.33378,-77.398737],[-150.00195,-77.183143],[-148.748486,-76.908845],[-147.612483,-76.575738],[-146.104409,-76.47776],[-146.143528,-76.105431],[-146.496091,-75.733154],[-146.20231,-75.380411],[-144.909624,-75.204039],[-144.322037,-75.537197],[-142.794353,-75.34124],[-141.638764,-75.086475],[-140.209007,-75.06689],[-138.85759,-74.968911],[-137.5062,-74.733783],[-136.428901,-74.518241],[-135.214583,-74.302699],[-134.431194,-74.361455],[-133.745654,-74.439848],[-132.257168,-74.302699],[-130.925311,-74.479019],[-129.554284,-74.459433],[-128.242038,-74.322284],[-126.890622,-74.420263],[-125.402082,-74.518241],[-124.011496,-74.479019],[-122.562152,-74.498604],[-121.073613,-74.518241],[-119.70256,-74.479019],[-118.684145,-74.185083],[-117.469801,-74.028348],[-116.216312,-74.243891],[-115.021552,-74.067519],[-113.944331,-73.714828],[-113.297988,-74.028348],[-112.945452,-74.38104],[-112.299083,-74.714198],[-111.261059,-74.420263],[-110.066325,-74.79254],[-108.714909,-74.910103],[-107.559346,-75.184454],[-106.149148,-75.125698],[-104.876074,-74.949326],[-103.367949,-74.988497],[-102.016507,-75.125698],[-100.645531,-75.302018],[-100.1167,-74.870933],[-100.763043,-74.537826],[-101.252703,-74.185083],[-102.545337,-74.106742],[-103.113313,-73.734413],[-103.328752,-73.362084],[-103.681289,-72.61753],[-102.917485,-72.754679],[-101.60524,-72.813436],[-100.312528,-72.754679],[-99.13738,-72.911414],[-98.118889,-73.20535],[-97.688037,-73.558041],[-96.336595,-73.616849],[-95.043961,-73.4797],[-93.672907,-73.283743],[-92.439003,-73.166179],[-91.420564,-73.401307],[-90.088733,-73.322914],[-89.226951,-72.558722],[-88.423951,-73.009393],[-87.268337,-73.185764],[-86.014822,-73.087786],[-85.192236,-73.4797],[-83.879991,-73.518871],[-82.665646,-73.636434],[-81.470913,-73.851977],[-80.687447,-73.4797],[-80.295791,-73.126956],[-79.296886,-73.518871],[-77.925858,-73.420892],[-76.907367,-73.636434],[-76.221879,-73.969541],[-74.890049,-73.871614],[-73.852024,-73.65602],[-72.833533,-73.401307],[-71.619215,-73.264157],[-70.209042,-73.146542],[-68.935916,-73.009393],[-67.956622,-72.79385],[-67.369061,-72.480329],[-67.134036,-72.049244],[-67.251548,-71.637745],[-67.56494,-71.245831],[-67.917477,-70.853917],[-68.230843,-70.462055],[-68.485452,-70.109311],[-68.544209,-69.717397],[-68.446282,-69.325535],[-67.976233,-68.953206],[-67.5845,-68.541707],[-67.427843,-68.149844],[-67.62367,-67.718759],[-67.741183,-67.326845],[-67.251548,-66.876175],[-66.703184,-66.58224],[-66.056815,-66.209963],[-65.371327,-65.89639],[-64.568276,-65.602506],[-64.176542,-65.171423],[-63.628152,-64.897073],[-63.001394,-64.642308],[-62.041686,-64.583552],[-61.414928,-64.270031],[-60.709855,-64.074074],[-59.887269,-63.95651],[-59.162585,-63.701745],[-58.594557,-63.388224],[-57.811143,-63.27066],[-57.223582,-63.525425],[-57.59573,-63.858532],[-58.614143,-64.152467]]]]},"id":"ATA"}, +{"type":"Feature","properties":{"name":"French Southern and Antarctic Lands"},"geometry":{"type":"Polygon","coordinates":[[[68.935,-48.625],[69.58,-48.94],[70.525,-49.065],[70.56,-49.255],[70.28,-49.71],[68.745,-49.775],[68.72,-49.2425],[68.8675,-48.83],[68.935,-48.625]]]},"id":"ATF"}, +{"type":"Feature","properties":{"name":"Australia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[145.397978,-40.792549],[146.364121,-41.137695],[146.908584,-41.000546],[147.689259,-40.808258],[148.289068,-40.875438],[148.359865,-42.062445],[148.017301,-42.407024],[147.914052,-43.211522],[147.564564,-42.937689],[146.870343,-43.634597],[146.663327,-43.580854],[146.048378,-43.549745],[145.43193,-42.693776],[145.29509,-42.03361],[144.718071,-41.162552],[144.743755,-40.703975],[145.397978,-40.792549]]],[[[143.561811,-13.763656],[143.922099,-14.548311],[144.563714,-14.171176],[144.894908,-14.594458],[145.374724,-14.984976],[145.271991,-15.428205],[145.48526,-16.285672],[145.637033,-16.784918],[145.888904,-16.906926],[146.160309,-17.761655],[146.063674,-18.280073],[146.387478,-18.958274],[147.471082,-19.480723],[148.177602,-19.955939],[148.848414,-20.39121],[148.717465,-20.633469],[149.28942,-21.260511],[149.678337,-22.342512],[150.077382,-22.122784],[150.482939,-22.556142],[150.727265,-22.402405],[150.899554,-23.462237],[151.609175,-24.076256],[152.07354,-24.457887],[152.855197,-25.267501],[153.136162,-26.071173],[153.161949,-26.641319],[153.092909,-27.2603],[153.569469,-28.110067],[153.512108,-28.995077],[153.339095,-29.458202],[153.069241,-30.35024],[153.089602,-30.923642],[152.891578,-31.640446],[152.450002,-32.550003],[151.709117,-33.041342],[151.343972,-33.816023],[151.010555,-34.31036],[150.714139,-35.17346],[150.32822,-35.671879],[150.075212,-36.420206],[149.946124,-37.109052],[149.997284,-37.425261],[149.423882,-37.772681],[148.304622,-37.809061],[147.381733,-38.219217],[146.922123,-38.606532],[146.317922,-39.035757],[145.489652,-38.593768],[144.876976,-38.417448],[145.032212,-37.896188],[144.485682,-38.085324],[143.609974,-38.809465],[142.745427,-38.538268],[142.17833,-38.380034],[141.606582,-38.308514],[140.638579,-38.019333],[139.992158,-37.402936],[139.806588,-36.643603],[139.574148,-36.138362],[139.082808,-35.732754],[138.120748,-35.612296],[138.449462,-35.127261],[138.207564,-34.384723],[137.71917,-35.076825],[136.829406,-35.260535],[137.352371,-34.707339],[137.503886,-34.130268],[137.890116,-33.640479],[137.810328,-32.900007],[136.996837,-33.752771],[136.372069,-34.094766],[135.989043,-34.890118],[135.208213,-34.47867],[135.239218,-33.947953],[134.613417,-33.222778],[134.085904,-32.848072],[134.273903,-32.617234],[132.990777,-32.011224],[132.288081,-31.982647],[131.326331,-31.495803],[129.535794,-31.590423],[128.240938,-31.948489],[127.102867,-32.282267],[126.148714,-32.215966],[125.088623,-32.728751],[124.221648,-32.959487],[124.028947,-33.483847],[123.659667,-33.890179],[122.811036,-33.914467],[122.183064,-34.003402],[121.299191,-33.821036],[120.580268,-33.930177],[119.893695,-33.976065],[119.298899,-34.509366],[119.007341,-34.464149],[118.505718,-34.746819],[118.024972,-35.064733],[117.295507,-35.025459],[116.625109,-35.025097],[115.564347,-34.386428],[115.026809,-34.196517],[115.048616,-33.623425],[115.545123,-33.487258],[115.714674,-33.259572],[115.679379,-32.900369],[115.801645,-32.205062],[115.689611,-31.612437],[115.160909,-30.601594],[114.997043,-30.030725],[115.040038,-29.461095],[114.641974,-28.810231],[114.616498,-28.516399],[114.173579,-28.118077],[114.048884,-27.334765],[113.477498,-26.543134],[113.338953,-26.116545],[113.778358,-26.549025],[113.440962,-25.621278],[113.936901,-25.911235],[114.232852,-26.298446],[114.216161,-25.786281],[113.721255,-24.998939],[113.625344,-24.683971],[113.393523,-24.384764],[113.502044,-23.80635],[113.706993,-23.560215],[113.843418,-23.059987],[113.736552,-22.475475],[114.149756,-21.755881],[114.225307,-22.517488],[114.647762,-21.82952],[115.460167,-21.495173],[115.947373,-21.068688],[116.711615,-20.701682],[117.166316,-20.623599],[117.441545,-20.746899],[118.229559,-20.374208],[118.836085,-20.263311],[118.987807,-20.044203],[119.252494,-19.952942],[119.805225,-19.976506],[120.85622,-19.683708],[121.399856,-19.239756],[121.655138,-18.705318],[122.241665,-18.197649],[122.286624,-17.798603],[122.312772,-17.254967],[123.012574,-16.4052],[123.433789,-17.268558],[123.859345,-17.069035],[123.503242,-16.596506],[123.817073,-16.111316],[124.258287,-16.327944],[124.379726,-15.56706],[124.926153,-15.0751],[125.167275,-14.680396],[125.670087,-14.51007],[125.685796,-14.230656],[126.125149,-14.347341],[126.142823,-14.095987],[126.582589,-13.952791],[127.065867,-13.817968],[127.804633,-14.276906],[128.35969,-14.86917],[128.985543,-14.875991],[129.621473,-14.969784],[129.4096,-14.42067],[129.888641,-13.618703],[130.339466,-13.357376],[130.183506,-13.10752],[130.617795,-12.536392],[131.223495,-12.183649],[131.735091,-12.302453],[132.575298,-12.114041],[132.557212,-11.603012],[131.824698,-11.273782],[132.357224,-11.128519],[133.019561,-11.376411],[133.550846,-11.786515],[134.393068,-12.042365],[134.678632,-11.941183],[135.298491,-12.248606],[135.882693,-11.962267],[136.258381,-12.049342],[136.492475,-11.857209],[136.95162,-12.351959],[136.685125,-12.887223],[136.305407,-13.29123],[135.961758,-13.324509],[136.077617,-13.724278],[135.783836,-14.223989],[135.428664,-14.715432],[135.500184,-14.997741],[136.295175,-15.550265],[137.06536,-15.870762],[137.580471,-16.215082],[138.303217,-16.807604],[138.585164,-16.806622],[139.108543,-17.062679],[139.260575,-17.371601],[140.215245,-17.710805],[140.875463,-17.369069],[141.07111,-16.832047],[141.274095,-16.38887],[141.398222,-15.840532],[141.702183,-15.044921],[141.56338,-14.561333],[141.63552,-14.270395],[141.519869,-13.698078],[141.65092,-12.944688],[141.842691,-12.741548],[141.68699,-12.407614],[141.928629,-11.877466],[142.118488,-11.328042],[142.143706,-11.042737],[142.51526,-10.668186],[142.79731,-11.157355],[142.866763,-11.784707],[143.115947,-11.90563],[143.158632,-12.325656],[143.522124,-12.834358],[143.597158,-13.400422],[143.561811,-13.763656]]]]},"id":"AUS"}, +{"type":"Feature","properties":{"name":"Austria"},"geometry":{"type":"Polygon","coordinates":[[[16.979667,48.123497],[16.903754,47.714866],[16.340584,47.712902],[16.534268,47.496171],[16.202298,46.852386],[16.011664,46.683611],[15.137092,46.658703],[14.632472,46.431817],[13.806475,46.509306],[12.376485,46.767559],[12.153088,47.115393],[11.164828,46.941579],[11.048556,46.751359],[10.442701,46.893546],[9.932448,46.920728],[9.47997,47.10281],[9.632932,47.347601],[9.594226,47.525058],[9.896068,47.580197],[10.402084,47.302488],[10.544504,47.566399],[11.426414,47.523766],[12.141357,47.703083],[12.62076,47.672388],[12.932627,47.467646],[13.025851,47.637584],[12.884103,48.289146],[13.243357,48.416115],[13.595946,48.877172],[14.338898,48.555305],[14.901447,48.964402],[15.253416,49.039074],[16.029647,48.733899],[16.499283,48.785808],[16.960288,48.596982],[16.879983,48.470013],[16.979667,48.123497]]]},"id":"AUT"}, +{"type":"Feature","properties":{"name":"Azerbaijan"},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.001987,39.740004],[45.298145,39.471751],[45.739978,39.473999],[45.735379,39.319719],[46.143623,38.741201],[45.457722,38.874139],[44.952688,39.335765],[44.79399,39.713003],[45.001987,39.740004]]],[[[47.373315,41.219732],[47.815666,41.151416],[47.987283,41.405819],[48.584353,41.80887],[49.110264,41.282287],[49.618915,40.572924],[50.08483,40.526157],[50.392821,40.256561],[49.569202,40.176101],[49.395259,39.399482],[49.223228,39.049219],[48.856532,38.815486],[48.883249,38.320245],[48.634375,38.270378],[48.010744,38.794015],[48.355529,39.288765],[48.060095,39.582235],[47.685079,39.508364],[46.50572,38.770605],[46.483499,39.464155],[46.034534,39.628021],[45.610012,39.899994],[45.891907,40.218476],[45.359175,40.561504],[45.560351,40.81229],[45.179496,40.985354],[44.97248,41.248129],[45.217426,41.411452],[45.962601,41.123873],[46.501637,41.064445],[46.637908,41.181673],[46.145432,41.722802],[46.404951,41.860675],[46.686071,41.827137],[47.373315,41.219732]]]]},"id":"AZE"}, +{"type":"Feature","properties":{"name":"Burundi"},"geometry":{"type":"Polygon","coordinates":[[[29.339998,-4.499983],[29.276384,-3.293907],[29.024926,-2.839258],[29.632176,-2.917858],[29.938359,-2.348487],[30.469696,-2.413858],[30.527677,-2.807632],[30.743013,-3.034285],[30.752263,-3.35933],[30.50556,-3.568567],[30.116333,-4.090138],[29.753512,-4.452389],[29.339998,-4.499983]]]},"id":"BDI"}, +{"type":"Feature","properties":{"name":"Belgium"},"geometry":{"type":"Polygon","coordinates":[[[3.314971,51.345781],[4.047071,51.267259],[4.973991,51.475024],[5.606976,51.037298],[6.156658,50.803721],[6.043073,50.128052],[5.782417,50.090328],[5.674052,49.529484],[4.799222,49.985373],[4.286023,49.907497],[3.588184,50.378992],[3.123252,50.780363],[2.658422,50.796848],[2.513573,51.148506],[3.314971,51.345781]]]},"id":"BEL"}, +{"type":"Feature","properties":{"name":"Benin"},"geometry":{"type":"Polygon","coordinates":[[[2.691702,6.258817],[1.865241,6.142158],[1.618951,6.832038],[1.664478,9.12859],[1.463043,9.334624],[1.425061,9.825395],[1.077795,10.175607],[0.772336,10.470808],[0.899563,10.997339],[1.24347,11.110511],[1.447178,11.547719],[1.935986,11.64115],[2.154474,11.94015],[2.490164,12.233052],[2.848643,12.235636],[3.61118,11.660167],[3.572216,11.327939],[3.797112,10.734746],[3.60007,10.332186],[3.705438,10.06321],[3.220352,9.444153],[2.912308,9.137608],[2.723793,8.506845],[2.749063,7.870734],[2.691702,6.258817]]]},"id":"BEN"}, +{"type":"Feature","properties":{"name":"Burkina Faso"},"geometry":{"type":"Polygon","coordinates":[[[-2.827496,9.642461],[-3.511899,9.900326],[-3.980449,9.862344],[-4.330247,9.610835],[-4.779884,9.821985],[-4.954653,10.152714],[-5.404342,10.370737],[-5.470565,10.95127],[-5.197843,11.375146],[-5.220942,11.713859],[-4.427166,12.542646],[-4.280405,13.228444],[-4.006391,13.472485],[-3.522803,13.337662],[-3.103707,13.541267],[-2.967694,13.79815],[-2.191825,14.246418],[-2.001035,14.559008],[-1.066363,14.973815],[-0.515854,15.116158],[-0.266257,14.924309],[0.374892,14.928908],[0.295646,14.444235],[0.429928,13.988733],[0.993046,13.33575],[1.024103,12.851826],[2.177108,12.625018],[2.154474,11.94015],[1.935986,11.64115],[1.447178,11.547719],[1.24347,11.110511],[0.899563,10.997339],[0.023803,11.018682],[-0.438702,11.098341],[-0.761576,10.93693],[-1.203358,11.009819],[-2.940409,10.96269],[-2.963896,10.395335],[-2.827496,9.642461]]]},"id":"BFA"}, +{"type":"Feature","properties":{"name":"Bangladesh"},"geometry":{"type":"Polygon","coordinates":[[[92.672721,22.041239],[92.652257,21.324048],[92.303234,21.475485],[92.368554,20.670883],[92.082886,21.192195],[92.025215,21.70157],[91.834891,22.182936],[91.417087,22.765019],[90.496006,22.805017],[90.586957,22.392794],[90.272971,21.836368],[89.847467,22.039146],[89.70205,21.857116],[89.418863,21.966179],[89.031961,22.055708],[88.876312,22.879146],[88.52977,23.631142],[88.69994,24.233715],[88.084422,24.501657],[88.306373,24.866079],[88.931554,25.238692],[88.209789,25.768066],[88.563049,26.446526],[89.355094,26.014407],[89.832481,25.965082],[89.920693,25.26975],[90.872211,25.132601],[91.799596,25.147432],[92.376202,24.976693],[91.915093,24.130414],[91.46773,24.072639],[91.158963,23.503527],[91.706475,22.985264],[91.869928,23.624346],[92.146035,23.627499],[92.672721,22.041239]]]},"id":"BGD"}, +{"type":"Feature","properties":{"name":"Bulgaria"},"geometry":{"type":"Polygon","coordinates":[[[22.65715,44.234923],[22.944832,43.823785],[23.332302,43.897011],[24.100679,43.741051],[25.569272,43.688445],[26.065159,43.943494],[27.2424,44.175986],[27.970107,43.812468],[28.558081,43.707462],[28.039095,43.293172],[27.673898,42.577892],[27.99672,42.007359],[27.135739,42.141485],[26.117042,41.826905],[26.106138,41.328899],[25.197201,41.234486],[24.492645,41.583896],[23.692074,41.309081],[22.952377,41.337994],[22.881374,41.999297],[22.380526,42.32026],[22.545012,42.461362],[22.436595,42.580321],[22.604801,42.898519],[22.986019,43.211161],[22.500157,43.642814],[22.410446,44.008063],[22.65715,44.234923]]]},"id":"BGR"}, +{"type":"Feature","properties":{"name":"The Bahamas"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.53466,23.75975],[-77.78,23.71],[-78.03405,24.28615],[-78.40848,24.57564],[-78.19087,25.2103],[-77.89,25.17],[-77.54,24.34],[-77.53466,23.75975]]],[[[-77.82,26.58],[-78.91,26.42],[-78.98,26.79],[-78.51,26.87],[-77.85,26.84],[-77.82,26.58]]],[[[-77,26.59],[-77.17255,25.87918],[-77.35641,26.00735],[-77.34,26.53],[-77.78802,26.92516],[-77.79,27.04],[-77,26.59]]]]},"id":"BHS"}, +{"type":"Feature","properties":{"name":"Bosnia and Herzegovina"},"geometry":{"type":"Polygon","coordinates":[[[19.005486,44.860234],[19.36803,44.863],[19.11761,44.42307],[19.59976,44.03847],[19.454,43.5681],[19.21852,43.52384],[19.03165,43.43253],[18.70648,43.20011],[18.56,42.65],[17.674922,43.028563],[17.297373,43.446341],[16.916156,43.667722],[16.456443,44.04124],[16.23966,44.351143],[15.750026,44.818712],[15.959367,45.233777],[16.318157,45.004127],[16.534939,45.211608],[17.002146,45.233777],[17.861783,45.06774],[18.553214,45.08159],[19.005486,44.860234]]]},"id":"BIH"}, +{"type":"Feature","properties":{"name":"Belarus"},"geometry":{"type":"Polygon","coordinates":[[[23.484128,53.912498],[24.450684,53.905702],[25.536354,54.282423],[25.768433,54.846963],[26.588279,55.167176],[26.494331,55.615107],[27.10246,55.783314],[28.176709,56.16913],[29.229513,55.918344],[29.371572,55.670091],[29.896294,55.789463],[30.873909,55.550976],[30.971836,55.081548],[30.757534,54.811771],[31.384472,54.157056],[31.791424,53.974639],[31.731273,53.794029],[32.405599,53.618045],[32.693643,53.351421],[32.304519,53.132726],[31.497644,53.167427],[31.305201,53.073996],[31.540018,52.742052],[31.785998,52.101678],[30.927549,52.042353],[30.619454,51.822806],[30.555117,51.319503],[30.157364,51.416138],[29.254938,51.368234],[28.992835,51.602044],[28.617613,51.427714],[28.241615,51.572227],[27.454066,51.592303],[26.337959,51.832289],[25.327788,51.910656],[24.553106,51.888461],[24.005078,51.617444],[23.527071,51.578454],[23.508002,52.023647],[23.199494,52.486977],[23.799199,52.691099],[23.804935,53.089731],[23.527536,53.470122],[23.484128,53.912498]]]},"id":"BLR"}, +{"type":"Feature","properties":{"name":"Belize"},"geometry":{"type":"Polygon","coordinates":[[[-89.14308,17.808319],[-89.150909,17.955468],[-89.029857,18.001511],[-88.848344,17.883198],[-88.490123,18.486831],[-88.300031,18.499982],[-88.296336,18.353273],[-88.106813,18.348674],[-88.123479,18.076675],[-88.285355,17.644143],[-88.197867,17.489475],[-88.302641,17.131694],[-88.239518,17.036066],[-88.355428,16.530774],[-88.551825,16.265467],[-88.732434,16.233635],[-88.930613,15.887273],[-89.229122,15.886938],[-89.150806,17.015577],[-89.14308,17.808319]]]},"id":"BLZ"}, +{"type":"Feature","properties":{"name":"Bolivia"},"geometry":{"type":"Polygon","coordinates":[[[-62.846468,-22.034985],[-63.986838,-21.993644],[-64.377021,-22.798091],[-64.964892,-22.075862],[-66.273339,-21.83231],[-67.106674,-22.735925],[-67.82818,-22.872919],[-68.219913,-21.494347],[-68.757167,-20.372658],[-68.442225,-19.405068],[-68.966818,-18.981683],[-69.100247,-18.260125],[-69.590424,-17.580012],[-68.959635,-16.500698],[-69.389764,-15.660129],[-69.160347,-15.323974],[-69.339535,-14.953195],[-68.948887,-14.453639],[-68.929224,-13.602684],[-68.88008,-12.899729],[-68.66508,-12.5613],[-69.529678,-10.951734],[-68.786158,-11.03638],[-68.271254,-11.014521],[-68.048192,-10.712059],[-67.173801,-10.306812],[-66.646908,-9.931331],[-65.338435,-9.761988],[-65.444837,-10.511451],[-65.321899,-10.895872],[-65.402281,-11.56627],[-64.316353,-12.461978],[-63.196499,-12.627033],[-62.80306,-13.000653],[-62.127081,-13.198781],[-61.713204,-13.489202],[-61.084121,-13.479384],[-60.503304,-13.775955],[-60.459198,-14.354007],[-60.264326,-14.645979],[-60.251149,-15.077219],[-60.542966,-15.09391],[-60.15839,-16.258284],[-58.24122,-16.299573],[-58.388058,-16.877109],[-58.280804,-17.27171],[-57.734558,-17.552468],[-57.498371,-18.174188],[-57.676009,-18.96184],[-57.949997,-19.400004],[-57.853802,-19.969995],[-58.166392,-20.176701],[-58.183471,-19.868399],[-59.115042,-19.356906],[-60.043565,-19.342747],[-61.786326,-19.633737],[-62.265961,-20.513735],[-62.291179,-21.051635],[-62.685057,-22.249029],[-62.846468,-22.034985]]]},"id":"BOL"}, +{"type":"Feature","properties":{"name":"Brazil"},"geometry":{"type":"Polygon","coordinates":[[[-57.625133,-30.216295],[-56.2909,-28.852761],[-55.162286,-27.881915],[-54.490725,-27.474757],[-53.648735,-26.923473],[-53.628349,-26.124865],[-54.13005,-25.547639],[-54.625291,-25.739255],[-54.428946,-25.162185],[-54.293476,-24.5708],[-54.29296,-24.021014],[-54.652834,-23.839578],[-55.027902,-24.001274],[-55.400747,-23.956935],[-55.517639,-23.571998],[-55.610683,-22.655619],[-55.797958,-22.35693],[-56.473317,-22.0863],[-56.88151,-22.282154],[-57.937156,-22.090176],[-57.870674,-20.732688],[-58.166392,-20.176701],[-57.853802,-19.969995],[-57.949997,-19.400004],[-57.676009,-18.96184],[-57.498371,-18.174188],[-57.734558,-17.552468],[-58.280804,-17.27171],[-58.388058,-16.877109],[-58.24122,-16.299573],[-60.15839,-16.258284],[-60.542966,-15.09391],[-60.251149,-15.077219],[-60.264326,-14.645979],[-60.459198,-14.354007],[-60.503304,-13.775955],[-61.084121,-13.479384],[-61.713204,-13.489202],[-62.127081,-13.198781],[-62.80306,-13.000653],[-63.196499,-12.627033],[-64.316353,-12.461978],[-65.402281,-11.56627],[-65.321899,-10.895872],[-65.444837,-10.511451],[-65.338435,-9.761988],[-66.646908,-9.931331],[-67.173801,-10.306812],[-68.048192,-10.712059],[-68.271254,-11.014521],[-68.786158,-11.03638],[-69.529678,-10.951734],[-70.093752,-11.123972],[-70.548686,-11.009147],[-70.481894,-9.490118],[-71.302412,-10.079436],[-72.184891,-10.053598],[-72.563033,-9.520194],[-73.226713,-9.462213],[-73.015383,-9.032833],[-73.571059,-8.424447],[-73.987235,-7.52383],[-73.723401,-7.340999],[-73.724487,-6.918595],[-73.120027,-6.629931],[-73.219711,-6.089189],[-72.964507,-5.741251],[-72.891928,-5.274561],[-71.748406,-4.593983],[-70.928843,-4.401591],[-70.794769,-4.251265],[-69.893635,-4.298187],[-69.444102,-1.556287],[-69.420486,-1.122619],[-69.577065,-0.549992],[-70.020656,-0.185156],[-70.015566,0.541414],[-69.452396,0.706159],[-69.252434,0.602651],[-69.218638,0.985677],[-69.804597,1.089081],[-69.816973,1.714805],[-67.868565,1.692455],[-67.53781,2.037163],[-67.259998,1.719999],[-67.065048,1.130112],[-66.876326,1.253361],[-66.325765,0.724452],[-65.548267,0.789254],[-65.354713,1.095282],[-64.611012,1.328731],[-64.199306,1.492855],[-64.083085,1.916369],[-63.368788,2.2009],[-63.422867,2.411068],[-64.269999,2.497006],[-64.408828,3.126786],[-64.368494,3.79721],[-64.816064,4.056445],[-64.628659,4.148481],[-63.888343,4.02053],[-63.093198,3.770571],[-62.804533,4.006965],[-62.08543,4.162124],[-60.966893,4.536468],[-60.601179,4.918098],[-60.733574,5.200277],[-60.213683,5.244486],[-59.980959,5.014061],[-60.111002,4.574967],[-59.767406,4.423503],[-59.53804,3.958803],[-59.815413,3.606499],[-59.974525,2.755233],[-59.718546,2.24963],[-59.646044,1.786894],[-59.030862,1.317698],[-58.540013,1.268088],[-58.429477,1.463942],[-58.11345,1.507195],[-57.660971,1.682585],[-57.335823,1.948538],[-56.782704,1.863711],[-56.539386,1.899523],[-55.995698,1.817667],[-55.9056,2.021996],[-56.073342,2.220795],[-55.973322,2.510364],[-55.569755,2.421506],[-55.097587,2.523748],[-54.524754,2.311849],[-54.088063,2.105557],[-53.778521,2.376703],[-53.554839,2.334897],[-53.418465,2.053389],[-52.939657,2.124858],[-52.556425,2.504705],[-52.249338,3.241094],[-51.657797,4.156232],[-51.317146,4.203491],[-51.069771,3.650398],[-50.508875,1.901564],[-49.974076,1.736483],[-49.947101,1.04619],[-50.699251,0.222984],[-50.388211,-0.078445],[-48.620567,-0.235489],[-48.584497,-1.237805],[-47.824956,-0.581618],[-46.566584,-0.941028],[-44.905703,-1.55174],[-44.417619,-2.13775],[-44.581589,-2.691308],[-43.418791,-2.38311],[-41.472657,-2.912018],[-39.978665,-2.873054],[-38.500383,-3.700652],[-37.223252,-4.820946],[-36.452937,-5.109404],[-35.597796,-5.149504],[-35.235389,-5.464937],[-34.89603,-6.738193],[-34.729993,-7.343221],[-35.128212,-8.996401],[-35.636967,-9.649282],[-37.046519,-11.040721],[-37.683612,-12.171195],[-38.423877,-13.038119],[-38.673887,-13.057652],[-38.953276,-13.79337],[-38.882298,-15.667054],[-39.161092,-17.208407],[-39.267339,-17.867746],[-39.583521,-18.262296],[-39.760823,-19.599113],[-40.774741,-20.904512],[-40.944756,-21.937317],[-41.754164,-22.370676],[-41.988284,-22.97007],[-43.074704,-22.967693],[-44.647812,-23.351959],[-45.352136,-23.796842],[-46.472093,-24.088969],[-47.648972,-24.885199],[-48.495458,-25.877025],[-48.641005,-26.623698],[-48.474736,-27.175912],[-48.66152,-28.186135],[-48.888457,-28.674115],[-49.587329,-29.224469],[-50.696874,-30.984465],[-51.576226,-31.777698],[-52.256081,-32.24537],[-52.7121,-33.196578],[-53.373662,-33.768378],[-53.650544,-33.202004],[-53.209589,-32.727666],[-53.787952,-32.047243],[-54.572452,-31.494511],[-55.60151,-30.853879],[-55.973245,-30.883076],[-56.976026,-30.109686],[-57.625133,-30.216295]]]},"id":"BRA"}, +{"type":"Feature","properties":{"name":"Brunei"},"geometry":{"type":"Polygon","coordinates":[[[114.204017,4.525874],[114.599961,4.900011],[115.45071,5.44773],[115.4057,4.955228],[115.347461,4.316636],[114.869557,4.348314],[114.659596,4.007637],[114.204017,4.525874]]]},"id":"BRN"}, +{"type":"Feature","properties":{"name":"Bhutan"},"geometry":{"type":"Polygon","coordinates":[[[91.696657,27.771742],[92.103712,27.452614],[92.033484,26.83831],[91.217513,26.808648],[90.373275,26.875724],[89.744528,26.719403],[88.835643,27.098966],[88.814248,27.299316],[89.47581,28.042759],[90.015829,28.296439],[90.730514,28.064954],[91.258854,28.040614],[91.696657,27.771742]]]},"id":"BTN"}, +{"type":"Feature","properties":{"name":"Botswana"},"geometry":{"type":"Polygon","coordinates":[[[25.649163,-18.536026],[25.850391,-18.714413],[26.164791,-19.293086],[27.296505,-20.39152],[27.724747,-20.499059],[27.727228,-20.851802],[28.02137,-21.485975],[28.794656,-21.639454],[29.432188,-22.091313],[28.017236,-22.827754],[27.11941,-23.574323],[26.786407,-24.240691],[26.485753,-24.616327],[25.941652,-24.696373],[25.765849,-25.174845],[25.664666,-25.486816],[25.025171,-25.71967],[24.211267,-25.670216],[23.73357,-25.390129],[23.312097,-25.26869],[22.824271,-25.500459],[22.579532,-25.979448],[22.105969,-26.280256],[21.605896,-26.726534],[20.889609,-26.828543],[20.66647,-26.477453],[20.758609,-25.868136],[20.165726,-24.917962],[19.895768,-24.76779],[19.895458,-21.849157],[20.881134,-21.814327],[20.910641,-18.252219],[21.65504,-18.219146],[23.196858,-17.869038],[23.579006,-18.281261],[24.217365,-17.889347],[24.520705,-17.887125],[25.084443,-17.661816],[25.264226,-17.73654],[25.649163,-18.536026]]]},"id":"BWA"}, +{"type":"Feature","properties":{"name":"Central African Republic"},"geometry":{"type":"Polygon","coordinates":[[[15.27946,7.421925],[16.106232,7.497088],[16.290562,7.754307],[16.456185,7.734774],[16.705988,7.508328],[17.96493,7.890914],[18.389555,8.281304],[18.911022,8.630895],[18.81201,8.982915],[19.094008,9.074847],[20.059685,9.012706],[21.000868,9.475985],[21.723822,10.567056],[22.231129,10.971889],[22.864165,11.142395],[22.977544,10.714463],[23.554304,10.089255],[23.55725,9.681218],[23.394779,9.265068],[23.459013,8.954286],[23.805813,8.666319],[24.567369,8.229188],[25.114932,7.825104],[25.124131,7.500085],[25.796648,6.979316],[26.213418,6.546603],[26.465909,5.946717],[27.213409,5.550953],[27.374226,5.233944],[27.044065,5.127853],[26.402761,5.150875],[25.650455,5.256088],[25.278798,5.170408],[25.128833,4.927245],[24.805029,4.897247],[24.410531,5.108784],[23.297214,4.609693],[22.84148,4.710126],[22.704124,4.633051],[22.405124,4.02916],[21.659123,4.224342],[20.927591,4.322786],[20.290679,4.691678],[19.467784,5.031528],[18.932312,4.709506],[18.542982,4.201785],[18.453065,3.504386],[17.8099,3.560196],[17.133042,3.728197],[16.537058,3.198255],[16.012852,2.26764],[15.907381,2.557389],[15.862732,3.013537],[15.405396,3.335301],[15.03622,3.851367],[14.950953,4.210389],[14.478372,4.732605],[14.558936,5.030598],[14.459407,5.451761],[14.53656,6.226959],[14.776545,6.408498],[15.27946,7.421925]]]},"id":"CAF"}, +{"type":"Feature","properties":{"name":"Canada"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-63.6645,46.55001],[-62.9393,46.41587],[-62.01208,46.44314],[-62.50391,46.03339],[-62.87433,45.96818],[-64.1428,46.39265],[-64.39261,46.72747],[-64.01486,47.03601],[-63.6645,46.55001]]],[[[-61.806305,49.10506],[-62.29318,49.08717],[-63.58926,49.40069],[-64.51912,49.87304],[-64.17322,49.95718],[-62.85829,49.70641],[-61.835585,49.28855],[-61.806305,49.10506]]],[[[-123.510002,48.510011],[-124.012891,48.370846],[-125.655013,48.825005],[-125.954994,49.179996],[-126.850004,49.53],[-127.029993,49.814996],[-128.059336,49.994959],[-128.444584,50.539138],[-128.358414,50.770648],[-127.308581,50.552574],[-126.695001,50.400903],[-125.755007,50.295018],[-125.415002,49.950001],[-124.920768,49.475275],[-123.922509,49.062484],[-123.510002,48.510011]]],[[[-56.134036,50.68701],[-56.795882,49.812309],[-56.143105,50.150117],[-55.471492,49.935815],[-55.822401,49.587129],[-54.935143,49.313011],[-54.473775,49.556691],[-53.476549,49.249139],[-53.786014,48.516781],[-53.086134,48.687804],[-52.958648,48.157164],[-52.648099,47.535548],[-53.069158,46.655499],[-53.521456,46.618292],[-54.178936,46.807066],[-53.961869,47.625207],[-54.240482,47.752279],[-55.400773,46.884994],[-55.997481,46.91972],[-55.291219,47.389562],[-56.250799,47.632545],[-57.325229,47.572807],[-59.266015,47.603348],[-59.419494,47.899454],[-58.796586,48.251525],[-59.231625,48.523188],[-58.391805,49.125581],[-57.35869,50.718274],[-56.73865,51.287438],[-55.870977,51.632094],[-55.406974,51.588273],[-55.600218,51.317075],[-56.134036,50.68701]]],[[[-132.710008,54.040009],[-132.710009,54.040009],[-132.710008,54.040009],[-132.710008,54.040009],[-131.74999,54.120004],[-132.04948,52.984621],[-131.179043,52.180433],[-131.57783,52.182371],[-132.180428,52.639707],[-132.549992,53.100015],[-133.054611,53.411469],[-133.239664,53.85108],[-133.180004,54.169975],[-132.710008,54.040009]]],[[[-79.26582,62.158675],[-79.65752,61.63308],[-80.09956,61.7181],[-80.36215,62.01649],[-80.315395,62.085565],[-79.92939,62.3856],[-79.52002,62.36371],[-79.26582,62.158675]]],[[[-81.89825,62.7108],[-83.06857,62.15922],[-83.77462,62.18231],[-83.99367,62.4528],[-83.25048,62.91409],[-81.87699,62.90458],[-81.89825,62.7108]]],[[[-85.161308,65.657285],[-84.975764,65.217518],[-84.464012,65.371772],[-83.882626,65.109618],[-82.787577,64.766693],[-81.642014,64.455136],[-81.55344,63.979609],[-80.817361,64.057486],[-80.103451,63.725981],[-80.99102,63.411246],[-82.547178,63.651722],[-83.108798,64.101876],[-84.100417,63.569712],[-85.523405,63.052379],[-85.866769,63.637253],[-87.221983,63.541238],[-86.35276,64.035833],[-86.224886,64.822917],[-85.883848,65.738778],[-85.161308,65.657285]]],[[[-75.86588,67.14886],[-76.98687,67.09873],[-77.2364,67.58809],[-76.81166,68.14856],[-75.89521,68.28721],[-75.1145,68.01036],[-75.10333,67.58202],[-75.21597,67.44425],[-75.86588,67.14886]]],[[[-95.647681,69.10769],[-96.269521,68.75704],[-97.617401,69.06003],[-98.431801,68.9507],[-99.797401,69.40003],[-98.917401,69.71003],[-98.218261,70.14354],[-97.157401,69.86003],[-96.557401,69.68003],[-96.257401,69.49003],[-95.647681,69.10769]]],[[[-90.5471,69.49766],[-90.55151,68.47499],[-89.21515,69.25873],[-88.01966,68.61508],[-88.31749,67.87338],[-87.35017,67.19872],[-86.30607,67.92146],[-85.57664,68.78456],[-85.52197,69.88211],[-84.10081,69.80539],[-82.62258,69.65826],[-81.28043,69.16202],[-81.2202,68.66567],[-81.96436,68.13253],[-81.25928,67.59716],[-81.38653,67.11078],[-83.34456,66.41154],[-84.73542,66.2573],[-85.76943,66.55833],[-86.0676,66.05625],[-87.03143,65.21297],[-87.32324,64.77563],[-88.48296,64.09897],[-89.91444,64.03273],[-90.70398,63.61017],[-90.77004,62.96021],[-91.93342,62.83508],[-93.15698,62.02469],[-94.24153,60.89865],[-94.62931,60.11021],[-94.6846,58.94882],[-93.21502,58.78212],[-92.76462,57.84571],[-92.29703,57.08709],[-90.89769,57.28468],[-89.03953,56.85172],[-88.03978,56.47162],[-87.32421,55.99914],[-86.07121,55.72383],[-85.01181,55.3026],[-83.36055,55.24489],[-82.27285,55.14832],[-82.4362,54.28227],[-82.12502,53.27703],[-81.40075,52.15788],[-79.91289,51.20842],[-79.14301,51.53393],[-78.60191,52.56208],[-79.12421,54.14145],[-79.82958,54.66772],[-78.22874,55.13645],[-77.0956,55.83741],[-76.54137,56.53423],[-76.62319,57.20263],[-77.30226,58.05209],[-78.51688,58.80458],[-77.33676,59.85261],[-77.77272,60.75788],[-78.10687,62.31964],[-77.41067,62.55053],[-75.69621,62.2784],[-74.6682,62.18111],[-73.83988,62.4438],[-72.90853,62.10507],[-71.67708,61.52535],[-71.37369,61.13717],[-69.59042,61.06141],[-69.62033,60.22125],[-69.2879,58.95736],[-68.37455,58.80106],[-67.64976,58.21206],[-66.20178,58.76731],[-65.24517,59.87071],[-64.58352,60.33558],[-63.80475,59.4426],[-62.50236,58.16708],[-61.39655,56.96745],[-61.79866,56.33945],[-60.46853,55.77548],[-59.56962,55.20407],[-57.97508,54.94549],[-57.3332,54.6265],[-56.93689,53.78032],[-56.15811,53.64749],[-55.75632,53.27036],[-55.68338,52.14664],[-56.40916,51.7707],[-57.12691,51.41972],[-58.77482,51.0643],[-60.03309,50.24277],[-61.72366,50.08046],[-63.86251,50.29099],[-65.36331,50.2982],[-66.39905,50.22897],[-67.23631,49.51156],[-68.51114,49.06836],[-69.95362,47.74488],[-71.10458,46.82171],[-70.25522,46.98606],[-68.65,48.3],[-66.55243,49.1331],[-65.05626,49.23278],[-64.17099,48.74248],[-65.11545,48.07085],[-64.79854,46.99297],[-64.47219,46.23849],[-63.17329,45.73902],[-61.52072,45.88377],[-60.51815,47.00793],[-60.4486,46.28264],[-59.80287,45.9204],[-61.03988,45.26525],[-63.25471,44.67014],[-64.24656,44.26553],[-65.36406,43.54523],[-66.1234,43.61867],[-66.16173,44.46512],[-64.42549,45.29204],[-66.02605,45.25931],[-67.13741,45.13753],[-67.79134,45.70281],[-67.79046,47.06636],[-68.23444,47.35486],[-68.905,47.185],[-69.237216,47.447781],[-69.99997,46.69307],[-70.305,45.915],[-70.66,45.46],[-71.08482,45.30524],[-71.405,45.255],[-71.50506,45.0082],[-73.34783,45.00738],[-74.867,45.00048],[-75.31821,44.81645],[-76.375,44.09631],[-76.5,44.018459],[-76.820034,43.628784],[-77.737885,43.629056],[-78.72028,43.625089],[-79.171674,43.466339],[-79.01,43.27],[-78.92,42.965],[-78.939362,42.863611],[-80.247448,42.3662],[-81.277747,42.209026],[-82.439278,41.675105],[-82.690089,41.675105],[-83.02981,41.832796],[-83.142,41.975681],[-83.12,42.08],[-82.9,42.43],[-82.43,42.98],[-82.137642,43.571088],[-82.337763,44.44],[-82.550925,45.347517],[-83.592851,45.816894],[-83.469551,45.994686],[-83.616131,46.116927],[-83.890765,46.116927],[-84.091851,46.275419],[-84.14212,46.512226],[-84.3367,46.40877],[-84.6049,46.4396],[-84.543749,46.538684],[-84.779238,46.637102],[-84.87608,46.900083],[-85.652363,47.220219],[-86.461991,47.553338],[-87.439793,47.94],[-88.378114,48.302918],[-89.272917,48.019808],[-89.6,48.01],[-90.83,48.27],[-91.64,48.14],[-92.61,48.45],[-93.63087,48.60926],[-94.32914,48.67074],[-94.64,48.84],[-94.81758,49.38905],[-95.15609,49.38425],[-95.15907,49],[-97.22872,49.0007],[-100.65,49],[-104.04826,48.99986],[-107.05,49],[-110.05,49],[-113,49],[-116.04818,49],[-117.03121,49],[-120,49],[-122.84,49],[-122.97421,49.002538],[-124.91024,49.98456],[-125.62461,50.41656],[-127.43561,50.83061],[-127.99276,51.71583],[-127.85032,52.32961],[-129.12979,52.75538],[-129.30523,53.56159],[-130.51497,54.28757],[-130.53611,54.80278],[-129.98,55.285],[-130.00778,55.91583],[-131.70781,56.55212],[-132.73042,57.69289],[-133.35556,58.41028],[-134.27111,58.86111],[-134.945,59.27056],[-135.47583,59.78778],[-136.47972,59.46389],[-137.4525,58.905],[-138.34089,59.56211],[-139.039,60],[-140.013,60.27682],[-140.99778,60.30639],[-140.9925,66.00003],[-140.986,69.712],[-139.12052,69.47102],[-137.54636,68.99002],[-136.50358,68.89804],[-135.62576,69.31512],[-134.41464,69.62743],[-132.92925,69.50534],[-131.43136,69.94451],[-129.79471,70.19369],[-129.10773,69.77927],[-128.36156,70.01286],[-128.13817,70.48384],[-127.44712,70.37721],[-125.75632,69.48058],[-124.42483,70.1584],[-124.28968,69.39969],[-123.06108,69.56372],[-122.6835,69.85553],[-121.47226,69.79778],[-119.94288,69.37786],[-117.60268,69.01128],[-116.22643,68.84151],[-115.2469,68.90591],[-113.89794,68.3989],[-115.30489,67.90261],[-113.49727,67.68815],[-110.798,67.80612],[-109.94619,67.98104],[-108.8802,67.38144],[-107.79239,67.88736],[-108.81299,68.31164],[-108.16721,68.65392],[-106.95,68.7],[-106.15,68.8],[-105.34282,68.56122],[-104.33791,68.018],[-103.22115,68.09775],[-101.45433,67.64689],[-99.90195,67.80566],[-98.4432,67.78165],[-98.5586,68.40394],[-97.66948,68.57864],[-96.11991,68.23939],[-96.12588,67.29338],[-95.48943,68.0907],[-94.685,68.06383],[-94.23282,69.06903],[-95.30408,69.68571],[-96.47131,70.08976],[-96.39115,71.19482],[-95.2088,71.92053],[-93.88997,71.76015],[-92.87818,71.31869],[-91.51964,70.19129],[-92.40692,69.69997],[-90.5471,69.49766]]],[[[-114.16717,73.12145],[-114.66634,72.65277],[-112.44102,72.9554],[-111.05039,72.4504],[-109.92035,72.96113],[-109.00654,72.63335],[-108.18835,71.65089],[-107.68599,72.06548],[-108.39639,73.08953],[-107.51645,73.23598],[-106.52259,73.07601],[-105.40246,72.67259],[-104.77484,71.6984],[-104.46476,70.99297],[-102.78537,70.49776],[-100.98078,70.02432],[-101.08929,69.58447],[-102.73116,69.50402],[-102.09329,69.11962],[-102.43024,68.75282],[-104.24,68.91],[-105.96,69.18],[-107.12254,69.11922],[-109,68.78],[-111.534149,68.630059],[-113.3132,68.53554],[-113.85496,69.00744],[-115.22,69.28],[-116.10794,69.16821],[-117.34,69.96],[-116.67473,70.06655],[-115.13112,70.2373],[-113.72141,70.19237],[-112.4161,70.36638],[-114.35,70.6],[-116.48684,70.52045],[-117.9048,70.54056],[-118.43238,70.9092],[-116.11311,71.30918],[-117.65568,71.2952],[-119.40199,71.55859],[-118.56267,72.30785],[-117.86642,72.70594],[-115.18909,73.31459],[-114.16717,73.12145]]],[[[-104.5,73.42],[-105.38,72.76],[-106.94,73.46],[-106.6,73.6],[-105.26,73.64],[-104.5,73.42]]],[[[-76.34,73.102685],[-76.251404,72.826385],[-77.314438,72.855545],[-78.39167,72.876656],[-79.486252,72.742203],[-79.775833,72.802902],[-80.876099,73.333183],[-80.833885,73.693184],[-80.353058,73.75972],[-78.064438,73.651932],[-76.34,73.102685]]],[[[-86.562179,73.157447],[-85.774371,72.534126],[-84.850112,73.340278],[-82.31559,73.750951],[-80.600088,72.716544],[-80.748942,72.061907],[-78.770639,72.352173],[-77.824624,72.749617],[-75.605845,72.243678],[-74.228616,71.767144],[-74.099141,71.33084],[-72.242226,71.556925],[-71.200015,70.920013],[-68.786054,70.525024],[-67.91497,70.121948],[-66.969033,69.186087],[-68.805123,68.720198],[-66.449866,68.067163],[-64.862314,67.847539],[-63.424934,66.928473],[-61.851981,66.862121],[-62.163177,66.160251],[-63.918444,64.998669],[-65.14886,65.426033],[-66.721219,66.388041],[-68.015016,66.262726],[-68.141287,65.689789],[-67.089646,65.108455],[-65.73208,64.648406],[-65.320168,64.382737],[-64.669406,63.392927],[-65.013804,62.674185],[-66.275045,62.945099],[-68.783186,63.74567],[-67.369681,62.883966],[-66.328297,62.280075],[-66.165568,61.930897],[-68.877367,62.330149],[-71.023437,62.910708],[-72.235379,63.397836],[-71.886278,63.679989],[-73.378306,64.193963],[-74.834419,64.679076],[-74.818503,64.389093],[-77.70998,64.229542],[-78.555949,64.572906],[-77.897281,65.309192],[-76.018274,65.326969],[-73.959795,65.454765],[-74.293883,65.811771],[-73.944912,66.310578],[-72.651167,67.284576],[-72.92606,67.726926],[-73.311618,68.069437],[-74.843307,68.554627],[-76.869101,68.894736],[-76.228649,69.147769],[-77.28737,69.76954],[-78.168634,69.826488],[-78.957242,70.16688],[-79.492455,69.871808],[-81.305471,69.743185],[-84.944706,69.966634],[-87.060003,70.260001],[-88.681713,70.410741],[-89.51342,70.762038],[-88.467721,71.218186],[-89.888151,71.222552],[-90.20516,72.235074],[-89.436577,73.129464],[-88.408242,73.537889],[-85.826151,73.803816],[-86.562179,73.157447]]],[[[-100.35642,73.84389],[-99.16387,73.63339],[-97.38,73.76],[-97.12,73.47],[-98.05359,72.99052],[-96.54,72.56],[-96.72,71.66],[-98.35966,71.27285],[-99.32286,71.35639],[-100.01482,71.73827],[-102.5,72.51],[-102.48,72.83],[-100.43836,72.70588],[-101.54,73.36],[-100.35642,73.84389]]],[[[-93.196296,72.771992],[-94.269047,72.024596],[-95.409856,72.061881],[-96.033745,72.940277],[-96.018268,73.43743],[-95.495793,73.862417],[-94.503658,74.134907],[-92.420012,74.100025],[-90.509793,73.856732],[-92.003965,72.966244],[-93.196296,72.771992]]],[[[-120.46,71.383602],[-123.09219,70.90164],[-123.62,71.34],[-125.928949,71.868688],[-125.5,72.292261],[-124.80729,73.02256],[-123.94,73.68],[-124.91775,74.29275],[-121.53788,74.44893],[-120.10978,74.24135],[-117.55564,74.18577],[-116.58442,73.89607],[-115.51081,73.47519],[-116.76794,73.22292],[-119.22,72.52],[-120.46,71.82],[-120.46,71.383602]]],[[[-93.612756,74.979997],[-94.156909,74.592347],[-95.608681,74.666864],[-96.820932,74.927623],[-96.288587,75.377828],[-94.85082,75.647218],[-93.977747,75.29649],[-93.612756,74.979997]]],[[[-98.5,76.72],[-97.735585,76.25656],[-97.704415,75.74344],[-98.16,75],[-99.80874,74.89744],[-100.88366,75.05736],[-100.86292,75.64075],[-102.50209,75.5638],[-102.56552,76.3366],[-101.48973,76.30537],[-99.98349,76.64634],[-98.57699,76.58859],[-98.5,76.72]]],[[[-108.21141,76.20168],[-107.81943,75.84552],[-106.92893,76.01282],[-105.881,75.9694],[-105.70498,75.47951],[-106.31347,75.00527],[-109.7,74.85],[-112.22307,74.41696],[-113.74381,74.39427],[-113.87135,74.72029],[-111.79421,75.1625],[-116.31221,75.04343],[-117.7104,75.2222],[-116.34602,76.19903],[-115.40487,76.47887],[-112.59056,76.14134],[-110.81422,75.54919],[-109.0671,75.47321],[-110.49726,76.42982],[-109.5811,76.79417],[-108.54859,76.67832],[-108.21141,76.20168]]],[[[-94.684086,77.097878],[-93.573921,76.776296],[-91.605023,76.778518],[-90.741846,76.449597],[-90.969661,76.074013],[-89.822238,75.847774],[-89.187083,75.610166],[-87.838276,75.566189],[-86.379192,75.482421],[-84.789625,75.699204],[-82.753445,75.784315],[-81.128531,75.713983],[-80.057511,75.336849],[-79.833933,74.923127],[-80.457771,74.657304],[-81.948843,74.442459],[-83.228894,74.564028],[-86.097452,74.410032],[-88.15035,74.392307],[-89.764722,74.515555],[-92.422441,74.837758],[-92.768285,75.38682],[-92.889906,75.882655],[-93.893824,76.319244],[-95.962457,76.441381],[-97.121379,76.751078],[-96.745123,77.161389],[-94.684086,77.097878]]],[[[-116.198587,77.645287],[-116.335813,76.876962],[-117.106051,76.530032],[-118.040412,76.481172],[-119.899318,76.053213],[-121.499995,75.900019],[-122.854924,76.116543],[-122.854925,76.116543],[-121.157535,76.864508],[-119.103939,77.51222],[-117.570131,77.498319],[-116.198587,77.645287]]],[[[-93.840003,77.519997],[-94.295608,77.491343],[-96.169654,77.555111],[-96.436304,77.834629],[-94.422577,77.820005],[-93.720656,77.634331],[-93.840003,77.519997]]],[[[-110.186938,77.697015],[-112.051191,77.409229],[-113.534279,77.732207],[-112.724587,78.05105],[-111.264443,78.152956],[-109.854452,77.996325],[-110.186938,77.697015]]],[[[-109.663146,78.601973],[-110.881314,78.40692],[-112.542091,78.407902],[-112.525891,78.550555],[-111.50001,78.849994],[-110.963661,78.804441],[-109.663146,78.601973]]],[[[-95.830295,78.056941],[-97.309843,77.850597],[-98.124289,78.082857],[-98.552868,78.458105],[-98.631984,78.87193],[-97.337231,78.831984],[-96.754399,78.765813],[-95.559278,78.418315],[-95.830295,78.056941]]],[[[-100.060192,78.324754],[-99.670939,77.907545],[-101.30394,78.018985],[-102.949809,78.343229],[-105.176133,78.380332],[-104.210429,78.67742],[-105.41958,78.918336],[-105.492289,79.301594],[-103.529282,79.165349],[-100.825158,78.800462],[-100.060192,78.324754]]],[[[-87.02,79.66],[-85.81435,79.3369],[-87.18756,79.0393],[-89.03535,78.28723],[-90.80436,78.21533],[-92.87669,78.34333],[-93.95116,78.75099],[-93.93574,79.11373],[-93.14524,79.3801],[-94.974,79.37248],[-96.07614,79.70502],[-96.70972,80.15777],[-96.01644,80.60233],[-95.32345,80.90729],[-94.29843,80.97727],[-94.73542,81.20646],[-92.40984,81.25739],[-91.13289,80.72345],[-89.45,80.509322],[-87.81,80.32],[-87.02,79.66]]],[[[-68.5,83.106322],[-65.82735,83.02801],[-63.68,82.9],[-61.85,82.6286],[-61.89388,82.36165],[-64.334,81.92775],[-66.75342,81.72527],[-67.65755,81.50141],[-65.48031,81.50657],[-67.84,80.9],[-69.4697,80.61683],[-71.18,79.8],[-73.2428,79.63415],[-73.88,79.430162],[-76.90773,79.32309],[-75.52924,79.19766],[-76.22046,79.01907],[-75.39345,78.52581],[-76.34354,78.18296],[-77.88851,77.89991],[-78.36269,77.50859],[-79.75951,77.20968],[-79.61965,76.98336],[-77.91089,77.022045],[-77.88911,76.777955],[-80.56125,76.17812],[-83.17439,76.45403],[-86.11184,76.29901],[-87.6,76.42],[-89.49068,76.47239],[-89.6161,76.95213],[-87.76739,77.17833],[-88.26,77.9],[-87.65,77.970222],[-84.97634,77.53873],[-86.34,78.18],[-87.96192,78.37181],[-87.15198,78.75867],[-85.37868,78.9969],[-85.09495,79.34543],[-86.50734,79.73624],[-86.93179,80.25145],[-84.19844,80.20836],[-83.408696,80.1],[-81.84823,80.46442],[-84.1,80.58],[-87.59895,80.51627],[-89.36663,80.85569],[-90.2,81.26],[-91.36786,81.5531],[-91.58702,81.89429],[-90.1,82.085],[-88.93227,82.11751],[-86.97024,82.27961],[-85.5,82.652273],[-84.260005,82.6],[-83.18,82.32],[-82.42,82.86],[-81.1,83.02],[-79.30664,83.13056],[-76.25,83.172059],[-75.71878,83.06404],[-72.83153,83.23324],[-70.665765,83.169781],[-68.5,83.106322]]]]},"id":"CAN"}, +{"type":"Feature","properties":{"name":"Switzerland"},"geometry":{"type":"Polygon","coordinates":[[[9.594226,47.525058],[9.632932,47.347601],[9.47997,47.10281],[9.932448,46.920728],[10.442701,46.893546],[10.363378,46.483571],[9.922837,46.314899],[9.182882,46.440215],[8.966306,46.036932],[8.489952,46.005151],[8.31663,46.163642],[7.755992,45.82449],[7.273851,45.776948],[6.843593,45.991147],[6.5001,46.429673],[6.022609,46.27299],[6.037389,46.725779],[6.768714,47.287708],[6.736571,47.541801],[7.192202,47.449766],[7.466759,47.620582],[8.317301,47.61358],[8.522612,47.830828],[9.594226,47.525058]]]},"id":"CHE"}, +{"type":"Feature","properties":{"name":"Chile"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-68.63401,-52.63637],[-68.63335,-54.8695],[-67.56244,-54.87001],[-66.95992,-54.89681],[-67.29103,-55.30124],[-68.14863,-55.61183],[-68.639991,-55.580018],[-69.2321,-55.49906],[-69.95809,-55.19843],[-71.00568,-55.05383],[-72.2639,-54.49514],[-73.2852,-53.95752],[-74.66253,-52.83749],[-73.8381,-53.04743],[-72.43418,-53.7154],[-71.10773,-54.07433],[-70.59178,-53.61583],[-70.26748,-52.93123],[-69.34565,-52.5183],[-68.63401,-52.63637]]],[[[-68.219913,-21.494347],[-67.82818,-22.872919],[-67.106674,-22.735925],[-66.985234,-22.986349],[-67.328443,-24.025303],[-68.417653,-24.518555],[-68.386001,-26.185016],[-68.5948,-26.506909],[-68.295542,-26.89934],[-69.001235,-27.521214],[-69.65613,-28.459141],[-70.01355,-29.367923],[-69.919008,-30.336339],[-70.535069,-31.36501],[-70.074399,-33.09121],[-69.814777,-33.273886],[-69.817309,-34.193571],[-70.388049,-35.169688],[-70.364769,-36.005089],[-71.121881,-36.658124],[-71.118625,-37.576827],[-70.814664,-38.552995],[-71.413517,-38.916022],[-71.680761,-39.808164],[-71.915734,-40.832339],[-71.746804,-42.051386],[-72.148898,-42.254888],[-71.915424,-43.408565],[-71.464056,-43.787611],[-71.793623,-44.207172],[-71.329801,-44.407522],[-71.222779,-44.784243],[-71.659316,-44.973689],[-71.552009,-45.560733],[-71.917258,-46.884838],[-72.447355,-47.738533],[-72.331161,-48.244238],[-72.648247,-48.878618],[-73.415436,-49.318436],[-73.328051,-50.378785],[-72.975747,-50.74145],[-72.309974,-50.67701],[-72.329404,-51.425956],[-71.914804,-52.009022],[-69.498362,-52.142761],[-68.571545,-52.299444],[-69.461284,-52.291951],[-69.94278,-52.537931],[-70.845102,-52.899201],[-71.006332,-53.833252],[-71.429795,-53.856455],[-72.557943,-53.53141],[-73.702757,-52.835069],[-73.702757,-52.83507],[-74.946763,-52.262754],[-75.260026,-51.629355],[-74.976632,-51.043396],[-75.479754,-50.378372],[-75.608015,-48.673773],[-75.18277,-47.711919],[-74.126581,-46.939253],[-75.644395,-46.647643],[-74.692154,-45.763976],[-74.351709,-44.103044],[-73.240356,-44.454961],[-72.717804,-42.383356],[-73.3889,-42.117532],[-73.701336,-43.365776],[-74.331943,-43.224958],[-74.017957,-41.794813],[-73.677099,-39.942213],[-73.217593,-39.258689],[-73.505559,-38.282883],[-73.588061,-37.156285],[-73.166717,-37.12378],[-72.553137,-35.50884],[-71.861732,-33.909093],[-71.43845,-32.418899],[-71.668721,-30.920645],[-71.370083,-30.095682],[-71.489894,-28.861442],[-70.905124,-27.64038],[-70.724954,-25.705924],[-70.403966,-23.628997],[-70.091246,-21.393319],[-70.16442,-19.756468],[-70.372572,-18.347975],[-69.858444,-18.092694],[-69.590424,-17.580012],[-69.100247,-18.260125],[-68.966818,-18.981683],[-68.442225,-19.405068],[-68.757167,-20.372658],[-68.219913,-21.494347]]]]},"id":"CHL"}, +{"type":"Feature","properties":{"name":"China"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.339188,18.678395],[109.47521,18.197701],[108.655208,18.507682],[108.626217,19.367888],[109.119056,19.821039],[110.211599,20.101254],[110.786551,20.077534],[111.010051,19.69593],[110.570647,19.255879],[110.339188,18.678395]]],[[[127.657407,49.76027],[129.397818,49.4406],[130.582293,48.729687],[130.987282,47.790132],[132.506672,47.78897],[133.373596,48.183442],[135.026311,48.47823],[134.500814,47.57844],[134.112362,47.212467],[133.769644,46.116927],[133.097127,45.144066],[131.883454,45.321162],[131.025212,44.967953],[131.288555,44.11152],[131.144688,42.92999],[130.633866,42.903015],[130.640016,42.395009],[129.994267,42.985387],[129.596669,42.424982],[128.052215,41.994285],[128.208433,41.466772],[127.343783,41.503152],[126.869083,41.816569],[126.182045,41.107336],[125.079942,40.569824],[124.265625,39.928493],[122.86757,39.637788],[122.131388,39.170452],[121.054554,38.897471],[121.585995,39.360854],[121.376757,39.750261],[122.168595,40.422443],[121.640359,40.94639],[120.768629,40.593388],[119.639602,39.898056],[119.023464,39.252333],[118.042749,39.204274],[117.532702,38.737636],[118.059699,38.061476],[118.87815,37.897325],[118.911636,37.448464],[119.702802,37.156389],[120.823457,37.870428],[121.711259,37.481123],[122.357937,37.454484],[122.519995,36.930614],[121.104164,36.651329],[120.637009,36.11144],[119.664562,35.609791],[119.151208,34.909859],[120.227525,34.360332],[120.620369,33.376723],[121.229014,32.460319],[121.908146,31.692174],[121.891919,30.949352],[121.264257,30.676267],[121.503519,30.142915],[122.092114,29.83252],[121.938428,29.018022],[121.684439,28.225513],[121.125661,28.135673],[120.395473,27.053207],[119.585497,25.740781],[118.656871,24.547391],[117.281606,23.624501],[115.890735,22.782873],[114.763827,22.668074],[114.152547,22.22376],[113.80678,22.54834],[113.241078,22.051367],[111.843592,21.550494],[110.785466,21.397144],[110.444039,20.341033],[109.889861,20.282457],[109.627655,21.008227],[109.864488,21.395051],[108.522813,21.715212],[108.05018,21.55238],[107.04342,21.811899],[106.567273,22.218205],[106.725403,22.794268],[105.811247,22.976892],[105.329209,23.352063],[104.476858,22.81915],[103.504515,22.703757],[102.706992,22.708795],[102.170436,22.464753],[101.652018,22.318199],[101.80312,21.174367],[101.270026,21.201652],[101.180005,21.436573],[101.150033,21.849984],[100.416538,21.558839],[99.983489,21.742937],[99.240899,22.118314],[99.531992,22.949039],[98.898749,23.142722],[98.660262,24.063286],[97.60472,23.897405],[97.724609,25.083637],[98.671838,25.918703],[98.712094,26.743536],[98.68269,27.508812],[98.246231,27.747221],[97.911988,28.335945],[97.327114,28.261583],[96.248833,28.411031],[96.586591,28.83098],[96.117679,29.452802],[95.404802,29.031717],[94.56599,29.277438],[93.413348,28.640629],[92.503119,27.896876],[91.696657,27.771742],[91.258854,28.040614],[90.730514,28.064954],[90.015829,28.296439],[89.47581,28.042759],[88.814248,27.299316],[88.730326,28.086865],[88.120441,27.876542],[86.954517,27.974262],[85.82332,28.203576],[85.011638,28.642774],[84.23458,28.839894],[83.898993,29.320226],[83.337115,29.463732],[82.327513,30.115268],[81.525804,30.422717],[81.111256,30.183481],[79.721367,30.882715],[78.738894,31.515906],[78.458446,32.618164],[79.176129,32.48378],[79.208892,32.994395],[78.811086,33.506198],[78.912269,34.321936],[77.837451,35.49401],[76.192848,35.898403],[75.896897,36.666806],[75.158028,37.133031],[74.980002,37.41999],[74.829986,37.990007],[74.864816,38.378846],[74.257514,38.606507],[73.928852,38.505815],[73.675379,39.431237],[73.960013,39.660008],[73.822244,39.893973],[74.776862,40.366425],[75.467828,40.562072],[76.526368,40.427946],[76.904484,41.066486],[78.187197,41.185316],[78.543661,41.582243],[80.11943,42.123941],[80.25999,42.349999],[80.18015,42.920068],[80.866206,43.180362],[79.966106,44.917517],[81.947071,45.317027],[82.458926,45.53965],[83.180484,47.330031],[85.16429,47.000956],[85.720484,47.452969],[85.768233,48.455751],[86.598776,48.549182],[87.35997,49.214981],[87.751264,49.297198],[88.013832,48.599463],[88.854298,48.069082],[90.280826,47.693549],[90.970809,46.888146],[90.585768,45.719716],[90.94554,45.286073],[92.133891,45.115076],[93.480734,44.975472],[94.688929,44.352332],[95.306875,44.241331],[95.762455,43.319449],[96.349396,42.725635],[97.451757,42.74889],[99.515817,42.524691],[100.845866,42.663804],[101.83304,42.514873],[103.312278,41.907468],[104.522282,41.908347],[104.964994,41.59741],[106.129316,42.134328],[107.744773,42.481516],[109.243596,42.519446],[110.412103,42.871234],[111.129682,43.406834],[111.829588,43.743118],[111.667737,44.073176],[111.348377,44.457442],[111.873306,45.102079],[112.436062,45.011646],[113.463907,44.808893],[114.460332,45.339817],[115.985096,45.727235],[116.717868,46.388202],[117.421701,46.672733],[118.874326,46.805412],[119.66327,46.69268],[119.772824,47.048059],[118.866574,47.74706],[118.064143,48.06673],[117.295507,47.697709],[116.308953,47.85341],[115.742837,47.726545],[115.485282,48.135383],[116.191802,49.134598],[116.678801,49.888531],[117.879244,49.510983],[119.288461,50.142883],[119.279366,50.582908],[120.18205,51.643566],[120.738191,51.964115],[120.725789,52.516226],[120.177089,52.753886],[121.003085,53.251401],[122.245748,53.431726],[123.571507,53.458804],[125.068211,53.161045],[125.946349,52.792799],[126.564399,51.784255],[126.939157,51.353894],[127.287456,50.739797],[127.657407,49.76027]]]]},"id":"CHN"}, +{"type":"Feature","properties":{"name":"Ivory Coast"},"geometry":{"type":"Polygon","coordinates":[[[-2.856125,4.994476],[-3.311084,4.984296],[-4.00882,5.179813],[-4.649917,5.168264],[-5.834496,4.993701],[-6.528769,4.705088],[-7.518941,4.338288],[-7.712159,4.364566],[-7.635368,5.188159],[-7.539715,5.313345],[-7.570153,5.707352],[-7.993693,6.12619],[-8.311348,6.193033],[-8.60288,6.467564],[-8.385452,6.911801],[-8.485446,7.395208],[-8.439298,7.686043],[-8.280703,7.68718],[-8.221792,8.123329],[-8.299049,8.316444],[-8.203499,8.455453],[-7.8321,8.575704],[-8.079114,9.376224],[-8.309616,9.789532],[-8.229337,10.12902],[-8.029944,10.206535],[-7.89959,10.297382],[-7.622759,10.147236],[-6.850507,10.138994],[-6.666461,10.430811],[-6.493965,10.411303],[-6.205223,10.524061],[-6.050452,10.096361],[-5.816926,10.222555],[-5.404342,10.370737],[-4.954653,10.152714],[-4.779884,9.821985],[-4.330247,9.610835],[-3.980449,9.862344],[-3.511899,9.900326],[-2.827496,9.642461],[-2.56219,8.219628],[-2.983585,7.379705],[-3.24437,6.250472],[-2.810701,5.389051],[-2.856125,4.994476]]]},"id":"CIV"}, +{"type":"Feature","properties":{"name":"Cameroon"},"geometry":{"type":"Polygon","coordinates":[[[13.075822,2.267097],[12.951334,2.321616],[12.35938,2.192812],[11.751665,2.326758],[11.276449,2.261051],[9.649158,2.283866],[9.795196,3.073404],[9.404367,3.734527],[8.948116,3.904129],[8.744924,4.352215],[8.488816,4.495617],[8.500288,4.771983],[8.757533,5.479666],[9.233163,6.444491],[9.522706,6.453482],[10.118277,7.03877],[10.497375,7.055358],[11.058788,6.644427],[11.745774,6.981383],[11.839309,7.397042],[12.063946,7.799808],[12.218872,8.305824],[12.753672,8.717763],[12.955468,9.417772],[13.1676,9.640626],[13.308676,10.160362],[13.57295,10.798566],[14.415379,11.572369],[14.468192,11.904752],[14.577178,12.085361],[14.181336,12.483657],[14.213531,12.802035],[14.495787,12.859396],[14.893386,12.219048],[14.960152,11.555574],[14.923565,10.891325],[15.467873,9.982337],[14.909354,9.992129],[14.627201,9.920919],[14.171466,10.021378],[13.954218,9.549495],[14.544467,8.965861],[14.979996,8.796104],[15.120866,8.38215],[15.436092,7.692812],[15.27946,7.421925],[14.776545,6.408498],[14.53656,6.226959],[14.459407,5.451761],[14.558936,5.030598],[14.478372,4.732605],[14.950953,4.210389],[15.03622,3.851367],[15.405396,3.335301],[15.862732,3.013537],[15.907381,2.557389],[16.012852,2.26764],[15.940919,1.727673],[15.146342,1.964015],[14.337813,2.227875],[13.075822,2.267097]]]},"id":"CMR"}, +{"type":"Feature","properties":{"name":"Democratic Republic of the Congo"},"geometry":{"type":"Polygon","coordinates":[[[30.83386,3.509166],[30.773347,2.339883],[31.174149,2.204465],[30.85267,1.849396],[30.468508,1.583805],[30.086154,1.062313],[29.875779,0.59738],[29.819503,-0.20531],[29.587838,-0.587406],[29.579466,-1.341313],[29.291887,-1.620056],[29.254835,-2.21511],[29.117479,-2.292211],[29.024926,-2.839258],[29.276384,-3.293907],[29.339998,-4.499983],[29.519987,-5.419979],[29.419993,-5.939999],[29.620032,-6.520015],[30.199997,-7.079981],[30.740015,-8.340007],[30.346086,-8.238257],[29.002912,-8.407032],[28.734867,-8.526559],[28.449871,-9.164918],[28.673682,-9.605925],[28.49607,-10.789884],[28.372253,-11.793647],[28.642417,-11.971569],[29.341548,-12.360744],[29.616001,-12.178895],[29.699614,-13.257227],[28.934286,-13.248958],[28.523562,-12.698604],[28.155109,-12.272481],[27.388799,-12.132747],[27.16442,-11.608748],[26.553088,-11.92444],[25.75231,-11.784965],[25.418118,-11.330936],[24.78317,-11.238694],[24.314516,-11.262826],[24.257155,-10.951993],[23.912215,-10.926826],[23.456791,-10.867863],[22.837345,-11.017622],[22.402798,-10.993075],[22.155268,-11.084801],[22.208753,-9.894796],[21.875182,-9.523708],[21.801801,-8.908707],[21.949131,-8.305901],[21.746456,-7.920085],[21.728111,-7.290872],[20.514748,-7.299606],[20.601823,-6.939318],[20.091622,-6.94309],[20.037723,-7.116361],[19.417502,-7.155429],[19.166613,-7.738184],[19.016752,-7.988246],[18.464176,-7.847014],[18.134222,-7.987678],[17.47297,-8.068551],[17.089996,-7.545689],[16.860191,-7.222298],[16.57318,-6.622645],[16.326528,-5.87747],[13.375597,-5.864241],[13.024869,-5.984389],[12.735171,-5.965682],[12.322432,-6.100092],[12.182337,-5.789931],[12.436688,-5.684304],[12.468004,-5.248362],[12.631612,-4.991271],[12.995517,-4.781103],[13.25824,-4.882957],[13.600235,-4.500138],[14.144956,-4.510009],[14.209035,-4.793092],[14.582604,-4.970239],[15.170992,-4.343507],[15.75354,-3.855165],[16.00629,-3.535133],[15.972803,-2.712392],[16.407092,-1.740927],[16.865307,-1.225816],[17.523716,-0.74383],[17.638645,-0.424832],[17.663553,-0.058084],[17.82654,0.288923],[17.774192,0.855659],[17.898835,1.741832],[18.094276,2.365722],[18.393792,2.900443],[18.453065,3.504386],[18.542982,4.201785],[18.932312,4.709506],[19.467784,5.031528],[20.290679,4.691678],[20.927591,4.322786],[21.659123,4.224342],[22.405124,4.02916],[22.704124,4.633051],[22.84148,4.710126],[23.297214,4.609693],[24.410531,5.108784],[24.805029,4.897247],[25.128833,4.927245],[25.278798,5.170408],[25.650455,5.256088],[26.402761,5.150875],[27.044065,5.127853],[27.374226,5.233944],[27.979977,4.408413],[28.428994,4.287155],[28.696678,4.455077],[29.159078,4.389267],[29.715995,4.600805],[29.9535,4.173699],[30.83386,3.509166]]]},"id":"COD"}, +{"type":"Feature","properties":{"name":"Republic of the Congo"},"geometry":{"type":"Polygon","coordinates":[[[12.995517,-4.781103],[12.62076,-4.438023],[12.318608,-4.60623],[11.914963,-5.037987],[11.093773,-3.978827],[11.855122,-3.426871],[11.478039,-2.765619],[11.820964,-2.514161],[12.495703,-2.391688],[12.575284,-1.948511],[13.109619,-2.42874],[13.992407,-2.470805],[14.29921,-1.998276],[14.425456,-1.333407],[14.316418,-0.552627],[13.843321,0.038758],[14.276266,1.19693],[14.026669,1.395677],[13.282631,1.314184],[13.003114,1.830896],[13.075822,2.267097],[14.337813,2.227875],[15.146342,1.964015],[15.940919,1.727673],[16.012852,2.26764],[16.537058,3.198255],[17.133042,3.728197],[17.8099,3.560196],[18.453065,3.504386],[18.393792,2.900443],[18.094276,2.365722],[17.898835,1.741832],[17.774192,0.855659],[17.82654,0.288923],[17.663553,-0.058084],[17.638645,-0.424832],[17.523716,-0.74383],[16.865307,-1.225816],[16.407092,-1.740927],[15.972803,-2.712392],[16.00629,-3.535133],[15.75354,-3.855165],[15.170992,-4.343507],[14.582604,-4.970239],[14.209035,-4.793092],[14.144956,-4.510009],[13.600235,-4.500138],[13.25824,-4.882957],[12.995517,-4.781103]]]},"id":"COG"}, +{"type":"Feature","properties":{"name":"Colombia"},"geometry":{"type":"Polygon","coordinates":[[[-75.373223,-0.152032],[-75.801466,0.084801],[-76.292314,0.416047],[-76.57638,0.256936],[-77.424984,0.395687],[-77.668613,0.825893],[-77.855061,0.809925],[-78.855259,1.380924],[-78.990935,1.69137],[-78.617831,1.766404],[-78.662118,2.267355],[-78.42761,2.629556],[-77.931543,2.696606],[-77.510431,3.325017],[-77.12769,3.849636],[-77.496272,4.087606],[-77.307601,4.667984],[-77.533221,5.582812],[-77.318815,5.845354],[-77.476661,6.691116],[-77.881571,7.223771],[-77.753414,7.70984],[-77.431108,7.638061],[-77.242566,7.935278],[-77.474723,8.524286],[-77.353361,8.670505],[-76.836674,8.638749],[-76.086384,9.336821],[-75.6746,9.443248],[-75.664704,9.774003],[-75.480426,10.61899],[-74.906895,11.083045],[-74.276753,11.102036],[-74.197223,11.310473],[-73.414764,11.227015],[-72.627835,11.731972],[-72.238195,11.95555],[-71.75409,12.437303],[-71.399822,12.376041],[-71.137461,12.112982],[-71.331584,11.776284],[-71.973922,11.608672],[-72.227575,11.108702],[-72.614658,10.821975],[-72.905286,10.450344],[-73.027604,9.73677],[-73.304952,9.152],[-72.78873,9.085027],[-72.660495,8.625288],[-72.439862,8.405275],[-72.360901,8.002638],[-72.479679,7.632506],[-72.444487,7.423785],[-72.198352,7.340431],[-71.960176,6.991615],[-70.674234,7.087785],[-70.093313,6.960376],[-69.38948,6.099861],[-68.985319,6.206805],[-68.265052,6.153268],[-67.695087,6.267318],[-67.34144,6.095468],[-67.521532,5.55687],[-67.744697,5.221129],[-67.823012,4.503937],[-67.621836,3.839482],[-67.337564,3.542342],[-67.303173,3.318454],[-67.809938,2.820655],[-67.447092,2.600281],[-67.181294,2.250638],[-66.876326,1.253361],[-67.065048,1.130112],[-67.259998,1.719999],[-67.53781,2.037163],[-67.868565,1.692455],[-69.816973,1.714805],[-69.804597,1.089081],[-69.218638,0.985677],[-69.252434,0.602651],[-69.452396,0.706159],[-70.015566,0.541414],[-70.020656,-0.185156],[-69.577065,-0.549992],[-69.420486,-1.122619],[-69.444102,-1.556287],[-69.893635,-4.298187],[-70.394044,-3.766591],[-70.692682,-3.742872],[-70.047709,-2.725156],[-70.813476,-2.256865],[-71.413646,-2.342802],[-71.774761,-2.16979],[-72.325787,-2.434218],[-73.070392,-2.308954],[-73.659504,-1.260491],[-74.122395,-1.002833],[-74.441601,-0.53082],[-75.106625,-0.057205],[-75.373223,-0.152032]]]},"id":"COL"}, +{"type":"Feature","properties":{"name":"Costa Rica"},"geometry":{"type":"Polygon","coordinates":[[[-82.965783,8.225028],[-83.508437,8.446927],[-83.711474,8.656836],[-83.596313,8.830443],[-83.632642,9.051386],[-83.909886,9.290803],[-84.303402,9.487354],[-84.647644,9.615537],[-84.713351,9.908052],[-84.97566,10.086723],[-84.911375,9.795992],[-85.110923,9.55704],[-85.339488,9.834542],[-85.660787,9.933347],[-85.797445,10.134886],[-85.791709,10.439337],[-85.659314,10.754331],[-85.941725,10.895278],[-85.71254,11.088445],[-85.561852,11.217119],[-84.903003,10.952303],[-84.673069,11.082657],[-84.355931,10.999226],[-84.190179,10.79345],[-83.895054,10.726839],[-83.655612,10.938764],[-83.40232,10.395438],[-83.015677,9.992982],[-82.546196,9.566135],[-82.932891,9.476812],[-82.927155,9.07433],[-82.719183,8.925709],[-82.868657,8.807266],[-82.829771,8.626295],[-82.913176,8.423517],[-82.965783,8.225028]]]},"id":"CRI"}, +{"type":"Feature","properties":{"name":"Cuba"},"geometry":{"type":"Polygon","coordinates":[[[-82.268151,23.188611],[-81.404457,23.117271],[-80.618769,23.10598],[-79.679524,22.765303],[-79.281486,22.399202],[-78.347434,22.512166],[-77.993296,22.277194],[-77.146422,21.657851],[-76.523825,21.20682],[-76.19462,21.220565],[-75.598222,21.016624],[-75.67106,20.735091],[-74.933896,20.693905],[-74.178025,20.284628],[-74.296648,20.050379],[-74.961595,19.923435],[-75.63468,19.873774],[-76.323656,19.952891],[-77.755481,19.855481],[-77.085108,20.413354],[-77.492655,20.673105],[-78.137292,20.739949],[-78.482827,21.028613],[-78.719867,21.598114],[-79.285,21.559175],[-80.217475,21.827324],[-80.517535,22.037079],[-81.820943,22.192057],[-82.169992,22.387109],[-81.795002,22.636965],[-82.775898,22.68815],[-83.494459,22.168518],[-83.9088,22.154565],[-84.052151,21.910575],[-84.54703,21.801228],[-84.974911,21.896028],[-84.447062,22.20495],[-84.230357,22.565755],[-83.77824,22.788118],[-83.267548,22.983042],[-82.510436,23.078747],[-82.268151,23.188611]]]},"id":"CUB"}, +{"type":"Feature","properties":{"name":"Northern Cyprus"},"geometry":{"type":"Polygon","coordinates":[[[32.73178,35.140026],[32.802474,35.145504],[32.946961,35.386703],[33.667227,35.373216],[34.576474,35.671596],[33.900804,35.245756],[33.973617,35.058506],[33.86644,35.093595],[33.675392,35.017863],[33.525685,35.038688],[33.475817,35.000345],[33.455922,35.101424],[33.383833,35.162712],[33.190977,35.173125],[32.919572,35.087833],[32.73178,35.140026]]]},"id":"-99"}, +{"type":"Feature","properties":{"name":"Cyprus"},"geometry":{"type":"Polygon","coordinates":[[[33.973617,35.058506],[34.004881,34.978098],[32.979827,34.571869],[32.490296,34.701655],[32.256667,35.103232],[32.73178,35.140026],[32.919572,35.087833],[33.190977,35.173125],[33.383833,35.162712],[33.455922,35.101424],[33.475817,35.000345],[33.525685,35.038688],[33.675392,35.017863],[33.86644,35.093595],[33.973617,35.058506]]]},"id":"CYP"}, +{"type":"Feature","properties":{"name":"Czech Republic"},"geometry":{"type":"Polygon","coordinates":[[[16.960288,48.596982],[16.499283,48.785808],[16.029647,48.733899],[15.253416,49.039074],[14.901447,48.964402],[14.338898,48.555305],[13.595946,48.877172],[13.031329,49.307068],[12.521024,49.547415],[12.415191,49.969121],[12.240111,50.266338],[12.966837,50.484076],[13.338132,50.733234],[14.056228,50.926918],[14.307013,51.117268],[14.570718,51.002339],[15.016996,51.106674],[15.490972,50.78473],[16.238627,50.697733],[16.176253,50.422607],[16.719476,50.215747],[16.868769,50.473974],[17.554567,50.362146],[17.649445,50.049038],[18.392914,49.988629],[18.853144,49.49623],[18.554971,49.495015],[18.399994,49.315001],[18.170498,49.271515],[18.104973,49.043983],[17.913512,48.996493],[17.886485,48.903475],[17.545007,48.800019],[17.101985,48.816969],[16.960288,48.596982]]]},"id":"CZE"}, +{"type":"Feature","properties":{"name":"Germany"},"geometry":{"type":"Polygon","coordinates":[[[9.921906,54.983104],[9.93958,54.596642],[10.950112,54.363607],[10.939467,54.008693],[11.956252,54.196486],[12.51844,54.470371],[13.647467,54.075511],[14.119686,53.757029],[14.353315,53.248171],[14.074521,52.981263],[14.4376,52.62485],[14.685026,52.089947],[14.607098,51.745188],[15.016996,51.106674],[14.570718,51.002339],[14.307013,51.117268],[14.056228,50.926918],[13.338132,50.733234],[12.966837,50.484076],[12.240111,50.266338],[12.415191,49.969121],[12.521024,49.547415],[13.031329,49.307068],[13.595946,48.877172],[13.243357,48.416115],[12.884103,48.289146],[13.025851,47.637584],[12.932627,47.467646],[12.62076,47.672388],[12.141357,47.703083],[11.426414,47.523766],[10.544504,47.566399],[10.402084,47.302488],[9.896068,47.580197],[9.594226,47.525058],[8.522612,47.830828],[8.317301,47.61358],[7.466759,47.620582],[7.593676,48.333019],[8.099279,49.017784],[6.65823,49.201958],[6.18632,49.463803],[6.242751,49.902226],[6.043073,50.128052],[6.156658,50.803721],[5.988658,51.851616],[6.589397,51.852029],[6.84287,52.22844],[7.092053,53.144043],[6.90514,53.482162],[7.100425,53.693932],[7.936239,53.748296],[8.121706,53.527792],[8.800734,54.020786],[8.572118,54.395646],[8.526229,54.962744],[9.282049,54.830865],[9.921906,54.983104]]]},"id":"DEU"}, +{"type":"Feature","properties":{"name":"Djibouti"},"geometry":{"type":"Polygon","coordinates":[[[43.081226,12.699639],[43.317852,12.390148],[43.286381,11.974928],[42.715874,11.735641],[43.145305,11.46204],[42.776852,10.926879],[42.55493,11.10511],[42.31414,11.0342],[41.75557,11.05091],[41.73959,11.35511],[41.66176,11.6312],[42,12.1],[42.35156,12.54223],[42.779642,12.455416],[43.081226,12.699639]]]},"id":"DJI"}, +{"type":"Feature","properties":{"name":"Denmark"},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.690006,55.609991],[12.089991,54.800015],[11.043543,55.364864],[10.903914,55.779955],[12.370904,56.111407],[12.690006,55.609991]]],[[[10.912182,56.458621],[10.667804,56.081383],[10.369993,56.190007],[9.649985,55.469999],[9.921906,54.983104],[9.282049,54.830865],[8.526229,54.962744],[8.120311,55.517723],[8.089977,56.540012],[8.256582,56.809969],[8.543438,57.110003],[9.424469,57.172066],[9.775559,57.447941],[10.580006,57.730017],[10.546106,57.215733],[10.25,56.890016],[10.369993,56.609982],[10.912182,56.458621]]]]},"id":"DNK"}, +{"type":"Feature","properties":{"name":"Dominican Republic"},"geometry":{"type":"Polygon","coordinates":[[[-71.712361,19.714456],[-71.587304,19.884911],[-70.806706,19.880286],[-70.214365,19.622885],[-69.950815,19.648],[-69.76925,19.293267],[-69.222126,19.313214],[-69.254346,19.015196],[-68.809412,18.979074],[-68.317943,18.612198],[-68.689316,18.205142],[-69.164946,18.422648],[-69.623988,18.380713],[-69.952934,18.428307],[-70.133233,18.245915],[-70.517137,18.184291],[-70.669298,18.426886],[-70.99995,18.283329],[-71.40021,17.598564],[-71.657662,17.757573],[-71.708305,18.044997],[-71.687738,18.31666],[-71.945112,18.6169],[-71.701303,18.785417],[-71.624873,19.169838],[-71.712361,19.714456]]]},"id":"DOM"}, +{"type":"Feature","properties":{"name":"Algeria"},"geometry":{"type":"Polygon","coordinates":[[[11.999506,23.471668],[8.572893,21.565661],[5.677566,19.601207],[4.267419,19.155265],[3.158133,19.057364],[3.146661,19.693579],[2.683588,19.85623],[2.060991,20.142233],[1.823228,20.610809],[-1.550055,22.792666],[-4.923337,24.974574],[-8.6844,27.395744],[-8.665124,27.589479],[-8.66559,27.656426],[-8.674116,28.841289],[-7.059228,29.579228],[-6.060632,29.7317],[-5.242129,30.000443],[-4.859646,30.501188],[-3.690441,30.896952],[-3.647498,31.637294],[-3.06898,31.724498],[-2.616605,32.094346],[-1.307899,32.262889],[-1.124551,32.651522],[-1.388049,32.864015],[-1.733455,33.919713],[-1.792986,34.527919],[-2.169914,35.168396],[-1.208603,35.714849],[-0.127454,35.888662],[0.503877,36.301273],[1.466919,36.605647],[3.161699,36.783905],[4.815758,36.865037],[5.32012,36.716519],[6.26182,37.110655],[7.330385,37.118381],[7.737078,36.885708],[8.420964,36.946427],[8.217824,36.433177],[8.376368,35.479876],[8.140981,34.655146],[7.524482,34.097376],[7.612642,33.344115],[8.430473,32.748337],[8.439103,32.506285],[9.055603,32.102692],[9.48214,30.307556],[9.805634,29.424638],[9.859998,28.95999],[9.683885,28.144174],[9.756128,27.688259],[9.629056,27.140953],[9.716286,26.512206],[9.319411,26.094325],[9.910693,25.365455],[9.948261,24.936954],[10.303847,24.379313],[10.771364,24.562532],[11.560669,24.097909],[11.999506,23.471668]]]},"id":"DZA"}, +{"type":"Feature","properties":{"name":"Ecuador"},"geometry":{"type":"Polygon","coordinates":[[[-80.302561,-3.404856],[-79.770293,-2.657512],[-79.986559,-2.220794],[-80.368784,-2.685159],[-80.967765,-2.246943],[-80.764806,-1.965048],[-80.933659,-1.057455],[-80.58337,-0.906663],[-80.399325,-0.283703],[-80.020898,0.36034],[-80.09061,0.768429],[-79.542762,0.982938],[-78.855259,1.380924],[-77.855061,0.809925],[-77.668613,0.825893],[-77.424984,0.395687],[-76.57638,0.256936],[-76.292314,0.416047],[-75.801466,0.084801],[-75.373223,-0.152032],[-75.233723,-0.911417],[-75.544996,-1.56161],[-76.635394,-2.608678],[-77.837905,-3.003021],[-78.450684,-3.873097],[-78.639897,-4.547784],[-79.205289,-4.959129],[-79.624979,-4.454198],[-80.028908,-4.346091],[-80.442242,-4.425724],[-80.469295,-4.059287],[-80.184015,-3.821162],[-80.302561,-3.404856]]]},"id":"ECU"}, +{"type":"Feature","properties":{"name":"Egypt"},"geometry":{"type":"Polygon","coordinates":[[[34.9226,29.50133],[34.64174,29.09942],[34.42655,28.34399],[34.15451,27.8233],[33.92136,27.6487],[33.58811,27.97136],[33.13676,28.41765],[32.42323,29.85108],[32.32046,29.76043],[32.73482,28.70523],[33.34876,27.69989],[34.10455,26.14227],[34.47387,25.59856],[34.79507,25.03375],[35.69241,23.92671],[35.49372,23.75237],[35.52598,23.10244],[36.69069,22.20485],[36.86623,22],[32.9,22],[29.02,22],[25,22],[25,25.6825],[25,29.238655],[24.70007,30.04419],[24.95762,30.6616],[24.80287,31.08929],[25.16482,31.56915],[26.49533,31.58568],[27.45762,31.32126],[28.45048,31.02577],[28.91353,30.87005],[29.68342,31.18686],[30.09503,31.4734],[30.97693,31.55586],[31.68796,31.4296],[31.96041,30.9336],[32.19247,31.26034],[32.99392,31.02407],[33.7734,30.96746],[34.26544,31.21936],[34.9226,29.50133]]]},"id":"EGY"}, +{"type":"Feature","properties":{"name":"Eritrea"},"geometry":{"type":"Polygon","coordinates":[[[42.35156,12.54223],[42.00975,12.86582],[41.59856,13.45209],[41.155194,13.77332],[40.8966,14.11864],[40.026219,14.519579],[39.34061,14.53155],[39.0994,14.74064],[38.51295,14.50547],[37.90607,14.95943],[37.59377,14.2131],[36.42951,14.42211],[36.323189,14.822481],[36.75386,16.291874],[36.85253,16.95655],[37.16747,17.26314],[37.904,17.42754],[38.41009,17.998307],[38.990623,16.840626],[39.26611,15.922723],[39.814294,15.435647],[41.179275,14.49108],[41.734952,13.921037],[42.276831,13.343992],[42.589576,13.000421],[43.081226,12.699639],[42.779642,12.455416],[42.35156,12.54223]]]},"id":"ERI"}, +{"type":"Feature","properties":{"name":"Spain"},"geometry":{"type":"Polygon","coordinates":[[[-9.034818,41.880571],[-8.984433,42.592775],[-9.392884,43.026625],[-7.97819,43.748338],[-6.754492,43.567909],[-5.411886,43.57424],[-4.347843,43.403449],[-3.517532,43.455901],[-1.901351,43.422802],[-1.502771,43.034014],[0.338047,42.579546],[0.701591,42.795734],[1.826793,42.343385],[2.985999,42.473015],[3.039484,41.89212],[2.091842,41.226089],[0.810525,41.014732],[0.721331,40.678318],[0.106692,40.123934],[-0.278711,39.309978],[0.111291,38.738514],[-0.467124,38.292366],[-0.683389,37.642354],[-1.438382,37.443064],[-2.146453,36.674144],[-3.415781,36.6589],[-4.368901,36.677839],[-4.995219,36.324708],[-5.37716,35.94685],[-5.866432,36.029817],[-6.236694,36.367677],[-6.520191,36.942913],[-7.453726,37.097788],[-7.537105,37.428904],[-7.166508,37.803894],[-7.029281,38.075764],[-7.374092,38.373059],[-7.098037,39.030073],[-7.498632,39.629571],[-7.066592,39.711892],[-7.026413,40.184524],[-6.86402,40.330872],[-6.851127,41.111083],[-6.389088,41.381815],[-6.668606,41.883387],[-7.251309,41.918346],[-7.422513,41.792075],[-8.013175,41.790886],[-8.263857,42.280469],[-8.671946,42.134689],[-9.034818,41.880571]]]},"id":"ESP"}, +{"type":"Feature","properties":{"name":"Estonia"},"geometry":{"type":"Polygon","coordinates":[[[24.312863,57.793424],[24.428928,58.383413],[24.061198,58.257375],[23.42656,58.612753],[23.339795,59.18724],[24.604214,59.465854],[25.864189,59.61109],[26.949136,59.445803],[27.981114,59.475388],[28.131699,59.300825],[27.420166,58.724581],[27.716686,57.791899],[27.288185,57.474528],[26.463532,57.476389],[25.60281,57.847529],[25.164594,57.970157],[24.312863,57.793424]]]},"id":"EST"}, +{"type":"Feature","properties":{"name":"Ethiopia"},"geometry":{"type":"Polygon","coordinates":[[[37.90607,14.95943],[38.51295,14.50547],[39.0994,14.74064],[39.34061,14.53155],[40.02625,14.51959],[40.8966,14.11864],[41.1552,13.77333],[41.59856,13.45209],[42.00975,12.86582],[42.35156,12.54223],[42,12.1],[41.66176,11.6312],[41.73959,11.35511],[41.75557,11.05091],[42.31414,11.0342],[42.55493,11.10511],[42.776852,10.926879],[42.55876,10.57258],[42.92812,10.02194],[43.29699,9.54048],[43.67875,9.18358],[46.94834,7.99688],[47.78942,8.003],[44.9636,5.00162],[43.66087,4.95755],[42.76967,4.25259],[42.12861,4.23413],[41.855083,3.918912],[41.1718,3.91909],[40.76848,4.25702],[39.85494,3.83879],[39.559384,3.42206],[38.89251,3.50074],[38.67114,3.61607],[38.43697,3.58851],[38.120915,3.598605],[36.855093,4.447864],[36.159079,4.447864],[35.817448,4.776966],[35.817448,5.338232],[35.298007,5.506],[34.70702,6.59422],[34.25032,6.82607],[34.0751,7.22595],[33.56829,7.71334],[32.95418,7.78497],[33.2948,8.35458],[33.8255,8.37916],[33.97498,8.68456],[33.96162,9.58358],[34.25745,10.63009],[34.73115,10.91017],[34.83163,11.31896],[35.26049,12.08286],[35.86363,12.57828],[36.27022,13.56333],[36.42951,14.42211],[37.59377,14.2131],[37.90607,14.95943]]]},"id":"ETH"}, +{"type":"Feature","properties":{"name":"Finland"},"geometry":{"type":"Polygon","coordinates":[[[28.59193,69.064777],[28.445944,68.364613],[29.977426,67.698297],[29.054589,66.944286],[30.21765,65.80598],[29.54443,64.948672],[30.444685,64.204453],[30.035872,63.552814],[31.516092,62.867687],[31.139991,62.357693],[30.211107,61.780028],[28.069998,60.503517],[26.255173,60.423961],[24.496624,60.057316],[22.869695,59.846373],[22.290764,60.391921],[21.322244,60.72017],[21.544866,61.705329],[21.059211,62.607393],[21.536029,63.189735],[22.442744,63.81781],[24.730512,64.902344],[25.398068,65.111427],[25.294043,65.534346],[23.903379,66.006927],[23.56588,66.396051],[23.539473,67.936009],[21.978535,68.616846],[20.645593,69.106247],[21.244936,69.370443],[22.356238,68.841741],[23.66205,68.891247],[24.735679,68.649557],[25.689213,69.092114],[26.179622,69.825299],[27.732292,70.164193],[29.015573,69.766491],[28.59193,69.064777]]]},"id":"FIN"}, +{"type":"Feature","properties":{"name":"Fiji"},"geometry":{"type":"MultiPolygon","coordinates":[[[[178.3736,-17.33992],[178.71806,-17.62846],[178.55271,-18.15059],[177.93266,-18.28799],[177.38146,-18.16432],[177.28504,-17.72465],[177.67087,-17.38114],[178.12557,-17.50481],[178.3736,-17.33992]]],[[[179.364143,-16.801354],[178.725059,-17.012042],[178.596839,-16.63915],[179.096609,-16.433984],[179.413509,-16.379054],[180,-16.067133],[180,-16.555217],[179.364143,-16.801354]]],[[[-179.917369,-16.501783],[-180,-16.555217],[-180,-16.067133],[-179.79332,-16.020882],[-179.917369,-16.501783]]]]},"id":"FJI"}, +{"type":"Feature","properties":{"name":"Falkland Islands"},"geometry":{"type":"Polygon","coordinates":[[[-61.2,-51.85],[-60,-51.25],[-59.15,-51.5],[-58.55,-51.1],[-57.75,-51.55],[-58.05,-51.9],[-59.4,-52.2],[-59.85,-51.85],[-60.7,-52.3],[-61.2,-51.85]]]},"id":"FLK"}, +{"type":"Feature","properties":{"name":"France"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-52.556425,2.504705],[-52.939657,2.124858],[-53.418465,2.053389],[-53.554839,2.334897],[-53.778521,2.376703],[-54.088063,2.105557],[-54.524754,2.311849],[-54.27123,2.738748],[-54.184284,3.194172],[-54.011504,3.62257],[-54.399542,4.212611],[-54.478633,4.896756],[-53.958045,5.756548],[-53.618453,5.646529],[-52.882141,5.409851],[-51.823343,4.565768],[-51.657797,4.156232],[-52.249338,3.241094],[-52.556425,2.504705]]],[[[9.560016,42.152492],[9.229752,41.380007],[8.775723,41.583612],[8.544213,42.256517],[8.746009,42.628122],[9.390001,43.009985],[9.560016,42.152492]]],[[[3.588184,50.378992],[4.286023,49.907497],[4.799222,49.985373],[5.674052,49.529484],[5.897759,49.442667],[6.18632,49.463803],[6.65823,49.201958],[8.099279,49.017784],[7.593676,48.333019],[7.466759,47.620582],[7.192202,47.449766],[6.736571,47.541801],[6.768714,47.287708],[6.037389,46.725779],[6.022609,46.27299],[6.5001,46.429673],[6.843593,45.991147],[6.802355,45.70858],[7.096652,45.333099],[6.749955,45.028518],[7.007562,44.254767],[7.549596,44.127901],[7.435185,43.693845],[6.529245,43.128892],[4.556963,43.399651],[3.100411,43.075201],[2.985999,42.473015],[1.826793,42.343385],[0.701591,42.795734],[0.338047,42.579546],[-1.502771,43.034014],[-1.901351,43.422802],[-1.384225,44.02261],[-1.193798,46.014918],[-2.225724,47.064363],[-2.963276,47.570327],[-4.491555,47.954954],[-4.59235,48.68416],[-3.295814,48.901692],[-1.616511,48.644421],[-1.933494,49.776342],[-0.989469,49.347376],[1.338761,50.127173],[1.639001,50.946606],[2.513573,51.148506],[2.658422,50.796848],[3.123252,50.780363],[3.588184,50.378992]]]]},"id":"FRA"}, +{"type":"Feature","properties":{"name":"Gabon"},"geometry":{"type":"Polygon","coordinates":[[[11.093773,-3.978827],[10.066135,-2.969483],[9.405245,-2.144313],[8.797996,-1.111301],[8.830087,-0.779074],[9.04842,-0.459351],[9.291351,0.268666],[9.492889,1.01012],[9.830284,1.067894],[11.285079,1.057662],[11.276449,2.261051],[11.751665,2.326758],[12.35938,2.192812],[12.951334,2.321616],[13.075822,2.267097],[13.003114,1.830896],[13.282631,1.314184],[14.026669,1.395677],[14.276266,1.19693],[13.843321,0.038758],[14.316418,-0.552627],[14.425456,-1.333407],[14.29921,-1.998276],[13.992407,-2.470805],[13.109619,-2.42874],[12.575284,-1.948511],[12.495703,-2.391688],[11.820964,-2.514161],[11.478039,-2.765619],[11.855122,-3.426871],[11.093773,-3.978827]]]},"id":"GAB"}, +{"type":"Feature","properties":{"name":"United Kingdom"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-5.661949,54.554603],[-6.197885,53.867565],[-6.95373,54.073702],[-7.572168,54.059956],[-7.366031,54.595841],[-7.572168,55.131622],[-6.733847,55.17286],[-5.661949,54.554603]]],[[[-3.005005,58.635],[-4.073828,57.553025],[-3.055002,57.690019],[-1.959281,57.6848],[-2.219988,56.870017],[-3.119003,55.973793],[-2.085009,55.909998],[-2.005676,55.804903],[-1.114991,54.624986],[-0.430485,54.464376],[0.184981,53.325014],[0.469977,52.929999],[1.681531,52.73952],[1.559988,52.099998],[1.050562,51.806761],[1.449865,51.289428],[0.550334,50.765739],[-0.787517,50.774989],[-2.489998,50.500019],[-2.956274,50.69688],[-3.617448,50.228356],[-4.542508,50.341837],[-5.245023,49.96],[-5.776567,50.159678],[-4.30999,51.210001],[-3.414851,51.426009],[-3.422719,51.426848],[-4.984367,51.593466],[-5.267296,51.9914],[-4.222347,52.301356],[-4.770013,52.840005],[-4.579999,53.495004],[-3.093831,53.404547],[-3.09208,53.404441],[-2.945009,53.985],[-3.614701,54.600937],[-3.630005,54.615013],[-4.844169,54.790971],[-5.082527,55.061601],[-4.719112,55.508473],[-5.047981,55.783986],[-5.586398,55.311146],[-5.644999,56.275015],[-6.149981,56.78501],[-5.786825,57.818848],[-5.009999,58.630013],[-4.211495,58.550845],[-3.005005,58.635]]]]},"id":"GBR"}, +{"type":"Feature","properties":{"name":"Georgia"},"geometry":{"type":"Polygon","coordinates":[[[41.554084,41.535656],[41.703171,41.962943],[41.45347,42.645123],[40.875469,43.013628],[40.321394,43.128634],[39.955009,43.434998],[40.076965,43.553104],[40.922185,43.382159],[42.394395,43.220308],[43.756017,42.740828],[43.9312,42.554974],[44.537623,42.711993],[45.470279,42.502781],[45.77641,42.092444],[46.404951,41.860675],[46.145432,41.722802],[46.637908,41.181673],[46.501637,41.064445],[45.962601,41.123873],[45.217426,41.411452],[44.97248,41.248129],[43.582746,41.092143],[42.619549,41.583173],[41.554084,41.535656]]]},"id":"GEO"}, +{"type":"Feature","properties":{"name":"Ghana"},"geometry":{"type":"Polygon","coordinates":[[[1.060122,5.928837],[-0.507638,5.343473],[-1.063625,5.000548],[-1.964707,4.710462],[-2.856125,4.994476],[-2.810701,5.389051],[-3.24437,6.250472],[-2.983585,7.379705],[-2.56219,8.219628],[-2.827496,9.642461],[-2.963896,10.395335],[-2.940409,10.96269],[-1.203358,11.009819],[-0.761576,10.93693],[-0.438702,11.098341],[0.023803,11.018682],[-0.049785,10.706918],[0.36758,10.191213],[0.365901,9.465004],[0.461192,8.677223],[0.712029,8.312465],[0.490957,7.411744],[0.570384,6.914359],[0.836931,6.279979],[1.060122,5.928837]]]},"id":"GHA"}, +{"type":"Feature","properties":{"name":"Guinea"},"geometry":{"type":"Polygon","coordinates":[[[-8.439298,7.686043],[-8.722124,7.711674],[-8.926065,7.309037],[-9.208786,7.313921],[-9.403348,7.526905],[-9.33728,7.928534],[-9.755342,8.541055],[-10.016567,8.428504],[-10.230094,8.406206],[-10.505477,8.348896],[-10.494315,8.715541],[-10.65477,8.977178],[-10.622395,9.26791],[-10.839152,9.688246],[-11.117481,10.045873],[-11.917277,10.046984],[-12.150338,9.858572],[-12.425929,9.835834],[-12.596719,9.620188],[-12.711958,9.342712],[-13.24655,8.903049],[-13.685154,9.494744],[-14.074045,9.886167],[-14.330076,10.01572],[-14.579699,10.214467],[-14.693232,10.656301],[-14.839554,10.876572],[-15.130311,11.040412],[-14.685687,11.527824],[-14.382192,11.509272],[-14.121406,11.677117],[-13.9008,11.678719],[-13.743161,11.811269],[-13.828272,12.142644],[-13.718744,12.247186],[-13.700476,12.586183],[-13.217818,12.575874],[-12.499051,12.33209],[-12.278599,12.35444],[-12.203565,12.465648],[-11.658301,12.386583],[-11.513943,12.442988],[-11.456169,12.076834],[-11.297574,12.077971],[-11.036556,12.211245],[-10.87083,12.177887],[-10.593224,11.923975],[-10.165214,11.844084],[-9.890993,12.060479],[-9.567912,12.194243],[-9.327616,12.334286],[-9.127474,12.30806],[-8.905265,12.088358],[-8.786099,11.812561],[-8.376305,11.393646],[-8.581305,11.136246],[-8.620321,10.810891],[-8.407311,10.909257],[-8.282357,10.792597],[-8.335377,10.494812],[-8.029944,10.206535],[-8.229337,10.12902],[-8.309616,9.789532],[-8.079114,9.376224],[-7.8321,8.575704],[-8.203499,8.455453],[-8.299049,8.316444],[-8.221792,8.123329],[-8.280703,7.68718],[-8.439298,7.686043]]]},"id":"GIN"}, +{"type":"Feature","properties":{"name":"Gambia"},"geometry":{"type":"Polygon","coordinates":[[[-16.841525,13.151394],[-16.713729,13.594959],[-15.624596,13.623587],[-15.39877,13.860369],[-15.081735,13.876492],[-14.687031,13.630357],[-14.376714,13.62568],[-14.046992,13.794068],[-13.844963,13.505042],[-14.277702,13.280585],[-14.712197,13.298207],[-15.141163,13.509512],[-15.511813,13.27857],[-15.691001,13.270353],[-15.931296,13.130284],[-16.841525,13.151394]]]},"id":"GMB"}, +{"type":"Feature","properties":{"name":"Guinea Bissau"},"geometry":{"type":"Polygon","coordinates":[[[-15.130311,11.040412],[-15.66418,11.458474],[-16.085214,11.524594],[-16.314787,11.806515],[-16.308947,11.958702],[-16.613838,12.170911],[-16.677452,12.384852],[-16.147717,12.547762],[-15.816574,12.515567],[-15.548477,12.62817],[-13.700476,12.586183],[-13.718744,12.247186],[-13.828272,12.142644],[-13.743161,11.811269],[-13.9008,11.678719],[-14.121406,11.677117],[-14.382192,11.509272],[-14.685687,11.527824],[-15.130311,11.040412]]]},"id":"GNB"}, +{"type":"Feature","properties":{"name":"Equatorial Guinea"},"geometry":{"type":"Polygon","coordinates":[[[9.492889,1.01012],[9.305613,1.160911],[9.649158,2.283866],[11.276449,2.261051],[11.285079,1.057662],[9.830284,1.067894],[9.492889,1.01012]]]},"id":"GNQ"}, +{"type":"Feature","properties":{"name":"Greece"},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.69998,35.705004],[24.246665,35.368022],[25.025015,35.424996],[25.769208,35.354018],[25.745023,35.179998],[26.290003,35.29999],[26.164998,35.004995],[24.724982,34.919988],[24.735007,35.084991],[23.514978,35.279992],[23.69998,35.705004]]],[[[26.604196,41.562115],[26.294602,40.936261],[26.056942,40.824123],[25.447677,40.852545],[24.925848,40.947062],[23.714811,40.687129],[24.407999,40.124993],[23.899968,39.962006],[23.342999,39.960998],[22.813988,40.476005],[22.626299,40.256561],[22.849748,39.659311],[23.350027,39.190011],[22.973099,38.970903],[23.530016,38.510001],[24.025025,38.219993],[24.040011,37.655015],[23.115003,37.920011],[23.409972,37.409991],[22.774972,37.30501],[23.154225,36.422506],[22.490028,36.41],[21.670026,36.844986],[21.295011,37.644989],[21.120034,38.310323],[20.730032,38.769985],[20.217712,39.340235],[20.150016,39.624998],[20.615,40.110007],[20.674997,40.435],[20.99999,40.580004],[21.02004,40.842727],[21.674161,40.931275],[22.055378,41.149866],[22.597308,41.130487],[22.76177,41.3048],[22.952377,41.337994],[23.692074,41.309081],[24.492645,41.583896],[25.197201,41.234486],[26.106138,41.328899],[26.117042,41.826905],[26.604196,41.562115]]]]},"id":"GRC"}, +{"type":"Feature","properties":{"name":"Greenland"},"geometry":{"type":"Polygon","coordinates":[[[-46.76379,82.62796],[-43.40644,83.22516],[-39.89753,83.18018],[-38.62214,83.54905],[-35.08787,83.64513],[-27.10046,83.51966],[-20.84539,82.72669],[-22.69182,82.34165],[-26.51753,82.29765],[-31.9,82.2],[-31.39646,82.02154],[-27.85666,82.13178],[-24.84448,81.78697],[-22.90328,82.09317],[-22.07175,81.73449],[-23.16961,81.15271],[-20.62363,81.52462],[-15.76818,81.91245],[-12.77018,81.71885],[-12.20855,81.29154],[-16.28533,80.58004],[-16.85,80.35],[-20.04624,80.17708],[-17.73035,80.12912],[-18.9,79.4],[-19.70499,78.75128],[-19.67353,77.63859],[-18.47285,76.98565],[-20.03503,76.94434],[-21.67944,76.62795],[-19.83407,76.09808],[-19.59896,75.24838],[-20.66818,75.15585],[-19.37281,74.29561],[-21.59422,74.22382],[-20.43454,73.81713],[-20.76234,73.46436],[-22.17221,73.30955],[-23.56593,73.30663],[-22.31311,72.62928],[-22.29954,72.18409],[-24.27834,72.59788],[-24.79296,72.3302],[-23.44296,72.08016],[-22.13281,71.46898],[-21.75356,70.66369],[-23.53603,70.471],[-24.30702,70.85649],[-25.54341,71.43094],[-25.20135,70.75226],[-26.36276,70.22646],[-23.72742,70.18401],[-22.34902,70.12946],[-25.02927,69.2588],[-27.74737,68.47046],[-30.67371,68.12503],[-31.77665,68.12078],[-32.81105,67.73547],[-34.20196,66.67974],[-36.35284,65.9789],[-37.04378,65.93768],[-38.37505,65.69213],[-39.81222,65.45848],[-40.66899,64.83997],[-40.68281,64.13902],[-41.1887,63.48246],[-42.81938,62.68233],[-42.41666,61.90093],[-42.86619,61.07404],[-43.3784,60.09772],[-44.7875,60.03676],[-46.26364,60.85328],[-48.26294,60.85843],[-49.23308,61.40681],[-49.90039,62.38336],[-51.63325,63.62691],[-52.14014,64.27842],[-52.27659,65.1767],[-53.66166,66.09957],[-53.30161,66.8365],[-53.96911,67.18899],[-52.9804,68.35759],[-51.47536,68.72958],[-51.08041,69.14781],[-50.87122,69.9291],[-52.013585,69.574925],[-52.55792,69.42616],[-53.45629,69.283625],[-54.68336,69.61003],[-54.75001,70.28932],[-54.35884,70.821315],[-53.431315,70.835755],[-51.39014,70.56978],[-53.10937,71.20485],[-54.00422,71.54719],[-55,71.406537],[-55.83468,71.65444],[-54.71819,72.58625],[-55.32634,72.95861],[-56.12003,73.64977],[-57.32363,74.71026],[-58.59679,75.09861],[-58.58516,75.51727],[-61.26861,76.10238],[-63.39165,76.1752],[-66.06427,76.13486],[-68.50438,76.06141],[-69.66485,76.37975],[-71.40257,77.00857],[-68.77671,77.32312],[-66.76397,77.37595],[-71.04293,77.63595],[-73.297,78.04419],[-73.15938,78.43271],[-69.37345,78.91388],[-65.7107,79.39436],[-65.3239,79.75814],[-68.02298,80.11721],[-67.15129,80.51582],[-63.68925,81.21396],[-62.23444,81.3211],[-62.65116,81.77042],[-60.28249,82.03363],[-57.20744,82.19074],[-54.13442,82.19962],[-53.04328,81.88833],[-50.39061,82.43883],[-48.00386,82.06481],[-46.59984,81.985945],[-44.523,81.6607],[-46.9007,82.19979],[-46.76379,82.62796]]]},"id":"GRL"}, +{"type":"Feature","properties":{"name":"Guatemala"},"geometry":{"type":"Polygon","coordinates":[[[-90.095555,13.735338],[-90.608624,13.909771],[-91.23241,13.927832],[-91.689747,14.126218],[-92.22775,14.538829],[-92.20323,14.830103],[-92.087216,15.064585],[-92.229249,15.251447],[-91.74796,16.066565],[-90.464473,16.069562],[-90.438867,16.41011],[-90.600847,16.470778],[-90.711822,16.687483],[-91.08167,16.918477],[-91.453921,17.252177],[-91.002269,17.254658],[-91.00152,17.817595],[-90.067934,17.819326],[-89.14308,17.808319],[-89.150806,17.015577],[-89.229122,15.886938],[-88.930613,15.887273],[-88.604586,15.70638],[-88.518364,15.855389],[-88.225023,15.727722],[-88.68068,15.346247],[-89.154811,15.066419],[-89.22522,14.874286],[-89.145535,14.678019],[-89.353326,14.424133],[-89.587343,14.362586],[-89.534219,14.244816],[-89.721934,14.134228],[-90.064678,13.88197],[-90.095555,13.735338]]]},"id":"GTM"}, +{"type":"Feature","properties":{"name":"Guyana"},"geometry":{"type":"Polygon","coordinates":[[[-59.758285,8.367035],[-59.101684,7.999202],[-58.482962,7.347691],[-58.454876,6.832787],[-58.078103,6.809094],[-57.542219,6.321268],[-57.147436,5.97315],[-57.307246,5.073567],[-57.914289,4.812626],[-57.86021,4.576801],[-58.044694,4.060864],[-57.601569,3.334655],[-57.281433,3.333492],[-57.150098,2.768927],[-56.539386,1.899523],[-56.782704,1.863711],[-57.335823,1.948538],[-57.660971,1.682585],[-58.11345,1.507195],[-58.429477,1.463942],[-58.540013,1.268088],[-59.030862,1.317698],[-59.646044,1.786894],[-59.718546,2.24963],[-59.974525,2.755233],[-59.815413,3.606499],[-59.53804,3.958803],[-59.767406,4.423503],[-60.111002,4.574967],[-59.980959,5.014061],[-60.213683,5.244486],[-60.733574,5.200277],[-61.410303,5.959068],[-61.139415,6.234297],[-61.159336,6.696077],[-60.543999,6.856584],[-60.295668,7.043911],[-60.637973,7.415],[-60.550588,7.779603],[-59.758285,8.367035]]]},"id":"GUY"}, +{"type":"Feature","properties":{"name":"Honduras"},"geometry":{"type":"Polygon","coordinates":[[[-87.316654,12.984686],[-87.489409,13.297535],[-87.793111,13.38448],[-87.723503,13.78505],[-87.859515,13.893312],[-88.065343,13.964626],[-88.503998,13.845486],[-88.541231,13.980155],[-88.843073,14.140507],[-89.058512,14.340029],[-89.353326,14.424133],[-89.145535,14.678019],[-89.22522,14.874286],[-89.154811,15.066419],[-88.68068,15.346247],[-88.225023,15.727722],[-88.121153,15.688655],[-87.901813,15.864458],[-87.61568,15.878799],[-87.522921,15.797279],[-87.367762,15.84694],[-86.903191,15.756713],[-86.440946,15.782835],[-86.119234,15.893449],[-86.001954,16.005406],[-85.683317,15.953652],[-85.444004,15.885749],[-85.182444,15.909158],[-84.983722,15.995923],[-84.52698,15.857224],[-84.368256,15.835158],[-84.063055,15.648244],[-83.773977,15.424072],[-83.410381,15.270903],[-83.147219,14.995829],[-83.489989,15.016267],[-83.628585,14.880074],[-83.975721,14.749436],[-84.228342,14.748764],[-84.449336,14.621614],[-84.649582,14.666805],[-84.820037,14.819587],[-84.924501,14.790493],[-85.052787,14.551541],[-85.148751,14.560197],[-85.165365,14.35437],[-85.514413,14.079012],[-85.698665,13.960078],[-85.801295,13.836055],[-86.096264,14.038187],[-86.312142,13.771356],[-86.520708,13.778487],[-86.755087,13.754845],[-86.733822,13.263093],[-86.880557,13.254204],[-87.005769,13.025794],[-87.316654,12.984686]]]},"id":"HND"}, +{"type":"Feature","properties":{"name":"Croatia"},"geometry":{"type":"Polygon","coordinates":[[[18.829838,45.908878],[19.072769,45.521511],[19.390476,45.236516],[19.005486,44.860234],[18.553214,45.08159],[17.861783,45.06774],[17.002146,45.233777],[16.534939,45.211608],[16.318157,45.004127],[15.959367,45.233777],[15.750026,44.818712],[16.23966,44.351143],[16.456443,44.04124],[16.916156,43.667722],[17.297373,43.446341],[17.674922,43.028563],[18.56,42.65],[18.450016,42.479991],[17.50997,42.849995],[16.930006,43.209998],[16.015385,43.507215],[15.174454,44.243191],[15.37625,44.317915],[14.920309,44.738484],[14.901602,45.07606],[14.258748,45.233777],[13.952255,44.802124],[13.656976,45.136935],[13.679403,45.484149],[13.71506,45.500324],[14.411968,45.466166],[14.595109,45.634941],[14.935244,45.471695],[15.327675,45.452316],[15.323954,45.731783],[15.67153,45.834154],[15.768733,46.238108],[16.564808,46.503751],[16.882515,46.380632],[17.630066,45.951769],[18.456062,45.759481],[18.829838,45.908878]]]},"id":"HRV"}, +{"type":"Feature","properties":{"name":"Haiti"},"geometry":{"type":"Polygon","coordinates":[[[-73.189791,19.915684],[-72.579673,19.871501],[-71.712361,19.714456],[-71.624873,19.169838],[-71.701303,18.785417],[-71.945112,18.6169],[-71.687738,18.31666],[-71.708305,18.044997],[-72.372476,18.214961],[-72.844411,18.145611],[-73.454555,18.217906],[-73.922433,18.030993],[-74.458034,18.34255],[-74.369925,18.664908],[-73.449542,18.526053],[-72.694937,18.445799],[-72.334882,18.668422],[-72.79165,19.101625],[-72.784105,19.483591],[-73.415022,19.639551],[-73.189791,19.915684]]]},"id":"HTI"}, +{"type":"Feature","properties":{"name":"Hungary"},"geometry":{"type":"Polygon","coordinates":[[[16.202298,46.852386],[16.534268,47.496171],[16.340584,47.712902],[16.903754,47.714866],[16.979667,48.123497],[17.488473,47.867466],[17.857133,47.758429],[18.696513,47.880954],[18.777025,48.081768],[19.174365,48.111379],[19.661364,48.266615],[19.769471,48.202691],[20.239054,48.327567],[20.473562,48.56285],[20.801294,48.623854],[21.872236,48.319971],[22.085608,48.422264],[22.64082,48.15024],[22.710531,47.882194],[22.099768,47.672439],[21.626515,46.994238],[21.021952,46.316088],[20.220192,46.127469],[19.596045,46.17173],[18.829838,45.908878],[18.456062,45.759481],[17.630066,45.951769],[16.882515,46.380632],[16.564808,46.503751],[16.370505,46.841327],[16.202298,46.852386]]]},"id":"HUN"}, +{"type":"Feature","properties":{"name":"Indonesia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.715609,-10.239581],[120.295014,-10.25865],[118.967808,-9.557969],[119.90031,-9.36134],[120.425756,-9.665921],[120.775502,-9.969675],[120.715609,-10.239581]]],[[[124.43595,-10.140001],[123.579982,-10.359987],[123.459989,-10.239995],[123.550009,-9.900016],[123.980009,-9.290027],[124.968682,-8.89279],[125.07002,-9.089987],[125.08852,-9.393173],[124.43595,-10.140001]]],[[[117.900018,-8.095681],[118.260616,-8.362383],[118.87846,-8.280683],[119.126507,-8.705825],[117.970402,-8.906639],[117.277731,-9.040895],[116.740141,-9.032937],[117.083737,-8.457158],[117.632024,-8.449303],[117.900018,-8.095681]]],[[[122.903537,-8.094234],[122.756983,-8.649808],[121.254491,-8.933666],[119.924391,-8.810418],[119.920929,-8.444859],[120.715092,-8.236965],[121.341669,-8.53674],[122.007365,-8.46062],[122.903537,-8.094234]]],[[[108.623479,-6.777674],[110.539227,-6.877358],[110.759576,-6.465186],[112.614811,-6.946036],[112.978768,-7.594213],[114.478935,-7.776528],[115.705527,-8.370807],[114.564511,-8.751817],[113.464734,-8.348947],[112.559672,-8.376181],[111.522061,-8.302129],[110.58615,-8.122605],[109.427667,-7.740664],[108.693655,-7.6416],[108.277763,-7.766657],[106.454102,-7.3549],[106.280624,-6.9249],[105.365486,-6.851416],[106.051646,-5.895919],[107.265009,-5.954985],[108.072091,-6.345762],[108.486846,-6.421985],[108.623479,-6.777674]]],[[[134.724624,-6.214401],[134.210134,-6.895238],[134.112776,-6.142467],[134.290336,-5.783058],[134.499625,-5.445042],[134.727002,-5.737582],[134.724624,-6.214401]]],[[[127.249215,-3.459065],[126.874923,-3.790983],[126.183802,-3.607376],[125.989034,-3.177273],[127.000651,-3.129318],[127.249215,-3.459065]]],[[[130.471344,-3.093764],[130.834836,-3.858472],[129.990547,-3.446301],[129.155249,-3.362637],[128.590684,-3.428679],[127.898891,-3.393436],[128.135879,-2.84365],[129.370998,-2.802154],[130.471344,-3.093764]]],[[[134.143368,-1.151867],[134.422627,-2.769185],[135.457603,-3.367753],[136.293314,-2.307042],[137.440738,-1.703513],[138.329727,-1.702686],[139.184921,-2.051296],[139.926684,-2.409052],[141.00021,-2.600151],[141.017057,-5.859022],[141.033852,-9.117893],[140.143415,-8.297168],[139.127767,-8.096043],[138.881477,-8.380935],[137.614474,-8.411683],[138.039099,-7.597882],[138.668621,-7.320225],[138.407914,-6.232849],[137.92784,-5.393366],[135.98925,-4.546544],[135.164598,-4.462931],[133.66288,-3.538853],[133.367705,-4.024819],[132.983956,-4.112979],[132.756941,-3.746283],[132.753789,-3.311787],[131.989804,-2.820551],[133.066845,-2.460418],[133.780031,-2.479848],[133.696212,-2.214542],[132.232373,-2.212526],[131.836222,-1.617162],[130.94284,-1.432522],[130.519558,-0.93772],[131.867538,-0.695461],[132.380116,-0.369538],[133.985548,-0.78021],[134.143368,-1.151867]]],[[[125.240501,1.419836],[124.437035,0.427881],[123.685505,0.235593],[122.723083,0.431137],[121.056725,0.381217],[120.183083,0.237247],[120.04087,-0.519658],[120.935905,-1.408906],[121.475821,-0.955962],[123.340565,-0.615673],[123.258399,-1.076213],[122.822715,-0.930951],[122.38853,-1.516858],[121.508274,-1.904483],[122.454572,-3.186058],[122.271896,-3.5295],[123.170963,-4.683693],[123.162333,-5.340604],[122.628515,-5.634591],[122.236394,-5.282933],[122.719569,-4.464172],[121.738234,-4.851331],[121.489463,-4.574553],[121.619171,-4.188478],[120.898182,-3.602105],[120.972389,-2.627643],[120.305453,-2.931604],[120.390047,-4.097579],[120.430717,-5.528241],[119.796543,-5.6734],[119.366906,-5.379878],[119.653606,-4.459417],[119.498835,-3.494412],[119.078344,-3.487022],[118.767769,-2.801999],[119.180974,-2.147104],[119.323394,-1.353147],[119.825999,0.154254],[120.035702,0.566477],[120.885779,1.309223],[121.666817,1.013944],[122.927567,0.875192],[124.077522,0.917102],[125.065989,1.643259],[125.240501,1.419836]]],[[[128.688249,1.132386],[128.635952,0.258486],[128.12017,0.356413],[127.968034,-0.252077],[128.379999,-0.780004],[128.100016,-0.899996],[127.696475,-0.266598],[127.39949,1.011722],[127.600512,1.810691],[127.932378,2.174596],[128.004156,1.628531],[128.594559,1.540811],[128.688249,1.132386]]],[[[117.875627,1.827641],[118.996747,0.902219],[117.811858,0.784242],[117.478339,0.102475],[117.521644,-0.803723],[116.560048,-1.487661],[116.533797,-2.483517],[116.148084,-4.012726],[116.000858,-3.657037],[114.864803,-4.106984],[114.468652,-3.495704],[113.755672,-3.43917],[113.256994,-3.118776],[112.068126,-3.478392],[111.703291,-2.994442],[111.04824,-3.049426],[110.223846,-2.934032],[110.070936,-1.592874],[109.571948,-1.314907],[109.091874,-0.459507],[108.952658,0.415375],[109.069136,1.341934],[109.66326,2.006467],[109.830227,1.338136],[110.514061,0.773131],[111.159138,0.976478],[111.797548,0.904441],[112.380252,1.410121],[112.859809,1.49779],[113.80585,1.217549],[114.621355,1.430688],[115.134037,2.821482],[115.519078,3.169238],[115.865517,4.306559],[117.015214,4.306094],[117.882035,4.137551],[117.313232,3.234428],[118.04833,2.28769],[117.875627,1.827641]]],[[[105.817655,-5.852356],[104.710384,-5.873285],[103.868213,-5.037315],[102.584261,-4.220259],[102.156173,-3.614146],[101.399113,-2.799777],[100.902503,-2.050262],[100.141981,-0.650348],[99.26374,0.183142],[98.970011,1.042882],[98.601351,1.823507],[97.699598,2.453184],[97.176942,3.308791],[96.424017,3.86886],[95.380876,4.970782],[95.293026,5.479821],[95.936863,5.439513],[97.484882,5.246321],[98.369169,4.26837],[99.142559,3.59035],[99.693998,3.174329],[100.641434,2.099381],[101.658012,2.083697],[102.498271,1.3987],[103.07684,0.561361],[103.838396,0.104542],[103.437645,-0.711946],[104.010789,-1.059212],[104.369991,-1.084843],[104.53949,-1.782372],[104.887893,-2.340425],[105.622111,-2.428844],[106.108593,-3.061777],[105.857446,-4.305525],[105.817655,-5.852356]]]]},"id":"IDN"}, +{"type":"Feature","properties":{"name":"India"},"geometry":{"type":"Polygon","coordinates":[[[77.837451,35.49401],[78.912269,34.321936],[78.811086,33.506198],[79.208892,32.994395],[79.176129,32.48378],[78.458446,32.618164],[78.738894,31.515906],[79.721367,30.882715],[81.111256,30.183481],[80.476721,29.729865],[80.088425,28.79447],[81.057203,28.416095],[81.999987,27.925479],[83.304249,27.364506],[84.675018,27.234901],[85.251779,26.726198],[86.024393,26.630985],[87.227472,26.397898],[88.060238,26.414615],[88.174804,26.810405],[88.043133,27.445819],[88.120441,27.876542],[88.730326,28.086865],[88.814248,27.299316],[88.835643,27.098966],[89.744528,26.719403],[90.373275,26.875724],[91.217513,26.808648],[92.033484,26.83831],[92.103712,27.452614],[91.696657,27.771742],[92.503119,27.896876],[93.413348,28.640629],[94.56599,29.277438],[95.404802,29.031717],[96.117679,29.452802],[96.586591,28.83098],[96.248833,28.411031],[97.327114,28.261583],[97.402561,27.882536],[97.051989,27.699059],[97.133999,27.083774],[96.419366,27.264589],[95.124768,26.573572],[95.155153,26.001307],[94.603249,25.162495],[94.552658,24.675238],[94.106742,23.850741],[93.325188,24.078556],[93.286327,23.043658],[93.060294,22.703111],[93.166128,22.27846],[92.672721,22.041239],[92.146035,23.627499],[91.869928,23.624346],[91.706475,22.985264],[91.158963,23.503527],[91.46773,24.072639],[91.915093,24.130414],[92.376202,24.976693],[91.799596,25.147432],[90.872211,25.132601],[89.920693,25.26975],[89.832481,25.965082],[89.355094,26.014407],[88.563049,26.446526],[88.209789,25.768066],[88.931554,25.238692],[88.306373,24.866079],[88.084422,24.501657],[88.69994,24.233715],[88.52977,23.631142],[88.876312,22.879146],[89.031961,22.055708],[88.888766,21.690588],[88.208497,21.703172],[86.975704,21.495562],[87.033169,20.743308],[86.499351,20.151638],[85.060266,19.478579],[83.941006,18.30201],[83.189217,17.671221],[82.192792,17.016636],[82.191242,16.556664],[81.692719,16.310219],[80.791999,15.951972],[80.324896,15.899185],[80.025069,15.136415],[80.233274,13.835771],[80.286294,13.006261],[79.862547,12.056215],[79.857999,10.357275],[79.340512,10.308854],[78.885345,9.546136],[79.18972,9.216544],[78.277941,8.933047],[77.941165,8.252959],[77.539898,7.965535],[76.592979,8.899276],[76.130061,10.29963],[75.746467,11.308251],[75.396101,11.781245],[74.864816,12.741936],[74.616717,13.992583],[74.443859,14.617222],[73.534199,15.990652],[73.119909,17.92857],[72.820909,19.208234],[72.824475,20.419503],[72.630533,21.356009],[71.175273,20.757441],[70.470459,20.877331],[69.16413,22.089298],[69.644928,22.450775],[69.349597,22.84318],[68.176645,23.691965],[68.842599,24.359134],[71.04324,24.356524],[70.844699,25.215102],[70.282873,25.722229],[70.168927,26.491872],[69.514393,26.940966],[70.616496,27.989196],[71.777666,27.91318],[72.823752,28.961592],[73.450638,29.976413],[74.42138,30.979815],[74.405929,31.692639],[75.258642,32.271105],[74.451559,32.7649],[74.104294,33.441473],[73.749948,34.317699],[74.240203,34.748887],[75.757061,34.504923],[76.871722,34.653544],[77.837451,35.49401]]]},"id":"IND"}, +{"type":"Feature","properties":{"name":"Ireland"},"geometry":{"type":"Polygon","coordinates":[[[-6.197885,53.867565],[-6.032985,53.153164],[-6.788857,52.260118],[-8.561617,51.669301],[-9.977086,51.820455],[-9.166283,52.864629],[-9.688525,53.881363],[-8.327987,54.664519],[-7.572168,55.131622],[-7.366031,54.595841],[-7.572168,54.059956],[-6.95373,54.073702],[-6.197885,53.867565]]]},"id":"IRL"}, +{"type":"Feature","properties":{"name":"Iran"},"geometry":{"type":"Polygon","coordinates":[[[53.921598,37.198918],[54.800304,37.392421],[55.511578,37.964117],[56.180375,37.935127],[56.619366,38.121394],[57.330434,38.029229],[58.436154,37.522309],[59.234762,37.412988],[60.377638,36.527383],[61.123071,36.491597],[61.210817,35.650072],[60.803193,34.404102],[60.52843,33.676446],[60.9637,33.528832],[60.536078,32.981269],[60.863655,32.18292],[60.941945,31.548075],[61.699314,31.379506],[61.781222,30.73585],[60.874248,29.829239],[61.369309,29.303276],[61.771868,28.699334],[62.72783,28.259645],[62.755426,27.378923],[63.233898,27.217047],[63.316632,26.756532],[61.874187,26.239975],[61.497363,25.078237],[59.616134,25.380157],[58.525761,25.609962],[57.397251,25.739902],[56.970766,26.966106],[56.492139,27.143305],[55.72371,26.964633],[54.71509,26.480658],[53.493097,26.812369],[52.483598,27.580849],[51.520763,27.86569],[50.852948,28.814521],[50.115009,30.147773],[49.57685,29.985715],[48.941333,30.31709],[48.567971,29.926778],[48.014568,30.452457],[48.004698,30.985137],[47.685286,30.984853],[47.849204,31.709176],[47.334661,32.469155],[46.109362,33.017287],[45.416691,33.967798],[45.64846,34.748138],[46.151788,35.093259],[46.07634,35.677383],[45.420618,35.977546],[44.77267,37.17045],[44.225756,37.971584],[44.421403,38.281281],[44.109225,39.428136],[44.79399,39.713003],[44.952688,39.335765],[45.457722,38.874139],[46.143623,38.741201],[46.50572,38.770605],[47.685079,39.508364],[48.060095,39.582235],[48.355529,39.288765],[48.010744,38.794015],[48.634375,38.270378],[48.883249,38.320245],[49.199612,37.582874],[50.147771,37.374567],[50.842354,36.872814],[52.264025,36.700422],[53.82579,36.965031],[53.921598,37.198918]]]},"id":"IRN"}, +{"type":"Feature","properties":{"name":"Iraq"},"geometry":{"type":"Polygon","coordinates":[[[45.420618,35.977546],[46.07634,35.677383],[46.151788,35.093259],[45.64846,34.748138],[45.416691,33.967798],[46.109362,33.017287],[47.334661,32.469155],[47.849204,31.709176],[47.685286,30.984853],[48.004698,30.985137],[48.014568,30.452457],[48.567971,29.926778],[47.974519,29.975819],[47.302622,30.05907],[46.568713,29.099025],[44.709499,29.178891],[41.889981,31.190009],[40.399994,31.889992],[39.195468,32.161009],[38.792341,33.378686],[41.006159,34.419372],[41.383965,35.628317],[41.289707,36.358815],[41.837064,36.605854],[42.349591,37.229873],[42.779126,37.385264],[43.942259,37.256228],[44.293452,37.001514],[44.772699,37.170445],[45.420618,35.977546]]]},"id":"IRQ"}, +{"type":"Feature","properties":{"name":"Iceland"},"geometry":{"type":"Polygon","coordinates":[[[-14.508695,66.455892],[-14.739637,65.808748],[-13.609732,65.126671],[-14.909834,64.364082],[-17.794438,63.678749],[-18.656246,63.496383],[-19.972755,63.643635],[-22.762972,63.960179],[-21.778484,64.402116],[-23.955044,64.89113],[-22.184403,65.084968],[-22.227423,65.378594],[-24.326184,65.611189],[-23.650515,66.262519],[-22.134922,66.410469],[-20.576284,65.732112],[-19.056842,66.276601],[-17.798624,65.993853],[-16.167819,66.526792],[-14.508695,66.455892]]]},"id":"ISL"}, +{"type":"Feature","properties":{"name":"Israel"},"geometry":{"type":"Polygon","coordinates":[[[35.719918,32.709192],[35.545665,32.393992],[35.18393,32.532511],[34.974641,31.866582],[35.225892,31.754341],[34.970507,31.616778],[34.927408,31.353435],[35.397561,31.489086],[35.420918,31.100066],[34.922603,29.501326],[34.265433,31.219361],[34.556372,31.548824],[34.488107,31.605539],[34.752587,32.072926],[34.955417,32.827376],[35.098457,33.080539],[35.126053,33.0909],[35.460709,33.08904],[35.552797,33.264275],[35.821101,33.277426],[35.836397,32.868123],[35.700798,32.716014],[35.719918,32.709192]]]},"id":"ISR"}, +{"type":"Feature","properties":{"name":"Italy"},"geometry":{"type":"MultiPolygon","coordinates":[[[[15.520376,38.231155],[15.160243,37.444046],[15.309898,37.134219],[15.099988,36.619987],[14.335229,36.996631],[13.826733,37.104531],[12.431004,37.61295],[12.570944,38.126381],[13.741156,38.034966],[14.761249,38.143874],[15.520376,38.231155]]],[[[9.210012,41.209991],[9.809975,40.500009],[9.669519,39.177376],[9.214818,39.240473],[8.806936,38.906618],[8.428302,39.171847],[8.388253,40.378311],[8.159998,40.950007],[8.709991,40.899984],[9.210012,41.209991]]],[[[12.376485,46.767559],[13.806475,46.509306],[13.69811,46.016778],[13.93763,45.591016],[13.141606,45.736692],[12.328581,45.381778],[12.383875,44.885374],[12.261453,44.600482],[12.589237,44.091366],[13.526906,43.587727],[14.029821,42.761008],[15.14257,41.95514],[15.926191,41.961315],[16.169897,41.740295],[15.889346,41.541082],[16.785002,41.179606],[17.519169,40.877143],[18.376687,40.355625],[18.480247,40.168866],[18.293385,39.810774],[17.73838,40.277671],[16.869596,40.442235],[16.448743,39.795401],[17.17149,39.4247],[17.052841,38.902871],[16.635088,38.843572],[16.100961,37.985899],[15.684087,37.908849],[15.687963,38.214593],[15.891981,38.750942],[16.109332,38.964547],[15.718814,39.544072],[15.413613,40.048357],[14.998496,40.172949],[14.703268,40.60455],[14.060672,40.786348],[13.627985,41.188287],[12.888082,41.25309],[12.106683,41.704535],[11.191906,42.355425],[10.511948,42.931463],[10.200029,43.920007],[9.702488,44.036279],[8.888946,44.366336],[8.428561,44.231228],[7.850767,43.767148],[7.435185,43.693845],[7.549596,44.127901],[7.007562,44.254767],[6.749955,45.028518],[7.096652,45.333099],[6.802355,45.70858],[6.843593,45.991147],[7.273851,45.776948],[7.755992,45.82449],[8.31663,46.163642],[8.489952,46.005151],[8.966306,46.036932],[9.182882,46.440215],[9.922837,46.314899],[10.363378,46.483571],[10.442701,46.893546],[11.048556,46.751359],[11.164828,46.941579],[12.153088,47.115393],[12.376485,46.767559]]]]},"id":"ITA"}, +{"type":"Feature","properties":{"name":"Jamaica"},"geometry":{"type":"Polygon","coordinates":[[[-77.569601,18.490525],[-76.896619,18.400867],[-76.365359,18.160701],[-76.199659,17.886867],[-76.902561,17.868238],[-77.206341,17.701116],[-77.766023,17.861597],[-78.337719,18.225968],[-78.217727,18.454533],[-77.797365,18.524218],[-77.569601,18.490525]]]},"id":"JAM"}, +{"type":"Feature","properties":{"name":"Jordan"},"geometry":{"type":"Polygon","coordinates":[[[35.545665,32.393992],[35.719918,32.709192],[36.834062,32.312938],[38.792341,33.378686],[39.195468,32.161009],[39.004886,32.010217],[37.002166,31.508413],[37.998849,30.5085],[37.66812,30.338665],[37.503582,30.003776],[36.740528,29.865283],[36.501214,29.505254],[36.068941,29.197495],[34.956037,29.356555],[34.922603,29.501326],[35.420918,31.100066],[35.397561,31.489086],[35.545252,31.782505],[35.545665,32.393992]]]},"id":"JOR"}, +{"type":"Feature","properties":{"name":"Japan"},"geometry":{"type":"MultiPolygon","coordinates":[[[[134.638428,34.149234],[134.766379,33.806335],[134.203416,33.201178],[133.79295,33.521985],[133.280268,33.28957],[133.014858,32.704567],[132.363115,32.989382],[132.371176,33.463642],[132.924373,34.060299],[133.492968,33.944621],[133.904106,34.364931],[134.638428,34.149234]]],[[[140.976388,37.142074],[140.59977,36.343983],[140.774074,35.842877],[140.253279,35.138114],[138.975528,34.6676],[137.217599,34.606286],[135.792983,33.464805],[135.120983,33.849071],[135.079435,34.596545],[133.340316,34.375938],[132.156771,33.904933],[130.986145,33.885761],[132.000036,33.149992],[131.33279,31.450355],[130.686318,31.029579],[130.20242,31.418238],[130.447676,32.319475],[129.814692,32.61031],[129.408463,33.296056],[130.353935,33.604151],[130.878451,34.232743],[131.884229,34.749714],[132.617673,35.433393],[134.608301,35.731618],[135.677538,35.527134],[136.723831,37.304984],[137.390612,36.827391],[138.857602,37.827485],[139.426405,38.215962],[140.05479,39.438807],[139.883379,40.563312],[140.305783,41.195005],[141.368973,41.37856],[141.914263,39.991616],[141.884601,39.180865],[140.959489,38.174001],[140.976388,37.142074]]],[[[143.910162,44.1741],[144.613427,43.960883],[145.320825,44.384733],[145.543137,43.262088],[144.059662,42.988358],[143.18385,41.995215],[141.611491,42.678791],[141.067286,41.584594],[139.955106,41.569556],[139.817544,42.563759],[140.312087,43.333273],[141.380549,43.388825],[141.671952,44.772125],[141.967645,45.551483],[143.14287,44.510358],[143.910162,44.1741]]]]},"id":"JPN"}, +{"type":"Feature","properties":{"name":"Kazakhstan"},"geometry":{"type":"Polygon","coordinates":[[[70.962315,42.266154],[70.388965,42.081308],[69.070027,41.384244],[68.632483,40.668681],[68.259896,40.662325],[67.985856,41.135991],[66.714047,41.168444],[66.510649,41.987644],[66.023392,41.994646],[66.098012,42.99766],[64.900824,43.728081],[63.185787,43.650075],[62.0133,43.504477],[61.05832,44.405817],[60.239972,44.784037],[58.689989,45.500014],[58.503127,45.586804],[55.928917,44.995858],[55.968191,41.308642],[55.455251,41.259859],[54.755345,42.043971],[54.079418,42.324109],[52.944293,42.116034],[52.50246,41.783316],[52.446339,42.027151],[52.692112,42.443895],[52.501426,42.792298],[51.342427,43.132975],[50.891292,44.031034],[50.339129,44.284016],[50.305643,44.609836],[51.278503,44.514854],[51.316899,45.245998],[52.16739,45.408391],[53.040876,45.259047],[53.220866,46.234646],[53.042737,46.853006],[52.042023,46.804637],[51.191945,47.048705],[50.034083,46.60899],[49.10116,46.39933],[48.593241,46.561034],[48.694734,47.075628],[48.057253,47.743753],[47.315231,47.715847],[46.466446,48.394152],[47.043672,49.152039],[46.751596,49.356006],[47.54948,50.454698],[48.577841,49.87476],[48.702382,50.605128],[50.766648,51.692762],[52.328724,51.718652],[54.532878,51.02624],[55.716941,50.621717],[56.777961,51.043551],[58.363291,51.063653],[59.642282,50.545442],[59.932807,50.842194],[61.337424,50.79907],[61.588003,51.272659],[59.967534,51.96042],[60.927269,52.447548],[60.739993,52.719986],[61.699986,52.979996],[60.978066,53.664993],[61.436591,54.006265],[65.178534,54.354228],[65.666876,54.601267],[68.1691,54.970392],[69.068167,55.38525],[70.865267,55.169734],[71.180131,54.133285],[72.22415,54.376655],[73.508516,54.035617],[73.425679,53.48981],[74.384845,53.546861],[76.8911,54.490524],[76.525179,54.177003],[77.800916,53.404415],[80.03556,50.864751],[80.568447,51.388336],[81.945986,50.812196],[83.383004,51.069183],[83.935115,50.889246],[84.416377,50.3114],[85.11556,50.117303],[85.54127,49.692859],[86.829357,49.826675],[87.35997,49.214981],[86.598776,48.549182],[85.768233,48.455751],[85.720484,47.452969],[85.16429,47.000956],[83.180484,47.330031],[82.458926,45.53965],[81.947071,45.317027],[79.966106,44.917517],[80.866206,43.180362],[80.18015,42.920068],[80.25999,42.349999],[79.643645,42.496683],[79.142177,42.856092],[77.658392,42.960686],[76.000354,42.988022],[75.636965,42.8779],[74.212866,43.298339],[73.645304,43.091272],[73.489758,42.500894],[71.844638,42.845395],[71.186281,42.704293],[70.962315,42.266154]]]},"id":"KAZ"}, +{"type":"Feature","properties":{"name":"Kenya"},"geometry":{"type":"Polygon","coordinates":[[[40.993,-0.85829],[41.58513,-1.68325],[40.88477,-2.08255],[40.63785,-2.49979],[40.26304,-2.57309],[40.12119,-3.27768],[39.80006,-3.68116],[39.60489,-4.34653],[39.20222,-4.67677],[37.7669,-3.67712],[37.69869,-3.09699],[34.07262,-1.05982],[33.903711,-0.95],[33.893569,0.109814],[34.18,0.515],[34.6721,1.17694],[35.03599,1.90584],[34.59607,3.05374],[34.47913,3.5556],[34.005,4.249885],[34.620196,4.847123],[35.298007,5.506],[35.817448,5.338232],[35.817448,4.776966],[36.159079,4.447864],[36.855093,4.447864],[38.120915,3.598605],[38.43697,3.58851],[38.67114,3.61607],[38.89251,3.50074],[39.559384,3.42206],[39.85494,3.83879],[40.76848,4.25702],[41.1718,3.91909],[41.855083,3.918912],[40.98105,2.78452],[40.993,-0.85829]]]},"id":"KEN"}, +{"type":"Feature","properties":{"name":"Kyrgyzstan"},"geometry":{"type":"Polygon","coordinates":[[[70.962315,42.266154],[71.186281,42.704293],[71.844638,42.845395],[73.489758,42.500894],[73.645304,43.091272],[74.212866,43.298339],[75.636965,42.8779],[76.000354,42.988022],[77.658392,42.960686],[79.142177,42.856092],[79.643645,42.496683],[80.25999,42.349999],[80.11943,42.123941],[78.543661,41.582243],[78.187197,41.185316],[76.904484,41.066486],[76.526368,40.427946],[75.467828,40.562072],[74.776862,40.366425],[73.822244,39.893973],[73.960013,39.660008],[73.675379,39.431237],[71.784694,39.279463],[70.549162,39.604198],[69.464887,39.526683],[69.55961,40.103211],[70.648019,39.935754],[71.014198,40.244366],[71.774875,40.145844],[73.055417,40.866033],[71.870115,41.3929],[71.157859,41.143587],[70.420022,41.519998],[71.259248,42.167711],[70.962315,42.266154]]]},"id":"KGZ"}, +{"type":"Feature","properties":{"name":"Cambodia"},"geometry":{"type":"Polygon","coordinates":[[[103.49728,10.632555],[103.09069,11.153661],[102.584932,12.186595],[102.348099,13.394247],[102.988422,14.225721],[104.281418,14.416743],[105.218777,14.273212],[106.043946,13.881091],[106.496373,14.570584],[107.382727,14.202441],[107.614548,13.535531],[107.491403,12.337206],[105.810524,11.567615],[106.24967,10.961812],[105.199915,10.88931],[104.334335,10.486544],[103.49728,10.632555]]]},"id":"KHM"}, +{"type":"Feature","properties":{"name":"South Korea"},"geometry":{"type":"Polygon","coordinates":[[[128.349716,38.612243],[129.21292,37.432392],[129.46045,36.784189],[129.468304,35.632141],[129.091377,35.082484],[128.18585,34.890377],[127.386519,34.475674],[126.485748,34.390046],[126.37392,34.93456],[126.559231,35.684541],[126.117398,36.725485],[126.860143,36.893924],[126.174759,37.749686],[126.237339,37.840378],[126.68372,37.804773],[127.073309,38.256115],[127.780035,38.304536],[128.205746,38.370397],[128.349716,38.612243]]]},"id":"KOR"}, +{"type":"Feature","properties":{"name":"Kosovo"},"geometry":{"type":"Polygon","coordinates":[[[20.76216,42.05186],[20.71731,41.84711],[20.59023,41.85541],[20.52295,42.21787],[20.28374,42.32025],[20.0707,42.58863],[20.25758,42.81275],[20.49679,42.88469],[20.63508,43.21671],[20.81448,43.27205],[20.95651,43.13094],[21.143395,43.068685],[21.27421,42.90959],[21.43866,42.86255],[21.63302,42.67717],[21.77505,42.6827],[21.66292,42.43922],[21.54332,42.32025],[21.576636,42.245224],[21.3527,42.2068],[20.76216,42.05186]]]},"id":"OSA"}, +{"type":"Feature","properties":{"name":"Kuwait"},"geometry":{"type":"Polygon","coordinates":[[[47.974519,29.975819],[48.183189,29.534477],[48.093943,29.306299],[48.416094,28.552004],[47.708851,28.526063],[47.459822,29.002519],[46.568713,29.099025],[47.302622,30.05907],[47.974519,29.975819]]]},"id":"KWT"}, +{"type":"Feature","properties":{"name":"Laos"},"geometry":{"type":"Polygon","coordinates":[[[105.218777,14.273212],[105.544338,14.723934],[105.589039,15.570316],[104.779321,16.441865],[104.716947,17.428859],[103.956477,18.240954],[103.200192,18.309632],[102.998706,17.961695],[102.413005,17.932782],[102.113592,18.109102],[101.059548,17.512497],[101.035931,18.408928],[101.282015,19.462585],[100.606294,19.508344],[100.548881,20.109238],[100.115988,20.41785],[100.329101,20.786122],[101.180005,21.436573],[101.270026,21.201652],[101.80312,21.174367],[101.652018,22.318199],[102.170436,22.464753],[102.754896,21.675137],[103.203861,20.766562],[104.435,20.758733],[104.822574,19.886642],[104.183388,19.624668],[103.896532,19.265181],[105.094598,18.666975],[105.925762,17.485315],[106.556008,16.604284],[107.312706,15.908538],[107.564525,15.202173],[107.382727,14.202441],[106.496373,14.570584],[106.043946,13.881091],[105.218777,14.273212]]]},"id":"LAO"}, +{"type":"Feature","properties":{"name":"Lebanon"},"geometry":{"type":"Polygon","coordinates":[[[35.821101,33.277426],[35.552797,33.264275],[35.460709,33.08904],[35.126053,33.0909],[35.482207,33.90545],[35.979592,34.610058],[35.998403,34.644914],[36.448194,34.593935],[36.61175,34.201789],[36.06646,33.824912],[35.821101,33.277426]]]},"id":"LBN"}, +{"type":"Feature","properties":{"name":"Liberia"},"geometry":{"type":"Polygon","coordinates":[[[-7.712159,4.364566],[-7.974107,4.355755],[-9.004794,4.832419],[-9.91342,5.593561],[-10.765384,6.140711],[-11.438779,6.785917],[-11.199802,7.105846],[-11.146704,7.396706],[-10.695595,7.939464],[-10.230094,8.406206],[-10.016567,8.428504],[-9.755342,8.541055],[-9.33728,7.928534],[-9.403348,7.526905],[-9.208786,7.313921],[-8.926065,7.309037],[-8.722124,7.711674],[-8.439298,7.686043],[-8.485446,7.395208],[-8.385452,6.911801],[-8.60288,6.467564],[-8.311348,6.193033],[-7.993693,6.12619],[-7.570153,5.707352],[-7.539715,5.313345],[-7.635368,5.188159],[-7.712159,4.364566]]]},"id":"LBR"}, +{"type":"Feature","properties":{"name":"Libya"},"geometry":{"type":"Polygon","coordinates":[[[14.8513,22.86295],[14.143871,22.491289],[13.581425,23.040506],[11.999506,23.471668],[11.560669,24.097909],[10.771364,24.562532],[10.303847,24.379313],[9.948261,24.936954],[9.910693,25.365455],[9.319411,26.094325],[9.716286,26.512206],[9.629056,27.140953],[9.756128,27.688259],[9.683885,28.144174],[9.859998,28.95999],[9.805634,29.424638],[9.48214,30.307556],[9.970017,30.539325],[10.056575,30.961831],[9.950225,31.37607],[10.636901,31.761421],[10.94479,32.081815],[11.432253,32.368903],[11.488787,33.136996],[12.66331,32.79278],[13.08326,32.87882],[13.91868,32.71196],[15.24563,32.26508],[15.71394,31.37626],[16.61162,31.18218],[18.02109,30.76357],[19.08641,30.26639],[19.57404,30.52582],[20.05335,30.98576],[19.82033,31.75179],[20.13397,32.2382],[20.85452,32.7068],[21.54298,32.8432],[22.89576,32.63858],[23.2368,32.19149],[23.60913,32.18726],[23.9275,32.01667],[24.92114,31.89936],[25.16482,31.56915],[24.80287,31.08929],[24.95762,30.6616],[24.70007,30.04419],[25,29.238655],[25,25.6825],[25,22],[25,20.00304],[23.85,20],[23.83766,19.58047],[19.84926,21.49509],[15.86085,23.40972],[14.8513,22.86295]]]},"id":"LBY"}, +{"type":"Feature","properties":{"name":"Sri Lanka"},"geometry":{"type":"Polygon","coordinates":[[[81.787959,7.523055],[81.637322,6.481775],[81.21802,6.197141],[80.348357,5.96837],[79.872469,6.763463],[79.695167,8.200843],[80.147801,9.824078],[80.838818,9.268427],[81.304319,8.564206],[81.787959,7.523055]]]},"id":"LKA"}, +{"type":"Feature","properties":{"name":"Lesotho"},"geometry":{"type":"Polygon","coordinates":[[[28.978263,-28.955597],[29.325166,-29.257387],[29.018415,-29.743766],[28.8484,-30.070051],[28.291069,-30.226217],[28.107205,-30.545732],[27.749397,-30.645106],[26.999262,-29.875954],[27.532511,-29.242711],[28.074338,-28.851469],[28.5417,-28.647502],[28.978263,-28.955597]]]},"id":"LSO"}, +{"type":"Feature","properties":{"name":"Lithuania"},"geometry":{"type":"Polygon","coordinates":[[[22.731099,54.327537],[22.651052,54.582741],[22.757764,54.856574],[22.315724,55.015299],[21.268449,55.190482],[21.0558,56.031076],[22.201157,56.337802],[23.878264,56.273671],[24.860684,56.372528],[25.000934,56.164531],[25.533047,56.100297],[26.494331,55.615107],[26.588279,55.167176],[25.768433,54.846963],[25.536354,54.282423],[24.450684,53.905702],[23.484128,53.912498],[23.243987,54.220567],[22.731099,54.327537]]]},"id":"LTU"}, +{"type":"Feature","properties":{"name":"Luxembourg"},"geometry":{"type":"Polygon","coordinates":[[[6.043073,50.128052],[6.242751,49.902226],[6.18632,49.463803],[5.897759,49.442667],[5.674052,49.529484],[5.782417,50.090328],[6.043073,50.128052]]]},"id":"LUX"}, +{"type":"Feature","properties":{"name":"Latvia"},"geometry":{"type":"Polygon","coordinates":[[[21.0558,56.031076],[21.090424,56.783873],[21.581866,57.411871],[22.524341,57.753374],[23.318453,57.006236],[24.12073,57.025693],[24.312863,57.793424],[25.164594,57.970157],[25.60281,57.847529],[26.463532,57.476389],[27.288185,57.474528],[27.770016,57.244258],[27.855282,56.759326],[28.176709,56.16913],[27.10246,55.783314],[26.494331,55.615107],[25.533047,56.100297],[25.000934,56.164531],[24.860684,56.372528],[23.878264,56.273671],[22.201157,56.337802],[21.0558,56.031076]]]},"id":"LVA"}, +{"type":"Feature","properties":{"name":"Morocco"},"geometry":{"type":"Polygon","coordinates":[[[-5.193863,35.755182],[-4.591006,35.330712],[-3.640057,35.399855],[-2.604306,35.179093],[-2.169914,35.168396],[-1.792986,34.527919],[-1.733455,33.919713],[-1.388049,32.864015],[-1.124551,32.651522],[-1.307899,32.262889],[-2.616605,32.094346],[-3.06898,31.724498],[-3.647498,31.637294],[-3.690441,30.896952],[-4.859646,30.501188],[-5.242129,30.000443],[-6.060632,29.7317],[-7.059228,29.579228],[-8.674116,28.841289],[-8.66559,27.656426],[-8.817809,27.656426],[-8.817828,27.656426],[-8.794884,27.120696],[-9.413037,27.088476],[-9.735343,26.860945],[-10.189424,26.860945],[-10.551263,26.990808],[-11.392555,26.883424],[-11.71822,26.104092],[-12.030759,26.030866],[-12.500963,24.770116],[-13.89111,23.691009],[-14.221168,22.310163],[-14.630833,21.86094],[-14.750955,21.5006],[-17.002962,21.420734],[-17.020428,21.42231],[-16.973248,21.885745],[-16.589137,22.158234],[-16.261922,22.67934],[-16.326414,23.017768],[-15.982611,23.723358],[-15.426004,24.359134],[-15.089332,24.520261],[-14.824645,25.103533],[-14.800926,25.636265],[-14.43994,26.254418],[-13.773805,26.618892],[-13.139942,27.640148],[-13.121613,27.654148],[-12.618837,28.038186],[-11.688919,28.148644],[-10.900957,28.832142],[-10.399592,29.098586],[-9.564811,29.933574],[-9.814718,31.177736],[-9.434793,32.038096],[-9.300693,32.564679],[-8.657476,33.240245],[-7.654178,33.697065],[-6.912544,34.110476],[-6.244342,35.145865],[-5.929994,35.759988],[-5.193863,35.755182]]]},"id":"MAR"}, +{"type":"Feature","properties":{"name":"Moldova"},"geometry":{"type":"Polygon","coordinates":[[[26.619337,48.220726],[26.857824,48.368211],[27.522537,48.467119],[28.259547,48.155562],[28.670891,48.118149],[29.122698,47.849095],[29.050868,47.510227],[29.415135,47.346645],[29.559674,46.928583],[29.908852,46.674361],[29.83821,46.525326],[30.024659,46.423937],[29.759972,46.349988],[29.170654,46.379262],[29.072107,46.517678],[28.862972,46.437889],[28.933717,46.25883],[28.659987,45.939987],[28.485269,45.596907],[28.233554,45.488283],[28.054443,45.944586],[28.160018,46.371563],[28.12803,46.810476],[27.551166,47.405117],[27.233873,47.826771],[26.924176,48.123264],[26.619337,48.220726]]]},"id":"MDA"}, +{"type":"Feature","properties":{"name":"Madagascar"},"geometry":{"type":"Polygon","coordinates":[[[49.543519,-12.469833],[49.808981,-12.895285],[50.056511,-13.555761],[50.217431,-14.758789],[50.476537,-15.226512],[50.377111,-15.706069],[50.200275,-16.000263],[49.860606,-15.414253],[49.672607,-15.710204],[49.863344,-16.451037],[49.774564,-16.875042],[49.498612,-17.106036],[49.435619,-17.953064],[49.041792,-19.118781],[48.548541,-20.496888],[47.930749,-22.391501],[47.547723,-23.781959],[47.095761,-24.94163],[46.282478,-25.178463],[45.409508,-25.601434],[44.833574,-25.346101],[44.03972,-24.988345],[43.763768,-24.460677],[43.697778,-23.574116],[43.345654,-22.776904],[43.254187,-22.057413],[43.433298,-21.336475],[43.893683,-21.163307],[43.89637,-20.830459],[44.374325,-20.072366],[44.464397,-19.435454],[44.232422,-18.961995],[44.042976,-18.331387],[43.963084,-17.409945],[44.312469,-16.850496],[44.446517,-16.216219],[44.944937,-16.179374],[45.502732,-15.974373],[45.872994,-15.793454],[46.312243,-15.780018],[46.882183,-15.210182],[47.70513,-14.594303],[48.005215,-14.091233],[47.869047,-13.663869],[48.293828,-13.784068],[48.84506,-13.089175],[48.863509,-12.487868],[49.194651,-12.040557],[49.543519,-12.469833]]]},"id":"MDG"}, +{"type":"Feature","properties":{"name":"Mexico"},"geometry":{"type":"Polygon","coordinates":[[[-97.140008,25.869997],[-97.528072,24.992144],[-97.702946,24.272343],[-97.776042,22.93258],[-97.872367,22.444212],[-97.699044,21.898689],[-97.38896,21.411019],[-97.189333,20.635433],[-96.525576,19.890931],[-96.292127,19.320371],[-95.900885,18.828024],[-94.839063,18.562717],[-94.42573,18.144371],[-93.548651,18.423837],[-92.786114,18.524839],[-92.037348,18.704569],[-91.407903,18.876083],[-90.77187,19.28412],[-90.53359,19.867418],[-90.451476,20.707522],[-90.278618,20.999855],[-89.601321,21.261726],[-88.543866,21.493675],[-87.658417,21.458846],[-87.05189,21.543543],[-86.811982,21.331515],[-86.845908,20.849865],[-87.383291,20.255405],[-87.621054,19.646553],[-87.43675,19.472403],[-87.58656,19.04013],[-87.837191,18.259816],[-88.090664,18.516648],[-88.300031,18.499982],[-88.490123,18.486831],[-88.848344,17.883198],[-89.029857,18.001511],[-89.150909,17.955468],[-89.14308,17.808319],[-90.067934,17.819326],[-91.00152,17.817595],[-91.002269,17.254658],[-91.453921,17.252177],[-91.08167,16.918477],[-90.711822,16.687483],[-90.600847,16.470778],[-90.438867,16.41011],[-90.464473,16.069562],[-91.74796,16.066565],[-92.229249,15.251447],[-92.087216,15.064585],[-92.20323,14.830103],[-92.22775,14.538829],[-93.359464,15.61543],[-93.875169,15.940164],[-94.691656,16.200975],[-95.250227,16.128318],[-96.053382,15.752088],[-96.557434,15.653515],[-97.263592,15.917065],[-98.01303,16.107312],[-98.947676,16.566043],[-99.697397,16.706164],[-100.829499,17.171071],[-101.666089,17.649026],[-101.918528,17.91609],[-102.478132,17.975751],[-103.50099,18.292295],[-103.917527,18.748572],[-104.99201,19.316134],[-105.493038,19.946767],[-105.731396,20.434102],[-105.397773,20.531719],[-105.500661,20.816895],[-105.270752,21.076285],[-105.265817,21.422104],[-105.603161,21.871146],[-105.693414,22.26908],[-106.028716,22.773752],[-106.90998,23.767774],[-107.915449,24.548915],[-108.401905,25.172314],[-109.260199,25.580609],[-109.444089,25.824884],[-109.291644,26.442934],[-109.801458,26.676176],[-110.391732,27.162115],[-110.641019,27.859876],[-111.178919,27.941241],[-111.759607,28.467953],[-112.228235,28.954409],[-112.271824,29.266844],[-112.809594,30.021114],[-113.163811,30.786881],[-113.148669,31.170966],[-113.871881,31.567608],[-114.205737,31.524045],[-114.776451,31.799532],[-114.9367,31.393485],[-114.771232,30.913617],[-114.673899,30.162681],[-114.330974,29.750432],[-113.588875,29.061611],[-113.424053,28.826174],[-113.271969,28.754783],[-113.140039,28.411289],[-112.962298,28.42519],[-112.761587,27.780217],[-112.457911,27.525814],[-112.244952,27.171727],[-111.616489,26.662817],[-111.284675,25.73259],[-110.987819,25.294606],[-110.710007,24.826004],[-110.655049,24.298595],[-110.172856,24.265548],[-109.771847,23.811183],[-109.409104,23.364672],[-109.433392,23.185588],[-109.854219,22.818272],[-110.031392,22.823078],[-110.295071,23.430973],[-110.949501,24.000964],[-111.670568,24.484423],[-112.182036,24.738413],[-112.148989,25.470125],[-112.300711,26.012004],[-112.777297,26.32196],[-113.464671,26.768186],[-113.59673,26.63946],[-113.848937,26.900064],[-114.465747,27.14209],[-115.055142,27.722727],[-114.982253,27.7982],[-114.570366,27.741485],[-114.199329,28.115003],[-114.162018,28.566112],[-114.931842,29.279479],[-115.518654,29.556362],[-115.887365,30.180794],[-116.25835,30.836464],[-116.721526,31.635744],[-117.12776,32.53534],[-115.99135,32.61239],[-114.72139,32.72083],[-114.815,32.52528],[-113.30498,32.03914],[-111.02361,31.33472],[-109.035,31.34194],[-108.24194,31.34222],[-108.24,31.754854],[-106.50759,31.75452],[-106.1429,31.39995],[-105.63159,31.08383],[-105.03737,30.64402],[-104.70575,30.12173],[-104.45697,29.57196],[-103.94,29.27],[-103.11,28.97],[-102.48,29.76],[-101.6624,29.7793],[-100.9576,29.38071],[-100.45584,28.69612],[-100.11,28.11],[-99.52,27.54],[-99.3,26.84],[-99.02,26.37],[-98.24,26.06],[-97.53,25.84],[-97.140008,25.869997]]]},"id":"MEX"}, +{"type":"Feature","properties":{"name":"North Macedonia"},"geometry":{"type":"Polygon","coordinates":[[[20.59023,41.85541],[20.71731,41.84711],[20.76216,42.05186],[21.3527,42.2068],[21.576636,42.245224],[21.91708,42.30364],[22.380526,42.32026],[22.881374,41.999297],[22.952377,41.337994],[22.76177,41.3048],[22.597308,41.130487],[22.055378,41.149866],[21.674161,40.931275],[21.02004,40.842727],[20.60518,41.08622],[20.46315,41.51509],[20.59023,41.85541]]]},"id":"MKD"}, +{"type":"Feature","properties":{"name":"Mali"},"geometry":{"type":"Polygon","coordinates":[[[-12.17075,14.616834],[-11.834208,14.799097],[-11.666078,15.388208],[-11.349095,15.411256],[-10.650791,15.132746],[-10.086846,15.330486],[-9.700255,15.264107],[-9.550238,15.486497],[-5.537744,15.50169],[-5.315277,16.201854],[-5.488523,16.325102],[-5.971129,20.640833],[-6.453787,24.956591],[-4.923337,24.974574],[-1.550055,22.792666],[1.823228,20.610809],[2.060991,20.142233],[2.683588,19.85623],[3.146661,19.693579],[3.158133,19.057364],[4.267419,19.155265],[4.27021,16.852227],[3.723422,16.184284],[3.638259,15.56812],[2.749993,15.409525],[1.385528,15.323561],[1.015783,14.968182],[0.374892,14.928908],[-0.266257,14.924309],[-0.515854,15.116158],[-1.066363,14.973815],[-2.001035,14.559008],[-2.191825,14.246418],[-2.967694,13.79815],[-3.103707,13.541267],[-3.522803,13.337662],[-4.006391,13.472485],[-4.280405,13.228444],[-4.427166,12.542646],[-5.220942,11.713859],[-5.197843,11.375146],[-5.470565,10.95127],[-5.404342,10.370737],[-5.816926,10.222555],[-6.050452,10.096361],[-6.205223,10.524061],[-6.493965,10.411303],[-6.666461,10.430811],[-6.850507,10.138994],[-7.622759,10.147236],[-7.89959,10.297382],[-8.029944,10.206535],[-8.335377,10.494812],[-8.282357,10.792597],[-8.407311,10.909257],[-8.620321,10.810891],[-8.581305,11.136246],[-8.376305,11.393646],[-8.786099,11.812561],[-8.905265,12.088358],[-9.127474,12.30806],[-9.327616,12.334286],[-9.567912,12.194243],[-9.890993,12.060479],[-10.165214,11.844084],[-10.593224,11.923975],[-10.87083,12.177887],[-11.036556,12.211245],[-11.297574,12.077971],[-11.456169,12.076834],[-11.513943,12.442988],[-11.467899,12.754519],[-11.553398,13.141214],[-11.927716,13.422075],[-12.124887,13.994727],[-12.17075,14.616834]]]},"id":"MLI"}, +{"type":"Feature","properties":{"name":"Myanmar"},"geometry":{"type":"Polygon","coordinates":[[[99.543309,20.186598],[98.959676,19.752981],[98.253724,19.708203],[97.797783,18.62708],[97.375896,18.445438],[97.859123,17.567946],[98.493761,16.837836],[98.903348,16.177824],[98.537376,15.308497],[98.192074,15.123703],[98.430819,14.622028],[99.097755,13.827503],[99.212012,13.269294],[99.196354,12.804748],[99.587286,11.892763],[99.038121,10.960546],[98.553551,9.93296],[98.457174,10.675266],[98.764546,11.441292],[98.428339,12.032987],[98.509574,13.122378],[98.103604,13.64046],[97.777732,14.837286],[97.597072,16.100568],[97.16454,16.928734],[96.505769,16.427241],[95.369352,15.71439],[94.808405,15.803454],[94.188804,16.037936],[94.533486,17.27724],[94.324817,18.213514],[93.540988,19.366493],[93.663255,19.726962],[93.078278,19.855145],[92.368554,20.670883],[92.303234,21.475485],[92.652257,21.324048],[92.672721,22.041239],[93.166128,22.27846],[93.060294,22.703111],[93.286327,23.043658],[93.325188,24.078556],[94.106742,23.850741],[94.552658,24.675238],[94.603249,25.162495],[95.155153,26.001307],[95.124768,26.573572],[96.419366,27.264589],[97.133999,27.083774],[97.051989,27.699059],[97.402561,27.882536],[97.327114,28.261583],[97.911988,28.335945],[98.246231,27.747221],[98.68269,27.508812],[98.712094,26.743536],[98.671838,25.918703],[97.724609,25.083637],[97.60472,23.897405],[98.660262,24.063286],[98.898749,23.142722],[99.531992,22.949039],[99.240899,22.118314],[99.983489,21.742937],[100.416538,21.558839],[101.150033,21.849984],[101.180005,21.436573],[100.329101,20.786122],[100.115988,20.41785],[99.543309,20.186598]]]},"id":"MMR"}, +{"type":"Feature","properties":{"name":"Montenegro"},"geometry":{"type":"Polygon","coordinates":[[[19.801613,42.500093],[19.738051,42.688247],[19.30449,42.19574],[19.37177,41.87755],[19.16246,41.95502],[18.88214,42.28151],[18.45,42.48],[18.56,42.65],[18.70648,43.20011],[19.03165,43.43253],[19.21852,43.52384],[19.48389,43.35229],[19.63,43.21378],[19.95857,43.10604],[20.3398,42.89852],[20.25758,42.81275],[20.0707,42.58863],[19.801613,42.500093]]]},"id":"MNE"}, +{"type":"Feature","properties":{"name":"Mongolia"},"geometry":{"type":"Polygon","coordinates":[[[87.751264,49.297198],[88.805567,49.470521],[90.713667,50.331812],[92.234712,50.802171],[93.104219,50.49529],[94.147566,50.480537],[94.815949,50.013433],[95.814028,49.977467],[97.259728,49.726061],[98.231762,50.422401],[97.82574,51.010995],[98.861491,52.047366],[99.981732,51.634006],[100.88948,51.516856],[102.065223,51.259921],[102.255909,50.510561],[103.676545,50.089966],[104.621552,50.275329],[105.886591,50.406019],[106.888804,50.274296],[107.868176,49.793705],[108.475167,49.282548],[109.402449,49.292961],[110.662011,49.130128],[111.581231,49.377968],[112.89774,49.543565],[114.362456,50.248303],[114.96211,50.140247],[115.485695,49.805177],[116.678801,49.888531],[116.191802,49.134598],[115.485282,48.135383],[115.742837,47.726545],[116.308953,47.85341],[117.295507,47.697709],[118.064143,48.06673],[118.866574,47.74706],[119.772824,47.048059],[119.66327,46.69268],[118.874326,46.805412],[117.421701,46.672733],[116.717868,46.388202],[115.985096,45.727235],[114.460332,45.339817],[113.463907,44.808893],[112.436062,45.011646],[111.873306,45.102079],[111.348377,44.457442],[111.667737,44.073176],[111.829588,43.743118],[111.129682,43.406834],[110.412103,42.871234],[109.243596,42.519446],[107.744773,42.481516],[106.129316,42.134328],[104.964994,41.59741],[104.522282,41.908347],[103.312278,41.907468],[101.83304,42.514873],[100.845866,42.663804],[99.515817,42.524691],[97.451757,42.74889],[96.349396,42.725635],[95.762455,43.319449],[95.306875,44.241331],[94.688929,44.352332],[93.480734,44.975472],[92.133891,45.115076],[90.94554,45.286073],[90.585768,45.719716],[90.970809,46.888146],[90.280826,47.693549],[88.854298,48.069082],[88.013832,48.599463],[87.751264,49.297198]]]},"id":"MNG"}, +{"type":"Feature","properties":{"name":"Mozambique"},"geometry":{"type":"Polygon","coordinates":[[[34.559989,-11.52002],[35.312398,-11.439146],[36.514082,-11.720938],[36.775151,-11.594537],[37.471284,-11.568751],[37.827645,-11.268769],[38.427557,-11.285202],[39.52103,-10.896854],[40.316589,-10.317096],[40.478387,-10.765441],[40.437253,-11.761711],[40.560811,-12.639177],[40.59962,-14.201975],[40.775475,-14.691764],[40.477251,-15.406294],[40.089264,-16.100774],[39.452559,-16.720891],[38.538351,-17.101023],[37.411133,-17.586368],[36.281279,-18.659688],[35.896497,-18.84226],[35.1984,-19.552811],[34.786383,-19.784012],[34.701893,-20.497043],[35.176127,-21.254361],[35.373428,-21.840837],[35.385848,-22.14],[35.562546,-22.09],[35.533935,-23.070788],[35.371774,-23.535359],[35.60747,-23.706563],[35.458746,-24.12261],[35.040735,-24.478351],[34.215824,-24.816314],[33.01321,-25.357573],[32.574632,-25.727318],[32.660363,-26.148584],[32.915955,-26.215867],[32.83012,-26.742192],[32.071665,-26.73382],[31.985779,-26.29178],[31.837778,-25.843332],[31.752408,-25.484284],[31.930589,-24.369417],[31.670398,-23.658969],[31.191409,-22.25151],[32.244988,-21.116489],[32.508693,-20.395292],[32.659743,-20.30429],[32.772708,-19.715592],[32.611994,-19.419383],[32.654886,-18.67209],[32.849861,-17.979057],[32.847639,-16.713398],[32.328239,-16.392074],[31.852041,-16.319417],[31.636498,-16.07199],[31.173064,-15.860944],[30.338955,-15.880839],[30.274256,-15.507787],[30.179481,-14.796099],[33.214025,-13.97186],[33.7897,-14.451831],[34.064825,-14.35995],[34.459633,-14.61301],[34.517666,-15.013709],[34.307291,-15.478641],[34.381292,-16.18356],[35.03381,-16.8013],[35.339063,-16.10744],[35.771905,-15.896859],[35.686845,-14.611046],[35.267956,-13.887834],[34.907151,-13.565425],[34.559989,-13.579998],[34.280006,-12.280025],[34.559989,-11.52002]]]},"id":"MOZ"}, +{"type":"Feature","properties":{"name":"Mauritania"},"geometry":{"type":"Polygon","coordinates":[[[-12.17075,14.616834],[-12.830658,15.303692],[-13.435738,16.039383],[-14.099521,16.304302],[-14.577348,16.598264],[-15.135737,16.587282],[-15.623666,16.369337],[-16.12069,16.455663],[-16.463098,16.135036],[-16.549708,16.673892],[-16.270552,17.166963],[-16.146347,18.108482],[-16.256883,19.096716],[-16.377651,19.593817],[-16.277838,20.092521],[-16.536324,20.567866],[-17.063423,20.999752],[-16.845194,21.333323],[-12.929102,21.327071],[-13.118754,22.77122],[-12.874222,23.284832],[-11.937224,23.374594],[-11.969419,25.933353],[-8.687294,25.881056],[-8.6844,27.395744],[-4.923337,24.974574],[-6.453787,24.956591],[-5.971129,20.640833],[-5.488523,16.325102],[-5.315277,16.201854],[-5.537744,15.50169],[-9.550238,15.486497],[-9.700255,15.264107],[-10.086846,15.330486],[-10.650791,15.132746],[-11.349095,15.411256],[-11.666078,15.388208],[-11.834208,14.799097],[-12.17075,14.616834]]]},"id":"MRT"}, +{"type":"Feature","properties":{"name":"Malawi"},"geometry":{"type":"Polygon","coordinates":[[[34.559989,-11.52002],[34.280006,-12.280025],[34.559989,-13.579998],[34.907151,-13.565425],[35.267956,-13.887834],[35.686845,-14.611046],[35.771905,-15.896859],[35.339063,-16.10744],[35.03381,-16.8013],[34.381292,-16.18356],[34.307291,-15.478641],[34.517666,-15.013709],[34.459633,-14.61301],[34.064825,-14.35995],[33.7897,-14.451831],[33.214025,-13.97186],[32.688165,-13.712858],[32.991764,-12.783871],[33.306422,-12.435778],[33.114289,-11.607198],[33.31531,-10.79655],[33.485688,-10.525559],[33.231388,-9.676722],[32.759375,-9.230599],[33.739729,-9.417151],[33.940838,-9.693674],[34.280006,-10.16],[34.559989,-11.52002]]]},"id":"MWI"}, +{"type":"Feature","properties":{"name":"Malaysia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.075516,6.204867],[101.154219,5.691384],[101.814282,5.810808],[102.141187,6.221636],[102.371147,6.128205],[102.961705,5.524495],[103.381215,4.855001],[103.438575,4.181606],[103.332122,3.726698],[103.429429,3.382869],[103.502448,2.791019],[103.854674,2.515454],[104.247932,1.631141],[104.228811,1.293048],[103.519707,1.226334],[102.573615,1.967115],[101.390638,2.760814],[101.27354,3.270292],[100.695435,3.93914],[100.557408,4.76728],[100.196706,5.312493],[100.30626,6.040562],[100.085757,6.464489],[100.259596,6.642825],[101.075516,6.204867]]],[[[118.618321,4.478202],[117.882035,4.137551],[117.015214,4.306094],[115.865517,4.306559],[115.519078,3.169238],[115.134037,2.821482],[114.621355,1.430688],[113.80585,1.217549],[112.859809,1.49779],[112.380252,1.410121],[111.797548,0.904441],[111.159138,0.976478],[110.514061,0.773131],[109.830227,1.338136],[109.66326,2.006467],[110.396135,1.663775],[111.168853,1.850637],[111.370081,2.697303],[111.796928,2.885897],[112.995615,3.102395],[113.712935,3.893509],[114.204017,4.525874],[114.659596,4.007637],[114.869557,4.348314],[115.347461,4.316636],[115.4057,4.955228],[115.45071,5.44773],[116.220741,6.143191],[116.725103,6.924771],[117.129626,6.928053],[117.643393,6.422166],[117.689075,5.98749],[118.347691,5.708696],[119.181904,5.407836],[119.110694,5.016128],[118.439727,4.966519],[118.618321,4.478202]]]]},"id":"MYS"}, +{"type":"Feature","properties":{"name":"Namibia"},"geometry":{"type":"Polygon","coordinates":[[[16.344977,-28.576705],[15.601818,-27.821247],[15.210472,-27.090956],[14.989711,-26.117372],[14.743214,-25.39292],[14.408144,-23.853014],[14.385717,-22.656653],[14.257714,-22.111208],[13.868642,-21.699037],[13.352498,-20.872834],[12.826845,-19.673166],[12.608564,-19.045349],[11.794919,-18.069129],[11.734199,-17.301889],[12.215461,-17.111668],[12.814081,-16.941343],[13.462362,-16.971212],[14.058501,-17.423381],[14.209707,-17.353101],[18.263309,-17.309951],[18.956187,-17.789095],[21.377176,-17.930636],[23.215048,-17.523116],[24.033862,-17.295843],[24.682349,-17.353411],[25.07695,-17.578823],[25.084443,-17.661816],[24.520705,-17.887125],[24.217365,-17.889347],[23.579006,-18.281261],[23.196858,-17.869038],[21.65504,-18.219146],[20.910641,-18.252219],[20.881134,-21.814327],[19.895458,-21.849157],[19.895768,-24.76779],[19.894734,-28.461105],[19.002127,-28.972443],[18.464899,-29.045462],[17.836152,-28.856378],[17.387497,-28.783514],[17.218929,-28.355943],[16.824017,-28.082162],[16.344977,-28.576705]]]},"id":"NAM"}, +{"type":"Feature","properties":{"name":"New Caledonia"},"geometry":{"type":"Polygon","coordinates":[[[165.77999,-21.080005],[166.599991,-21.700019],[167.120011,-22.159991],[166.740035,-22.399976],[166.189732,-22.129708],[165.474375,-21.679607],[164.829815,-21.14982],[164.167995,-20.444747],[164.029606,-20.105646],[164.459967,-20.120012],[165.020036,-20.459991],[165.460009,-20.800022],[165.77999,-21.080005]]]},"id":"NCL"}, +{"type":"Feature","properties":{"name":"Niger"},"geometry":{"type":"Polygon","coordinates":[[[2.154474,11.94015],[2.177108,12.625018],[1.024103,12.851826],[0.993046,13.33575],[0.429928,13.988733],[0.295646,14.444235],[0.374892,14.928908],[1.015783,14.968182],[1.385528,15.323561],[2.749993,15.409525],[3.638259,15.56812],[3.723422,16.184284],[4.27021,16.852227],[4.267419,19.155265],[5.677566,19.601207],[8.572893,21.565661],[11.999506,23.471668],[13.581425,23.040506],[14.143871,22.491289],[14.8513,22.86295],[15.096888,21.308519],[15.471077,21.048457],[15.487148,20.730415],[15.903247,20.387619],[15.685741,19.95718],[15.300441,17.92795],[15.247731,16.627306],[13.972202,15.684366],[13.540394,14.367134],[13.956699,13.996691],[13.954477,13.353449],[14.595781,13.330427],[14.495787,12.859396],[14.213531,12.802035],[14.181336,12.483657],[13.995353,12.461565],[13.318702,13.556356],[13.083987,13.596147],[12.302071,13.037189],[11.527803,13.32898],[10.989593,13.387323],[10.701032,13.246918],[10.114814,13.277252],[9.524928,12.851102],[9.014933,12.826659],[7.804671,13.343527],[7.330747,13.098038],[6.820442,13.115091],[6.445426,13.492768],[5.443058,13.865924],[4.368344,13.747482],[4.107946,13.531216],[3.967283,12.956109],[3.680634,12.552903],[3.61118,11.660167],[2.848643,12.235636],[2.490164,12.233052],[2.154474,11.94015]]]},"id":"NER"}, +{"type":"Feature","properties":{"name":"Nigeria"},"geometry":{"type":"Polygon","coordinates":[[[8.500288,4.771983],[7.462108,4.412108],[7.082596,4.464689],[6.698072,4.240594],[5.898173,4.262453],[5.362805,4.887971],[5.033574,5.611802],[4.325607,6.270651],[3.57418,6.2583],[2.691702,6.258817],[2.749063,7.870734],[2.723793,8.506845],[2.912308,9.137608],[3.220352,9.444153],[3.705438,10.06321],[3.60007,10.332186],[3.797112,10.734746],[3.572216,11.327939],[3.61118,11.660167],[3.680634,12.552903],[3.967283,12.956109],[4.107946,13.531216],[4.368344,13.747482],[5.443058,13.865924],[6.445426,13.492768],[6.820442,13.115091],[7.330747,13.098038],[7.804671,13.343527],[9.014933,12.826659],[9.524928,12.851102],[10.114814,13.277252],[10.701032,13.246918],[10.989593,13.387323],[11.527803,13.32898],[12.302071,13.037189],[13.083987,13.596147],[13.318702,13.556356],[13.995353,12.461565],[14.181336,12.483657],[14.577178,12.085361],[14.468192,11.904752],[14.415379,11.572369],[13.57295,10.798566],[13.308676,10.160362],[13.1676,9.640626],[12.955468,9.417772],[12.753672,8.717763],[12.218872,8.305824],[12.063946,7.799808],[11.839309,7.397042],[11.745774,6.981383],[11.058788,6.644427],[10.497375,7.055358],[10.118277,7.03877],[9.522706,6.453482],[9.233163,6.444491],[8.757533,5.479666],[8.500288,4.771983]]]},"id":"NGA"}, +{"type":"Feature","properties":{"name":"Nicaragua"},"geometry":{"type":"Polygon","coordinates":[[[-85.71254,11.088445],[-86.058488,11.403439],[-86.52585,11.806877],[-86.745992,12.143962],[-87.167516,12.458258],[-87.668493,12.90991],[-87.557467,13.064552],[-87.392386,12.914018],[-87.316654,12.984686],[-87.005769,13.025794],[-86.880557,13.254204],[-86.733822,13.263093],[-86.755087,13.754845],[-86.520708,13.778487],[-86.312142,13.771356],[-86.096264,14.038187],[-85.801295,13.836055],[-85.698665,13.960078],[-85.514413,14.079012],[-85.165365,14.35437],[-85.148751,14.560197],[-85.052787,14.551541],[-84.924501,14.790493],[-84.820037,14.819587],[-84.649582,14.666805],[-84.449336,14.621614],[-84.228342,14.748764],[-83.975721,14.749436],[-83.628585,14.880074],[-83.489989,15.016267],[-83.147219,14.995829],[-83.233234,14.899866],[-83.284162,14.676624],[-83.182126,14.310703],[-83.4125,13.970078],[-83.519832,13.567699],[-83.552207,13.127054],[-83.498515,12.869292],[-83.473323,12.419087],[-83.626104,12.32085],[-83.719613,11.893124],[-83.650858,11.629032],[-83.85547,11.373311],[-83.808936,11.103044],[-83.655612,10.938764],[-83.895054,10.726839],[-84.190179,10.79345],[-84.355931,10.999226],[-84.673069,11.082657],[-84.903003,10.952303],[-85.561852,11.217119],[-85.71254,11.088445]]]},"id":"NIC"}, +{"type":"Feature","properties":{"name":"Netherlands"},"geometry":{"type":"Polygon","coordinates":[[[6.074183,53.510403],[6.90514,53.482162],[7.092053,53.144043],[6.84287,52.22844],[6.589397,51.852029],[5.988658,51.851616],[6.156658,50.803721],[5.606976,51.037298],[4.973991,51.475024],[4.047071,51.267259],[3.314971,51.345755],[3.830289,51.620545],[4.705997,53.091798],[6.074183,53.510403]]]},"id":"NLD"}, +{"type":"Feature","properties":{"name":"Norway"},"geometry":{"type":"MultiPolygon","coordinates":[[[[28.165547,71.185474],[31.293418,70.453788],[30.005435,70.186259],[31.101079,69.55808],[29.399581,69.156916],[28.59193,69.064777],[29.015573,69.766491],[27.732292,70.164193],[26.179622,69.825299],[25.689213,69.092114],[24.735679,68.649557],[23.66205,68.891247],[22.356238,68.841741],[21.244936,69.370443],[20.645593,69.106247],[20.025269,69.065139],[19.87856,68.407194],[17.993868,68.567391],[17.729182,68.010552],[16.768879,68.013937],[16.108712,67.302456],[15.108411,66.193867],[13.55569,64.787028],[13.919905,64.445421],[13.571916,64.049114],[12.579935,64.066219],[11.930569,63.128318],[11.992064,61.800362],[12.631147,61.293572],[12.300366,60.117933],[11.468272,59.432393],[11.027369,58.856149],[10.356557,59.469807],[8.382,58.313288],[7.048748,58.078884],[5.665835,58.588155],[5.308234,59.663232],[4.992078,61.970998],[5.9129,62.614473],[8.553411,63.454008],[10.527709,64.486038],[12.358347,65.879726],[14.761146,67.810642],[16.435927,68.563205],[19.184028,69.817444],[21.378416,70.255169],[23.023742,70.202072],[24.546543,71.030497],[26.37005,70.986262],[28.165547,71.185474]]],[[[24.72412,77.85385],[22.49032,77.44493],[20.72601,77.67704],[21.41611,77.93504],[20.8119,78.25463],[22.88426,78.45494],[23.28134,78.07954],[24.72412,77.85385]]],[[[18.25183,79.70175],[21.54383,78.95611],[19.02737,78.5626],[18.47172,77.82669],[17.59441,77.63796],[17.1182,76.80941],[15.91315,76.77045],[13.76259,77.38035],[14.66956,77.73565],[13.1706,78.02493],[11.22231,78.8693],[10.44453,79.65239],[13.17077,80.01046],[13.71852,79.66039],[15.14282,79.67431],[15.52255,80.01608],[16.99085,80.05086],[18.25183,79.70175]]],[[[25.447625,80.40734],[27.407506,80.056406],[25.924651,79.517834],[23.024466,79.400012],[20.075188,79.566823],[19.897266,79.842362],[18.462264,79.85988],[17.368015,80.318896],[20.455992,80.598156],[21.907945,80.357679],[22.919253,80.657144],[25.447625,80.40734]]]]},"id":"NOR"}, +{"type":"Feature","properties":{"name":"Nepal"},"geometry":{"type":"Polygon","coordinates":[[[88.120441,27.876542],[88.043133,27.445819],[88.174804,26.810405],[88.060238,26.414615],[87.227472,26.397898],[86.024393,26.630985],[85.251779,26.726198],[84.675018,27.234901],[83.304249,27.364506],[81.999987,27.925479],[81.057203,28.416095],[80.088425,28.79447],[80.476721,29.729865],[81.111256,30.183481],[81.525804,30.422717],[82.327513,30.115268],[83.337115,29.463732],[83.898993,29.320226],[84.23458,28.839894],[85.011638,28.642774],[85.82332,28.203576],[86.954517,27.974262],[88.120441,27.876542]]]},"id":"NPL"}, +{"type":"Feature","properties":{"name":"New Zealand"},"geometry":{"type":"MultiPolygon","coordinates":[[[[173.020375,-40.919052],[173.247234,-41.331999],[173.958405,-40.926701],[174.247587,-41.349155],[174.248517,-41.770008],[173.876447,-42.233184],[173.22274,-42.970038],[172.711246,-43.372288],[173.080113,-43.853344],[172.308584,-43.865694],[171.452925,-44.242519],[171.185138,-44.897104],[170.616697,-45.908929],[169.831422,-46.355775],[169.332331,-46.641235],[168.411354,-46.619945],[167.763745,-46.290197],[166.676886,-46.219917],[166.509144,-45.852705],[167.046424,-45.110941],[168.303763,-44.123973],[168.949409,-43.935819],[169.667815,-43.555326],[170.52492,-43.031688],[171.12509,-42.512754],[171.569714,-41.767424],[171.948709,-41.514417],[172.097227,-40.956104],[172.79858,-40.493962],[173.020375,-40.919052]]],[[[174.612009,-36.156397],[175.336616,-37.209098],[175.357596,-36.526194],[175.808887,-36.798942],[175.95849,-37.555382],[176.763195,-37.881253],[177.438813,-37.961248],[178.010354,-37.579825],[178.517094,-37.695373],[178.274731,-38.582813],[177.97046,-39.166343],[177.206993,-39.145776],[176.939981,-39.449736],[177.032946,-39.879943],[176.885824,-40.065978],[176.508017,-40.604808],[176.01244,-41.289624],[175.239567,-41.688308],[175.067898,-41.425895],[174.650973,-41.281821],[175.22763,-40.459236],[174.900157,-39.908933],[173.824047,-39.508854],[173.852262,-39.146602],[174.574802,-38.797683],[174.743474,-38.027808],[174.697017,-37.381129],[174.292028,-36.711092],[174.319004,-36.534824],[173.840997,-36.121981],[173.054171,-35.237125],[172.636005,-34.529107],[173.007042,-34.450662],[173.551298,-35.006183],[174.32939,-35.265496],[174.612009,-36.156397]]]]},"id":"NZL"}, +{"type":"Feature","properties":{"name":"Oman"},"geometry":{"type":"MultiPolygon","coordinates":[[[[58.861141,21.114035],[58.487986,20.428986],[58.034318,20.481437],[57.826373,20.243002],[57.665762,19.736005],[57.7887,19.06757],[57.694391,18.94471],[57.234264,18.947991],[56.609651,18.574267],[56.512189,18.087113],[56.283521,17.876067],[55.661492,17.884128],[55.269939,17.632309],[55.2749,17.228354],[54.791002,16.950697],[54.239253,17.044981],[53.570508,16.707663],[53.108573,16.651051],[52.782184,17.349742],[52.00001,19.000003],[54.999982,19.999994],[55.666659,22.000001],[55.208341,22.70833],[55.234489,23.110993],[55.525841,23.524869],[55.528632,23.933604],[55.981214,24.130543],[55.804119,24.269604],[55.886233,24.920831],[56.396847,24.924732],[56.84514,24.241673],[57.403453,23.878594],[58.136948,23.747931],[58.729211,23.565668],[59.180502,22.992395],[59.450098,22.660271],[59.80806,22.533612],[59.806148,22.310525],[59.442191,21.714541],[59.282408,21.433886],[58.861141,21.114035]]],[[[56.391421,25.895991],[56.261042,25.714606],[56.070821,26.055464],[56.362017,26.395934],[56.485679,26.309118],[56.391421,25.895991]]]]},"id":"OMN"}, +{"type":"Feature","properties":{"name":"Pakistan"},"geometry":{"type":"Polygon","coordinates":[[[75.158028,37.133031],[75.896897,36.666806],[76.192848,35.898403],[77.837451,35.49401],[76.871722,34.653544],[75.757061,34.504923],[74.240203,34.748887],[73.749948,34.317699],[74.104294,33.441473],[74.451559,32.7649],[75.258642,32.271105],[74.405929,31.692639],[74.42138,30.979815],[73.450638,29.976413],[72.823752,28.961592],[71.777666,27.91318],[70.616496,27.989196],[69.514393,26.940966],[70.168927,26.491872],[70.282873,25.722229],[70.844699,25.215102],[71.04324,24.356524],[68.842599,24.359134],[68.176645,23.691965],[67.443667,23.944844],[67.145442,24.663611],[66.372828,25.425141],[64.530408,25.237039],[62.905701,25.218409],[61.497363,25.078237],[61.874187,26.239975],[63.316632,26.756532],[63.233898,27.217047],[62.755426,27.378923],[62.72783,28.259645],[61.771868,28.699334],[61.369309,29.303276],[60.874248,29.829239],[62.549857,29.318572],[63.550261,29.468331],[64.148002,29.340819],[64.350419,29.560031],[65.046862,29.472181],[66.346473,29.887943],[66.381458,30.738899],[66.938891,31.304911],[67.683394,31.303154],[67.792689,31.58293],[68.556932,31.71331],[68.926677,31.620189],[69.317764,31.901412],[69.262522,32.501944],[69.687147,33.105499],[70.323594,33.358533],[69.930543,34.02012],[70.881803,33.988856],[71.156773,34.348911],[71.115019,34.733126],[71.613076,35.153203],[71.498768,35.650563],[71.262348,36.074388],[71.846292,36.509942],[72.920025,36.720007],[74.067552,36.836176],[74.575893,37.020841],[75.158028,37.133031]]]},"id":"PAK"}, +{"type":"Feature","properties":{"name":"Panama"},"geometry":{"type":"Polygon","coordinates":[[[-77.881571,7.223771],[-78.214936,7.512255],[-78.429161,8.052041],[-78.182096,8.319182],[-78.435465,8.387705],[-78.622121,8.718124],[-79.120307,8.996092],[-79.557877,8.932375],[-79.760578,8.584515],[-80.164481,8.333316],[-80.382659,8.298409],[-80.480689,8.090308],[-80.00369,7.547524],[-80.276671,7.419754],[-80.421158,7.271572],[-80.886401,7.220541],[-81.059543,7.817921],[-81.189716,7.647906],[-81.519515,7.70661],[-81.721311,8.108963],[-82.131441,8.175393],[-82.390934,8.292362],[-82.820081,8.290864],[-82.850958,8.073823],[-82.965783,8.225028],[-82.913176,8.423517],[-82.829771,8.626295],[-82.868657,8.807266],[-82.719183,8.925709],[-82.927155,9.07433],[-82.932891,9.476812],[-82.546196,9.566135],[-82.187123,9.207449],[-82.207586,8.995575],[-81.808567,8.950617],[-81.714154,9.031955],[-81.439287,8.786234],[-80.947302,8.858504],[-80.521901,9.111072],[-79.9146,9.312765],[-79.573303,9.61161],[-79.021192,9.552931],[-79.05845,9.454565],[-78.500888,9.420459],[-78.055928,9.24773],[-77.729514,8.946844],[-77.353361,8.670505],[-77.474723,8.524286],[-77.242566,7.935278],[-77.431108,7.638061],[-77.753414,7.70984],[-77.881571,7.223771]]]},"id":"PAN"}, +{"type":"Feature","properties":{"name":"Peru"},"geometry":{"type":"Polygon","coordinates":[[[-69.590424,-17.580012],[-69.858444,-18.092694],[-70.372572,-18.347975],[-71.37525,-17.773799],[-71.462041,-17.363488],[-73.44453,-16.359363],[-75.237883,-15.265683],[-76.009205,-14.649286],[-76.423469,-13.823187],[-76.259242,-13.535039],[-77.106192,-12.222716],[-78.092153,-10.377712],[-79.036953,-8.386568],[-79.44592,-7.930833],[-79.760578,-7.194341],[-80.537482,-6.541668],[-81.249996,-6.136834],[-80.926347,-5.690557],[-81.410943,-4.736765],[-81.09967,-4.036394],[-80.302561,-3.404856],[-80.184015,-3.821162],[-80.469295,-4.059287],[-80.442242,-4.425724],[-80.028908,-4.346091],[-79.624979,-4.454198],[-79.205289,-4.959129],[-78.639897,-4.547784],[-78.450684,-3.873097],[-77.837905,-3.003021],[-76.635394,-2.608678],[-75.544996,-1.56161],[-75.233723,-0.911417],[-75.373223,-0.152032],[-75.106625,-0.057205],[-74.441601,-0.53082],[-74.122395,-1.002833],[-73.659504,-1.260491],[-73.070392,-2.308954],[-72.325787,-2.434218],[-71.774761,-2.16979],[-71.413646,-2.342802],[-70.813476,-2.256865],[-70.047709,-2.725156],[-70.692682,-3.742872],[-70.394044,-3.766591],[-69.893635,-4.298187],[-70.794769,-4.251265],[-70.928843,-4.401591],[-71.748406,-4.593983],[-72.891928,-5.274561],[-72.964507,-5.741251],[-73.219711,-6.089189],[-73.120027,-6.629931],[-73.724487,-6.918595],[-73.723401,-7.340999],[-73.987235,-7.52383],[-73.571059,-8.424447],[-73.015383,-9.032833],[-73.226713,-9.462213],[-72.563033,-9.520194],[-72.184891,-10.053598],[-71.302412,-10.079436],[-70.481894,-9.490118],[-70.548686,-11.009147],[-70.093752,-11.123972],[-69.529678,-10.951734],[-68.66508,-12.5613],[-68.88008,-12.899729],[-68.929224,-13.602684],[-68.948887,-14.453639],[-69.339535,-14.953195],[-69.160347,-15.323974],[-69.389764,-15.660129],[-68.959635,-16.500698],[-69.590424,-17.580012]]]},"id":"PER"}, +{"type":"Feature","properties":{"name":"Philippines"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.376814,8.414706],[126.478513,7.750354],[126.537424,7.189381],[126.196773,6.274294],[125.831421,7.293715],[125.363852,6.786485],[125.683161,6.049657],[125.396512,5.581003],[124.219788,6.161355],[123.93872,6.885136],[124.243662,7.36061],[123.610212,7.833527],[123.296071,7.418876],[122.825506,7.457375],[122.085499,6.899424],[121.919928,7.192119],[122.312359,8.034962],[122.942398,8.316237],[123.487688,8.69301],[123.841154,8.240324],[124.60147,8.514158],[124.764612,8.960409],[125.471391,8.986997],[125.412118,9.760335],[126.222714,9.286074],[126.306637,8.782487],[126.376814,8.414706]]],[[[123.982438,10.278779],[123.623183,9.950091],[123.309921,9.318269],[122.995883,9.022189],[122.380055,9.713361],[122.586089,9.981045],[122.837081,10.261157],[122.947411,10.881868],[123.49885,10.940624],[123.337774,10.267384],[124.077936,11.232726],[123.982438,10.278779]]],[[[118.504581,9.316383],[117.174275,8.3675],[117.664477,9.066889],[118.386914,9.6845],[118.987342,10.376292],[119.511496,11.369668],[119.689677,10.554291],[119.029458,10.003653],[118.504581,9.316383]]],[[[121.883548,11.891755],[122.483821,11.582187],[123.120217,11.58366],[123.100838,11.165934],[122.637714,10.741308],[122.00261,10.441017],[121.967367,10.905691],[122.03837,11.415841],[121.883548,11.891755]]],[[[125.502552,12.162695],[125.783465,11.046122],[125.011884,11.311455],[125.032761,10.975816],[125.277449,10.358722],[124.801819,10.134679],[124.760168,10.837995],[124.459101,10.88993],[124.302522,11.495371],[124.891013,11.415583],[124.87799,11.79419],[124.266762,12.557761],[125.227116,12.535721],[125.502552,12.162695]]],[[[121.527394,13.06959],[121.26219,12.20556],[120.833896,12.704496],[120.323436,13.466413],[121.180128,13.429697],[121.527394,13.06959]]],[[[121.321308,18.504065],[121.937601,18.218552],[122.246006,18.47895],[122.336957,18.224883],[122.174279,17.810283],[122.515654,17.093505],[122.252311,16.262444],[121.662786,15.931018],[121.50507,15.124814],[121.728829,14.328376],[122.258925,14.218202],[122.701276,14.336541],[123.950295,13.782131],[123.855107,13.237771],[124.181289,12.997527],[124.077419,12.536677],[123.298035,13.027526],[122.928652,13.55292],[122.671355,13.185836],[122.03465,13.784482],[121.126385,13.636687],[120.628637,13.857656],[120.679384,14.271016],[120.991819,14.525393],[120.693336,14.756671],[120.564145,14.396279],[120.070429,14.970869],[119.920929,15.406347],[119.883773,16.363704],[120.286488,16.034629],[120.390047,17.599081],[120.715867,18.505227],[121.321308,18.504065]]]]},"id":"PHL"}, +{"type":"Feature","properties":{"name":"Papua New Guinea"},"geometry":{"type":"MultiPolygon","coordinates":[[[[155.880026,-6.819997],[155.599991,-6.919991],[155.166994,-6.535931],[154.729192,-5.900828],[154.514114,-5.139118],[154.652504,-5.042431],[154.759991,-5.339984],[155.062918,-5.566792],[155.547746,-6.200655],[156.019965,-6.540014],[155.880026,-6.819997]]],[[[151.982796,-5.478063],[151.459107,-5.56028],[151.30139,-5.840728],[150.754447,-6.083763],[150.241197,-6.317754],[149.709963,-6.316513],[148.890065,-6.02604],[148.318937,-5.747142],[148.401826,-5.437756],[149.298412,-5.583742],[149.845562,-5.505503],[149.99625,-5.026101],[150.139756,-5.001348],[150.236908,-5.53222],[150.807467,-5.455842],[151.089672,-5.113693],[151.647881,-4.757074],[151.537862,-4.167807],[152.136792,-4.14879],[152.338743,-4.312966],[152.318693,-4.867661],[151.982796,-5.478063]]],[[[147.191874,-7.388024],[148.084636,-8.044108],[148.734105,-9.104664],[149.306835,-9.071436],[149.266631,-9.514406],[150.038728,-9.684318],[149.738798,-9.872937],[150.801628,-10.293687],[150.690575,-10.582713],[150.028393,-10.652476],[149.78231,-10.393267],[148.923138,-10.280923],[147.913018,-10.130441],[147.135443,-9.492444],[146.567881,-8.942555],[146.048481,-8.067414],[144.744168,-7.630128],[143.897088,-7.91533],[143.286376,-8.245491],[143.413913,-8.983069],[142.628431,-9.326821],[142.068259,-9.159596],[141.033852,-9.117893],[141.017057,-5.859022],[141.00021,-2.600151],[142.735247,-3.289153],[144.583971,-3.861418],[145.27318,-4.373738],[145.829786,-4.876498],[145.981922,-5.465609],[147.648073,-6.083659],[147.891108,-6.614015],[146.970905,-6.721657],[147.191874,-7.388024]]],[[[153.140038,-4.499983],[152.827292,-4.766427],[152.638673,-4.176127],[152.406026,-3.789743],[151.953237,-3.462062],[151.384279,-3.035422],[150.66205,-2.741486],[150.939965,-2.500002],[151.479984,-2.779985],[151.820015,-2.999972],[152.239989,-3.240009],[152.640017,-3.659983],[153.019994,-3.980015],[153.140038,-4.499983]]]]},"id":"PNG"}, +{"type":"Feature","properties":{"name":"Poland"},"geometry":{"type":"Polygon","coordinates":[[[15.016996,51.106674],[14.607098,51.745188],[14.685026,52.089947],[14.4376,52.62485],[14.074521,52.981263],[14.353315,53.248171],[14.119686,53.757029],[14.8029,54.050706],[16.363477,54.513159],[17.622832,54.851536],[18.620859,54.682606],[18.696255,54.438719],[19.66064,54.426084],[20.892245,54.312525],[22.731099,54.327537],[23.243987,54.220567],[23.484128,53.912498],[23.527536,53.470122],[23.804935,53.089731],[23.799199,52.691099],[23.199494,52.486977],[23.508002,52.023647],[23.527071,51.578454],[24.029986,50.705407],[23.922757,50.424881],[23.426508,50.308506],[22.51845,49.476774],[22.776419,49.027395],[22.558138,49.085738],[21.607808,49.470107],[20.887955,49.328772],[20.415839,49.431453],[19.825023,49.217125],[19.320713,49.571574],[18.909575,49.435846],[18.853144,49.49623],[18.392914,49.988629],[17.649445,50.049038],[17.554567,50.362146],[16.868769,50.473974],[16.719476,50.215747],[16.176253,50.422607],[16.238627,50.697733],[15.490972,50.78473],[15.016996,51.106674]]]},"id":"POL"}, +{"type":"Feature","properties":{"name":"Puerto Rico"},"geometry":{"type":"Polygon","coordinates":[[[-66.282434,18.514762],[-65.771303,18.426679],[-65.591004,18.228035],[-65.847164,17.975906],[-66.599934,17.981823],[-67.184162,17.946553],[-67.242428,18.37446],[-67.100679,18.520601],[-66.282434,18.514762]]]},"id":"PRI"}, +{"type":"Feature","properties":{"name":"North Korea"},"geometry":{"type":"Polygon","coordinates":[[[130.640016,42.395009],[130.780007,42.220007],[130.400031,42.280004],[129.965949,41.941368],[129.667362,41.601104],[129.705189,40.882828],[129.188115,40.661808],[129.0104,40.485436],[128.633368,40.189847],[127.967414,40.025413],[127.533436,39.75685],[127.50212,39.323931],[127.385434,39.213472],[127.783343,39.050898],[128.349716,38.612243],[128.205746,38.370397],[127.780035,38.304536],[127.073309,38.256115],[126.68372,37.804773],[126.237339,37.840378],[126.174759,37.749686],[125.689104,37.94001],[125.568439,37.752089],[125.27533,37.669071],[125.240087,37.857224],[124.981033,37.948821],[124.712161,38.108346],[124.985994,38.548474],[125.221949,38.665857],[125.132859,38.848559],[125.38659,39.387958],[125.321116,39.551385],[124.737482,39.660344],[124.265625,39.928493],[125.079942,40.569824],[126.182045,41.107336],[126.869083,41.816569],[127.343783,41.503152],[128.208433,41.466772],[128.052215,41.994285],[129.596669,42.424982],[129.994267,42.985387],[130.640016,42.395009]]]},"id":"PRK"}, +{"type":"Feature","properties":{"name":"Portugal"},"geometry":{"type":"Polygon","coordinates":[[[-9.034818,41.880571],[-8.671946,42.134689],[-8.263857,42.280469],[-8.013175,41.790886],[-7.422513,41.792075],[-7.251309,41.918346],[-6.668606,41.883387],[-6.389088,41.381815],[-6.851127,41.111083],[-6.86402,40.330872],[-7.026413,40.184524],[-7.066592,39.711892],[-7.498632,39.629571],[-7.098037,39.030073],[-7.374092,38.373059],[-7.029281,38.075764],[-7.166508,37.803894],[-7.537105,37.428904],[-7.453726,37.097788],[-7.855613,36.838269],[-8.382816,36.97888],[-8.898857,36.868809],[-8.746101,37.651346],[-8.839998,38.266243],[-9.287464,38.358486],[-9.526571,38.737429],[-9.446989,39.392066],[-9.048305,39.755093],[-8.977353,40.159306],[-8.768684,40.760639],[-8.790853,41.184334],[-8.990789,41.543459],[-9.034818,41.880571]]]},"id":"PRT"}, +{"type":"Feature","properties":{"name":"Paraguay"},"geometry":{"type":"Polygon","coordinates":[[[-62.685057,-22.249029],[-62.291179,-21.051635],[-62.265961,-20.513735],[-61.786326,-19.633737],[-60.043565,-19.342747],[-59.115042,-19.356906],[-58.183471,-19.868399],[-58.166392,-20.176701],[-57.870674,-20.732688],[-57.937156,-22.090176],[-56.88151,-22.282154],[-56.473317,-22.0863],[-55.797958,-22.35693],[-55.610683,-22.655619],[-55.517639,-23.571998],[-55.400747,-23.956935],[-55.027902,-24.001274],[-54.652834,-23.839578],[-54.29296,-24.021014],[-54.293476,-24.5708],[-54.428946,-25.162185],[-54.625291,-25.739255],[-54.788795,-26.621786],[-55.695846,-27.387837],[-56.486702,-27.548499],[-57.60976,-27.395899],[-58.618174,-27.123719],[-57.63366,-25.603657],[-57.777217,-25.16234],[-58.807128,-24.771459],[-60.028966,-24.032796],[-60.846565,-23.880713],[-62.685057,-22.249029]]]},"id":"PRY"}, +{"type":"Feature","properties":{"name":"Qatar"},"geometry":{"type":"Polygon","coordinates":[[[50.810108,24.754743],[50.743911,25.482424],[51.013352,26.006992],[51.286462,26.114582],[51.589079,25.801113],[51.6067,25.21567],[51.389608,24.627386],[51.112415,24.556331],[50.810108,24.754743]]]},"id":"QAT"}, +{"type":"Feature","properties":{"name":"Romania"},"geometry":{"type":"Polygon","coordinates":[[[22.710531,47.882194],[23.142236,48.096341],[23.760958,47.985598],[24.402056,47.981878],[24.866317,47.737526],[25.207743,47.891056],[25.945941,47.987149],[26.19745,48.220881],[26.619337,48.220726],[26.924176,48.123264],[27.233873,47.826771],[27.551166,47.405117],[28.12803,46.810476],[28.160018,46.371563],[28.054443,45.944586],[28.233554,45.488283],[28.679779,45.304031],[29.149725,45.464925],[29.603289,45.293308],[29.626543,45.035391],[29.141612,44.82021],[28.837858,44.913874],[28.558081,43.707462],[27.970107,43.812468],[27.2424,44.175986],[26.065159,43.943494],[25.569272,43.688445],[24.100679,43.741051],[23.332302,43.897011],[22.944832,43.823785],[22.65715,44.234923],[22.474008,44.409228],[22.705726,44.578003],[22.459022,44.702517],[22.145088,44.478422],[21.562023,44.768947],[21.483526,45.18117],[20.874313,45.416375],[20.762175,45.734573],[20.220192,46.127469],[21.021952,46.316088],[21.626515,46.994238],[22.099768,47.672439],[22.710531,47.882194]]]},"id":"ROU"}, +{"type":"Feature","properties":{"name":"Russia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[143.648007,50.7476],[144.654148,48.976391],[143.173928,49.306551],[142.558668,47.861575],[143.533492,46.836728],[143.505277,46.137908],[142.747701,46.740765],[142.09203,45.966755],[141.906925,46.805929],[142.018443,47.780133],[141.904445,48.859189],[142.1358,49.615163],[142.179983,50.952342],[141.594076,51.935435],[141.682546,53.301966],[142.606934,53.762145],[142.209749,54.225476],[142.654786,54.365881],[142.914616,53.704578],[143.260848,52.74076],[143.235268,51.75666],[143.648007,50.7476]]],[[[22.731099,54.327537],[20.892245,54.312525],[19.66064,54.426084],[19.888481,54.86616],[21.268449,55.190482],[22.315724,55.015299],[22.757764,54.856574],[22.651052,54.582741],[22.731099,54.327537]]],[[[-175.01425,66.58435],[-174.33983,66.33556],[-174.57182,67.06219],[-171.85731,66.91308],[-169.89958,65.97724],[-170.89107,65.54139],[-172.53025,65.43791],[-172.555,64.46079],[-172.95533,64.25269],[-173.89184,64.2826],[-174.65392,64.63125],[-175.98353,64.92288],[-176.20716,65.35667],[-177.22266,65.52024],[-178.35993,65.39052],[-178.90332,65.74044],[-178.68611,66.11211],[-179.88377,65.87456],[-179.43268,65.40411],[-180,64.979709],[-180,68.963636],[-177.55,68.2],[-174.92825,67.20589],[-175.01425,66.58435]]],[[[180,70.832199],[178.903425,70.78114],[178.7253,71.0988],[180,71.515714],[180,70.832199]]],[[[-178.69378,70.89302],[-180,70.832199],[-180,71.515714],[-179.871875,71.55762],[-179.02433,71.55553],[-177.577945,71.26948],[-177.663575,71.13277],[-178.69378,70.89302]]],[[[143.60385,73.21244],[142.08763,73.20544],[140.038155,73.31692],[139.86312,73.36983],[140.81171,73.76506],[142.06207,73.85758],[143.48283,73.47525],[143.60385,73.21244]]],[[[150.73167,75.08406],[149.575925,74.68892],[147.977465,74.778355],[146.11919,75.17298],[146.358485,75.49682],[148.22223,75.345845],[150.73167,75.08406]]],[[[145.086285,75.562625],[144.3,74.82],[140.61381,74.84768],[138.95544,74.61148],[136.97439,75.26167],[137.51176,75.94917],[138.831075,76.13676],[141.471615,76.09289],[145.086285,75.562625]]],[[[57.535693,70.720464],[56.944979,70.632743],[53.677375,70.762658],[53.412017,71.206662],[51.601895,71.474759],[51.455754,72.014881],[52.478275,72.229442],[52.444169,72.774731],[54.427614,73.627548],[53.50829,73.749814],[55.902459,74.627486],[55.631933,75.081412],[57.868644,75.60939],[61.170044,76.251883],[64.498368,76.439055],[66.210977,76.809782],[68.15706,76.939697],[68.852211,76.544811],[68.180573,76.233642],[64.637326,75.737755],[61.583508,75.260885],[58.477082,74.309056],[56.986786,73.333044],[55.419336,72.371268],[55.622838,71.540595],[57.535693,70.720464]]],[[[106.97013,76.97419],[107.24,76.48],[108.1538,76.72335],[111.07726,76.71],[113.33151,76.22224],[114.13417,75.84764],[113.88539,75.32779],[112.77918,75.03186],[110.15125,74.47673],[109.4,74.18],[110.64,74.04],[112.11919,73.78774],[113.01954,73.97693],[113.52958,73.33505],[113.96881,73.59488],[115.56782,73.75285],[118.77633,73.58772],[119.02,73.12],[123.20066,72.97122],[123.25777,73.73503],[125.38,73.56],[126.97644,73.56549],[128.59126,73.03871],[129.05157,72.39872],[128.46,71.98],[129.71599,71.19304],[131.28858,70.78699],[132.2535,71.8363],[133.85766,71.38642],[135.56193,71.65525],[137.49755,71.34763],[138.23409,71.62803],[139.86983,71.48783],[139.14791,72.41619],[140.46817,72.84941],[149.5,72.2],[150.35118,71.60643],[152.9689,70.84222],[157.00688,71.03141],[158.99779,70.86672],[159.83031,70.45324],[159.70866,69.72198],[160.94053,69.43728],[162.27907,69.64204],[164.05248,69.66823],[165.94037,69.47199],[167.83567,69.58269],[169.57763,68.6938],[170.81688,69.01363],[170.0082,69.65276],[170.45345,70.09703],[173.64391,69.81743],[175.72403,69.87725],[178.6,69.4],[180,68.963636],[180,64.979709],[179.99281,64.97433],[178.7072,64.53493],[177.41128,64.60821],[178.313,64.07593],[178.90825,63.25197],[179.37034,62.98262],[179.48636,62.56894],[179.22825,62.3041],[177.3643,62.5219],[174.56929,61.76915],[173.68013,61.65261],[172.15,60.95],[170.6985,60.33618],[170.33085,59.88177],[168.90046,60.57355],[166.29498,59.78855],[165.84,60.16],[164.87674,59.7316],[163.53929,59.86871],[163.21711,59.21101],[162.01733,58.24328],[162.05297,57.83912],[163.19191,57.61503],[163.05794,56.15924],[162.12958,56.12219],[161.70146,55.28568],[162.11749,54.85514],[160.36877,54.34433],[160.02173,53.20257],[158.53094,52.95868],[158.23118,51.94269],[156.78979,51.01105],[156.42,51.7],[155.99182,53.15895],[155.43366,55.38103],[155.91442,56.76792],[156.75815,57.3647],[156.81035,57.83204],[158.36433,58.05575],[160.15064,59.31477],[161.87204,60.343],[163.66969,61.1409],[164.47355,62.55061],[163.25842,62.46627],[162.65791,61.6425],[160.12148,60.54423],[159.30232,61.77396],[156.72068,61.43442],[154.21806,59.75818],[155.04375,59.14495],[152.81185,58.88385],[151.26573,58.78089],[151.33815,59.50396],[149.78371,59.65573],[148.54481,59.16448],[145.48722,59.33637],[142.19782,59.03998],[138.95848,57.08805],[135.12619,54.72959],[136.70171,54.60355],[137.19342,53.97732],[138.1647,53.75501],[138.80463,54.25455],[139.90151,54.18968],[141.34531,53.08957],[141.37923,52.23877],[140.59742,51.23967],[140.51308,50.04553],[140.06193,48.44671],[138.55472,46.99965],[138.21971,46.30795],[136.86232,45.1435],[135.51535,43.989],[134.86939,43.39821],[133.53687,42.81147],[132.90627,42.79849],[132.27807,43.28456],[130.93587,42.55274],[130.78,42.22],[130.64,42.395],[130.633866,42.903015],[131.144688,42.92999],[131.288555,44.11152],[131.02519,44.96796],[131.883454,45.321162],[133.09712,45.14409],[133.769644,46.116927],[134.11235,47.21248],[134.50081,47.57845],[135.026311,48.47823],[133.373596,48.183442],[132.50669,47.78896],[130.98726,47.79013],[130.582293,48.729687],[129.397818,49.4406],[127.6574,49.76027],[127.287456,50.739797],[126.939157,51.353894],[126.564399,51.784255],[125.946349,52.792799],[125.068211,53.161045],[123.57147,53.4588],[122.245748,53.431726],[121.003085,53.251401],[120.177089,52.753886],[120.725789,52.516226],[120.7382,51.96411],[120.18208,51.64355],[119.27939,50.58292],[119.288461,50.142883],[117.879244,49.510983],[116.678801,49.888531],[115.485695,49.805177],[114.96211,50.140247],[114.362456,50.248303],[112.89774,49.543565],[111.581231,49.377968],[110.662011,49.130128],[109.402449,49.292961],[108.475167,49.282548],[107.868176,49.793705],[106.888804,50.274296],[105.886591,50.406019],[104.62158,50.27532],[103.676545,50.089966],[102.25589,50.51056],[102.06521,51.25991],[100.88948,51.516856],[99.981732,51.634006],[98.861491,52.047366],[97.82574,51.010995],[98.231762,50.422401],[97.25976,49.72605],[95.81402,49.97746],[94.815949,50.013433],[94.147566,50.480537],[93.10421,50.49529],[92.234712,50.802171],[90.713667,50.331812],[88.805567,49.470521],[87.751264,49.297198],[87.35997,49.214981],[86.829357,49.826675],[85.54127,49.692859],[85.11556,50.117303],[84.416377,50.3114],[83.935115,50.889246],[83.383004,51.069183],[81.945986,50.812196],[80.568447,51.388336],[80.03556,50.864751],[77.800916,53.404415],[76.525179,54.177003],[76.8911,54.490524],[74.38482,53.54685],[73.425679,53.48981],[73.508516,54.035617],[72.22415,54.376655],[71.180131,54.133285],[70.865267,55.169734],[69.068167,55.38525],[68.1691,54.970392],[65.66687,54.60125],[65.178534,54.354228],[61.4366,54.00625],[60.978066,53.664993],[61.699986,52.979996],[60.739993,52.719986],[60.927269,52.447548],[59.967534,51.96042],[61.588003,51.272659],[61.337424,50.79907],[59.932807,50.842194],[59.642282,50.545442],[58.36332,51.06364],[56.77798,51.04355],[55.71694,50.62171],[54.532878,51.02624],[52.328724,51.718652],[50.766648,51.692762],[48.702382,50.605128],[48.577841,49.87476],[47.54948,50.454698],[46.751596,49.356006],[47.043672,49.152039],[46.466446,48.394152],[47.31524,47.71585],[48.05725,47.74377],[48.694734,47.075628],[48.59325,46.56104],[49.10116,46.39933],[48.64541,45.80629],[47.67591,45.64149],[46.68201,44.6092],[47.59094,43.66016],[47.49252,42.98658],[48.58437,41.80888],[47.987283,41.405819],[47.815666,41.151416],[47.373315,41.219732],[46.686071,41.827137],[46.404951,41.860675],[45.7764,42.09244],[45.470279,42.502781],[44.537623,42.711993],[43.93121,42.55496],[43.75599,42.74083],[42.3944,43.2203],[40.92219,43.38215],[40.076965,43.553104],[39.955009,43.434998],[38.68,44.28],[37.53912,44.65721],[36.67546,45.24469],[37.40317,45.40451],[38.23295,46.24087],[37.67372,46.63657],[39.14767,47.04475],[39.1212,47.26336],[38.223538,47.10219],[38.255112,47.5464],[38.77057,47.82562],[39.738278,47.898937],[39.89562,48.23241],[39.67465,48.78382],[40.080789,49.30743],[40.06904,49.60105],[38.594988,49.926462],[38.010631,49.915662],[37.39346,50.383953],[36.626168,50.225591],[35.356116,50.577197],[35.37791,50.77394],[35.022183,51.207572],[34.224816,51.255993],[34.141978,51.566413],[34.391731,51.768882],[33.7527,52.335075],[32.715761,52.238465],[32.412058,52.288695],[32.15944,52.06125],[31.78597,52.10168],[31.540018,52.742052],[31.305201,53.073996],[31.49764,53.16743],[32.304519,53.132726],[32.693643,53.351421],[32.405599,53.618045],[31.731273,53.794029],[31.791424,53.974639],[31.384472,54.157056],[30.757534,54.811771],[30.971836,55.081548],[30.873909,55.550976],[29.896294,55.789463],[29.371572,55.670091],[29.229513,55.918344],[28.176709,56.16913],[27.855282,56.759326],[27.770016,57.244258],[27.288185,57.474528],[27.716686,57.791899],[27.42015,58.72457],[28.131699,59.300825],[27.98112,59.47537],[29.1177,60.02805],[28.07,60.50352],[30.211107,61.780028],[31.139991,62.357693],[31.516092,62.867687],[30.035872,63.552814],[30.444685,64.204453],[29.54443,64.948672],[30.21765,65.80598],[29.054589,66.944286],[29.977426,67.698297],[28.445944,68.364613],[28.59193,69.064777],[29.39955,69.15692],[31.10108,69.55811],[32.13272,69.90595],[33.77547,69.30142],[36.51396,69.06342],[40.29234,67.9324],[41.05987,67.45713],[41.12595,66.79158],[40.01583,66.26618],[38.38295,65.99953],[33.91871,66.75961],[33.18444,66.63253],[34.81477,65.90015],[34.878574,65.436213],[34.94391,64.41437],[36.23129,64.10945],[37.01273,63.84983],[37.14197,64.33471],[36.539579,64.76446],[37.17604,65.14322],[39.59345,64.52079],[40.4356,64.76446],[39.7626,65.49682],[42.09309,66.47623],[43.01604,66.41858],[43.94975,66.06908],[44.53226,66.75634],[43.69839,67.35245],[44.18795,67.95051],[43.45282,68.57079],[46.25,68.25],[46.82134,67.68997],[45.55517,67.56652],[45.56202,67.01005],[46.34915,66.66767],[47.89416,66.88455],[48.13876,67.52238],[50.22766,67.99867],[53.71743,68.85738],[54.47171,68.80815],[53.48582,68.20131],[54.72628,68.09702],[55.44268,68.43866],[57.31702,68.46628],[58.802,68.88082],[59.94142,68.27844],[61.07784,68.94069],[60.03,69.52],[60.55,69.85],[63.504,69.54739],[64.888115,69.234835],[68.51216,68.09233],[69.18068,68.61563],[68.16444,69.14436],[68.13522,69.35649],[66.93008,69.45461],[67.25976,69.92873],[66.72492,70.70889],[66.69466,71.02897],[68.54006,71.9345],[69.19636,72.84336],[69.94,73.04],[72.58754,72.77629],[72.79603,72.22006],[71.84811,71.40898],[72.47011,71.09019],[72.79188,70.39114],[72.5647,69.02085],[73.66787,68.4079],[73.2387,67.7404],[71.28,66.32],[72.42301,66.17267],[72.82077,66.53267],[73.92099,66.78946],[74.18651,67.28429],[75.052,67.76047],[74.46926,68.32899],[74.93584,68.98918],[73.84236,69.07146],[73.60187,69.62763],[74.3998,70.63175],[73.1011,71.44717],[74.89082,72.12119],[74.65926,72.83227],[75.15801,72.85497],[75.68351,72.30056],[75.28898,71.33556],[76.35911,71.15287],[75.90313,71.87401],[77.57665,72.26717],[79.65202,72.32011],[81.5,71.75],[80.61071,72.58285],[80.51109,73.6482],[82.25,73.85],[84.65526,73.80591],[86.8223,73.93688],[86.00956,74.45967],[87.16682,75.11643],[88.31571,75.14393],[90.26,75.64],[92.90058,75.77333],[93.23421,76.0472],[95.86,76.14],[96.67821,75.91548],[98.92254,76.44689],[100.75967,76.43028],[101.03532,76.86189],[101.99084,77.28754],[104.3516,77.69792],[106.06664,77.37389],[104.705,77.1274],[106.97013,76.97419]]],[[[105.07547,78.30689],[99.43814,77.921],[101.2649,79.23399],[102.08635,79.34641],[102.837815,79.28129],[105.37243,78.71334],[105.07547,78.30689]]],[[[51.136187,80.54728],[49.793685,80.415428],[48.894411,80.339567],[48.754937,80.175468],[47.586119,80.010181],[46.502826,80.247247],[47.072455,80.559424],[44.846958,80.58981],[46.799139,80.771918],[48.318477,80.78401],[48.522806,80.514569],[49.09719,80.753986],[50.039768,80.918885],[51.522933,80.699726],[51.136187,80.54728]]],[[[99.93976,78.88094],[97.75794,78.7562],[94.97259,79.044745],[93.31288,79.4265],[92.5454,80.14379],[91.18107,80.34146],[93.77766,81.0246],[95.940895,81.2504],[97.88385,80.746975],[100.186655,79.780135],[99.93976,78.88094]]]]},"id":"RUS"}, +{"type":"Feature","properties":{"name":"Rwanda"},"geometry":{"type":"Polygon","coordinates":[[[30.419105,-1.134659],[30.816135,-1.698914],[30.758309,-2.28725],[30.469696,-2.413858],[29.938359,-2.348487],[29.632176,-2.917858],[29.024926,-2.839258],[29.117479,-2.292211],[29.254835,-2.21511],[29.291887,-1.620056],[29.579466,-1.341313],[29.821519,-1.443322],[30.419105,-1.134659]]]},"id":"RWA"}, +{"type":"Feature","properties":{"name":"Western Sahara"},"geometry":{"type":"Polygon","coordinates":[[[-8.794884,27.120696],[-8.817828,27.656426],[-8.66559,27.656426],[-8.665124,27.589479],[-8.6844,27.395744],[-8.687294,25.881056],[-11.969419,25.933353],[-11.937224,23.374594],[-12.874222,23.284832],[-13.118754,22.77122],[-12.929102,21.327071],[-16.845194,21.333323],[-17.063423,20.999752],[-17.020428,21.42231],[-17.002962,21.420734],[-14.750955,21.5006],[-14.630833,21.86094],[-14.221168,22.310163],[-13.89111,23.691009],[-12.500963,24.770116],[-12.030759,26.030866],[-11.71822,26.104092],[-11.392555,26.883424],[-10.551263,26.990808],[-10.189424,26.860945],[-9.735343,26.860945],[-9.413037,27.088476],[-8.794884,27.120696]]]},"id":"ESH"}, +{"type":"Feature","properties":{"name":"Saudi Arabia"},"geometry":{"type":"Polygon","coordinates":[[[42.779332,16.347891],[42.649573,16.774635],[42.347989,17.075806],[42.270888,17.474722],[41.754382,17.833046],[41.221391,18.6716],[40.939341,19.486485],[40.247652,20.174635],[39.801685,20.338862],[39.139399,21.291905],[39.023696,21.986875],[39.066329,22.579656],[38.492772,23.688451],[38.02386,24.078686],[37.483635,24.285495],[37.154818,24.858483],[37.209491,25.084542],[36.931627,25.602959],[36.639604,25.826228],[36.249137,26.570136],[35.640182,27.37652],[35.130187,28.063352],[34.632336,28.058546],[34.787779,28.607427],[34.83222,28.957483],[34.956037,29.356555],[36.068941,29.197495],[36.501214,29.505254],[36.740528,29.865283],[37.503582,30.003776],[37.66812,30.338665],[37.998849,30.5085],[37.002166,31.508413],[39.004886,32.010217],[39.195468,32.161009],[40.399994,31.889992],[41.889981,31.190009],[44.709499,29.178891],[46.568713,29.099025],[47.459822,29.002519],[47.708851,28.526063],[48.416094,28.552004],[48.807595,27.689628],[49.299554,27.461218],[49.470914,27.109999],[50.152422,26.689663],[50.212935,26.277027],[50.113303,25.943972],[50.239859,25.60805],[50.527387,25.327808],[50.660557,24.999896],[50.810108,24.754743],[51.112415,24.556331],[51.389608,24.627386],[51.579519,24.245497],[51.617708,24.014219],[52.000733,23.001154],[55.006803,22.496948],[55.208341,22.70833],[55.666659,22.000001],[54.999982,19.999994],[52.00001,19.000003],[49.116672,18.616668],[48.183344,18.166669],[47.466695,17.116682],[47.000005,16.949999],[46.749994,17.283338],[46.366659,17.233315],[45.399999,17.333335],[45.216651,17.433329],[44.062613,17.410359],[43.791519,17.319977],[43.380794,17.579987],[43.115798,17.08844],[43.218375,16.66689],[42.779332,16.347891]]]},"id":"SAU"}, +{"type":"Feature","properties":{"name":"Sudan"},"geometry":{"type":"Polygon","coordinates":[[[33.963393,9.464285],[33.824963,9.484061],[33.842131,9.981915],[33.721959,10.325262],[33.206938,10.720112],[33.086766,11.441141],[33.206938,12.179338],[32.743419,12.248008],[32.67475,12.024832],[32.073892,11.97333],[32.314235,11.681484],[32.400072,11.080626],[31.850716,10.531271],[31.352862,9.810241],[30.837841,9.707237],[29.996639,10.290927],[29.618957,10.084919],[29.515953,9.793074],[29.000932,9.604232],[28.966597,9.398224],[27.97089,9.398224],[27.833551,9.604232],[27.112521,9.638567],[26.752006,9.466893],[26.477328,9.55273],[25.962307,10.136421],[25.790633,10.411099],[25.069604,10.27376],[24.794926,9.810241],[24.537415,8.917538],[24.194068,8.728696],[23.88698,8.61973],[23.805813,8.666319],[23.459013,8.954286],[23.394779,9.265068],[23.55725,9.681218],[23.554304,10.089255],[22.977544,10.714463],[22.864165,11.142395],[22.87622,11.38461],[22.50869,11.67936],[22.49762,12.26024],[22.28801,12.64605],[21.93681,12.58818],[22.03759,12.95546],[22.29658,13.37232],[22.18329,13.78648],[22.51202,14.09318],[22.30351,14.32682],[22.56795,14.94429],[23.02459,15.68072],[23.88689,15.61084],[23.83766,19.58047],[23.85,20],[25,20.00304],[25,22],[29.02,22],[32.9,22],[36.86623,22],[37.18872,21.01885],[36.96941,20.83744],[37.1147,19.80796],[37.48179,18.61409],[37.86276,18.36786],[38.41009,17.998307],[37.904,17.42754],[37.16747,17.26314],[36.85253,16.95655],[36.75389,16.29186],[36.32322,14.82249],[36.42951,14.42211],[36.27022,13.56333],[35.86363,12.57828],[35.26049,12.08286],[34.83163,11.31896],[34.73115,10.91017],[34.25745,10.63009],[33.96162,9.58358],[33.963393,9.464285]]]},"id":"SDN"}, +{"type":"Feature","properties":{"name":"South Sudan"},"geometry":{"type":"Polygon","coordinates":[[[33.963393,9.464285],[33.97498,8.68456],[33.8255,8.37916],[33.2948,8.35458],[32.95418,7.78497],[33.56829,7.71334],[34.0751,7.22595],[34.25032,6.82607],[34.70702,6.59422],[35.298007,5.506],[34.620196,4.847123],[34.005,4.249885],[33.39,3.79],[32.68642,3.79232],[31.88145,3.55827],[31.24556,3.7819],[30.83385,3.50917],[29.95349,4.1737],[29.715995,4.600805],[29.159078,4.389267],[28.696678,4.455077],[28.428994,4.287155],[27.979977,4.408413],[27.374226,5.233944],[27.213409,5.550953],[26.465909,5.946717],[26.213418,6.546603],[25.796648,6.979316],[25.124131,7.500085],[25.114932,7.825104],[24.567369,8.229188],[23.88698,8.61973],[24.194068,8.728696],[24.537415,8.917538],[24.794926,9.810241],[25.069604,10.27376],[25.790633,10.411099],[25.962307,10.136421],[26.477328,9.55273],[26.752006,9.466893],[27.112521,9.638567],[27.833551,9.604232],[27.97089,9.398224],[28.966597,9.398224],[29.000932,9.604232],[29.515953,9.793074],[29.618957,10.084919],[29.996639,10.290927],[30.837841,9.707237],[31.352862,9.810241],[31.850716,10.531271],[32.400072,11.080626],[32.314235,11.681484],[32.073892,11.97333],[32.67475,12.024832],[32.743419,12.248008],[33.206938,12.179338],[33.086766,11.441141],[33.206938,10.720112],[33.721959,10.325262],[33.842131,9.981915],[33.824963,9.484061],[33.963393,9.464285]]]},"id":"SDS"}, +{"type":"Feature","properties":{"name":"Senegal"},"geometry":{"type":"Polygon","coordinates":[[[-16.713729,13.594959],[-17.126107,14.373516],[-17.625043,14.729541],[-17.185173,14.919477],[-16.700706,15.621527],[-16.463098,16.135036],[-16.12069,16.455663],[-15.623666,16.369337],[-15.135737,16.587282],[-14.577348,16.598264],[-14.099521,16.304302],[-13.435738,16.039383],[-12.830658,15.303692],[-12.17075,14.616834],[-12.124887,13.994727],[-11.927716,13.422075],[-11.553398,13.141214],[-11.467899,12.754519],[-11.513943,12.442988],[-11.658301,12.386583],[-12.203565,12.465648],[-12.278599,12.35444],[-12.499051,12.33209],[-13.217818,12.575874],[-13.700476,12.586183],[-15.548477,12.62817],[-15.816574,12.515567],[-16.147717,12.547762],[-16.677452,12.384852],[-16.841525,13.151394],[-15.931296,13.130284],[-15.691001,13.270353],[-15.511813,13.27857],[-15.141163,13.509512],[-14.712197,13.298207],[-14.277702,13.280585],[-13.844963,13.505042],[-14.046992,13.794068],[-14.376714,13.62568],[-14.687031,13.630357],[-15.081735,13.876492],[-15.39877,13.860369],[-15.624596,13.623587],[-16.713729,13.594959]]]},"id":"SEN"}, +{"type":"Feature","properties":{"name":"Solomon Islands"},"geometry":{"type":"MultiPolygon","coordinates":[[[[162.119025,-10.482719],[162.398646,-10.826367],[161.700032,-10.820011],[161.319797,-10.204751],[161.917383,-10.446701],[162.119025,-10.482719]]],[[[160.852229,-9.872937],[160.462588,-9.89521],[159.849447,-9.794027],[159.640003,-9.63998],[159.702945,-9.24295],[160.362956,-9.400304],[160.688518,-9.610162],[160.852229,-9.872937]]],[[[161.679982,-9.599982],[161.529397,-9.784312],[160.788253,-8.917543],[160.579997,-8.320009],[160.920028,-8.320009],[161.280006,-9.120011],[161.679982,-9.599982]]],[[[159.875027,-8.33732],[159.917402,-8.53829],[159.133677,-8.114181],[158.586114,-7.754824],[158.21115,-7.421872],[158.359978,-7.320018],[158.820001,-7.560003],[159.640003,-8.020027],[159.875027,-8.33732]]],[[[157.538426,-7.34782],[157.33942,-7.404767],[156.90203,-7.176874],[156.491358,-6.765943],[156.542828,-6.599338],[157.14,-7.021638],[157.538426,-7.34782]]]]},"id":"SLB"}, +{"type":"Feature","properties":{"name":"Sierra Leone"},"geometry":{"type":"Polygon","coordinates":[[[-11.438779,6.785917],[-11.708195,6.860098],[-12.428099,7.262942],[-12.949049,7.798646],[-13.124025,8.163946],[-13.24655,8.903049],[-12.711958,9.342712],[-12.596719,9.620188],[-12.425929,9.835834],[-12.150338,9.858572],[-11.917277,10.046984],[-11.117481,10.045873],[-10.839152,9.688246],[-10.622395,9.26791],[-10.65477,8.977178],[-10.494315,8.715541],[-10.505477,8.348896],[-10.230094,8.406206],[-10.695595,7.939464],[-11.146704,7.396706],[-11.199802,7.105846],[-11.438779,6.785917]]]},"id":"SLE"}, +{"type":"Feature","properties":{"name":"El Salvador"},"geometry":{"type":"Polygon","coordinates":[[[-87.793111,13.38448],[-87.904112,13.149017],[-88.483302,13.163951],[-88.843228,13.259734],[-89.256743,13.458533],[-89.812394,13.520622],[-90.095555,13.735338],[-90.064678,13.88197],[-89.721934,14.134228],[-89.534219,14.244816],[-89.587343,14.362586],[-89.353326,14.424133],[-89.058512,14.340029],[-88.843073,14.140507],[-88.541231,13.980155],[-88.503998,13.845486],[-88.065343,13.964626],[-87.859515,13.893312],[-87.723503,13.78505],[-87.793111,13.38448]]]},"id":"SLV"}, +{"type":"Feature","properties":{"name":"Somaliland"},"geometry":{"type":"Polygon","coordinates":[[[48.93813,9.451749],[48.486736,8.837626],[47.78942,8.003],[46.948328,7.996877],[43.67875,9.18358],[43.296975,9.540477],[42.92812,10.02194],[42.55876,10.57258],[42.776852,10.926879],[43.145305,11.46204],[43.47066,11.27771],[43.666668,10.864169],[44.117804,10.445538],[44.614259,10.442205],[45.556941,10.698029],[46.645401,10.816549],[47.525658,11.127228],[48.021596,11.193064],[48.378784,11.375482],[48.948206,11.410622],[48.942005,11.394266],[48.938491,10.982327],[48.938233,9.9735],[48.93813,9.451749]]]},"id":"ABV"}, +{"type":"Feature","properties":{"name":"Somalia"},"geometry":{"type":"Polygon","coordinates":[[[49.72862,11.5789],[50.25878,11.67957],[50.73202,12.0219],[51.1112,12.02464],[51.13387,11.74815],[51.04153,11.16651],[51.04531,10.6409],[50.83418,10.27972],[50.55239,9.19874],[50.07092,8.08173],[49.4527,6.80466],[48.59455,5.33911],[47.74079,4.2194],[46.56476,2.85529],[45.56399,2.04576],[44.06815,1.05283],[43.13597,0.2922],[42.04157,-0.91916],[41.81095,-1.44647],[41.58513,-1.68325],[40.993,-0.85829],[40.98105,2.78452],[41.855083,3.918912],[42.12861,4.23413],[42.76967,4.25259],[43.66087,4.95755],[44.9636,5.00162],[47.78942,8.003],[48.486736,8.837626],[48.93813,9.451749],[48.938233,9.9735],[48.938491,10.982327],[48.942005,11.394266],[48.948205,11.410617],[49.26776,11.43033],[49.72862,11.5789]]]},"id":"SOM"}, +{"type":"Feature","properties":{"name":"Serbia"},"geometry":{"type":"Polygon","coordinates":[[[20.874313,45.416375],[21.483526,45.18117],[21.562023,44.768947],[22.145088,44.478422],[22.459022,44.702517],[22.705726,44.578003],[22.474008,44.409228],[22.65715,44.234923],[22.410446,44.008063],[22.500157,43.642814],[22.986019,43.211161],[22.604801,42.898519],[22.436595,42.580321],[22.545012,42.461362],[22.380526,42.32026],[21.91708,42.30364],[21.576636,42.245224],[21.54332,42.32025],[21.66292,42.43922],[21.77505,42.6827],[21.63302,42.67717],[21.43866,42.86255],[21.27421,42.90959],[21.143395,43.068685],[20.95651,43.13094],[20.81448,43.27205],[20.63508,43.21671],[20.49679,42.88469],[20.25758,42.81275],[20.3398,42.89852],[19.95857,43.10604],[19.63,43.21378],[19.48389,43.35229],[19.21852,43.52384],[19.454,43.5681],[19.59976,44.03847],[19.11761,44.42307],[19.36803,44.863],[19.00548,44.86023],[19.390476,45.236516],[19.072769,45.521511],[18.82982,45.90888],[19.596045,46.17173],[20.220192,46.127469],[20.762175,45.734573],[20.874313,45.416375]]]},"id":"SRB"}, +{"type":"Feature","properties":{"name":"Suriname"},"geometry":{"type":"Polygon","coordinates":[[[-57.147436,5.97315],[-55.949318,5.772878],[-55.84178,5.953125],[-55.03325,6.025291],[-53.958045,5.756548],[-54.478633,4.896756],[-54.399542,4.212611],[-54.006931,3.620038],[-54.181726,3.18978],[-54.269705,2.732392],[-54.524754,2.311849],[-55.097587,2.523748],[-55.569755,2.421506],[-55.973322,2.510364],[-56.073342,2.220795],[-55.9056,2.021996],[-55.995698,1.817667],[-56.539386,1.899523],[-57.150098,2.768927],[-57.281433,3.333492],[-57.601569,3.334655],[-58.044694,4.060864],[-57.86021,4.576801],[-57.914289,4.812626],[-57.307246,5.073567],[-57.147436,5.97315]]]},"id":"SUR"}, +{"type":"Feature","properties":{"name":"Slovakia"},"geometry":{"type":"Polygon","coordinates":[[[18.853144,49.49623],[18.909575,49.435846],[19.320713,49.571574],[19.825023,49.217125],[20.415839,49.431453],[20.887955,49.328772],[21.607808,49.470107],[22.558138,49.085738],[22.280842,48.825392],[22.085608,48.422264],[21.872236,48.319971],[20.801294,48.623854],[20.473562,48.56285],[20.239054,48.327567],[19.769471,48.202691],[19.661364,48.266615],[19.174365,48.111379],[18.777025,48.081768],[18.696513,47.880954],[17.857133,47.758429],[17.488473,47.867466],[16.979667,48.123497],[16.879983,48.470013],[16.960288,48.596982],[17.101985,48.816969],[17.545007,48.800019],[17.886485,48.903475],[17.913512,48.996493],[18.104973,49.043983],[18.170498,49.271515],[18.399994,49.315001],[18.554971,49.495015],[18.853144,49.49623]]]},"id":"SVK"}, +{"type":"Feature","properties":{"name":"Slovenia"},"geometry":{"type":"Polygon","coordinates":[[[13.806475,46.509306],[14.632472,46.431817],[15.137092,46.658703],[16.011664,46.683611],[16.202298,46.852386],[16.370505,46.841327],[16.564808,46.503751],[15.768733,46.238108],[15.67153,45.834154],[15.323954,45.731783],[15.327675,45.452316],[14.935244,45.471695],[14.595109,45.634941],[14.411968,45.466166],[13.71506,45.500324],[13.93763,45.591016],[13.69811,46.016778],[13.806475,46.509306]]]},"id":"SVN"}, +{"type":"Feature","properties":{"name":"Sweden"},"geometry":{"type":"Polygon","coordinates":[[[22.183173,65.723741],[21.213517,65.026005],[21.369631,64.413588],[19.778876,63.609554],[17.847779,62.7494],[17.119555,61.341166],[17.831346,60.636583],[18.787722,60.081914],[17.869225,58.953766],[16.829185,58.719827],[16.44771,57.041118],[15.879786,56.104302],[14.666681,56.200885],[14.100721,55.407781],[12.942911,55.361737],[12.625101,56.30708],[11.787942,57.441817],[11.027369,58.856149],[11.468272,59.432393],[12.300366,60.117933],[12.631147,61.293572],[11.992064,61.800362],[11.930569,63.128318],[12.579935,64.066219],[13.571916,64.049114],[13.919905,64.445421],[13.55569,64.787028],[15.108411,66.193867],[16.108712,67.302456],[16.768879,68.013937],[17.729182,68.010552],[17.993868,68.567391],[19.87856,68.407194],[20.025269,69.065139],[20.645593,69.106247],[21.978535,68.616846],[23.539473,67.936009],[23.56588,66.396051],[23.903379,66.006927],[22.183173,65.723741]]]},"id":"SWE"}, +{"type":"Feature","properties":{"name":"Swaziland"},"geometry":{"type":"Polygon","coordinates":[[[32.071665,-26.73382],[31.86806,-27.177927],[31.282773,-27.285879],[30.685962,-26.743845],[30.676609,-26.398078],[30.949667,-26.022649],[31.04408,-25.731452],[31.333158,-25.660191],[31.837778,-25.843332],[31.985779,-26.29178],[32.071665,-26.73382]]]},"id":"SWZ"}, +{"type":"Feature","properties":{"name":"Syria"},"geometry":{"type":"Polygon","coordinates":[[[38.792341,33.378686],[36.834062,32.312938],[35.719918,32.709192],[35.700798,32.716014],[35.836397,32.868123],[35.821101,33.277426],[36.06646,33.824912],[36.61175,34.201789],[36.448194,34.593935],[35.998403,34.644914],[35.905023,35.410009],[36.149763,35.821535],[36.41755,36.040617],[36.685389,36.259699],[36.739494,36.81752],[37.066761,36.623036],[38.167727,36.90121],[38.699891,36.712927],[39.52258,36.716054],[40.673259,37.091276],[41.212089,37.074352],[42.349591,37.229873],[41.837064,36.605854],[41.289707,36.358815],[41.383965,35.628317],[41.006159,34.419372],[38.792341,33.378686]]]},"id":"SYR"}, +{"type":"Feature","properties":{"name":"Chad"},"geometry":{"type":"Polygon","coordinates":[[[14.495787,12.859396],[14.595781,13.330427],[13.954477,13.353449],[13.956699,13.996691],[13.540394,14.367134],[13.97217,15.68437],[15.247731,16.627306],[15.300441,17.92795],[15.685741,19.95718],[15.903247,20.387619],[15.487148,20.730415],[15.47106,21.04845],[15.096888,21.308519],[14.8513,22.86295],[15.86085,23.40972],[19.84926,21.49509],[23.83766,19.58047],[23.88689,15.61084],[23.02459,15.68072],[22.56795,14.94429],[22.30351,14.32682],[22.51202,14.09318],[22.18329,13.78648],[22.29658,13.37232],[22.03759,12.95546],[21.93681,12.58818],[22.28801,12.64605],[22.49762,12.26024],[22.50869,11.67936],[22.87622,11.38461],[22.864165,11.142395],[22.231129,10.971889],[21.723822,10.567056],[21.000868,9.475985],[20.059685,9.012706],[19.094008,9.074847],[18.81201,8.982915],[18.911022,8.630895],[18.389555,8.281304],[17.96493,7.890914],[16.705988,7.508328],[16.456185,7.734774],[16.290562,7.754307],[16.106232,7.497088],[15.27946,7.421925],[15.436092,7.692812],[15.120866,8.38215],[14.979996,8.796104],[14.544467,8.965861],[13.954218,9.549495],[14.171466,10.021378],[14.627201,9.920919],[14.909354,9.992129],[15.467873,9.982337],[14.923565,10.891325],[14.960152,11.555574],[14.89336,12.21905],[14.495787,12.859396]]]},"id":"TCD"}, +{"type":"Feature","properties":{"name":"Togo"},"geometry":{"type":"Polygon","coordinates":[[[1.865241,6.142158],[1.060122,5.928837],[0.836931,6.279979],[0.570384,6.914359],[0.490957,7.411744],[0.712029,8.312465],[0.461192,8.677223],[0.365901,9.465004],[0.36758,10.191213],[-0.049785,10.706918],[0.023803,11.018682],[0.899563,10.997339],[0.772336,10.470808],[1.077795,10.175607],[1.425061,9.825395],[1.463043,9.334624],[1.664478,9.12859],[1.618951,6.832038],[1.865241,6.142158]]]},"id":"TGO"}, +{"type":"Feature","properties":{"name":"Thailand"},"geometry":{"type":"Polygon","coordinates":[[[102.584932,12.186595],[101.687158,12.64574],[100.83181,12.627085],[100.978467,13.412722],[100.097797,13.406856],[100.018733,12.307001],[99.478921,10.846367],[99.153772,9.963061],[99.222399,9.239255],[99.873832,9.207862],[100.279647,8.295153],[100.459274,7.429573],[101.017328,6.856869],[101.623079,6.740622],[102.141187,6.221636],[101.814282,5.810808],[101.154219,5.691384],[101.075516,6.204867],[100.259596,6.642825],[100.085757,6.464489],[99.690691,6.848213],[99.519642,7.343454],[98.988253,7.907993],[98.503786,8.382305],[98.339662,7.794512],[98.150009,8.350007],[98.25915,8.973923],[98.553551,9.93296],[99.038121,10.960546],[99.587286,11.892763],[99.196354,12.804748],[99.212012,13.269294],[99.097755,13.827503],[98.430819,14.622028],[98.192074,15.123703],[98.537376,15.308497],[98.903348,16.177824],[98.493761,16.837836],[97.859123,17.567946],[97.375896,18.445438],[97.797783,18.62708],[98.253724,19.708203],[98.959676,19.752981],[99.543309,20.186598],[100.115988,20.41785],[100.548881,20.109238],[100.606294,19.508344],[101.282015,19.462585],[101.035931,18.408928],[101.059548,17.512497],[102.113592,18.109102],[102.413005,17.932782],[102.998706,17.961695],[103.200192,18.309632],[103.956477,18.240954],[104.716947,17.428859],[104.779321,16.441865],[105.589039,15.570316],[105.544338,14.723934],[105.218777,14.273212],[104.281418,14.416743],[102.988422,14.225721],[102.348099,13.394247],[102.584932,12.186595]]]},"id":"THA"}, +{"type":"Feature","properties":{"name":"Tajikistan"},"geometry":{"type":"Polygon","coordinates":[[[71.014198,40.244366],[70.648019,39.935754],[69.55961,40.103211],[69.464887,39.526683],[70.549162,39.604198],[71.784694,39.279463],[73.675379,39.431237],[73.928852,38.505815],[74.257514,38.606507],[74.864816,38.378846],[74.829986,37.990007],[74.980002,37.41999],[73.948696,37.421566],[73.260056,37.495257],[72.63689,37.047558],[72.193041,36.948288],[71.844638,36.738171],[71.448693,37.065645],[71.541918,37.905774],[71.239404,37.953265],[71.348131,38.258905],[70.806821,38.486282],[70.376304,38.138396],[70.270574,37.735165],[70.116578,37.588223],[69.518785,37.608997],[69.196273,37.151144],[68.859446,37.344336],[68.135562,37.023115],[67.83,37.144994],[68.392033,38.157025],[68.176025,38.901553],[67.44222,39.140144],[67.701429,39.580478],[68.536416,39.533453],[69.011633,40.086158],[69.329495,40.727824],[70.666622,40.960213],[70.45816,40.496495],[70.601407,40.218527],[71.014198,40.244366]]]},"id":"TJK"}, +{"type":"Feature","properties":{"name":"Turkmenistan"},"geometry":{"type":"Polygon","coordinates":[[[61.210817,35.650072],[61.123071,36.491597],[60.377638,36.527383],[59.234762,37.412988],[58.436154,37.522309],[57.330434,38.029229],[56.619366,38.121394],[56.180375,37.935127],[55.511578,37.964117],[54.800304,37.392421],[53.921598,37.198918],[53.735511,37.906136],[53.880929,38.952093],[53.101028,39.290574],[53.357808,39.975286],[52.693973,40.033629],[52.915251,40.876523],[53.858139,40.631034],[54.736845,40.951015],[54.008311,41.551211],[53.721713,42.123191],[52.91675,41.868117],[52.814689,41.135371],[52.50246,41.783316],[52.944293,42.116034],[54.079418,42.324109],[54.755345,42.043971],[55.455251,41.259859],[55.968191,41.308642],[57.096391,41.32231],[56.932215,41.826026],[57.78653,42.170553],[58.629011,42.751551],[59.976422,42.223082],[60.083341,41.425146],[60.465953,41.220327],[61.547179,41.26637],[61.882714,41.084857],[62.37426,40.053886],[63.518015,39.363257],[64.170223,38.892407],[65.215999,38.402695],[66.54615,37.974685],[66.518607,37.362784],[66.217385,37.39379],[65.745631,37.661164],[65.588948,37.305217],[64.746105,37.111818],[64.546479,36.312073],[63.982896,36.007957],[63.193538,35.857166],[62.984662,35.404041],[62.230651,35.270664],[61.210817,35.650072]]]},"id":"TKM"}, +{"type":"Feature","properties":{"name":"East Timor"},"geometry":{"type":"Polygon","coordinates":[[[124.968682,-8.89279],[125.086246,-8.656887],[125.947072,-8.432095],[126.644704,-8.398247],[126.957243,-8.273345],[127.335928,-8.397317],[126.967992,-8.668256],[125.925885,-9.106007],[125.08852,-9.393173],[125.07002,-9.089987],[124.968682,-8.89279]]]},"id":"TLS"}, +{"type":"Feature","properties":{"name":"Trinidad and Tobago"},"geometry":{"type":"Polygon","coordinates":[[[-61.68,10.76],[-61.105,10.89],[-60.895,10.855],[-60.935,10.11],[-61.77,10],[-61.95,10.09],[-61.66,10.365],[-61.68,10.76]]]},"id":"TTO"}, +{"type":"Feature","properties":{"name":"Tunisia"},"geometry":{"type":"Polygon","coordinates":[[[9.48214,30.307556],[9.055603,32.102692],[8.439103,32.506285],[8.430473,32.748337],[7.612642,33.344115],[7.524482,34.097376],[8.140981,34.655146],[8.376368,35.479876],[8.217824,36.433177],[8.420964,36.946427],[9.509994,37.349994],[10.210002,37.230002],[10.18065,36.724038],[11.028867,37.092103],[11.100026,36.899996],[10.600005,36.41],[10.593287,35.947444],[10.939519,35.698984],[10.807847,34.833507],[10.149593,34.330773],[10.339659,33.785742],[10.856836,33.76874],[11.108501,33.293343],[11.488787,33.136996],[11.432253,32.368903],[10.94479,32.081815],[10.636901,31.761421],[9.950225,31.37607],[10.056575,30.961831],[9.970017,30.539325],[9.48214,30.307556]]]},"id":"TUN"}, +{"type":"Feature","properties":{"name":"Turkey"},"geometry":{"type":"MultiPolygon","coordinates":[[[[36.913127,41.335358],[38.347665,40.948586],[39.512607,41.102763],[40.373433,41.013673],[41.554084,41.535656],[42.619549,41.583173],[43.582746,41.092143],[43.752658,40.740201],[43.656436,40.253564],[44.400009,40.005],[44.79399,39.713003],[44.109225,39.428136],[44.421403,38.281281],[44.225756,37.971584],[44.772699,37.170445],[44.293452,37.001514],[43.942259,37.256228],[42.779126,37.385264],[42.349591,37.229873],[41.212089,37.074352],[40.673259,37.091276],[39.52258,36.716054],[38.699891,36.712927],[38.167727,36.90121],[37.066761,36.623036],[36.739494,36.81752],[36.685389,36.259699],[36.41755,36.040617],[36.149763,35.821535],[35.782085,36.274995],[36.160822,36.650606],[35.550936,36.565443],[34.714553,36.795532],[34.026895,36.21996],[32.509158,36.107564],[31.699595,36.644275],[30.621625,36.677865],[30.391096,36.262981],[29.699976,36.144357],[28.732903,36.676831],[27.641187,36.658822],[27.048768,37.653361],[26.318218,38.208133],[26.8047,38.98576],[26.170785,39.463612],[27.28002,40.420014],[28.819978,40.460011],[29.240004,41.219991],[31.145934,41.087622],[32.347979,41.736264],[33.513283,42.01896],[35.167704,42.040225],[36.913127,41.335358]]],[[[27.192377,40.690566],[26.358009,40.151994],[26.043351,40.617754],[26.056942,40.824123],[26.294602,40.936261],[26.604196,41.562115],[26.117042,41.826905],[27.135739,42.141485],[27.99672,42.007359],[28.115525,41.622886],[28.988443,41.299934],[28.806438,41.054962],[27.619017,40.999823],[27.192377,40.690566]]]]},"id":"TUR"}, +{"type":"Feature","properties":{"name":"Taiwan"},"geometry":{"type":"Polygon","coordinates":[[[121.777818,24.394274],[121.175632,22.790857],[120.74708,21.970571],[120.220083,22.814861],[120.106189,23.556263],[120.69468,24.538451],[121.495044,25.295459],[121.951244,24.997596],[121.777818,24.394274]]]},"id":"TWN"}, +{"type":"Feature","properties":{"name":"Tanzania"},"geometry":{"type":"Polygon","coordinates":[[[33.903711,-0.95],[34.07262,-1.05982],[37.69869,-3.09699],[37.7669,-3.67712],[39.20222,-4.67677],[38.74054,-5.90895],[38.79977,-6.47566],[39.44,-6.84],[39.47,-7.1],[39.19469,-7.7039],[39.25203,-8.00781],[39.18652,-8.48551],[39.53574,-9.11237],[39.9496,-10.0984],[40.31659,-10.3171],[39.521,-10.89688],[38.427557,-11.285202],[37.82764,-11.26879],[37.47129,-11.56876],[36.775151,-11.594537],[36.514082,-11.720938],[35.312398,-11.439146],[34.559989,-11.52002],[34.28,-10.16],[33.940838,-9.693674],[33.73972,-9.41715],[32.759375,-9.230599],[32.191865,-8.930359],[31.556348,-8.762049],[31.157751,-8.594579],[30.74,-8.34],[30.2,-7.08],[29.62,-6.52],[29.419993,-5.939999],[29.519987,-5.419979],[29.339998,-4.499983],[29.753512,-4.452389],[30.11632,-4.09012],[30.50554,-3.56858],[30.75224,-3.35931],[30.74301,-3.03431],[30.52766,-2.80762],[30.46967,-2.41383],[30.758309,-2.28725],[30.816135,-1.698914],[30.419105,-1.134659],[30.76986,-1.01455],[31.86617,-1.02736],[33.903711,-0.95]]]},"id":"TZA"}, +{"type":"Feature","properties":{"name":"Uganda"},"geometry":{"type":"Polygon","coordinates":[[[31.86617,-1.02736],[30.76986,-1.01455],[30.419105,-1.134659],[29.821519,-1.443322],[29.579466,-1.341313],[29.587838,-0.587406],[29.8195,-0.2053],[29.875779,0.59738],[30.086154,1.062313],[30.468508,1.583805],[30.85267,1.849396],[31.174149,2.204465],[30.77332,2.33989],[30.83385,3.50917],[31.24556,3.7819],[31.88145,3.55827],[32.68642,3.79232],[33.39,3.79],[34.005,4.249885],[34.47913,3.5556],[34.59607,3.05374],[35.03599,1.90584],[34.6721,1.17694],[34.18,0.515],[33.893569,0.109814],[33.903711,-0.95],[31.86617,-1.02736]]]},"id":"UGA"}, +{"type":"Feature","properties":{"name":"Ukraine"},"geometry":{"type":"Polygon","coordinates":[[[31.785998,52.101678],[32.159412,52.061267],[32.412058,52.288695],[32.715761,52.238465],[33.7527,52.335075],[34.391731,51.768882],[34.141978,51.566413],[34.224816,51.255993],[35.022183,51.207572],[35.377924,50.773955],[35.356116,50.577197],[36.626168,50.225591],[37.39346,50.383953],[38.010631,49.915662],[38.594988,49.926462],[40.069058,49.601055],[40.080789,49.30743],[39.674664,48.783818],[39.895632,48.232405],[39.738278,47.898937],[38.770585,47.825608],[38.255112,47.5464],[38.223538,47.10219],[37.425137,47.022221],[36.759855,46.6987],[35.823685,46.645964],[34.962342,46.273197],[35.020788,45.651219],[35.510009,45.409993],[36.529998,45.46999],[36.334713,45.113216],[35.239999,44.939996],[33.882511,44.361479],[33.326421,44.564877],[33.546924,45.034771],[32.454174,45.327466],[32.630804,45.519186],[33.588162,45.851569],[33.298567,46.080598],[31.74414,46.333348],[31.675307,46.706245],[30.748749,46.5831],[30.377609,46.03241],[29.603289,45.293308],[29.149725,45.464925],[28.679779,45.304031],[28.233554,45.488283],[28.485269,45.596907],[28.659987,45.939987],[28.933717,46.25883],[28.862972,46.437889],[29.072107,46.517678],[29.170654,46.379262],[29.759972,46.349988],[30.024659,46.423937],[29.83821,46.525326],[29.908852,46.674361],[29.559674,46.928583],[29.415135,47.346645],[29.050868,47.510227],[29.122698,47.849095],[28.670891,48.118149],[28.259547,48.155562],[27.522537,48.467119],[26.857824,48.368211],[26.619337,48.220726],[26.19745,48.220881],[25.945941,47.987149],[25.207743,47.891056],[24.866317,47.737526],[24.402056,47.981878],[23.760958,47.985598],[23.142236,48.096341],[22.710531,47.882194],[22.64082,48.15024],[22.085608,48.422264],[22.280842,48.825392],[22.558138,49.085738],[22.776419,49.027395],[22.51845,49.476774],[23.426508,50.308506],[23.922757,50.424881],[24.029986,50.705407],[23.527071,51.578454],[24.005078,51.617444],[24.553106,51.888461],[25.327788,51.910656],[26.337959,51.832289],[27.454066,51.592303],[28.241615,51.572227],[28.617613,51.427714],[28.992835,51.602044],[29.254938,51.368234],[30.157364,51.416138],[30.555117,51.319503],[30.619454,51.822806],[30.927549,52.042353],[31.785998,52.101678]]]},"id":"UKR"}, +{"type":"Feature","properties":{"name":"Uruguay"},"geometry":{"type":"Polygon","coordinates":[[[-57.625133,-30.216295],[-56.976026,-30.109686],[-55.973245,-30.883076],[-55.60151,-30.853879],[-54.572452,-31.494511],[-53.787952,-32.047243],[-53.209589,-32.727666],[-53.650544,-33.202004],[-53.373662,-33.768378],[-53.806426,-34.396815],[-54.935866,-34.952647],[-55.67409,-34.752659],[-56.215297,-34.859836],[-57.139685,-34.430456],[-57.817861,-34.462547],[-58.427074,-33.909454],[-58.349611,-33.263189],[-58.132648,-33.040567],[-58.14244,-32.044504],[-57.874937,-31.016556],[-57.625133,-30.216295]]]},"id":"URY"}, +{"type":"Feature","properties":{"name":"United States"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-155.54211,19.08348],[-155.68817,18.91619],[-155.93665,19.05939],[-155.90806,19.33888],[-156.07347,19.70294],[-156.02368,19.81422],[-155.85008,19.97729],[-155.91907,20.17395],[-155.86108,20.26721],[-155.78505,20.2487],[-155.40214,20.07975],[-155.22452,19.99302],[-155.06226,19.8591],[-154.80741,19.50871],[-154.83147,19.45328],[-155.22217,19.23972],[-155.54211,19.08348]]],[[[-156.07926,20.64397],[-156.41445,20.57241],[-156.58673,20.783],[-156.70167,20.8643],[-156.71055,20.92676],[-156.61258,21.01249],[-156.25711,20.91745],[-155.99566,20.76404],[-156.07926,20.64397]]],[[[-156.75824,21.17684],[-156.78933,21.06873],[-157.32521,21.09777],[-157.25027,21.21958],[-156.75824,21.17684]]],[[[-157.65283,21.32217],[-157.70703,21.26442],[-157.7786,21.27729],[-158.12667,21.31244],[-158.2538,21.53919],[-158.29265,21.57912],[-158.0252,21.71696],[-157.94161,21.65272],[-157.65283,21.32217]]],[[[-159.34512,21.982],[-159.46372,21.88299],[-159.80051,22.06533],[-159.74877,22.1382],[-159.5962,22.23618],[-159.36569,22.21494],[-159.34512,21.982]]],[[[-94.81758,49.38905],[-94.64,48.84],[-94.32914,48.67074],[-93.63087,48.60926],[-92.61,48.45],[-91.64,48.14],[-90.83,48.27],[-89.6,48.01],[-89.272917,48.019808],[-88.378114,48.302918],[-87.439793,47.94],[-86.461991,47.553338],[-85.652363,47.220219],[-84.87608,46.900083],[-84.779238,46.637102],[-84.543749,46.538684],[-84.6049,46.4396],[-84.3367,46.40877],[-84.14212,46.512226],[-84.091851,46.275419],[-83.890765,46.116927],[-83.616131,46.116927],[-83.469551,45.994686],[-83.592851,45.816894],[-82.550925,45.347517],[-82.337763,44.44],[-82.137642,43.571088],[-82.43,42.98],[-82.9,42.43],[-83.12,42.08],[-83.142,41.975681],[-83.02981,41.832796],[-82.690089,41.675105],[-82.439278,41.675105],[-81.277747,42.209026],[-80.247448,42.3662],[-78.939362,42.863611],[-78.92,42.965],[-79.01,43.27],[-79.171674,43.466339],[-78.72028,43.625089],[-77.737885,43.629056],[-76.820034,43.628784],[-76.5,44.018459],[-76.375,44.09631],[-75.31821,44.81645],[-74.867,45.00048],[-73.34783,45.00738],[-71.50506,45.0082],[-71.405,45.255],[-71.08482,45.30524],[-70.66,45.46],[-70.305,45.915],[-69.99997,46.69307],[-69.237216,47.447781],[-68.905,47.185],[-68.23444,47.35486],[-67.79046,47.06636],[-67.79134,45.70281],[-67.13741,45.13753],[-66.96466,44.8097],[-68.03252,44.3252],[-69.06,43.98],[-70.11617,43.68405],[-70.645476,43.090238],[-70.81489,42.8653],[-70.825,42.335],[-70.495,41.805],[-70.08,41.78],[-70.185,42.145],[-69.88497,41.92283],[-69.96503,41.63717],[-70.64,41.475],[-71.12039,41.49445],[-71.86,41.32],[-72.295,41.27],[-72.87643,41.22065],[-73.71,40.931102],[-72.24126,41.11948],[-71.945,40.93],[-73.345,40.63],[-73.982,40.628],[-73.952325,40.75075],[-74.25671,40.47351],[-73.96244,40.42763],[-74.17838,39.70926],[-74.90604,38.93954],[-74.98041,39.1964],[-75.20002,39.24845],[-75.52805,39.4985],[-75.32,38.96],[-75.071835,38.782032],[-75.05673,38.40412],[-75.37747,38.01551],[-75.94023,37.21689],[-76.03127,37.2566],[-75.72205,37.93705],[-76.23287,38.319215],[-76.35,39.15],[-76.542725,38.717615],[-76.32933,38.08326],[-76.989998,38.239992],[-76.30162,37.917945],[-76.25874,36.9664],[-75.9718,36.89726],[-75.86804,36.55125],[-75.72749,35.55074],[-76.36318,34.80854],[-77.397635,34.51201],[-78.05496,33.92547],[-78.55435,33.86133],[-79.06067,33.49395],[-79.20357,33.15839],[-80.301325,32.509355],[-80.86498,32.0333],[-81.33629,31.44049],[-81.49042,30.72999],[-81.31371,30.03552],[-80.98,29.18],[-80.535585,28.47213],[-80.53,28.04],[-80.056539,26.88],[-80.088015,26.205765],[-80.13156,25.816775],[-80.38103,25.20616],[-80.68,25.08],[-81.17213,25.20126],[-81.33,25.64],[-81.71,25.87],[-82.24,26.73],[-82.70515,27.49504],[-82.85526,27.88624],[-82.65,28.55],[-82.93,29.1],[-83.70959,29.93656],[-84.1,30.09],[-85.10882,29.63615],[-85.28784,29.68612],[-85.7731,30.15261],[-86.4,30.4],[-87.53036,30.27433],[-88.41782,30.3849],[-89.18049,30.31598],[-89.593831,30.159994],[-89.413735,29.89419],[-89.43,29.48864],[-89.21767,29.29108],[-89.40823,29.15961],[-89.77928,29.30714],[-90.15463,29.11743],[-90.880225,29.148535],[-91.626785,29.677],[-92.49906,29.5523],[-93.22637,29.78375],[-93.84842,29.71363],[-94.69,29.48],[-95.60026,28.73863],[-96.59404,28.30748],[-97.14,27.83],[-97.37,27.38],[-97.38,26.69],[-97.33,26.21],[-97.14,25.87],[-97.53,25.84],[-98.24,26.06],[-99.02,26.37],[-99.3,26.84],[-99.52,27.54],[-100.11,28.11],[-100.45584,28.69612],[-100.9576,29.38071],[-101.6624,29.7793],[-102.48,29.76],[-103.11,28.97],[-103.94,29.27],[-104.45697,29.57196],[-104.70575,30.12173],[-105.03737,30.64402],[-105.63159,31.08383],[-106.1429,31.39995],[-106.50759,31.75452],[-108.24,31.754854],[-108.24194,31.34222],[-109.035,31.34194],[-111.02361,31.33472],[-113.30498,32.03914],[-114.815,32.52528],[-114.72139,32.72083],[-115.99135,32.61239],[-117.12776,32.53534],[-117.295938,33.046225],[-117.944,33.621236],[-118.410602,33.740909],[-118.519895,34.027782],[-119.081,34.078],[-119.438841,34.348477],[-120.36778,34.44711],[-120.62286,34.60855],[-120.74433,35.15686],[-121.71457,36.16153],[-122.54747,37.55176],[-122.51201,37.78339],[-122.95319,38.11371],[-123.7272,38.95166],[-123.86517,39.76699],[-124.39807,40.3132],[-124.17886,41.14202],[-124.2137,41.99964],[-124.53284,42.76599],[-124.14214,43.70838],[-124.020535,44.615895],[-123.89893,45.52341],[-124.079635,46.86475],[-124.39567,47.72017],[-124.68721,48.184433],[-124.566101,48.379715],[-123.12,48.04],[-122.58736,47.096],[-122.34,47.36],[-122.5,48.18],[-122.84,49],[-120,49],[-117.03121,49],[-116.04818,49],[-113,49],[-110.05,49],[-107.05,49],[-104.04826,48.99986],[-100.65,49],[-97.22872,49.0007],[-95.15907,49],[-95.15609,49.38425],[-94.81758,49.38905]]],[[[-153.006314,57.115842],[-154.00509,56.734677],[-154.516403,56.992749],[-154.670993,57.461196],[-153.76278,57.816575],[-153.228729,57.968968],[-152.564791,57.901427],[-152.141147,57.591059],[-153.006314,57.115842]]],[[[-165.579164,59.909987],[-166.19277,59.754441],[-166.848337,59.941406],[-167.455277,60.213069],[-166.467792,60.38417],[-165.67443,60.293607],[-165.579164,59.909987]]],[[[-171.731657,63.782515],[-171.114434,63.592191],[-170.491112,63.694975],[-169.682505,63.431116],[-168.689439,63.297506],[-168.771941,63.188598],[-169.52944,62.976931],[-170.290556,63.194438],[-170.671386,63.375822],[-171.553063,63.317789],[-171.791111,63.405846],[-171.731657,63.782515]]],[[[-155.06779,71.147776],[-154.344165,70.696409],[-153.900006,70.889989],[-152.210006,70.829992],[-152.270002,70.600006],[-150.739992,70.430017],[-149.720003,70.53001],[-147.613362,70.214035],[-145.68999,70.12001],[-144.920011,69.989992],[-143.589446,70.152514],[-142.07251,69.851938],[-140.985988,69.711998],[-140.985988,69.711998],[-140.992499,66.000029],[-140.99777,60.306397],[-140.012998,60.276838],[-139.039,60.000007],[-138.34089,59.56211],[-137.4525,58.905],[-136.47972,59.46389],[-135.47583,59.78778],[-134.945,59.27056],[-134.27111,58.86111],[-133.355549,58.410285],[-132.73042,57.69289],[-131.70781,56.55212],[-130.00778,55.91583],[-129.979994,55.284998],[-130.53611,54.802753],[-131.085818,55.178906],[-131.967211,55.497776],[-132.250011,56.369996],[-133.539181,57.178887],[-134.078063,58.123068],[-135.038211,58.187715],[-136.628062,58.212209],[-137.800006,58.499995],[-139.867787,59.537762],[-140.825274,59.727517],[-142.574444,60.084447],[-143.958881,59.99918],[-145.925557,60.45861],[-147.114374,60.884656],[-148.224306,60.672989],[-148.018066,59.978329],[-148.570823,59.914173],[-149.727858,59.705658],[-150.608243,59.368211],[-151.716393,59.155821],[-151.859433,59.744984],[-151.409719,60.725803],[-150.346941,61.033588],[-150.621111,61.284425],[-151.895839,60.727198],[-152.57833,60.061657],[-154.019172,59.350279],[-153.287511,58.864728],[-154.232492,58.146374],[-155.307491,57.727795],[-156.308335,57.422774],[-156.556097,56.979985],[-158.117217,56.463608],[-158.433321,55.994154],[-159.603327,55.566686],[-160.28972,55.643581],[-161.223048,55.364735],[-162.237766,55.024187],[-163.069447,54.689737],[-164.785569,54.404173],[-164.942226,54.572225],[-163.84834,55.039431],[-162.870001,55.348043],[-161.804175,55.894986],[-160.563605,56.008055],[-160.07056,56.418055],[-158.684443,57.016675],[-158.461097,57.216921],[-157.72277,57.570001],[-157.550274,58.328326],[-157.041675,58.918885],[-158.194731,58.615802],[-158.517218,58.787781],[-159.058606,58.424186],[-159.711667,58.93139],[-159.981289,58.572549],[-160.355271,59.071123],[-161.355003,58.670838],[-161.968894,58.671665],[-162.054987,59.266925],[-161.874171,59.633621],[-162.518059,59.989724],[-163.818341,59.798056],[-164.662218,60.267484],[-165.346388,60.507496],[-165.350832,61.073895],[-166.121379,61.500019],[-165.734452,62.074997],[-164.919179,62.633076],[-164.562508,63.146378],[-163.753332,63.219449],[-163.067224,63.059459],[-162.260555,63.541936],[-161.53445,63.455817],[-160.772507,63.766108],[-160.958335,64.222799],[-161.518068,64.402788],[-160.777778,64.788604],[-161.391926,64.777235],[-162.45305,64.559445],[-162.757786,64.338605],[-163.546394,64.55916],[-164.96083,64.446945],[-166.425288,64.686672],[-166.845004,65.088896],[-168.11056,65.669997],[-166.705271,66.088318],[-164.47471,66.57666],[-163.652512,66.57666],[-163.788602,66.077207],[-161.677774,66.11612],[-162.489715,66.735565],[-163.719717,67.116395],[-164.430991,67.616338],[-165.390287,68.042772],[-166.764441,68.358877],[-166.204707,68.883031],[-164.430811,68.915535],[-163.168614,69.371115],[-162.930566,69.858062],[-161.908897,70.33333],[-160.934797,70.44769],[-159.039176,70.891642],[-158.119723,70.824721],[-156.580825,71.357764],[-155.06779,71.147776]]]]},"id":"USA"}, +{"type":"Feature","properties":{"name":"Uzbekistan"},"geometry":{"type":"Polygon","coordinates":[[[66.518607,37.362784],[66.54615,37.974685],[65.215999,38.402695],[64.170223,38.892407],[63.518015,39.363257],[62.37426,40.053886],[61.882714,41.084857],[61.547179,41.26637],[60.465953,41.220327],[60.083341,41.425146],[59.976422,42.223082],[58.629011,42.751551],[57.78653,42.170553],[56.932215,41.826026],[57.096391,41.32231],[55.968191,41.308642],[55.928917,44.995858],[58.503127,45.586804],[58.689989,45.500014],[60.239972,44.784037],[61.05832,44.405817],[62.0133,43.504477],[63.185787,43.650075],[64.900824,43.728081],[66.098012,42.99766],[66.023392,41.994646],[66.510649,41.987644],[66.714047,41.168444],[67.985856,41.135991],[68.259896,40.662325],[68.632483,40.668681],[69.070027,41.384244],[70.388965,42.081308],[70.962315,42.266154],[71.259248,42.167711],[70.420022,41.519998],[71.157859,41.143587],[71.870115,41.3929],[73.055417,40.866033],[71.774875,40.145844],[71.014198,40.244366],[70.601407,40.218527],[70.45816,40.496495],[70.666622,40.960213],[69.329495,40.727824],[69.011633,40.086158],[68.536416,39.533453],[67.701429,39.580478],[67.44222,39.140144],[68.176025,38.901553],[68.392033,38.157025],[67.83,37.144994],[67.075782,37.356144],[66.518607,37.362784]]]},"id":"UZB"}, +{"type":"Feature","properties":{"name":"Venezuela"},"geometry":{"type":"Polygon","coordinates":[[[-71.331584,11.776284],[-71.360006,11.539994],[-71.94705,11.423282],[-71.620868,10.96946],[-71.633064,10.446494],[-72.074174,9.865651],[-71.695644,9.072263],[-71.264559,9.137195],[-71.039999,9.859993],[-71.350084,10.211935],[-71.400623,10.968969],[-70.155299,11.375482],[-70.293843,11.846822],[-69.943245,12.162307],[-69.5843,11.459611],[-68.882999,11.443385],[-68.233271,10.885744],[-68.194127,10.554653],[-67.296249,10.545868],[-66.227864,10.648627],[-65.655238,10.200799],[-64.890452,10.077215],[-64.329479,10.389599],[-64.318007,10.641418],[-63.079322,10.701724],[-61.880946,10.715625],[-62.730119,10.420269],[-62.388512,9.948204],[-61.588767,9.873067],[-60.830597,9.38134],[-60.671252,8.580174],[-60.150096,8.602757],[-59.758285,8.367035],[-60.550588,7.779603],[-60.637973,7.415],[-60.295668,7.043911],[-60.543999,6.856584],[-61.159336,6.696077],[-61.139415,6.234297],[-61.410303,5.959068],[-60.733574,5.200277],[-60.601179,4.918098],[-60.966893,4.536468],[-62.08543,4.162124],[-62.804533,4.006965],[-63.093198,3.770571],[-63.888343,4.02053],[-64.628659,4.148481],[-64.816064,4.056445],[-64.368494,3.79721],[-64.408828,3.126786],[-64.269999,2.497006],[-63.422867,2.411068],[-63.368788,2.2009],[-64.083085,1.916369],[-64.199306,1.492855],[-64.611012,1.328731],[-65.354713,1.095282],[-65.548267,0.789254],[-66.325765,0.724452],[-66.876326,1.253361],[-67.181294,2.250638],[-67.447092,2.600281],[-67.809938,2.820655],[-67.303173,3.318454],[-67.337564,3.542342],[-67.621836,3.839482],[-67.823012,4.503937],[-67.744697,5.221129],[-67.521532,5.55687],[-67.34144,6.095468],[-67.695087,6.267318],[-68.265052,6.153268],[-68.985319,6.206805],[-69.38948,6.099861],[-70.093313,6.960376],[-70.674234,7.087785],[-71.960176,6.991615],[-72.198352,7.340431],[-72.444487,7.423785],[-72.479679,7.632506],[-72.360901,8.002638],[-72.439862,8.405275],[-72.660495,8.625288],[-72.78873,9.085027],[-73.304952,9.152],[-73.027604,9.73677],[-72.905286,10.450344],[-72.614658,10.821975],[-72.227575,11.108702],[-71.973922,11.608672],[-71.331584,11.776284]]]},"id":"VEN"}, +{"type":"Feature","properties":{"name":"Vietnam"},"geometry":{"type":"Polygon","coordinates":[[[108.05018,21.55238],[106.715068,20.696851],[105.881682,19.75205],[105.662006,19.058165],[106.426817,18.004121],[107.361954,16.697457],[108.269495,16.079742],[108.877107,15.276691],[109.33527,13.426028],[109.200136,11.666859],[108.36613,11.008321],[107.220929,10.364484],[106.405113,9.53084],[105.158264,8.59976],[104.795185,9.241038],[105.076202,9.918491],[104.334335,10.486544],[105.199915,10.88931],[106.24967,10.961812],[105.810524,11.567615],[107.491403,12.337206],[107.614548,13.535531],[107.382727,14.202441],[107.564525,15.202173],[107.312706,15.908538],[106.556008,16.604284],[105.925762,17.485315],[105.094598,18.666975],[103.896532,19.265181],[104.183388,19.624668],[104.822574,19.886642],[104.435,20.758733],[103.203861,20.766562],[102.754896,21.675137],[102.170436,22.464753],[102.706992,22.708795],[103.504515,22.703757],[104.476858,22.81915],[105.329209,23.352063],[105.811247,22.976892],[106.725403,22.794268],[106.567273,22.218205],[107.04342,21.811899],[108.05018,21.55238]]]},"id":"VNM"}, +{"type":"Feature","properties":{"name":"Vanuatu"},"geometry":{"type":"MultiPolygon","coordinates":[[[[167.844877,-16.466333],[167.515181,-16.59785],[167.180008,-16.159995],[167.216801,-15.891846],[167.844877,-16.466333]]],[[[167.107712,-14.93392],[167.270028,-15.740021],[167.001207,-15.614602],[166.793158,-15.668811],[166.649859,-15.392704],[166.629137,-14.626497],[167.107712,-14.93392]]]]},"id":"VUT"}, +{"type":"Feature","properties":{"name":"West Bank"},"geometry":{"type":"Polygon","coordinates":[[[35.545665,32.393992],[35.545252,31.782505],[35.397561,31.489086],[34.927408,31.353435],[34.970507,31.616778],[35.225892,31.754341],[34.974641,31.866582],[35.18393,32.532511],[35.545665,32.393992]]]},"id":"PSE"}, +{"type":"Feature","properties":{"name":"Yemen"},"geometry":{"type":"Polygon","coordinates":[[[53.108573,16.651051],[52.385206,16.382411],[52.191729,15.938433],[52.168165,15.59742],[51.172515,15.17525],[49.574576,14.708767],[48.679231,14.003202],[48.238947,13.94809],[47.938914,14.007233],[47.354454,13.59222],[46.717076,13.399699],[45.877593,13.347764],[45.62505,13.290946],[45.406459,13.026905],[45.144356,12.953938],[44.989533,12.699587],[44.494576,12.721653],[44.175113,12.58595],[43.482959,12.6368],[43.222871,13.22095],[43.251448,13.767584],[43.087944,14.06263],[42.892245,14.802249],[42.604873,15.213335],[42.805015,15.261963],[42.702438,15.718886],[42.823671,15.911742],[42.779332,16.347891],[43.218375,16.66689],[43.115798,17.08844],[43.380794,17.579987],[43.791519,17.319977],[44.062613,17.410359],[45.216651,17.433329],[45.399999,17.333335],[46.366659,17.233315],[46.749994,17.283338],[47.000005,16.949999],[47.466695,17.116682],[48.183344,18.166669],[49.116672,18.616668],[52.00001,19.000003],[52.782184,17.349742],[53.108573,16.651051]]]},"id":"YEM"}, +{"type":"Feature","properties":{"name":"South Africa"},"geometry":{"type":"Polygon","coordinates":[[[31.521001,-29.257387],[31.325561,-29.401978],[30.901763,-29.909957],[30.622813,-30.423776],[30.055716,-31.140269],[28.925553,-32.172041],[28.219756,-32.771953],[27.464608,-33.226964],[26.419452,-33.61495],[25.909664,-33.66704],[25.780628,-33.944646],[25.172862,-33.796851],[24.677853,-33.987176],[23.594043,-33.794474],[22.988189,-33.916431],[22.574157,-33.864083],[21.542799,-34.258839],[20.689053,-34.417175],[20.071261,-34.795137],[19.616405,-34.819166],[19.193278,-34.462599],[18.855315,-34.444306],[18.424643,-33.997873],[18.377411,-34.136521],[18.244499,-33.867752],[18.25008,-33.281431],[17.92519,-32.611291],[18.24791,-32.429131],[18.221762,-31.661633],[17.566918,-30.725721],[17.064416,-29.878641],[17.062918,-29.875954],[16.344977,-28.576705],[16.824017,-28.082162],[17.218929,-28.355943],[17.387497,-28.783514],[17.836152,-28.856378],[18.464899,-29.045462],[19.002127,-28.972443],[19.894734,-28.461105],[19.895768,-24.76779],[20.165726,-24.917962],[20.758609,-25.868136],[20.66647,-26.477453],[20.889609,-26.828543],[21.605896,-26.726534],[22.105969,-26.280256],[22.579532,-25.979448],[22.824271,-25.500459],[23.312097,-25.26869],[23.73357,-25.390129],[24.211267,-25.670216],[25.025171,-25.71967],[25.664666,-25.486816],[25.765849,-25.174845],[25.941652,-24.696373],[26.485753,-24.616327],[26.786407,-24.240691],[27.11941,-23.574323],[28.017236,-22.827754],[29.432188,-22.091313],[29.839037,-22.102216],[30.322883,-22.271612],[30.659865,-22.151567],[31.191409,-22.25151],[31.670398,-23.658969],[31.930589,-24.369417],[31.752408,-25.484284],[31.837778,-25.843332],[31.333158,-25.660191],[31.04408,-25.731452],[30.949667,-26.022649],[30.676609,-26.398078],[30.685962,-26.743845],[31.282773,-27.285879],[31.86806,-27.177927],[32.071665,-26.73382],[32.83012,-26.742192],[32.580265,-27.470158],[32.462133,-28.301011],[32.203389,-28.752405],[31.521001,-29.257387]],[[28.978263,-28.955597],[28.5417,-28.647502],[28.074338,-28.851469],[27.532511,-29.242711],[26.999262,-29.875954],[27.749397,-30.645106],[28.107205,-30.545732],[28.291069,-30.226217],[28.8484,-30.070051],[29.018415,-29.743766],[29.325166,-29.257387],[28.978263,-28.955597]]]},"id":"ZAF"}, +{"type":"Feature","properties":{"name":"Zambia"},"geometry":{"type":"Polygon","coordinates":[[[32.759375,-9.230599],[33.231388,-9.676722],[33.485688,-10.525559],[33.31531,-10.79655],[33.114289,-11.607198],[33.306422,-12.435778],[32.991764,-12.783871],[32.688165,-13.712858],[33.214025,-13.97186],[30.179481,-14.796099],[30.274256,-15.507787],[29.516834,-15.644678],[28.947463,-16.043051],[28.825869,-16.389749],[28.467906,-16.4684],[27.598243,-17.290831],[27.044427,-17.938026],[26.706773,-17.961229],[26.381935,-17.846042],[25.264226,-17.73654],[25.084443,-17.661816],[25.07695,-17.578823],[24.682349,-17.353411],[24.033862,-17.295843],[23.215048,-17.523116],[22.562478,-16.898451],[21.887843,-16.08031],[21.933886,-12.898437],[24.016137,-12.911046],[23.930922,-12.565848],[24.079905,-12.191297],[23.904154,-11.722282],[24.017894,-11.237298],[23.912215,-10.926826],[24.257155,-10.951993],[24.314516,-11.262826],[24.78317,-11.238694],[25.418118,-11.330936],[25.75231,-11.784965],[26.553088,-11.92444],[27.16442,-11.608748],[27.388799,-12.132747],[28.155109,-12.272481],[28.523562,-12.698604],[28.934286,-13.248958],[29.699614,-13.257227],[29.616001,-12.178895],[29.341548,-12.360744],[28.642417,-11.971569],[28.372253,-11.793647],[28.49607,-10.789884],[28.673682,-9.605925],[28.449871,-9.164918],[28.734867,-8.526559],[29.002912,-8.407032],[30.346086,-8.238257],[30.740015,-8.340007],[31.157751,-8.594579],[31.556348,-8.762049],[32.191865,-8.930359],[32.759375,-9.230599]]]},"id":"ZMB"}, +{"type":"Feature","properties":{"name":"Zimbabwe"},"geometry":{"type":"Polygon","coordinates":[[[31.191409,-22.25151],[30.659865,-22.151567],[30.322883,-22.271612],[29.839037,-22.102216],[29.432188,-22.091313],[28.794656,-21.639454],[28.02137,-21.485975],[27.727228,-20.851802],[27.724747,-20.499059],[27.296505,-20.39152],[26.164791,-19.293086],[25.850391,-18.714413],[25.649163,-18.536026],[25.264226,-17.73654],[26.381935,-17.846042],[26.706773,-17.961229],[27.044427,-17.938026],[27.598243,-17.290831],[28.467906,-16.4684],[28.825869,-16.389749],[28.947463,-16.043051],[29.516834,-15.644678],[30.274256,-15.507787],[30.338955,-15.880839],[31.173064,-15.860944],[31.636498,-16.07199],[31.852041,-16.319417],[32.328239,-16.392074],[32.847639,-16.713398],[32.849861,-17.979057],[32.654886,-18.67209],[32.611994,-19.419383],[32.772708,-19.715592],[32.659743,-20.30429],[32.508693,-20.395292],[32.244988,-21.116489],[31.191409,-22.25151]]]},"id":"ZWE"}]} diff --git a/css/estilo.css b/css/estilo.css new file mode 100644 index 0000000000000000000000000000000000000000..5cc12e127f7daec36d1b9fb8e8213e3821885f7a --- /dev/null +++ b/css/estilo.css @@ -0,0 +1,40 @@ +/* General */ +body { + margin: 0; + height: 100vh; /* Asegura que el cuerpo ocupe toda la altura */ + display: flex; + flex-direction: column; /* Disposición vertical */ +} + +/* Contenedor del mapa */ +#map { + flex: 2; /* Ocupa el doble de espacio que #abajo */ + width: 100%; /* Asegura que ocupe el ancho completo */ + height: 70%; /* Asegura que el mapa ocupe el 70% de la pantalla */ + background-color: rgb(207, 207, 207); +} +#yearSelectorContainer { + position: absolute; + top: 20px; /* Adjust for desired distance from the top */ + right: 20px; /* Position it on the right side */ + background-color: rgba(255, 255, 255, 0.8); /* Optional, adds some transparency */ + padding: 10px; + border-radius: 8px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); + font-family: Arial, sans-serif; + z-index: 1000; /* Ensures it stays above the map */ +} +/* Contenedor inferior */ +#grafico { + flex: 0.9; /* Ocupa el tercio restante de la pantalla */ + width: 100%; /* Asegura que ocupe el ancho completo */ + background-color: rgb(207, 207, 207); +} + +/* Estilo para los números */ +.text-label { + font-size: 10px; + font-weight: bold; + fill: #000000; + pointer-events: none; +} diff --git a/datos/paises.csv b/datos/paises.csv new file mode 100644 index 0000000000000000000000000000000000000000..5415b566d0451670d529a35e102cb3be699d078f --- /dev/null +++ b/datos/paises.csv @@ -0,0 +1,185 @@ +countryName,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020 +Afghanistan,5.37777811111111,5.48888895555556,5.46666677777778,7.51111191111111,8.00000044444444,10.0666663777778,13.9999996666667,16.7333341777778,13.7333336666667,14.0888892222222,17.4888659555556,18.3110897111111,15.9555547555556,17.3333326444444,21.5555549777778,23.6666661555556,25.5555556666667,29.5333341777778,33.0000010888889,36.9794040961098,36.4172332199546,34.7878790909091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.5517956634981,45.1555880810994,52.2677880889209,62.0913762477181,69.7128559468013,97.4787953186311,101.09305182952,124.161610488412,158.56678596148,178.051131188938,199.073170656666,201.46404996223,204.971267701335,191.34211763859,181.165624649088,187.534696302586,180.532285788878,187.994507427823,201.161373258206 +Albania,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.5733801185488,18.9705013342015,20.9732625,20.8079625,20.5123625,22.5309,20.2855375,10.9955902777778,6.52174990837304,11.8531546846295,18.809515203972,23.9276485342107,31.9964133593751,22.585139740968,25.4596454088383,32.1212165097755,34.8035525804122,39.221007935403,43.4806824219512,56.1149625714231,71.8468578151876,80.5207353938058,88.960729189814,106.773241444289,128.813535078539,120.44208085864,119.269228289911,128.907645313284,123.198304373467,127.762205070162,132.281475161168,113.868501298411,118.611998308396,130.196893366919,151.564323098977,154.002428748812,148.876292682927 +Algeria,27.2359338478054,24.34727329809,20.0142832837091,27.0296011828806,29.0929286423204,31.362588969233,30.3983455874906,33.7084306576735,38.5211581697758,42.5721877215369,48.6348749265763,50.7722236697472,67.6676661086932,87.0784792429022,132.100296122659,155.579342684965,177.28347374994,209.71901273271,263.644913134471,332.434221576311,423.463808307708,443.486726678715,452.070887156483,488.013698003675,536.982789059678,579.378686701937,636.922381600493,667.463964162732,590.890671873943,556.344144652104,620.485629472509,457.156145597064,480.030783885401,499.455994285812,425.431780424148,417.643153304366,469.415825194661,481.776120421507,481.87747528899,486.406534693025,547.903927461939,547.447128148676,567.603558650082,678.638284126882,853.325811886107,1031.98223709439,1170.2730754089,1349.7708262378,1710.00699876747,1372.11035770034,1612.0727018525,2000.130521992,2090.58991952125,2097.55003250664,2138.10024944464,1659.79279263174,1600.34163871455,1700.97014589134,1749.10878623049,1717.6740374819,1450.0918149062 +Andorra,0,0,0,0,0,0,0,0,0,0,0.786192060850963,0.894098203592814,1.13408231944085,1.50820102798401,1.86558696279204,2.20127246376812,2.27281024620741,2.54020153340635,3.08008897569444,4.11578334159643,4.46416105825017,3.88958731302938,3.75895956383462,3.27861832946636,3.30070689298282,3.46737964774951,4.8200059403588,6.11316399407088,7.2142593915155,7.95449332396346,10.2904848188051,11.0692858286629,12.1001365187713,10.0702575500065,10.1754912433238,11.7873899119295,12.2394535662682,11.8059727272727,12.1193239781713,12.3987630513531,14.2904919845218,15.4692617449664,17.5591003199699,23.6172686230248,28.9492177799851,31.5990548439249,34.56442102622,39.5260060224473,40.8563058444412,36.7440955821061,34.4996685668832,36.2920378619154,31.8880894256713,31.9370434320627,32.7180815730038,27.8987018750693,28.9667921186628,30.0018075011297,32.1831601322626,31.5506548751819,0 +Angola,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.3407360354849,55.5382446382274,55.5382446382274,57.8782380869565,61.351662542408,75.5861300790635,70.7679382260201,80.8927928472241,87.7511626916722,102.079225171839,112.362758427358,0,0,0,33.905,55.6122222222222,75.2696396396396,76.4971615720524,65.0661914460285,61.5293653921955,91.2963497833773,89.3606372320121,152.85594828418,178.12705294325,235.520524075488,369.709186992523,523.81006892038,652.66452081386,885.386112051433,703.07163678238,837.994966112004,1117.89686464441,1280.52853643106,1367.09862831194,1457.12200312505,1161.93649124151,1011.23851090455,1221.2382233359,1013.53230784594,894.171903412533,583.759762929678 +Antigua and Barbuda,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.774967537037037,0.878793414814815,1.09079978888889,1.31431026666667,1.47841734444444,1.64369278888889,1.82144092962963,2.08372846296296,2.40923924814815,2.90440140740741,3.37174861851852,3.98637727777778,4.38794788518519,4.5947037037037,4.81707407407407,4.99281481481481,5.35174074074074,5.8942962962963,5.77281481481481,6.3372962962963,6.80618518518518,7.27859259259259,7.662,8.2637037037037,8.00481481481481,8.14381481481481,8.56396296296296,9.1972962962963,10.2296296296296,11.5766296296296,13.1275925925926,13.7007037037037,12.2832962962963,11.487,11.3763703703704,11.9994814814815,11.8144814814815,12.4973333333333,13.3669259259259,14.3658518518519,14.6797777777778,16.0594444444444,16.8753333333333,13.7028148148148 +Argentina,0,0,244.506048776081,182.721236644715,256.052493817597,283.447059666389,286.304747279023,242.566675532569,264.368572474982,312.562845436155,315.842103655447,332.931990954881,347.330005362862,525.440001169037,724.367773424554,524.386479219226,511.694998907722,567.810001009448,580.828701562634,692.523289533789,769.619237419479,786.768423664213,843.07486836724,1039.79106777911,790.92001998032,884.166689002596,1109.34442762694,1111.06191358197,1262.06817196091,766.368980364712,1413.52368714691,1897.19984268485,2287.88617201696,2367.41715015015,2574.4,2580.3175,2721.4975,2928.59,2989.4825,2835.23,2842.0375,2686.9675,977.240042518602,1275.86973492177,1646.57930452787,1987.37095012282,2325.57260817308,2875.30508430568,3615.58037110419,3329.76484577619,4236.2742209249,5301.63281574658,5459.82375701128,5520.25140252246,5263.19673731638,5947.49285413212,5575.31376217967,6436.28665302155,5248.19742918669,4519.32356085842,3892.88056265325 +Armenia,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.5683885760997,20.6987012987013,12.7283545342634,12.0131282927524,13.1515863667553,14.6831743520148,15.9696894623708,16.3949244476152,18.9372643726462,18.4548217302732,19.1156366885006,21.1846791337873,23.7633504839976,28.0706100869084,35.7661524041616,49.0046995009033,63.844516061421,92.0630170039619,116.620407138753,86.4793674798704,92.6028493779781,101.421113344961,106.193200485857,111.214657674067,116.095129397542,105.533376729872,105.46135160031,115.274585657334,124.579419070333,136.192913612814,126.41209802112 +Aruba,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0546341711746,4.87602457746416,5.96423607114715,6.95304363031101,7.64887117194486,8.72138715083799,9.58463184357542,10.8297972067039,12.4568826815642,13.204748603352,13.7996089385475,15.3194413407821,16.6510055865922,17.2279888268156,18.7345251396648,19.2011173184358,19.4134078212291,20.2122905027933,22.2849162011173,23.3072625698324,24.2458100558659,26.1508379888268,27.4525139664804,24.9888268156425,23.9050279329609,25.4972067039106,25.3463687150838,27.2784972067039,27.9084916201117,29.6290502793296,29.8363687150838,30.9243016759777,32.0218860692893,0,0 +Australia,186.0678687423,196.830552133498,199.22723709262,215.39926083548,238.010975473177,259.771530966514,273.09889125322,304.446186583044,327.169895844999,366.860790682047,413.372158136409,452.223093291522,520.514018691589,638.449711723254,889.815770081061,973.330602212208,1051.01474851885,1103.87703601744,1185.35980148883,1349.41497216858,1500.32311977716,1769.53442470684,1941.04601125455,1773.33645297146,1935.93551892773,1805.73751629976,1823.68494683828,1894.00476442562,2360.6591967404,2997.67934207312,3113.26664101578,3259.02990346127,3254.80273782973,3121.26194491287,3228.07333102733,3679.158004158,4010.89529590288,4353.23994365315,3994.04463135047,3890.98884572001,4155.76210513094,3790.83932596329,3953.42716617832,4673.9079790332,6141.66310997297,6950.75176665163,7475.56154537287,8539.55405511502,10551.2712623098,9280.42998085702,11475.8918347573,13979.079167899,15465.0855846566,15763.3528265107,14675.0481960892,13505.3415425576,12066.8510700247,13268.8287201146,14285.2957135106,13919.5251037048,13278.3617106851 +Austria,65.9269384118495,73.1174963336229,77.5611021011966,83.7417525773075,91.6998388571185,99.9407061585997,108.876822731014,115.794316689165,124.406253128685,135.827985562404,153.730055570257,178.584860667474,220.596124769332,295.15467706796,351.892999116608,400.59206763056,429.599762215234,515.457588876863,620.522590732493,739.372969634586,820.589129972346,710.34228443062,712.752875695733,721.210165466524,679.853448868716,693.867744080872,990.361649391618,1241.6844253374,1333.39397080129,1331.0580551222,1664.63386179354,1737.94177961108,1950.78126721763,1903.7972080918,2035.35242741838,2410.38283062645,2372.50948791266,2127.90348404555,2182.59904401956,2171.85787342851,1967.99778883361,1973.37879194631,2133.77771503858,2616.95778781038,3009.04221504842,3159.74418604651,3359.98557270104,3886.91445387353,4302.94287388311,4001.72297860517,3918.9274654469,4311.2031008882,4094.25234155263,4300.68712971867,4419.96131736508,3818.17565893574,3955.68644341038,4162.30497429163,4549.45881027378,4450.1187270447,4332.58467676515 +Azerbaijan,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.46305555555556,15.7,11.9331210191083,24.1735584003625,31.7633383703359,39.6223811316021,44.463685706901,45.8143203883495,52.7279839070183,57.077203908515,62.3585681958445,72.7675389471541,86.8037040805943,132.457160990057,209.829863443027,330.503437827759,488.524829600779,442.914904205026,529.092947919262,659.516272002026,696.839358452139,741.644359464627,752.442942751498,530.743704860433,378.675189571975,408.655589123867,471.129411764706,481.742352941176,426.071764705882 +The Bahamas,1.69803921568627,1.90098039215686,2.12254901960784,2.37745098039216,2.66666666666667,3.00392156862745,3.4,3.90196078431373,4.44901960784314,5.28137254901961,5.38423153692615,5.734,5.909,6.709,6.324,5.962,6.421,7.13,8.324,11.398001,13.353,14.265,15.783,17.328,20.411,23.206999,24.725,27.139999,28.179,30.62,31.66,31.1116,31.09,30.92,32.59,34.29,36.09,63.3236,68.3322,76.8387,80.7647,83.1783,88.8116,88.7009,90.5529,98.362,101.6725,106.1834,105.26,99.8196,100.9576,100.7045,107.205,104.946,111.429,118.906,119.926,123.597,128.378,131.644,99.075 +Bahrain,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.7269832846909,34.6781914893617,36.4574468085106,37.3510638297872,39.0558510638298,36.5186170212766,30.5239361702128,33.920210106383,37.0239361702128,38.6356382978723,42.2978723404255,46.1622340425532,47.5106382978723,52.0026595744681,55.6755345744681,58.4946781914894,61.0186143617021,63.4920239361702,61.8377659574468,66.2101037234043,90.6289893617021,89.7619680851064,95.9351063829787,110.748138297872,131.501595744681,159.687234042553,185.047606382979,217.3,257.109042553191,229.382180851064,257.132712765957,287.765957446809,307.493085106383,325.394680851064,333.877127659574,310.506382978723,322.349734042553,354.737765957447,378.014627659574,386.52579787234,347.292287234043 +Bangladesh,42.7489391349536,48.1758018360155,50.8141333978635,53.1945835116235,53.8605461934987,59.0663655700092,64.3968759832325,72.535753993215,74.8368547351275,84.7100610095399,89.9272180939332,87.5184283979658,62.8824586666667,80.867257293407,125.124605197088,194.483480734565,101.171133333333,96.511493018746,132.817671428571,155.654803219448,181.380490956072,202.49694002448,185.253992015968,176.090488215488,189.2084,222.784230769231,217.740333333333,242.980322580645,265.790057603486,287.817147638012,315.98341233559,309.574839495798,317.088745941645,331.665194179894,337.68660882793,379.397487686567,464.384841075795,482.443091334895,499.845594713656,512.705698835275,533.697873186245,539.912898443291,547.240814905102,601.589291882556,651.085442500425,694.429430894309,718.190836837403,796.11888213148,916.312782393237,1024.7779147239,1152.79077465226,1286.37938711386,1333.55749482478,1499.9045102229,1728.85454931453,1950.7867869723,2214.15188000475,2497.10922462309,2740.38973437275,3025.7132044575,3230.56957972312 +Barbados,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.11809337474355,4.02178605019554,4.3591126858968,4.95097667929041,5.52883707055138,6.70362452145379,10.1228061452792,11.1420474320091,11.6392383035847,12.3601650673694,13.4689007109829,14.0953612091682,15.4775518321484,17.0437030776115,18.1275791776463,20.0616516680754,20.1213145726644,20.2058370208323,19.57,20.6334211703873,21.5134490130761,22.1697409635559,23.6364540347039,24.9838412966738,28.1708347834734,29.5182220454432,30.595,30.545,31.065,32.095,34.445,38.195,42.175,46.74,47.85,44.655,45.3,46.575,46.1,46.77,46.965,47.15,48.3,49.78,50.865,52.09,44.18 +Belarus,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216.5,0,0,0,177.93,134.892222222222,147.568461538462,141.088461538462,152.643695652174,121.528674698795,127.389121338912,123.548201438849,145.942490228922,178.277913213067,231.443518518519,302.075673166202,369.543123543124,452.773998136067,607.634831460674,508.740780522735,572.224907687143,617.577889447236,656.851025548759,755.279842342342,788.138399843506,564.547343965842,477.226578206675,547.265952491849,600.312622693365,644.096471938044,602.582390555829 +Belgium,116.5872259099,124.00145221595,132.640156753193,142.600173870492,159.601066806732,173.714576079374,186.518834724808,199.920407884593,213.76353113475,237.107358947022,267.061960467931,298.21661869912,372.094180185134,477.438014903747,560.330778790389,656.781890972908,711.138829676071,828.399054586382,1012.46526194441,1163.15456796918,1268.29314388191,1047.3001847023,920.959261875331,871.842390532544,833.495301591734,862.682641483796,1200.18787249413,1493.94404105889,1622.99103675261,1642.21056511057,2053.31747947851,2105.10999409333,2347.81652446675,2247.21795708955,2448.84129491198,2880.25588396278,2792.01433224756,2527.08051420839,2585.28339631029,2581.58533986789,2362.045328911,2365.4129753915,2571.57820440429,3173.81715575621,3685.37000248324,3855.70948886954,4079.18078032869,4703.24254037777,5152.2352424198,4813.4592942484,4809.51629493033,5226.45519183591,4961.812602583,5216.42714407843,5346.78075827361,4621.49679343822,4757.39588764759,5015.22868356441,5430.08499294079,5352.88715239999,5218.61292586616 +Belize,0.280718885622288,0.299643707125857,0.318569228615428,0.337494050118998,0.361938261234775,0.400699300699301,0.444055944055944,0.473793103448276,0.449101796407186,0.473053892215569,0.532335329341317,0.592073170731707,0.660625,0.783435582822086,1.03216374269006,1.18066298342541,0.969058295964126,1.1765,1.363,1.518,1.97938222429283,1.96089854656347,1.82206326985709,1.92103185955321,2.14381949019381,2.12643742664706,2.31638320535566,2.810825585859,3.2009336027245,3.69133890704745,4.12086445492176,4.4472075,5.185597,5.602053,5.8126955,6.204225,6.4166,6.545829,6.8914,7.3273235,8.3207245,8.6835875,9.2519795,9.835756,10.513866,11.025649,12.1060375,12.7159805,13.5133865,13.1730945,13.771771,14.6079790323406,15.2289750607849,15.7941125300514,16.6733506096064,17.2170099146912,17.8930408778561,18.5852967671857,19.1589978696407,19.825185406134,16.3628079708056 +Benin,2.2619557935701,2.35668222429984,2.3643490675427,2.53927646475909,2.69818988259263,2.89908720648622,3.02925280773564,3.06222000407316,3.26323097355964,3.30748211459737,3.33627758154666,3.35072975215766,4.10331900950531,5.04376035716401,5.54654786965107,6.76870140341529,6.98408244385343,7.50049739152238,9.28843304783965,11.8623126518417,14.0525154723882,12.9111996511262,12.6777848903079,10.9534830291865,10.5113392700009,10.4571270302696,13.3610204071025,15.6241203034838,16.2024618715171,15.0229441146202,19.5996524376269,19.8643785990346,16.9531530570308,22.7455791407481,15.9807593235432,21.6962725093379,23.6111658786079,22.6830153765128,24.5509258230927,36.7739429151516,35.1999132648464,36.6622260009828,41.9434284946574,53.4925833431914,61.9027075613743,65.6765449350831,70.341116514964,81.6904869005254,97.8773542600897,97.3862699327696,95.3534428347295,106.933219536355,111.413589451349,125.178457322095,132.845286540574,113.88160958249,118.210661525979,127.016547432149,142.624070115254,143.916866327821,156.515453315404 +Bhutan,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.287174109125,1.39150441309748,1.41366534475688,1.56687192064642,1.60459970534683,1.63272314833796,1.91230747107006,2.42770861580343,2.72241005231459,2.64725206950873,2.87658184003989,2.40319995602463,2.40215763888889,2.25998091177435,2.58985597704814,2.90464801110083,3.03435517922664,3.52260952905536,3.63452787203102,3.99268801672085,4.24464089897641,4.6144451366815,5.20849551532606,6.04041957921855,6.8252385701677,7.96938120181406,8.74989895601121,11.6830851663301,12.278087906733,12.3401429182342,15.4799131781183,17.7710131667756,17.8128128157912,17.5621566509323,19.0709081345906,20.0359821299135,21.5897212900307,24.5036492807302,24.4686640493058,25.3565706896575,23.1543733808809 +Bolivia,3.73879363595386,4.06684585719294,4.44665186397102,4.78805990083307,5.39491477320156,6.04377104377104,6.69191919191919,7.55808080808081,8.57912457912458,9.2962962962963,10.1700336700337,10.956228956229,12.5761564497932,12.6296851574213,21.0024987506247,24.0469765117441,27.31984007996,32.2743628185907,37.5822088955522,44.2134360618135,45.2691680261011,58.7275693311582,55.874902648127,54.2244096187886,61.6950103797622,53.7727740671638,39.5833888322338,43.236236221622,45.9761556266594,47.1597886821613,48.6758262020708,53.4327431156789,56.4389334700679,57.3467656092471,59.81244886917,67.1522050705164,73.9696665747054,79.2567344841368,84.9754559808352,82.8507587227307,83.9791250909679,81.4153793761068,79.0548521617852,80.8236486839357,87.7345173891129,95.4907786910651,114.518691647112,131.201831567149,166.743246342373,173.399921652422,196.496313140482,239.630334305954,270.844974828616,306.593388803786,329.961880126821,330.001982483362,339.411262000606,375.086421653366,402.876479304761,408.953228437851,365.727648628234 +Bosnia and Herzegovina,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.558024691358,18.6657295373665,27.8604532163743,36.7181650423851,41.166994374041,46.8573311546841,55.6740559931206,58.0077471740538,67.2877131386805,84.9856090229181,101.575539681525,112.229533353385,128.646108625901,157.787674108109,191.12739397886,176.138365266393,171.767810455967,186.447238535807,172.211924661918,181.723357763301,185.608613886402,162.198190173607,169.142873489819,180.790757706713,201.774093514329,202.013232600733,199.464965629733 +Botswana,0.304123089864012,0.32902336644746,0.356432076265246,0.38091150566196,0.416139690506064,0.457908697473126,0.514644351464435,0.586464435146444,0.662482566248257,0.773569140788191,0.962451144611949,1.27456485120719,1.64466873706004,2.44129088027662,3.06033848417954,3.55172413793103,3.72010119595216,4.51603325415677,5.90376720598889,8.19877300613497,10.6092382913021,10.7386159913948,10.1490725454016,11.7225818214969,12.4079636475662,11.1476400714811,13.926347719653,19.6527488236345,26.4453680411244,30.8380068489751,37.9056705186778,39.4279283735655,41.4651372233019,41.600862531468,42.5933099903151,47.3061106702258,48.4775284278924,50.2021474745261,47.9045883717078,54.8425741717844,57.8832960915755,54.8960829966445,54.3885710673536,75.1158217337724,89.574677065354,99.1890710809702,101.378832993156,109.390533654786,109.450704419283,102.671331777334,127.866544983514,153.519723611477,143.800041751194,149.017509912012,156.54660710108,135.787540724652,150.825780648002,160.884376751648,169.142450980392,165.937206556402,150.619228016271 +Brazil,0,172.759404493837,192.317478515332,232.877128782002,209.637336949749,224.655228840988,282.833237331114,310.86389194961,339.304574252613,371.716408185863,423.276647936934,488.698309017878,584.348583748696,835.922758629982,1097.94519727538,1292.03555238827,1531.68949208207,1763.44101401941,2002.78646123581,2213.38204480222,2373.93489892637,2580.15174748648,2713.14113768417,1896.56506321431,1883.3997408658,2108.79841322306,2564.80855343617,2830.56833878212,3083.33568571493,3470.28139590227,3907.25626002866,3426.09227209645,3281.87944300908,3682.95777770079,5253.69851353742,7693.33330368987,8504.26433004077,8832.06452795124,8637.11007325493,5996.42075004471,6554.48188259351,5599.8370409417,5097.9527068519,5582.33724164711,6692.89321944516,8916.33826603377,11076.2671140663,13971.1424733117,16958.553918109,16669.9629437287,22088.3810857709,26161.5660666662,24652.2829389401,24728.1936221669,24560.4376602873,18022.1199953868,17956.9326581023,20635.1468876198,19169.3370838189,18778.2427372078,14447.3325897165 +Brunei,0,0,0,0,0,1.14040245655299,1.32758395400497,1.39030445576898,1.60819286554292,1.61211289690318,1.79080099307461,1.97523179241883,2.70818555823521,4.33092003579273,10.7357708564159,11.6830430565513,14.2306135664562,17.3272116094122,19.4160070360598,28.0378000551826,49.2882495796749,43.6621384957637,42.642523364486,38.4472314245149,37.825230884628,35.2361256306532,23.5859281712134,27.5446343779677,26.9071755118267,29.8546797928524,35.2055172413793,37.0166705255846,41.8354818907305,41.0570615175145,40.8733795993191,47.3402003668689,51.1560283687943,51.9733297413793,40.5114722753346,46,60.011533062645,56.0109058436122,58.4332910756171,65.5733308460567,78.7233321500414,95.3140284787311,114.707030020769,122.476942472298,143.930990685859,107.323662862643,137.073707370737,185.253199777407,190.479403008963,180.938299232737,170.983425414365,129.303949378137,114.008542677188,121.281048591498,135.673511750315,134.694229585105,120.058257695087 +Bulgaria,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198.392307692308,198.7,193.42,165.636666666667,175.949444444444,171.554210526316,202.492941176471,281.01,225.559411764706,219.884444444444,206.320909090909,109.435483870968,103.505154639175,108.297101449275,96.9741697416974,189.833035714286,122.942214727375,113.159860871633,150.306952965235,136.273232845405,132.458338435454,141.834979631071,164.028464130958,211.449835516823,261.578947368421,298.692834000381,343.798088886039,444.051014695591,544.389664198639,520.235046562878,506.820610532016,576.78241023818,543.008574244415,558.101384364821,570.820112603446,507.819967127635,539.538976244344,591.994474214924,663.634224502112,689.154161419576,698.893474334324 +Burkina Faso,3.30442817168859,3.5024723711684,3.79567023340308,3.94040588303477,4.1032161817137,4.22916848424208,4.33889831584706,4.50753993176448,4.60442678217048,4.78298597556707,4.58404330125096,4.82411103787272,5.78595583975723,6.74773518411839,7.51133330591384,9.39972703463021,9.7654716353387,11.3122481833053,14.7558338337265,17.4848098218517,19.2871947741287,17.758420264121,17.544498453012,16.0027875643589,14.5988001854646,15.524930684254,20.3630338120142,23.6983465008921,26.1604064587263,26.1558772577391,31.0130064187512,31.350456841006,33.5669251786417,31.9953622794818,18.9529062344033,23.795180992266,25.8655074709844,24.4766898453131,28.0490224828537,33.8956698251573,29.6836999146729,31.9037105045524,36.2235020394595,47.4076835522974,54.5168886842974,61.4635274203313,65.4742013369942,76.2572312354939,94.5143635896861,94.5069733553565,101.096189642848,120.802966440643,125.610160914673,134.443011391384,139.430169239017,118.32159275603,128.33363370174,141.069568300857,158.900650197634,161.781620300694,179.336063531775 +Burundi,1.9599999,2.02999992,2.13500006,2.32749998,2.60750008,1.58994962962963,1.65444571428571,1.78297142857143,1.832,1.90205714285714,2.42732571428571,2.52842285714286,2.46804571428571,3.04339839552146,3.45263492063492,4.20986666666667,4.48412753623188,5.47535555555556,6.10225555555556,7.82496666666667,9.19726666666667,9.69046666666667,10.1322222222222,10.8292630446477,9.87143931166987,11.4997928577347,12.0172549706578,11.3146649401101,10.8240321948787,11.1392413041149,11.3210125251817,11.673984783459,10.8303767060484,9.38632612026359,9.25030590153683,10.0042839388528,8.69033856317093,9.72896267915425,8.93770806077641,8.08077223365746,8.70486065883137,8.76794723068586,8.25394490159111,7.84654423620476,9.152573233961,11.1711304565222,12.7337502026862,13.5619936485882,16.118359019063,17.8145509207114,20.3213524650004,22.3582086782743,23.3330809946249,24.5162533274584,27.0578327207443,31.0439485811518,27.3280855684172,27.4818047371333,26.6849574288443,26.3143436322693,28.4178638219063 +Cabo Verde,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.42246875536716,1.39468114599741,1.40630758594899,1.38476239366792,1.32019065033419,1.37728155212661,1.90651207999511,2.35253171841062,2.64308140285149,2.67448513108168,3.06891107262039,3.19827058592875,3.57160985327413,4.90417389682569,4.06580652330537,4.87148993533109,5.01979069274683,4.90608657924976,5.21910560524868,5.92416703058878,5.39227277626411,5.63024383296626,6.20974660230303,8.13963830179217,9.243184907598,9.71977088156914,11.0789106343863,15.1393398322398,17.893337486799,17.1181718152969,16.6431076955229,18.6591554412445,17.4180980896442,18.5047004243281,18.5989851326858,15.9680028716405,16.6299867788425,17.6831914400218,19.6650322276759,19.8184574070615,17.0369867669742 +Cambodia,6.37142865714286,6.42857134285714,6.60000008571429,7.28571437142857,7.82857128571429,8.68571428571429,9.14285714285714,9.62857134285714,10.6571424857143,9.78873232394366,7.18401157724163,9.6991142139418,5.05549441375077,7.02899155982033,5.88443893689773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.3372759204165,27.9143527226653,34.412056929166,35.0669571957259,34.434133886909,31.2042550258253,35.172424772285,36.5403171626881,39.8400051702345,42.8402848253766,46.5824691827092,53.3783324803924,62.9304616183262,72.7459570667154,86.3923584218075,103.519140931723,104.018518506108,112.422751989783,128.295411410127,140.544432134639,152.279913952201,167.026108424025,180.499542894229,200.167477540192,221.772005115811,245.717535834922,270.89389786979,258.085615509514 +Cameroon,6.14206071002235,6.52777613643638,6.94247725537204,7.18320701389784,7.76650126190072,8.14083378458171,8.51112662733069,9.36175404642829,10.4619119244383,11.0055137855506,11.5121714698569,12.3694120095222,14.9825205017228,19.0139321600149,21.5741524573471,28.5703737105886,28.9808992908573,33.9466384442834,46.6285175659046,59.1900420690706,66.745676250807,66.1093747320425,66.1125501823915,68.7020065894097,73.1193745741855,85.4480979426305,118.570563360312,130.496583311317,122.360581430406,110.125661605043,123.144820850878,118.401926741246,120.717753806503,161.818135124483,89.024461880456,108.647730368363,110.93539497029,107.894579150457,112.981445116364,115.658273856884,105.665789527857,109.534852444239,124.172518158801,159.703157510277,188.26215278057,195.098508372745,209.105139746215,239.282513337444,277.151445802691,279.329716834215,275.07499709071,306.309121847789,301.550645740734,337.286228190912,363.865469176861,322.102329116626,338.143379002831,360.985501415897,399.738390646084,396.709773327348,408.044497260184 +Canada,404.617216926468,409.349520639468,422.274476319159,450.299885612124,493.77522896703,545.151795807148,610.883840366515,656.686555011254,718.298105198955,791.484116616902,878.960953201263,992.719617746088,1130.82820486918,1313.21858814119,1604.08697341513,1738.34029689343,2065.75564908722,2116.12157028679,2186.32867537477,2430.72102612259,2738.53826548067,3062.1486362499,3135.06525087136,3405.47711781889,3553.72558103621,3647.56499450751,3774.37927311983,4313.16742081448,5073.54351182254,5650.55743243243,5939.29550908468,6103.28183643188,5923.87689252916,5771.70761956438,5781.3927943761,6040.31623433401,6285.46387972131,6549.86999855554,6340,6784.12196271118,7447.73415931587,7389.81792355372,7606.49334098005,8955.40646634787,10266.9023827825,11731.0859877868,13192.6480959097,14688.2040778326,15529.8969072165,13746.2514215729,16173.4336748626,17933.2663017452,18283.664815216,18465.9742183498,18057.4987843994,15565.0881621714,15279.9474190743,16492.6564424409,17253.2919278302,17420.1504548231,16454.2340756836 +Cayman Islands,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.004394575783,44.664388575543,45.8611412456498,42.8186871474859,41.5699075963038,41.8622380895236,42.9115900636025,44.0595463818553,45.6301788071523,47.0833673346934,49.094989799592,51.6646729869195,55.226255850234,59.3576935077403,55.916236649466 +Central African Republic,1.12155598949571,1.23134584467673,1.24482748937917,1.29379097888958,1.42025069461676,1.50574816300764,1.57930041875883,1.63820538867947,1.91767436956884,1.88039191323608,1.89106554521277,2.01450768367553,2.30317908038643,2.71183061359635,2.81398668160613,3.78660016265936,4.51152449984411,5.0729812068315,6.10578523761178,7.00764892704831,7.97048028773247,6.94803502722356,7.48312283726758,6.58679394907969,6.37820620670195,8.64849765059664,11.2226502638274,12.0099182595398,12.6489936820165,12.3393027704922,14.4071139567069,13.7737503052921,14.1191755845855,12.7878116672188,8.51174350649409,11.1538973179119,10.0779118620106,9.37741468029676,9.67338348658314,9.99477510686632,9.14500299097034,9.31833302752857,9.9138787012463,11.3975479916304,12.7008025065268,13.3736239215225,14.605612154447,16.9756594865323,19.8524098618508,20.5909404826019,21.4259137585053,24.3798283963072,25.1012669905356,16.9154419238242,18.9481350452945,16.9582570845604,18.2501819085071,20.7234979423301,22.2097897817342,22.2030736869593,23.8008775804137 +Chad,3.13582729426485,3.3397533883416,3.57635713876922,3.71767002655998,3.92247517602016,4.16926302963509,4.32794922459835,4.49826322995072,4.53980096654503,4.71635620924431,4.69266736605177,5.01866730722561,5.85427545723712,6.47199482828061,6.52532796066703,8.64602103303151,8.66044961048205,9.35360466351397,11.1392012261212,10.0431649511165,10.3300240182546,8.76937559725038,8.34369860427292,8.32415805956327,9.19103735322921,10.3306970999507,10.6782824723577,11.6342685065015,14.8259729888718,14.3368630983642,17.3860555805432,18.7713804164308,18.8184767680752,14.6325105540068,11.7983795472193,14.4591996989272,16.0734545004578,15.4468950282472,17.44794457276,15.346735832487,13.8850672662093,17.1084336064955,19.9700578654118,27.4281519454993,44.2285592921428,66.4930705703314,74.2870180940597,86.5013806863161,103.93834720852,92.9072877335723,106.681027348132,121.723095226171,123.673636776199,129.535354958781,139.407680656063,109.503922199104,100.977783537651,100.003952421457,112.391670484916,113.149513427807,108.29076801729 +Chile,41.1,46.0972727272727,54.1627272727273,56.681875,59.8234782608696,60.2659375,70.7264102564103,70.1319607843137,71.6708695652174,83.7709302325581,91.2630973451328,108.841147540984,118.538173076923,168.362611731844,162.104041835358,76.2221735234216,103.419252490421,139.628934215413,159.899337081491,218.036969852349,290.367098717949,345.098780435897,253.25893205657,203.559592372128,196.225274796913,177.028853935099,188.910488187425,222.554076846999,260.402297930697,298.856851429107,331.138878179731,378.347937303133,459.643275588836,492.977731301185,570.084252958256,734.470633193034,780.395722216024,849.523609224958,815.774301814602,751.737944970494,778.609321519302,709.799239603422,697.368114351319,756.434598395605,992.103928576283,1229.64812046139,1547.88024805865,1736.05968179267,1796.38496278497,1723.8949844468,2185.37551220123,2522.51992029518,2671.22320056772,2783.843326943,2605.41637327855,2439.19079437422,2504.40149690846,2770.34675515684,2975.71693064193,2793.85487344492,2529.40023046007 +China,597.164676253148,500.568689576732,472.093590056057,507.067999025104,597.083434885043,704.362661467219,767.202859696157,728.816313266715,708.465350556503,797.059062474612,926.029734340726,998.009586481436,1136.87586299051,1385.44284708957,1441.82133387722,1634.31551779761,1539.40455341506,1749.38098826569,1495.40752829268,1782.80594413043,1911.49211575,1958.6638243254,2050.89699858779,2306.86747153257,2599.46510957143,3094.88028132653,3007.58100107246,2729.72974764574,3123.53631207819,3477.68051311741,3608.57912565966,3833.73318083624,4269.15712715856,4447.31282435515,5643.24670008238,7345.47898224101,8637.46717507397,9616.03952954233,10290.4309755891,10939.972672771,12113.4686960041,13393.9571886289,14705.5001507793,16602.8796566389,19553.4700496569,22859.658923642,27521.3177335892,35503.4273700953,45943.0703266798,51017.0307308897,60871.6387451073,75515.0012419717,85322.2998699365,95704.0623565964,104756.829205977,110615.530798715,112332.765367447,123104.093708942,138948.175493803,142799.37467431,147227.306978901 +Colombia,40.3115297663904,45.4044776119403,49.5554396336869,48.3616666666667,59.7336666666667,57.607619047619,54.2851851851852,58.2517043848704,59.6021286912968,64.5017521374923,71.9836046019887,78.2038097053674,86.7135873268486,103.157600003394,123.700295836419,130.986339018673,153.414036604698,194.709606191297,232.635119580509,279.404112502732,334.007356440481,363.883668690309,389.68039721748,387.298227815997,382.531207379671,348.94411351983,349.424896839712,363.733070850887,392.125500504223,395.400802003938,478.440907099908,491.755659110655,584.189854433172,664.468048025747,817.035008460364,925.072793830387,971.601092778087,1066.59508271255,984.437399411664,861.861586847685,998.865773307271,982.117495955442,979.630038047851,946.41378693223,1170.81522349677,1456.19191582062,1616.18581266316,2061.81826825281,2421.86950900775,2323.97835678336,2865.63105192457,3349.43871931746,3709.21320483842,3821.16126448555,3811.12119657446,2934.81748240779,2828.25009887458,3118.83730690129,3341.98214706209,3234.29888934257,2714.37596293843 +Comoros,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12218226429847,1.96349967670007,1.84008995643686,1.91621958375365,1.84697209997414,1.96726077061972,2.79197696814639,3.37525870616968,3.56500026691673,3.41476764044268,4.29622147743446,4.24108796562976,4.57388578924144,4.52881443084162,3.19189200353123,3.98461789558686,3.96053797633321,3.64445589702365,3.70106776043329,3.82454989945311,3.51136568441921,3.78512003405071,4.25964697418664,5.46885184990174,6.3370614925026,6.53845122872074,6.98431827740958,7.95673128485442,9.15659192825112,9.05341090570115,9.07978723547592,10.2308618379822,10.1584336879008,11.1622416107781,11.4958765169395,9.66029542038859,10.1283551826037,10.774396625798,11.8879757494753,11.9255973937288,12.354003522931 +Democratic Republic of the Congo,33.5940411764706,30.8674685714286,37.7984142857143,62.1318574257426,28.8154527272727,40.4390181818182,45.3266018181818,33.8406337175792,39.0978053892216,50.3243497005988,48.7768491017964,55.9477035928144,61.7371281437126,78.7023946107784,95.9696017964072,102.373431736527,96.4858322499212,123.444247635727,153.726080023923,150.684222363663,143.949274948647,125.378210382202,136.516673711676,110.067126504481,78.5772919320343,71.950426160071,80.9536716821769,76.6162547257705,88.6129997674158,90.2186277525978,93.4976458036998,96.3391136801541,82.2720089244213,107.062463709325,58.4052941176471,56.4703418803419,57.7202052610602,60.9106129130501,62.1571671229467,47.1125942727273,190.880463057971,74.3818910033333,87.2803852514034,89.3756705987754,102.97483481223,119.644846679102,144.519024679315,167.3707181638,197.885158738942,186.483733124241,215.657200444634,258.397491988233,293.062358263885,326.797452976453,359.090402659328,379.177049000794,371.347999745225,380.192656258845,471.460045866824,504.00747050496,487.169608600664 +Republic of the Congo,1.31731862568975,1.51675739160603,1.6652123986331,1.72233430871484,1.85693724845363,1.98318063860841,2.20613582369866,2.37397428336411,2.51247458012139,2.65040036059152,2.74960699858595,3.22128019323599,4.10669262898009,5.41973362481063,5.85364635354804,7.6710267901869,7.54549600548052,7.65224030636477,8.78771771290883,11.9874966595053,17.0579684954659,19.9351232592306,21.6064056653953,20.9727428961527,21.9358136640726,21.608725414189,18.4926821468181,22.9775364927962,22.1253631333476,23.8959302194868,27.9874605058228,27.2485359273382,29.3322271411506,26.8432342406801,17.6936542504053,21.1600397797529,25.4069768805698,23.2271899126458,19.4948129660762,23.5390956394122,32.2792759304316,27.967045773082,30.3425104207329,35.0372324483607,46.5697522272243,66.4735744208986,80.6513452826894,87.7110202500987,116.028930430256,96.8432163321977,131.355806952473,156.348972727645,176.939245732499,179.536179272376,178.890799578792,118.854785021168,102.159899950073,110.901777471315,136.700369959959,127.503390229512,101.871223414051 +Costa Rica,5.07513829994855,4.90325181614275,4.79180824348506,5.11902136809973,5.42578367242598,5.92981162264151,6.47305630188679,6.99456618867925,7.73841494339623,8.53630203773585,9.84830158490566,10.7715290229104,12.3825169555388,15.2891618523199,16.6654475409836,19.608634655776,24.1255542590432,30.7242701283547,35.2320880980163,40.3551932322054,48.3144700116686,26.238070742948,26.0662125501581,31.4677010381027,36.604764588718,39.1920396039604,44.1898387096774,45.3295204715628,46.1462989840348,52.5102576747627,57.1168778675989,71.9627609246876,85.6404401695735,95.8286626346284,104.867848047265,115.785942600813,116.784245073634,126.146023823564,136.842559466922,142.548662810572,150.136296585671,159.761743370471,165.788206872209,172.71760507042,186.105948463082,200.406424768988,227.155403243149,268.847003451044,308.017448810236,307.457120065238,376.586148032919,427.626170816142,472.316518628224,509.496722058222,520.164089508398,564.419176530156,588.470160448244,605.160435901924,624.201650997301,640.72870931603,618.468951207808 +Ivory Coast,5.46203561571989,6.18245639221382,6.45284344684118,7.61047045830402,9.21063266445521,9.19771356426097,10.2410303429198,10.8292289215202,12.8128124567032,13.6136015726999,14.5548299024143,15.8412826208933,18.4940059977558,25.084212348557,30.7015190106383,38.9383919026806,46.620537077763,62.6506785786534,79.005248978644,91.4293585794766,101.756154418127,84.3258848385263,75.6710976661129,68.3818541853642,68.416387145454,69.7765006933578,91.5830220536237,100.876531893287,102.55170459986,97.574106140812,107.958501069547,104.926289154927,111.52971316074,110.457594689412,83.1355745025213,110.00146839497,180.711538904491,180.47557171794,196.196539243364,188.70992455706,165.775333553742,168.105368837566,180.543840231198,212.517552940258,235.105771081881,240.369170165323,252.814144728976,287.600920345396,340.782434260168,338.868149070536,349.363052968834,366.937128247812,363.02305578306,427.602375613995,488.430085803616,458.146379714745,479.642345600514,515.881587175348,580.114664508643,585.394249297248,613.485794651017 +Croatia,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227.170819247143,240.751662613779,240.911707025562,257.928766435087,236.773075094663,218.397809710268,232.736402571968,270.745502578118,349.857498834171,419.588335410995,457.802372571867,508.607882532176,605.426735025324,707.506462480563,630.840047050807,604.260186292992,631.699108221285,571.92346923335,588.89082315336,583.302897566914,501.631928831515,522.951583442544,562.144274312,622.478749488225,622.462063405469,572.037832030259 +Cuba,0,0,0,0,0,0,0,0,0,0,56.930052,69.146584,81.3515089192025,99.8770965018094,114.059573170732,130.274152439024,137.895799025579,142.061586746988,178.447053246753,195.844432876712,199.128898611111,201.502540963855,209.535102352941,222.049405122235,240.393836084235,229.20490774102,242.265746340293,252.139350120819,274.589994722955,270.234686658977,286.454365691489,243.165560256585,220.858582432432,223.672548648649,284.483267567568,304.298036512192,250.173687,253.659081,257.363312,283.646152,305.654,316.824,335.905,359.012,382.03,426.438361,527.428,586.039,608.063,620.8,643.28,689.9,731.41,771.48,806.56,871.33,913.7,968.51,1000.5,1034.28,1073.52 +Cyprus,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.89914760682807,5.76090073715036,7.34887973975806,9.64026512197839,12.8871520958084,21.5431127694859,20.8749637377964,21.5924241676942,21.6036407119021,22.7824895314058,24.3041190019194,30.9073446327684,37.0481388550548,42.7879259723965,45.634826035503,55.9113021766965,57.7019734848485,69.1215045632334,65.9029104829211,74.2570392857143,99.3313324708926,100.119184441656,95.4781870011403,102.486176470588,104.979083063646,99.8584448633365,103.978970856102,114.202278846154,145.473250283126,173.205525,184.334112672553,200.727863505206,239.687640295647,278.446989893072,259.453917754932,257.324327190773,275.654690979955,249.785134266992,239.008726258467,231.568500066427,198.424043048929,209.534425503653,228.708337098961,255.226712328767,257.583577745438,246.126464877213 +Czech Republic,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407.289507046176,298.599211588696,348.05013229572,408.667487051075,478.502038561751,601.471740768651,673.877886329812,621.801593761239,668.07429711411,651.731309952212,618.281664960941,678.080329795429,821.960010507474,1000.90467581268,1198.14434353575,1371.43471328274,1562.64095664643,1901.83800884018,2368.16485762988,2074.3429680533,2090.69940963177,2295.62733398948,2088.57719320649,2116.85616592931,2093.58834156329,1880.33050459881,1962.72068576338,2186.28940951675,2489.50103352137,2524.98032247163,2453.39322066759 +Denmark,0,0,0,0,0,0,119.317398587046,130.590643746287,135.055738666667,154.149022666667,170.754576,190.857312524407,232.323799519376,307.306266633606,341.604447981099,404.744062162821,445.758924731183,497.843385194563,603.629318536249,703.662419692074,711.275286999414,618.778139652413,604.12844678604,606.447821760525,591.052368537937,626.585682873429,880.787601038191,1094.14423928775,1155.52846616653,1124.09222182704,1382.47285815855,1392.24688814195,1529.15654478885,1431.95627014605,1561.62386724523,1850.06881515065,1876.32346387984,1735.37647058824,1769.91934992837,1779.65188354692,1641.58739097623,1647.91442543375,1786.35163717431,2180.96033517009,2513.73002954382,2644.6733645717,2828.84947702966,3194.23424509066,3533.61038818383,3212.41303699006,3219.95279401502,3440.03137611271,3271.48943812137,3435.84391647927,3529.93631617708,3026.73070846857,3131.15929314339,3321.21063806391,3568.41216410068,3475.61349210979,3560.84867685639 +Djibouti,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.40989527967995,0,3.73371738286415,3.95794538630775,4.09220087102818,4.52328087282876,4.62421998525779,4.78058304871118,4.6604846922986,4.91689220744875,4.97723960589913,4.9400464773437,5.02675542001227,5.14267869300758,5.36080148097299,5.51230861856505,5.72417440820162,5.91122039601398,6.22044665515049,6.66072101777505,7.08633194726566,7.68873684032838,8.47918929107984,9.99105339267729,10.4911068472493,11.286117003618,12.3914450177525,13.536329415207,20.4281716285639,22.1467908125658,24.302742922896,26.0354025691955,27.5144557368009,30.1280345710411,33.2461554909099,33.8438521671609 +Dominican Republic,6.723997,6.541002,8.241,9.407999,10.255999,8.881,9.839,10.348,10.791,12.305,14.855,16.665,19.874,23.448,29.257,35.992,39.515,45.871,47.344,54.988,67.613,75.613,82.674,92.206,115.94,50.4459294480499,61.2219812002892,58.2698709945901,53.7431492842536,66.8659305993691,70.7367554480847,98.2449818303263,116.05382504,130.810424,146.447113848202,166.373708391608,182.416918573544,200.17480054834,216.722317606491,221.366213370889,243.057175416371,256.017654005153,271.375086568522,214.031678481444,223.223953680274,357.775701355225,378.798698978979,439.654200724107,481.225471771881,482.610332982133,538.601755559961,580.297507456495,606.815371957996,626.82163837347,671.799140269623,711.648252566849,757.047201895607,799.979756218654,855.553780428196,889.412997335018,788.447023290785 +Ecuador,20.6946532641882,17.5385041670826,15.1820822123052,18.2434449207169,22.4414686790195,23.8704825545173,24.2930951380854,25.5359609182258,25.821807941855,31.121668483004,28.6250416999893,27.5422026302528,31.8598723484089,38.9175555194138,65.9925942099605,77.3167725680982,90.9192430483477,110.263465895011,119.225021706405,141.751660075774,178.815146828784,218.107672093695,199.298535746095,171.524832143536,169.125151832783,171.490945899827,153.141439880621,139.454318822271,130.518865523377,138.908287076493,152.392781003502,169.885352676338,180.942381190595,189.387173586793,227.086733366683,244.328844422211,252.263931965983,281.620530265133,279.818969484742,196.452726363182,183.277648824412,244.68324,285.48945,324.32858,365.91661,415.07085,468.02044,510.07777,617.62635,625.19686,695.55367,792.76664,879.24544,951.29659,1017.26331,992.90381,999.37696,1042.95862,1075.62008,1081.08009,988.0801 +Egypt,0,0,0,0,0,49.4866754041066,52.7800561191453,56.0548429898275,59.3224299065421,65.2445520581114,80.422004521477,86.0928334608518,92.9963805584281,100.985346134411,92.2896322460004,116.321788689171,133.159880834161,144.008068759867,148.117040630685,180.205714285714,216.699081770664,221.360810810811,276.551724137931,309.662398137369,339.711889916147,390.535022510732,412.535079513564,404.556166535742,349.801249290176,397.562990499793,429.789143113504,373.878364905284,418.559865194235,465.78631452581,518.979833926453,601.592450604541,676.297169811321,784.365781710914,848.288075560803,907.107048068416,998.385439600763,966.846361185984,851.460674157303,802.884615384615,787.824675324675,896.006655574043,1074.26086956522,1304.37828371278,1628.18181818182,1891.47005444646,2189.83666061706,2359.89672977625,2791.16666666667,2884.34108527132,3055.95408895265,3293.66576819407,3324.41717791411,2357.33695652174,2497.12999437254,3030.80865603645,3652.52651278852 +El Salvador,0,0,0,0,0,8.7772,9.2952,9.762,10.097601,10.494,11.3292,11.8612,12.6372,14.4232,16.6588,18.841201,23.282801,29.416401,31.2796,34.636399,35.739599,34.372002,33.991891,35.063478,36.616834,38.003686,37.716632,39.580458,41.8988,43.722153,48.1754220402673,52.523424,58.133993,66.802692,76.79384,89.219471,95.863278,102.217059,109.366699,112.84197,117.849277,122.825336,126.641903,132.438922,137.248109,146.98,159.9989,170.1175,179.8689,176.0162,184.4792,202.8378,213.8615,219.9096,225.9347,234.3824,241.9143,249.7919,260.2085,268.9666,246.3872 +Equatorial Guinea,0,0,0.0912275145318345,0.108400951283649,0.127124713960211,0.647483333333333,0.6911,0.723174469327193,0.675142857142857,0.672257142857143,0.663314285714286,0.64946954756798,0.65429198238708,0.812032269138345,0.941598627073691,1.04295643388437,1.0365304993797,1.03987520075827,0,0,0.506428807737503,0.367314228456914,0.44294647733479,0.4444245694764,0.503209144065688,0.621185648495425,0.764073967552964,0.933458477270322,1.00534663294927,0.882659745843603,1.12119406548331,1.10906032075075,1.34707184355541,1.36047896155778,1.00807001813926,1.41853368256815,2.32463036435759,4.42337849474377,3.70687618717326,6.21117885668503,10.4599849643872,14.6113902202954,18.0674274227311,24.8474593509329,44.1076433866733,82.1736909265224,100.865286988604,130.717187587373,197.498935363204,150.277951732187,163.144434289408,213.573436818966,223.883441239916,219.488342903538,217.654530874795,131.854968814055,112.408088466928,122.009138876419,130.970121893995,114.172780449859,100.218567544944 +Eritrea,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.77101651648376,4.67872714755603,5.31688311688312,5.78015625,6.93535954190067,6.86490090140141,7.4552615493283,6.88921325712043,7.06370815584416,7.52368495512622,7.29321366651861,8.70247703182758,11.0905400543971,10.9842590074116,12.111618796748,13.1797449105691,13.801888,18.5669555121951,15.8951544715447,20.6500162601626,0,0,0,0,0,0,0,0,0 +Estonia,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.0297088906373,47.8601898816491,51.5442064923354,56.7408054288575,57.5691226575809,56.8657974753524,62.5464953898487,73.6797588772723,98.7401309846432,121.459118012422,141.067902002239,170.228704052189,224.49129482617,243.416786289732,196.330313976104,195.234773256235,231.836160455168,230.204667846112,251.086150919884,265.986578805486,228.815581918523,240.56487770898,268.57880621935,304.746120574484,310.455917534901,306.502854717215 +Eswatini,0.350761584768305,0.430251994960101,0.459270614587708,0.541283774324513,0.649792804143917,0.702785944281114,0.768584628307434,0.747585048299034,0.797984040319194,1.05417891642167,1.12137757244855,1.36465324384787,1.4674125146351,2.21902017291066,2.64311994113319,2.88302907369844,2.72539098436063,3.04047838086477,3.40616375344986,4.12093133760988,5.42000513610683,5.70761166818596,5.37575980843618,5.55336145767884,4.94475699857656,3.60075380266523,4.49146608315098,5.84135559921414,6.92016714317132,6.96915430663057,11.147030881614,11.5614199833412,12.847662342216,13.5720699574624,14.1929345499606,16.9898243776019,16.0276010048147,17.1669991319444,15.769042924588,15.4788444226205,17.3810085305052,15.4247730889408,14.3222812526682,21.9761270109852,27.7008279150412,31.7812649190949,32.9135383593,34.6936399636642,32.9409348520796,35.8041706692472,44.3877842430203,48.204999242539,48.8653303288672,45.9753202970451,44.2296833967584,40.6324567129285,38.1602204682656,44.0296922592165,46.6542023851784,44.9567948096886,39.7272894847088 +Ethiopia,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73.249031884058,77.0767801932367,85.6789082125604,80.9630236714976,94.8084048309179,98.4860086956522,105.27338647343,109.089357487923,114.765848792271,121.75166763285,134.638683574879,104.929930776093,88.3071271390781,69.2795056455657,76.6398456790123,85.4793973062374,85.8921139049612,78.1822490555071,77.0083348200615,82.4239210368061,82.3132601647494,78.5080949816803,86.2369130004079,101.311872614421,124.011394539738,152.808618346024,197.076167727996,270.669126352228,324.37389116038,299.337903343418,319.5276308933,433.107214140829,476.482111332183,556.122282335179,645.893349788013,742.966184810882,817.70791970982,842.693483273454,959.125906281412,1076.45054311876 +Faroe Islands,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.078826408787,11.2028038186979,10.587027254395,11.4765463545922,12.626698924595,14.9401156701125,16.8823755236935,17.2779269289133,19.8444541602206,22.9013354887301,24.3241599811695,22.6838777071014,23.2042460126954,24.9080783057351,23.6630125161847,26.2704983708135,28.507438752784,25.1809628561661,27.3883268713698,28.9922609762377,30.513413359516,31.2629321977989,0 +Fiji,1.12328422113084,1.16987784913739,1.22906434957814,1.29454728623599,1.40032741468329,1.47084750031482,1.50603925515853,1.62625885863484,1.66952937135005,1.82182067703568,2.19878482173564,2.47749327721267,3.16650508967523,4.25963359355326,5.58589870903674,6.84268280812751,6.94552411718837,7.19533137126662,8.29239489844119,10.1974392724662,12.025673594132,12.3566580856541,11.9412269412269,11.2310727630285,11.7799741363384,11.4112343966713,12.9022861682408,11.7790819197685,11.0997692791722,11.8268657722645,13.3702478222702,13.838438601247,15.3240186294079,16.3607471786224,18.2576326753637,19.7034772096992,21.2869664362574,20.9018494146983,16.5316086168714,19.3648456539399,16.7823921826553,16.5246420100149,18.3327998536741,23.0045363434962,27.0807847663012,29.8048492016558,30.7630545286506,33.7831459976402,35.2318591955826,28.7062463568032,31.405088359485,37.7453061565916,39.7201257053467,41.9014320625611,48.5696322983999,46.8254686308162,49.3020422972263,53.5340442208138,55.8137184761641,54.9626476637285,45.3388378227458 +Finland,52.2410219552771,59.2165948503284,63.4058085439073,68.8592032866187,77.6665508578588,85.8934001902985,92.0852450487684,93.689540103132,88.2303388032993,100.707667205011,113.575169875425,125.274055129298,147.431861198738,194.723634666252,248.488214904679,294.726232422822,318.495137713494,334.997993212336,362.561602888087,444.652556861548,536.452024226968,524.4833287407,527.975823362526,509.735269000854,528.888009497428,558.758633921719,735.31550551255,915.947517922359,1090.58990760483,1190.12054870445,1414.38345513917,1277.73856785767,1125.32519246084,892.141147080254,1032.99943084804,1341.89814814815,1321.2917421693,1269.12152101707,1340.38718291055,1352.18410398466,1257.06651925557,1294.21029082774,1397.38377564465,1712.74266365688,1971.16960516514,2048.09103345355,2169.07539831891,2560.52559540104,2845.53976856599,2524.96526813004,2491.81190476369,2752.43697751011,2583.04834621605,2712.85280621373,2744.97230802958,2344.40080998273,2406.07907010383,2550.16517537983,2755.80448365235,2685.0820012549,2695.94831987549 +France,622.254780008822,674.616442220352,756.075298099288,847.591951058693,940.078510473678,1015.37248148427,1100.45852177928,1189.72977486207,1297.85441507456,1419.03068680309,1484.56359985827,1659.66615366402,2034.94148244473,2644.2987625221,2855.52373158756,3608.32186018051,3723.19038514067,4102.79486493715,5067.07848837209,6139.5312981807,7012.88419745421,6155.52202776101,5848.77732308614,5598.6917979172,5306.83779929445,5531.38414367061,7714.70783218108,9341.73305685911,10188.4704327717,10252.1180341353,12691.7961691363,12692.7682827578,14014.6592317224,13228.15612694,13939.8275047259,16010.9475620975,16056.7508654956,14528.8491795909,15031.0873915944,14926.4756019604,13622.4894048277,13764.6532438479,14942.8665537361,18404.8081264108,21157.4248820462,21961.2610371844,23185.9365198846,26572.1324938407,29183.8289146038,26902.2228396777,26426.0954893036,28614.081702646,26838.2522509263,28110.7772570359,28521.6576063027,24382.0789625184,24712.8560708172,25887.4090163981,27895.9397906458,27288.7024670588,26303.1773145526 +Gabon,1.41468978376811,1.67637908489803,1.82796536499917,1.54480244246828,2.15679855272553,2.26474285587116,2.45849781715943,2.71543680279265,2.94468564534311,3.18124701048993,3.23802475481029,3.81687073058602,4.30508357724,7.22780701123338,15.4421600398425,21.5759293660731,30.0940997090463,28.0934907417711,23.8947926918832,30.3025111635966,42.7963793385136,38.6226912692681,36.1800784444908,33.9127573131859,35.6145156223576,33.3991475937275,34.0363819357905,32.8179703866566,38.3450337835497,41.8641145745694,59.5229376584468,54.0291995693831,55.9239084852647,43.7864508101769,41.9081931402958,49.5884590634769,56.9404033682571,53.2681685899586,44.8341711983928,46.629920362073,50.8048346399928,50.2326536525169,53.3545130754323,65.1190365744009,77.7021947972648,95.827833183881,103.275988006713,124.554100557483,155.713497757848,121.136996606799,143.725919164792,182.103087482912,171.704652940332,175.957456533676,182.039680018908,143.831077140388,140.238906203384,149.294887707315,168.673251265423,168.744058397948,153.168261915682 +Gambia,0,0,0,0,0,0,0.442123536988296,0.466953631558873,0.411606585705371,0.451687226995632,0.52296836749388,0.55728608974983,0.591615449957528,0.75187969924812,0.957975334619206,1.15182522123894,1.12189468481826,1.38094243349324,1.71836793402695,2.07114382546071,2.4108070889018,2.18764445784343,2.16051495959817,2.1344656257106,1.7733880193075,2.25724851691107,1.85646209386282,2.20626484224811,2.66673126229801,2.8411969249433,3.17083373524559,6.90314321374999,7.14255460503389,7.55042548055824,7.46491692583857,7.85996982492168,8.4823710856163,8.0363074253446,8.40285264631545,8.1472346008372,7.82915402421095,6.87408804630527,5.78236035104279,4.87038821611959,9.61900106892751,10.2770225438664,10.5411342670947,12.7970474482781,15.617634370325,14.5014038597229,15.4329239254605,14.0969455390934,14.1500623809509,13.7560895610386,12.2946060192174,13.7817686831568,14.8457984437143,15.0490975328746,16.706706685939,18.1252910461923,18.68086274822 +Georgia,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77.5354078362452,0,0,26.8801639344262,25.1407077180273,26.9376841289179,30.950476038083,35.1052023121387,36.13541516765,28.0004939491232,30.5747533518846,32.1948866377231,33.9572801384524,39.9128489537214,51.2536519198664,64.1082363325426,77.4539429341721,101.728823705477,127.950764690099,107.668362765639,122.435055826741,151.074414467833,164.884030763641,171.895515209811,176.270034547205,149.539505574406,151.417585667808,162.429169157203,175.99700090762,174.772555622583,158.464896108073 +Germany,0,0,0,0,0,0,0,0,0,0,2158.38448137658,2499.85055484303,2998.01542047476,3983.74021953897,4453.03484241554,4906.36517211225,5197.54453161411,6004.98238019035,7404.69983446933,8813.45176608686,9502.90856466538,8004.72055387278,7765.76439106956,7706.84323247798,7251.11123634115,7325.34887058198,10462.5937494371,12981.7610554951,14012.3322530349,13989.6743680433,17716.7120687568,18689.4519740719,21315.7169693175,20713.2379037028,22050.7412317705,25857.9227514672,24972.4460618664,22119.8962327995,22389.9077470268,21942.0413381632,19431.4538419016,19441.0738255034,20686.2412949369,24961.2866817156,28091.8798112739,28458.0276085064,29921.9671308493,34212.2912674514,37300.2783067233,33977.910530703,33963.5407566373,37444.0860268394,35273.4494413983,37327.4344621892,38839.2015529226,33562.3570411975,34674.9800210433,36817.325837685,39753.4723744299,38883.2678862744,38464.1392865371 +Ghana,12.1723003826781,13.0267426419915,13.8251559006942,15.4079751679469,17.3129611887113,20.5346287238275,21.2630057317668,17.4718753920717,16.66910166289,19.6205131926134,22.150294503805,24.1710770825317,21.1229294464142,24.6549295774648,28.944099378882,28.1010638297872,27.6525423728814,31.8942857142857,36.6247818499127,40.2022792022792,44.4522821576763,42.2244161497432,40.359943977591,40.5727504282903,44.1227984344423,45.0434214943471,57.2760264471472,50.7482993197279,51.9784097913416,52.5176426426802,58.89174825487,65.9654619565217,64.1390160183066,59.6625577812018,54.4456066945607,64.651376146789,69.3498470948012,68.9130859375,74.8096885813149,77.1935483870968,49.8302440814828,53.1490995392992,61.663301362948,76.3240655283803,88.8136853807671,107.446752098984,204.408930171566,248.278449496033,286.787018910957,260.481081850534,321.972727972028,393.373148099434,412.709547372459,628.230437064702,547.828477525375,494.065684326711,561.651728988695,604.063828985174,672.99280679563,683.375378157703,685.322818056722 +Gibraltar,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Greece,43.3518601683942,49.6140043931722,52.1304771142704,58.9527802409202,66.696732571183,76.8915405335866,85.9151794360129,92.7560080035644,100.906759025364,116.156570312387,131.398636363636,145.9175,168.855113636364,223.478481012658,253.513068181818,285.258767268863,311.528358208955,361.762349676226,442.702040816327,544.81876724931,568.296642685851,523.465067650676,546.179897959184,494.288738390093,480.200241837969,478.208512213175,563.795934761441,656.527503774535,762.612779245736,791.690432228284,978.910920034394,1051.43232379884,1162.24672863783,1088.09059155767,1166.01801966292,1368.78365936167,1458.61612400906,1431.57600149757,1444.28172489335,1425.40728744939,1301.3384558688,1361.91353914989,1538.30946734425,2019.24269751693,2405.21261484976,2477.83002114165,2733.17736795885,3184.97937311799,3544.60802695181,3300.00251458739,2968.35346570223,2826.25610892477,2420.43151399458,2388.39788899338,2351.44949470797,1956.04846736019,1930.170306497,1993.50781053185,2119.45897765431,2051.44152830847,1888.3520162591 +Greenland,0,0,0,0,0,0,0,0,0,0,0.695200266666667,0.885709528688525,1.0610117565798,1.40153748243656,1.69918948629182,2.11194305702999,2.4078041356493,2.82269373001066,3.55989047256374,4.20642463409998,4.76055288418886,4.35746974759244,4.02405069367769,4.16183706943685,3.79371608442925,4.12876071118493,6.03015696452849,7.87392365831908,8.98611007947709,9.29796722387896,10.1897036486443,10.164933948253,10.379218369477,9.27219728866886,10.0587994843254,12.0894616592889,11.9750978667632,10.7214777803013,11.4986270296084,11.3156159513775,10.6803082975591,10.8617292257413,11.6913878931435,15.5875343443083,18.2248668858807,18.4980573296203,20.1309948207439,22.4981170894796,24.9910751064122,25.2994832957153,25.0315606052524,26.8446737571479,26.0966767371601,26.8495272688425,28.4204899777283,24.9911562300272,27.0714678313056,28.5161065592391,30.4041427802236,29.8224727861577,0 +Guatemala,10.435999,10.766999,11.436,12.628,12.990999,13.313999,13.907,14.535,16.105,17.153999,19.04,19.848,21.013,25.692001,31.614999,36.459,43.653002,54.805002,60.706002,69.026002,78.787,86.075003,87.169997,90.500004,94.700001,97.2165208695652,72.3196351598174,70.8439984,78.4160282442748,84.1072436079545,76.5012521735253,94.0609773509117,104.408421653193,113.999424530646,129.832355682292,146.554044332771,156.748356153139,177.900262216139,193.954919929939,183.184122513642,192.888271589035,184.052038531036,204.44205991025,215.763517989145,235.772862266407,267.83543667064,297.443681109094,335.678683226252,385.038628306878,371.259435649873,406.764320285934,468.761146504996,495.939611417484,529.965407035943,578.523999637878,621.861865757433,660.537250490138,716.541343785299,732.085837589105,770.200152013201,776.046321705853 +Guinea,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.9518672074733,20.4153803957727,23.8429598238433,24.3202943382679,26.667506858495,30.1505813892561,32.8462054322982,32.7909660621358,33.830928275866,36.9371053291191,38.6896830191851,37.8370046164359,35.8837547676248,34.6128254312577,29.9536114063217,28.2943595651563,29.5019864895191,34.4644169800738,36.3545813265317,29.3707176725576,42.2001924274824,62.8191765590249,69.6417919384418,67.1690456876482,68.5346785761127,67.8513717277058,76.3804525442864,83.7661384327265,87.7847361454728,87.9420244367366,85.9595558121787,103.246682665921,118.570303365252,135.138092582131,156.810509171563 +Guinea-Bissau,0,0,0,0,0,0,0,0,0,0,0.787335948411852,0.785400571372471,0.877028285651641,0.893742372881356,0.987753289473684,1.08985740155434,1.12386489005677,1.14971207205384,1.22666858789625,1.18537875133044,1.10653830722704,1.5473196969697,1.65523634503718,1.63577538326314,1.38478900628609,1.43856253127248,1.30225018751151,1.73836362010677,1.64458120314176,2.13143016443316,2.43961995509785,2.57150374069711,2.26313443749086,2.36880821656388,2.35620043500927,2.53966922278198,2.70419779418107,2.68550998219197,2.06457544497703,2.24446663800548,3.71095510047761,3.92621385894576,4.1780666707798,4.77458598710737,5.32062927382438,5.87029054444652,5.9236568805204,6.96910810918663,8.68154708520179,8.30126469986608,8.49878424225986,10.9981865198114,9.89271229637162,10.4608741796916,10.5491564519654,10.4822962942039,11.7900494122904,13.501771275523,15.0463012099275,14.3963844338133,14.3175824290375 +Guyana,1.70215248206265,1.85848451262906,1.94948375430205,1.75756868692761,1.94773376888526,2.13235294117647,2.28705882352941,2.50176470588235,2.2975,2.493,2.678,2.8205,2.85380952380952,3.07047619047619,4.33954545454545,4.94791666666667,4.5444,4.4988,5.0708,5.3044,6.032,5.70357107142857,4.82,4.89333333333333,4.37631605263158,4.53488372093023,5.04651139534884,3.54591846938775,4.1379999,3.79779389705882,3.96582263291139,3.48533094812165,3.73573141486811,4.54101382488479,5.40874934201012,6.21626785915493,7.05406001424501,7.4913800956454,7.17530683169567,6.94754988258295,7.12667896727512,7.12167575624277,7.26131434715338,7.43064076794567,7.87814379183843,8.24880550343965,23.7981838299241,27.3097115001134,30.2518792358617,31.6566315273351,34.3291307324154,36.9138431752178,40.6308919187525,41.6780025920888,41.2765949202031,42.798401937046,44.8269733656174,47.4817433414044,47.8763623724043,51.7376019184652,54.7125659472422 +Haiti,2.731872,2.71066,2.818968,2.948834,3.252812,3.532518,3.689486,3.691242,3.679688,3.918204,3.312,3.628,3.72,4.668,5.654,6.814,8.79,9.47,9.742,10.806,13.838,14.794,14.742,16.236,18.162,20.094,23.18,20.472,26.139268,27.362438,30.962898,34.7354060182161,22.5712166819352,18.7824874104949,21.675641947342,28.1331327881082,29.0751452292503,33.3893883001743,37.2390922686781,41.5373634744223,68.1357755817628,63.3196155540914,60.5813446675258,48.2682757708641,60.3695991472398,71.840646572953,75.1810778651149,95.2276315381366,104.852253531801,115.970148073496,118.593150787902,130.087541108113,137.089264662732,149.02474090615,151.392646704225,148.331544717456,139.87693738923,150.355603726443,164.550343527671,147.858393829002,145.082180174032 +Honduras,3.3565,3.562,3.8775,4.102,4.57,5.0865,5.4995,5.981,6.468,6.6800005,7.23,7.31,8.0299995,9.1249995,10.345,11.24,13.4799995,16.6949995,30.9724209322441,35.4428197629198,39.6816004598684,40.4389487858005,42.6650352561051,44.7669718485981,49.1531184648827,52.781207125459,56.7782895890605,61.9052124146495,59.0271709154747,54.3234490177821,49.2300955151561,46.4866847856753,49.4370043107368,49.2672893295069,46.4228068214252,53.4744500521376,52.1502898648649,57.3709965019011,63.6634026587888,64.1452052961672,71.038269022067,75.6585472375973,77.7525150962716,81.402784009927,87.7216995931672,96.7202305030829,108.417249169457,122.755001157231,137.89443623162,144.86159608067,157.296491585883,175.880985747369,184.005388593598,183.721733807373,196.185672495003,208.339487995352,215.666228496057,229.754158424648,239.004385637271,249.155228491544,236.622316339139 +Hungary,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347.53569692915,387.305859222189,401.249169405945,431.666787352183,464.256777341435,466.587551516017,472.969529287561,487.067873062574,490.733801737159,472.184058924258,537.499890920197,676.089191443684,853.02003908042,1041.41042625791,1132.36711635539,1157.51266695185,1402.27560615121,1583.74419641016,1311.14229049178,1322.31134158608,1419.99960209893,1288.57370476631,1357.32595721853,1410.78984816675,1252.1032461314,1286.36108315474,1431.36245596988,1605.86833778457,1635.2649143329,1558.08436238487 +Iceland,2.48434096968726,2.53885656329253,2.84916516159537,3.40061650119898,4.34267936914583,5.23694949370689,6.28893310399926,6.21225962154708,4.74399471622359,4.1470931135296,5.26704545454545,6.70251136363636,8.3965216406073,11.5444025296794,15.1519059529765,14.0687508132726,16.6948838996542,22.0850907628099,25.11826196009,28.5343505388542,33.8141904285476,34.9299701004956,32.0662656357527,27.6595029545784,28.6444135585306,29.840523324588,39.896227149537,55.2031835293144,61.0663576974938,56.7256939647767,64.6873628692707,69.0973023731997,70.8098166854633,62.1858147247468,63.8946028559828,71.2363335636565,74.2608127819549,75.6966697365322,85.0369309862271,89.820475894895,90.2566036175842,82.3484680460582,93.1839505485934,114.293330378443,138.253025357699,168.529630670496,174.653185522941,216.525055967528,180.746229870185,131.54414219207,137.511619177398,152.216229259319,147.515081335443,161.250605153117,178.676621778911,175.172105190912,207.931680309524,247.282851774603,262.670637575495,248.577404450401,217.180757252054 +India,370.298838754573,392.324357840946,421.614818587014,484.219234587413,564.802899408261,595.548545747942,458.6546203391,501.349422034467,530.854558708227,584.479950168493,624.224830545173,673.509880209041,714.631938304064,855.15269585522,995.258991157756,984.72796457114,1027.17164465894,1214.87322474298,1373.00295308038,1529.91653792864,1863.25345089754,1934.906100321,2007.15145360918,2182.62273410099,2121.5823416406,2325.11877842041,2489.859940442,2790.33584092159,2965.88994812059,2960.42354986126,3209.79026419633,2701.05341879226,2882.08430383964,2792.96022987919,3272.75583539559,3602.81952716797,3928.97054348071,4158.67753863874,4213.51477504743,4588.20417337807,4683.9493726237,4854.41014538638,5149.3794887008,6076.99285433872,7091.48514804659,8203.81595512902,9402.59888792141,12167.3544152486,11988.9558213751,13418.8660279869,16756.1533560056,18230.4992777146,18276.378591357,18567.2212139453,20391.2744629855,21035.8781381275,22947.9798050901,26514.7294637491,27011.1178277503,28705.0409671777,26602.4524886763 +Indonesia,0,0,0,0,0,0,0,56.6775664483141,70.7646529533327,83.3742331288344,91.5068493150685,93.3353635979888,109.975903614458,162.732530120482,258.024096385542,304.638554216867,372.69156626506,458.089156626506,514.557190999207,514.001863793028,724.823373703464,855.182334507774,901.584493072327,810.522834046102,848.536999940467,852.894917503217,799.540725698502,759.296175768794,843.001744772008,944.514278983379,1061.40727357032,1166.21996217133,1280.26966579964,1580.06700301533,1768.92143931505,2021.32028723115,2273.69679374973,2157.48998609635,954.45547872715,1400.01351215462,1650.2101207781,1604.46947784909,1956.60611165183,2347.72463823808,2568.36875295452,2858.68618224017,3645.7051430485,4322.16737774861,5102.28634992258,5395.80085612401,7550.94160363071,8929.69107923094,9178.69910105749,9125.24136718018,8908.14755233225,8608.54235065079,9318.77364177742,10156.1874256581,10422.7153101199,11190.9125907462,10584.2383834514 +Iran,41.991343899037,44.269490948403,46.9356641648346,49.2862801838759,53.7984564770139,61.9731992904038,67.8993867175094,75.5538369016,86.2317295989803,97.4308960749587,109.762451535894,137.318015640908,171.534632631086,270.816982495083,462.090920721383,517.762223498869,680.552950807538,806.001227019632,779.943166214814,903.918773259285,943.622755800229,1004.99312749923,1259.48756439485,1563.65156618241,1622.76728619519,1801.83629599684,2090.9456183348,1340.09995923169,1230.57861333908,1204.96362916271,1248.13263926225,0,0,637.43623232012,718.414611725964,964.192257436737,1204.03931885441,1139.19163421155,1102.76913362508,1138.48450088351,1095.91707802216,1268.78750295944,1286.2691750372,1535.4475139543,1900.43433964841,2264.52138291542,2662.98911661144,3498.8160145856,4123.36172446849,4163.97025729361,4868.07615326147,5807.64902917439,5988.68460912847,4602.93149324326,4326.87036177818,3849.5147969742,4179.8358356554,4453.45256459105,2943.56680624658,2582.45497664394,2034.71303952344 +Iraq,0,0,19.5463483618034,19.784376925231,23.405211425371,0,0,0,28.9694763371605,30.0812097451694,32.8171380565668,38.6534653465347,41.1384800240312,51.343677781446,115.167626142906,134.585167626143,177.548256010836,198.381307145276,237.622756518794,378.164578394853,525.69,378.23,423.823333333333,407.129032258064,469.383870967742,484.251612903226,472.645161290323,567.741935483871,626.845161290323,658.31935483871,1804.08064516129,4.07796349663785,5.53671957671958,10.3194488113189,39.9134928275729,128.940298881122,104.336986213427,207.648570563795,206.174050442425,368.816015838194,483.642509439051,361.764301288057,329.284546724246,219.215694788163,366.27901762063,499.548903532609,651.401471971215,888.370551952619,1316.14433712245,1116.5758166235,1385.16722649573,1857.49664444444,2180.02481737691,2346.37675128645,2284.15656174957,1667.74109673732,1666.02488747885,1872.17660050676,2273.67469034031,2350.97182233503,1667.56984395973 +Ireland,19.3932977543739,20.8801228235667,22.6034968408625,24.3084376844553,27.6660894587402,29.4570414299765,31.0403439323162,33.4363677336759,32.7858447833023,37.8707734372783,43.9599508599509,50.9825028746646,63.1806058221873,74.8117306579201,78.9686061498803,94.8380836236934,94.5375601471837,112.483404313779,146.479960736937,183.193343004513,217.478556400712,206.701901381671,214.747529622178,207.660477635314,201.066484548404,212.700133255601,287.145718524799,339.205184925094,377.728962207559,392.383926777542,493.056324084929,497.875015844847,559.185381213989,524.17477613676,570.9765606596,691.398232323232,757.907862903226,828.566487583572,901.994101155097,988.605657362029,999.588068914686,1092.52057270694,1279.85972143798,1643.07961625282,1940.15335237149,2117.9799154334,2319.86253920462,2697.36375581714,2743.26912260144,2355.09465129203,2216.5974298475,2386.62833333918,2255.09709550982,2382.11547205677,2586.2519266358,2914.62799328949,2987.25229419215,3346.02299873029,3848.53685231018,3991.22063504148,4258.88950992003 +Isle of Man,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.14762873689153,10.2300586277927,11.809681654086,13.8260538932055,15.6740251369642,15.6366779961578,16.5913124373837,19.4733292174718,23.286582278481,28.2235847316983,30.324,34.2265133394664,44.6610044017607,59.2842095588235,54.8708365789064,59.2017768850433,65.660983816696,66.9072511848341,70.0074878849461,77.0883495145631,70.8528800611154,68.4669187145558,69.7958172458172,74.9196931287525,73.1538805208067,0 +Israel,25.985,31.385,25.1,29.9233333333333,34.0533333333333,36.6333333333333,39.8,40.3,46.19,53.2933333333333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1006.05702520506,1101.80666416017,1147.53492201542,1159.9908265572,1171.66318090683,1324.55662080298,1308.16321183156,1211.48475241673,1270.46633802508,1355.71348058902,1426.57069099984,1541.45495309484,1791.61786957474,2167.1154960981,2079.53439208606,2346.54589559973,2622.93871093061,2584.1710416353,2941.67366504266,3109.44937638436,3000.78278118434,3190.24417316889,3552.77223507485,3736.41241440789,3979.3459695256,4071.00736594064 +Italy,403.852883441911,448.427602931924,503.838918989911,577.107430598341,631.754170190094,679.781538505191,736.548700112757,811.331200654202,879.422316783505,970.850828073751,1133.9531598513,1246.72365792759,1452.60039840637,1754.92055795417,1995.64489431378,2276.95851126928,2247.17278436846,2575.96313364055,3150.58323066393,3936.77161500816,4772.56775943929,4307.02851303015,4272.72645669291,4430.42373788883,4378.87689001543,4522.17492140757,6403.86352773087,8057.13128174485,8916.08957155608,9286.61332204347,11812.2265352295,12462.2015607929,13201.6164493323,10649.5807555063,10992.166882805,11746.6207060502,13124.2652779521,12418.7960436562,12700.525259284,12520.2375878969,11438.2983231988,11670.1279642058,12707.123094297,15741.4582392777,18032.2696796623,18575.2431289641,19479.1970894493,22102.9263618943,23988.5659879889,21912.4187274243,21340.1784324716,22919.9104577029,20870.7703243515,21413.1532731821,21591.3391974377,18358.9923732004,18757.9746358387,19569.5046967329,20909.1087911933,20093.8386730745,18887.0944368748 +Jamaica,6.9905067898642,7.48028839423211,7.77712445751085,8.26690466190676,8.97931401371973,9.72140557188856,10.967380652387,11.4802540734604,10.8388335533421,11.9128765150606,14.0477607104284,15.3986551392891,18.7504885993485,19.0591755319149,23.7509624903751,28.6041128588714,29.660102298977,32.4969739302607,26.4444923229321,24.2503399818676,26.7940945323903,29.7906141237229,32.9353328842483,36.1929412069144,23.7356695749214,21.0022314971396,27.5456617620212,32.8698755171597,38.2831073497795,44.0497005883786,45.9222406737194,41.0619917628901,35.3546008980719,54.4006477317365,54.5256438543307,65.7752382470029,73.9388355477969,84.0003389399653,87.8719562243502,88.8706186689206,90.0506447493003,91.9471783599985,97.1901792592929,94.302305644699,101.746648539476,112.438684857428,119.301714683796,127.995930177101,137.094020853206,121.204608728003,132.205568827046,144.446552998772,148.070868892099,142.642027373082,138.992288242161,141.889359475694,140.771093968584,148.089899933185,157.307938527913,158.307685498916,138.124250365864 +Japan,443.073429504,535.086177393778,607.230186837333,694.981317973333,817.490063815111,909.502782577778,1056.28070343111,1237.818802176,1466.01072685511,1722.04199480889,2126.09187919444,2401.51807460241,3180.31297492352,4320.82670450719,4796.25998613406,5215.41905673251,5861.61858999671,7214.11786536814,10136.1217351884,10550.1211952633,11053.8597376387,12189.8893512981,11345.1800188456,12433.2359205883,13183.8162700376,13988.9274482069,20789.5333367355,25328.0857315703,30716.8301317891,30549.1416626318,31328.1765284804,35844.2007710084,39088.0946346386,44541.4387694721,49987.9754774097,55455.636638897,49233.9153385163,44924.4860563894,40983.6270953124,46359.8222406388,49683.5907595659,43747.1169409087,41828.4604587361,45195.6164525353,48931.1600565656,48314.670353898,46016.6312264992,45797.5092035481,51066.791151273,52894.9311799389,57590.7176901311,62331.4717234135,62723.6299610503,52123.2818116618,48969.9440535329,44449.3065196418,50036.7762754424,49308.3736915142,50368.9174065635,51487.8194847817,50577.5895870664 +Jordan,0,0,0,0,0,5.99831979837581,6.58078969476337,6.31755810697284,5.61187342481098,6.9896387566508,6.39596751610193,6.78241388966676,7.88574628955475,9.43700547778454,11.9745420676808,13.6303939962477,17.0873493975904,20.9656847859095,26.0274869109948,32.7172827172827,39.1003692514267,43.8468523002421,46.8056737588653,49.2040760121179,49.667100130039,49.9382919412063,64.0138,67.5559911373707,62.771974352124,42.2094500522102,41.6000391743258,43.4425025701278,53.1132906737276,56.0584153557512,62.3773951624445,67.2744663242009,69.2835923836389,72.4618857545839,79.1232736248237,81.4910606488011,84.6042440056418,89.756898448519,95.8245303244006,101.956607898449,114.113904090268,125.88665303244,150.569297602257,171.105874471086,226.576623925602,245.37876056338,271.338042253521,295.241491549296,316.345616901408,344.544401408451,368.476435211268,385.870178873239,398.925511267606,414.089608450704,429.321126760563,445.02895915493,436.976592957747 +Kazakhstan,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269.327291027371,249.230769230769,249.173553719008,234.092608799427,212.507928861054,203.743026523819,210.353682508881,221.65932062966,221.352548360031,168.708218397584,182.919949090044,221.526941618882,246.365932233467,308.336997027594,431.516470026096,571.236717338952,810.038845454099,1048.49886825584,1334.41612246798,1153.08661142927,1480.47348240643,1926.26507971584,2079.98568865789,2366.34552078102,2214.155728195,1843.88432148715,1372.78320084171,1668.05800595704,1793.39994859384,1816.67190075541,1710.82379532988 +Kenya,7.91265458818076,7.92959472139024,8.68111400014073,9.26589348572953,9.98759333643326,9.97919319980049,11.6451967319763,12.3255950592359,13.532954575261,14.5837941540278,16.0344735725171,17.7839128919123,21.0727915738336,25.089984574073,29.6994218034692,32.5934493576836,34.7454239203212,44.9437885533109,53.0373488253447,62.3439097527091,72.6531533162273,68.5449145390208,64.3157935731256,59.7919846383025,61.9143707044184,61.3503433830431,72.3912671693219,79.7082053075078,83.5538087912955,82.8311464836775,85.7235916285631,81.5147900421334,82.0912917173649,57.5178991505363,71.4814537578545,90.4632605998857,120.458584362399,131.157737375664,140.939988437334,128.960135767324,127.053571030056,129.860074258781,131.477439107241,149.045176498476,160.953370938366,187.378977447948,258.255248208064,319.581951822406,358.951533278497,423.472179129176,454.055875567313,468.694573182541,563.967060059435,616.714253700235,682.85768554472,701.204133287838,748.151213149381,820.35800868187,922.02956320532,1005.55485831944,1010.13726529063 +North Korea,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +South Korea,39.5819075862419,24.1755828936656,28.1431851660968,39.8878457224835,34.5893935773377,31.2083333333333,39.2890838062947,48.5590714180098,61.1928429423459,76.7858134369794,90.0502318392581,99.0349992798502,108.62327878032,138.765314320145,195.440947412663,217.842975206612,299.02479338843,384.464876033058,519.721074380165,669.469008264463,653.986467576511,729.333509537025,783.588663347376,877.603609410248,975.102359860046,1012.96177099377,1168.36802995065,1479.48259722577,1995.90823957237,2469.2729276502,2833.67525714932,3306.48530715211,3555.25267405367,3926.66101884959,4636.17399962661,5665.83427334137,6101.69556840077,5697.54543829957,3833.30931042356,4975.12659612052,5761.78114168494,5476.5823127987,6272.46081417004,7027.17332012991,7931.75007858066,9349.01071332984,10532.1690988756,11726.1408653986,10473.3901022525,9439.41876218743,11440.6696532449,12532.2304471899,12784.2763434259,13707.9519997618,14843.1821963363,14657.7324554715,15001.1159623637,16239.0149683579,17248.4561562926,16514.2293244777,16378.958027929 +Kosovo,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.8177676871247,50.1589469297027,53.4401431791065,63.4173719376392,61.6378517281254,67.3573117279851,70.7465789823303,62.9582048152668,66.8283263227806,71.8081337550836,78.7850850259802,78.9987908643081,77.1692535612536 +Kuwait,0,0,0,0,0,20.974516942033,23.9148697843741,24.4189302716326,26.6311957434892,27.6953234388127,28.7398487818538,38.8037040157259,44.512009729401,54.0829399865138,130.047745566166,120.241382758621,131.316689466484,141.357295882763,155.009087604507,247.46019536903,286.385504994451,250.566721664275,215.77977770059,208.694343053173,216.972978723404,214.426196808511,179.036816930489,223.657344815213,206.924727598566,243.121177671886,184.277777777778,110.087931762223,198.585552147239,239.413913907285,248.484838383838,271.913538873995,314.933199732799,303.550939663699,259.399606299213,301.238501971091,377.128422425033,348.875122269319,381.375452451464,478.765100671141,594.390906006108,807.986301369863,1015.48931771192,1146.39690358902,1473.95089285714,1059.63168867269,1154.19399860433,1540.68115942029,1740.70382279385,1741.61142454161,1626.31412508784,1145.67298105683,1094.197285667,1207.07435542367,1381.82400331126,1361.96760210804,1059.60225688145 +Kyrgyzstan,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.75,25.6944444444444,23.165625,20.2829545454545,16.8100699300699,16.6101851851852,18.2757058616784,17.6786403571943,16.4596374983146,12.4906148701457,13.6968849806778,15.2511637027939,16.0564310473021,19.1900809049641,22.115345850034,24.6024802617783,28.3416888942019,38.0256617081543,51.3995778491084,46.9006225512247,47.9435779507139,61.9776611859856,66.0513993341063,73.3502759191628,74.6809656671158,66.7817834045121,68.1309206583507,77.0293480012836,82.7110863839931,88.7102607419762,77.3597627275983 +Latvia,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.8912863662293,59.7524885145482,65.279264456811,71.6627546765161,75.3378813355753,79.5885283893395,83.6239870158943,95.5703160527512,117.719751568073,144.35700533368,170.034598630989,215.700764986205,310.543509779784,358.542742289139,264.109090909091,239.561630765575,274.74380566265,281.699026693784,302.047834618488,313.451486705896,272.521286266281,280.645333522849,304.085096018003,344.122108122783,343.087838253019,337.073208163036 +Lebanon,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.1354006793246,27.1799868771002,28.3848535396187,46.9041509253663,58.4357916090122,79.417444921211,95.991270499375,117.187955284939,136.902173332697,157.518674894446,172.471790055219,173.910563692265,172.603648424544,176.497512437811,191.522388059701,200.829187396352,211.598279920602,214.973364989462,220.227098515526,248.273550146449,291.189161056182,353.995829286222,384.439070423002,399.271259612072,440.359918930218,469.093355506109,481.334148404075,500.6594608617,513.893182908642,533.248009586119,552.76157552246,519.537445074091,317.352177845445 +Lesotho,0.345793084138317,0.356992860142797,0.418591628167437,0.470390592188156,0.519389612207756,0.548789024219516,0.566988660226795,0.592608147837043,0.614447711045779,0.659666806663867,0.687386252274954,0.764821029082774,0.809158319240276,1.21181556195965,1.50846210448859,1.49560513860717,1.47654093836247,1.93307267709292,2.66559337626495,2.90142517814727,4.31561376476631,4.34188034188034,3.48746822619267,3.86699308859169,3.3315847624212,2.68626912549917,3.18862888402626,4.02774852652259,4.70389179678909,4.95404888092424,5.96415104549144,7.04329192771521,8.31033941093969,8.35592802276831,8.78250450602681,10.0188985691048,9.4612327588212,9.97996028645833,9.28458205958432,9.1277129061298,8.87295267875155,8.25706961238689,7.75780697676625,11.5783293455127,15.1123665552047,16.8235093485132,18.0010558960349,16.8201694722798,17.6682541277296,17.4083051087482,22.3473197355119,25.7942168624912,24.7770225280078,23.6711317000373,24.4105317570743,23.5975979904224,21.1432379398266,23.0684352852853,25.1414688791664,23.6621306857507,18.7522764247384 +Liberia,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.74,9.06,9.27,7.48,8.97,9.49,11.19,13.73,17.26,17.68,19.98,23.98,27.91614,31.771981,32.25652,32.270757,33.984196,33.907034,34.227548,33.195965,32.011878 +Libya,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289.018361581921,319.950124688279,338.813920454545,306.570302233903,286.079219288175,255.441281989955,278.846153846154,306.986331091343,272.497861420017,359.767141009056,382.7020695041,341.100644521567,204.818897637795,262.65625,331.223076923077,473.341485784164,549.619366626066,675.162363377158,871.404053612292,630.283207020343,747.734449005368,346.993955236073,818.736625188238,655.028701737831,411.427224143351,278.421314798726,261.971432681243,378.83243650452,526.078887179487,520.911522283425,254.189160288964 +Liechtenstein,0,0,0,0,0,0,0,0,0,0,0.900983306654471,1.04888628171944,1.24941925010473,1.65930611729019,1.93983720461869,2.46387479177159,2.72493879020643,3.03496276263782,4.36918176733781,5.03180669994587,5.34701915617354,5.11658690561043,5.22090331478107,5.24034109856605,5.02617355407073,5.29078995563876,7.79365167602424,10.5284334763948,11.6175767101756,11.2000091692646,14.2146623956234,14.841520223152,16.31197909259,16.7310449377369,19.4811822768151,24.2846139534884,25.0403325242718,22.9841039068421,24.797213408746,26.6402609506058,24.8395310279488,24.9182270680256,26.8863082253304,30.7069131952179,34.5436268596703,36.592515258593,40.0023927261126,46.0129956681106,50.814329240144,45.0454921422663,50.8236647808994,57.3997747747748,54.5600938466461,63.9173589383968,66.5717092337918,62.6839152119701,62.3726405520601,64.7425611861481,68.3914510686164,66.8444355001006,0 +Lithuania,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78.6714039533705,83.8251963746224,101.186318515322,112.395476909797,109.715839447561,115.247768666379,122.373880017264,142.597811590119,187.817213761985,226.275074515648,260.976775718373,301.835751035262,396.978913519431,477.975515878823,373.881220461496,371.28694028243,435.350514823869,429.27454291478,465.234200744372,485.336595921728,414.188729761196,430.180872375741,476.40770634427,537.246638425623,546.973790173332,565.469574754912 +Luxembourg,7.03925705942958,7.04145671350213,7.41509480796284,7.91140595772755,9.03158753943622,9.21600736304026,9.68440149470951,9.74721762535327,10.6644713082052,12.34878980502,14.5776845502219,15.1877342137846,19.0169736962698,26.0987580211136,31.8363711681856,31.2333333333333,34.2358620689655,37.8932132808104,47.1853977199949,55.1698266373143,60.1980549041247,50.5366579747936,46.0231679321914,45.2421775147929,44.3843549287908,45.7721176710374,66.8559508759256,83.2090221501891,94.1816785518376,100.37674037674,127.787928536939,138.34219728293,155.187026348808,159.255212220149,177.017988907644,208.530938697318,208.953146579805,195.638362652233,201.500533451878,218.919230769231,211.774709784411,213.690281879195,235.37637869377,296.019040632054,350.004805065806,376.582340504912,428.742253167733,515.219039145907,586.04890874469,542.522131147541,561.591927583285,616.155450003597,597.798027833455,651.84744717028,687.132943862129,600.474306842639,621.746503672216,655.498682069418,712.502089956425,701.957154955136,733.531327937076 +Madagascar,6.73081724076322,6.99161943857103,7.39286906851553,7.59345862971331,8.02482182924192,8.33563472162352,9.00264583688205,9.56436931142347,10.3166963636116,10.563910545386,11.118595697715,11.9950762999179,13.4159068158511,16.5306234736254,19.1750819004689,22.8304923328758,21.818441939254,23.5893040642896,26.6975511550569,34.6356588142486,52.0181834900282,47.5933396985141,47.8497734897042,46.864570130577,39.0593848082352,38.0255789490614,43.4798979883436,32.1290056080991,31.8945696127972,31.756383325404,39.3133487074964,32.5471305602171,37.1496700718602,40.632989192868,35.2222690275861,38.3810105221232,49.3186123907864,42.629652815836,44.0196749925594,42.7790378029131,46.2924709097816,54.3833273810373,53.5170153415801,63.7249871984613,50.6473271572615,58.5926984914523,63.9571239223682,85.2462073924074,107.251379308518,96.1687957144509,99.8271133811125,115.518196176416,115.789748879668,124.235552693948,125.229572281618,113.230208285844,118.486137351908,131.763135935418,137.600330965122,141.0466451487,130.560799823887 +Malawi,1.62956740865183,1.74576508469831,1.83116337673247,1.90816183676326,1.94736105277894,2.29455410891782,2.60394792104158,2.69814968240817,2.45169806792272,2.65810632425297,2.90531621264851,3.65386929835119,4.06062874251497,4.44281703893568,5.48621017593913,6.13220652928919,6.70317634173056,8.06290840624654,9.49034016830627,10.5826906598115,12.376554611501,12.3768569194683,11.8010421601137,12.2318684031324,12.0800898542522,11.3134779826653,11.8365482779002,11.8309412776747,13.7992425721313,15.9021558253307,18.8077155630474,22.0354585666893,17.9951708156412,20.7063693558644,11.8180259603498,13.9745793230697,22.8103413136493,26.6323493389767,17.5058426528754,17.7592171810534,17.4350653132652,17.165028622954,34.9574839763025,32.0883707725069,34.7609449887517,36.559096641423,39.9802017667364,44.3293704579897,53.2101219233619,61.911276651963,69.5965557089098,80.0400073730717,60.2848792883351,55.1888076857955,60.4781343731804,63.7321264084604,54.3304015988747,89.4354367718899,98.8067578593057,110.25357837607,121.823482127073 +Malaysia,19.1624199660264,19.0186854828172,20.015026786881,25.1012674768065,26.7444139553116,29.5635698418921,31.4353848164119,31.8894551156409,33.3039330981315,36.6457598327453,38.6417091336731,42.4434033351899,50.4326854873032,76.6299676666803,94.9607411407918,92.9880079946702,110.501259049418,131.393978791695,163.583765112263,212.136720891976,244.880334420506,250.045570938761,268.044018155348,303.467884375135,339.435057176993,312.001610954491,277.345626404277,321.816955072234,352.718802504964,388.485676314235,440.241783430071,491.431480942683,591.67550162956,668.948370304184,744.783569577808,887.053429027113,1008.55393910486,1000.05323301867,721.674989808398,791.484210526316,937.897368421053,927.839473684211,1008.45526315789,1102.02368421053,1247.49473684211,1435.34102611497,1626.91238209476,1935.478240633,2308.1389771569,2022.57625195063,2550.16609232871,2979.51960784314,3144.43149443149,3232.77158906979,3380.61963396376,3013.54803994367,3012.55380276258,3191.12136545438,3587.91603677728,3652.76282438141,3370.0606637326 +Mali,0,0,0,0,0,0,0,2.75494520141999,3.43771964662167,3.39913833096246,3.59772363262207,3.95218567202881,4.86617332387405,5.6368366031194,5.38747268333356,8.30710615179954,9.3922799366396,10.4983849255759,12.2270235610946,15.9542328564659,17.5968748012117,15.3898065358996,13.337390167676,12.9775182617367,12.3292269681435,13.9220522993367,18.521415465912,20.906060714048,21.690276333725,21.8181027553995,26.8195931315654,27.2410161071922,28.3069263855831,28.1830675377878,20.8186410644813,27.064166230592,27.8043525696413,26.9710292151387,29.2036749707602,34.4074343184883,29.6147651821292,34.6832701734025,39.0813948681726,47.1405105535437,54.54228770812,62.4749649129462,69.0587638535306,81.565321856131,98.3840400493274,102.320368634247,106.891671953375,129.951134072335,124.420362651484,132.426914295942,143.649379968661,131.047643339941,140.260486907312,153.657143713316,170.708662990945,172.802511939527,174.653929159153 +Malta,0,0,0,0,0,0,0,0,0,0,2.50721821553678,2.64579879784878,2.95118249324932,3.45602025375393,3.76094108475331,4.7462043958496,5.27936988791275,6.25573345532174,7.93675169878579,10.0130083832335,12.5024210787969,12.4346936056838,12.34518125,11.6577136900625,11.0182856876804,11.1783528550512,14.3507920034957,17.5124776341948,20.1947424419359,21.1857477211136,25.4716358233149,27.5004143426295,30.2191021671827,27.0917832678271,29.9857014654095,37.2040053501945,38.2288280133397,37.9341841841842,40.105712233396,41.2135073181231,40.6951557907114,40.8836897834589,44.7044639144639,54.4841550017071,60.9809255107125,64.1618418107201,67.7832404968009,79.2537147549959,90.9040676724769,86.963669074743,90.3593212249768,96.3891648106904,94.6223821148657,105.516611767831,116.262813870068,110.914344835238,117.215219127202,132.212983078894,148.647129901631,152.157143090974,146.47384607604 +Mauritania,0,1.59213140003286,1.64271590835566,1.68186331271262,2.24495789265476,2.55340526745302,2.66533659162216,2.8261536746488,3.11396000321084,2.95062138067838,3.09405316058955,3.35569088717833,3.9166944925347,4.93237544352934,6.1301095814599,7.03378653350029,7.75046377591752,7.99029666591345,8.04629876770723,9.51900945200283,10.4792464911779,11.0549536838146,11.0877601025575,11.6517062565959,10.7437373545291,10.0972332631752,11.8662877851236,13.4466527068865,14.1495185405644,14.5064701920509,15.0691440782331,21.3368827032436,21.6429220816528,18.4735061172458,19.4487675500708,20.9173142068923,21.3208188191398,20.720010668212,20.3234583183005,19.8592438691448,17.7952334434106,17.4606471879169,17.7705859298812,20.5114760673687,23.6250102324249,29.3601952560241,39.1957728592703,43.4620680854026,52.0644440666154,47.1459249292972,56.2888226637767,67.6463568679345,67.2820883622143,72.2306316972749,65.9253778181518,61.6685762862212,63.9874450508129,67.9907541899441,73.5443004011966,78.8966245216785,79.136802311828 +Mexico,130.4,141.6,152,169.6,200.8,218.4,243.2,265.6,293.6,324.8,355.2,392,452,552.8,720,880,890.25974025974,818.141592920354,1025,1345.61403508772,2051.39086956522,2639.59336734694,1846.09157801418,1561.59198584513,1842.61495828367,1952.19789801479,1345.50096436744,1475.40738281817,1816.11549975804,2214.00669713589,2612.53582805945,3131.42768453485,3631.5759824227,5007.36065605341,5278.13238126278,3600.73909243855,4109.75595310156,5004.13483109175,5265.02129378284,6002.32874042927,7079.06744574644,7567.06300589791,7721.06378935377,7293.36319677449,7822.4060198476,8774.76221382101,9753.87131716089,10526.9628227887,11099.8906358662,9000.45350649351,10578.0129558405,11804.8960195761,12010.8998701545,12744.4308471657,13153.5118352454,11718.6760819772,10784.9065162531,11589.1303579637,12224.082031043,12694.3393280591,10739.158808225 +Middle East & North Africa (excluding high income),0,0,0,0,0,238.105615322858,248.185953932831,268.684502593187,295.599542963693,327.960535199176,370.413832875451,424.658957670378,506.70955869167,672.63577202268,1025.37620193715,1193.11352648645,1472.7326849406,1704.39112811206,1831.92593439024,2284.9679109888,2736.28597468491,2670.35473642843,3062.78910030591,3442.06010239055,3644.1711403653,3973.22228082277,4465.08813443302,3904.83593666781,3584.77809926194,3604.8821401618,5071.39807872787,2627.70938785449,2893.71637240769,2971.15312194621,3185.44655265223,3711.94030846822,4278.96468010388,4524.10538638589,4612.55140911521,5015.92716549255,5320.136941324,5379.54639517417,5234.5740329393,5717.41701363921,6792.94294233768,8020.26607192594,9299.31228587298,11398.8738222652,14073.6503300349,13725.5746206868,15795.2458780995,15656.2837527121,16999.3901090207,15718.1509186765,15476.5646244283,13858.6626685323,14038.9667772443,13846.8990092574,13202.1656362283,13435.3563026111,11957.459815284 +Moldova,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.5297992641489,16.9512217391304,19.3008116883117,16.9871750465549,11.7078295737443,12.8842939179951,14.8067359405602,16.618181684226,19.8090743476826,25.9824955589984,29.88348836471,34.0824454919999,44.0118946614058,60.5484988452656,54.3942203139627,69.749603453712,84.1436065629632,87.0916524926928,94.9668470143325,95.1021929949557,77.4523166033425,80.7148054086068,96.6975998702633,114.567284013069,119.702339398808,119.155472626561 +Monaco,0,0,0,0,0,0,0,0,0,0,2.93073868038497,3.27651487974965,4.02460333247989,5.23552815099552,5.63939670684242,7.1192299425844,7.3533991191765,8.11250927388123,10.0053573537664,12.0989829339444,13.7813099560185,12.0516602547602,11.4322907183219,10.9255178103673,10.3731495623209,10.8285107649699,15.1520958820845,18.3909559529143,20.006746671353,20.1011685124167,24.8131605396507,24.8059888385071,27.3719256505576,25.7430240908038,27.2031001890359,31.3046261006703,31.3767329144762,28.4017554506631,29.3449844340672,29.0609375665885,26.478858485351,27.1886830601093,29.6898701923077,36.0132106455266,41.379135,42.0308419350827,45.8298833270606,58.6791678072817,64.7649040574191,54.5165323701028,53.6762561315127,60.8880846325167,57.4302968007195,65.5598353034932,70.6961604889066,62.6162210140908,64.729909231791,64.3131495707185,71.9402456306094,73.8374566215157,68.1621930325528 +Mongolia,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.100991,25.5240193333333,27.2573663333333,20.987346,21.86505475,28.9617886666667,30.206116,32.0446156666667,35.769668,25.6078566,23.7901832631579,13.1761186384977,7.68401634154573,9.25817092217484,14.521650052384,13.4571947235883,11.8093420283801,11.244402489783,10.5740858868269,11.3689612361298,12.679979343125,13.9655571997409,15.9529735578349,19.9206680809598,25.2347153201083,34.140555661138,42.3499982330839,56.2321644886852,45.8385036788972,71.8948182407288,104.097976493063,122.927706311967,125.821226041921,122.265147220861,116.198923960767,111.813504614723,114.808477453187,131.780944594548,142.063590068095,133.12981594573 +Montenegro,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.84297589359934,11.5986924592513,12.8468505052413,17.0771005314938,20.7323441768066,22.5717448078597,27.2190314891482,36.8071174377224,45.4567452761096,41.593303695471,41.4303327588493,45.4451698218263,40.8772581266864,44.6426048858205,45.8792888417142,40.5291338582677,43.7412831858407,48.4459206671174,55.0416666666667,55.4267431706225,47.6986074074074 +Morocco,20.3715071633238,20.2568953660705,23.7960642229029,26.572473273392,27.9833976879755,29.4832526430195,28.7639561308171,30.4633929453611,32.7141586799723,36.5161545301848,39.5632842604486,43.5663366336634,50.7411754477482,62.4217779833938,76.7540848551421,89.8482418260333,95.8432330912136,110.498967423889,132.368541051672,159.121335692852,217.287700553777,177.881717224446,176.923413581272,162.514606893254,148.247285284604,149.912832157408,194.621753218224,217.652610417265,257.052961835037,263.142201880257,301.801085619305,322.853881652999,337.1106943078,316.554736638348,356.041374225796,390.302854683841,431.614526784383,391.478445260838,418.062193786181,416.320275998531,388.572513363448,394.595812173759,422.368368206152,520.640588339739,596.260201623816,623.430226508742,686.408254809223,790.412948744553,925.072577835697,928.973203758176,932.167466615977,1013.70474295109,982.663066153632,1068.25649872108,1100.81248587369,1011.7980807636,1033.11649248024,1096.82728023112,1180.96227400092,1198.70439113662,1147.25065285149 +Mozambique,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.3340606483095,26.3995323054915,27.2955059108977,27.9654997847183,28.9992284166085,38.567998441609,46.4883218406736,52.6387752008489,59.7640804377265,56.5647365241147,53.9856854363492,56.7700323929386,63.0339114383386,76.3112053336168,85.4207010970903,91.7688907042298,104.508432912931,125.561951885962,119.144714971492,111.046486730016,143.815524329494,163.508045430515,169.743205510213,177.160841075888,159.509690189458,119.369992831791,132.190842613664,148.458700507092,153.847017979863,140.194466101963 +Myanmar,0,5.84351384445672,6.12517344736634,6.59976659599529,4.75197381878821,4.0261941365649,3.17816209973753,3.2818243454039,5.31186357395256,5.5137922592345,5.789926388291,5.59378375675676,6.34525053103964,6.67038769078786,10.0055794957082,11.2848485902503,11.5559592508513,10.0035072687418,9.16914661358546,9.19525191644789,10.1059680546697,10.6486766938909,13.0270153667393,14.2720983581538,13.5469924506058,13.1083729425837,15.9009675898617,14.480038038734,13.9254774283427,16.7482331087183,20.3637352269939,21.3718485804416,22.160733276884,28.0974838709677,38.2153577981651,48.792593207547,57.5962474226804,56.3307170923378,46.1307097482993,56.43818689479,68.4932164595623,62.2027105511329,61.1063315368778,77.5464742807323,93.9085529773553,105.884330688549,118.630163152934,155.911825447092,230.130158321023,294.551655946859,377.960529387278,541.186019747947,583.186776449492,605.722543714731,632.64891867054,630.453065139323,602.917389347783,614.493919171299,671.447261679303,686.977614771818,798.520466109676 +Namibia,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.2209607458458,22.4985474000185,21.1874146884323,22.9740068757457,19.5122961758386,16.0821931031522,18.0907386175129,23.0010549712572,24.9505962744074,25.3511356548832,27.8994449795827,29.9688556114873,34.2953853436185,32.5123062092603,36.6650146445871,39.7849775302583,39.8920866187519,41.5495568576389,38.7309865600637,38.6854159914887,39.2224798985562,35.5733336430795,33.4918476002543,49.2647129430116,66.0919883276313,72.4839416035502,80.0177955106323,88.3952645157632,86.0747530811833,89.3886816539165,114.313344474305,125.234023287671,130.420074324489,120.432763971652,124.354160602791,113.351795620211,107.219946766562,128.95153160466,136.820622492236,124.967817197752,106.191945053543 +Nepal,5.08334413965087,5.3195956162226,5.74091101194382,4.96947904443033,4.96098775308642,7.35267082294264,9.06811943824649,8.41974025462659,7.72228643405428,7.88641965432099,8.65975308641975,8.82765471604938,10.2409880493827,9.72101724995368,12.1795354697604,15.7578925446938,14.5279298910865,13.824,16.0416249745945,18.5125000833333,19.4591658333333,22.7558331666667,23.9542985243076,24.4717480337791,25.8120738779709,26.1991395551556,28.5078452337711,29.5725537954315,34.8700974835638,35.2522815317361,36.2756240266027,39.2147608489072,34.0121158129176,36.6004166666667,40.6677551020408,44.0110441767068,45.2158038147139,49.1869191653516,48.5625504439064,50.3364238410596,54.9425220790502,60.0705504217687,60.5087580666403,63.3047309654071,72.7393831471988,81.3025804146706,90.437153558881,103.25618017379,125.454386053959,128.549854640764,160.026564344746,216.217100025111,217.031065024926,221.622089560893,227.316029696861,243.607954101597,245.240981844236,289.71589213134,331.115251827133,341.861806949285,336.57175561329 +Netherlands,122.767341720828,134.938337399949,146.470573701418,158.91241386291,186.993807313465,210.005869332041,228.672033174022,250.875621813218,278.176057432503,340.359466041815,381.647166250685,445.791228070175,547.065572644878,718.409096641968,872.434133945405,1002.49523353085,1091.68720620103,1270.16990212804,1558.59695457323,1796.69405690432,1951.52092662381,1641.34217080279,1584.79527935958,1534.45465987182,1439.12664148352,1438.45822717622,2008.62095700666,2450.46310922541,2619.10508417884,2583.36705808999,3183.3051192061,3275.00327675625,3629.62872180451,3535.5016967252,3791.30260322073,4523.01674444139,4504.90196078431,4168.12740004518,4380.08220395468,4468.98572341786,4164.42786069652,4312.13422818792,4716.13965744401,5787.92325056433,6571.71591755649,6850.9265016789,7333.40860619747,8474.81522036682,9479.97656364435,8680.772436788,8465.54894931084,9040.85980796018,8389.71306990906,8769.23518850405,8909.81311077658,7652.64949780999,7835.28181704567,8318.09944960879,9135.97086062599,9101.94347568626,9138.65395789886 +New Caledonia,0,0,0,0,0,1.59594492305776,1.64206536282721,1.8003676747076,2.1550716235574,2.63108841078205,3.58815683716576,4.13985777670322,5.06808996960657,5.42293400026544,6.3740347972901,8.16652167285134,7.98313524683111,8.37620127341416,8.46004692259462,10.472257244525,11.824639586966,9.72564156966739,9.0459987153447,8.23857894288438,7.9606619289799,8.5482089409777,12.0132150929895,14.8809310452988,20.7277550828058,21.8508294358021,25.2944042433462,26.5378067701073,29.238832896371,28.222437751099,30.3872839145878,36.2844052439278,36.0696843636758,32.9113129515184,35.5630483444773,36.4780204642375,34.2003204195867,32.9773488586956,37.4005675127996,49.1535382541377,58.9500898492881,62.3862946154527,69.7915540887349,88.1991718664951,90.6761972870031,87.0443806051857,93.6435006499003,103.514480253062,96.5915190865882,101.513828768157,106.350355500101,87.3820304154819,87.2456897067891,91.736699995986,98.4692028401006,94.3812799409456,0 +New Zealand,54.8585479197096,56.7006416821773,60.7749626776294,66.3893728313963,72.7414435081809,56.5446358600366,58.6373323097616,59.6141809353003,51.8059762064135,57.6158876169421,0,79.1113675706867,95.6733106465727,128.022818978712,139.409817981247,128.619832843912,136.048324240062,154.468253184556,185.305183946488,207.312431132926,232.445473846748,244.176171842478,241.646030589949,243.092797055731,216.659753188842,246.797953964194,306.046683565695,403.763540699474,451.768115942029,439.202225247085,454.951293850475,427.45329732163,416.498298596342,467.756208174327,553.147322791379,639.187035069075,701.408352990148,660.751434154952,562.271698510448,587.622606258758,526.232819567031,538.724259166248,666.277293114495,882.508855502626,1039.05210084034,1147.20129550095,1115.38810712665,1371.88946865584,1331.31369930414,1213.73602348679,1465.17541181254,1682.91357111739,1762.06659722524,1909.06575136003,2013.13497220917,1780.64471137921,1889.43457301474,2069.50600690395,2122.25726657864,2128.91048340608,2107.00848973509 +Nicaragua,2.23854666666667,2.40524723428571,2.65291588666667,2.92916241142857,3.41973758857143,5.66542872357143,6.06671444,6.57171436714286,6.95899980428571,7.47971449571429,7.76585681071429,8.26571413428571,8.80842890071429,10.935714415,15.2090004514286,15.9042852264286,18.4787137171429,22.3985706057143,21.4212860378571,15.2785263563158,21.8934736752632,24.4829010965,24.6516517969565,27.4334172408333,31.0551709141379,26.838162887907,28.8571060888079,38.5121372767857,26.3090426183247,10.1318474570715,10.0945548387097,14.8880412371134,17.928,17.5645424836601,38.6318511904762,41.4047,43.0835190278601,43.8996559096538,46.3526722484195,48.5571787468247,51.073290070922,53.2314656570315,52.2421301754386,53.2245492584746,57.9556820464532,63.2133561222233,67.6341864581377,74.234219584248,84.9694660823151,82.9867990855232,87.5859227210579,97.7426274175783,105.320066081447,109.829792741922,118.804340707811,127.567065833113,132.860836448761,137.858766293189,130.252399122751,126.112186270632,126.215053826062 +Niger,4.49526872565486,4.85785234940376,5.31736492909178,5.86294761493516,5.82816358347155,6.73383604238783,7.02296184361344,6.65586975088302,6.41214210668969,6.25867922677513,6.49916708242418,6.93573595320975,7.42779740393512,9.46385033011918,10.2613697447536,10.4869093321027,10.6451757456042,12.9145797312517,17.7436527518226,21.092781019887,25.0852418643352,21.7089303890053,20.176119274037,18.0309973154257,14.6124321242814,14.405815337564,19.0409702029333,22.3300582258534,22.8035633822867,21.7956710750159,35.123563530798,32.8579697979737,33.8623259201834,30.5267362285839,19.3805816125116,23.0253768218029,24.0568708112795,22.9031880033457,26.4336340697664,25.3779002273535,22.4175312021267,24.4871468056221,27.8219298695772,33.9408488467098,37.6044396572976,43.8331565699096,47.5636147998873,57.3148526733492,72.9760089686099,73.521316692941,78.511918993408,87.7295126181807,94.2691334922319,102.24897934722,108.629442035591,96.8386789368343,103.988622449737,111.851023995762,128.086605280617,129.164551611081,137.41378450136 +Nigeria,41.9609225815484,44.6720033599328,49.0930295394092,51.654890102198,55.5282248355033,58.7442251154977,63.6679266414672,52.0313593728125,52.0089598208036,66.3418731625367,125.458490830183,91.8176991150443,122.744160177976,151.628712871287,248.466413181242,277.789346246973,363.08883248731,360.354077253219,365.278622087133,472.599118942731,642.017881226054,1644.7520951519,1427.69363313375,970.949117906948,734.843595210997,737.458211562996,548.058525811516,526.760419305791,496.484704397963,440.030611083357,540.357953880915,491.184330475318,477.949258147558,277.522043200883,338.330429877582,440.624658001706,510.758150925,544.578351934927,546.040501681818,593.726134856576,694.487569325833,740.303644720506,953.858193205737,1049.11947834122,1363.85979322437,1761.34087150341,2361.03982431635,2756.25684968615,3394.76215683592,2950.08767295038,3614.56622215721,4049.93594133582,4555.01524575498,5086.92961937492,5466.76374567721,4868.0329509789,4046.50006428613,3757.46469538666,3971.90484464308,4481.20428858769,4322.93776262398 +North Macedonia,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.9964664310954,49.3877551020408,24.3684934197604,26.8245689655172,35.5960724125816,47.0703609648961,46.4201835367211,39.1298609097363,37.6574730498681,38.6362118597303,37.728571450248,37.0963782994866,40.1836524744444,49.4629277479046,56.8278826712865,62.5860071382627,68.6122233196317,83.3647814208872,99.0954841082744,94.0173149571661,94.071687024313,104.946326993859,97.452511260109,108.177121389451,113.622728378818,100.645154320265,106.724718607184,113.070583823435,126.830700614695,126.06338448547,122.637101227645 +Norway,51.6327159815702,56.3246093654576,60.6697668267364,65.1023950276489,71.5920270648027,80.58681060159,86.964602053397,95.1449670339762,101.599341367838,110.630650834888,128.141231152613,145.831148400629,173.58610849701,225.342537028686,271.456938101341,328.77805200023,359.422706863374,415.080304311074,465.230910096713,531.322446239213,644.393828960156,635.966547608677,626.471955376511,616.272408310948,620.579550327758,654.168799143907,786.93253275995,942.300556586271,1019.00260856222,1026.33789557535,1197.91683307507,1218.72464483487,1308.38040067584,1205.79072750596,1271.31461119927,1520.29612324788,1635.20109150671,1613.56631888484,1541.6336430266,1622.84465073341,1712.47131268604,1739.72218824027,1955.24186477617,2288.58506821841,2645.11630666983,3088.84284051222,3455.8136996554,4009.37100158657,4622.5,3861.90385318767,4287.57038466841,4982.83438454281,5095.06317146541,5227.61531914894,4984.10050251256,3858.01550067169,3688.27142857143,3983.9395526899,4369.99692591454,4049.41363636364,3621.9831843526 +Oman,0,0,0,0,0,0.632875945113414,0.677681321758611,1.07152720243027,1.88864890808735,2.39980801535877,2.56299496040317,3.01010587102984,3.6685773840542,4.83033932135729,16.4591777649102,20.9669918934569,25.6022003474233,27.4116994788651,27.4030138969311,37.3335263462652,59.8176027793862,72.5912015055009,75.5471945570353,79.3254169079328,88.2136653155762,100.055005790388,73.238222513089,78.1118309492848,83.8621586475943,93.7217165149545,116.850455136541,113.414824447334,124.522756827048,124.931079323797,129.18855656697,138.026007802341,152.777633289987,158.374512353706,139.969146944083,155.934561768531,195.074525357607,194.52000520156,201.42756046814,216.337081924577,247.637128738622,310.819916775033,372.157797139142,420.853794538362,609.054525357607,483.883635890767,649.934980494148,774.975292587776,874.088426527958,899.360208062419,926.990897269181,787.107932379714,751.287386215865,808.566970091027,915.058517555267,880.608582574772,739.713914174252 +Pakistan,37.4926501469971,41.1864762704746,43.1016379672407,46.3082738345233,52.0495590088198,59.2923141537169,65.6110877782444,74.645107097858,80.419991600168,86.8311633767325,100.27509449811,106.658966820664,94.1501635956604,63.8342949021091,88.9919191919192,112.306060606061,131.680808080808,151.260606060606,178.115151515152,196.883838383838,236.544444444444,281.006060606061,307.25971563981,286.918897637795,311.518254674978,311.449208443272,318.990700557967,333.515292746869,384.727428083167,401.710182290715,400.104239704576,456.252346977094,488.846068481265,518.099493342396,522.934569062665,606.360224226176,633.201228071223,624.333003380941,621.919558143478,629.738557188874,820.177434162841,794.844039848849,799.049853848652,917.605429400717,1077.59683863123,1200.55291992938,1372.64061106043,1523.85716311916,1700.77814106305,1681.52775283032,1771.65635077065,2135.87413183996,2243.8362082957,2312.18567178979,2443.60888750807,2705.56131701171,2786.5463773769,3045.67253219097,3145.67541558339,2790.56608888638,2626.10002938509 +Panama,5.371471,5.990263,6.521209,7.227845,7.761375,8.524853,9.28833,10.343764,11.127911,12.213057,13.510064,15.239172,16.734117,19.137934,21.883076,24.353041,25.88106,27.382619,32.445586,37.045516,46.140864,52.224215,57.697679,59.237559,61.833871,65.415171,67.978342,68.276653,59.027834,59.184698,64.33967,70.746755,80.423377,87.825854,93.652898,95.738137,98.70494,106.772861,115.754864,121.302522,123.04115,125.020134,129.943104,136.939812,150.133817,163.743939,181.416663,212.959842302564,251.55888616322,271.166355651742,294.402875812675,346.862243011773,404.297343842184,455.999940048873,499.214643653204,540.917137755634,579.076954089392,622.027252044646,649.294092124566,669.84427150321,539.770369951729 +Papua New Guinea,2.30496032981216,2.44832035032526,2.61184037372302,2.75968039487715,3.0531204368649,3.44159480344943,3.90973233284802,4.41706910068317,4.85160824280435,5.51237316608803,6.45537126217942,7.17716130493883,8.58802035928144,12.9910524073285,14.6734605999713,13.5659117685561,15.1185658425833,16.4076320444781,19.4794752433347,22.9362194436639,25.4598300789984,24.9806835066865,23.6858496953284,25.6249252481761,25.525262630759,24.2337308807358,26.4803376569899,31.4384833131402,36.5597970245646,35.4646017699115,32.1973036499623,37.8739495798319,43.7798051005598,49.7455028618152,55.0278606965174,46.3605747642568,51.5531107738998,49.3661529879367,37.8944301461662,34.7703820401733,35.2133969907407,30.8102421242924,29.9951104019764,35.364118242958,39.2715786696465,48.6589297227595,83.5500670657899,95.451770141301,116.708409318173,116.19637798991,142.507552311257,179.849105018979,212.956592436168,212.614327912675,232.106825383928,217.235311732409,207.590691030961,227.426135536879,241.095098527402,247.513445522057,246.688996834299 +Paraguay,0,0,0,0,0,4.43587301587302,4.65888888888889,4.92674603174603,5.17650793650794,5.56293650793651,5.94611111111111,6.64571428571429,7.69039682539683,9.95531746031746,13.334753968254,15.1142063492063,16.9896031746032,20.9215873015873,25.5985714285714,34.1677777777778,44.480873015873,56.2451587301587,54.1941176470588,56.7324872618009,45.024628070602,32.8244923587261,37.2399394272004,39.7104472380154,42.5568352833968,47.5773219996678,58.1211452302702,69.8436776290371,71.5742403106045,72.4953362030614,78.709820048195,90.6213147502318,97.8839178052421,99.6522567805093,92.6048157242462,88.3707023551892,88.5570513955857,84.9580643218467,71.9626065684556,76.9136747117992,96.2444083629309,107.375001881123,134.29430050261,178.56270473153,246.165376182325,223.556012733545,272.377828496908,337.562387665,332.964383064747,386.513342876732,403.77987208689,362.113727028085,360.895506590914,389.971294735558,402.254483406322,379.069440746128,356.703014961061 +Peru,25.7190806207692,28.9965484036567,32.8677318787687,36.0095777115299,43.5691387023507,51.6686106842164,61.1360772815672,62.0425375857616,57.3608383522481,64.2090978963824,74.3222317677261,82.8958288350129,91.8941340901292,109.943818947984,138.584412112196,168.771637921284,159.477093796507,146.203866738544,124.95779622071,159.624594472168,181.340291796393,216.491376203055,217.934968193379,173.456244536916,175.99660054286,165.488270182872,152.442329578759,207.022983969717,154.394084472288,224.995590860343,264.103866693609,343.414659982003,359.66302303263,348.320772208537,448.820797668913,533.127936873836,552.524141303019,581.475225225225,555.01467877381,501.87324567883,517.44749133213,520.301587754055,547.775535150809,587.310301218671,667.687034975687,760.606060606061,886.43193061748,1021.70981144136,1205.50599815441,1208.22986521479,1475.28937028778,1717.61737046585,1926.48999090082,2011.75469114327,2007.89362451567,1898.05300841603,1918.95943823887,2110.07207483515,2225.74697255522,2284.70919605669,2020.14363787233 +Philippines,75.1588665050159,81.7118633444451,49.5452927711044,55.0505561764991,59.537668538145,65.17304757998,71.890178877981,77.2487393515141,86.3274926935964,95.7180065261349,75.5917953039935,83.7508604710196,90.6787257893699,114.124210196329,156.07825070495,168.752406830685,193.809457926854,222.831850561012,257.620776650311,312.185078701702,368.482427838987,404.996452078072,422.060112747956,377.592376579248,357.302027510258,349.615652627138,339.87178952489,377.914427307811,431.520778174686,485.137357773149,505.082866430184,517.842071321246,604.223092969827,620.366252229655,731.592455244651,846.442201020732,946.480844288235,941.061834502675,744.923252470657,856.401337997951,836.696935891547,789.21234457233,843.072919744733,870.391459650093,950.020285046908,1074.19961717119,1276.52859201489,1559.80378252863,1816.2457715397,1759.7471159153,2083.68726860828,2342.16930369373,2619.20509949785,2839.02728259788,2974.83247100855,3064.46140627933,3186.26761492305,3284.80867143204,3468.42094174513,3768.23278560849,3614.89325230731 +Poland,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659.777490369844,855.009359349901,943.370506932727,960.45645026178,1108.03391516698,1422.92783505155,1601.93242090427,1593.57789772207,1746.85791563561,1700.31005016259,1722.19461126067,1909.05493539168,1990.72058823529,2178.27260805842,2551.10181539808,3061.4433626951,3446.22003093581,4290.28505365078,5336.09081852897,4397.37508413192,4798.3417902033,5283.01269069799,4985.23568248119,5210.16262734924,5424.77096211761,4778.11911394084,4726.30364208177,5265.08877305321,5874.11745161558,5972.80564671563,5966.24355719671 +Portugal,31.9320040437297,34.1751663937596,36.6822235765702,39.0573445972693,42.3560817767102,46.8746405483455,51.3538784597108,57.4024116563433,63.5426262833537,69.6902582562868,81.0823570432357,92.0160424028269,112.391178650852,150.905641864268,175.123914759274,193.476078431373,203.328315649867,214.395233106338,234.876140510949,266.228196721311,328.965198237885,319.772768729642,305.277547931382,272.396507419472,252.179690495755,271.158077420873,387.459013537059,481.829258574071,563.472506963788,605.940921823275,787.138602165659,892.335992784792,1075.92098307098,950.097519012592,996.886413043478,1181.22007430012,1226.3008968027,1170.1653516295,1239.46327916296,1274.27343916471,1183.10710337203,1214.98889485459,1341.56091661961,1648.6214221219,1890.34502110752,1971.80330804626,2085.81694893991,2401.9080344922,2623.4477955178,2437.01635176438,2378.80908317652,2447.97226567109,2162.36608773976,2263.69502104236,2295.96170846995,1993.13894327486,2062.86022781894,2208.11110492149,2421.94788533537,2399.86922638902,2285.39245045341 +Puerto Rico,16.919,18.651,20.944,23.336,25.705,28.815,31.705,35.327,39.417,44.607,50.347,56.468,63.289,70.024,76.848,81.983,89.686,99.109,111.65,127.5,144.361,159.557,167.642,172.766,191.626,202.892,220.093,240.258,263.858,281.612,306.03919,322.87031,346.3043,369.22456,396.9063,426.47331,453.40835,481.87039,540.864,578.41,617.018,692.084,716.235,748.274,803.22313,839.145213,872.761644,895.241316,936.393,963.856,983.813,1003.517,1015.648,1024.5,1024.458,1033.755,1043.367,1034.45526,1009.25,1049.146,1031.383 +Qatar,0,0,0,0,0,0,0,0,0,0,3.01791301791302,3.87700084245998,5.10259940720474,7.93884368040437,24.0140322744085,25.1278403337828,32.8430133218953,36.1758017176055,40.5200041270087,56.3300031802401,78.2909461307082,86.6126376373626,75.9670321428571,64.6758230769231,67.0439582417582,61.5329645604396,50.5302195054945,54.4642868131868,60.3818703296703,64.8791208791209,73.6043942307692,68.8351648351648,76.4615398351648,71.5659365384615,73.7445076923077,81.3791197802198,90.5934038461539,112.978021153846,102.554950274725,123.931318681319,177.598901098901,175.384615384615,193.637362637363,235.337912087912,317.340659340659,445.304945054945,608.821428571429,797.120879120879,1152.70054945055,977.983516483516,1251.22306346154,1677.75268626374,1868.33502362637,1987.27642967033,2062.24598571429,1617.39955576923,1517.32181868132,1610.99122225275,1833.34953818681,1763.71267689082,1444.1136334527 +Romania,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384.136363636364,408.095238095238,421.052631578947,389.954545454545,289.986842105263,251.216666666667,263.628947368421,300.744404833837,374.353172651254,369.370742783004,355.749162946429,416.941189725101,359.527815822083,372.532590169976,403.948246791232,460.661019512933,578.065060240964,749.726690565922,984.527919827024,1220.2299750801,1745.85202805233,2143.13628965024,1741.03695930213,1663.09355234589,1833.26740143016,1706.35805316879,1908.01346194297,1999.59363430073,1777.29210874504,1881.28818486401,2116.95422578655,2414.57403085042,2498.81592298072,2487.15551366635 +Russia,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5547.13455149502,5065.00173960269,5168.14274021956,5179.62962962963,4602.90556900726,4350.83713850837,3950.77301248464,3955.37185734854,3917.24890744498,4049.28954191876,2709.55486862442,1959.07128350934,2597.10142196943,3066.020706205,3454.70494417863,4303.47770731787,5910.16690742798,7640.17107992391,9899.30542278695,12997.0576482362,16608.4638762478,12226.4428220186,15249.1746844201,20459.2560827437,22082.9577364315,22924.7324662108,20592.4196549083,13634.8106344677,12767.8697922181,15741.993870709,16573.2886570999,16874.4852546661,14834.977848676 +Rwanda,1.19000024,1.22000016,1.25000008,1.28,1.29999994,1.4879998,1.24525702857143,1.59560018,1.72200018,1.88700037,2.19900006,2.22952578196381,2.46457838336681,2.90746157145921,3.08458423183854,5.71863295740122,6.37754162101094,7.4665055855469,9.0570914727019,11.0934622052885,12.5476534993185,14.0706260763214,14.0724264023211,14.796881258852,15.8741295722263,17.1562583917973,19.4471106130888,21.5743402516467,23.9549387751365,24.0502193289997,25.5018561814774,19.1160096976612,20.2902670402707,19.7152599887685,7.53636370454545,12.9353501094467,13.8233487940812,18.515583017002,19.8934349521844,21.556594126104,20.6752850040621,19.6544451489971,19.6477992078511,21.3709348931936,23.7528162660252,29.3221357470995,33.1795146837027,40.680659286413,51.7701514148246,56.7133213779866,61.2123452898826,68.8103826961727,76.5030031983,78.1559950265683,82.4133251654991,85.3904844778065,86.9048582314546,92.5309895427769,96.4028008419572,103.559742173735,103.339914555443 +Saudi Arabia,0,0,0,0,0,0,0,0,41.8777771111111,44.8577764444444,53.7726884852944,71.8486327654536,96.640679296561,149.474910564605,454.129719093794,467.733037208932,640.056238703227,741.883635058532,802.657322925833,1118.59726428738,1645.41658298596,1842.91888767191,1532.38991868875,1291.71602025147,1196.24918956209,1038.97892810979,869.620130105552,856.959417600451,882.561620689725,953.443528236969,1176.3027180248,1322.23268491322,1370.87876662216,1329.6790141522,1351.74886488652,1433.43036341789,1586.62398744993,1659.6355740988,1467.7549808,1617.1696,1895.14926213333,1841.37469733333,1896.0592024,2158.07655253333,2587.4226304,3284.59700114755,3769.00135727637,4159.6458305537,5197.9673864,4290.9789928,5282.0733264,6712.38840106667,7359.7484336,7466.47127413333,7563.50347333333,6542.6990288,6449.3554144,6885.86244293333,7865.21831573333,7929.6683816,7001.17873253333 +Senegal,10.0369237455789,10.5897526558883,10.8547557348959,11.2213963725693,11.8893056771363,12.100583960603,12.4690837374285,12.4648095851385,13.0938483019071,12.4523480689546,12.9740782860957,13.3954882366855,16.2085727719338,18.6339844832592,20.9932494984605,28.3038840487845,28.6977781241008,29.3804630722894,32.8035433939341,40.8487866785616,45.1010733012074,40.9589207229088,40.1395086845946,35.6935646207896,34.8516516057534,38.189446030069,53.9209350764824,64.8735228267143,64.1841979813177,63.6603935262267,73.9096703467363,72.5521070097896,77.6981786931065,73.6798569479161,50.3458815928612,63.2634296293447,65.5971255065952,60.4147843608043,65.0560763336937,65.928354576876,60.1318480923898,65.0782476706303,70.0640259245463,87.6872195633228,100.768172781025,110.090326653876,116.979188027922,139.942189392431,168.539911769058,161.458682845645,161.213146709653,178.142846221718,176.608717259977,189.186686441941,197.972546431212,177.747666360459,190.403128151337,209.965647515994,231.166998081723,233.062137423602,246.442345946566 +Serbia,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168.325988700565,218.180074487896,256.764879995941,194.57979423376,193.886635510012,68.7584598652121,129.605387237591,171.209069183503,224.823653217656,261.419681610924,276.832259592468,324.820703603204,431.709906164729,521.942214685007,451.628943809318,418.194686918251,492.581361289672,433.092529210567,483.942394746762,470.622066776539,396.559588425478,406.926433730327,441.790552798887,506.406502214622,515.142223818428,533.350164254148 +Seychelles,0.12012012012012,0.115920115920116,0.126420265718964,0.139230292643975,0.153930323541529,0.156030327955465,0.164430345611211,0.166320328140183,0.160740273496039,0.164520279927637,0.184320313616959,0.219659517213048,0.306451210129499,0.368962782235629,0.431344986929657,0.478031459560303,0.492789795471457,0.645263986585361,0.85552369914184,1.2726109924396,1.47357222779802,1.5490286902139,1.4791206976575,1.46712850509248,1.51313241982492,1.68887539130818,2.07850623637094,2.49267039782675,2.83828769029925,3.04832867393246,3.68584758942457,3.74359556084926,4.33667193814795,4.73916819453826,4.86451204557142,5.08221508221508,5.0306847220266,5.62958836519905,6.08369282225727,6.22985493682733,6.14879764780006,6.22262057191635,6.97518248175182,7.05704816042365,8.39319927272727,9.19103254545455,10.1641822925159,10.335616540568,9.67199593960157,8.47397850094417,9.69936525298729,10.6582666989742,10.6022612562616,13.2815760883087,13.4300784504468,13.7749505404127,14.2665176882189,15.2824202636264,15.4769075944363,15.8284105889479,10.5988636363636 +Sierra Leone,3.2200947156704,3.27834680557103,3.42721579817636,3.48546952134368,3.71848114747956,3.59379856248057,3.7547984980806,3.48795303000385,3.29860091944037,4.08690163476065,4.34410373764149,4.19549425077086,4.6538108998454,5.75230234387058,6.48590642939888,6.79335901117451,5.94895672333848,6.91777758395115,9.6072833893643,11.0937472208294,11.0068584492284,11.1483047191787,12.9536188592419,9.95104305347075,10.8747186198928,8.56890498625834,4.9018145662441,7.0130760228443,10.5508394537738,9.32974411917142,6.49644826800447,7.79981458921489,6.79997997597117,7.68812334801762,9.11915970683484,8.7075873940678,9.41742152709895,8.50218033622007,6.72375927347148,6.6938476887263,6.35874002198748,10.9046771230773,12.5334051953311,13.8581007219217,14.4853663088143,16.5049436699875,18.8511220185278,21.5849687285796,25.0545870503338,24.5389984688317,25.7802629715912,29.4254678104548,38.0186261136414,49.2034319499339,50.1515781573406,42.187238751379,36.7479453018956,37.1936910734992,40.8511479422324,40.7657854256207,40.6328944958795 +Slovakia,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127.473806500762,142.722017554704,154.955142968042,165.206769735301,201.62936291375,258.401464052288,279.250367553866,277.060280956157,298.56000671216,304.533837630514,291.699530127142,307.521503355705,351.303406738189,468.165891647856,573.320151477527,627.853053102848,707.080981056329,864.540815767862,1004.69509301304,890.462892470131,907.126719005229,993.627204936429,942.585726862287,985.413054621038,1009.5471936224,886.012898430917,896.140531437939,951.578886669967,1055.61218935334,1052.84375640698,1051.72564491569 +Slovenia,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213.522240194096,215.072326487252,207.631017406963,221.462319676861,227.113843111404,202.896276366767,208.76309970385,234.898902743142,296.347136410968,344.147845042352,362.063959706504,394.810450382637,480.063728442376,555.525091548264,503.680564045568,481.612504052468,515.163666548197,465.804574702769,484.018968083064,499.306850134603,430.901733946913,447.363335224522,484.690827103089,541.371421494799,541.788776059999,535.896095807099 +Solomon Islands,0,0,0,0,0,0,0,0.252035240325638,0.280842527582748,0.28606411398041,0,0.500568828213879,0.40606712050639,0.552721088435374,0.84539332282562,0.746170964785967,0.830991079066357,0.931470392548237,1.1102208996223,1.51270207852194,1.83170656739582,1.94215751968039,1.92564263494676,1.81096595484052,1.81359232531304,1.65454831975042,1.47573930536615,1.552444934353,1.76709270031025,1.72681320835169,2.14727767638123,2.27641078532489,2.6911649192309,3.00843868620008,4.02868080452087,4.69479432749053,5.10598923283984,5.26514030509295,4.57679209236648,4.88001488187512,4.19933580931046,4.09435392194013,3.46431958274064,3.52522682156703,3.97611126698465,4.76898763595798,5.38668769301531,6.20230005227391,6.99157190980782,7.35940409683426,8.46797693595387,10.4995223325874,11.9099412660431,12.8469892222785,13.3553889333315,13.0706154370981,13.7855111849224,14.8375890661054,15.7459918264697,15.7009322925588,15.4588842623031 +Somalia,1.80459936776025,1.91659914376034,2.03531927547229,2.16145935941626,2.29529912668035,2.43724533172801,2.57374455753265,2.71780364837811,2.86718279690322,3.06357284571429,3.22600009142857,3.31102742193418,4.16942436927838,5.07028428241662,4.67577432247816,7.10850226528991,8.07275808737093,4.98550873043478,5.64986059668508,5.9041985511811,6.03592656822209,6.99112266835764,7.74419569699066,7.33901365935354,7.88307213438235,8.76404617656501,9.30318705332201,10.0979272439772,10.3829128449695,10.92392963199,9.17044228012679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.7449566699486,50.2195632111861,53.3176139425501,55.2987347987153,56.09,58.5067729569858,64.7667459187348,69.6528532452207 +South Africa,75.7539697302288,79.7299681414993,84.9799660437052,94.2339623459933,103.739958547587,113.343954710023,123.549950631911,137.773944948287,148.945940484181,167.803932948904,184.183926403787,203.336913159642,213.574359283439,292.956747142466,368.077210376395,381.145428130982,366.033499701683,406.513499668691,467.394499619073,576.457210180263,829.80483387953,854.544205000266,784.230597898803,874.158513755347,773.440929067265,590.826388035266,675.2160255314,885.736972231721,951.766409680367,990.308568247526,1155.52349036929,1239.43432441241,1345.4523141655,1471.96639471188,1535.12625915287,1717.35223677318,1632.3678580234,1689.76663845486,1529.82541794042,1515.16560274982,1517.53369491916,1354.29607036658,1290.88132201846,1970.20241490079,2558.06631391551,2888.68489078987,3038.60874149007,3330.7546259971,3161.32138757081,3297.53048857052,4173.65076968257,4582.01514136977,4344.00545085811,4008.86013595573,3811.98869776106,3467.09790458563,3235.85509674481,3814.48814653456,4048.42116738074,3879.3457409817,3354.42101366417 +South Sudan,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145.862533830632,122.312645250671,146.020724109506,149.073089327534,119.314721694915,184.264690169492,139.622128474576,119.978007602242,0,0,0,0,0 +Spain,120.72126075397,138.343005714849,161.38545209246,190.749139477196,213.438446437341,247.569586949238,287.210622421634,316.471192281982,314.755484814095,360.38711599541,409.929950083195,466.194203592814,591.324152213306,786.395259851513,972.740063455437,1147.77046376812,1185.07184779905,1324.49277108434,1605.996875,2146.01955875062,2327.66822928754,2028.07891511984,1959.96754505528,1709.51185614849,1721.02910370524,1807.93463796477,2513.21075204942,3187.47935588196,3761.60409941437,4147.57056921996,5365.58591250408,5771.66174539632,6309.16018202503,5250.75636030854,5305.62634455347,6146.09020549773,6425.88992512807,5900.77272727273,6192.14834614099,6346.9316002557,5968.77648793072,6272.86800894855,7053.94315829098,9054.92099322799,10670.9336975416,11532.8566098744,12593.4387153431,14721.3112510266,16252.2484253699,14855.8349541539,14207.22034063,14787.7282422403,13248.2009119467,13547.5743321272,13693.9884459958,11951.1926997152,12320.7601736153,13092.9724650931,14203.0023266359,13930.4609313725,12814.8464004358 +Sri Lanka,14.0987394957983,14.4432773109244,14.3415637860082,12.4067226890756,13.0974789915966,16.9831932773109,17.5147058823529,18.5946502057613,18.0134453781513,19.6554621848739,22.9647058823529,23.6930860033727,25.5393634840871,28.75625,35.7458646616541,37.9129814550642,35.9131985731272,41.0450958286359,27.3318385650224,33.6461143224149,40.2462189957653,44.1584415584416,47.6876501681884,51.6791330216745,60.4347484276729,59.7846097201767,64.0521056388294,66.8216711956522,69.7837158126375,69.8726768377254,80.3255117324014,90.0036258158086,97.0301163586585,103.386796357616,117.176042088223,130.296975609756,138.977383752488,150.919138837091,157.949728471683,156.563278595696,163.308141799766,157.497538048344,165.365356470834,188.817654372151,206.625259412985,244.057910447761,282.798149245918,323.502484108216,407.138123097316,420.662178715349,567.257492219043,652.927530054665,684.344093151123,743.178065383632,793.564498405771,806.040806885775,824.010387095356,874.281281237209,879.630423408379,839.909469394651,806.76681933978 +Sudan,13.0733333333333,14.1933333333333,15.4166666666667,15.6833333333333,16.1133333333333,16.7933333333333,17.23,18.6566666666667,19.4733333333333,21.4433333333333,24.3766666666667,26.56,28.82,35.7166666666667,45.95,55.98,69.7933333333333,87.04,76.705,90.3225,74.5983333333333,100.165,92.4,82.3015384615385,97.0135714285714,124.037333333333,157.690625,201.555555555556,153.991666666667,152.915079365079,124.086475409836,113.792222222222,70.3421971252567,88.8178593848085,127.941923342541,138.297448786366,90.1824304445155,116.814946373041,112.503279880478,106.820452583647,122.574183260734,157.164893699266,181.368390870077,213.55576672542,266.454906750417,351.821054143919,452.645195026479,594.401397748128,648.319356042484,516.210440769231,589.629780344828,550.185672105263,376.329199666667,430.240180821918,495.167486179775,517.267586767677,426.30376,412.836179761905,309.643496847059,261.557993248663,213.291095218077 +Suriname,0.9965,1.077,1.1615,1.2595,1.344,1.5415,1.9035,2.207,2.4135,2.5965,2.749,3.01,3.1195,3.3945,4.0985,4.655,5.055,6.415,7.355,7.825,7.95,8.89,9.15,8.835,8.64,8.73,8.91,9.8,11.61,5.426,3.884,4.481,4.046,4.28764705882353,6.05492537313433,6.91590497737557,8.61411471321696,9.264225,11.1085,8.86290697674419,9.4767196969697,8.34279357798165,10.9357446808511,12.7419031141869,14.8409253840527,17.9338873229125,26.2638043517877,29.3661202185792,35.3296903460838,38.7540983606557,43.6839804764333,44.2227662178703,49.8,51.4575757575758,52.4060606060606,51.2629145081511,33.1743891083068,35.9162359603082,39.9624790619765,39.8448376237123,28.8424804849068 +Sweden,158.225850335764,172.126866145726,186.672513800746,202.048706297441,225.324167500125,247.95499685775,269.714865462848,292.759956746888,310.668199292853,337.381024821558,380.924520606201,415.664129226087,489.541458088359,594.049666842214,660.13338964725,828.853976205385,893.620716729034,944.687408514816,1044.42351222751,1233.86410160715,1420.92068280689,1296.86938223328,1143.80557730876,1050.14356666797,1092.013625813,1141.23537581794,1504.98057723623,1830.09638350893,2069.86674500588,2179.48315624564,2618.46194498885,2742.29034311699,2843.21115594629,2129.53336588123,2290.33566614826,2673.05875261099,2917.43811512079,2681.4614467773,2708.09066780714,2740.72182416731,2628.35454366855,2423.95852494409,2668.49061835659,3343.37212322076,3851.18044877465,3922.18088878779,4230.93437423762,4912.52589217021,5177.06149201196,4365.37014293554,4958.1255884331,5740.94112972733,5524.83727282802,5868.41821796891,5819.64017237095,5051.03781349757,5156.54671469547,5410.18749769097,5554.55371487089,5338.79529188454,5412.2005945925 +Switzerland,95.2274671921614,107.127124650522,118.799827585619,130.636437957884,144.805565715476,153.467416697575,164.800587048531,177.4001317926,189.427297791,205.248866164789,0,0,0,0,0,0,0,0,0,0,1226.60905890076,1123.39195092149,1151.40108850909,1147.30757467486,1095.4735583266,1110.73640470473,1592.2370393018,1994.03912956009,2157.21878630493,2082.8084846262,2659.87061618198,2691.27820781032,2801.56819798037,2724.66458446129,3016.28489434818,3531.32515010571,3404.71241909385,2951.2135671467,3038.82354117809,2985.20480628412,2798.41151705353,2872.26531168523,3101.7577248813,3630.63293977872,4055.31321270607,4205.4494779955,4438.01905407561,4935.37376707764,5703.04197211707,5581.99868578256,6034.34493402679,7220.3824213462,6921.09693986886,7127.4812422261,7343.96591036932,7021.49580770901,6956.00652899283,7044.78516963855,7355.39301552674,7317.67398052879,7522.4804573011 +Syria,8.57704413407821,9.45244972067039,11.1056588075881,12.0044740837696,13.3949426701571,13.2984243455497,13.212045026178,14.4371780104712,15.6230342931937,17.9659691099476,17.8010471204188,20.9764397905759,24.1570680628272,25.7921925063755,42.4467016029051,55.6675675675676,64.1763280289182,68.8229299363057,82.5197452229299,99.2968152866242,130.624203821656,167.584713375796,175.256050955414,186.728662420382,191.954140127389,212.03821656051,254.606369426752,325.380891719745,165.743429844098,186.095322939866,239.044988864143,277.562583518931,331.073496659243,368.601336302895,450.869487750557,508.663697104677,615.46280623608,664.204008908686,704.181737193764,729.703340757238,805.900222717149,867.713140311804,905.584855233853,956.938084632517,1128.63340757238,1342.03830734967,1537.9991091314,1800.30111358575,2180.89977728285,2245.61692650334,2525.18218262806,643.154379390108,428.073159755342,203.454584708427,212.390003980826,164.920721442125,123.569806388143,161.12991411879,214.903350858366,227.778821651115,0 +Tajikistan,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.2939585211903,13.52,21.5666666666667,16.4432558139535,15.187969924812,12.310405643739,10.4365482233503,9.21572114529611,13.2024208086531,10.8660526740992,8.60521119298753,10.807689065003,12.2112079881336,15.5530149604756,20.7618246086517,23.1232753641789,28.3022071307301,37.1950617283951,51.6133733640365,49.7948198035098,56.4217857958438,65.2273220250748,76.3304979209321,84.4846983753831,91.1254455605962,82.7145430059548,69.9239378740891,75.3643987508334,77.6501442433779,83.0078485687904,81.9415030178552 +Tanzania,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.0040577246327,44.2016810239306,42.5874326282876,49.5658827856144,46.0141326352894,42.5770219653864,45.108469678742,52.5522142480962,64.9619545061034,76.8385249684499,122.704487001994,127.11213451034,133.759763536994,135.816442457352,141.420350802849,152.24257698482,166.759484147573,183.990460252688,186.495902482626,218.435290249154,279.411774345087,290.814252822949,320.142498414151,346.571394954031,396.505302143287,456.805326137591,499.647888140926,473.785990253044,497.740210030748,533.206259585628,570.037136107625,611.368736923985,624.097091109538 +Thailand,27.6074747188624,30.3404357406071,33.0891279693487,35.4040345655305,38.8912994230769,43.8893764903846,52.7923081730769,56.3846144230769,60.8100942788461,66.9533656730769,70.865384375,73.7500002403846,81.7788455288461,108.385873577466,137.030005300587,148.827479550328,169.852111460238,197.793151700237,240.065701781561,273.716990827126,323.534407268856,348.461078623673,365.897978574006,400.428262442337,417.975929634424,389.006927121496,430.967461224614,505.354386964094,616.671998347428,722.508774103183,853.430639659182,982.346957220341,1114.52869378467,1288.89318946587,1466.83499005964,1692.7875353198,1830.351146484,1501.80619366605,1136.75561057462,1266.69064386717,1263.9223370679,1202.96476180402,1343.00851255002,1522.80677649055,1728.95749632046,1893.18549680384,2217.58196504936,2629.42476722425,2913.82991177698,2817.10416557292,3411.04820155464,3708.19140946553,3975.5822295717,4203.33203150426,4073.39454060678,4012.96437424995,4133.66150655591,4563.56961443497,5066.11070188362,5442.63840039166,5016.43653514925 +East Timor,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.670879,4.774435,4.695067,4.904391,4.407646,4.622836,4.538051,5.427954,6.484927,7.268824,8.818278,10.424115,11.603895,13.955196,14.473071,15.944109,16.506185,16.156097,15.838762,20.479317,19.021568 +Togo,1.21128073114022,1.26396469707058,1.32237441630863,1.43255784510751,1.66104067630043,1.87300336365369,2.16136263912497,2.31706475464114,2.41956910658103,2.67732446378413,2.53976626166639,2.86537524990331,3.35677636893737,4.06479906159652,5.60437742594972,6.17321669390877,6.1937513418051,7.77435020475847,8.24263841539264,8.91775906631014,11.3640881419692,9.62347000991788,8.21651918724626,7.65746590616849,7.18148959610872,7.62359722701402,10.6091173526065,12.4909913002277,13.7884748741137,13.5294966275172,16.2842751541881,16.022998629243,16.9295911018022,12.3349684633493,9.82624324505898,13.0938288533029,14.6544829034132,14.9895089908774,15.873459509743,15.7667279165481,14.9189110795711,14.8243775205739,17.0669809944513,21.158363531204,22.5999264229014,22.8148285546518,23.5158460841123,26.6261234844099,33.2367713004484,33.7925856497242,34.2946149541335,38.7245924974631,38.7330838930006,43.2165565633177,45.7498653690791,41.8086617703946,60.3163216817391,63.9547257441445,71.1220072500232,72.203952477424,75.7463697866173 +Trinidad and Tobago,5.35670127748935,5.84961208656595,6.19319197340022,6.78235373038558,7.1189336755527,7.36568861926151,7.23735635536371,7.61981474023359,7.5889995,7.792,8.2185,8.96754316674262,10.8338104408473,13.0879945896284,20.4203190142217,24.4266757304821,25.0041058379177,31.3866666666667,35.6233345833333,46.02416625,62.3583333333333,69.9208333333333,81.4041666666667,77.6375,77.5708333333333,73.7591836734694,47.9444444444444,47.9777777777778,44.9685207346896,43.2305882352941,50.68,53.0790588235294,54.3955294117647,46.6948851637981,49.4720586001451,53.2921416322001,57.5953772626601,57.3775133163779,60.4369433021609,68.0898252075759,81.5433823295978,88.2487325932105,90.0827372093395,113.054598020683,132.802751230354,159.822824623786,183.693610943886,216.416200499352,278.715873495413,191.721652255015,221.579483962042,254.330114053017,257.632201070051,272.684785645547,276.158430980949,249.598582494433,223.862648073174,223.85426653883,236.799196549891,232.083265475327,215.880375049992 +Tunisia,0,0,0,0,0,9.91047619047619,10.4095238095238,10.8571428571429,12.1466666666667,12.8990476190476,14.392380952381,16.8521705871103,22.3747642003773,27.3078747628084,35.4593356242841,43.2861048968432,45.0792910447761,51.0932400932401,59.6804420951466,71.8819188191882,87.4413435416152,84.2851356824625,81.3340104960217,83.5017678255746,82.5489186405767,84.1018573996405,90.1813602015113,96.9627126825148,100.962928421543,101.020752133151,122.905681818182,130.747826086957,154.972862957938,146.08946896483,156.324634242784,180.308765993444,195.873227861105,207.463604304187,218.033722666198,229.43685719103,214.732618370176,220.660318342948,231.421537595836,274.530073729142,311.830590124448,322.730075535687,343.773102930128,389.140783518027,448.609690771853,434.549359401614,462.063312611019,481.228381445183,473.111963352884,486.838485638515,502.713420864222,457.80069046659,443.607756491664,421.639749564834,425.702701071147,418.045814843655,416.203499863089 +Turkey,139.950678175092,79.8888888888889,89.2222222222222,103.555555555556,111.777777777778,119.666666666667,141,156.444444444444,175,194.666666666667,170.869565217391,162.566199637997,204.310954063604,257.243816254417,355.999138364328,446.337072427642,512.801345542889,586.768136873681,651.470224857919,893.940856582038,687.892895657434,710.400201404436,645.463325807583,616.782801154987,599.899094578379,672.349482645987,757.280099627878,871.727895283316,908.528140049917,1071.43348667094,1506.7629109421,1500.27833333333,1584.59130434783,1801.69736363636,1306.90172297297,1694.85941048035,1814.75555282555,1898.34649111257,2759.67393939394,2563.85525071633,2743.02959053103,2017.51148417102,2402.53216295117,3145.92428076487,4088.76042651701,5063.0831147663,5570.57829051453,6813.37335021874,7704.6215620438,6492.72568774193,7769.92599946766,8387.62755164179,8805.5637577951,9577.83020853031,9389.52628604067,8643.16670330882,8696.92960365551,8589.96263095858,7784.71901665148,7610.04425605414,7199.5482168331 +Turkmenistan,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.3135881975985,30.1098241424364,30.0698821655077,31.8953964131585,0,16,33.4,25.6470588235294,24.8380952380952,23.7875997544506,24.5037494486105,26.0566002606591,24.5051319648094,29.0473277348312,35.3480392156863,44.6197849886577,59.7756087744013,68.3835108846688,81.0390199637024,102.766743648961,126.641651031895,192.715231788079,202.143859649123,225.831578947368,292.333333333333,351.642105263158,391.975438596491,435.242105263158,357.997142857143,361.694285714286,379.262857142857,407.654285714286,452.314285714286,0 +Uganda,4.23008385744235,4.41524109014675,4.49012578616352,5.16147798742138,5.89056603773585,8.84873949579832,9.25770308123249,9.67647058823529,10.3781512605042,11.6904761904762,12.6008403361345,14.1778711484594,14.9159663865546,17.0252100840336,21.0014265335235,23.5955555555556,24.473,29.3647058823529,24.2026086956522,21.39025,12.4461,13.373,21.775,22.4033333333333,36.1564747705434,35.1966633852454,39.2323212212784,62.6951161466235,65.0893165166667,52.7648098599937,43.0439886588268,33.2172905712215,28.5745786005088,32.2043904418949,39.9043044671216,57.5581894742125,60.44585326938,62.6933331317108,65.8481584652754,59.9856325794659,61.9324683709687,58.4050386857246,61.7856359089254,66.0688439078019,79.3948747386318,92.3922185855839,99.7764764469953,119.025644013238,144.404040214881,251.278055664346,266.734416672778,278.71725205585,273.059157612794,289.157869965408,326.123977584418,323.871838446574,292.039888148973,307.444739115312,329.270255734296,353.530606342022,376.003681809399 +Ukraine,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,640.877951071343,747.037068168446,827.091994370663,813.935353062736,0,719,656.075221238938,525.433871671759,482.147519235872,445.580759770429,501.504001718859,418.832414778526,315.809606817742,323.752803205765,393.095809832282,439.563699170202,520.102387158475,672.201541643166,892.393701094698,1118.84752475248,1487.33861386139,1881.11140643985,1215.52777492556,1412.09864408488,1693.33048847834,1825.92416468527,1904.98811460028,1335.03411375739,910.309594546961,933.559936285042,1120.90530368543,1308.91049796879,1538.82982016281,1554.98989149587 +United Arab Emirates,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147.206725065004,192.130226910526,248.717751646043,237.758317834263,312.254632177582,435.987484490479,493.334241351131,466.227186052847,428.033233451376,418.07954235903,406.036502315445,339.436120947971,363.849087442114,362.756742032144,414.649959139199,507.014437482975,515.521656224462,542.39171887769,556.25170253337,593.05093979842,657.436665758649,735.712339961863,788.390084445655,756.743362831858,844.454731109598,1043.37372362151,1033.11640571818,1098.16201497617,1243.46358066712,1478.24370319946,1806.17467964602,2221.16541865214,2579.16133424098,3154.74615738598,2535.47358747447,2897.87338325391,3506.66031313819,3745.90605854323,3901.07556160654,4031.37100068074,3581.35057862492,3570.45064669843,3856.05506848196,4222.15043594282,4172.15559513364,3588.68765174924 +United Kingdom,732.339676921028,777.419657033544,812.475641568246,865.619618123249,944.075583511616,1018.24755078991,1085.72752102045,1131.16888210787,1077.59910067889,1164.64702803218,1306.719462443,1481.1389632514,1699.65034965035,1925.37971582558,2061.31369798971,2417.56637168142,2326.14555256065,2630.66457352172,3358.83029721956,4389.94070309191,5649.47710899373,5407.65675241158,5150.4891684137,4896.18008185539,4614.87097632349,4892.85164271047,6014.52653180885,7451.62608269325,9101.22732123799,9268.84816753927,10931.6938920455,11427.9717813051,11796.5952965953,10613.8872225555,11404.8974594429,13464.2259744359,14215.1482059282,15595.6941715783,16533.9185160649,16857.6282154991,16621.2740202754,16439.0816179646,17840.7673860911,20570.9387755102,24218.1435371659,25448.2909090909,27170.597976081,31061.824729892,29388.8235294118,24257.9841096744,24911.1009345418,26748.9147384381,27191.5834100579,28032.9140602993,30871.6560296286,29565.7377873776,27228.5195848623,26990.1671511139,29007.9144255406,28786.7391241444,27598.0406183707 +United States,5433,5633,6051,6386,6858,7437,8150,8617,9425,10199,10733.03,11648.5,12791.1,14253.76,15452.43,16849.04,18734.12,20818.26,23515.99,26273.33,28573.07,32070.41,33437.89,36340.38,40376.13,43389.79,45796.31,48552.15,52364.38,56415.8,59631.44,61581.29,65203.27,68585.59,72872.36,76397.49,80731.22,85775.54457,90628.18202,96306.64202,102523.45464,105818.21399,109364.19054,114582.43878,122137.29147,130366.4023,138146.11414,144518.58656,147128.44084,144489.33025,149920.52727,155425.81104,161970.07349,167848.49196,175271.63695,182383.00569,187450.75687,195429.79183,206118.60934,214332.24697,209530.3 +Uruguay,12.4228923920493,15.4738878143133,17.1000440722785,15.3968149078174,19.7570181646615,18.9076932614221,18.0918397452669,15.9772108000991,15.9367533016467,20.0443548387097,21.3709677419355,28.0725806451613,21.8941800137898,39.6429567252444,40.9020968197172,35.3828332207726,36.6716124148372,41.1466706264917,49.1025728293153,71.8118527798651,101.630201157344,110.483355414933,91.788021626616,51.0228125599986,48.5024144217643,47.3201787338369,58.8011278840947,73.6749408040014,82.1351545851139,84.3895147606644,92.9883965523138,112.059711552758,128.781998809839,150.021065184847,174.746477923829,192.976630965506,205.155430392132,239.698230104429,253.859281887719,239.839451906202,228.232558018447,208.987884166348,136.064945994261,120.456310925353,136.863298901191,173.628576838545,195.794579660538,234.105726343147,303.662131192928,316.609112770294,402.844816519021,479.624393037247,512.643901164909,575.312333509101,572.360130861223,532.74304222136,572.366524901699,642.339668612518,645.150382681373,612.311498805857,536.288274403582 +Uzbekistan,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133.606079178773,136.776222222222,129.412973760933,130.990138355111,128.991569906156,133.504689174115,139.488922155689,147.446037735849,149.889712108383,170.784659820282,137.60513969314,114.014213291974,96.8778851280184,101.344534354603,120.300235478807,143.075098388053,173.30833852919,223.113939278817,295.494388838338,336.892236732577,497.656764024495,601.78909297208,675.173492120609,731.800366923255,808.453843751236,861.962651916645,861.382886151218,620.813232990324,526.331438081824,599.076740274676,599.299511143598 +Vanuatu,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.19258835335525,1.21185497569261,1.1378179582356,1.14501912522867,1.17389554191406,1.44482515368336,1.31856420703184,1.26498935335649,1.39464173547324,1.58351368433149,1.54013202116475,1.68879207244148,2.01334169054441,2.09088824608438,2.00491853167847,2.33701301490486,2.49333250082507,2.61370044486614,2.72771209113662,2.62293410708334,2.68006972690296,2.72014693050806,2.5792688172043,2.62596597803278,3.14471328071548,3.64996869129618,3.94962552336108,4.39376794094041,5.16392922513728,5.90748237021657,5.92622502360859,6.70713208084552,7.70153304153832,7.47839697746593,7.58304466245339,7.72315721265827,7.30870581672312,7.80889605899977,8.80043553748442,9.14727908137793,9.34521604602009,8.8154792858381 +Venezuela,77.7909090909091,81.8909090909091,89.469696969697,97.5333333333333,80.9931818181818,84.2777777777778,87.8133333333333,92.5,100.344444444444,102.851111111111,115.611111111111,129.865909090909,139.777272727273,170.355813953488,261.009302325581,274.646511627907,314.195348837209,362.106976744186,393.162790697674,483.109302325581,591.16511627907,663.274418604651,677.367441860465,675.562790697674,600.102857142857,619.654666666667,603.916049382716,480.290344827586,602.264137931034,435.262536023055,485.98315565032,534.769718309859,604.01798245614,600.650110132159,584.186666666667,774.077262443439,705.43211119099,858.435345886206,913.312034331629,979.768862473172,1171.40723529412,1229.03960204505,928.935877336549,836.206285821082,1124.53382329615,1455.1000813475,1834.77522123894,2303.64012575687,3159.53388510678,3297.87628928471,3931.92354510653,3164.82190800364,3812.86237847667,3710.05379786566,4823.59318767703,0,0,0,0,0,0 +Vietnam,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140.946878207445,263.366162504397,366.581088503148,254.238126485941,62.9330497459403,64.7174080556984,96.1336952041885,98.6699023643587,131.809535981716,162.864335333228,207.361644589505,246.574705747501,268.437004415482,272.096020500452,286.836590067752,311.725184033162,326.851987353053,350.641055008344,395.525133160734,454.278546932554,576.332556182731,663.716648170436,774.144255322452,991.303040991274,1060.14659770222,1159.31749697241,1355.39438559709,1558.20001920492,1712.22025117381,1862.04652922262,1932.41108709536,2052.76172134901,2237.79865815183,2452.13686369157,2619.21244843172,2711.58442448537 +Yemen,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.4711922900763,59.3037037037037,64.6364998501648,53.682706148468,41.673560371517,42.5878872544991,57.8568531086668,68.3855738440357,63.2514167586989,76.4110252315082,96.5243617964605,98.6156009474009,106.946280916726,117.779666733897,138.727916585487,167.463447662044,190.619785861278,216.505322642322,269.108513617555,251.302741242525,309.06749533221,327.26417212348,354.013416630425,404.152357019871,432.285853213272,424.451023866049,313.173652694611,268.401287553648,216.061409074454,0,0 +Zambia,7.13,6.96285714285714,6.93142857142857,7.18714285714286,8.39428571428571,10.8285714285714,12.6428571428571,13.68,16.0585714285714,19.6571428571429,18.2528571428571,16.87,19.1071428571429,22.6871428571429,31.2183333333333,26.1866666666667,27.4671428571429,24.83,28.13375,33.255,38.295,38.7266666666667,39.9477777777778,32.1630769230769,27.3944444444444,22.8125806451613,16.6194871794872,22.6989473684211,37.1361445783133,39.9863768115942,32.8521739130435,33.7888235294118,31.819217877095,32.7323785335689,36.5664774424858,38.070671218609,35.9722096200017,43.0328193229365,35.3768304602331,34.0431197654941,36.0068303973254,40.9448098811931,41.9384567817033,49.0183973126571,62.2107767477871,83.3187016914977,127.568588992812,140.569579762648,179.108586379048,153.283423039575,202.655594838548,234.595152755776,255.03060420026,280.372394627142,271.410235580829,212.512167987762,209.584125383093,258.736012608353,263.115902967021,233.086677812258,181.106313583114 +Zimbabwe,10.529904,10.966466,11.176016,11.595117,12.17138,13.114358,12.817495,13.97002,14.795999,17.479988,18.842063,21.787163,26.777294,33.093536,39.821614,43.713007,43.18372,43.643821,43.516005,51.774594,66.788682,80.113738,85.397007,77.64067,63.521259,56.372593,62.175237,67.412151,78.147841,82.863227,87.838167,86.414817,67.514722,65.638133,68.90675,71.112707,85.531466,85.295716,64.019682,68.580131,66.899576,67.773847,63.421164,57.275918,58.055984,57.552152,54.438965,52.919501,44.157028,96.657933,120.416552,141.019203,171.148499,190.9102,194.955196,199.631206,205.486781,175.848909366523,181.155437907855,192.842897390517,180.51170798941 diff --git a/index.html b/index.html new file mode 100644 index 0000000000000000000000000000000000000000..fad25fb9fd02b6de53f26f03ccce1b31836f7784 --- /dev/null +++ b/index.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html lang="es"> +<head> + <meta charset="UTF-8"> + <title>Mapa Mundial</title> + <link rel="stylesheet" href="./css/estilo.css"> + <script src="https://d3js.org/d3.v7.min.js"></script> +</head> +<body> + <div id="map"> + <!-- Add a container for the year selector --> + <div id="yearSelectorContainer"> + </div> + </div> + <div id="grafico"></div> + <script src="./Js/script.js"></script> +</body> +</html>