Skip to content

Instantly share code, notes, and snippets.

@kerryrodden
Last active February 20, 2019 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kerryrodden/523ddbfc5788202f77e00ac098521a20 to your computer and use it in GitHub Desktop.
Save kerryrodden/523ddbfc5788202f77e00ac098521a20 to your computer and use it in GitHub Desktop.
Dynamic labeling over time
license: mit

This is an adaptation of the motion chart in Mike Bostock's The Wealth and Health of Nations that dynamically adds text labels for countries that have interesting-looking movements. As in the original, you can either just watch the animation, or move your mouse over the year to go back or forward in time.

The idea is that a dot with a dramatic movement should automatically get a label, so that the user does not need to interact in order to find out which country it represents. To figure this out, I preprocess the data to measure the amount of movement of each country in a time window, and show labels for the countries whose movement is above a certain threshold (capping at a maximum of 5 labels visible at a time, with larger dots getting priority).

I used updated data (to 2015) from the original source, Gapminder, and chose to start the animation later (in 1865 instead of 1800) because not much happens in the earliest years.

var startYear = 1865;
var numYears = 151;
var maxLabels = 5;
var margin = { top: 20, left: 30, bottom: 40, right: 20 };
var width = 960 - margin.left - margin.right;
var height = 500 - margin.top - margin.bottom;
// Scales to help us map the input data to screen coordinates.
var x = d3.scaleLog().base(2).domain([100, 128000]).range([0, width]);
var y = d3.scaleLinear().domain([0, 90]).range([height, 0]);
var r = d3.scaleSqrt().domain([0, 5e8]).range([1, 50]);
var t = d3.scaleSqrt().domain([0, 5e8]).rangeRound([11, 48]).clamp(true);
var c = d3.scaleOrdinal(d3.schemeCategory10);
var o = d3.scaleLinear().domain([0, 250]).range([0.25, 0.9]).clamp(true);
// Helper functions to map the data onto the visualization.
function xPosition(d) {
return x(d.income);
}
function yPosition(d) {
return y(d.lifeExpectancy);
}
function radius(d) {
return r(d.population);
}
function textSize(d) {
return t(d.population);
}
function color(d) {
return c(d.region);
}
function opacity(d) {
return o(d.interest);
}
// Calculate how far a country's bubble will move on the screen during the given time
// window before and after the current year.
function movementInTimeWindow(country, index, window) {
var startIndex = Math.max(0, index - window);
var endIndex = Math.min(numYears - 1, index + window + 1);
var totalMovement = 0;
for (var i = startIndex; i < endIndex; i++) {
var xDiff = x(country.income[i + 1]) - x(country.income[i]);
var yDiff = y(country.lifeExpectancy[i + 1]) - y(country.lifeExpectancy[i]);
var movement = Math.sqrt(xDiff * xDiff + yDiff * yDiff);
totalMovement += movement;
}
return totalMovement;
}
// Maximum of the total movement, in a window of 3 years before and after the current
// year (to avoid having the labels flash on and off too quickly).
function maxMovement(country, index) {
var window = 3;
var maxMovement = 0.0;
for (var i = index - window; i < index + window + 1; i++) {
var movement = movementInTimeWindow(country, i, window);
if (movement > maxMovement) maxMovement = movement;
}
return maxMovement;
}
// Use the precalculated value for "interest" to decide whether to show a label
// for this country and year. Thresholds set by trial and error.
function showLabel(d) {
return d.interest > 250 && radius(d) >= 1.7;
}
// Defines a sort order so that the smallest dots are drawn last (on top).
function radiusDescending(a, b) {
return d3.descending(radius(a), radius(b));
}
// Create an SVG element so we can add circles and labels inside it.
var svg = d3.select("#chart").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom);
var g = svg.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
// x axis and label.
g.append("g")
.attr("class", "axis")
.attr("transform", "translate(0," + height + ")")
.call(d3.axisBottom(x).ticks(10).tickFormat(d3.format(".0s")))
.append("text")
.attr("x", width)
.attr("y", -6)
.attr("text-anchor", "end")
.attr("fill", "black")
.text("income per capita, inflation-adjusted (dollars)");
// y axis and label.
g.append("g")
.attr("class", "axis")
.call(d3.axisLeft(y))
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", "0.71em")
.attr("text-anchor", "end")
.attr("fill", "black")
.text("life expectancy (years)");
// Groups for the circles and labels (with labels on top)
g.append("g")
.attr("id", "circles");
g.append("g")
.attr("id", "labels");
// Add the year label and initialize with the starting year.
var yearLabel = g.append("text")
.attr("id", "year")
.attr("text-anchor", "end")
.attr("y", height - 36)
.attr("x", width)
.text(startYear);
// Add an overlay so we can make the year interactive.
var box = yearLabel.node().getBBox();
var overlay = g.append("rect")
.attr("id", "overlay")
.attr("x", box.x)
.attr("y", box.y)
.attr("width", box.width)
.attr("height", box.height)
.on("mouseover", function() {
yearLabel.classed("active", true);
})
.on("mouseout", function() {
yearLabel.classed("active", false);
});
var yearScale = d3.scaleLinear()
.domain([0, numYears - 1])
.range([box.x + 10, box.x + box.width - 10])
.clamp(true);
d3.json("nations1865-2015.json", function(countries) {
// Original JSON is organized by country and then year to help it be
// more compact, but for visualization we want it by year first.
var data = [];
countries.forEach(function(country) {
for (var i = 0; i < numYears; i++) {
var year = startYear + i;
data[i] = data[i] || { year: year, countries: [] };
data[i].countries.push({
name: country.name,
region: country.region,
year: year,
income: country.income[i],
lifeExpectancy: country.lifeExpectancy[i],
population: country.population[i],
interest: maxMovement(country, i, numYears)
});
}
});
// Iterate through the years in the data set, changing the display
// for each year. Pause before moving to the next year.
var yearIndex = 0;
var yearInterval = 800;
var transitionDuration = yearInterval - 300;
var interval = d3.interval(function() {
displayYear(data[yearIndex], transitionDuration);
if (yearIndex++ >= numYears - 1) interval.stop();
}, yearInterval);
// Make the year display interactive, so the user can mouse over it to change it.
function mousemove() {
var yearIndex = Math.round(yearScale.invert(d3.mouse(g.node())[0]));
if (data[yearIndex]) {
interval.stop();
displayYear(data[yearIndex], 0);
}
}
d3.select("#overlay")
.on("mousemove", mousemove)
.on("touchmove", mousemove);
});
// Updates the display to show the specified year's data.
function displayYear(yearData, transitionDuration) {
var currentYear = yearData.year;
var currentYearData = yearData.countries.sort(radiusDescending);
// Find which countries meet the threshold of interest and show the largest N.
var labelData = currentYearData.filter(showLabel).slice(0, maxLabels);
// Function to determine whether a particular country has a label in this year.
var hasLabel = function(d) {
return (labelData.some(function(country) {
return country.name === d.name;
}));
};
// Transition for moving circles and labels.
var movementTransition = d3.transition()
.duration(transitionDuration)
.ease(d3.easeLinear);
// Transition for appearing circles and labels (shorter than for moving).
var appearTransition = d3.transition()
.duration(Math.min(200, transitionDuration / 2))
.ease(d3.easeLinear);
drawCircles(currentYearData, hasLabel, movementTransition, appearTransition);
drawLabels(labelData, movementTransition, appearTransition);
yearLabel.text(currentYear);
}
// Draw circles and labels corresponding to the given year.
function drawCircles(currentYearData, hasLabel, movementTransition, appearTransition) {
// Data join for circles. (No exit because we keep the same countries all the time).
var circle = d3.select("#circles").selectAll(".country")
.data(currentYearData, function(d) { return d.name; });
// Update: transition size, position, opacity, and stroke of all circles.
circle
.transition(movementTransition)
.attr("stroke", function(d) {
return hasLabel(d) ? "black" : null;
})
.attr("fill-opacity", opacity)
.attr("cx", xPosition)
.attr("cy", yPosition)
.attr("r", radius);
// Enter: what to do with new circles at the beginning of the animation.
var circleEnter = circle.enter()
.append("circle")
.attr("class", "country")
.attr("fill", color)
.attr("cx", xPosition)
.attr("cy", yPosition);
// Add a tooltip to each circle.
circleEnter
.append("title")
.text(function(d) { return d.name; });
// Make sure the entered circles are in the original data order.
circle.order();
// Now make them visible with a short transition.
circleEnter
.transition(appearTransition)
.attr("stroke", function(d) {
return hasLabel(d) ? "black" : null;
})
.attr("fill-opacity", opacity)
.attr("r", radius)
}
function labelTransform(d) {
return "translate(" + (xPosition(d) - radius(d)) + "," +
(yPosition(d) - radius(d)) + ")";
}
// Draw labels for selected circles: a main label plus a white outline.
function drawLabels(labelData, movementTransition, appearTransition) {
var label = d3.select("#labels").selectAll(".label")
.data(labelData, function(d) { return d.name; });
// Exit: remove labels for countries that no longer need them.
label.exit()
.transition(appearTransition)
.style("fill-opacity", 0)
.style("stroke-opacity", 0)
.remove();
// Update: change the size and position of existing labels.
label
.transition(movementTransition)
.style("font-size", textSize)
.attr("transform", labelTransform);
// Enter: add new labels and set up their basic appearance. Set their
// opacity to 0 so that we can make them visible with a transition.
var labelEnter = label.enter()
.append("g")
.attr("class", "label")
.attr("transform", labelTransform)
.style("font-size", textSize)
.style("fill-opacity", 0)
.style("stroke-opacity", 0);
// Add the white outline
labelEnter.append("text")
.text(function(d) { return d.name; })
.attr("class", "outline")
.attr("dx", "-5px")
.attr("dy", "0.35em")
.attr("text-anchor", "end");
// Add the label itself
labelEnter.append("text")
.text(function(d) { return d.name; })
.attr("dx", "-5px")
.attr("dy", "0.35em")
.attr("text-anchor", "end");
// Make sure the labels are in data order
label.order();
// Now use a transition to make the entered labels visible.
labelEnter
.transition(appearTransition)
.style("fill-opacity", 1)
.style("stroke-opacity", 1);
};
<!DOCTYPE html>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.js"></script>
<link href="https://fonts.googleapis.com/css?family=Nunito:400,600" rel="stylesheet">
<style>
text {
font-family: Nunito, sans-serif;
}
circle {
stroke-width: 2;
}
.outline {
stroke: white;
stroke-width: 2.5px;
}
.label {
pointer-events: none;
}
.axis text {
font-size: 14px;
}
#chart {
margin: 10px;
}
#year {
fill: #ddd;
font-family: Nunito, sans-serif;
font-size: 140px;
font-weight: 600;
}
#year.active {
fill: #aaa;
}
#overlay {
fill: none;
pointer-events: all;
cursor: ew-resize;
}
</style>
<div id="chart"></div>
<script src="countries.js"></script>
[{"name":"Afghanistan","region":"South Asia","income":[704,707,709,711,714,716,719,721,724,726,729,731,734,736,739,741,744,746,749,751,754,756,759,761,764,767,769,772,774,777,780,782,785,788,790,793,796,798,801,804,807,809,812,815,818,820,823,826,829,833,837,841,845,849,853,857,862,868,874,879,885,890,896,902,908,913,919,925,931,937,943,949,955,961,967,973,979,985,991,997,1004,1010,1016,1022,1029,1035,1050,1069,1116,1122,1125,1155,1134,1176,1187,1206,1192,1188,1185,1182,1182,1168,1173,1187,1178,1174,1092,1046,1137,1170,1201,1231,1119,1179,1155,1158,1284,1402,1454,1429,1384,1486,1230,1113,1087,1028,1022,941,810,725,872,895,921,947,972,962,862,1053,1097,1067,1146,1173,1298,1311,1548,1637,1695,1893,1884,1877,1925],"lifeExpectancy":[27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.4,27.4,27.4,27.4,27.4,27.4,27.4,27.4,27.4,27.4,27.3,27.3,27.3,27.3,27.3,27.3,27.3,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.1,27.1,27.1,27.1,27.1,27.1,27.1,27.1,27.1,27.1,27,27,27,27,7,27,27,27.1,27.2,27.3,27.4,27.4,27.5,27.6,27.7,27.8,27.9,28,28.1,28.2,28.3,28.4,28.5,28.6,28.6,28.7,28.8,28.9,29,29.1,29.2,29.3,29.4,29.5,29.6,29.7,29.8,30.1,30.7,31.4,32,32.6,33.2,33.8,34.4,35.1,35.7,36.3,36.9,37.5,38.2,38.8,39.4,40,40.6,41.2,41.8,42.2,42.6,43,43.5,44,44.5,45,44.3,43.5,43.5,44.3,44.2,43,41.3,42.8,43.5,45.2,46.9,50.2,50.3,50.2,50.4,50.5,50.1,50.4,50.6,50.7,50,50.8,51,51.1,51.6,52.1,52.5,52.9,53.2,53.6,54,54.5,54.8,55.2,55.5,56.2,56.9,57.6],"population":[4071829,4091401,4110973,4130546,4150118,4169690,4194691,4219691,4244692,4269692,4294693,4319693,4344694,4369694,4394695,4419695,4448743,4477790,4506838,4535885,4564933,4593981,4623028,4652076,4681123,4710171,4741278,4772385,4803492,4834599,4865706,4896813,4927920,4959027,4990134,5021241,5054258,5087275,5120293,5153310,5186327,5219344,5252361,5285379,5318396,5351413,5397653,5443893,5490133,5536373,5582614,5628854,5675094,5721334,5767574,5813814,5871923,5930033,5988142,6046252,6104361,6162470,6220580,6278689,6336799,6394908,6458825,6522743,6586660,6650577,6714495,6778412,6842329,6906246,6970164,7034081,7105885,7177688,7249492,7321296,7393100,7464903,7536707,7608511,7680314,7752118,7839426,7934798,8038312,8150037,8270024,8398309,8534913,8679848,8833127,8994793,9164945,9343772,9531555,9728645,9935358,10148841,10368600,10599790,10849510,11121097,11412821,11716896,12022514,12315553,12582954,12831361,13056499,13222547,13283279,13211412,12996923,12667001,12279095,11912510,11630498,11438949,11337932,11375768,11608351,12067570,12789374,13745630,14824371,15869967,16772522,17481800,18034130,18511480,19038420,19701940,20531160,21487079,22507368,23499850,24399948,25183615,25877544,26528741,27207291,27962207,28809167,29726803,30682500,31627506,32526562]},{"name":"Albania","region":"Europe & Central Asia","income":[742,743,745,747,748,750,761,773,784,796,808,820,832,844,857,870,882,896,909,922,936,950,964,979,993,1008,1022,1036,1051,1065,1080,1095,1110,1125,1141,1157,1172,1188,1203,1219,1236,1252,1269,1285,1302,1320,1342,1365,1389,1406,1424,1442,1460,1479,1498,1516,1535,1554,1572,1591,1610,1629,1647,1666,1685,1696,1707,1717,1728,1738,1748,1758,1768,1778,1788,1797,1807,1816,1825,1834,1842,1851,1859,1867,1875,1883,1965,1968,2048,2108,2222,2244,2387,2493,2594,2724,2744,2832,2926,3023,3129,3242,3359,3475,3587,3712,3849,3988,4174,4177,4178,4182,4188,4194,4201,4218,4227,4237,4248,4259,4267,4281,4294,4307,4325,4350,3081,2877,3172,3457,3941,4326,3909,4434,4912,5305,5730,5913,6274,6672,7075,7476,7977,8644,8994,9374,9640,9811,9961,10160,10620],"lifeExpectancy":[35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,19.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,36.2,37.1,38,38.9,39.8,40.7,41.6,42.5,43.4,42.9,41.9,41.4,39.9,36.9,33.9,46.9,49.9,51.4,52.3,53.2,54,54.2,54.7,55.3,56,56.8,57.8,58.8,59.9,61,62.1,63.1,64,64.7,65.3,65.6,65.9,66.1,66.3,66.5,66.7,67.1,67.5,68,68.6,69.1,69.5,70,70.4,70.7,70.9,71,71,71,71.5,72.2,72.7,73,73.2,73.4,73.5,73.4,73.4,73.4,73.6,73.8,73.9,73.9,73.8,74,74.2,74.4,74.5,74.4,74.4,74.4,74.5,74.7,74.9,75,75.2,75.5,75.7,75.8,75.9,76],"population":[581418,587142,592865,598589,604312,610036,616287,622538,628788,635039,641290,647541,653792,660042,666293,672544,679458,686373,693287,700202,707116,714030,720945,727859,734774,741688,749514,757340,765167,772993,780819,788645,796471,804298,812124,819950,828067,836184,844302,852419,860536,868653,876770,884888,893005,901122,907405,913689,919972,926256,932539,938822,945106,951389,957673,963956,969160,974363,979567,984770,989974,995177,1000381,1005584,1010788,1015991,1026713,1037435,1048157,1058879,1069601,1080322,1091044,1101766,1112488,1123210,1137206,1151202,1165198,1179194,1193191,1207187,1221183,1235179,1249175,1263171,1287499,1316086,1348097,1382881,1419969,1459089,1500152,1543224,1588478,1636054,1685901,1737645,1790533,1843596,1896125,1947786,1998695,2049147,2099657,2150602,2202040,2253842,2305999,2358467,2411229,2464338,2517869,2571845,2626290,2681245,2735329,2788315,2842620,2901590,2966799,3041003,3121336,3197064,3253659,3281453,3275438,3240613,3189623,3140634,3106727,3092034,3092471,3102898,3114851,3121965,3124093,3123112,3117045,3103758,3082172,3050741,3010849,2968026,2929886,2901883,2886010,2880667,2883281,2889676,2896679]},{"name":"Algeria","region":"Middle East & North Africa","income":[1197,1210,1223,1237,1250,1264,1278,1292,1306,1320,1334,1349,1364,1378,1393,1409,1424,1440,1455,1471,1487,1503,1520,1536,1553,1570,1587,1604,1622,1640,1657,1676,1694,1712,1731,1750,1769,1788,1808,1827,1847,1867,1888,1908,1929,1950,1998,2046,2096,2132,2169,2206,2244,2281,2319,2358,2418,2477,2537,2596,2654,2713,2771,2828,2885,2942,2998,3054,3110,3165,3220,3274,3328,3381,3434,3486,3538,3589,3640,3690,3740,3789,3838,3886,3933,3980,3957,4070,4077,4307,4359,4712,5166,5273,6147,6470,5602,4481,5551,5693,5916,5478,5811,6319,6747,7227,6427,7556,7581,7812,8119,8400,8888,9730,10293,10166,10160,10477,10696,10947,11030,10722,10378,9888,10115,10113,9748,9693,9279,9006,9168,9375,9322,9646,9810,9885,10203,10634,11251,11575,12077,12088,12289,12314,12285,12494,12606,12779,12893,13179,13434],"lifeExpectancy":[28.8,28.8,21,11,15,22,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.9,28.9,28.9,29.9,24.1,26.7,28,27.9,27.8,29.3,30.8,30.5,31.8,29.7,29.2,28.7,28.3,28.3,22.1,28.3,27.5,27.6,27.5,30,31.5,32.3,31.7,27.4,30.8,31.1,32.4,30.5,31.9,33.1,32.7,34.5,35.7,34,33.5,35.7,36.2,34.7,34.2,30,35.1,33.1,35.2,38.4,41.3,43.6,45.8,46.1,46.7,47.2,47.7,48.3,48.8,49.4,50,50.5,51.1,51.7,52.3,52.9,53.4,54,54.5,55.1,55.6,56.1,56.6,56.9,57.3,57.6,58,58.3,58.7,59.2,59.7,60.4,60.8,62.1,63.4,64.9,66.4,67.7,68.6,69.2,69.7,70.2,70.5,70.8,71.1,71.3,71.5,71.7,72.1,72.4,72.9,73,73.2,73.4,73.6,73.7,74.2,74.5,74.8,75,75.3,75.6,75.9,76.1,76.2,76.3,76.4,76.5],"population":[3673748,3701204,3728660,3756116,3783572,3811028,3844242,3877455,3910669,3943882,3977096,4010309,4043522,4076736,4109950,4143163,4181416,4219669,4257921,4296174,4334427,4372680,4410933,4449185,4487438,4525691,4567739,4609786,4651834,4693881,4735929,4777976,4820024,4862071,4904119,4946166,4991954,5037742,5083530,5129318,5175106,5220893,5266681,5312469,5358257,5404045,5470021,5535996,5601972,5667947,5733923,5799898,5865874,5931849,5997825,6063800,6145039,6226278,6307517,6388756,6469995,6551234,6632473,6713712,6794951,6876190,6968313,7060436,7152558,7244681,7336804,7428927,7521050,7613172,7705295,7797418,7904901,8012384,8119867,8227350,8334833,8442315,8549798,8657281,8764764,8872247,9039913,9216395,9405445,9609507,9829717,10065829,10316288,10578453,10848971,11124892,11404859,11690152,11985130,12295973,12626953,12980269,13354197,13744383,14144437,14550033,14960111,15377095,15804428,16247113,16709098,17190236,17690184,18212331,18760761,19337723,19943667,20575701,21228288,21893857,22565908,23241276,23917889,24591493,25257671,25912364,26554277,27180921,27785977,28362015,28904300,29411839,29887717,30336880,30766551,31183658,31590320,31990387,32394886,32817225,33267887,33749328,34261971,34811059,35401790,36036159,36717132,37439427,38186135,38934334,39666519]},{"name":"Angola","region":"Sub-Saharan Africa","income":[822,825,829,832,836,840,844,847,851,855,858,862,866,870,874,878,881,885,889,893,897,901,905,909,913,917,921,925,929,933,937,941,946,950,954,958,962,967,971,975,979,984,988,992,997,1001,1006,1010,1014,1045,1076,1108,1141,1174,1209,1245,1284,1324,1366,1408,1452,1498,1544,1593,1642,1693,1746,1801,1857,1915,1974,2036,2099,2164,2232,2301,2373,2447,2523,2601,2682,2765,2851,2940,3031,3125,3202,3281,3359,3225,3437,3326,3592,3728,3687,3775,4212,4034,4176,4573,4840,5043,5253,5093,5158,5397,5614,5511,5831,5880,5454,5044,4956,4572,4458,4443,4110,3970,3996,4099,4117,4135,4319,4455,4365,4232,4056,3656,2663,2669,2859,3091,3246,3376,3389,3387,3417,3759,3819,4087,4667,5445,6453,7103,7039,7047,7094,7230,7488,7546,7615],"lifeExpectancy":[27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,10.4,27,27,27.2,27.4,27.6,27.8,28,28.3,28.5,28.7,28.9,29.1,29.3,29.5,29.8,30,30.2,30.4,30.6,30.8,31,31.2,31.7,32.1,32.6,33,33.4,33.9,34.3,34.7,35.2,35.6,36,36.6,37.2,37.9,38.5,39.1,39.7,40.3,40.9,41.5,42.1,42.8,43.4,44,44.6,45.2,45.8,46.5,47.1,47.7,48.1,48.4,48.8,49.2,49.4,49.7,49.9,50.1,50.3,50.4,50.4,50.3,50.2,50,50,49.9,49.9,49.9,50.6,50.3,50.7,50.7,49.6,50.5,50.9,51,51.2,51.6,51.9,52.6,53,53.8,54.5,55.2,56,56.9,57.6,58.3,58.9,59.4,59.7,60.1,60.4,60.7,61],"population":[2198082,2215549,2233016,2250483,2267950,2285417,2304235,2323053,2341871,2360689,2379507,2398325,2417143,2435961,2454779,2473597,2493942,2514287,2534632,2554977,2575322,2595667,2616012,2636357,2656702,2677047,2699158,2721269,2743379,2765490,2787601,2809712,2831823,2853933,2876044,2898155,2922011,2945868,2969724,2993580,3017437,3041293,3065149,3089005,3112862,3136718,3161813,3186907,3212002,3237096,3262191,3287285,3312379,3337474,3362569,3387663,3413117,3438570,3464024,3489478,3514932,3540385,3565839,3591293,3616746,3642200,3669981,3697762,3725543,3753324,3781106,3808887,3836668,3864449,3892230,3920011,3963498,4006985,4050472,4093959,4137447,4180934,4224421,4267908,4311395,4354882,4439705,4529381,4621691,4714970,4808114,4900594,4992439,5084166,5176662,5270844,5367287,5465905,5565808,5665701,5765025,5863568,5962831,6066094,6177703,6300969,6437645,6587647,6750215,6923749,7107334,7299508,7501320,7717139,7952882,8211950,8497950,8807511,9128655,9444918,9745209,10023700,10285712,10544904,10820992,11127870,11472173,11848971,12246786,12648483,13042666,13424813,13801868,14187710,14601983,15058638,15562791,16109696,16691395,17295500,17912942,18541467,19183907,19842251,20520103,21219954,21942296,22685632,23448202,24227524,25021974]},{"name":"Antigua and Barbuda","region":"America","income":[1028,1035,1042,1049,1056,1063,1070,1077,1085,1092,1099,1107,1114,1122,1129,1137,1145,1152,1160,1168,1176,1184,1192,1200,1208,1216,1224,1233,1241,1249,1258,1266,1275,1283,1292,1301,1310,1319,1327,1336,1345,1355,1364,1373,1382,1391,1401,1410,1420,1455,1491,1528,1565,1604,1643,1684,1726,1770,1814,1860,1907,1955,2004,2054,2106,2159,2213,2269,2326,2384,2444,2505,2568,2633,2699,2767,2836,2907,2980,3055,3131,3210,3290,3373,3457,3544,3633,3723,3817,3912,4010,4110,4213,4319,4427,4537,4651,4767,4886,5008,5133,5262,5393,5528,5666,5807,6088,6378,6770,6888,6458,5885,6371,6691,7536,8169,8689,8827,9540,10388,11383,12600,14027,15441,16611,17154,17361,17226,17753,18400,17167,17830,18186,18483,18780,19319,18388,18676,19566,20395,21414,24016,26008,25736,22389,20567,19988,20577,20353,20797,21049],"lifeExpectancy":[33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,21.8,33.5,33.5,33.6,34.4,35.2,36.1,36.9,37.8,38.6,39.5,40.3,41.2,42,42.9,43.7,44.5,45.4,46.2,47.1,47.9,48.8,49.6,50.5,51.3,52.2,53,53.8,54.7,55.5,56.4,57.2,58.1,58.3,58.9,59.4,59.9,60.4,60.9,61.4,61.9,62.4,62.8,63.3,63.7,64.2,64.6,65,65.3,65.7,66.1,66.4,66.8,67.3,67.7,68,67.8,67.5,67.3,67.4,68,68.9,69.9,71,71.9,72.7,73,73.1,73,72.9,72.8,72.5,72.4,72.3,72.1,72.1,72.2,72.2,72.6,72.9,73.2,73.6,73.9,74.1,74.2,74.3,74.3,74.3,74.4,74.6,74.8,75.1,75.2,75.2,75.2,75.2,75.2,75.2],"population":[36039,35940,35842,35743,35645,35546,35514,35481,35449,35416,35384,35352,35319,35287,35254,35222,35328,35435,35541,35648,35754,35860,35967,36073,36180,36286,36150,36014,35878,35742,35606,35469,35333,35197,35061,34925,34644,34364,34083,33803,33522,33241,32961,32680,32400,32119,31907,31695,31483,31271,31060,30848,30636,30424,30212,30000,30365,30729,31094,31459,31824,32188,32553,32918,33282,33647,34132,34617,35101,35586,36071,36556,37041,37525,38010,38495,39276,40056,40837,41617,42398,43179,43959,44740,45520,46301,48306,49887,51092,51979,52611,53062,53411,53744,54143,54681,55403,56311,57368,58500,59653,60818,62002,63176,64307,65369,66338,67205,67972,68655,69253,69782,70223,70508,70553,70301,69750,68950,67958,66863,65744,64605,63484,62538,61967,61906,62412,63434,64868,66550,68349,70245,72232,74206,76041,77648,78972,80030,80904,81718,82565,83467,84397,85350,86300,87233,88152,89069,89985,90900,91818]},{"name":"Argentina","region":"America","income":[2861,2902,2944,2986,3028,3072,3115,3160,3205,3251,3297,3266,3502,3218,3260,3097,3051,3748,4086,4249,4852,4721,4896,5531,5896,5228,4786,5569,5728,6427,6927,7449,5820,6139,7040,6002,6340,6034,6727,7255,8014,8047,7844,8250,8275,8495,8253,8541,8233,7004,6716,6363,5698,6598,6680,7002,6886,7142,7622,7892,7531,7600,7840,8020,8078,7439,6709,6293,6402,6715,6810,6689,6997,6839,6923,6859,7042,6943,6724,7309,6898,7289,7862,8041,7687,7540,7612,7019,7198,7305,7631,7652,7863,8157,7449,7868,8254,7950,7600,8227,8818,8709,8782,9003,9610,9951,10167,10209,10419,10809,10571,10408,10918,10406,10976,10982,10221,9765,10030,10102,9262,9810,9936,9620,8820,8539,9333,10130,10602,11108,10673,11150,11935,12268,11722,11504,10875,9574,10318,11135,12039,12913,13873,14646,14605,15765,16972,17101,17629,17519,17344],"lifeExpectancy":[33.2,33.2,33.2,33.2,33.2,33.2,33.2,33.2,33.2,33.2,33.2,33.2,33.2,33.1,33.1,33.1,33,32.9,32.8,32.7,32.6,32.9,33.2,33.4,33.7,34,33.9,33.7,33.6,33.4,33.3,34,34.7,35.4,36.1,36.8,37.4,38,38.5,39.1,39.7,40.5,41.2,42,42.7,43.5,44,44.6,45.1,45.7,46.2,47,47.8,41.8,49.4,50.2,50.7,51.1,51.6,52.1,52.6,52.9,53.2,53.6,53.9,54.2,54.2,54.2,54.2,54.2,54.2,55.1,56.1,57.1,58,59,59.5,60.1,60.7,61.3,61.8,61.7,61.6,61.5,61.3,61.2,61.5,62.1,62.6,63.1,63.5,63.9,64.2,64.4,64.6,64.7,64.9,64.9,65,65.1,65.2,65.3,65.4,65.6,65.8,66.1,66.4,67,67.5,67.7,67.9,67.9,68.4,69.2,69.9,70.2,70.3,70.7,70.8,71,71.9,72,72.1,72.2,72.4,72.6,72.7,72.8,73.1,73.4,73.5,73.5,73.6,73.7,74,74.3,74.4,74.3,74.5,75,75.4,75.5,75.4,75.5,75.6,75.8,75.9,75.9,76,76.1,76.2],"population":[1639110,1682665,1726220,1769775,1813331,1856886,1920513,1984140,2047767,2111394,2175021,2238648,2302275,2365902,2429529,2493156,2584068,2674979,2765891,2856803,2947715,3038626,3129538,3220450,3311361,3402273,3537709,3673145,3808582,3944018,4079454,4214890,4350326,4485763,4621199,4756635,4966238,5175842,5385445,5595048,5804652,6014255,6223858,6433461,6643065,6852668,7055891,7259113,7462336,7665558,7868781,8072004,8275226,8478449,8681671,8884894,9186230,9487565,9788901,10090236,10391572,10692907,10994243,11295578,11596914,11898249,12128505,12358762,12589018,12819275,13049531,13279787,13510044,13740300,13970557,14200813,14495765,14790717,15085670,15380622,15675574,15970526,16265478,16560431,16855383,17150335,17507132,17866097,18224150,18579041,18929350,19274526,19614848,19951326,20285530,20619075,20953079,21287682,21621845,21953926,22283389,22608747,22932201,23261273,23605992,23973062,24366442,24782950,25213388,25644505,26066975,26477153,26878567,27277742,27684530,28105889,28543366,28993989,29454739,29920907,30388781,30857242,31326473,31795515,32263559,32729740,33193920,33655149,34110912,34558114,34994818,35419683,35833965,36241578,36648054,37057453,37471535,37889443,38309475,38728778,39145491,39558750,39969903,40381860,40798641,41222875,41655616,42095224,42538304,42980026,43416755]},{"name":"Armenia","region":"Europe & Central Asia","income":[613,615,617,620,622,625,627,629,632,634,637,639,642,644,647,649,652,654,657,659,662,635,741,711,660,656,599,655,740,840,776,853,837,857,908,886,906,983,913,1008,890,849,814,887,919,979,902,973,1020,972,998,967,806,671,560,531,504,547,593,642,696,755,818,887,962,1002,1009,991,1025,1116,1273,1356,1464,1456,1511,1444,1413,1383,1353,1324,1296,1268,1405,1583,1724,1862,1834,1914,1958,2013,2141,2299,2299,2421,2345,2515,2611,2636,2536,2823,2945,3051,3151,3300,3313,3533,3589,3571,3832,3871,3810,3917,3937,3964,3877,3815,3783,3809,3862,3840,3805,3890,3872,3886,3889,3736,3329,1973,1842,1988,2169,2333,2438,2636,2740,2919,3214,3654,4182,4635,5297,6020,6877,7383,6358,6508,6812,7291,7527,7763,7763],"lifeExpectancy":[32.9,32.4,31.9,31.4,31.4,31.5,31.5,31.6,31.6,31.8,32,32.2,32.4,32.6,32.8,33,33.2,33.4,33.6,33.8,34,34.2,34.4,34.6,34.8,35,35.2,35.4,35.6,35.8,36,36.2,36.4,36.2,36.1,35.9,36.1,36.4,36.6,36.9,37.1,37.4,37.6,37.9,38.1,38.4,41.4,41.8,39.6,39.2,38.8,38.8,35.8,27,37,28,37.9,38.8,39.5,41.9,40.9,44,43.2,44.6,43.3,42.5,40.8,38.1,31.5,44.4,45.8,47.4,46.3,47.8,50.1,47.5,25.6,22,19.9,27.3,36.7,53.9,45.7,53.7,56.4,58.6,58.7,59,59.3,59.6,59.9,60.2,60.5,60.8,61.1,61.5,61.8,62.1,62.4,62.7,63.1,63.4,63.7,64,64.3,64.5,65.1,65.6,66.1,66.7,67.1,67.6,68,68.4,68.7,69,69.4,69.6,69.9,70.2,70.5,70.7,70.7,68.2,70.3,70.1,69.8,69.4,69.2,69.2,69.4,69.7,70.1,70.6,71,71.4,71.7,71.9,72.1,72.1,72.2,72.2,72.3,72.5,72.6,72.9,73.2,73.5,73.8,74.1,74.4],"population":[624189,629841,635493,641146,646798,652450,658601,664751,670902,677053,683204,689354,695505,701656,707806,713957,720683,727409,734135,740861,747588,754314,761040,767766,774492,781218,788628,796037,803447,810856,818266,825675,833085,840494,847904,855313,863394,871475,879556,887637,895719,903800,911881,919962,928043,936124,945019,953913,962808,971702,980597,989492,998386,1007281,1016175,1025070,1034864,1044657,1054451,1064244,1074038,1083832,1093625,1103419,1113212,1123006,1133735,1144464,1155194,1165923,1176652,1187381,1198110,1208840,1219569,1230298,1242619,1254940,1267260,1279581,1291902,1304223,1316544,1328864,1341185,1353506,1382982,1419913,1463017,1511188,1563508,1619242,1677837,1738902,1802171,1867396,1934239,2002170,2070427,2138133,2204650,2269475,2332624,2394635,2456370,2518408,2580894,2643464,2705584,2766495,2825650,2882831,2938181,2991954,3044564,3096298,3145885,3192877,3239212,3287588,3339147,3396511,3457054,3510439,3542720,3544695,3511912,3449497,3369673,3289943,3223173,3173425,3137652,3112958,3093820,3076098,3060036,3047249,3036420,3025982,3014917,3002161,2988117,2975029,2966108,2963496,2967984,2978339,2992192,3006154,3017712]},{"name":"Australia","region":"East Asia & Pacific","income":[4579,4715,5155,5235,5132,5431,5473,5897,6347,6366,6871,6654,6703,7105,6986,7120,7403,6752,7439,7155,7353,7200,7704,7492,7898,7418,7766,6650,6173,6270,5807,6137,5697,6483,6398,6688,6398,6372,6796,7161,7141,7518,7701,7830,8311,8695,8509,8491,8579,8353,8128,8089,7936,7613,7793,7867,8100,8345,8549,8913,9129,9155,9101,8944,8628,7714,7129,7469,7921,8272,8689,9010,9381,9607,9537,10057,11069,12236,12555,11997,11270,10744,10856,11349,11788,12073,12229,12084,12228,12694,13082,13217,13191,13545,14076,14346,14126,14742,15357,16098,16601,16756,17570,18261,18949,19719,20176,20385,21185,21383,21708,22372,22373,22763,23697,23872,24308,23884,23584,24934,25875,26057,26969,27757,28556,28604,28122,27895,28732,29580,30359,31145,32013,33085,34346,35253,35452,36375,37035,38130,38840,39416,40643,41312,41170,41330,41706,42522,42840,43219,44056],"lifeExpectancy":[34,34,34,34,34,34,34.6,35.1,35.6,36.2,36.7,37.2,37.8,38.3,38.8,39.3,39.9,40.4,40.9,41.5,42,42.5,43,43.6,44.1,44.6,45.2,45.7,46.2,46.8,47.3,47.8,48.3,48.9,49.4,49.9,50.5,51,51.5,52,52.6,53.1,53.6,54.2,54.7,55.2,55.7,56.3,56.8,57.3,57.9,58.4,58.9,54.8,60,60.5,61,62.9,61.7,62.5,63.2,63,62.9,63,63.2,65,65.4,65.7,65.6,64.9,65.2,65.3,65.9,65.9,65.9,66.3,66.2,66,66.5,68.1,68.6,68.1,68.7,68.6,69.2,69.1,68.8,69.2,69.8,70,70.3,70.2,70.5,71,70.6,71,71.3,71.1,71.2,70.8,71.2,71,71.3,70.9,71.3,71,71.3,71.7,72,72.1,72.5,73,73.4,73.8,74.2,74.5,74.8,75,75.3,75.5,75.7,76,76.2,76.4,76.6,77,77.4,77.7,78,78.2,78.4,78.6,78.9,79.1,79.3,79.7,80.1,80.4,80.7,81,81.2,81.4,81.5,81.5,81.6,81.7,81.8,81.8,81.8,81.8,81.8],"population":[1490131,1536947,1583763,1630580,1677397,1724213,1777092,1829972,1882851,1935731,1988610,2041489,2094369,2147248,2200128,2253007,2336587,2420167,2503747,2587327,2670908,2754488,2838068,2921648,3005228,3088808,3154298,3219788,3285278,3350768,3416258,3481748,3547238,3612728,3678218,3743708,3810158,3876608,3943058,4009508,4075959,4142409,4208859,4275309,4341759,4408209,4501931,4595653,4689375,4783097,4876819,4970540,5064262,5157984,5251706,5345428,5458266,5571103,5683941,5796778,5909616,6022453,6135291,6248128,6360966,6473803,6531624,6589445,6647266,6705087,6762908,6820728,6878549,6936370,6994191,7052012,7164545,7277078,7389612,7502145,7614678,7727211,7839744,7952278,8064811,8177344,8417640,8627052,8821938,9014508,9212824,9420602,9637408,9859257,10079604,10292328,10494911,10691220,10892700,11114995,11368011,11657281,11975795,12305530,12621240,12904760,13150591,13364238,13552190,13725400,13892674,14054956,14211657,14368543,14532401,14708323,14898019,15101227,15318254,15548591,15791043,16047026,16314778,16585905,16849253,17096869,17325818,17538387,17738428,17932214,18124770,18318340,18512971,18709175,18906936,19107251,19308681,19514385,19735255,19985475,20274282,20606228,20975949,21370348,21770690,22162863,22542371,22911375,23270465,23622353,23968973]},{"name":"Austria","region":"Europe & Central Asia","income":[3321,3344,3367,3391,3415,3439,3662,3666,3556,3691,3685,3744,3847,3950,3898,3928,4063,4062,4203,4288,4235,4345,4617,4580,4509,4725,4858,4925,4917,5162,5258,5296,5366,5625,5699,5704,5681,5856,5861,5905,6186,6374,6715,6693,6620,6665,6805,7076,6984,5786,5329,5269,5177,5105,4507,4804,5263,5699,5614,6230,6615,6688,6852,7131,7194,6957,6364,5677,5459,5482,5576,5733,6028,6786,7793,7518,7993,7534,7675,7175,3245,3675,4063,5177,6158,6919,7382,7386,7692,8458,9373,9998,10578,10919,11175,12027,12584,12800,13225,13915,14213,14898,15228,15814,16743,17865,18698,19747,20602,21381,21364,22385,23427,23364,24684,25259,25187,25637,26435,26522,27100,27707,28136,28951,30067,31053,31802,32113,32017,32660,33480,34237,34952,36157,37382,38548,38919,39370,39475,40292,40875,42036,43418,43952,42171,42861,44029,44216,44059,43906,44401],"lifeExpectancy":[34.4,34.4,34.4,34.4,34.4,34.4,34.5,34.5,34.6,34.6,34.7,34.7,34.8,34.8,34.9,34.9,35,35.2,35.5,35.7,35.9,36.1,36.4,36.6,36.8,37.1,37.3,37.8,38.2,38.7,39.2,39.6,40.1,40.6,41.1,41.5,42,41,40.1,40.7,41.4,42,42.6,43.2,43.9,44.5,45.1,45.7,46.2,46.8,47.4,47.9,48.5,32.4,49.6,50.2,50.8,51.4,51.9,52.5,53.1,53.6,54.2,54.8,55.4,55.9,56.5,56.8,57.1,57.4,57.7,58,58.3,58.6,58.2,57.9,56.6,54.2,50.3,39.2,31.5,56.1,61.4,63.3,63.5,65,65.4,66.9,67.4,67.4,67.7,67.9,67.6,68.6,68.6,68.9,69.9,69.7,69.8,70.3,70.1,70.4,70.3,70.5,70.2,70.3,70.4,70.6,71,71.1,71.5,71.9,72.2,72.4,72.5,72.7,72.9,73,73.3,73.6,74,74.5,75,75.4,75.6,75.7,75.8,76,76.2,76.5,76.8,77.2,77.6,77.8,78,78.2,78.4,78.7,79,79.3,79.6,80,80.2,80.4,80.4,80.5,80.7,80.7,80.8,80.9,81],"population":[4396292,4428365,4460438,4492512,4524585,4556658,4595695,4634732,4673768,4712805,4751842,4790879,4829916,4868952,4907989,4947026,4993174,5039321,5085469,5131617,5177765,5223912,5270060,5316208,5362355,5408503,5465625,5522747,5579870,5636992,5694114,5751236,5808358,5865481,5922603,5979725,6042568,6105411,6168254,6231097,6293940,6356783,6419626,6482469,6545312,6608155,6593280,6578404,6563529,6548653,6533778,6518903,6504027,6489152,6474276,6459401,6481867,6504332,6526798,6549264,6571730,6594195,6616661,6639127,6661592,6684058,6685725,6687391,6689058,6690724,6692391,6694058,6695724,6697391,6699057,6700724,6724296,6747868,6771440,6795012,6818585,6842157,6865729,6889301,6912873,6936445,6930348,6929289,6932427,6939230,6949482,6963298,6981105,7003575,7031513,7065525,7105654,7151077,7199962,7249855,7298794,7345865,7390853,7433328,7473058,7509746,7543451,7573660,7598925,7617432,7628138,7630536,7625724,7616309,7605888,7597269,7591618,7588957,7589573,7593397,7600514,7610435,7623700,7642479,7669601,7706571,7755143,7813393,7874675,7929911,7972833,8000453,8015256,8023166,8032953,8050884,8078877,8114698,8155466,8196624,8234858,8269372,8301290,8331465,8361362,8391986,8423559,8455477,8486962,8516916,8544586]},{"name":"Azerbaijan","region":"Europe & Central Asia","income":[998,1004,1009,1015,1021,1026,1032,1038,1043,1049,1055,1061,1067,1073,1078,1084,1090,1096,1103,1109,1115,1071,1251,1203,1117,1112,1018,1113,1261,1432,1324,1457,1432,1469,1557,1522,1559,1693,1575,1740,1539,1470,1411,1540,1598,1703,1573,1698,1782,1700,1749,1553,1363,834,718,721,660,767,884,1121,1402,1575,1642,1728,1749,1830,1848,1820,1890,2065,2363,2526,2737,2731,2844,2727,2678,2629,2582,2535,2489,2444,2717,3071,3357,3638,3595,3765,3864,3987,4254,4583,4597,4859,4723,5081,5285,5348,5155,5751,6012,6241,6458,6778,6819,7285,7416,7395,7952,8076,7994,8263,8351,8456,8315,8228,8205,8307,8469,8466,8435,8673,8679,8760,8814,8513,8323,6346,4806,3808,3320,3329,3488,3801,4047,4459,4863,5338,5891,6435,8052,10711,13243,14365,15394,15950,15754,15888,16593,16710,16986],"lifeExpectancy":[28.1,27.6,27.1,26.5,26.6,26.6,26.7,26.7,26.8,27,27.2,27.4,27.6,27.8,28,28.2,28.4,28.6,28.8,29,29.2,29.4,29.6,29.8,30,30.2,30.4,30.6,30.8,31,31.2,31.4,31.6,31.4,31.2,31.1,31.3,31.6,31.8,32.1,32.3,32.6,32.8,33.1,33.3,33.6,36.5,36.9,34.8,34.4,34,34,31,22,32,30,32.9,33.8,34.8,37.2,36.2,39.3,38.6,40,38.7,37.9,36.1,33.5,25.9,39.9,41.4,43,41.9,43.5,45.8,43.3,28.5,24.9,22.9,30,39.9,49.8,41.7,49.7,52.4,54.6,54.7,55,55.4,55.7,56,56.3,56.7,57,57.3,57.6,58,58.3,58.6,59,59.3,59.6,60,60.3,60.6,60.8,61.5,62,62.6,63.2,63.7,64.3,64.6,64.9,65.2,65.3,65.5,65.6,65.8,66,66.2,66.3,66.4,66.4,66.4,66.1,65.9,65.1,65.1,65.1,65.6,66.1,66.5,67,67.5,68,68.5,68.9,69.1,69.3,69.5,69.9,70.3,70.6,71,71.4,71.7,72,72.3,72.6,72.9],"population":[1331008,1343098,1355189,1367279,1379370,1391460,1404620,1417780,1430940,1444100,1457260,1470420,1483580,1496740,1509900,1523060,1537455,1551850,1566245,1580640,1595036,1609431,1623826,1638221,1652616,1667011,1682874,1698737,1714599,1730462,1746325,1762188,1778051,1793913,1809776,1825639,1842944,1860249,1877554,1894859,1912165,1929470,1946775,1964080,1981385,1998690,2017750,2036810,2055870,2074930,2093991,2113051,2132111,2151171,2170231,2189291,2210300,2231308,2252317,2273325,2294334,2315343,2336351,2357360,2378368,2399377,2422402,2445426,2468451,2491475,2514500,2537525,2560549,2583574,2606598,2629623,2656260,2682898,2709535,2736173,2762810,2789447,2816085,2842722,2869360,2895997,2965338,3045429,3133703,3228233,3327733,3431597,3539858,3653083,3772187,3897889,4030130,4167558,4307315,4445653,4579759,4708485,4832098,4950977,5066080,5178160,5287272,5393176,5496061,5596160,5693796,5789050,5882395,5975045,6068531,6163990,6261942,6362289,6464775,6568857,6674107,6779970,6886428,6994139,7104058,7216503,7332519,7450920,7567156,7675128,7770806,7852287,7921789,7984531,8047997,8117742,8195648,8280599,8371536,8466304,8563398,8662137,8763359,8868713,8980488,9099893,9227512,9361477,9497496,9629779,9753968]},{"name":"Bahamas","region":"America","income":[1962,1976,1989,2003,2016,2030,2043,2057,2071,2085,2099,2113,2128,2142,2156,2171,2186,2200,2215,2230,2245,2261,2276,2291,2307,2322,2338,2354,2370,2386,2402,2418,2434,2451,2467,2484,2501,2518,2535,2552,2569,2586,2604,2622,2639,2657,2675,2693,2711,2809,2911,3016,3125,3238,3355,3476,3604,3738,3876,4020,4169,4323,4483,4649,4821,4999,5184,5375,5574,5780,5994,6215,6445,6683,6930,7186,7451,7726,8011,8307,8614,8932,9261,9603,9957,10324,10705,11100,11509,11933,12373,12829,13302,13792,14300,14826,15618,16405,17248,18160,19156,20007,21048,21975,23154,21210,21018,19856,20957,17127,14320,14767,15790,17660,21812,22747,21634,22519,23560,23646,24154,24343,24818,24959,25109,24281,22841,21555,21222,21516,22119,22758,22971,23799,25193,25858,26078,26260,25387,25073,25397,25530,25412,24373,22950,22915,22689,22841,22518,22439,22818],"lifeExpectancy":[35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,35.2,22.8,35.2,35.2,35.1,35.9,36.7,37.4,38.2,39,39.7,40.5,41.3,42.1,42.8,43.6,44.4,45.1,45.9,46.7,47.5,48.2,49,49.8,50.5,51.3,52.1,52.8,53.6,54.4,55.2,55.9,56.7,57.5,57.6,58,58.4,58.7,59.1,59.4,59.7,60,60.3,60.6,60.9,61.2,61.4,61.7,61.9,62.2,62.4,62.7,62.9,63.1,63.7,64.2,64.9,65.5,65.9,66.2,66.3,66.2,66,65.9,66.1,66.4,66.7,67,67.2,67.3,67.5,67.8,68.2,68.6,68.8,68.9,69,69,69,69.2,69.4,69.6,70,70.3,70.6,70.8,71.2,71.9,72.1,72.1,72.1,72.2,72.3,72.4,72.5,72.6,72.5,72.4,72.3],"population":[36206,36722,37238,37755,38271,38787,39243,39698,40154,40610,41066,41521,41977,42433,42888,43344,43791,44239,44686,45133,45581,46028,46475,46922,47370,47817,48346,48874,49403,49931,50460,50988,51516,52045,52574,53102,53375,53647,53920,54193,54466,54738,55011,55284,55556,55829,55590,55350,55111,54872,54633,54393,54154,53915,53675,53436,54035,54633,55232,55830,56429,57028,57626,58225,58823,59422,60161,60900,61639,62378,63117,63856,64595,65334,66073,66812,68040,69267,70495,71722,72950,74178,75405,76633,77860,79088,79984,81428,83371,85776,88619,91893,95604,99767,104406,109526,115108,121083,127331,133697,140049,146364,152607,158629,164250,169356,173867,177844,181489,185097,188882,192905,197118,201511,206038,210660,215404,220275,225185,230016,234684,239132,243391,247576,251855,256338,261117,266133,271165,275903,280151,283792,286968,290054,293572,297891,303138,309170,315757,322539,329243,335801,342259,348587,354780,360830,366711,372388,377841,383054,388019]},{"name":"Bahrain","region":"Middle East & North Africa","income":[1815,1836,1857,1878,1900,1921,1943,1965,1988,2010,2033,2057,2080,2104,2128,2152,2177,2201,2226,2252,2278,2303,2330,2356,2383,2410,2438,2466,2494,2522,2551,2580,2610,2639,2669,2700,2701,2703,2705,2706,2708,2710,2711,2713,2715,2717,2718,2720,2722,2723,2725,2727,2728,2730,2732,2733,2748,2763,2778,2793,2808,2823,2838,2853,2868,2883,2898,2913,2927,2942,3272,3637,4044,4496,4999,5557,6178,6868,7635,8487,9434,10487,11656,12956,14401,16007,16689,17391,18107,18839,19556,20266,20938,21541,22078,22540,22941,23418,24022,24751,25662,26651,27726,28802,29943,31232,31102,33824,35688,36456,33509,41062,40589,36597,40292,44996,42034,38841,38395,41099,32131,29586,28401,31346,32515,35398,38315,39854,43894,42712,43244,43781,43798,44399,44619,45063,44169,43654,43914,44206,44031,43358,43251,42507,40825,40553,40083,40732,42444,43963,44138],"lifeExpectancy":[30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,25.1,30.3,30.3,30.3,30.4,30.4,30.4,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.7,30.7,30.7,30.8,31.5,32.3,33,33.8,34.5,35.3,36.1,36.8,37.6,38.3,39.1,39.8,40.6,41.3,42.1,42.5,43.5,44.4,45.5,46.6,47.8,49,50.4,51.7,53.1,54.5,55.9,57.2,58.5,59.8,61,62.1,63.1,64.1,65,65.6,66.3,67,67.7,68.2,68.8,69.4,69.8,70.3,70.6,71,71.2,71.3,71.5,71.5,71.4,71.4,71.3,71.4,71.4,71.6,71.8,72.1,72.4,72.7,72.9,73.1,73.2,73.5,73.6,73.8,74.1,74.4,74.8,75.2,75.7,76.4,77.1,77.7,78.2,78.4,78.9,79,79.1,79.2],"population":[64946,65041,65136,65231,65327,65422,65697,65972,66246,66521,66796,67071,67346,67620,67895,68170,68558,68945,69333,69720,70108,70495,70883,71270,71658,72045,72456,72868,73279,73690,74102,74513,74924,75335,75747,76158,76592,77025,77459,77893,78327,78760,79194,79628,80061,80495,81182,81869,82556,83243,83930,84616,85303,85990,86677,87364,88218,89071,89925,90779,91633,92486,93340,94194,95047,95901,96838,97775,98712,99649,100587,101524,102461,103398,104335,105272,106306,107340,108375,109409,110443,111477,112511,113546,114580,115614,116919,119689,123593,128333,133653,139332,145185,151067,156865,162501,167924,173107,178048,182774,187348,191782,196203,200953,206469,213102,220808,229588,239860,252139,266686,283843,303236,323511,342829,359902,374125,385950,396447,407223,419425,433487,448994,465235,481126,495944,509654,522748,535692,549151,563730,579855,597834,618054,640904,666855,694893,725365,761595,807989,867014,940808,1026568,1115777,1196774,1261319,1306014,1333577,1349427,1361930,1377237]},{"name":"Bangladesh","region":"South Asia","income":[880,880,881,881,881,881,883,885,887,890,892,894,896,898,901,903,905,907,909,912,939,907,947,954,927,968,878,947,969,982,957,885,1045,1045,962,995,1009,1087,1096,1094,1068,1092,1020,1028,1163,1158,1148,1145,1118,1179,1149,1182,1159,1010,1149,1057,1133,1170,1122,1167,1171,1197,1187,1188,1227,1225,1202,1200,1186,1182,1156,1186,1152,1140,1151,1174,1183,1165,1199,1174,1143,1072,1066,1066,1080,1027,1031,1046,1045,1046,972,1056,1017,979,1011,1048,1087,1062,1147,1138,1177,1169,1122,1202,1195,1226,1142,986,971,1069,1035,1059,1038,1082,1101,1079,1085,1071,1097,1131,1142,1169,1196,1208,1216,1274,1287,1327,1360,1383,1424,1457,1492,1538,1579,1632,1685,1721,1774,1840,1934,2038,2158,2265,2355,2459,2589,2725,2853,2991,3161],"lifeExpectancy":[24,25.2,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.3,25,24.8,24.6,24.4,24.1,23.9,23.7,23.4,23.2,23.1,23,22.8,22.7,21.6,21,22.4,22.2,22,20,19,21.9,21.8,21.8,21.7,21.7,21.6,21.6,21.5,21.5,21.7,21.8,22,22.2,22.4,22.5,22.7,22.9,23,23.2,23.4,13.1,23.7,23.9,24,24.1,24.2,24.3,24.4,24.6,25.2,25.9,26.6,27.3,28,28.7,29.4,30.1,30.8,31.5,32.1,32.8,33.5,34.2,34.9,32.5,22.2,24.6,35.6,41.5,35.5,37,40.3,41.1,41.3,41.5,41.8,42.2,42.5,42.9,43.3,43.8,44.2,44.7,45.3,45.8,46.3,46.8,47.1,47.1,46.8,46.2,45.5,44.7,50.9,51.1,51.3,51,51.9,52.2,52.5,52.9,53.3,53.8,54.2,54.7,55.1,55.6,55.8,56.5,56.9,57.3,57.9,58.5,57.2,60.1,60.9,61.6,62.4,63.2,63.9,64.6,65.2,65.8,66.3,66.8,67.2,67.6,67.9,68.1,68.1,68.4,68.5,68.6,68.9,69.2,69.5,69.8,70.1],"population":[24211616,24320891,24430167,24539443,24648718,24757994,24891688,25025381,25159075,25292769,25426463,25560156,25693850,25827544,25961237,26094931,26246946,26398961,26550975,26702990,26855005,27007020,27159035,27311049,27463064,27615079,27776641,27938203,28099765,28261327,28422889,28584451,28746013,28907575,29069137,29230699,29401282,29571866,29742449,29913032,30083616,30254199,30424782,30595365,30765949,30936532,31099574,31262616,31425658,31588700,31751742,31914783,32077825,32240867,32403909,32566951,32745997,32925043,33104089,33283135,33462182,33641228,33820274,33999320,34178366,34357412,34666238,34975063,35283889,35592714,35901540,36210365,36519191,36828016,37136842,37445667,37490568,37535470,37580371,37625272,37670174,37715075,37759976,37804877,37849779,37894680,38706927,39493326,40302266,41170306,42122171,43170261,44315145,45547037,46848270,48200702,49593610,51030604,52532595,54129390,55835020,57675529,59625294,61585520,63422570,65048701,66417450,67578486,68658472,69837960,71247153,72930206,74848466,76948378,79141947,81364176,83599582,85868228,88181211,90559540,93015182,95550798,98149262,100779551,103400571,105983136,108509679,110987459,113442354,115913710,118427768,120987124,123574107,126169583,128746273,131280739,133776064,136228456,138600174,140843786,142929979,144839238,146592687,148252473,149905836,151616777,153405612,155257387,157157394,159077513,160995642]},{"name":"Barbados","region":"America","income":[1241,1249,1257,1266,1274,1283,1292,1300,1309,1318,1327,1336,1345,1354,1363,1372,1382,1391,1400,1410,1419,1429,1439,1448,1458,1468,1478,1488,1498,1508,1518,1529,1539,1549,1560,1570,1581,1592,1602,1613,1624,1635,1646,1657,1668,1680,1691,1702,1714,1740,1766,1792,1819,1847,1875,1903,1932,1961,1991,2022,2053,2084,2116,2148,2181,2215,2248,2283,2318,2353,2389,2425,2462,2500,2538,2577,2616,2656,2696,2737,2779,2821,2864,2907,2952,2996,3149,3310,3478,3656,3842,4038,4243,4459,4687,4925,5289,5747,5432,5681,6309,6544,7223,7705,8261,9013,9109,9148,9277,10465,10203,10605,10981,11501,12364,12885,12557,11845,11793,12097,12115,12619,12828,13162,13524,12992,12573,11911,11995,12437,12587,12783,13564,14081,14400,14677,14244,14275,14485,14620,15128,15913,16099,16075,15334,15297,15336,15261,12867,12829,12984],"lifeExpectancy":[32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,20.8,32.1,32.1,32.2,33.1,34,34.9,35.8,36.7,37.6,38.5,39.4,40.3,41.2,42.1,43,43.9,44.8,45.7,46.6,47.5,48.4,49.3,50.2,51.1,52,52.9,53.8,54.7,55.6,56.5,57.4,58.3,58.7,59.3,59.9,60.5,61.1,61.7,62.3,62.8,63.4,63.9,64.5,65,65.5,66,66.5,67,67.5,67.9,68.4,68.8,68.9,69.1,69.2,69.5,69.7,70.1,70.5,71,71.5,72.1,72.6,73,73.2,73.3,73.3,73.2,73.1,73,73,73.1,73.2,73.2,73.3,73.3,73.4,73.5,73.6,73.8,74,74.3,74.5,74.5,74.6,74.9,75,75.1,75.2,75.3,75.3,75.4,75.5,75.5,75.6,75.7,75.8],"population":[155329,156504,157680,158855,160031,161206,162193,163179,164166,165152,166139,167126,168112,169099,170085,171072,172161,173251,174340,175430,176519,177608,178698,179787,180877,181966,182882,183797,184713,185628,186544,187459,188374,189290,190206,191121,189444,187767,186090,184413,182737,181060,179383,177706,176029,174352,172754,171156,169557,167959,166361,164763,163165,161566,159968,158370,159468,160567,161665,162763,163862,164960,166058,167156,168255,169353,170849,172345,173841,175337,176833,178328,179824,181320,182816,184312,186980,189649,192317,194985,197654,200322,202990,205658,208327,210995,215704,219636,222808,225263,227076,228349,229214,229826,230350,230934,231674,232584,233587,234547,235373,236043,236620,237199,237911,238847,240038,241441,242980,244539,246033,247444,248785,250035,251176,252197,253080,253836,254515,255195,255929,256738,257609,258524,259454,260374,261281,262184,263091,264015,264962,265940,266944,267949,268920,269838,270686,271479,272261,273091,274013,275040,276154,277315,278466,279566,280602,281580,282503,283380,284215]},{"name":"Belarus","region":"Europe & Central Asia","income":[798,803,807,812,817,822,826,831,836,841,846,851,856,861,866,871,876,881,886,891,896,861,1007,968,899,895,820,897,1016,1154,1068,1175,1155,1185,1257,1229,1259,1368,1273,1407,1245,1189,1142,1246,1293,1380,1274,1376,1444,1379,1418,1260,1106,677,583,585,535,621,714,904,1129,1267,1319,1386,1400,1462,1474,1451,1504,1640,1874,2000,2164,2156,2241,2146,2104,2063,2022,1982,1943,1905,2115,2387,2605,2819,2781,2908,2981,3070,3271,3518,3524,3719,3610,3878,4026,4066,3913,4357,4547,4712,4866,5099,5120,5461,5549,5523,5929,6108,6132,6429,6591,6769,6752,6776,6855,7039,7279,7381,7459,7780,7896,8084,8251,8084,7983,7201,6639,5869,5275,5441,6087,6630,6879,7300,7704,8144,8778,9851,10851,12010,13103,14488,14549,15703,16603,16907,17085,17349,17415],"lifeExpectancy":[36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.8,37.4,38,38.6,39.3,39.9,40.5,41.1,41.7,42.3,42.9,43.5,44.1,42.9,37.4,37.4,35.4,31.4,33.4,30.4,33.7,34.6,43.5,46,45,48.2,47.3,48.9,47,46.9,47.9,39.1,25.8,41.9,51.7,52.4,51.1,52.4,52.2,51.9,19.7,14.6,13.6,20.6,29.6,57.2,47.2,59.8,62.6,64.5,64.7,65.2,65.6,66,66.4,66.8,67.1,67.5,68.4,71.2,71.9,70.6,71.2,72.8,72.3,72.6,72.4,72.5,72,71.5,71.5,71.6,71.6,71.6,71.5,71.4,71.2,71.1,70.9,70.8,70.7,70.6,70.5,70.6,71.1,71.6,71.9,71.7,71.3,70.8,70.3,69.6,69,68.5,68.2,68.1,68.1,68,68.1,68.2,68.1,68.1,68.2,68.4,68.8,69.2,69.8,70.1,70.2,70.2,70.1,70.1,70.2,70.3,70.4],"population":[3568742,3601626,3634510,3667393,3700277,3733161,3769004,3804846,3840689,3876532,3912375,3948217,3984060,4019903,4055745,4091588,4130847,4170105,4209364,4248623,4287882,4327140,4366399,4405658,4444916,4484175,4527489,4570803,4614117,4657431,4700745,4744058,4787372,4830686,4874000,4917314,4964631,5011947,5059264,5106581,5153898,5201214,5248531,5295848,5343164,5390481,5442391,5494301,5546211,5598121,5650032,5701942,5753852,5805762,5857672,5909582,5966254,6022926,6079599,6136271,6192943,6249615,6306287,6362960,6419632,6476304,6538411,6600518,6662625,6724732,6786839,6848946,6911053,6973160,7035267,7097374,7162137,7226900,7291663,7356426,7421189,7485951,7550714,7615477,7680240,7745003,7717708,7711027,7724108,7755576,7803537,7865540,7938612,8019377,8104252,8190027,8274486,8356956,8438535,8521433,8607031,8695433,8785138,8874070,8959483,9039436,9113278,9181643,9245514,9306472,9365830,9423421,9479262,9535069,9593007,9654455,9719634,9787558,9856780,9925227,9990966,10053975,10113451,10165746,10206300,10231983,10241137,10234863,10216281,10190064,10159731,10126941,10091181,10051298,10005259,9952055,9891535,9825802,9758817,9695791,9640616,9594233,9556061,9526453,9505319,9492122,9487674,9490962,9497294,9500422,9495826]},{"name":"Belgium","region":"Europe & Central Asia","income":[4533,4635,4626,4761,4935,4990,4974,5238,5233,5364,5310,5337,5356,5465,5471,5697,5707,5832,5849,5834,5838,5868,6050,6046,6293,6387,6326,6415,6442,6467,6549,6625,6692,6746,6825,6967,6946,6985,7049,7141,7258,7326,7355,7357,7431,7606,7736,7816,7811,5700,4652,5187,4303,4005,4917,7395,7737,8205,8673,9000,8956,9015,8924,9468,9647,9737,9329,8824,8670,8413,8743,8965,9335,9103,8687,7097,6030,6157,4965,5014,5328,8351,9365,9793,10035,10309,10790,10688,11038,11390,11728,12053,12252,11919,12137,12608,13122,13689,14163,14995,15360,15721,16225,16816,17868,18903,19548,20504,21700,22550,22196,23418,23546,24202,24756,25847,25517,25873,25879,26527,26792,27189,27813,29092,29980,30798,31247,31596,31170,32077,32774,33217,34377,34992,36209,37404,37620,38036,38214,39356,39881,40661,41575,41641,40225,40764,40946,40687,40607,40885,41240],"lifeExpectancy":[37.7,32.5,43.1,42.6,42.6,40.9,34.4,40,43.5,44.7,42.2,43.7,44.5,44.2,43.8,42.5,44.4,45.5,44.9,44.2,45.5,43.4,46.1,44.9,45.1,44.1,44.1,43.2,44.4,46.6,45.5,48.1,48.8,48.1,46.5,46.6,49.4,49.2,49.3,49.3,50,49.7,51.1,49.7,50.7,51.4,49.3,52.3,52.5,42,40,42,43,34.9,49.9,53.7,54.8,55.2,56.8,57.5,57.2,57,57.2,57.5,55.1,57.2,58.5,58.6,58.8,60.4,60,60,60,60.2,60,56,59,59.2,60.4,57,58.4,61.9,63.5,65,65.5,66.4,66.8,68,68.4,68.7,68.6,68.9,69.3,70,70.4,69.7,70.5,70.3,70.1,70.8,70.6,70.7,71,70.7,70.7,71,71.1,71.3,71.6,71.9,72.2,72.4,72.6,72.8,73,73.3,73.6,73.8,74,74.3,74.6,74.9,75.2,75.5,75.8,76,76.2,76.4,76.5,76.7,76.9,77.1,77.3,77.5,77.6,77.8,78,78.2,78.5,78.9,79.2,79.3,79.4,79.4,79.6,79.8,80,80.1,80.2,80.3,80.4],"population":[4931990,4967770,5003550,5039330,5075111,5110891,5157023,5203154,5249286,5295418,5341550,5387681,5433813,5479945,5526076,5572208,5627528,5682848,5738167,5793487,5848807,5904127,5959447,6014766,6070086,6125406,6189038,6252670,6316301,6379933,6443565,6507197,6570829,6634460,6698092,6761724,6834839,6907954,6981068,7054183,7127298,7200413,7273528,7346642,7419757,7492872,7499054,7505236,7511418,7517600,7523782,7529963,7536145,7542327,7548509,7554691,7606312,7657934,7709555,7761176,7812798,7864419,7916040,7967661,8019283,8070904,8096881,8122858,8148836,8174813,8200790,8226767,8252744,8278722,8304699,8330676,8360457,8390239,8420020,8449801,8479583,8509364,8539145,8568926,8598708,8628489,8673691,8721192,8770196,8820161,8870792,8922069,8974221,9027679,9082991,9140563,9200393,9261828,9323467,9383443,9440279,9493656,9543533,9589107,9629528,9664320,9692900,9715673,9734412,9751592,9769006,9787576,9806885,9825779,9842453,9855747,9865512,9872709,9878636,9885088,9893499,9903895,9916261,9931873,9952253,9978241,10011217,10050405,10091889,10130251,10161914,10185077,10201758,10216867,10237402,10268380,10311331,10364613,10426169,10492643,10561436,10632032,10704830,10779155,10854388,10929978,11005175,11079521,11153122,11226322,11299192]},{"name":"Belize","region":"America","income":[786,791,797,802,807,813,818,824,829,835,841,846,852,858,864,869,875,881,887,893,899,905,911,918,924,930,936,943,949,955,962,968,975,981,988,995,1002,1008,1015,1022,1029,1036,1043,1050,1057,1064,1071,1079,1086,1102,1119,1136,1153,1170,1188,1205,1223,1241,1259,1278,1297,1316,1335,1355,1375,1395,1415,1436,1457,1478,1500,1522,1544,1567,1590,1613,1637,1661,1685,1710,1734,1760,1786,1812,1838,1865,1879,1892,1906,1920,1934,1949,1963,1977,1992,2006,2032,2056,2082,2114,2153,2196,2248,2362,2435,2509,2570,2797,2911,3259,3315,3244,3370,3539,3701,4148,4091,3973,3809,3763,3705,3777,4083,4344,4820,5166,5594,6154,6424,6310,6209,6137,6177,6220,6568,7215,7373,7548,8042,8203,8202,8360,8240,8293,8145,8209,8178,8287,8215,8418,8501],"lifeExpectancy":[26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.1,27.6,28.2,28.8,29.3,29.9,30.4,26.9,31.6,32.1,32.7,33.3,33.9,34.5,35.1,35.7,36.3,36.9,37.5,38.1,38.7,39.3,39.9,40.5,41.4,42.4,43.3,44.3,45.2,46.2,47.2,48.1,49.1,50,51,52,52.9,53.9,54.8,55.8,56.1,56.7,57.3,57.9,58.4,59,59.6,60.1,60.7,61.3,61.9,62.5,63.1,63.7,64.3,64.9,65.5,66.1,66.7,67.2,67.6,67.8,68,68.3,68.4,68.5,68.6,68.7,69.1,69.3,69.5,69.7,70,70.6,71.1,71.6,72,72.2,72.2,72.1,71.8,71.7,71.6,71.5,71.2,70.7,70.2,69.6,69.1,69,69.1,69.4,70,70.4,70.6,70.8,70.8,70.7,70.3,70.1,70,70,70,70,70],"population":[25750,25749,25748,25747,25746,25745,25883,26021,26158,26296,26434,26572,26710,26847,26985,27123,27486,27849,28212,28575,28939,29302,29665,30028,30391,30754,31290,31826,32362,32898,33434,33970,34506,35042,35578,36114,36482,36850,37218,37586,37954,38321,38689,39057,39425,39793,40270,40747,41223,41700,42177,42654,43131,43607,44084,44561,45151,45742,46332,46923,47513,48103,48694,49284,49875,50465,50995,51526,52056,52586,53117,53647,54177,54707,55238,55768,57083,58398,59713,61028,62343,63658,64973,66288,67603,68918,71243,73428,75554,77686,79872,82140,84503,86956,89483,92068,94701,97389,100166,103070,106121,109344,112699,116061,119260,122179,124792,127148,129294,131306,133261,135145,136991,138972,141308,144151,147566,151498,155820,160342,164916,169570,174326,179025,183470,187552,191127,194321,197615,201678,206962,213674,221608,230289,239024,247312,254989,262202,269132,276085,283279,290751,298403,306165,313925,321609,329193,336707,344193,351706,359287]},{"name":"Benin","region":"Sub-Saharan Africa","income":[744,747,751,754,758,762,765,769,773,777,780,784,788,792,796,799,803,807,811,815,819,823,827,831,835,839,843,847,851,855,859,864,868,872,876,880,885,889,893,898,902,906,911,915,920,924,928,933,937,944,951,957,964,971,978,985,993,1001,1009,1017,1025,1033,1041,1050,1058,1066,1075,1083,1092,1101,1109,1118,1127,1136,1145,1154,1163,1172,1182,1191,1200,1210,1219,1229,1239,1248,1226,1203,1148,1159,1136,1114,1092,1109,1127,1137,1149,1085,1110,1159,1191,1206,1189,1204,1210,1205,1180,1251,1248,1124,1141,1158,1191,1195,1255,1338,1377,1484,1380,1447,1510,1497,1429,1427,1352,1362,1370,1359,1386,1364,1398,1414,1451,1466,1500,1525,1570,1586,1594,1590,1584,1592,1616,1646,1641,1637,1643,1685,1733,1779,1830],"lifeExpectancy":[31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,12,31,31,31.1,31.2,31.3,31.4,31.5,31.6,31.7,31.8,31.9,32,32.1,32.2,32.3,32.4,32.5,32.6,32.7,32.8,32.9,33,33.1,33.2,33.3,33.4,33.7,34.1,34.5,34.9,35.3,35.6,36,36.6,37.2,37.8,38.4,39,39.5,40.1,40.6,41.2,41.8,42.3,42.9,43.5,44.1,44.7,45.3,46,46.6,47.3,47.8,48.5,49.1,49.8,50.4,51,51.6,52,52.5,53,53.4,53.8,54.2,54.6,55,55.5,55.9,56.3,56.7,57.1,57.5,57.9,58.2,58.4,58.5,58.6,58.7,58.8,59,59.2,59.4,59.8,60.3,60.9,61.4,62.1,62.7,63.2,63.6,64,64.3,64.6,64.9,65.2,65.5],"population":[989794,999458,1009123,1018788,1028453,1038118,1048707,1059295,1069884,1080472,1091061,1101649,1112238,1122826,1133415,1144003,1155664,1167324,1178985,1190645,1202306,1213966,1225627,1237287,1248948,1260608,1273549,1286490,1299431,1312372,1325313,1338254,1351195,1364136,1377077,1390018,1404230,1418441,1432653,1446864,1461076,1475287,1489498,1503710,1517922,1532133,1547827,1563521,1579215,1594909,1610603,1626297,1641991,1657685,1673379,1689073,1706334,1723595,1740857,1758118,1775379,1792640,1809901,1827163,1844424,1861685,1880710,1899735,1918761,1937786,1956811,1975836,1994861,2013887,2032912,2051937,2072265,2092594,2112922,2133251,2153579,2173907,2194236,2214564,2234893,2255221,2258049,2264378,2274130,2287225,2303585,2323131,2345782,2371461,2400094,2431620,2466002,2503232,2543335,2586362,2632360,2681382,2733450,2788551,2846652,2907769,2971941,3039300,3110074,3184547,3262959,3345501,3432262,3523270,3618509,3718024,3822206,3931355,4045352,4163968,4287263,4414450,4546136,4685375,4836240,5001271,5182525,5378226,5582420,5786794,5985658,6176318,6361301,6546493,6740491,6949366,7174911,7414744,7665681,7922796,8182362,8443717,8707637,8973525,9240982,9509798,9779391,10049792,10322232,10598482,10879829]},{"name":"Bhutan","region":"South Asia","income":[690,691,692,694,695,697,698,699,701,702,703,705,706,708,709,710,712,713,715,716,717,719,720,722,723,724,726,727,729,730,732,733,735,736,737,739,740,742,743,745,746,748,749,751,752,754,755,757,758,759,761,762,764,765,767,769,771,774,776,779,782,784,787,790,792,795,798,800,803,806,808,811,814,816,819,822,825,827,830,833,835,838,841,844,846,849,859,869,879,889,899,910,920,931,941,952,963,974,985,997,1008,1020,1031,1043,1055,1067,1059,1034,1011,1026,957,1008,1051,1090,1108,1131,1228,1227,1297,1345,1385,1534,1948,2004,2111,2332,2326,2463,2557,2723,2930,3072,3184,3292,3459,3596,3780,4062,4247,4373,4565,4767,5507,5663,5934,6516,6909,7138,7167,7500,7983],"lifeExpectancy":[28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,18.5,28.8,28.8,29,29.3,29.5,29.8,30,30.3,30.5,30.7,31,31.2,31.5,31.7,32,32.2,32.4,32.7,32.9,33.2,33.4,33.7,33.9,34.1,34.4,34.6,34.9,35.1,35.4,35.6,35.8,36.1,36.5,37.1,37.7,38.3,38.9,39.6,40.2,40.8,41.5,42.1,42.7,43.3,43.9,44.5,45.1,45.8,46.5,47.3,48.2,49.1,49.4,49.8,50.1,50.4,50.7,51.1,51.4,51.9,52.3,52.9,53.5,54.1,54.7,55.4,56,56.6,57.3,58,58.7,59.3,59.9,60.5,61,61.4,62.1,62.7,63.2,63.7,64.2,63.9,65.1,65.5,65.9,66.3,66.6,66.9,67.3,67.6,67.9,68.3,68.7,69,69.4,69.8,70.2],"population":[112860,113469,114079,114689,115298,115908,116549,117191,117832,118473,119115,119756,120397,121038,121680,122321,122997,123673,124349,125025,125702,126378,127054,127730,128406,129082,129797,130513,131228,131943,132659,133374,134089,134804,135520,136235,136988,137741,138494,139247,140001,140754,141507,142260,143013,143766,144533,145300,146066,146833,147600,148367,149134,149900,150667,151434,152182,152929,153677,154425,155173,155920,156668,157416,158163,158911,159696,160480,161265,162049,162834,163619,164403,165188,165972,166757,167761,168765,169768,170772,171776,172780,173784,174787,175791,176795,181489,186160,190810,195449,200089,204748,209449,214221,219095,224108,229297,234703,240364,246324,252629,259270,266293,273868,282210,291457,301653,312712,324465,336677,349146,361862,374801,387731,400378,412561,423887,434385,444789,456135,469010,484151,500952,517068,529284,535505,534678,528085,518847,511382,508897,512377,520917,533506,548387,564187,580784,598421,616474,634235,651163,666920,681471,694990,707830,720246,732246,743711,754637,765008,774830]},{"name":"Bolivia","region":"America","income":[1311,1323,1336,1349,1362,1374,1388,1401,1414,1428,1441,1455,1469,1483,1497,1511,1525,1540,1554,1569,1584,1599,1614,1630,1645,1661,1677,1693,1709,1725,1741,1758,1775,1792,1809,1826,1843,1861,1878,1896,1914,1933,1951,1970,1988,2007,2026,2046,2065,2085,2104,2124,2145,2165,2186,2206,2228,2251,2273,2296,2319,2342,2365,2389,2412,2436,2460,2485,2510,2534,2560,2585,2611,2636,2662,2689,2715,2742,2769,2797,2824,2843,2861,2891,2919,3216,3374,3405,3020,3019,3113,2866,2713,2717,2650,2703,2699,2787,2899,2971,3046,3191,3312,3510,3581,3678,3727,3823,3988,4093,4260,4484,4560,4602,4496,4363,4322,4064,3819,3795,3706,3525,3551,3613,3638,3740,3845,3817,3887,3975,4068,4152,4264,4384,4312,4330,4315,4335,4367,4464,4578,4716,4850,5066,5152,5279,5462,5650,5934,6153,6295],"lifeExpectancy":[33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,29.2,33,33,33.1,33.2,33.3,33.4,33.5,33.6,33.6,33.7,33.8,33.9,34,34.1,34.2,34.3,34.4,34.5,34.6,34.7,34.8,34.9,35.6,36.4,37.2,38,38.7,39.5,40.3,41.1,41.8,42.6,42.9,43.2,43.6,44,44.4,44.8,45.2,45.6,46,46.4,46.8,47.2,47.6,48,48.4,48.8,49.2,49.6,50,50.4,51.1,51.8,52.5,53.2,54,54.8,55.5,56.3,57,57.4,58,58.4,58.8,59.3,59.8,60.3,60.8,61.4,62,62.6,63.1,63.6,64.1,64.5,65,65.4,65.9,66.4,67,67.6,68.2,68.7,69.2,69.7,70,70.3,70.6,70.9,71.1,71.3,71.5,71.7,71.9,72.1,72.3],"population":[1496051,1504441,1512831,1521221,1529611,1538001,1546814,1555627,1564440,1573253,1582067,1590880,1599693,1608506,1617319,1626132,1635409,1644687,1653964,1663242,1672519,1681796,1691074,1700351,1709629,1718906,1729659,1740411,1751164,1761916,1772669,1783422,1794174,1804927,1815679,1826432,1843156,1859881,1876605,1893330,1910054,1926778,1943503,1960227,1976952,1993676,2027704,2061732,2095760,2129788,2163816,2197843,2231871,2265899,2299927,2333955,2363043,2392130,2421218,2450306,2479394,2508481,2537569,2566657,2595744,2624832,2656876,2688920,2720964,2753008,2785052,2817096,2849140,2881184,2913228,2945272,2959710,2974147,2988585,3003023,3017461,3031898,3046336,3060774,3075211,3089649,3140342,3193287,3248462,3305835,3365363,3426999,3490685,3556361,3623964,3693451,3764815,3838096,3913397,3990855,4070590,4152665,4237126,4324066,4413584,4505774,4600596,4698090,4798510,4902173,5009259,5119833,5233677,5350320,5469123,5589572,5711598,5835186,5959962,6085499,6211549,6337893,6464736,6592787,6723046,6856246,6992521,7131699,7273824,7418864,7566716,7717445,7870860,8026257,8182710,8339512,8496378,8653343,8810420,8967740,9125405,9283345,9441482,9599916,9758799,9918245,10078238,10238762,10399931,10561887,10724705]},{"name":"Bosnia and Herzegovina","region":"Europe & Central Asia","income":[788,788,789,789,790,790,801,812,823,835,846,858,870,881,894,906,918,931,944,957,970,983,997,1011,1025,1039,1042,1045,1048,1052,1055,1058,1062,1065,1068,1072,1085,1098,1111,1125,1139,1152,1166,1181,1195,1209,1205,1200,1196,1187,1178,1169,1160,1152,1143,1135,1136,1142,1174,1230,1261,1318,1266,1346,1384,1326,1256,1113,1122,1137,1094,1207,1199,1265,1304,1280,1256,1233,1210,1188,1166,1144,1123,1308,1404,1284,1304,1174,1318,1360,1412,1354,1550,1583,1742,1815,1858,1853,2004,2152,2164,2234,2227,2229,2431,2500,2732,2768,2803,3100,3036,3064,3217,3325,3480,3582,3579,3538,3504,3528,3494,3572,3471,3363,3263,2974,2613,1970,1466,1574,1976,3771,4996,5609,5965,6158,6354,6660,6929,7369,7751,8242,8820,9316,9063,9145,9248,9149,9387,9516,9833],"lifeExpectancy":[35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,19.3,35.1,35.1,35.7,36.2,36.8,37.3,37.9,38.4,39,39.5,40.1,40.6,41.2,41.7,42.3,42.8,43.4,43.9,44.5,45,45.6,46.1,31.5,27.7,24,22,26.1,41.2,49.2,50.2,50.9,51.7,52.3,53.4,54.5,55.6,56.6,57.5,58.4,59.2,60,60.7,61.4,62,62.6,63.2,63.8,64.3,64.9,65.5,66,66.6,66.9,67.2,67.6,67.9,68.2,68.5,68.8,69.2,69.5,69.8,70.2,70.5,70.9,71.2,71.5,71.9,72.2,72.6,73,73.1,72.7,68.1,68.2,70.6,67.1,73,73.7,74.3,74.8,75.2,75.6,75.7,75.8,75.8,75.7,75.6,75.6,75.9,76.2,76.5,77,77.3,77.5,77.7,77.9],"population":[1265272,1276267,1287263,1298258,1309254,1320249,1332173,1344098,1356022,1367947,1379871,1391795,1403720,1415644,1427569,1439493,1452486,1465480,1478473,1491467,1504460,1517453,1530447,1543440,1556434,1569427,1583685,1597943,1612201,1626459,1640717,1654975,1669233,1683491,1697749,1712007,1727503,1742999,1758495,1773991,1789487,1804982,1820478,1835974,1851470,1866966,1883963,1900959,1917956,1934952,1951949,1968945,1985942,2002938,2019935,2036931,2055586,2074242,2092897,2111553,2130208,2148863,2167519,2186174,2204830,2223485,2243849,2264213,2284577,2304941,2325305,2345668,2366032,2386396,2406760,2427124,2450541,2473958,2497375,2520792,2544209,2567625,2591042,2614459,2637876,2661293,2709913,2763298,2819107,2875641,2931849,2987354,3042428,3097882,3154899,3214520,3277096,3341809,3406466,3468083,3524596,3574972,3619997,3661642,3702834,3745637,3790948,3838002,3885229,3930283,3971608,4008411,4041623,4073480,4107135,4144726,4185074,4226663,4270598,4318301,4369527,4428460,4491745,4542757,4559256,4526996,4437898,4301169,4141167,3992256,3879278,3810649,3779354,3775898,3784389,3792878,3799747,3808347,3817313,3825872,3833377,3838504,3840418,3839749,3837732,3835258,3832310,3828419,3823533,3817554,3810416]},{"name":"Botswana","region":"Sub-Saharan Africa","income":[495,497,500,502,505,507,510,512,515,517,520,522,525,527,530,532,535,537,540,543,545,548,550,553,556,559,561,564,567,569,572,575,578,581,583,586,589,592,595,598,600,603,606,609,612,615,618,621,624,629,633,638,643,648,653,658,663,668,674,679,684,690,696,701,707,712,718,724,730,735,741,747,753,759,765,771,778,784,790,796,803,809,815,822,828,835,851,862,877,893,907,920,933,944,960,970,989,1002,1019,1038,1055,1142,1240,1347,1455,1567,1810,2317,2722,3152,2969,3354,3298,3736,3920,4292,4520,4679,5224,5608,5822,6065,6393,7173,7856,8075,8430,8436,8368,8449,8823,9121,9637,9507,10228,10250,10115,10577,10923,11085,11460,12241,13170,13858,12680,13642,14341,14905,16155,16725,17196],"lifeExpectancy":[33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,10.9,33.6,33.6,33.7,33.8,34,34.1,34.2,34.3,34.5,34.6,34.7,34.8,35,35.1,35.2,35.3,35.4,35.6,35.7,35.8,35.9,36.1,36.2,36.3,36.4,36.5,36.7,39.4,42.2,45,47.7,50.5,50.8,51.4,51.9,52.4,53,53.5,54,54.6,55.1,55.6,56.1,56.5,57,57.4,57.9,58.4,59,59.6,60.2,60.9,61.4,62,62.6,63.2,63.7,64.2,64.6,65.1,65.6,65.8,66.2,66.5,66.9,67.2,67.5,67.7,67.9,68,68.1,67.9,67.6,66.9,65.8,64.2,62.3,60.2,57.9,55.6,53.5,51.6,50.2,49.3,49.4,51,54.3,57.5,60.1,61.2,62.6,64.5,65.7,65.5,65.8,66.1,66.4],"population":[121450,121480,121510,121540,121570,121600,121630,121660,121690,121720,121750,121780,121810,121840,121870,121900,121930,121960,121990,122020,122050,122080,122110,122140,122170,122200,122235,122270,122305,122340,122376,122411,122446,122481,122516,122551,122963,123376,123788,124200,124613,125025,125437,125849,126262,126674,129250,131827,134403,136979,139556,142132,144708,147284,149861,152437,158876,165316,171755,178194,184634,191073,197512,203951,210391,216830,223369,229907,236446,242984,249523,256061,262600,269138,275677,282215,295247,308279,321310,334342,347374,360406,373438,386469,399501,412533,425270,437182,448437,459206,469671,480016,490433,501117,512256,524029,536576,549990,564316,579560,595741,612950,631276,650730,671305,693021,715811,739754,765177,792513,822029,853860,887793,923305,959666,996331,1033073,1069962,1107103,1144716,1182942,1221668,1260720,1300097,1339813,1379814,1420098,1460453,1500356,1539135,1576291,1611827,1645846,1678111,1708368,1736579,1762531,1786672,1810438,1835750,1864003,1895671,1930431,1967866,2007212,2047831,2089706,2132822,2176510,2219937,2262485]},{"name":"Brazil","region":"America","income":[1429,1481,1604,1604,1605,1488,1488,1540,1494,1518,1541,1483,1442,1512,1525,1455,1467,1503,1462,1561,1450,1497,1398,1345,1364,1492,1586,1375,1170,1171,1388,1260,1241,1271,1248,1201,1354,1315,1318,1301,1322,1456,1445,1369,1475,1487,1533,1592,1598,1531,1498,1471,1571,1492,1569,1722,1702,1785,1879,1853,1797,1834,1977,2143,2099,1998,1870,1896,2012,2133,2137,2330,2370,2407,2397,2308,2351,2214,2337,2451,2457,2662,2643,2811,2932,3030,3074,3191,3228,3366,3543,3521,3668,3935,4184,4433,4663,4823,4697,4707,4671,4836,4888,5215,5550,5930,6463,7082,7904,8362,8595,9274,9512,9759,10187,10922,10224,10094,9590,9913,10495,11079,11267,11062,11226,10331,10315,10104,10413,10802,11108,11178,11382,11250,11139,11461,11446,11638,11627,12135,12373,12732,13364,13906,13749,14660,15101,15234,15518,15412,15441],"lifeExpectancy":[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,27,32,32,32,32.1,32.1,32.1,32.2,32.2,32.3,32.3,32.4,32.4,32.9,33.4,33.9,34.4,34.9,35.4,35.9,36.4,36.9,37.5,38.6,39.8,41,42.1,43.3,44.9,46.5,48.1,49.7,51.3,51.5,52.1,52.6,53.1,53.7,54.2,54.7,55.3,55.8,56.3,56.8,57.4,57.8,58.3,58.8,59.2,59.6,60.1,60.5,60.9,61.2,61.6,62.1,62.6,63.1,63.4,64.1,64.6,65,65.3,66.4,67,67,67.1,67.4,67.6,68,68.2,68.6,69.1,69.5,69.7,69.7,70,70.2,70.5,71,71.2,71.5,71.9,72.2,72.5,72.7,73,73.4,73.7,73.8,73.9,74,74.2,74.5,74.7,75,75.3,75.6],"population":[9215212,9365053,9514895,9664736,9814578,9964419,10157316,10350214,10543111,10736008,10928906,11121803,11314700,11507597,11700495,11893392,12145127,12396861,12648596,12900330,13152065,13403800,13655534,13907269,14159003,14410738,14780013,15149288,15518563,15887838,16257114,16626389,16995664,17364939,17734214,18103489,18534548,18965606,19396665,19827723,20258782,20689840,21120899,21551957,21983016,22414074,22938753,23463432,23988110,24512789,25037468,25562147,26086826,26611504,27136183,27660862,28283676,28906489,29529303,30152116,30774930,31397743,32020557,32643370,33266184,33888997,34654610,35420223,36185837,36951450,37717063,38482676,39248289,40013903,40779516,41545129,42788089,44031048,45274008,46516968,47759928,49002887,50245847,51488807,52731766,53974726,55605541,57304772,59053267,60838782,62655984,64506874,66400362,68351012,70376952,72493585,74706888,77007549,79368453,81751802,84130061,86494987,88853679,91213009,93585746,95982453,98402200,100844391,103320787,105846274,108431284,111076063,113776467,116532153,119341444,122199721,125107382,128054757,131014337,133950551,136836428,139664639,142437479,145150468,147801816,150393143,152916852,155379009,157812220,160260508,162755054,165303155,167893835,170516482,173153066,175786441,178419396,181045592,183627339,186116363,188479240,190698241,192784521,194769696,196701298,198614208,200517584,202401584,204259377,206077898,207847528]},{"name":"Brunei","region":"East Asia & Pacific","income":[1766,1772,1778,1784,1790,1797,1803,1809,1815,1821,1827,1833,1840,1846,1852,1859,1865,1871,1878,1884,1890,1897,1903,1910,1916,1923,1929,1936,1942,1949,1955,1962,1969,1975,1982,1989,1996,2002,2009,2016,2023,2030,2037,2044,2051,2057,2064,2071,2078,2086,2093,2100,2107,2114,2121,2128,2136,2143,2150,2158,2165,2172,2180,2187,2195,2557,2979,3471,4044,4711,5489,6395,7451,8680,10113,11782,13727,15992,18631,21706,25288,29461,34323,39986,46584,54271,55126,55994,56876,57771,58680,59604,60541,61493,62460,63442,64439,65451,66479,67522,68582,69658,70751,71861,72988,74132,78230,82612,86923,93231,89842,103744,110729,113988,134864,121356,94314,95207,93016,90992,87154,82425,81711,80275,77184,77076,77275,78688,76750,77038,78406,78661,75654,73498,74041,74475,74868,76130,76737,75596,74441,76287,75054,72351,69924,70636,71991,71664,69474,72219,73003],"lifeExpectancy":[29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.9,30.6,31.3,32,32.7,33.4,27.7,34.8,35.5,36.3,37,37.7,38.4,39.1,39.9,40.6,41.3,42,42.8,43.5,44.2,44.9,45.6,46.4,47.1,47.8,48.5,49.3,50,50.7,51.4,52.2,52.9,53.6,54.3,55,55.8,56.5,57.2,57.5,58.2,58.8,59.4,60.1,60.7,61.3,62,62.6,63.2,63.8,64.4,64.9,65.5,66,66.4,66.9,67.3,67.8,68.2,69,69.8,70.6,71.1,71.2,71.2,71.1,70.9,71,71.1,71.2,71.5,72,72.5,72.9,73.3,73.5,73.7,73.8,73.9,73.9,73.9,74,74.1,74.3,74.5,74.7,75,75.3,75.5,75.9,76.3,76.8,77.1,77.3,77.4,77.5,77.8,78.1,78.5,78.7,78.7,78.7,78.7,78.7],"population":[5525,5657,5789,5920,6052,6184,6391,6597,6804,7010,7217,7424,7630,7837,8043,8250,8552,8854,9156,9458,9761,10063,10365,10667,10969,11271,11695,12118,12542,12965,13389,13813,14236,14660,15083,15507,16074,16642,17209,17776,18344,18911,19478,20045,20613,21180,21608,22037,22465,22893,23322,23750,24178,24606,25035,25463,25862,26261,26659,27058,27457,27856,28255,28653,29052,29451,30068,30684,31301,31917,32534,33150,33767,34383,35000,35616,36855,38093,39332,40570,41809,43047,44286,45524,46763,48001,50971,53932,56958,60104,63401,66859,70465,74189,77989,81825,85687,89603,93650,97933,102525,107450,112680,118176,123875,129729,135716,141836,148067,154395,160799,167283,173826,180357,186786,193057,199136,205061,210933,216893,223049,229418,235980,242750,249738,256939,264365,271989,279717,287423,295010,302449,309746,316873,323812,330554,337074,343383,349557,355700,361889,368150,374459,380786,387080,393302,399443,405512,411499,417394,423188]},{"name":"Bulgaria","region":"Europe & Central Asia","income":[1363,1370,1377,1384,1391,1397,1419,1440,1462,1484,1506,1529,1552,1576,1600,1624,1648,1673,1699,1724,1751,1777,1804,1831,1859,1887,1902,1917,1933,1948,1964,1980,1995,2011,2028,2044,2080,2117,2155,2193,2232,2271,2312,2353,2394,2437,2480,2523,2567,2448,2334,2226,2123,2024,1930,1840,1755,1673,1595,1521,1544,1957,2100,2040,1975,2149,2433,2417,2425,2190,2068,2498,2621,2668,2681,2590,2621,2475,2531,2320,1794,1956,2132,2323,2533,2761,3325,3165,3486,3385,3590,3557,3895,4192,4485,4866,5133,5506,5711,6110,6432,6891,7216,7296,7592,7971,8186,8534,8824,9040,9736,9987,9844,10048,10425,10088,10325,10631,10408,10730,10388,10643,10646,10567,10367,9333,8630,8089,8033,8207,8479,8659,8617,8976,8516,9075,9596,10220,10829,11602,12359,13228,14430,15368,14692,14886,15278,15443,15695,16048,16371],"lifeExpectancy":[38.7,38.7,38.7,38.8,38.8,38.9,38.9,39,39,39.1,39.1,39.1,39.2,39.2,39.3,39.3,39.4,39.4,39.5,39.5,39.5,39.6,39.6,39.7,39.7,39.8,39.8,39.8,39.9,39.9,40,40,40.1,40.1,40.2,40.2,41.4,42.5,42.8,43,43.3,43.4,43.4,43.5,43.6,43.7,43.7,43.8,43.9,44,44,44.1,44.2,33.7,44.3,44.4,44.4,44.5,44.6,44.8,45,45.3,46,46.7,47.5,48.2,48.7,49.2,49.7,50.2,50.7,51.2,51.7,51.9,52.1,52.3,52.6,51.8,51.3,49.8,51.8,53.4,53.9,55.6,57.7,61.2,60.4,59.4,63.9,64.1,64.6,64.9,66.3,68.4,66.3,68.9,69.9,69.2,70,70.8,71,70.9,70.1,70.9,70.1,70.9,71,71.1,71.1,71.1,71.2,71.2,71,71.1,71.1,71.2,71.4,71.3,71.4,71.2,71.3,71.4,71.5,71.5,71.4,71.4,71.3,71.2,71,70.8,70.9,70.8,70.7,71.1,71.4,71.7,71.9,72.2,72.4,72.4,72.5,72.7,72.9,73.2,73.3,73.6,74,74.3,74.5,74.7,74.9],"population":[2610454,2623904,2637355,2650806,2664257,2677708,2709301,2740895,2772488,2804082,2835675,2867268,2898862,2930455,2962049,2993642,3039661,3085680,3131698,3177717,3223736,3269755,3315774,3361792,3407811,3453830,3507673,3561516,3615359,3669202,3723045,3776887,3830730,3884573,3938416,3992259,4046172,4100085,4153997,4207910,4261823,4315736,4369649,4423561,4477474,4531387,4586825,4642262,4697700,4753138,4808576,4864013,4919451,4974889,5030326,5085764,5180632,5275500,5370369,5465237,5560105,5654973,5749841,5844710,5939578,6034446,6098251,6162056,6225861,6289666,6353471,6417276,6481081,6544886,6608691,6672496,6730346,6788197,6846047,6903897,6961748,7019598,7077448,7135298,7193149,7250999,7303773,7359997,7418765,7479367,7541295,7604251,7668139,7733026,7799095,7866472,7935058,8004367,8073469,8141171,8206564,8269118,8328838,8386016,8441214,8494765,8546810,8596962,8644419,8688112,8727332,8761231,8790072,8815565,8840131,8865235,8891245,8916713,8939007,8954518,8960387,8956741,8943721,8918660,8878348,8821111,8745408,8653527,8552429,8451626,8358116,8274662,8199923,8131743,8066219,8000510,7934389,7869124,7805041,7742740,7682614,7624611,7568378,7513646,7460057,7407297,7355231,7303741,7252539,7201308,7149787]},{"name":"Burkina Faso","region":"Sub-Saharan Africa","income":[506,507,507,508,508,509,509,510,511,511,512,512,513,513,514,515,515,516,516,517,517,518,519,519,520,520,521,522,522,523,523,524,524,525,526,526,527,527,528,529,529,530,530,531,532,532,533,533,534,535,535,536,536,537,538,538,538,537,537,537,536,536,535,535,534,534,533,533,533,532,532,531,531,530,530,529,529,528,528,527,527,526,526,525,525,524,537,550,563,576,590,605,619,634,649,659,681,717,702,711,731,726,781,794,799,790,810,830,774,747,703,683,714,778,766,759,771,767,738,729,801,900,857,898,858,821,872,851,857,845,869,938,970,1012,1057,1046,1084,1099,1150,1167,1232,1271,1304,1358,1358,1431,1481,1532,1588,1606,1654],"lifeExpectancy":[29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,11.3,29.2,29.2,29.3,29.4,29.5,29.7,29.8,29.9,30,30.1,30.2,30.3,30.5,30.6,30.7,30.8,30.9,31,31.1,31.3,31.4,31.5,31.6,31.7,31.8,31.9,32.1,32.3,32.6,32.9,33.1,33.4,33.8,34.4,34.9,35.5,36.1,36.7,37.3,37.8,38.4,39,39.6,40.2,40.8,41.4,41.9,42.5,43.1,43.7,44.2,44.8,45,45.4,45.8,46.3,47,47.7,48.4,49,49.6,50.2,50.7,51.1,51.4,51.7,52,52.4,52.6,52.7,52.8,52.7,52.6,52.4,52.1,51.9,51.8,51.9,52.1,52.4,52.9,53.3,53.8,54.4,55.1,55.9,56.8,57.7,58.6,59.4,60,60.7,61.2,61.6,62,62.4,62.8],"population":[2313123,2329899,2346675,2363451,2380227,2397003,2414955,2432908,2450860,2468813,2486765,2504717,2522670,2540622,2558575,2576527,2595814,2615101,2634389,2653676,2672963,2692250,2711537,2730825,2750112,2769399,2790240,2811081,2831922,2852763,2873605,2894446,2915287,2936128,2956969,2977810,3000152,3022493,3044835,3067177,3089519,3111860,3134202,3156544,3178885,3201227,3225320,3249414,3273507,3297601,3321694,3345787,3369881,3393974,3418068,3442161,3468112,3494064,3520015,3545966,3571918,3597869,3623820,3649771,3675723,3701674,3729582,3757490,3785398,3813306,3841214,3869122,3897030,3924938,3952846,3980754,4011124,4041495,4071865,4102235,4132606,4162976,4193346,4223716,4254087,4284457,4324493,4367137,4413203,4463165,4517155,4574942,4635954,4699342,4764080,4829291,4894578,4960325,5027818,5098892,5174869,5256363,5343020,5434040,5528172,5624597,5723379,5825171,5930487,6040044,6154548,6274037,6398937,6530820,6671659,6822840,6985158,7158256,7340907,7531244,7727912,7930690,8140076,8356306,8579825,8811033,9050090,9297116,9552473,9816586,10089876,10372809,10665781,10969093,11283016,11607944,11943740,12290984,12651596,13028039,13421929,13834195,14264002,14709011,15165856,15632066,16106851,16590813,17084554,17589198,18105570]},{"name":"Burundi","region":"Sub-Saharan Africa","income":[444,444,445,445,446,446,446,447,447,448,448,448,449,449,450,450,451,451,451,452,452,453,453,453,454,454,455,455,456,456,456,457,457,458,458,459,459,459,460,460,461,461,462,462,462,463,463,464,464,465,465,465,466,466,467,467,468,470,471,472,473,475,476,477,478,480,481,482,483,485,486,487,488,490,491,492,493,495,496,497,498,500,501,502,503,505,525,533,546,567,576,588,601,608,633,632,531,567,582,603,610,623,665,645,627,782,827,753,806,788,780,826,909,879,856,887,945,922,929,908,994,1014,1032,1044,1037,1051,1075,1062,975,921,835,758,737,763,744,723,720,731,700,709,692,704,713,723,723,725,731,737,747,758,777],"lifeExpectancy":[31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,12.2,31.5,31.5,28,24.5,31.6,31.6,28.1,26.1,24.6,26.1,26.2,31.7,31.7,31.7,31.7,31.7,31.8,31.8,31.8,31.8,31.8,31.8,31.9,31.9,30.5,17.9,31.9,33.3,34.7,36.1,37.5,38.9,39.1,39.4,39.8,40.1,40.4,40.7,41,41.3,41.7,42,42.3,42.6,43,43.3,43.6,43.9,44.1,44.4,44.5,44.7,44.9,45.1,45.2,45.1,45,45.1,45.2,45.5,46,46.4,47.2,48,48.8,49.4,49.8,49.9,49.8,49.6,49.3,49,48.7,48.4,48,27,47,46.6,46.7,46.8,47.1,47.5,48.4,49.4,50.7,52.2,53.8,55.3,56.5,57.4,58.2,58.7,59.1,59.5,59.8,60.1,60.4],"population":[1256999,1265493,1273988,1282482,1290977,1299471,1308494,1317516,1326539,1335562,1344585,1353607,1362630,1371653,1380675,1389698,1399327,1408956,1418584,1428213,1437842,1447471,1457100,1466728,1476357,1485986,1496333,1506679,1517026,1527372,1537719,1548066,1558412,1568759,1579105,1589452,1600461,1611471,1622480,1633489,1644499,1655508,1666517,1677526,1688536,1699545,1711956,1724366,1736777,1749187,1761598,1774009,1786419,1798830,1811240,1823651,1838309,1852967,1867624,1882282,1896940,1911598,1926256,1940913,1955571,1970229,1986065,2001901,2017737,2033573,2049409,2065245,2081081,2096917,2112753,2128589,2146622,2164656,2182689,2200723,2218756,2236789,2254823,2272856,2290890,2308923,2359234,2403777,2445836,2487929,2531800,2578393,2627880,2679765,2733050,2786740,2840375,2894510,2950903,3011957,3079034,3153879,3235125,3317315,3392949,3457113,3507593,3547335,3582952,3623853,3676991,3744696,3825484,3917866,4018927,4126544,4239673,4359122,4486613,4624617,4774258,4936429,5108581,5284173,5454475,5613141,5759429,5895131,6019901,6134041,6239030,6333415,6420397,6511920,6623707,6767073,6946720,7159918,7401215,7661613,7934213,8218070,8514578,8821795,9137786,9461117,9790151,10124572,10465959,10816860,11178921]},{"name":"Cambodia","region":"East Asia & Pacific","income":[968,970,971,973,974,976,977,979,980,981,983,984,986,987,989,990,992,993,995,996,997,999,1000,1002,1003,1005,1006,1008,1009,1011,1012,1014,1015,1017,1018,1020,1021,1023,1024,1026,1027,1029,1030,1032,1033,1035,1037,1038,1040,1041,1043,1044,1046,1047,1049,1050,1052,1054,1056,1058,1059,1061,1063,1065,1066,1068,1070,1072,1074,1075,1077,1079,1081,1082,1084,1086,1088,1089,1091,1093,1095,1097,1098,1100,1102,1104,1114,1156,1140,1242,1187,1311,1363,1394,1491,1539,1484,1562,1634,1548,1579,1608,1647,1678,1660,1643,1539,1440,1161,1101,1096,1116,976,1003,891,839,822,792,791,790,787,792,920,993,1025,996,1055,1096,1004,1058,1091,1117,1148,1176,1285,1368,1448,1516,1617,1755,1957,2136,2321,2442,2409,2513,2646,2790,2942,3093,3267],"lifeExpectancy":[35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,22.4,35,35,35.1,35.2,35.4,35.5,35.6,35.7,35.8,35.9,36.1,36.2,36.3,36.4,36.5,36.6,36.8,36.9,37,37.1,37.2,36.3,36.1,36.1,36.1,34.3,30.9,38,39.3,40.7,42,43.3,43.5,43.9,44.2,44.5,44.8,45,45.3,45.5,45.7,45.9,46.1,46.4,46.7,47,47.4,47.7,48,48.2,48.2,47.5,47.8,48.1,48.2,48.3,44.8,55.1,55.1,49.3,49.4,54.4,54.7,55,55.5,56,56.3,56.6,58.1,58.6,58.9,59.1,59.3,59.5,59.5,59.5,59.7,59.7,59.8,60,60.4,60.9,61.6,62.3,63,63.8,64.5,65.2,65.8,66.2,66.6,66.9,67.2,67.5,67.8,68.1,68.4],"population":[2334500,2342821,2351141,2359462,2367782,2376103,2389489,2402875,2416261,2429647,2443033,2456419,2469805,2483191,2496577,2509963,2526826,2543688,2560551,2577413,2594276,2611138,2628001,2644863,2661726,2678588,2696662,2714736,2732809,2750883,2768957,2787031,2805105,2823178,2841252,2859326,2878569,2897813,2917056,2936299,2955543,2974786,2994029,3013272,3032516,3051759,3079203,3106646,3134090,3161533,3188977,3216420,3243864,3271307,3298751,3326194,3358950,3391707,3424463,3457220,3489976,3522732,3555489,3588245,3621002,3653758,3689740,3725723,3761705,3797687,3833670,3869652,3905634,3941616,3977599,4013581,4055495,4097408,4139322,4181235,4223149,4265062,4306976,4348889,4390803,4432716,4539656,4658653,4784792,4914447,5045284,5176326,5307886,5441365,5578905,5722370,5872247,6026696,6181137,6329411,6467196,6588993,6695460,6795514,6902025,7022185,7167716,7331162,7478147,7561583,7551988,7431505,7222050,6982522,6795102,6718241,6774509,6945053,7196139,7475011,7743065,7990133,8228268,8467109,8723550,9008856,9323607,9659238,10007092,10355253,10694459,11022162,11338733,11641509,11928306,12197905,12448881,12681984,12901217,13112334,13320058,13525360,13728700,13933660,14144337,14363586,14593099,14832255,15078564,15328136,15577899]},{"name":"Cameroon","region":"Sub-Saharan Africa","income":[780,784,788,792,795,799,803,807,811,815,819,823,827,831,835,839,843,847,851,855,859,864,868,872,876,880,885,889,893,897,902,906,911,915,919,924,928,933,937,942,946,951,956,960,965,970,974,979,984,993,1002,1011,1021,1030,1040,1049,1060,1072,1083,1095,1107,1119,1131,1143,1155,1167,1180,1192,1205,1218,1231,1244,1257,1270,1284,1298,1311,1325,1339,1354,1368,1382,1397,1412,1427,1442,1479,1517,1554,1592,1632,1671,1710,1750,1790,1813,1808,1836,1874,1910,1917,1973,1992,2084,2146,2169,2190,2238,2224,2274,2338,2324,2386,2444,2505,2671,3034,3188,3319,3476,3675,3821,3526,3271,2895,2768,2586,2434,2177,2160,2188,2233,2289,2338,2369,2404,2447,2480,2514,2540,2532,2547,2564,2571,2554,2571,2610,2661,2739,2829,2897],"lifeExpectancy":[28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,5.7,28.8,28.8,28.9,29,29.1,29.2,29.4,29.5,29.6,29.7,29.8,30,30.1,30.2,30.3,30.5,30.6,30.7,30.8,30.9,31.1,31.2,31.3,31.4,31.6,31.7,31.8,33.7,35.7,37.6,39.6,41.5,41.8,42.3,42.7,43.2,43.7,44.2,44.8,45.3,45.9,46.4,47,47.6,48.1,48.7,49.2,49.8,50.4,51,51.6,52.2,52.7,53.1,53.4,53.8,54.2,54.4,54.7,55,55.3,55.8,56.2,56.7,57.3,57.6,58.2,58.3,58.8,58.9,58.8,58.7,58.5,58.1,57.7,57.2,56.8,56.3,55.9,55.5,55.2,55,54.8,54.7,54.7,54.7,55.2,55.7,56,56.6,57.1,57.5,57.9,58.3,58.7,59.1,59.5],"population":[2127034,2133389,2139744,2146099,2152454,2158809,2165344,2171880,2178415,2184951,2191486,2198021,2204557,2211092,2217628,2224163,2230895,2237627,2244359,2251091,2257823,2264554,2271286,2278018,2284750,2291482,2298432,2305382,2312333,2319283,2326233,2333183,2340133,2347084,2354034,2360984,2368137,2375289,2382442,2389594,2396747,2403899,2411052,2418204,2425357,2432509,2439868,2447228,2454587,2461947,2469306,2476665,2484025,2491384,2498744,2506103,2548135,2590166,2632198,2674229,2716261,2758293,2800324,2842356,2884387,2926419,2989577,3052735,3115893,3179051,3242209,3305367,3368525,3431683,3494841,3557999,3648849,3739699,3830549,3921399,4012249,4103098,4193948,4284798,4375648,4466498,4544218,4623471,4704556,4787832,4873726,4962726,5055386,5152307,5254110,5361367,5474509,5593768,5719135,5850454,5987671,6130990,6280743,6437157,6600479,6770967,6948847,7134374,7327874,7529704,7740196,7959500,8187840,8425707,8673666,8932121,9201146,9480638,9770555,10070779,10381098,10701458,11031515,11370394,11716975,12070359,12430311,12796739,13169100,13546823,13929575,14317191,14709961,15108630,15514249,15927713,16349364,16779434,17218591,17667576,18126999,18597109,19078100,19570418,20074522,20590666,21119065,21659488,22211166,22773014,23344179]},{"name":"Canada","region":"America","income":[2603,2644,2686,2728,2771,2815,2915,2834,3061,3081,2966,2728,2873,2723,2936,3021,3394,3510,3479,3714,3451,3456,3530,3746,3730,3963,4014,3951,3890,4035,3953,3816,4189,4309,4664,4858,5168,5560,5565,5476,5948,6423,6472,5967,6432,6794,7037,7309,7423,6717,7061,7747,8002,7399,6695,6430,5587,6310,6611,6610,7211,7468,8046,8581,8402,7976,6636,6083,5582,6111,6538,6824,7399,7517,7882,8871,9996,11617,11993,12287,11773,11437,11694,11654,11650,12022,12419,12911,13158,12687,13513,14253,14177,14056,14289,14414,14545,15276,15752,16464,17243,18022,18240,18900,19614,19842,20688,21532,22797,23405,23593,24563,25095,25853,26665,26678,27171,26031,26525,27781,29016,29482,30288,31356,31550,31163,30090,29977,30424,31505,32101,32290,33310,34389,35810,37314,37563,38270,38621,39436,40284,41012,41432,41468,39884,40773,41567,41865,42213,42817,43294],"lifeExpectancy":[42,42.1,42.2,42.3,42.4,42.5,42.6,42.8,43,43.2,43.4,43.6,43.9,44.1,44.3,44.5,44.7,44.8,44.8,44.9,44.9,45,45,45,45.1,45.1,45.2,45.5,45.9,46.2,46.6,46.9,47.3,47.6,47.9,48.3,48.6,49,49.4,49.8,50.2,50.6,51,51.3,51.7,52.1,52.5,53,53.4,53.9,54.3,54.8,55.2,47.2,56.1,56.6,57,57,57,58.8,59.3,58,58.7,58.6,58,58.9,60.3,61.4,62.3,62.8,62.5,62.7,61.3,63.3,63.7,64,63.7,64.7,64.6,65.3,66.3,66.5,66.8,67.3,67.6,68.3,68.5,68.7,69.1,70,70,70,69.9,70.6,70.6,71,71.2,71.3,71.3,71.6,71.7,71.9,72.1,72.2,72.4,72.6,72.9,72.9,73.1,73.2,73.6,73.9,74.2,74.4,74.7,75,75.4,75.8,76.1,76.4,76.5,76.6,76.8,77.1,77.2,77.4,77.6,77.7,77.8,77.9,78,78.3,78.7,78.9,79.1,79.3,79.5,79.7,79.9,80.1,80.3,80.5,80.6,80.7,80.9,81.1,81.3,81.4,81.5,81.6,81.7],"population":[3524316,3582886,3641456,3700027,3758597,3817167,3871485,3925803,3980121,4034439,4088758,4143076,4197394,4251712,4306030,4360348,4415121,4469894,4524667,4579440,4634213,4688986,4743759,4798532,4853305,4908078,4970351,5032624,5094896,5157169,5219442,5281715,5343988,5406260,5468533,5530806,5695845,5860885,6025924,6190964,6356003,6521042,6686082,6851121,7016161,7181200,7339501,7497801,7656102,7814402,7972703,8131003,8289304,8447604,8605905,8764205,8932883,9101561,9270238,9438916,9607594,9776272,9944950,10113627,10282305,10450983,10571477,10691970,10812464,10932958,11053452,11173945,11294439,11414933,11535426,11655920,11864028,12072135,12280243,12488351,12696459,12904566,13112674,13320782,13528889,13736997,14099994,14481497,14882050,15300472,15733858,16177451,16624767,17067983,17498573,17909232,18295922,18659663,19007305,19349346,19693538,20041006,20389445,20739031,21089228,21439200,21790338,22141998,22488744,22823272,23140609,23439940,23723801,23994948,24257594,24515788,24768525,25017501,25272656,25546736,25848173,26181342,26541981,26919036,27296517,27662440,28014102,28353843,28680921,28995822,29299478,29590952,29871092,30145148,30420216,30701903,30991344,31288572,31596593,31918582,32256333,32611436,32982275,33363256,33746559,34126173,34499905,34868151,35230612,35587793,35939927]},{"name":"Cape Verde","region":"Sub-Saharan Africa","income":[643,646,648,651,654,657,659,662,665,668,671,674,677,679,682,685,688,691,694,697,700,703,706,709,712,715,718,721,724,727,730,733,737,740,743,746,749,752,756,759,762,765,769,772,775,779,782,785,789,792,795,799,802,805,809,812,812,811,810,809,808,808,807,806,805,804,803,802,801,800,799,798,797,795,794,793,792,790,789,788,786,785,784,782,781,779,784,790,795,779,778,782,751,740,797,826,849,867,882,895,905,915,923,930,936,942,856,805,788,757,771,759,749,814,886,1189,1269,1276,1366,1385,1469,1474,1538,1546,1589,1609,1597,1728,1827,2120,2361,2568,2794,3082,3363,3772,3784,3910,4006,4352,4604,4937,5666,6031,5941,6005,6206,6224,6232,6343,6514],"lifeExpectancy":[33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,33.8,13.1,33.8,33.8,34,34.1,34.3,34.5,34.6,34.8,35,35.2,35.3,35.5,35.7,35.8,36,36.2,36.3,37.4,38.6,39.7,40.8,41.9,43,44.1,45.2,46.3,47.4,48.5,49.6,50.7,51.8,52.9,53.1,53.4,53.7,54,54.3,54.7,55,55.3,55.6,55.9,56.1,56.4,56.7,57,57.3,57.8,58.3,59,59.8,60.7,61.1,62.1,63.2,64.3,65.2,65.9,66.5,67.1,67.4,67.5,67.4,67.2,67.1,67,67.2,67.4,67.8,68.2,68.6,68.8,68.9,69,69,69,69.1,69.2,69.3,69.5,69.8,70.1,70.4,70.8,71.1,71.4,71.8,72.2,72.5,72.9,73.1,73.4,73.7,74,74.2,74.4,74.6],"population":[83424,84163,84903,85643,86382,87122,87926,88729,89533,90336,91140,91943,92747,93550,94354,95157,96034,96911,97788,98665,99543,100420,101297,102174,103051,103928,104892,105856,106821,107785,108749,109713,110677,111642,112606,113570,114620,115669,116719,117769,118819,119868,120918,121968,123017,124067,125220,126374,127527,128680,129834,130987,132140,133293,134447,135600,136868,138136,139403,140671,141939,143207,144475,145742,147010,148278,149664,151050,152437,153823,155209,156595,157981,159368,160754,162140,163733,165325,166918,168510,170103,171696,173288,174881,176473,178066,186124,191521,194839,196632,197422,197702,197933,198541,199903,202316,205958,210866,216913,223854,231427,239765,248733,257478,264885,270197,273053,273788,273211,272509,272575,273625,275479,278152,281555,285599,290428,296071,302174,308251,313976,319161,323972,328861,334473,341256,349326,358473,368423,378763,389156,399508,409805,419884,429576,438737,447357,455396,462675,468985,474224,478265,481278,483824,486673,490379,495159,500870,507258,513906,520502]},{"name":"Central African Republic","region":"Sub-Saharan Africa","income":[529,531,534,536,539,541,544,547,549,552,555,557,560,563,565,568,571,574,577,579,582,585,588,591,593,596,599,602,605,608,611,614,617,620,623,626,629,632,635,638,641,644,647,650,654,657,660,663,666,678,690,703,715,728,741,754,766,779,791,804,817,830,844,857,871,885,899,914,929,944,959,974,990,1006,1022,1039,1055,1072,1089,1107,1125,1143,1161,1180,1198,1218,1245,1272,1299,1325,1352,1377,1403,1428,1452,1436,1461,1393,1360,1353,1332,1294,1315,1297,1332,1358,1285,1227,1256,1192,1181,1199,1261,1248,1145,1103,1088,1077,984,1019,998,991,942,933,939,944,918,839,821,841,881,827,852,873,887,848,870,887,825,860,853,869,892,894,892,901,913,932,584,578,599],"lifeExpectancy":[30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,11.6,30,30,30.1,30.3,30.4,30.5,30.7,30.8,30.9,31,31.2,31.3,31.4,31.6,31.7,31.8,32,32.1,32.2,32.4,32.5,32.6,32.8,32.9,33,33.1,33.3,33.4,34.2,35,35.8,36.5,36.9,37.4,38,38.5,39.1,39.6,40.1,40.7,41.2,41.7,42.3,42.8,43.4,44,44.6,45.3,46,46.8,47.6,48.5,48.6,48.7,48.7,48.8,48.9,49.1,49.3,49.6,49.8,49.9,50.1,50.1,49.9,49.5,49.1,48.6,48.1,47.6,47.2,46.9,46.9,46.8,46.9,46.7,46.4,46.3,46.2,46.3,46.5,46.7,46.8,47.3,47.6,48,48.4,49,49.6,50.3,51.1,51.7,52.1,52.3,52.8,53.3,53.8],"population":[595747,598657,601568,604478,607389,610299,613346,616393,619440,622487,625534,628581,631628,634675,637722,640769,643967,647165,650363,653561,656759,659957,663155,666353,669551,672749,676118,679486,682855,686224,689593,692961,696330,699699,703067,706436,709967,713497,717028,720558,724089,727620,731150,734681,738211,741742,745425,749109,752792,756476,760159,763842,767526,771209,774893,778576,782382,786188,789994,793800,797606,801411,805217,809023,812829,816635,830960,845284,859609,873933,888258,902582,916907,931231,945556,959880,996557,1033235,1069912,1106589,1143267,1179944,1216621,1253298,1289976,1326653,1339842,1353470,1367805,1383078,1399493,1417218,1436392,1457118,1479472,1503501,1529229,1556656,1585765,1616515,1648830,1682874,1718558,1755260,1792150,1828710,1864757,1900702,1937383,1975968,2017379,2061552,2108417,2158844,2213888,2274095,2340259,2411693,2485666,2558432,2627424,2691312,2751163,2809720,2871005,2937832,3010950,3089141,3170848,3253698,3335840,3417163,3497910,3577028,3653310,3726048,3794677,3859784,3923294,3987896,4055608,4127112,4202104,4280405,4361492,4444973,4530903,4619500,4710678,4804316,4900274]},{"name":"Chad","region":"Sub-Saharan Africa","income":[521,524,526,529,531,534,536,539,542,544,547,550,552,555,558,560,563,566,568,571,574,577,579,582,585,588,591,594,597,599,602,605,608,611,614,617,620,623,626,629,632,635,638,641,644,648,651,654,657,668,679,690,701,713,725,737,749,762,775,789,802,816,830,844,859,873,888,903,919,935,951,967,983,1000,1017,1035,1052,1070,1089,1107,1126,1145,1165,1185,1205,1225,1254,1282,1310,1339,1369,1398,1428,1459,1488,1475,1470,1522,1474,1409,1387,1334,1315,1281,1341,1338,1334,1216,1131,1258,1441,1387,1253,1217,946,891,880,884,983,994,1202,1122,1058,1185,1221,1111,1169,1223,999,1066,1044,1032,1054,1090,1045,998,1073,1120,1237,1592,1803,1755,1755,1753,1772,1953,1896,2003,2055,2141,2191],"lifeExpectancy":[30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,18.1,30.9,30.9,31.1,31.3,31.5,31.7,31.9,32.1,32.3,32.5,32.7,33,33.2,33.4,33.6,33.8,34,34.2,34.4,34.6,34.8,35,35.2,35.4,35.6,35.8,36,37.2,38.3,39.4,40.6,41.7,42,42.5,43,43.4,43.9,44.4,44.8,45.3,45.8,46.2,46.7,47.2,47.6,48.1,48.6,49.1,49.7,50.3,50.9,51.6,51.7,51.7,52.2,52.1,52,51.5,51.6,51.7,51.7,51.8,51.7,51.9,52.1,52.5,53.4,53.3,50.9,54.1,54.1,53.6,54.3,54.1,54.2,53.9,53.7,53.3,53,52.7,52.5,52.4,52.6,52.7,52.9,53.2,53.6,53.7,54.5,54.8,55.5,56.2,56.5,56.8,57.1,57.4,57.7],"population":[1443807,1444594,1445381,1446169,1446956,1447743,1448530,1449317,1450104,1450891,1451679,1452466,1453253,1454040,1454827,1455614,1456401,1457188,1457976,1458763,1459550,1460337,1461124,1461912,1462699,1463486,1464273,1465060,1465847,1466634,1467422,1468209,1468996,1469783,1470570,1471357,1472144,1472931,1473719,1474506,1475293,1476080,1476867,1477655,1478442,1479229,1479754,1480278,1480803,1481328,1481853,1482377,1482902,1483427,1483951,1484476,1484476,1484476,1484476,1484476,1484476,1484476,1484476,1484476,1484476,1484476,1508759,1533041,1557324,1581607,1605890,1630172,1654455,1678738,1703020,1727303,1804804,1882305,1959806,2037307,2114809,2192310,2269811,2347312,2424813,2502314,2544102,2589278,2636785,2685842,2735936,2786844,2838612,2891526,2946040,3002596,3061423,3122357,3184775,3247798,3310921,3373563,3436227,3500778,3569778,3644911,3727382,3816299,3908729,4000511,4088858,4173070,4254770,4336389,4421448,4512795,4610964,4716073,4830055,4955088,5092650,5244158,5409275,5585528,5769273,5958022,6151213,6350174,6556628,6773104,7001634,7242018,7494143,7760157,8042713,8343321,8663599,9002102,9353516,9710498,10067932,10423616,10779504,11139740,11510535,11896380,12298512,12715465,13145788,13587053,14037472]},{"name":"Chile","region":"America","income":[1751,1771,1685,1752,1908,1929,1904,2017,2119,2000,2134,2080,1983,2073,2353,2605,2658,2838,2815,2800,2678,2753,2905,2753,2786,2948,3147,3044,3155,3064,3238,3216,3106,3441,3421,3295,3338,3443,3213,3437,3395,3620,3769,4123,4098,4512,4333,4448,4471,3729,3562,4309,4344,4340,3673,4092,3495,3571,4237,4488,4613,4163,4023,4849,5019,4145,3210,2666,3227,3826,3973,4091,4564,4529,4535,4625,4484,4600,4638,4633,4935,5254,4598,5263,5056,5196,5279,5505,5811,5519,5613,5584,6016,6194,5699,6020,6155,6293,6538,6537,6451,7026,7114,7231,7364,7382,7906,7674,7123,7070,6058,6168,6675,7122,7603,8088,8454,7182,6867,7160,7193,7483,7851,8288,9016,9193,9747,10744,11287,11725,12759,13498,14186,14450,14159,14614,14925,15075,15499,16260,16985,17554,18278,18698,18329,19204,20141,21050,21746,21967,22465],"lifeExpectancy":[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,31.7,31.4,31.1,30.8,30.5,30.8,31.1,31.3,31.6,31.9,32,32,32.1,32.1,32.2,28.3,32,31.8,31.8,31.7,32.8,33.9,35,36.1,37.2,37.6,38,38.4,38.8,39.1,39.2,39.4,39.5,39.6,39.7,40.7,41.7,42.8,43.8,44.8,45.6,46.4,47.2,48,48.9,51,53.2,55.4,55.5,55.8,56.1,56.4,56.7,57,57.3,57.7,58.1,58.5,58.9,59.3,59.8,60.3,60.9,61.4,62,62.6,63.2,63.8,64,63.8,64.8,66.1,67.2,67.4,68,68.6,69,69.7,70.5,70.9,70.9,71.2,71.8,72.6,73.1,72.9,72.7,73,74,74.8,75.1,75.1,75.2,75.6,76.1,76.5,76.9,77.2,77.4,77.6,77.8,78.1,78.4,78.6,78.8,78.9,78.8,78.8,78.9,79,79.1,79.2,79.3],"population":[1813175,1841950,1870725,1899500,1928276,1957051,1989070,2021090,2053109,2085129,2117148,2149167,2181187,2213206,2245226,2277245,2311902,2346559,2381216,2415873,2450530,2485186,2519843,2554500,2589157,2623814,2659582,2695349,2731117,2766884,2802652,2838419,2874187,2909954,2945722,2981489,3018100,3054711,3091321,3127932,3164543,3201154,3237765,3274375,3310986,3347597,3388883,3430169,3471456,3512742,3554028,3595314,3636600,3677887,3719173,3760459,3815361,3870263,3925165,3980067,4034969,4089870,4144772,4199674,4254576,4309478,4389342,4469206,4549070,4628934,4708798,4788661,4868525,4948389,5028253,5108117,5211595,5315073,5418552,5522030,5625508,5728986,5832464,5935943,6039421,6142899,6278346,6417543,6561033,6709188,6862211,7020125,7182786,7349892,7521016,7695692,7873504,8054166,8237555,8423614,8612074,8802926,8995410,9187592,9377005,9561868,9741579,9916558,10087377,10255074,10420590,10584237,10746328,10907901,11070198,11234340,11400489,11569135,11742057,11921407,12108576,12304203,12507488,12716508,12928491,13141202,13354054,13566942,13778676,13987999,14193986,14396020,14594070,14788609,14980484,15170387,15358418,15544554,15729268,15913119,16096571,16279728,16462701,16645940,16829957,17015048,17201305,17388437,17575833,17762647,17948141]},{"name":"China","region":"East Asia & Pacific","income":[1066,1087,1087,1113,1101,1099,1084,1090,1057,1000,1026,1061,1001,1014,1031,1015,1011,1003,1005,977,974,959,940,945,955,918,933,916,921,911,940,895,904,876,882,894,893,922,916,936,856,898,917,945,956,991,983,938,936,946,957,968,979,990,1001,1012,1017,1021,1026,1031,1035,1040,1045,1050,1054,1055,1048,1064,1047,942,1004,1052,1012,973,905,841,782,727,676,629,585,570,556,542,529,535,582,631,692,694,706,736,780,889,958,889,558,567,635,713,772,826,719,669,732,848,876,843,894,888,920,891,904,1016,1059,1073,1099,1175,1229,1456,1557,1604,1652,1597,1474,1516,1634,1845,2078,2323,2551,2775,3000,3205,3419,3678,3955,4285,4685,5127,5675,6360,7225,7880,8565,9430,10274,11017,11805,12609,13334],"lifeExpectancy":[31.7,31.8,31.8,31.9,31.9,32,32,32,32,32,32,29.5,27.5,25.2,28.5,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,22.4,32,32,31.9,31.9,31.8,31.8,31.7,32,25.3,32.7,29.4,33.3,33.6,34,34.3,34.7,35,35.4,33.1,32.9,33.1,33.3,32.9,30.8,27.8,33.7,35.7,37.1,38.2,38.6,39.1,40,40.9,41.9,42.8,44.7,46.2,48.5,48.6,48.1,36.3,29.5,31.9,42.3,49.6,51,53.3,54.4,55.9,56.9,58.4,60,60.6,61.1,61.7,62.1,62.6,62.4,63.3,63.7,64,64.5,64.8,65.2,65.6,66,66.4,66.8,67.2,67.5,67.7,68,68.3,68.6,68.9,69.3,69.6,69.9,70.3,70.7,71.1,71.5,71.9,72.4,72.9,73.4,73.9,74.4,74.9,75.1,75.6,75.9,76.1,76.3,76.5,76.7,76.9],"population":[371854353,370215714,368577075,366938436,365299797,363661158,363849461,364037765,364226068,364414372,364602675,364790978,364979282,365167585,365355889,365544192,366703308,367862423,369021539,370180655,371339771,372498886,373658002,374817118,375976233,377135349,378940270,380745190,382550111,384355032,386159953,387964873,389769794,391574715,393379635,395184556,397449178,399713800,401978421,404243043,406507665,408772287,411036909,413301530,415566152,417830774,422322756,426814739,431306721,435798703,440290686,444782668,449274650,453766632,458258615,462750597,464597795,466444993,468292192,470139390,471986588,473833786,475680984,477528183,479375381,481222579,484086203,486949827,489813451,492677075,495540700,498404324,501267948,504131572,506995196,509858820,513284230,516709641,520135051,523560461,526985872,530411282,533836692,537262102,540687513,544112923,558820362,570764965,580886559,589955812,598574241,607167524,615992182,625155626,634649557,644450173,654625069,665426760,677332765,690932043,706590947,724490033,744365635,765570668,787191243,808510713,829367784,849787991,869474823,888132761,905580445,921688199,936554514,950537317,964155176,977837433,991553829,1005328574,1019698475,1035328572,1052622410,1071834975,1092646739,1114162025,1135128009,1154605773,1172327831,1188450231,1202982955,1216067023,1227841281,1238234851,1247259143,1255262566,1262713651,1269974572,1277188787,1284349938,1291485488,1298573031,1305600630,1312600877,1319625197,1326690636,1333807063,1340968737,1348174478,1355386952,1362514260,1369435670,1376048943]},{"name":"Colombia","region":"America","income":[1085,1087,1090,1093,1096,1099,1101,1104,1107,1110,1113,1116,1119,1122,1124,1127,1130,1133,1136,1139,1142,1145,1148,1151,1154,1157,1160,1163,1166,1169,1172,1175,1178,1181,1184,1187,1190,1193,1196,1199,1202,1212,1268,1313,1356,1405,1440,1476,1504,1516,1540,1573,1591,1631,1717,1782,1826,1890,1948,1995,2038,2166,2290,2383,2393,2329,2251,2359,2449,2559,2577,2668,2663,2789,2871,2842,2799,2717,2643,2738,2780,2960,2983,2975,3143,3177,3151,3238,3287,3404,3418,3459,3452,3396,3519,3535,3592,3655,3650,3749,3777,3868,3893,4021,4162,4325,4484,4731,4952,5161,5208,5382,5544,5953,6200,6373,6441,6405,6421,6518,6613,6887,7158,7371,7519,7752,7776,8014,8052,8366,8643,8664,8804,8701,8194,8414,8415,8488,8683,9005,9286,9759,10278,10489,10511,10777,11332,11636,12054,12447,12761],"lifeExpectancy":[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,28.3,32,32,32.1,32.2,32.3,32.4,32.5,32.6,32.7,32.8,32.9,33,33.7,34.4,35.1,35.8,36.4,37.1,37.8,38.5,39.5,40.4,41.4,42.4,43.4,44.3,45.5,46.7,47.9,49.1,50.3,51.5,52.2,53.5,54.7,55.8,56.8,57.8,58.7,59.5,60.2,60.9,61.5,62.1,62.7,63.2,63.8,64.3,64.8,65.2,65.7,66.1,66.3,66.1,65.9,66.1,66.5,67.2,67.9,68.5,68.9,69.4,69.7,70,70.3,70.4,70.3,70.6,70.6,70.7,70.8,70.9,70.9,71,71.1,71.3,71.6,71.8,72.1,72.2,72.3,72.5,72.7,72.9,73.4,73.7,74.1,74.5,74.9,75.1,75.3,75.3,75.4,75.5,75.6,75.7,75.8],"population":[2358459,2383276,2408092,2432909,2457725,2482542,2522884,2563226,2603568,2643910,2684252,2724594,2764936,2805278,2845620,2885962,2940629,2995296,3049963,3104630,3159297,3213963,3268630,3323297,3377964,3432631,3500271,3567911,3635551,3703191,3770831,3838470,3906110,3973750,4041390,4109030,4200119,4291208,4382297,4473386,4564475,4655564,4746653,4837742,4928831,5019920,5157388,5294855,5432323,5569790,5707258,5844726,5982193,6119661,6257128,6394596,6569562,6744527,6919493,7094458,7269424,7444390,7619355,7794321,7969286,8144252,8274044,8403836,8533628,8663420,8793213,8923005,9052797,9182589,9312381,9442173,9732046,10021918,10311791,10601663,10891536,11181409,11471281,11761154,12051026,12340899,12699949,13064689,13438645,13824721,14225197,14641718,15075304,15526391,15994891,16480384,16982313,17500166,18033548,18581972,19144220,19721464,20311369,20905061,21490948,22061214,22611988,23146803,23674505,24208022,24756969,25323412,25905124,26502172,27113510,27737905,28375995,29027158,29687096,30350082,31011686,31669780,32324326,32975533,33624442,34271563,34916770,35558683,36195170,36823539,37441980,38049040,38645409,39234059,39819279,40403959,40988909,41572493,42152147,42724157,43285636,43835744,44374647,44901660,45416276,45918101,46406446,46881018,47342363,47791393,48228704]},{"name":"Comoros","region":"Sub-Saharan Africa","income":[744,744,745,746,747,747,748,749,750,750,751,752,753,753,754,755,756,756,757,758,759,760,760,761,762,763,763,764,765,766,767,767,768,769,770,770,771,772,773,774,774,775,776,777,778,778,779,780,781,781,782,783,784,785,785,786,787,788,788,789,790,791,791,792,793,794,794,795,796,796,797,798,799,799,800,801,801,802,803,803,804,805,805,806,807,807,837,846,862,892,901,915,929,935,967,1026,1013,1079,1278,1342,1308,1416,1530,1494,1425,1425,1453,1452,1522,1525,1575,1523,1522,1504,1583,1636,1640,1686,1712,1730,1719,1703,1687,1689,1621,1595,1473,1561,1569,1451,1467,1413,1434,1416,1407,1391,1517,1513,1505,1495,1498,1499,1472,1440,1431,1426,1427,1435,1450,1459,1472],"lifeExpectancy":[32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,12.4,32.1,32.1,32.2,32.2,32.3,32.3,32.4,32.5,32.5,32.6,32.7,32.7,32.8,32.8,32.9,33,33,33.1,33.1,33.2,33.3,33.3,33.4,33.5,33.5,33.6,33.6,35.3,37,38.6,40.3,41.9,42.2,42.5,42.9,43.3,43.7,44.1,44.6,45,45.5,45.9,46.4,46.8,47.3,47.8,48.2,48.7,49.2,49.7,50.3,50.8,51,51.2,51.5,51.7,52,52.2,52.4,52.6,52.9,53,53.4,53.9,54.3,54.9,55.4,55.8,56,56.4,56.6,56.9,57.2,57.6,58,58.3,58.6,58.9,59.1,59.4,59.9,60.2,60.6,60.9,61.2,61.6,61.9,62.2,62.4,62.6,62.8,63,63.3,63.5,63.7,63.9,64.1],"population":[80259,80881,81503,82125,82748,83370,84039,84708,85377,86046,86715,87383,88052,88721,89390,90059,90781,91503,92226,92948,93670,94392,95114,95837,96559,97281,98066,98850,99635,100420,101205,101989,102774,103559,104343,105128,105973,106818,107663,108508,109354,110199,111044,111889,112734,113579,114498,115418,116337,117257,118176,119095,120015,120934,121854,122773,123776,124778,125781,126783,127786,128789,129791,130794,131796,132799,133884,134968,136053,137137,138222,139306,140391,141475,142560,143644,144913,146182,147451,148720,149989,151258,152527,153796,155065,156334,160083,163553,166839,170019,173149,176265,179386,182512,185629,188732,191828,194960,198205,201665,205412,209536,214038,218794,223629,228443,233125,237797,242875,248921,256309,265234,275496,286583,297765,308518,318659,328355,337853,347548,357729,368443,379589,391133,403003,415144,427556,440252,453188,466309,479574,492979,506525,520180,533909,547696,561525,575428,589500,603869,618632,633814,649404,665414,681845,698695,715972,733661,751697,769991,788474]},{"name":"Congo, Dem. Rep.","region":"Sub-Saharan Africa","income":[634,636,639,642,644,647,650,652,655,658,661,663,666,669,672,674,677,680,683,686,688,691,694,697,700,703,706,709,712,715,717,720,723,726,729,732,735,739,742,745,748,751,754,757,760,763,766,770,773,788,803,819,835,852,868,885,902,920,937,955,973,992,1011,1030,1050,1070,1091,1112,1133,1155,1177,1199,1222,1245,1269,1293,1318,1343,1369,1395,1422,1449,1476,1504,1533,1562,1756,1845,1994,2041,2128,2202,2177,2085,2084,2225,1948,2158,2147,2108,2016,2085,1999,2062,2160,2094,2194,2145,2253,2323,2032,1840,1772,1628,1575,1567,1567,1517,1496,1535,1498,1523,1517,1478,1410,1270,1120,963,801,742,724,698,645,622,583,531,506,507,520,539,556,569,588,607,607,632,657,685,724,768,809],"lifeExpectancy":[31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,9.1,31.6,31.6,31.7,31.8,31.9,32,32.1,32.2,32.3,32.4,32.6,32.7,32.8,32.9,33,33.1,33.2,33.3,33.4,33.5,33.6,33.7,34.5,35.3,36.1,36.8,37.6,38.4,39.2,40,40.7,41.5,41.8,42.3,42.7,43.2,43.6,44,44.3,44.7,45,45.3,45.6,46,46.3,46.6,47,47.4,47.8,48.3,48.7,49.2,49.5,49.8,50.1,50.4,50.7,50.9,51.1,51.3,51.5,51.7,51.9,52.1,52.4,52.7,52.9,53.2,53.3,53.4,53.4,53.3,53.2,53,52.7,47.3,52.4,51.3,51.9,52.1,52.2,52.5,52.8,52.9,53.3,53.8,54.2,54.6,55.1,55.4,55.8,56.3,56.7,57.1,57.5,57.9,58.3],"population":[6952245,6997631,7043017,7088403,7133789,7179175,7227412,7275649,7323886,7372123,7420360,7468596,7516833,7565070,7613307,7661544,7712998,7764452,7815905,7867359,7918813,7970267,8021721,8073174,8124628,8176082,8231257,8286432,8341608,8396783,8451958,8507133,8562308,8617484,8672659,8727834,8786570,8845305,8904041,8962776,9021512,9080248,9138983,9197719,9256454,9315190,9378264,9441338,9504412,9567486,9630561,9693635,9756709,9819783,9882857,9945931,10013823,10081715,10149607,10217499,10285392,10353284,10421176,10489068,10556960,10624852,10697379,10769905,10842432,10914958,10987485,11060011,11132538,11205064,11277591,11350117,11433471,11516826,11600180,11683535,11766889,11850243,11933598,12016952,12100307,12183661,12428829,12680934,12944393,13222519,13517519,13830444,14161242,14508911,14871771,15248246,15637715,16041247,16461914,16903899,17369859,17861860,18378189,18913177,19458874,20009902,20563111,21120996,21690604,22282079,22902275,23556784,24242643,24948113,25656486,26357407,27049145,27741104,28448122,29190679,29985665,30829103,31721541,32688708,33763056,34962676,36309209,37783835,39314955,40804011,42183620,43424997,44558347,45647949,46788238,48048664,49449015,50971407,52602208,54314855,56089536,57926840,59834875,61809278,63845097,65938712,68087376,70291160,72552861,74877030,77266814]},{"name":"Congo, Rep.","region":"Sub-Saharan Africa","income":[691,693,695,697,699,701,703,705,707,709,711,713,715,717,719,721,723,725,727,729,731,733,735,737,739,741,743,746,748,750,752,754,756,758,760,763,765,767,769,771,773,776,778,780,782,784,787,789,791,809,827,845,864,883,903,923,945,967,990,1013,1036,1060,1085,1111,1136,1163,1190,1218,1246,1275,1305,1335,1366,1398,1431,1464,1498,1533,1568,1605,1642,1680,1719,1759,1800,1842,1880,1918,1954,1991,2028,2063,2099,2135,2170,2198,2535,2435,2263,2282,2329,2411,2642,2825,3057,3348,3545,3584,4082,3930,3784,3852,3469,3576,3869,4238,4993,5995,6153,6414,6166,5586,5448,5398,5350,5264,5249,5248,5062,4659,4715,4782,4618,4657,4413,4623,4680,4778,4702,4745,4978,5138,4905,5022,5236,5533,5569,5631,5680,5905,6220],"lifeExpectancy":[32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,32.7,12.6,32.7,32.7,32.7,32.6,32.6,32.6,32.5,32.5,32.5,32.4,32.4,32.4,32.3,32.3,32.3,32.2,32.2,32.2,32.1,32.1,32.1,32,32,32,31.9,31.9,31.9,33.6,35.4,37.1,38.9,40.6,41,41.7,42.4,43.2,43.9,44.6,45.3,46,46.6,47.3,47.9,48.5,49,49.5,49.9,50.4,50.7,51.1,51.4,51.7,52,52.3,52.7,53.1,53.5,53.8,54.1,54.4,54.7,55.1,55.5,55.9,56.2,56.5,56.6,56.7,56.6,56.3,56,55.6,55.1,54.7,54,53.3,52.8,52.3,48.3,50.6,51.9,52.6,53.1,53.6,54.5,55.4,56.1,57.2,57.9,58.6,59.6,60.3,60.8,61.3,61.5,61.7,61.9],"population":[436177,439312,442447,445582,448718,451853,455206,458559,461911,465264,468617,471970,475323,478675,482028,485381,488981,492580,496180,499780,503380,506979,510579,514179,517778,521378,525265,529153,533040,536927,540815,544702,548589,552476,556364,560251,564416,568580,572745,576909,581074,585238,589403,593567,597732,601896,606395,610895,615394,619894,624393,628892,633392,637891,642391,646890,651759,656627,661496,666365,671234,676102,680971,685840,690708,695577,700812,706047,711282,716517,721753,726988,732223,737458,742693,747928,753908,759888,765867,771847,777827,783807,789787,795766,801746,807726,824129,841473,859714,878834,898832,919735,941590,964461,988433,1013581,1039966,1067611,1096502,1126602,1157905,1190361,1224041,1259190,1296137,1335090,1376189,1419305,1464052,1509880,1556406,1603446,1651134,1699781,1749859,1801688,1855391,1910800,1967596,2025320,2083648,2142529,2202106,2262496,2323890,2386467,2450125,2514907,2581306,2649964,2721277,2795903,2873638,2953011,3031969,3109269,3183883,3256867,3331564,3412592,3503086,3604595,3715665,3832771,3950786,4066078,4177435,4286188,4394334,4504962,4620330]},{"name":"Costa Rica","region":"America","income":[1285,1300,1314,1329,1344,1359,1374,1390,1405,1421,1437,1453,1470,1486,1503,1520,1537,1554,1571,1589,1607,1625,1643,1662,1680,1699,1718,1738,1757,1777,1797,1817,1837,1858,1879,1900,1921,1943,1965,1987,2009,2032,2055,2078,2101,2125,2149,2173,2197,2222,2247,2272,2297,2323,2349,2376,2275,2478,2241,2510,2448,2651,2409,2484,2333,2401,2327,2102,2458,2129,2265,2375,2677,2790,2779,2626,2896,2518,2477,2180,2414,2633,3050,3141,3186,2948,2933,3179,3542,3449,3709,3472,3633,3936,3929,4110,4123,4221,4427,4495,4749,4953,5094,5324,5518,5723,5933,6287,6597,6772,6725,6898,7305,7465,7607,7537,7190,6508,6505,6820,6683,6851,6984,7036,7253,7333,7337,7816,8196,8378,8495,8357,8603,9095,9610,9564,9465,9548,9972,10212,10629,11371,12079,12219,11914,12322,12694,13162,13427,13713,14132],"lifeExpectancy":[30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.6,31,31.4,31.8,32.2,32.7,33.1,33.5,33.9,34.3,34.7,34.7,34.8,34.8,34.9,34.9,34.9,35,35,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,35.1,31,35.1,35.1,35.9,36.7,37.5,38.2,39,39.8,40.6,41.4,42.2,43,43.5,44.1,44.6,45.1,45.7,46.2,46.8,47.3,47.9,48.4,49.4,50.4,51.4,52.4,53.4,54.4,55.4,56.4,57.4,58.4,58.8,59.4,60.1,60.7,61.4,62,62.7,63.3,64,64.6,65.3,65.9,66.6,67.2,67.8,68.4,68.9,69.5,70,70.6,71.1,71.7,72.2,72.9,73.6,74.1,74.6,74.9,75.2,75.4,75.8,76.2,76.3,76.4,76.3,76.4,76.4,76.5,76.5,76.6,76.6,76.6,76.6,76.6,76.6,76.8,77,77.2,77.4,77.7,77.9,78.1,78.3,78.5,78.8,79.2,79.5,79.7,79.6,79.6,79.6,79.7,79.8,79.9,80],"population":[127048,129320,131592,133865,136137,138409,141843,145277,148711,152145,155579,159013,162447,165881,169315,172749,178180,183610,189041,194471,199902,205332,210763,216193,221624,227054,234140,241225,248311,255396,262482,269568,276653,283739,290824,297910,304039,310168,316298,322427,328556,334685,340814,346944,353073,359202,365364,371525,377687,383848,390010,396172,402333,408495,414656,420818,433782,446747,459711,472676,485640,498604,511569,524533,537498,550462,568078,585693,603309,620924,638540,656155,673771,691386,709002,726617,749904,773191,796479,819766,843053,866340,889627,912915,936202,959489,986159,1015875,1048222,1082879,1119619,1158318,1198946,1241550,1286229,1333042,1381920,1432583,1484512,1537035,1589625,1642189,1694711,1746870,1798315,1848873,1898366,1947048,1995744,2045580,2097410,2151492,2207727,2266153,2326708,2389309,2454127,2521163,2589932,2659772,2730231,2800986,2872214,2944560,3018953,3095994,3175654,3257463,3341005,3425692,3510925,3596733,3682725,3767369,3848725,3925450,3996800,4063208,4125970,4187039,4247843,4308790,4369465,4429506,4488261,4545273,4600487,4654148,4706433,4757606,4807850]},{"name":"Cote d'Ivoire","region":"Sub-Saharan Africa","income":[1054,1058,1062,1066,1071,1075,1079,1084,1088,1092,1097,1101,1105,1110,1114,1119,1123,1128,1132,1137,1141,1146,1151,1155,1160,1164,1169,1174,1179,1183,1188,1193,1198,1202,1207,1212,1217,1222,1227,1232,1236,1241,1246,1251,1256,1261,1266,1272,1277,1293,1309,1326,1343,1360,1377,1394,1413,1432,1451,1470,1489,1509,1529,1549,1570,1591,1612,1633,1655,1676,1699,1721,1744,1767,1790,1814,1838,1862,1886,1911,1936,1962,1988,2014,2040,2067,2102,2138,2173,2209,2245,2281,2317,2353,2377,2510,2751,2651,2901,3312,3091,3291,3261,3565,3645,3798,3983,3975,4029,4020,4159,4488,4602,4878,4776,4068,4030,3868,3564,3330,3347,3330,3203,3129,3385,3234,3128,3019,2918,2851,2964,3103,3131,3202,3178,3049,2999,2904,2825,2820,2828,2827,2831,2854,2892,2892,2706,2928,3123,3324,3491],"lifeExpectancy":[31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,12,31.2,31.2,31.3,31.5,31.6,31.8,32,32.1,32.3,32.5,32.6,32.8,33,33.1,33.3,33.5,33.6,33.8,33.9,34.1,34.3,34.4,34.6,34.8,34.9,35.1,35.3,35.4,35.6,35.8,35.9,36.1,36.5,37.1,37.8,38.5,39.3,40,40.9,41.7,42.6,43.4,44.3,45.1,45.9,46.7,47.5,48.3,49.1,50,50.9,51.9,52.6,53.2,53.7,54.3,54.8,55.4,56,56.5,56.9,57.4,57.7,57.8,57.9,57.9,57.7,57.5,57.2,56.9,56.5,56.1,55.7,55.3,54.8,54.3,53.9,53.6,53.3,53.1,53,52.8,52.8,52.7,52.9,53.2,53.6,54.4,55.2,55.9,56.5,57.2,57.8,58.2,58.9,59.6,60.3],"population":[1476806,1486654,1496502,1506351,1516199,1526047,1536527,1547007,1557487,1567967,1578447,1588926,1599406,1609886,1620366,1630846,1642040,1653234,1664428,1675622,1686816,1698009,1709203,1720397,1731591,1742785,1754807,1766829,1778851,1790873,1802896,1814918,1826940,1838962,1850984,1863006,1875820,1888635,1901449,1914264,1927078,1939892,1952707,1965521,1978336,1991150,2004961,2018771,2032582,2046392,2060203,2074013,2087824,2101634,2115445,2129255,2144206,2159157,2174108,2189059,2204011,2218962,2233913,2248864,2263815,2278766,2294767,2310768,2326769,2342770,2358771,2374771,2390772,2406773,2422774,2438775,2457911,2477046,2496182,2515317,2534453,2553589,2572724,2591860,2610995,2630131,2692657,2758455,2827844,2901307,2979491,3063218,3153472,3251367,3358089,3474724,3602075,3740503,3889859,4049675,4219739,4400054,4591238,4794399,5010962,5241914,5487594,5747633,6021405,6307936,6606395,6916302,7237451,7569558,7912390,8265549,8629121,9002400,9383289,9769105,10158033,10548148,10939987,11337122,11744698,12165909,12600967,13046907,13499696,13953779,14404340,14852193,15296390,15728482,16137824,16517948,16865376,17185421,17491539,17802516,18132702,18486392,18862172,19261647,19684909,20131707,20604172,21102641,21622490,22157107,22701556]},{"name":"Cuba","region":"America","income":[1836,1858,1880,1901,1924,1946,1969,1992,2015,2038,2062,2086,2111,2135,2160,2185,2211,2237,2263,2289,2316,2343,2370,2398,2426,2454,2483,2512,2541,2571,2601,2631,2662,2693,2724,2756,2788,2821,2854,2887,2920,2955,2989,3024,3059,3095,3182,3271,3361,3453,3547,3643,3740,3839,3940,4042,4187,4332,4479,4626,4775,4925,5076,5228,5381,5027,4212,3369,3631,4246,4937,5740,6578,5083,5346,4631,6198,5177,5709,6523,7174,7720,8724,7645,8193,8630,9245,9446,8192,8492,8757,9424,10636,10501,9234,9213,9248,9273,9244,9179,9116,9436,10372,9626,9377,8918,9471,9745,10439,10805,11176,11334,11712,12312,12519,12284,13224,13421,13669,14019,14135,14025,13805,13925,13829,13670,12113,10637,9001,9018,9195,9871,10106,10086,10674,11268,11588,11715,12123,12791,14200,15901,17055,17765,18035,18477,19005,19586,20122,20704,21291],"lifeExpectancy":[33.8,32.7,31.7,30.6,29.6,29.7,29.7,29.8,29.8,29.9,31.1,32.3,33.4,34.6,35.8,36.8,37.9,38.9,40,41,41.5,42.1,42.6,43.2,43.7,39.5,35.4,31.2,27.1,22.9,22.1,21.3,20.5,19.7,18.9,33.1,33.3,33.5,33.7,33.9,34.2,34.4,34.6,34.8,35,35.2,35.4,35.6,35.9,36.1,36.3,36.5,36.7,23.8,37.2,37.4,37.7,38,38.4,38.7,39,39.6,40.2,40.8,41.4,42,42.7,43.4,44,44.7,45.4,46,46.6,47.3,47.9,48.5,49.3,50,50.8,51.5,52.3,53.8,55.3,56.8,58.3,59.8,60.2,60.8,61.5,62.1,62.8,63.4,64,64.7,65.3,66,66.6,67.3,68,68.7,69.4,70,70.7,71.3,71.9,72.5,73.2,73.9,74.1,74.3,74.6,74.6,74.4,74.5,74.6,74.6,74.6,74.7,74.6,74.4,74.3,74.5,74.6,74.6,74.7,74.7,74.7,74.8,74.8,74.8,74.9,75.2,75.3,75.4,75.6,75.9,76.2,76.6,76.8,76.9,77.1,77.4,77.6,77.8,77.9,78,78.1,78.2,78.3,78.4,78.5],"population":[1374336,1384403,1394470,1404538,1414605,1424672,1437713,1450754,1463795,1476836,1489877,1502917,1515958,1528999,1542040,1555081,1565400,1575720,1586039,1596358,1606678,1616997,1627316,1637635,1647955,1658274,1668669,1679065,1689460,1699855,1710251,1720646,1731041,1741436,1751832,1762227,1812860,1863493,1914126,1964759,2015393,2066026,2116659,2167292,2217925,2268558,2348414,2428270,2508125,2587981,2667837,2747693,2827549,2907404,2987260,3067116,3152287,3237458,3322629,3407800,3492972,3578143,3663314,3748485,3833656,3918827,3994175,4069522,4144870,4220217,4295565,4370913,4446260,4521608,4596955,4672303,4797072,4921842,5046611,5171381,5296150,5420919,5545689,5670458,5795228,5919997,6051290,6180031,6304524,6424173,6539470,6652086,6764787,6881209,7005486,7141129,7289828,7450404,7618359,7787149,7951928,8110428,8263547,8413329,8563191,8715123,8869961,9025299,9176051,9315371,9438445,9544268,9634677,9711393,9777287,9835177,9884219,9925618,9966733,10017061,10082990,10167998,10269276,10379080,10486110,10582082,10664577,10735775,10797556,10853435,10906048,10955372,11000431,11041893,11080506,11116787,11151472,11184540,11214837,11240680,11261052,11275199,11284043,11290239,11297442,11308133,11323570,11342631,11362505,11379111,11389562]},{"name":"Cyprus","region":"Europe & Central Asia","income":[1457,1474,1492,1510,1527,1546,1564,1583,1601,1620,1640,1659,1679,1699,1719,1740,1760,1781,1802,1824,1845,1867,1890,1912,1935,1958,1981,2005,2028,2053,2077,2102,2127,2152,2177,2203,2230,2256,2283,2310,2337,2365,2393,2422,2451,2480,2509,2539,2569,2593,2616,2640,2664,2688,2712,2737,2766,2795,2825,2855,2885,2915,2946,2977,3009,3040,3072,3105,3138,3171,3204,3238,3272,3306,3341,3376,3411,3447,3483,3519,3556,3593,3631,3668,3707,3745,3899,4058,4224,4397,4577,4764,4959,5161,5372,5592,5820,6058,6306,6563,6831,7110,7400,7702,8017,8344,9415,10088,10394,10200,8574,10217,11852,12722,13897,14582,14858,15638,16279,17500,18130,18626,19748,21185,22598,23802,23366,24891,24467,25380,26445,26450,26704,27721,28698,30005,30745,31373,31858,32812,33592,34528,35455,35828,34166,33747,32983,31710,30081,29673,29797],"lifeExpectancy":[38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5,39.2,39.8,40.5,41.1,41.8,42.4,43.1,43.7,44.4,45,45.2,45.5,45.7,46,46.2,46.5,46.7,47,47.2,47.5,47.6,47.7,26.2,47.9,48,48,48.1,48.2,48.3,48.3,48.3,48.3,48.3,48.3,48.2,48.2,48.2,48.2,48.1,48.1,48.1,48.1,48.9,49.7,50.5,51.3,52.1,52.9,54.7,56.4,58.2,59.9,61.6,63.4,65.1,65.3,65.8,66.2,66.6,67,67.3,67.7,68,68.4,68.7,69,69.3,69.6,69.9,70.1,70.4,70.7,70.9,71.2,71.4,71.9,72.4,72.9,68.5,73.8,74.4,75.1,75.6,76,76.1,76.2,76.3,76.4,76.5,76.7,77,77.3,77.6,78,78.2,78.3,78.3,78.2,78.1,78.2,78.3,78.4,78.6,78.8,79.1,79.5,79.8,80,80.2,80.4,80.7,80.9,81.1,81.4,81.6,81.9,82,82.2,82.4,82.6],"population":[185824,185853,185883,185912,185942,185971,186366,186760,187155,187549,187944,188338,188732,189127,189522,189916,191657,193397,195138,196878,198619,200359,202099,203840,205581,207321,210115,212908,215702,218495,221289,224083,226876,229670,232463,235257,238815,242373,245931,249489,253047,256604,260162,263720,267278,270836,274567,278298,282030,285761,289492,293223,296954,300686,304417,308148,311863,315578,319292,323007,326722,330437,334152,337866,341581,345296,351512,357727,363943,370159,376375,382590,388806,395022,401237,407453,416109,424765,433421,442077,450734,459390,468046,476702,485358,494014,500378,506627,513435,521187,529971,539566,549459,558895,566977,572929,576395,577691,577912,578629,580971,585311,591304,598491,606117,613619,620860,628000,635109,642335,649755,657526,665528,673252,680013,685406,689173,691711,694074,697717,703693,712340,723380,736477,751047,766611,783138,800660,818814,837166,855389,873246,890733,908040,925491,943287,961482,979883,998150,1015827,1032586,1048293,1063040,1077010,1090486,1103685,1116644,1129303,1141652,1153658,1165300]},{"name":"Czech Republic","region":"Europe & Central Asia","income":[2602,2612,2622,2633,2643,2653,2688,2723,2759,2795,2831,2869,2906,2944,2983,3022,3061,3101,3142,3183,3224,3267,3309,3353,3397,3441,3490,3539,3589,3640,3691,3743,3796,3850,3904,3959,4016,4073,4132,4191,4251,4312,4374,4437,4501,4566,4645,4725,4807,4753,4699,4646,4594,4542,4490,4440,4789,4610,4944,5411,5995,5927,6334,6856,7008,6742,6474,6179,5885,5636,5561,5999,6654,6698,6742,6786,6831,6876,6921,6967,7013,7059,7105,7152,7550,8110,8166,8339,8217,8468,9096,9535,10023,10699,11095,11860,12223,12318,12009,12482,12857,13342,13864,14467,14774,15038,15487,15954,16382,16853,17220,17366,18025,18127,18171,18586,18426,18738,18977,19380,19492,19820,19884,20293,20432,19839,17577,17470,17462,17964,19093,19934,19821,19777,20082,21003,21726,22126,22930,24057,25571,27256,28595,29128,27560,28111,28603,28333,28124,28695,29437],"lifeExpectancy":[35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35.9,36.8,37.6,38.5,39.4,40.3,40.7,41.1,41.5,41.9,42.3,42.7,43.1,43.5,43.9,44.3,44.9,45.4,46,46.6,47.1,47.7,48.2,35.7,49.4,49.9,50.5,51.1,51.6,52.2,52.8,53.3,53.9,54.5,55,55.6,56,56.4,56.8,57.3,57.7,58.1,58.5,59,59.3,59.1,58.8,56.9,52.1,47,45,58.1,62.1,63.1,64.1,64.5,65.4,67,67.7,68.2,69.1,69.5,69.2,70.1,70.1,70.6,70.8,70,70.6,70.7,70.4,70.6,70.5,70.1,69.6,69.7,69.8,70,70,70.2,70.4,70.6,70.6,70.6,70.6,70.6,70.8,70.9,70.9,70.9,71.1,71.3,71.5,71.7,71.7,71.6,71.8,72.3,72.8,73.1,73.5,73.8,74.1,74.5,74.8,75,75.2,75.4,75.6,75.9,76.3,76.6,76.8,77,77.2,77.4,77.7,78,78.2,78.4,78.6],"population":[6508059,6531981,6555903,6579824,6603746,6627668,6652427,6677187,6701946,6726705,6751465,6776224,6800983,6825742,6850502,6875261,6900939,6926617,6952294,6977972,7003650,7029328,7055006,7080683,7106361,7132039,7158745,7185451,7212158,7238864,7265570,7292276,7318982,7345689,7372395,7399101,7426766,7454431,7482096,7509761,7537427,7565092,7592757,7620422,7648087,7675752,7704441,7733131,7761820,7790510,7819199,7847888,7876578,7905267,7933957,7962646,7992321,8021995,8051670,8081344,8111019,8140693,8170367,8200042,8229717,8259391,8290171,8320952,8351732,8382513,8413293,8444073,8474854,8505634,8536415,8567195,8600737,8634280,8667822,8701365,8734907,8768449,8801992,8835534,8869077,8902619,9005036,9106227,9200240,9283156,9353086,9410282,9457027,9497307,9536268,9578587,9626727,9679416,9730996,9773266,9800931,9811540,9808728,9800665,9798793,9811291,9840280,9882993,9936604,9996356,10058165,10122450,10188839,10251436,10302778,10337827,10353750,10352607,10340397,10325923,10315676,10311350,10311293,10314591,10319255,10323701,10328440,10333930,10338381,10339439,10335556,10326682,10313836,10297977,10280525,10263010,10244261,10225198,10211846,10212088,10230877,10271476,10330487,10397984,10460022,10506617,10533985,10545161,10545314,10542666,10543186]},{"name":"Denmark","region":"Europe & Central Asia","income":[3286,3263,3234,3262,3420,3536,3524,3695,3647,3723,3755,3794,3650,3755,3844,3908,3917,4026,4137,4118,4104,4222,4334,4330,4356,4587,4652,4737,4800,4860,5074,5201,5259,5279,5439,5566,5736,5812,6098,6172,6219,6332,6499,6631,6810,6937,7210,7116,7292,7649,7020,7219,6699,6396,7126,7359,7031,7633,8327,8247,7951,8326,8412,8620,9118,9571,9581,9219,9414,9591,9708,9856,10001,10148,10534,8977,8012,8095,8871,9666,8822,10047,10484,10643,11258,12025,12004,12027,12601,12732,12767,12837,13741,13963,14896,15198,16061,16815,16793,18228,18917,19284,19775,20482,21701,21990,22464,23562,24318,24027,23846,25376,25758,26108,27020,26921,26741,27622,28392,29711,31032,32181,32297,32720,32849,33256,33601,34152,34008,35766,36670,37521,38584,39297,40321,41693,41886,41947,41996,42993,43919,45437,45609,45017,42498,42997,43314,42869,42483,42777,43495],"lifeExpectancy":[39.9,43,45,45.7,46.1,46.1,46.1,47.5,47.6,46.1,44.5,45.9,47.4,47.6,46.3,44.9,48.4,46.8,48.6,48.6,49.7,49,48.7,46.7,47.8,47.3,46.8,47.5,47.1,49.4,50.9,53,51.9,53.1,50.7,52,52.7,54.7,54.8,55.8,54.4,56.6,56.1,55,57.4,58.1,57,58.1,58.9,58.5,58.5,57,57.3,56.3,57,57.5,61.8,60.6,61.2,61.2,62,61.7,61.2,61.9,62,62.3,61.9,62.7,63.6,64.1,62.9,63.5,64,65,65.8,66.2,66,67.1,67.4,66.4,66,67.2,68.5,70.1,70.1,70.3,70.9,70.7,71.1,71.3,71.9,72,71.8,72.2,72.2,72.1,72.4,72.3,72.4,72.4,72.3,72.4,72.9,73.1,73.2,73.3,73.3,73.5,73.8,73.9,74,74.2,74.4,74.5,74.4,74.3,74.4,74.6,74.7,74.7,74.7,74.7,74.8,74.8,74.9,75.1,75.3,75.4,75.5,75.5,75.7,75.9,76.2,76.5,76.7,76.9,77.2,77.4,77.6,77.9,78.1,78.3,78.5,78.7,79,79.3,79.6,79.8,79.9,80,80.1],"population":[1790759,1810031,1829303,1848575,1867848,1887120,1906585,1926049,1945514,1964978,1984443,2003908,2023372,2042837,2062301,2081766,2102745,2123724,2144703,2165682,2186662,2207641,2228620,2249599,2270578,2291557,2318159,2344762,2371364,2397967,2424569,2451171,2477774,2504376,2530979,2557581,2589871,2622161,2654450,2686740,2719030,2751320,2783610,2815899,2848189,2880479,2916691,2952903,2989115,3025327,3061539,3097751,3133963,3170175,3206387,3242599,3272595,3302591,3332588,3362584,3392580,3422576,3452572,3482569,3512565,3542561,3571591,3600621,3629650,3658680,3687710,3716740,3745770,3774799,3803829,3832859,3876400,3919941,3963482,4007023,4050565,4094106,4137647,4181188,4224729,4268270,4308324,4345218,4379141,4410435,4439594,4467279,4494306,4521598,4550129,4580708,4613769,4649179,4686155,4723496,4760262,4796157,4831242,4865343,4898350,4930118,4960476,4989146,5015766,5039920,5061289,5079962,5095956,5108836,5118065,5123435,5124807,5122810,5118966,5115308,5113408,5113767,5116351,5121511,5129472,5140332,5154309,5171304,5190631,5211321,5232582,5254383,5276683,5298680,5319410,5338283,5354704,5369058,5382953,5398645,5417692,5440696,5466988,5495302,5523755,5550959,5576577,5600972,5624293,5646899,5669081]},{"name":"Djibouti","region":"Middle East & North Africa","income":[924,927,930,932,935,938,941,944,947,950,953,956,959,962,965,969,972,975,978,981,984,987,990,993,997,1000,1003,1006,1009,1012,1016,1019,1022,1025,1029,1032,1035,1038,1042,1045,1048,1052,1055,1058,1062,1065,1068,1072,1075,1107,1139,1173,1207,1243,1280,1317,1356,1396,1438,1480,1524,1569,1615,1663,1712,1762,1815,1868,1923,1980,2038,2099,2160,2224,2290,2357,2427,2498,2572,2648,2726,2806,2889,2974,3061,3151,3248,3267,3311,3411,3432,3473,3508,3502,3601,3727,3752,3701,3734,3700,3693,3708,3701,3676,3668,4357,4510,4529,4602,4381,4350,4538,3779,3632,3555,3500,3526,3531,3461,3795,3704,3616,3532,3364,3165,3050,2811,2736,2505,2440,2315,2181,2127,2092,2103,2079,2090,2114,2150,2202,2240,2315,2399,2502,2590,2665,2767,2807,2903,3016,3139],"lifeExpectancy":[29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,11.6,29.9,29.9,30.1,30.3,30.5,30.7,30.9,31.1,31.3,31.5,31.7,31.9,32.1,32.3,32.5,32.7,32.9,33.1,33.3,33.5,33.7,33.9,34.1,34.3,34.5,34.7,34.9,37.2,39.5,41.8,44,46.3,46.7,47.2,47.8,48.3,48.9,49.5,50.1,50.7,51.4,52,52.6,53.2,53.9,54.5,55.1,55.8,56.5,57.4,58.2,59.1,59.3,59.6,59.9,60.1,60.4,60.6,60.7,60.8,60.8,60.8,60.7,60.7,60.6,60.6,60.6,60.5,60.5,60.6,60.5,60.5,60.2,60,60.1,59.6,59.7,59.8,59.7,59.6,59.6,59.6,59.7,59.7,59.7,59.7,59.9,60.2,60.6,61,61.4,61.8,62.2,62.8,63.4,64,64.6],"population":[32299,32544,32790,33035,33281,33526,33789,34053,34316,34579,34843,35106,35369,35632,35896,36159,36443,36727,37011,37295,37579,37862,38146,38430,38714,38998,39306,39614,39922,40230,40538,40846,41154,41462,41770,42078,42409,42740,43071,43402,43734,44065,44396,44727,45058,45389,45749,46108,46468,46827,47187,47546,47905,48265,48625,48984,49375,49766,50157,50548,50939,51330,51721,52112,52503,52894,53316,53738,54161,54583,55005,55427,55849,56272,56694,57116,57605,58093,58582,59070,59559,60047,60536,61024,61513,62001,63309,64748,66273,67877,69594,71498,73703,76354,79617,83636,88499,94200,100622,107584,114963,122868,131403,140461,149891,159667,169370,179212,190536,205157,224182,248619,277622,308213,336254,358960,374683,384743,392908,404589,423470,451068,485565,523266,558810,588356,610679,627063,639215,649878,661076,673202,685644,698256,710652,722562,734088,745459,756656,767644,778406,788941,799309,809639,820097,830802,841802,853069,864554,876174,887861]},{"name":"Dominican Republic","region":"America","income":[854,858,863,868,873,877,882,887,892,896,901,906,911,916,921,926,931,936,941,946,952,957,962,967,972,978,983,988,994,999,1005,1010,1016,1021,1027,1032,1038,1043,1049,1055,1060,1066,1072,1078,1084,1090,1096,1101,1107,1125,1142,1160,1178,1196,1215,1234,1255,1277,1299,1321,1344,1367,1391,1415,1439,1464,1489,1515,1541,1568,1595,1622,1650,1678,1707,1737,1766,1797,1828,1859,1891,1923,1956,1990,2024,2058,2242,2358,2262,2321,2390,2550,2627,2681,2612,2655,2514,2851,2943,3044,2586,2848,2859,2784,3004,3234,3484,3816,4172,4306,4407,4595,4710,4712,4807,4988,5081,5062,5176,5085,4857,4903,5169,5104,5645,5278,5222,5657,5949,5973,6188,6514,6918,7283,7649,7955,7974,8307,8162,8147,8772,9568,10233,10408,10363,11075,11241,11391,11790,12505,12837],"lifeExpectancy":[29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,29.9,19.4,29.9,29.9,30.1,30.2,30.4,30.5,30.7,30.8,31,31.1,31.3,31.4,31.6,31.7,31.9,32,32.2,33.3,34.4,35.5,36.6,37.7,38.8,39.9,41.1,42.2,43.3,44.4,45.5,46.6,47.7,48.8,49.4,50.4,51.3,52.3,53.2,54.2,55.1,56,56.9,57.8,58.7,59.6,60.4,61.3,62.1,62.9,63.7,64.5,65.3,66,66.2,66.5,66.9,67.2,67.6,68,68.5,68.9,69.1,69.4,69.6,69.8,70.1,70.3,70.5,70.7,70.9,71,71.2,71.3,71.5,71.8,72,72.1,72.2,72.2,72.3,72.3,72.6,72.7,72.7,72.6,72.4,72,72.1,72.2,72.2,72.5,72.7,73.1,73.3,73.5,73.6,73.7,73.8],"population":[218808,224385,229962,235539,241116,246693,253758,260822,267887,274952,282017,289081,296146,303211,310275,317340,326402,335463,344525,353587,362649,371710,380772,389834,398895,407957,420137,432317,444496,456676,468856,481036,493216,505395,517575,529755,547240,564725,582210,599695,617180,634664,652149,669634,687119,704604,724787,744970,765153,785336,805520,825703,845886,866069,886252,906435,944711,982986,1021262,1059537,1097813,1136089,1174364,1212640,1250915,1289191,1332084,1374977,1417871,1460764,1503657,1546550,1589443,1632337,1675230,1718123,1782776,1847428,1912081,1976734,2041387,2106039,2170692,2235345,2299997,2364650,2438412,2517258,2600801,2688701,2780660,2876431,2975809,3078629,3184754,3294039,3406299,3521276,3638628,3757962,3878952,4001377,4125107,4250026,4376056,4503114,4631114,4759935,4889437,5019471,5149934,5280727,5411867,5543520,5675930,5809271,5943591,6078816,6214857,6351572,6488857,6626544,6764623,6903314,7042940,7183646,7325622,7468551,7611463,7753052,7892420,8029114,8163474,8296375,8429116,8562623,8697127,8832286,8967759,9102997,9237565,9371333,9504336,9636491,9767737,9897983,10027140,10155036,10281408,10405943,10528391]},{"name":"Ecuador","region":"America","income":[708,712,717,721,726,731,735,740,745,749,754,759,764,769,774,779,784,789,794,799,804,809,814,820,825,830,835,841,846,852,857,863,868,874,879,885,891,896,902,908,914,919,925,931,937,943,973,1004,1035,1066,1097,1129,1161,1194,1227,1260,1307,1354,1401,1448,1495,1541,1587,1633,1678,1723,1768,1813,1857,1901,1945,1988,2032,2074,2117,2237,2210,2300,2557,2551,2525,2783,3034,3388,3383,3416,3393,3742,3750,3975,3997,4058,4151,4178,4302,4473,4474,4594,4590,4786,5108,5102,5226,5364,5501,5723,5866,6035,6580,6752,6891,7330,7560,7844,8023,8145,8231,8083,7689,7777,7880,7887,7189,7739,7540,7542,7685,7672,7652,7805,7811,7781,7951,8045,7511,7444,7593,7753,7814,8300,8582,8802,8840,9244,9143,9311,9882,10233,10541,10774,10996],"lifeExpectancy":[32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,29.1,32.9,32.9,33,33.1,33.2,33.3,33.4,33.5,33.6,33.7,33.7,33.8,33.9,34,34.1,34.2,34.3,34.4,34.5,34.6,34.7,36.1,37.5,38.9,40.3,41.7,43.1,44.5,45.9,47.3,48.7,50.1,50.5,51.1,51.7,52.4,53.1,53.9,54.6,55.4,56.2,56.9,57.6,58.3,59,59.5,60.1,60.6,61,61.5,62,62.5,62.8,63.2,63.7,64.4,65.1,65.8,66.3,66.7,67.2,67.7,68.2,68.7,69.1,69.5,70,70.3,70.4,70.8,71.1,71.3,71.6,71.8,72,72.2,72.4,72.6,72.7,72.9,73.1,73.2,73.4,73.5,73.6,73.7,73.8,73.8,73.9,74,74.1,74.2,74.4,74.6,74.8,75,75.2],"population":[972931,984075,995218,1006362,1017505,1028649,1041041,1053434,1065826,1078219,1090611,1103003,1115396,1127788,1140181,1152573,1166434,1180295,1194156,1208017,1221878,1235739,1249600,1263461,1277322,1291183,1307574,1323965,1340356,1356747,1373138,1389529,1405920,1422311,1438702,1455093,1477824,1500555,1523286,1546017,1568749,1591480,1614211,1636942,1659673,1682404,1701097,1719789,1738482,1757174,1775867,1794560,1813252,1831945,1850637,1869330,1886669,1904008,1921347,1938686,1956025,1973363,1990702,2008041,2025380,2042719,2096755,2150791,2204828,2258864,2312900,2366936,2420972,2475009,2529045,2583081,2671789,2760497,2849205,2937913,3026622,3115330,3204038,3292746,3381454,3470162,3561154,3655012,3752131,3852857,3957482,4066240,4179314,4296835,4418892,4545548,4676858,4812892,4953735,5099470,5250120,5405692,5566057,5730908,5899842,6072520,6248831,6428707,6611916,6798205,6987393,7179399,7374235,7571953,7772652,7976449,8183194,8392935,8606214,8823746,9045977,9272905,9504132,9739179,9977380,10218085,10460988,10705670,10951200,11196476,11440576,11683480,11924991,12163887,12398691,12628596,12852753,13072056,13289600,13509645,13735232,13967490,14205479,14447600,14691310,14934692,15177280,15419493,15661312,15902916,16144363]},{"name":"Egypt","region":"Middle East & North Africa","income":[976,981,985,990,994,999,1004,1008,1000,992,984,976,968,961,953,960,988,1016,1045,1075,1106,1118,1130,1142,1154,1166,1178,1191,1203,1216,1229,1241,1255,1268,1281,1295,1308,1322,1336,1350,1364,1333,1340,1366,1349,1365,1393,1395,1418,1363,1397,1392,1352,1328,1372,1254,1273,1350,1431,1503,1523,1518,1538,1562,1567,1513,1536,1580,1634,1638,1674,1693,1708,1662,1625,1642,1642,1572,1587,1607,1645,1663,1682,1700,1718,1736,1738,1818,1868,1781,1741,1736,1780,1908,1947,2052,2105,2103,2128,2443,2509,2447,2377,2460,2614,3055,3090,3140,3095,3105,3193,3552,3745,3953,4262,4580,4553,4757,5044,5303,5539,5658,5774,5886,5933,6020,5974,6134,6212,6360,6553,6774,7036,7207,7528,7807,7955,8013,8134,8328,8556,8990,9467,9974,10267,10615,10629,10683,10731,10792,11031],"lifeExpectancy":[33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,25.3,33,33,33,33,33,33,33,32.9,32.9,30.6,30.5,35.3,32.4,30.9,32.2,31.4,33.1,31.1,34.3,34.6,35.8,34.2,35.5,30.3,29.6,33.2,32.1,34.2,35.8,35.9,36.4,38.2,38.9,40.3,41.5,42.7,43.8,44.8,45.6,46.4,47.1,47.7,48.2,48.8,49.2,49.7,50.1,50.5,50.9,51.2,51.4,51.7,52.3,52.8,53.2,54,54.6,55.3,56,56.8,57.5,58.2,58.8,59.4,60,60.5,61.1,61.7,62.3,63.1,63.9,64.6,65.2,65.8,66.3,66.8,67.2,67.6,68,68.3,68.6,68.9,69.1,69.3,69.4,69.6,69.8,70,70.1,70.1,70.2,70.3,70.5,70.7,70.9,71.1,71.3],"population":[6688295,6758759,6829223,6899687,6970151,7040615,7126599,7212582,7298566,7384549,7470533,7556517,7642500,7728484,7814467,7900451,8001659,8102868,8204076,8305285,8406493,8507701,8608910,8710118,8811327,8912535,9027811,9143088,9258364,9373640,9488917,9604193,9719469,9834745,9950022,10065298,10194730,10324162,10453594,10583026,10712458,10841890,10971322,11100754,11230186,11359618,11533972,11708326,11882681,12057035,12231389,12405743,12580097,12754452,12928806,13103160,13322171,13541182,13760193,13979204,14198215,14417225,14636236,14855247,15074258,15293269,15548886,15804503,16060120,16315737,16571355,16826972,17082589,17338206,17593823,17849440,18154220,18458999,18763779,19068559,19373339,19678118,19982898,20287678,20592457,20897237,21383393,21904478,22458402,23043035,23656216,24295746,24959391,25644891,26349973,27072397,27810001,28560741,29322709,30094082,30872982,31660914,32456565,33252275,34038147,34808599,35561087,36302154,37046807,37815578,38624410,39478585,40377668,41324806,42321740,43369552,44465918,45610430,46807221,48061546,49373806,50748187,52173840,53617678,55035937,56397273,57689828,58922018,60108373,61272847,62434527,63595629,64754566,65922626,67112877,68334905,69599945,70908710,72247626,73596068,74942115,76274285,77605327,78976122,80442443,82040994,83787634,85660902,87613909,89579670,91508084]},{"name":"El Salvador","region":"America","income":[1426,1438,1450,1462,1474,1487,1499,1512,1525,1538,1551,1564,1577,1590,1603,1617,1631,1644,1658,1672,1686,1700,1715,1729,1744,1758,1773,1788,1803,1818,1834,1849,1865,1881,1896,1912,1929,1945,1961,1978,1994,2011,2028,2045,2062,2080,2097,2115,2133,2151,2169,2187,2206,2224,2243,2262,2226,2296,2350,2450,2225,2566,2218,2522,2485,2490,2197,1954,2185,2222,2410,2321,2504,2294,2426,2598,2506,2669,2871,2671,2526,2532,3143,3930,3504,3414,3387,3540,3683,3616,3688,3855,3933,3891,3935,3963,3966,4297,4333,4585,4671,4819,4906,4882,4863,4810,4878,5033,5119,5312,5448,5498,5659,5867,5618,5064,4692,4463,4436,4459,4478,4434,4457,4449,4408,4454,4545,4811,5086,5318,5589,5626,5817,5994,6165,6266,6345,6469,6595,6693,6907,7148,7391,7450,7180,7237,7352,7442,7515,7613,7776],"lifeExpectancy":[28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,25.4,28.7,28.7,28.8,28.8,28.9,29,29,29.1,29.2,29.2,29.3,29.4,30.2,31,31.8,32.6,33.4,34.2,35,35.7,36.5,37.3,38.1,38.9,39.7,40.5,41.3,42.1,42.9,43.7,44.5,45.3,45.8,46.8,47.8,48.7,49.6,50.6,51.5,52.3,53.2,54,54.8,55.6,56.3,56.9,57.6,58.1,58.6,59.1,59.5,59.9,60.9,61.7,62.3,62.8,63.5,64.2,64.4,64.5,64.2,59.1,61.1,63.9,64.7,66.8,67.8,68.2,68.4,68.7,69.3,69.8,70.1,70.2,70.2,70.5,71.2,71.8,71.9,71.9,72.4,72.9,73.2,73.8,73.8,73.6,73.4,73.4,73.7,74.1,74,73.8,73.7,73.8,73.9,74,74.1],"population":[460141,466940,473739,480539,487338,494137,501933,509728,517524,525319,533115,540911,548706,556502,564297,572093,581103,590113,599124,608134,617144,626154,635164,644175,653185,662195,673449,684703,695956,707210,718464,729718,740972,752225,763479,774733,792021,809310,826598,843887,861175,878463,895752,913040,930329,947617,970019,992420,1014822,1037224,1059626,1082027,1104429,1126831,1149232,1171634,1199106,1226579,1254051,1281523,1308996,1336468,1363940,1391412,1418885,1446357,1480239,1514121,1548003,1581885,1615767,1649648,1683530,1717412,1751294,1785176,1826648,1868120,1909592,1951064,1992537,2034009,2075481,2116953,2158425,2199897,2236577,2278305,2324558,2374972,2429331,2487582,2549823,2616276,2687229,2762897,2843246,2927861,3015885,3106186,3197865,3290397,3383674,3477702,3572667,3668592,3765252,3862132,3958616,4053958,4147525,4239205,4328817,4415625,4498757,4577683,4652058,4722272,4789472,4855280,4920932,4986528,5051885,5117577,5184221,5252082,5321576,5392142,5461834,5528012,5588743,5643363,5692300,5736075,5775660,5811836,5844738,5874301,5900929,5925089,5947206,5967556,5986414,6004199,6021368,6038306,6055208,6072233,6089644,6107706,6126583]},{"name":"Equatorial Guinea","region":"Sub-Saharan Africa","income":[388,388,389,389,390,390,391,391,392,392,393,393,394,394,395,395,396,396,397,397,398,399,399,400,400,401,401,402,402,403,403,404,404,405,405,406,407,409,410,412,413,415,416,418,419,420,422,423,425,426,428,429,431,432,434,435,437,439,441,442,444,446,447,449,451,453,454,456,458,460,461,463,465,467,468,470,472,474,476,477,479,481,483,485,486,488,507,517,531,553,562,577,588,598,624,678,732,806,915,1041,1169,1203,1268,1296,1242,1193,1081,933,971,1029,1181,1325,1331,1436,1407,1349,1301,1290,1248,1169,1240,1154,1161,1155,1108,1050,1005,1310,1406,1586,1803,2907,7037,8437,10273,11768,18637,21586,23856,31942,36200,33468,36788,40143,35880,34431,35150,35282,32654,30783,31087],"lifeExpectancy":[29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,11.5,29.8,29.8,29.9,30.1,30.2,30.4,30.5,30.7,30.8,31,31.1,31.2,31.4,31.5,31.7,31.8,32,32.1,32.3,32.4,32.6,32.7,32.8,33,33.1,33.3,33.4,34.4,35.3,36.3,37.3,38.2,38.5,39,39.4,39.9,40.3,40.8,41.2,41.6,42.1,42.5,43,43.4,43.9,44.3,44.8,45.2,45.7,46.1,46.6,47,47.5,47.9,48.4,49,49.6,50.3,51,51.5,48.8,52.3,52.4,52.4,52.3,52.1,51.9,51.8,51.8,51.7,51.6,51.3,51.1,51,50.8,50.4,50,50,50.6,51.1,51.8,52.4,53.3,53.9,54.4,55,55.5,56.1,56.3,56.7,56.9,57.2,57.4,57.9,58.8,59.7,60.6],"population":[93450,93766,94083,94399,94716,95032,95359,95686,96012,96339,96666,96993,97320,97646,97973,98300,98638,98976,99314,99652,99990,100327,100665,101003,101341,101679,102029,102380,102730,103081,103431,103781,104132,104482,104833,105183,105545,105907,106269,106631,106993,107354,107716,108078,108440,108802,109289,109775,110262,110749,111236,111722,112209,112696,113182,113669,118005,122342,126678,131014,135351,139687,144023,148359,152696,157032,158428,159823,161219,162615,164011,165406,166802,168198,169593,170989,176444,181898,187353,192808,198263,203717,209172,214627,220081,225536,230057,232757,234512,235993,237676,239826,242509,245617,248905,252115,255100,257940,260990,264743,269427,275470,282445,288701,292014,290905,284915,274906,262399,249587,238240,228491,220352,215284,215014,220605,232934,251301,273199,295090,314407,330247,343290,354488,365451,377363,390381,404081,418409,433197,448332,463844,479836,496330,513347,530896,549007,567664,586772,606201,625866,645718,665798,686223,707155,728710,750918,773729,797082,820885,845060]},{"name":"Eritrea","region":"Sub-Saharan Africa","income":[598,600,601,603,605,606,608,609,611,612,614,615,617,619,620,622,623,625,627,628,630,631,633,635,636,638,639,641,643,644,646,648,649,651,653,654,656,658,659,661,663,664,666,668,669,671,673,675,676,679,683,686,689,692,696,699,702,705,708,711,713,716,719,722,725,728,731,734,737,740,743,746,749,752,755,758,761,764,767,771,774,777,780,783,786,789,798,806,838,823,851,863,841,852,858,885,899,912,927,937,974,998,1039,1068,1080,1037,1054,1068,1061,1035,965,948,931,864,940,942,943,925,966,913,783,831,915,891,858,850,939,1040,1175,1416,1438,1542,1623,1603,1550,1446,1511,1491,1389,1351,1332,1272,1246,1088,1095,1083,1139,1180,1157,1140,1129],"lifeExpectancy":[30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,11.7,30.2,30.2,30.3,30.4,30.5,30.6,30.8,30.9,31,31.1,31.2,31.3,31.4,31.5,31.6,31.8,31.9,32,32.1,32.2,32.3,32.4,32.5,32.7,32.8,32.9,33,34.1,35.3,36.5,37.6,38.8,39,39.3,39.6,39.9,40.2,40.5,40.9,41.2,41.5,41.8,42.2,42.5,42.9,43.3,43.7,44.2,44.7,45.1,45.6,46.1,46.4,46.7,47,47.4,47.8,48.2,48.5,48.8,49,49.1,49.3,49.5,49.7,49.9,50.2,50.5,50.9,51.4,51.9,52.5,53.1,53.9,54.7,55.4,56,56.4,56.7,56.8,49.3,49.3,57.7,58,58.3,58.7,59,59.5,60,60.4,60.7,61,61.3,61.7,62.1,62.5,62.9],"population":[373340,378257,383174,388092,393010,397927,403488,409049,414609,420170,425731,431292,436853,442413,447974,453535,459867,466199,472531,478863,485195,491526,497858,504190,510522,516854,524142,531430,538717,546005,553293,560581,567869,575156,582444,589732,598001,606269,614538,622806,631075,639343,647612,655880,664149,672417,681893,691370,700846,710323,719799,729275,738752,748228,757705,767181,778012,788844,799675,810507,821338,832169,843001,853832,864664,875495,887856,900216,912577,924937,937298,949659,962019,974380,986740,999101,1013406,1027711,1042016,1056321,1070626,1084930,1099235,1113540,1127845,1142150,1162658,1184694,1208141,1232905,1258926,1286171,1314633,1344338,1375321,1407631,1441297,1476321,1512671,1550297,1589187,1629333,1670821,1713846,1758668,1805480,1854395,1905406,1958444,2013382,2070145,2128597,2188806,2251129,2316054,2383858,2453689,2525005,2598626,2675717,2756493,2843141,2933871,3020278,3091083,3139083,3160644,3160617,3150811,3147871,3164095,3202598,3260612,3337227,3429656,3535156,3655006,3788532,3928408,4064958,4191273,4304440,4406299,4500638,4593549,4689664,4789568,4892233,4998824,5110444,5227791]},{"name":"Estonia","region":"Europe & Central Asia","income":[1284,1292,1301,1309,1318,1326,1335,1344,1352,1361,1370,1379,1388,1397,1406,1415,1424,1433,1443,1452,1461,1405,1643,1581,1470,1464,1342,1469,1665,1893,1752,1930,1898,1949,2068,2024,2075,2255,2100,2322,2056,1965,1889,2063,2142,2286,2112,2283,2398,2291,2358,2097,1841,1473,1355,1762,2028,2333,2497,2541,2661,2735,2925,3098,3110,3053,2957,2923,3098,3428,3549,3765,3953,4124,3917,3703,3635,3568,3503,3438,3375,3313,3682,4161,4546,4926,4866,5094,5228,5392,5752,6195,6213,6565,6379,6861,7128,7204,6936,7728,8069,8368,8647,9066,9109,9721,9885,9844,10573,10839,10829,11297,11525,11778,11690,11676,11753,12010,12358,12470,12540,13014,13144,13392,13601,13260,12008,10523,9870,9870,10464,11245,12709,13705,13723,14877,15894,16974,18359,19665,21651,24047,26066,24743,21137,21710,23576,24761,25254,25865,26812],"lifeExpectancy":[31,33,35.1,37.1,39.2,41.3,41.5,41.7,41.9,42.1,42.3,41.9,41.4,41,40.5,40.1,40.3,40.6,40.8,41,41.3,41.5,41.7,41.9,42.1,42.3,42.4,42.6,42.7,42.9,43,43,43,43.1,43.1,43.2,43.5,43.9,44.3,44.7,45.1,45.5,45.9,46.3,46.6,47,47.4,47.8,48.2,47.5,44.5,44.3,37,35,37.7,46.4,52.6,51.7,53.3,54.2,55,52.5,50.1,53.1,51.7,54.9,54.1,55.9,56.9,57.5,56.4,56.9,57.8,59.1,58.5,57,46.2,54.6,54.2,31.2,46.3,54.2,47.2,57.9,58.4,58.9,60.1,61.3,63.9,65.3,66,67.6,68.1,68.5,69,69.7,70,70.2,70.3,71,71.1,71.1,71.4,71,70.7,70.8,70.7,70.7,70.8,70.7,70.4,70.2,69.9,69.6,69.4,69.4,69.4,69.5,69.6,69.9,70.4,71,71.3,71.3,71,70.4,69.8,68.8,67.9,67.4,67.7,68.7,69.4,69.8,69.9,70.1,70.3,70.8,71.4,71.9,72.4,72.8,73.2,74,75,75.8,76.3,76.5,76.6,76.7,76.8],"population":[506085,510717,515349,519982,524614,529246,534292,539337,544383,549429,554475,559520,564566,569612,574657,579703,585226,590749,596273,601796,607319,612842,618365,623889,629412,634935,641025,647116,653206,659296,665387,671477,677567,683657,689748,695838,702487,709136,715784,722433,729082,735731,742380,749028,755677,762326,769637,776948,784260,791571,798882,806193,813504,820816,828127,835438,843464,851489,859515,867540,875566,883591,891617,899642,907668,915693,924490,933286,942083,950879,959676,968472,977269,986065,994862,1003658,1013392,1023126,1032860,1042594,1052328,1062062,1071796,1081530,1091264,1100998,1113247,1125245,1136906,1148217,1159238,1170105,1181025,1192265,1204117,1216831,1230521,1245098,1260239,1275471,1290437,1305025,1319284,1333213,1346854,1360236,1373336,1386099,1398497,1410492,1422070,1433207,1443926,1454309,1464468,1474487,1483938,1492704,1501490,1511272,1522477,1536112,1551288,1564278,1570051,1565320,1548287,1520879,1488120,1457145,1433076,1417786,1409718,1406388,1403821,1399145,1391754,1382735,1372890,1363549,1355662,1349369,1344233,1339941,1336013,1332089,1328068,1324040,1320050,1316203,1312558]},{"name":"Ethiopia","region":"Sub-Saharan Africa","income":[532,533,533,533,533,533,533,534,534,534,534,534,535,535,535,535,535,535,536,536,536,536,536,537,537,537,537,537,538,538,538,538,538,538,539,539,539,539,539,540,540,540,540,540,541,541,541,541,541,542,543,544,545,545,546,547,548,549,550,551,552,554,555,556,557,558,559,560,561,562,563,564,565,567,568,569,570,571,572,573,574,575,576,577,578,579,586,593,617,607,629,638,622,631,636,657,668,678,690,698,727,746,777,800,810,778,792,803,799,780,729,716,704,655,713,715,717,704,736,696,597,635,700,682,657,653,585,516,564,562,578,630,630,591,604,623,656,647,615,679,738,796,863,931,986,1081,1171,1240,1336,1432,1520],"lifeExpectancy":[25,24,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,27,26,29.7,29.7,29.7,29.7,29.7,29.7,17,5,4,8,14,29.7,29.7,29.5,28.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,11.5,29.7,29.7,29.7,29.8,29.8,29.8,29.9,29.9,30,30,30,30.1,30.1,30.1,30.2,30.2,28.1,23.6,29.6,29.7,29.7,28.7,28.8,30.5,30.6,30.6,30.6,31.4,32.1,32.9,33.7,34.4,34.6,35,35.5,36,36.5,37.1,34.4,32.4,39.2,39.9,40.6,41.3,41.9,41.8,40.7,41.7,43.8,44.1,44.5,44.8,44.9,45.1,44.6,44.4,44.3,43.7,43.5,43.4,44.3,44.5,44.9,45.3,41.9,42.3,46.3,46.7,47,47.3,48,47.1,48.4,48.9,49.4,50,50.7,51.3,51.8,52.1,52,52.5,53.6,54.4,55.1,55.9,56.8,57.7,58.6,59.5,60.3,61,61.6,62.1,62.6,63.1,63.6],"population":[5572078,5648974,5725870,5802767,5879663,5956559,6043989,6131419,6218849,6306279,6393709,6481139,6568569,6655999,6743429,6830859,6931012,7031164,7131317,7231469,7331622,7431775,7531927,7632080,7732232,7832385,7948464,8064544,8180623,8296703,8412782,8528861,8644941,8761020,8877100,8993179,9125634,9258088,9390543,9522997,9655452,9787906,9920361,10052815,10185270,10317724,10471567,10625410,10779253,10933096,11086939,11240782,11394625,11548468,11702311,11856154,12035657,12215159,12394662,12574165,12753668,12933170,13112673,13292176,13471678,13651181,13857861,14064540,14271220,14477899,14684579,14891258,15097938,15304617,15511297,15717976,15958982,16199988,16440993,16681999,16923005,17164011,17405017,17646022,17887028,18128034,18466918,18819634,19184239,19559974,19947265,20347793,20764427,21200998,21661944,22151218,22671131,23221331,23798378,24396965,25013551,25641176,26280771,26945459,27653622,28414999,29246170,30135007,31028728,31855294,32568539,33144537,33614153,34053431,34569428,35239974,36093319,37109517,38259376,39493503,40775997,42097111,43470219,44908705,46433604,48057094,49784987,51602776,53477944,55366517,57237226,59076414,60893264,62707547,64550161,66443603,68393128,70391170,72432290,74506974,76608431,78735675,80891968,83079608,85302099,87561814,89858696,92191211,94558374,96958732,99390750]},{"name":"Fiji","region":"East Asia & Pacific","income":[917,920,923,926,930,933,936,939,942,945,949,952,955,958,962,965,968,971,975,978,981,985,988,991,995,998,1002,1005,1008,1012,1015,1019,1022,1026,1029,1033,1036,1040,1043,1047,1050,1054,1057,1061,1065,1068,1072,1075,1079,1106,1134,1163,1192,1222,1252,1284,1317,1350,1385,1420,1456,1493,1531,1570,1610,1651,1694,1737,1781,1826,1873,1920,1969,2019,2071,2123,2177,2233,2289,2348,2407,2468,2531,2595,2661,2729,2798,2869,2942,3016,3093,3171,3252,3334,3419,3505,3508,3513,3613,3671,3471,3382,3744,3953,3971,4384,4590,4834,5287,5319,5245,5291,5506,5510,6066,5843,6066,5560,5208,5528,5193,5545,5160,5204,5583,5694,5488,5751,5792,6002,6073,6291,6087,6108,6594,6444,6548,6745,6804,7149,7169,7253,7128,7129,6959,7098,7228,7303,7502,7735,7925],"lifeExpectancy":[26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,6.6,26.1,26.1,26.2,26.2,26.3,26.4,26.5,27.5,28.6,29.7,30.8,31.9,32.9,34,35.1,36.2,37.2,38.3,39.4,40.5,41.5,42.6,43.7,44.8,45.8,46.9,48,49.1,50.1,51.2,52.3,53.4,53.7,54.3,55,55.6,56.1,56.7,57.3,57.8,58.3,58.9,59.4,59.9,60.4,60.8,61.3,61.8,62.3,62.7,63.2,63.6,63.5,63.5,63.4,63.6,63.6,63.8,63.8,63.8,63.8,63.7,63.8,63.9,64,64.2,64.1,64.2,64.3,64.2,64.1,64.1,64.1,64,63.8,63.8,63.8,63.8,63.7,63.8,63.9,64.2,64.4,64.7,64.9,65.1,65.3,65.4,65.6,65.7,65.8,65.9,66,66,66.1,66.2,66.3],"population":[132102,131780,131458,131135,130813,130491,130127,129763,129399,129035,128671,128306,127942,127578,127214,126850,126371,125891,125412,124932,124453,123974,123494,123015,122535,122056,122041,122026,122011,121996,121982,121967,121952,121937,121922,121907,123499,125091,126683,128275,129867,131458,133050,134642,136234,137826,139571,141316,143061,144806,146551,148296,150041,151786,153531,155276,157802,160327,162853,165379,167905,170430,172956,175482,178007,180533,184573,188613,192653,196693,200733,204773,208813,212853,216893,220933,227739,234545,241351,248157,254963,261769,268575,275381,282187,288993,296206,304813,314352,324480,334976,345746,356817,368320,380452,393383,407152,421576,436208,450452,463884,476329,487911,498887,509659,520529,531601,542811,554109,565386,576592,587523,598258,609348,621541,635256,650957,668196,685389,700366,711663,718548,721725,722918,724624,728626,735469,744534,755024,765666,775498,784479,792859,800314,806494,811223,814215,815691,816626,818355,821820,827390,834729,843206,851854,859952,867327,874158,880487,886450,892145]},{"name":"Finland","region":"Europe & Central Asia","income":[1582,1594,1474,1670,1833,1897,1876,1906,1987,2005,2017,2098,2018,1954,1946,1925,1851,2006,2051,2034,2054,2128,2128,2173,2214,2305,2255,2137,2239,2338,2493,2623,2714,2788,2686,2789,2736,2661,2820,2896,2914,3002,3070,3061,3154,3192,3247,3388,3536,3353,3154,3174,2651,2298,2782,3097,3164,3456,3674,3738,3914,4023,4302,4556,4574,4489,4347,4297,4554,5039,5216,5531,5807,6059,5753,5439,5612,5622,6247,6228,5832,6228,6287,6695,7011,7198,7738,7914,7877,8470,8802,8971,9302,9276,9751,10560,11286,11560,11858,12389,13006,13269,13477,13726,15058,16245,16564,17722,18804,19273,19409,19268,19261,19608,20918,21965,22279,22873,23351,23926,24630,25133,26086,27282,28735,28599,26761,25726,25414,26301,27303,28210,29884,31423,32743,34517,35327,35834,36461,37783,38700,40115,42016,42122,38455,39425,40251,39489,38788,38569,38923],"lifeExpectancy":[35.8,28.7,25.3,8.1,37.1,45.7,46.2,44.1,39.5,39.1,40.6,41.8,39,39.2,45,39.7,37.6,40.5,42.8,42.9,41.3,40.9,45.6,45.2,44.9,44.6,42.6,39.7,43.3,45.2,47.6,46.6,48.2,48.1,44.4,41.8,42.9,46.2,46.6,47.2,46,47.1,47,46.1,48.7,48.5,48.7,49.1,49,49.7,49.5,48,46.5,32.7,43.1,47.5,52.4,51.9,52.5,50.2,53.4,53.8,51.8,53.7,51.3,54.4,54.8,55.8,55.4,56,57.3,56.1,57,57.1,54.6,46.6,46.4,53.8,56.2,47.9,57.1,60.2,60.4,61.9,61.8,64.1,65.6,66.4,66.5,67.5,67.3,67.9,67.4,68.5,68.7,68.9,68.9,68.6,69,69.2,69,69.5,69.7,69.6,69.5,70.2,70.5,70.9,71.3,71.4,71.6,72,72.4,72.9,73.3,73.7,74,74.3,74.5,74.6,74.7,74.7,74.7,74.8,74.8,75,75.4,75.8,76.2,76.5,76.7,76.9,77.1,77.3,77.5,77.8,78.2,78.5,78.6,78.6,78.8,79,79.2,79.4,79.7,80,80.3,80.5,80.6,80.7,80.8],"population":[1790861,1802182,1813504,1824825,1836147,1847468,1867479,1887490,1907501,1927512,1947523,1967533,1987544,2007555,2027566,2047577,2078654,2109730,2140807,2171884,2202961,2234037,2265114,2296191,2327267,2358344,2385849,2413353,2440858,2468362,2495867,2523371,2550876,2578380,2605885,2633389,2663094,2692799,2722505,2752210,2781915,2811620,2841325,2871031,2900736,2930441,2951473,2972505,2993538,3014570,3035602,3056634,3077666,3098699,3119731,3140763,3171737,3202711,3233686,3264660,3295634,3326608,3357582,3388557,3419531,3450505,3475078,3499650,3524223,3548796,3573369,3597941,3622514,3647087,3671659,3696232,3727439,3758645,3789852,3821059,3852266,3883472,3914679,3945886,3977092,4008299,4049689,4095130,4142353,4189559,4235423,4279108,4320250,4358901,4395427,4430228,4463432,4494623,4522727,4546343,4564690,4577033,4584264,4589226,4595807,4606740,4623389,4644847,4668813,4691818,4711459,4726803,4738949,4749940,4762758,4779454,4800899,4826135,4853196,4879222,4902219,4921293,4937259,4951886,4967776,4986705,5009381,5034898,5061465,5086499,5108176,5126021,5140755,5153229,5164780,5176482,5188446,5200632,5213800,5228842,5246368,5266600,5289333,5314170,5340485,5367693,5395816,5424644,5453061,5479660,5503457]},{"name":"France","region":"Europe & Central Asia","income":[3333,3469,3413,3644,3417,3297,3449,3631,3581,3730,3653,3607,3591,3389,3354,3555,3782,3910,3739,3543,3438,3393,3420,3500,3510,3639,3678,3755,3613,3964,3883,4005,3888,4117,4261,4314,4100,4048,4181,4261,4367,4304,4648,4629,4774,4542,5004,5420,5373,4506,3968,4548,4506,3861,4258,4550,4326,5188,5434,6032,6075,6284,6157,6522,7078,6835,6534,5962,6140,5929,5785,5869,6008,5861,6106,4821,4666,4700,4691,3594,4423,5909,6228,6988,7367,7914,8301,8446,8622,9006,9453,9907,10442,10681,10911,11642,12168,12767,13235,13969,14514,15158,15759,16321,17339,18185,18891,19570,20486,20997,20851,21661,22270,22928,23647,23962,24186,24753,25188,25497,25917,26453,26963,28101,28942,29476,29707,30033,29719,30303,30823,31141,31756,32764,33707,34774,35197,35333,35371,36090,36395,37001,37641,37505,36215,36745,37328,37227,37309,37218,37599],"lifeExpectancy":[40.2,41.8,42.3,40.2,41.1,36.4,29.6,42.6,41.8,44.3,43.2,43.5,44.3,43.4,44,42.7,43.5,43.2,43.3,42.5,44,43.2,43.8,44.1,45.6,43.4,44.1,43.6,43.6,45.5,45.2,47.6,47.9,46,45.2,45.1,47,48,48.4,48.1,48.4,47.7,48.3,49.3,50,51.4,48.2,51.6,51.4,37.9,35.6,39.5,42.6,34.3,47.5,51.6,52.7,54.9,54.7,55.3,54.4,54.1,55.8,55.5,54.3,56.9,57,57.3,57.8,58.5,58.4,58.9,59.3,59.1,59.7,49.6,57.8,57.6,53.5,47.4,55.1,62.6,64.2,66,65.1,66.6,66.3,67.6,67.6,68.4,68.7,68.7,69.2,70.4,70.5,70.7,71.3,70.8,70.7,71.6,71.5,71.9,71.9,71.9,71.6,72.5,72.6,72.8,73.1,73.3,73.2,73.4,73.8,74.1,74.3,74.5,74.8,75,75.2,75.5,75.7,76,76.4,76.6,76.9,77.1,77.3,77.5,77.7,77.9,78.1,78.4,78.7,78.8,78.9,79.1,79.2,79.4,79.7,80.1,80.4,80.7,80.9,81,81,81.2,81.4,81.6,81.7,81.8,81.9],"population":[37815848,37886749,37957651,38028552,38099454,38170355,38254725,38339095,38423464,38507834,38592204,38676574,38760944,38845313,38929683,39014053,39114198,39214343,39314487,39414632,39514777,39614922,39715067,39815211,39915356,40015501,40076815,40138128,40199442,40260756,40322070,40383383,40444697,40506011,40567324,40628638,40695231,40761825,40828418,40895012,40961605,41028198,41094792,41161385,41227979,41294572,41072109,40849645,40627182,40404718,40182255,39959791,39737328,39514864,39292401,39069937,39329200,39588464,39847727,40106991,40366254,40625517,40884781,41144044,41403308,41662571,41589069,41515566,41442064,41368561,41295059,41221556,41148054,41074551,41001049,40927546,41022752,41117958,41213164,41308370,41403577,41498783,41593989,41689195,41784401,41879607,42071027,42365756,42724452,43118110,43528065,43946534,44376073,44827950,45319442,45865699,46471083,47121575,47781535,48402900,48952283,49411342,49791771,50126895,50466183,50843830,51273975,51741044,52214014,52647616,53010727,53293030,53509578,53685486,53857610,54053224,54279038,54528408,54799049,55084677,55379923,55686610,56005443,56328053,56643349,56943299,57226524,57495252,57749881,57991973,58224051,58443318,58652709,58867465,59107738,59387183,59711914,60075783,60464857,60858654,61241700,61609991,61966193,62309529,62640901,62961136,63268405,63561798,63844529,64121249,64395345]},{"name":"Gabon","region":"Sub-Saharan Africa","income":[394,394,394,394,394,394,394,394,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,396,396,396,396,396,396,396,396,396,396,396,398,399,401,403,404,406,408,409,411,413,414,416,418,420,421,423,425,427,428,430,437,444,451,458,465,472,479,487,494,501,509,516,523,531,538,546,554,561,569,577,585,593,601,609,617,625,633,641,650,658,711,769,831,899,971,1050,1134,1226,1324,1431,1638,1874,2144,2454,2807,2679,3219,3423,3836,4656,5793,6180,8349,18287,18169,21774,20699,22649,24502,27736,27631,24800,26740,25707,23142,18203,16383,15076,19870,19358,19995,18868,19101,19298,19738,19933,20545,20729,18413,17630,17579,17126,17105,16822,17069,16059,16693,15800,15238,15982,16590,17252,17580,17912,18627],"lifeExpectancy":[30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,11.8,30.6,30.6,30.8,30.9,31.1,31.2,31.4,31.5,31.7,31.8,32,32.1,32.3,32.4,32.6,32.7,32.9,33,33.2,33.3,33.5,33.6,33.8,33.9,34.1,34.2,34.4,35.6,36.8,38,39.3,40.5,40.9,41.6,42.2,42.8,43.4,43.9,44.3,44.7,45.1,45.6,46.1,46.7,47.4,48.2,49.1,50.1,51.1,52.2,53.2,54.2,54.5,54.9,55.1,55.6,56,56.7,57.3,57.7,58.2,58.7,59.1,59.5,59.9,60.3,60.6,60.8,60.8,60.7,60.6,60.5,60.3,60.2,60.1,59.9,59.7,59.4,59.2,58.9,58.5,58,57.5,57.2,56.9,56.7,57,57.6,57.7,57.5,57.3,57.5,57.8,58.4,59.1,59.8,60.5],"population":[231584,233559,235533,237508,239482,241457,243596,245734,247873,250012,252151,254289,256428,258567,260705,262844,265171,267497,269824,272151,274478,276804,279131,281458,283784,286111,288659,291207,293754,296302,298850,301398,303946,306493,309041,311589,314354,317119,319884,322649,325415,328180,330945,333710,336475,339240,342238,345236,348234,351232,354230,357227,360225,363223,366221,369219,372438,375656,378875,382093,385312,388531,391749,394968,398186,401405,404904,408404,411903,415402,418902,422401,425900,429399,432899,436398,440088,443778,447469,451159,454849,458539,462229,465920,469610,473300,475864,477711,479237,480768,482558,484780,487537,490867,494759,499189,504174,509806,516270,523793,532512,542562,553829,565878,578114,590119,601734,613129,624625,636702,649719,663774,678786,694734,711544,729165,747593,766867,787017,808088,830091,853039,876877,901473,926648,952269,978252,1004598,1031358,1058625,1086449,1114879,1143838,1173114,1202412,1231548,1260435,1289192,1318093,1347524,1377777,1408920,1440902,1473741,1507428,1541936,1577298,1613489,1650351,1687673,1725292]},{"name":"Gambia","region":"Sub-Saharan Africa","income":[846,846,847,847,848,848,849,849,850,850,851,851,852,852,853,853,854,854,855,856,856,857,857,858,858,859,859,860,860,861,861,862,862,863,863,864,865,867,869,870,872,873,875,877,878,880,881,883,885,886,888,890,891,893,895,896,899,902,906,909,912,915,918,921,924,927,931,934,937,940,943,946,950,953,956,959,962,965,969,972,975,978,981,985,988,991,1025,1034,1050,1084,1092,1106,1119,1120,1154,1196,1353,1298,1268,1312,1412,1597,1602,1575,1691,1478,1597,1660,1684,1956,1778,1923,1957,1799,2028,1772,1703,1861,1586,1494,1323,1347,1371,1463,1510,1517,1510,1513,1515,1475,1448,1439,1468,1477,1527,1564,1606,1506,1559,1617,1552,1521,1528,1566,1615,1667,1545,1584,1608,1555,1644],"lifeExpectancy":[28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,11.4,28.8,28.8,29.1,29.3,29.6,29.9,30.1,30.4,30.6,30.9,31.2,31.4,31.7,32,32.2,32.5,32.8,33,33.3,33.5,33.8,34.1,34.3,34.6,34.9,35.1,35.4,35.8,36.3,36.7,37.2,37.6,38,38.6,39.1,39.6,40.1,40.6,41.1,41.6,42.1,42.6,43.1,43.7,44.4,45.1,45.9,46.8,47.8,48.8,49.9,51,51.2,51.5,51.8,52.1,52.5,52.9,53.3,53.8,54.3,54.7,53.4,55.6,56,56.3,56.6,56.8,57,57.2,57.3,57.5,57.7,57.9,58.1,58.4,58.6,58.8,59.1,59.4,59.6,60,60.3,60.5,60.7,61,61.3,61.6,61.9,62.2,62.6,63,63.5,63.9,64.3,64.7,65.1],"population":[144550,145625,146700,147774,148849,149924,151076,152228,153381,154533,155685,156837,157989,159142,160294,161446,162686,163926,165166,166406,167647,168887,170127,171367,172607,173847,175190,176532,177875,179217,180560,181903,183245,184588,185930,187273,188715,190157,191599,193041,194483,195924,197366,198808,200250,201692,203248,204804,206361,207917,209473,211029,212585,214142,215698,217254,218930,220606,222282,223958,225635,227311,228987,230663,232339,234015,235820,237626,239431,241237,243042,244847,246653,248458,250264,252069,253999,255930,257860,259790,261721,263651,265581,267511,269442,271372,272719,276771,283502,292713,304033,316906,330603,344265,356966,367929,376736,383525,389070,394552,400865,408182,416342,425509,435800,447283,460193,474538,489860,505512,521070,536409,551823,567828,585155,604371,625413,648202,673230,701097,732092,766598,804134,843060,881146,916811,949490,979701,1008296,1036627,1065746,1095839,1126786,1159001,1192920,1228863,1267103,1307674,1350345,1394727,1440542,1487731,1536424,1586749,1638899,1693002,1749099,1807108,1866878,1928201,1990924]},{"name":"Georgia","region":"Europe & Central Asia","income":[674,677,681,684,687,690,694,697,700,704,707,710,714,717,720,724,727,731,734,738,741,712,831,798,741,737,674,737,834,947,875,962,945,969,1026,1003,1027,1114,1036,1144,1011,965,926,1010,1047,1115,1029,1110,1165,1111,1141,1139,890,695,543,520,499,560,629,706,793,890,999,1122,1136,1188,1199,1181,1226,1339,1532,1637,1773,1769,1842,1766,1733,1701,1670,1639,1609,1579,1756,1984,2168,2349,2320,2429,2493,2571,2743,2954,2962,3130,3041,3271,3404,3445,3322,3707,3877,4128,4347,4505,4685,5212,5303,5415,5727,6192,6611,6979,7425,7941,8485,8825,9236,9363,9703,10158,10580,9633,9670,10135,9379,8018,6282,3435,2410,2181,2298,2621,2951,3072,3185,3269,3451,3664,4096,4346,4716,5116,5760,5900,5642,5938,6322,6702,6930,7233,7474],"lifeExpectancy":[30.8,30.3,29.8,29.3,29.3,29.3,29.4,29.4,29.5,29.7,29.9,30.1,30.3,30.5,30.7,30.9,31.1,31.3,31.5,31.7,31.9,32.1,32.3,32.5,32.7,32.9,33.1,33.3,33.5,33.7,33.9,34.1,34.3,34.1,33.9,33.8,34,34.3,34.5,34.8,35,35.3,35.5,35.8,36,36.3,39.2,39.7,37.5,37.1,36.7,36.7,33.7,25,35,37,33,35.4,35.9,34.8,39.1,42.3,41.6,43.1,41.8,41,40,37.5,23.5,43.2,44.8,46.4,45.4,47,49.4,46.8,32.4,28.9,26.9,34,44,53.6,45.6,53.6,56.3,58.6,58.8,59.1,59.5,59.8,60.2,60.6,60.9,61.3,61.6,62,62.4,62.7,63.1,63.5,63.8,64.2,64.5,64.8,65.1,65.4,65.8,66.3,66.7,67.1,67.5,67.9,68.3,68.6,69,69.3,69.6,69.8,70,70.1,70.2,70.3,70.2,70.2,70.2,70.2,70.2,70,69.7,70.7,71,71.3,71.7,71.9,72.1,72.3,72.4,72.4,72.4,72.4,72.4,72.4,72.4,72.1,72.4,72.4,72.6,72.7,72.9,73.1,73.3],"population":[1622409,1637200,1651992,1666784,1681575,1696367,1712473,1728579,1744685,1760791,1776897,1793003,1809109,1825215,1841321,1857427,1875051,1892674,1910298,1927922,1945546,1963169,1980793,1998417,2016040,2033664,2053091,2072517,2091944,2111370,2130797,2150224,2169650,2189077,2208503,2227930,2249131,2270331,2291532,2312732,2333933,2355133,2376334,2397534,2418735,2439935,2463260,2486585,2509910,2533235,2556560,2579884,2603209,2626534,2649859,2673184,2698826,2724468,2750110,2775752,2801394,2827035,2852677,2878319,2903961,2929603,2957705,2985806,3013908,3042009,3070111,3098213,3126314,3154416,3182517,3210619,3242258,3273896,3305535,3337173,3368812,3400450,3432089,3463727,3495366,3527004,3584698,3646321,3710132,3774810,3839464,3903647,3967337,4030874,4094846,4159769,4225733,4292101,4357379,4419583,4477328,4529961,4577953,4622441,4665146,4707327,4749544,4791480,4832510,4871634,4908265,4942018,4973542,5004521,5037237,5073241,5111792,5151850,5194091,5239352,5287328,5340061,5394998,5441772,5466610,5460309,5418449,5345624,5252850,5156079,5067143,4989723,4921287,4859954,4801695,4743591,4685769,4629853,4575993,4524444,4475273,4429186,4385885,4343290,4298591,4250132,4196401,4138920,4082727,4034774,3999812]},{"name":"Germany","region":"Europe & Central Asia","income":[2711,2713,2706,2852,2851,2819,2785,2962,3065,3258,3241,3177,3119,3228,3114,3057,3110,3140,3292,3347,3405,3398,3497,3598,3658,3733,3685,3798,3946,3996,4133,4216,4271,4384,4473,4596,4422,4457,4634,4751,4783,4858,5002,5017,5049,5162,5277,5477,5692,4793,4559,4633,4679,4746,4131,4482,4969,5415,4500,5270,5857,6015,6618,6909,6884,6791,6276,5809,6178,6738,7232,7852,8305,8894,9674,9711,10310,10407,10722,11120,8284,4084,4504,5258,6112,7251,7884,8561,9252,9926,10998,11751,12385,12884,13759,14808,15317,15872,16221,17100,17838,18262,18311,19254,20409,21218,21695,22497,23461,23662,23630,24904,25678,26444,27515,27765,27846,27645,28227,29135,29851,30514,30986,31906,32706,31476,32844,33221,32689,33375,33843,34008,34578,35254,35931,36953,37517,37458,37167,37614,37901,39352,40693,41199,38975,40632,42080,42959,42887,43444,44053],"lifeExpectancy":[38.4,38.4,38.4,38.4,38.4,38.4,38.4,38.4,38.4,38.4,38.4,38.5,38.6,38.7,38.8,38.9,39,39.1,39.2,39.3,39.4,39.7,40,40.3,40.6,40.9,41.2,41.5,41.8,42.1,42.4,42.7,43,43.3,43.6,43.9,44.2,44.5,44.8,45.1,45.5,46,46.6,47.2,47.8,48.4,49,49.6,50.2,46.2,40.5,39,40.1,32.9,48.3,53.5,55,55.6,56.2,56.8,57.4,57.9,58.3,58.7,59.1,59.5,59.9,60.3,60.7,61.1,61.6,61.8,62.1,62.4,61.1,60.7,59.1,55.1,49.8,37.1,29.1,60.6,62.2,63.8,65.4,67,67.2,67.5,67.8,68.1,68.4,68.7,68.6,69.4,69.5,69.4,70,70.2,70.3,70.8,70.8,70.9,71.2,70.8,70.7,70.9,71,71.2,71.5,71.8,71.9,72.3,72.6,72.7,72.9,73.1,73.4,73.6,74,74.4,74.6,74.8,75.1,75.3,75.4,75.4,75.6,75.9,76.2,76.4,76.6,76.9,77.3,77.7,77.9,78.1,78.3,78.5,78.8,79.1,79.4,79.7,79.8,80,80,80.2,80.3,80.5,80.7,80.9,81.1],"population":[38042693,38374601,38706510,39038418,39370327,39702235,40089747,40477260,40864772,41252284,41639797,42027309,42414821,42802333,43189846,43577358,44040752,44504145,44967539,45430932,45894326,46357720,46821113,47284507,47747900,48211294,48919508,49627722,50335936,51044150,51752364,52460578,53168792,53877006,54585220,55293434,56170504,57047573,57924643,58801712,59678782,60555851,61432921,62309990,63187060,64064129,63885433,63706738,63528042,63349347,63170651,62991955,62813260,62634564,62455869,62277173,62693411,63109650,63525888,63942126,64358365,64774603,65190841,65607079,66023318,66439556,66920006,67400457,67880907,68361357,68841808,69322258,69802708,70283158,70763609,71244059,71098278,70952496,70806715,70660934,70515153,70369371,70223590,70077809,69932027,69786246,70111671,70421462,70720721,71015688,71313740,71623569,71955005,72318498,72724260,73179665,73686490,74238494,74820389,75410766,75990737,76558016,77106876,77611000,78038271,78366605,78584779,78700104,78732884,78713928,78667327,78604473,78524727,78426715,78305017,78159527,77990369,77812348,77657451,77566776,77570009,77671877,77864381,78146938,78514790,78958237,79483739,80075940,80675999,81206786,81612900,81870772,81993831,82010184,81965830,81895925,81809438,81699829,81569481,81417791,81246801,81055904,80854515,80665906,80519685,80435307,80424665,80477952,80565861,80646262,80688545]},{"name":"Ghana","region":"Sub-Saharan Africa","income":[733,734,734,735,735,736,738,739,741,742,744,746,747,749,751,752,754,756,757,759,761,762,764,766,768,769,771,768,773,763,768,743,747,745,742,725,701,738,756,789,808,867,896,909,958,952,1138,1131,1190,1183,1395,1305,1437,1149,2015,1570,1580,1881,2001,2147,2094,2144,1966,2031,2079,1763,1804,1853,1902,1952,2023,2095,2170,1951,1906,1861,1818,1775,1733,1692,1652,1435,1232,1287,1416,1682,1704,1634,1816,1996,1822,2167,1936,2092,2145,2246,2267,2316,2334,2322,2290,2230,2208,2177,2240,2455,2527,2396,2458,2559,2190,2072,2085,2226,2130,2090,1960,1766,1628,1710,1740,1778,1813,1865,1909,1920,1965,1985,2024,2036,2066,2110,2148,2199,2244,2273,2306,2350,2409,2479,2558,2652,2751,2907,2934,3091,3446,3685,3873,3953,4099],"lifeExpectancy":[28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,9.4,28,28,28.1,28.2,28.4,28.5,28.6,29.2,29.9,30.5,31.2,31.8,32.5,33.1,33.7,34.4,35,35.7,36.3,37,37.6,38.3,38.9,39.5,40.2,40.8,41.5,42.1,42.8,43.4,44.1,44.7,45.1,45.7,46.4,47,47.6,48.2,48.9,49.5,50,50.6,51.2,51.7,52.2,52.7,53.2,53.6,54.1,54.5,54.9,55.3,55.5,55.8,56.1,56.4,56.7,57,57.2,57.4,57.6,57.8,58,58.1,58.1,58.3,58.7,59,59.4,59.7,60.1,60.3,60.6,60.8,60.7,60.5,60.7,60.6,60.4,60.3,60.3,60.2,60.3,60.5,60.8,61.1,61.5,61.8,62.3,62.7,63.1,63.5,64,64.6,64.9,65.2,65.5],"population":[1642093,1638716,1635338,1631961,1628583,1625206,1630460,1635714,1640968,1646222,1651477,1656731,1661985,1667239,1672493,1677747,1688080,1698413,1708746,1719079,1729413,1739746,1750079,1760412,1770745,1781078,1792095,1803112,1814129,1825146,1836164,1847181,1858198,1869215,1880232,1891249,1902919,1914589,1926258,1937928,1949598,1961268,1972938,1984607,1996277,2007947,2049189,2090430,2131672,2172913,2214155,2255396,2296638,2337879,2379121,2420362,2486279,2552197,2618114,2684031,2749949,2815866,2881783,2947700,3013618,3079535,3163405,3247274,3331144,3415013,3498883,3582752,3666622,3750491,3834361,3918230,4024495,4130760,4237024,4343289,4449554,4555819,4662084,4768348,4874613,4980878,5068433,5191221,5339179,5504255,5680406,5863686,6052159,6245642,6445283,6652285,6866545,7085463,7303432,7513286,7710547,7890992,8057442,8221021,8397346,8596977,8827273,9083575,9350111,9604280,9831409,10023471,10189889,10354490,10550770,10802025,11117608,11488112,11895130,12311166,12716238,13103975,13480381,13852597,14232493,14628260,15042736,15471527,15907244,16339344,16760991,17169214,17568583,17969006,18384426,18824994,19293804,19788181,20305396,20840493,21389514,21951891,22528041,23115919,23713164,24317734,24928503,25544565,26164432,26786598,27409893]},{"name":"Greece","region":"Europe & Central Asia","income":[1925,1933,1940,1948,1956,1963,1993,2022,2052,2083,2113,2145,2177,2209,2242,2275,2309,2343,2378,2413,2449,2485,2522,2560,2598,2636,2673,2710,2748,2786,2825,2865,2905,2945,2986,3028,3067,3106,3146,3186,3227,3269,3311,3353,3396,3440,3470,3500,3530,3604,3680,3757,3836,3916,3998,4081,4159,4239,4273,4403,4562,4628,4696,4708,4916,4723,4449,4754,4958,4990,5102,5036,5662,5459,5365,4510,3792,3188,2673,2243,1881,2776,3524,3589,3723,3811,4098,4076,4581,4673,4978,5355,5656,5860,6011,6219,6708,6920,7598,8197,8931,9414,9822,10458,11466,12366,13227,14818,15373,14801,15594,16413,16765,17707,18184,18373,18270,18286,18309,18776,19345,19657,19575,20486,21229,21085,21528,21442,20906,21147,21426,21905,22739,23535,24152,25030,25884,26625,28303,29604,29768,31399,32408,32197,30780,29190,26675,24991,24159,24502,25430],"lifeExpectancy":[36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.7,36.8,36.9,37,37.1,37.2,37.3,37.5,37.6,37.7,37.9,38,38.2,38.3,38.5,38.7,38.9,39,39.2,39.4,39.6,39.8,40,40.2,40.4,40.6,40.7,40.9,41,41.2,41.5,41.7,42,42.3,42.5,42.8,43.1,43.3,43.6,43.9,24.1,44.4,44.7,45,45.3,45.9,46.6,47.2,47.9,48.5,46.6,50.4,50.6,50.8,51.1,51.6,52.1,52.6,53.1,53.6,54.2,54.7,55.3,41.2,30.5,40.1,46.1,59.2,57.3,54.8,49.5,56.7,66.8,66.9,67.1,67.4,67.6,68,68.3,68.8,69.2,69.7,70.1,70.5,70.9,71.3,71.6,71.8,72.1,72.3,72.6,72.9,73.3,73.6,73.9,74.1,74.3,74.4,74.5,74.7,75,75.3,75.6,75.7,75.8,75.9,75.9,76,76.2,76.4,76.6,76.9,77,77,77.1,77.3,77.5,77.6,77.6,77.7,77.8,77.9,78,78.3,78.4,78.5,78.7,78.9,79.2,79.4,79.5,79.5,79.6,79.7,79.8,79.8,79.8,79.8],"population":[3494168,3526345,3558523,3590701,3622878,3655056,3691984,3728911,3765839,3802767,3839695,3876622,3913550,3950478,3987405,4024333,4066012,4107691,4149371,4191050,4232729,4274408,4316087,4357767,4399446,4441125,4485283,4529441,4573599,4617757,4661916,4706074,4750232,4794390,4838548,4882706,4918623,4954540,4990456,5026373,5062290,5098207,5134124,5170040,5205957,5241874,5281708,5321542,5361376,5401210,5441045,5480879,5520713,5560547,5600381,5640215,5701514,5762813,5824111,5885410,5946709,6008008,6069307,6130605,6191904,6253203,6342806,6432409,6522013,6611616,6701219,6790822,6880425,6970029,7059632,7149235,7190912,7232588,7274265,7315942,7357619,7399295,7440972,7482649,7524325,7566002,7635277,7706022,7779457,7856029,7935409,8016443,8097202,8175140,8247359,8311386,8366020,8412059,8452617,8492232,8534252,8580600,8630672,8682351,8732308,8778676,8819206,8856097,8897126,8952862,9030080,9132531,9255749,9388188,9513594,9620274,9704947,9771250,9822999,9866725,9907831,9945576,9979755,10017036,10065859,10131737,10217782,10321044,10433351,10542970,10641169,10725634,10798190,10859311,10910741,10954032,10987715,11011490,11029587,11047739,11069662,11098212,11131302,11161755,11179425,11177509,11153047,11109662,11055164,11000777,10954617]},{"name":"Grenada","region":"America","income":[1164,1168,1173,1178,1183,1188,1194,1199,1204,1209,1214,1219,1224,1229,1235,1240,1245,1251,1256,1261,1267,1272,1277,1283,1288,1294,1299,1305,1310,1316,1321,1327,1333,1338,1344,1350,1355,1361,1367,1373,1379,1384,1390,1396,1402,1408,1414,1420,1426,1432,1438,1444,1451,1457,1463,1469,1476,1482,1489,1496,1503,1509,1516,1523,1530,1537,1544,1550,1557,1564,1571,1578,1585,1592,1599,1607,1614,1621,1628,1635,1642,1650,1657,1664,1672,1679,1718,1758,1799,1841,1884,1927,1972,2018,2065,2113,2162,2212,2263,2316,2370,2425,2481,2539,2597,2658,2852,3074,3354,3588,3724,4106,4401,4820,4964,4949,4945,4959,4888,5019,5253,5756,6341,6583,7057,7488,7646,7565,7283,7401,7522,7785,8117,8633,9489,9650,9433,9734,10627,10529,11892,11380,12042,12116,11273,11178,11219,11046,11273,11400,11593],"lifeExpectancy":[37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,37.3,24.2,37.3,37.3,37.3,38.1,38.8,39.5,40.3,41,41.7,42.4,43.2,43.9,44.6,45.3,45.9,46.5,47.1,47.8,48.4,49,49.6,50.3,50.9,51.5,52.1,52.8,53.4,54,54.6,55.2,55.8,56.4,56.7,57.3,57.9,58.5,59.1,59.6,60.1,60.6,61.1,61.6,62.1,62.6,63,63.4,63.9,64.3,64.7,65.1,65.4,65.8,66,66.3,66.7,67.1,67.5,67.8,68,68.2,68.4,68.6,68.7,68.8,68.9,69,69.1,69.2,69.3,69.5,69.8,70.2,70.6,70.8,71,71.1,71.1,71,70.9,70.7,70.6,70.5,70.3,70.1,70,69.9,70.1,70.3,70.6,70.9,71.2,71.2,71.3,71.4,71.5,71.6,71.7],"population":[35292,35635,35979,36322,36666,37009,37582,38154,38727,39299,39872,40444,41017,41589,42162,42734,43639,44544,45449,46354,47260,48165,49070,49975,50880,51785,52767,53749,54731,55713,56695,57677,58659,59641,60623,61605,62126,62647,63168,63689,64211,64732,65253,65774,66295,66816,66781,66745,66710,66674,66639,66604,66568,66533,66497,66462,66663,66864,67066,67267,67468,67669,67870,68072,68273,68474,68717,68959,69202,69444,69687,69929,70172,70414,70657,70899,71477,72054,72632,73210,73788,74365,74943,75521,76098,76676,76626,77135,78103,79432,81028,82797,84647,86495,88256,89861,91260,92424,93354,94066,94579,94878,94962,94875,94682,94430,94180,93937,93629,93151,92453,91435,90187,89070,88571,89004,90575,93091,95981,98440,99907,100146,99381,98063,96871,96286,96455,97201,98302,99403,100253,100796,101125,101302,101441,101620,101849,102100,102371,102657,102951,103259,103587,103934,104298,104677,105070,105476,105902,106349,106825]},{"name":"Guatemala","region":"America","income":[1240,1250,1260,1270,1281,1291,1302,1312,1323,1334,1345,1356,1367,1378,1389,1400,1412,1423,1435,1447,1458,1470,1482,1494,1507,1519,1531,1544,1556,1569,1582,1595,1608,1621,1634,1648,1661,1675,1688,1702,1716,1730,1744,1758,1773,1787,1802,1817,1831,1846,1861,1877,1892,1907,1923,1939,2105,1966,2138,2287,2220,2218,2338,2365,2611,2694,2457,2092,2057,2289,2591,3487,3336,3361,3711,4140,4263,4222,2766,2624,2608,3014,2971,2989,3172,3131,3083,3055,3075,3041,3024,3202,3284,3336,3397,3377,3421,3441,3661,3722,3815,3955,4044,4320,4441,4606,4766,5012,5242,5460,5450,5730,6047,6215,6373,6475,6361,5953,5662,5534,5345,5198,5225,5269,5314,5315,5383,5514,5598,5691,5836,5873,5992,6149,6239,6313,6305,6389,6390,6429,6475,6658,6906,6960,6826,6849,6957,6985,7063,7181,7279],"lifeExpectancy":[25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,9.7,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.7,25.7,25.7,25.7,25.7,25.7,25.7,25.7,26.4,27.2,27.9,28.7,29.4,30.2,31.3,32.4,33.5,34.5,35.6,36.7,37.8,38.9,40,41.1,41.2,41.6,41.9,42.3,42.7,43.1,43.6,44.1,44.6,45.2,45.7,46.3,46.9,47.5,48.1,48.8,49.4,50.1,50.9,51.6,53.5,55.3,56.1,56.5,56.2,55.7,58.5,59.9,60.1,60.1,57.4,58.3,61.6,62.6,62.8,63,63.3,64,64.7,64.8,64.4,64.2,64.3,65,66.6,67.6,67.6,67.7,68.2,68.5,68.8,69.3,69.5,69.6,69.5,69.9,70.6,70.8,70.7,70.8,71.4,71.9,72.3,72.7,73.1],"population":[1020169,1031543,1042917,1054290,1065664,1077038,1087524,1098011,1108497,1118983,1129470,1139956,1150442,1160928,1171415,1181901,1192180,1202458,1212737,1223016,1233295,1243573,1253852,1264131,1274409,1284688,1296358,1308028,1319698,1331368,1343038,1354707,1366377,1378047,1389717,1401387,1416477,1431566,1446656,1461746,1476836,1491925,1507015,1522105,1537194,1552284,1569437,1586589,1603742,1620895,1638048,1655200,1672353,1689506,1706658,1723811,1743308,1762805,1782303,1801800,1821297,1840794,1860291,1879789,1899286,1918783,1964324,2009866,2055407,2100949,2146490,2192031,2237573,2283114,2328656,2374197,2451385,2528572,2605760,2682947,2760135,2837323,2914510,2991698,3068885,3146073,3237922,3330548,3424050,3518608,3614477,3711995,3811577,3913698,4018870,4127555,4240084,4356579,4476923,4600846,4728203,4858880,4993104,5131461,5274726,5423384,5577824,5737720,5901980,6069077,6237963,6408029,6579710,6754258,6933492,7118628,7310397,7508161,7710142,7913814,8117499,8320498,8523785,8729406,8940285,9158547,9385000,9619113,9860063,10106463,10357354,10612300,10871786,11136814,11408815,11688660,11976725,12272208,12573346,12877711,13183505,13490041,13797629,14106687,14418033,14732261,15049280,15368759,15690793,16015494,16342897]},{"name":"Guinea","region":"Sub-Saharan Africa","income":[495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,530,531,532,533,534,535,536,537,538,539,540,542,543,544,545,546,547,548,549,551,552,553,554,556,558,560,562,564,566,568,570,572,574,576,578,580,582,584,586,588,590,592,594,596,599,601,603,605,607,609,611,613,615,643,654,669,699,713,730,745,755,786,806,846,893,831,870,914,917,929,940,950,966,977,979,1003,1053,1076,1159,1162,1170,1149,1166,1149,1147,1137,1117,1085,1077,1085,1122,1139,1128,1097,1068,1059,1046,1049,1061,1089,1107,1130,1139,1161,1200,1194,1200,1210,1212,1203,1230,1194,1185,1200,1216,1213,1179,1225],"lifeExpectancy":[30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.7,30.7,30.7,30.7,30.7,30.7,11.9,30.7,30.7,30.9,31.2,31.4,31.6,31.8,32,32.2,32.4,32.6,32.8,33,33.2,33.4,33.6,33.8,34,34.2,34.4,34.6,34.8,35.1,35.3,35.5,35.7,35.9,36.4,36.9,37.4,37.9,38.4,38.7,39.2,39.6,40.1,40.6,41,41.4,41.9,42.3,42.7,43.1,43.5,43.8,44.2,44.5,44.9,45.2,45.6,46,46.4,46.5,46.5,46.6,46.7,46.8,47.1,47.4,47.8,48.2,48.8,49.2,49.6,49.9,50.3,50.7,51.1,51.4,51.7,52,52.3,52.7,53,53.5,53.9,54.3,54.7,54.9,55,55.4,55.6,56,56.4,56.8,57.1,57.3,57.6,58,58.3,58.7,59.1,59.5,59.9,60.2,60.5,60.8],"population":[1465626,1478487,1491348,1504209,1517071,1529932,1543892,1557852,1571811,1585771,1599731,1613691,1627651,1641610,1655570,1669530,1684754,1699978,1715202,1730426,1745650,1760873,1776097,1791321,1806545,1821769,1838489,1855210,1871930,1888650,1905371,1922091,1938811,1955531,1972252,1988972,2007159,2025347,2043534,2061722,2079909,2098096,2116284,2134471,2152659,2170846,2190782,2210718,2230654,2250590,2270527,2290463,2310399,2330335,2350271,2370207,2392040,2413874,2435707,2457541,2479374,2501207,2523041,2544874,2566708,2588541,2612386,2636230,2660075,2683919,2707764,2731609,2755453,2779298,2803142,2826987,2853653,2880320,2906986,2933653,2960319,2986985,3013652,3040318,3066985,3093651,3141548,3185537,3228112,3271196,3316142,3363711,3414094,3466979,3521668,3577413,3633778,3690960,3749920,3812004,3877804,3948206,4021880,4094528,4160375,4215442,4259102,4293208,4319502,4340748,4359735,4376768,4393551,4416074,4451872,4506559,4584305,4684992,4804740,4937230,5078689,5223553,5375058,5548270,5763843,6034082,6367110,6751394,7155564,7536389,7863033,8124799,8331366,8497582,8647336,8799165,8955756,9114287,9281572,9464771,9669023,9898301,10152521,10427356,10715770,11012406,11316351,11628767,11948726,12275527,12608590]},{"name":"Guinea-Bissau","region":"Sub-Saharan Africa","income":[808,809,810,810,811,812,812,813,814,814,815,816,816,817,818,818,819,820,820,821,822,822,823,824,824,825,826,826,827,828,828,829,830,830,831,832,832,833,834,834,835,836,836,837,838,838,839,840,840,841,842,842,843,844,844,845,845,845,844,844,844,843,843,843,843,842,842,842,841,841,841,840,840,840,839,839,839,838,838,837,837,837,836,836,836,835,867,900,935,1096,1027,1140,1184,1190,1175,1208,1260,1308,1332,1440,1511,1577,1639,1659,1708,1756,1676,1775,1770,1829,1852,1803,1644,1825,1827,1500,1730,1790,1605,1631,1679,1626,1562,1585,1553,1564,1607,1588,1585,1599,1632,1781,1855,1305,1289,1330,1329,1287,1266,1273,1299,1300,1313,1326,1340,1368,1457,1391,1362,1363,1386],"lifeExpectancy":[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,12.4,32,32,32,32,32,32,32,32,32,32.1,32.1,32.1,32.4,32.8,33.1,33.5,33.8,34.1,34.5,34.8,35.2,35.5,35.9,36.2,36.6,36.9,37.3,37.6,37.9,38.3,38.6,39,39.3,39.7,40,40.4,40.7,41.1,41.4,41.8,42.1,42.4,42.7,42.9,43.1,43.3,43.5,43.7,43.9,44.1,44.2,44.4,44.8,45.1,45.4,48.1,48.4,48.7,48.9,49.2,49.5,49.8,49.9,50,50.2,50.4,50.5,50.7,50.8,51,51.1,51.3,51.4,51.6,51.7,51.9,52,52.1,52.2,51.5,51.7,51.7,51.5,51.3,51.1,50.9,50.9,50.9,51.1,51.3,51.7,52,52.2,52.5,52.8,53.1,53.4],"population":[296706,298810,300913,303017,305120,307224,309472,311721,313969,316218,318466,320714,322963,325211,327460,329708,332119,334531,336942,339353,341765,344176,346587,348998,351410,353821,356420,359018,361617,364215,366814,369413,372011,374610,377208,379807,382589,385370,388152,390933,393715,396496,399277,402059,404841,407622,410550,413479,416407,419336,422264,425192,428121,431049,433978,436906,439912,442918,445924,448930,451937,454943,457949,460955,463961,466967,470180,473393,476606,479819,483032,486245,489458,492671,495884,499097,502730,506363,509997,513630,517263,520896,524529,528163,531796,535429,544103,552032,559688,567406,575377,583648,592124,600595,608773,616407,623413,629973,636593,643962,652566,662597,673893,686155,698917,711828,724863,738117,751512,764974,778482,791959,805481,819371,834068,849886,866947,885166,904391,924378,944941,966039,987718,1009967,1032797,1056208,1080191,1104708,1129706,1155111,1180877,1207006,1233520,1260424,1287727,1315455,1343646,1372367,1401716,1431816,1462784,1494603,1527342,1561293,1596832,1634196,1673509,1714620,1757138,1800513,1844325]},{"name":"Guyana","region":"America","income":[1649,1660,1671,1682,1694,1705,1717,1728,1740,1752,1764,1775,1787,1800,1812,1824,1836,1849,1861,1874,1886,1899,1912,1925,1938,1951,1964,1977,1991,2004,2018,2031,2045,2059,2073,2087,2101,2115,2129,2144,2158,2173,2188,2202,2217,2232,2247,2262,2278,2312,2347,2382,2418,2454,2491,2529,2575,2621,2669,2717,2766,2816,2867,2919,2972,3025,3080,3135,3192,3249,3308,3367,3427,3489,3551,3615,3679,3745,3812,3880,3949,4020,4091,4164,4238,4314,4207,4103,4001,3902,3805,3711,3619,3529,3442,3356,3426,3383,2902,3164,3427,3535,3618,3593,3788,3905,3996,3846,3883,4172,4509,4556,4409,4304,4206,4270,4337,3775,3535,3378,3485,3485,3551,3454,3312,3231,3432,3703,4001,4331,4533,4872,5153,5041,5166,5071,5163,5197,5124,5270,5140,4837,5143,5208,5344,5542,5808,6054,6336,6545,6816],"lifeExpectancy":[31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.5,31.8,32.2,32.5,32.9,33.2,29.4,33.9,34.3,34.7,35.5,36.3,37.1,38,38.8,39.6,40.4,41.3,42.1,42.9,43.8,44.6,45.4,46.3,47.1,48,48.8,49.7,50.5,51.3,52.2,53,53.9,54.7,55.5,56.4,57.2,58.1,58.9,59,59.2,59.4,59.6,59.8,60,60.2,60.4,60.6,60.8,61,61.2,61.4,61.6,61.8,62,62.1,62.3,62.5,62.7,62.7,62.7,62.4,61.9,61.8,62.1,62.6,63.1,63.3,63.6,63.9,64.3,64.6,64.7,65,65.4,65.6,65.6,65.2,64.9,65,65.3,65.4,65.2,64.8,64.6,64.4,64.4,64.5,64.4,64.2,63.7,63,62.6,62.6,63,63.1,63,63.1,63.3,63.5,63.8,64,64.2,64.4],"population":[226115,227633,229151,230670,232188,233706,235322,236938,238554,240170,241786,243402,245018,246634,248250,249866,251593,253320,255047,256774,258501,260227,261954,263681,265408,267135,268991,270846,272702,274557,276413,278269,280124,281980,283835,285691,287670,289648,291627,293605,295584,297563,299541,301520,303498,305477,307617,309756,311896,314036,316176,318315,320455,322595,324734,326874,329205,331536,333867,336198,338530,340861,343192,345523,347854,350185,352682,355180,357677,360175,362672,365169,367667,370164,372662,375159,378299,381440,384580,387720,390861,394001,397141,400281,403422,406562,420290,435850,452260,468805,485041,500809,516218,531605,547461,564222,582034,600559,618887,635778,650379,662332,671986,680068,687658,695561,703811,712188,720919,730227,740167,751008,762445,773227,781677,786614,787728,785466,780367,773302,765043,755598,745149,734872,726237,720282,717502,717621,719910,723230,726695,730193,733854,737316,740189,742218,743163,743107,742537,742162,742495,743705,745638,748096,750749,753362,755883,758410,761033,763893,767085]},{"name":"Haiti","region":"America","income":[1004,1014,1025,1035,1046,1056,1067,1078,1089,1100,1112,1123,1134,1146,1158,1170,1182,1194,1206,1218,1231,1243,1256,1269,1282,1295,1308,1322,1335,1349,1362,1376,1390,1405,1419,1434,1448,1463,1478,1493,1508,1524,1539,1555,1571,1587,1603,1620,1636,1653,1670,1687,1704,1722,1739,1757,1775,1793,1812,1831,1849,1868,1888,1907,1927,1946,1966,1986,2007,2027,2048,2069,2090,2112,2133,2155,2177,2199,2222,2244,2267,2261,2274,2271,2270,2281,2278,2367,2252,2394,2256,2408,2222,2351,2196,2292,2154,2312,2116,2024,2003,1949,1869,1902,1922,1970,2076,2130,2204,2322,2249,2421,2412,2507,2666,2848,2727,2588,2559,2515,2469,2414,2346,2314,2290,2242,2208,1873,1799,1621,1672,1710,1726,1733,1748,1734,1688,1657,1637,1557,1562,1576,1607,1600,1628,1518,1580,1603,1648,1670,1710],"lifeExpectancy":[29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,18.8,29,29,29,29,29,29,29,29,29,29,29,29,29,29,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.8,30.7,31.6,32.5,33.4,34.3,35.2,36.1,36.5,37.1,37.8,38.4,39,39.6,40.2,40.8,41.4,42,42.6,43.2,43.7,44.3,44.8,45.3,45.8,46.2,46.6,47,47.4,47.8,48.1,48.5,48.9,49.4,49.7,49.8,50.1,50.6,51.3,51.9,52.5,53,53.4,53.7,54.1,54.4,54.6,54.7,54.7,54.9,55.1,55.2,55.8,56.2,56.6,57.1,57.8,58.6,59.2,59.6,59.9,59.1,60.3,60.7,61.3,61.7,62.4,37,63.3,63.8,64.3,64.8,65.3],"population":[1099103,1110464,1121825,1133186,1144547,1155908,1168409,1180909,1193410,1205910,1218411,1230912,1243412,1255913,1268413,1280914,1294748,1308582,1322415,1336249,1350083,1363917,1377751,1391584,1405418,1419252,1435735,1452218,1468701,1485184,1501668,1518151,1534634,1551117,1567600,1584083,1608383,1632684,1656984,1681284,1705585,1729885,1754185,1778485,1802786,1827086,1858875,1890663,1922452,1954241,1986030,2017818,2049607,2081396,2113184,2144973,2175303,2205632,2235962,2266291,2296621,2326950,2357280,2387609,2417939,2448268,2481563,2514858,2548153,2581448,2614744,2648039,2681334,2714629,2747924,2781219,2825225,2869231,2913236,2957242,3001248,3045254,3089260,3133265,3177271,3221277,3275368,3331582,3390047,3450856,3514072,3579723,3647806,3718286,3791099,3866160,3943363,4022596,4103732,4186636,4271133,4357482,4445531,4534233,4622209,4708639,4793157,4876558,4960655,5047948,5140357,5238242,5341418,5450550,5566265,5688832,5818673,5955265,6096690,6240330,6384196,6527545,6670566,6813344,6956301,7099733,7243391,7386974,7530703,7674911,7819806,7965548,8111954,8258484,8404396,8549202,8692564,8834739,8976555,9119182,9263409,9409479,9556958,9705130,9852953,9999617,10144890,10288828,10431249,10572029,10711067]},{"name":"Honduras","region":"America","income":[1202,1217,1233,1248,1265,1281,1297,1314,1331,1348,1365,1383,1400,1418,1437,1455,1474,1493,1512,1531,1551,1571,1591,1612,1632,1653,1674,1696,1718,1740,1762,1785,1808,1831,1854,1878,1902,1927,1952,1977,2002,2028,2054,2080,2107,2134,2161,2189,2217,2246,2275,2304,2333,2363,2394,2424,2382,2486,2376,2162,2515,2448,2655,2917,2822,2940,2937,2575,2365,2266,2120,2115,1981,2056,2073,2154,2110,1878,1863,1858,2249,2361,2453,2446,2405,2407,2460,2478,2593,2369,2353,2460,2490,2483,2461,2526,2501,2551,2549,2583,2703,2756,2805,2864,2781,2771,2778,2775,2803,3089,3061,3266,3488,3700,3738,3616,3557,3373,3233,3241,3261,3170,3240,3288,3304,3205,3219,3308,3423,3293,3344,3385,3475,3500,3362,3483,3505,3563,3651,3801,3952,4128,4297,4391,4200,4270,4345,4131,4154,4214,4270],"lifeExpectancy":[33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,30,33.9,33.9,34,34.1,34.2,34.3,34.4,34.6,34.7,34.8,34.9,35,35.5,35.9,36.4,36.8,37.3,37.7,38.2,38.7,39.1,39.6,40,40.5,40.9,41.4,41.9,42.3,42.8,43.2,43.7,44.1,44.5,45,45.6,46.3,46.9,47.6,48.4,49.1,49.9,50.7,51.5,52.2,53,53.8,54.5,55.2,55.9,56.6,57.3,58,58.8,59.7,58.9,56.9,62.5,63.1,63.9,64.7,65.6,66.3,66.8,67,67.3,67.4,67.6,67.8,68,68,68.2,68.3,68.3,68.4,68.2,68.2,68.3,68.3,68.4,63.7,68.6,68.8,69,69.3,69.5,69.9,70.1,70.4,70.6,70.9,71.1,71.3,71.6,71.8,72,72.2,72.4],"population":[391549,394429,397308,400188,403067,405947,409018,412090,415161,418232,421304,424375,427446,430517,433589,436660,439954,443248,446542,449836,453130,456424,459718,463012,466306,469600,474198,478796,483393,487991,492589,497187,501785,506382,510980,515578,526694,537810,548926,560042,571159,582275,593391,604507,615623,626739,637411,648083,658754,669426,680098,690770,701442,712113,722785,733457,756397,779336,802276,825215,848155,871094,894033,916973,939913,962852,982785,1002717,1022650,1042583,1062516,1082448,1102381,1122314,1142246,1162179,1194685,1227190,1259696,1292201,1324707,1357213,1389718,1422224,1454729,1487235,1524974,1568424,1615739,1665566,1717045,1769834,1824081,1880356,1939516,2002333,2069085,2139208,2211144,2282764,2352637,2420234,2486288,2552200,2620014,2691309,2766444,2845260,2928190,3015606,3107735,3204883,3306988,3413426,3523283,3635862,3750843,3868296,3988371,4111369,4237436,4366401,4497875,4631491,4766802,4903363,5041050,5179557,5318042,5455481,5591136,5724587,5855946,5985675,6114534,6243080,6371304,6499001,6626304,6753352,6880181,7007029,7133737,7259470,7383098,7503875,7621414,7736131,7849059,7961680,8075060]},{"name":"Hungary","region":"Europe & Central Asia","income":[1779,1793,1807,1821,1835,1849,1878,1906,1935,1965,1995,2025,2056,2087,2119,2151,2184,2217,2251,2285,2320,2355,2391,2428,2465,2502,2536,2570,2605,2641,2676,2713,2750,2787,2825,2863,2913,2965,3017,3070,3124,3179,3235,3292,3350,3409,3488,3569,3652,3571,3492,3414,3338,3264,3191,3120,3250,3384,3523,3666,4419,4239,4434,4837,5010,4913,4681,4567,4991,5027,5288,5650,5533,5824,6273,5850,5893,6199,5555,4977,4459,3994,4141,5168,5562,5893,6439,6633,6724,6914,7483,7115,7795,8317,8641,9087,9539,9939,10492,11083,11173,11809,12475,12612,12973,12917,13471,13736,14420,14746,14991,14970,15853,16199,16209,16369,16500,17122,16989,17485,17103,17493,17811,18395,18077,16930,14926,14474,14407,14852,15095,15126,15667,16365,16943,17707,18411,19292,20079,21087,22029,22938,23091,23334,21839,22062,22524,22306,22708,23609,24200],"lifeExpectancy":[36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36.1,36.3,36.4,36.5,36.7,36.8,36.9,37.1,37.2,37.3,37.6,37.8,38.1,38.3,38.5,38.8,39,39.3,39.5,39.8,40,40.2,40.4,40.7,40.9,41.1,41.4,30.1,41.8,42.1,42.9,43.7,44.5,45.3,46.1,47,47.8,48.6,49.4,50.2,50.9,51.6,52.3,52.9,53.6,54.3,55,55.7,56.3,57,56.6,51,41,26,47,55,59,60.7,61.3,62.1,62.5,64.1,63.9,65.5,66.9,66.1,66.5,67.5,67.4,68.1,69.1,68,69,69.5,69.2,70,69.6,69.4,69.5,69.3,69.4,69.6,69.6,69.2,69.2,69.6,69.8,69.7,69.4,69.2,69.2,69.3,69.1,69,68.9,69.2,69.7,69.9,69.7,69.5,69.3,69.1,69.1,69.4,70,70.6,71,71.1,71.3,71.8,72.3,72.6,72.7,72.9,73,73.2,73.4,73.8,74.2,74.7,75.2,75.6,75.8,76,76.2],"population":[5714227,5751220,5788214,5825208,5862202,5899196,5934941,5970687,6006432,6042177,6077923,6113668,6149413,6185158,6220904,6256649,6294129,6331610,6369090,6406570,6444051,6481531,6519011,6556491,6593972,6631452,6679846,6728240,6776634,6825028,6873423,6921817,6970211,7018605,7066999,7115393,7167660,7219927,7272194,7324461,7376728,7428995,7481262,7533529,7585796,7638063,7669860,7701657,7733454,7765251,7797048,7828845,7860642,7892439,7924236,7956033,8023965,8091897,8159829,8227761,8295693,8363625,8431557,8499489,8567421,8635353,8698667,8761980,8825294,8888608,8951922,9015235,9078549,9141863,9205176,9268490,9275413,9282337,9289260,9296183,9303107,9310030,9316953,9323876,9330800,9337723,9478110,9595219,9691114,9768149,9828971,9876547,9914136,9945194,9973216,10001270,10031496,10064667,10099999,10135688,10170472,10204575,10238930,10273730,10309211,10345553,10381705,10417419,10454502,10495442,10541344,10593989,10650975,10704187,10742694,10759022,10750270,10719749,10673963,10622559,10572975,10526561,10482364,10442721,10409854,10385061,10370223,10364661,10363797,10361134,10351994,10334876,10311227,10282937,10253110,10224113,10195978,10168101,10141471,10117213,10095964,10078461,10064138,10050699,10034951,10014633,9988846,9958334,9924507,9889540,9855023]},{"name":"Iceland","region":"Europe & Central Asia","income":[1515,1531,1548,1565,1582,1599,1628,1622,1696,1747,1740,1712,1749,1814,1920,2035,2039,1820,1751,1772,1810,1816,1786,1848,1927,2009,2057,2189,2331,2357,2307,2353,2338,2268,2266,2352,2455,2522,2522,2526,2699,2760,2866,2844,2812,3012,3140,3162,3305,3232,3171,2796,2736,2576,2982,2514,2762,3097,2927,3117,3108,3343,3669,3807,4022,4444,4371,4170,4595,4624,4451,4439,4603,4601,5111,5373,6087,7013,7387,7986,8487,8702,9451,9452,9085,8670,8350,8120,9169,9821,10548,10575,10295,10896,10865,10993,10801,11489,12447,13450,14173,15166,14734,13752,13983,14937,16687,17413,18360,19123,19023,19978,21583,22659,23523,24580,25312,25455,24594,25356,25997,27379,29335,28780,28629,28666,28272,26977,27055,27789,27671,28839,30009,31601,32521,33599,34403,34252,34938,37482,39108,39818,42598,42294,39979,38809,39619,39925,40958,41237,42182],"lifeExpectancy":[34.2,27.2,37.5,34.6,28,38.4,35,25.1,36.6,39.6,36.5,40.3,44.6,41.6,39.5,42.3,35.8,17.7,30.3,42.2,45.5,45,40.6,46.8,52.5,36.6,47.5,52.7,52.6,44.8,52.5,53.2,48.5,44.2,49.8,46.6,53,50.5,48.8,52.7,49.5,53.6,49.7,45.8,52.4,52.7,55.5,56,59,51.9,53.7,54.5,59,51.1,58.5,54.6,54.2,56.9,57.7,54,58.2,60.8,58.1,61.8,60.5,60.2,60.8,62.2,63,63.4,59.5,62.7,63.5,65.1,66,65.8,63.2,64.1,65.2,66.8,67.5,68.6,69.4,70.2,71.4,71,71,72.5,72.3,73.4,73.3,73,73.5,73.4,72.7,74.1,73.5,73.7,73,73.6,73.8,73.2,73.7,73.9,73.7,73.8,73.8,73.9,74.1,74.3,74.7,75.2,75.6,76,76.4,76.7,76.9,77.1,77.3,77.4,77.6,77.6,77.7,77.8,78,78.1,78.3,78.5,78.7,78.8,78.9,79.1,79.3,79.5,79.7,79.9,80.2,80.5,80.8,81.1,81.3,81.5,81.8,82,82.2,82.5,82.7,82.8,82.8,82.8,82.8],"population":[82302,82829,83357,83885,84413,84941,85502,86062,86623,87183,87744,88304,88865,89425,89986,90546,91143,91740,92337,92934,93532,94129,94726,95323,95920,96517,97157,97796,98436,99075,99715,100355,100994,101634,102273,102913,103593,104273,104953,105633,106314,106994,107674,108354,109034,109714,110444,111174,111904,112634,113364,114093,114823,115553,116283,117013,117799,118585,119370,120156,120942,121728,122514,123299,124085,124871,125710,126548,127387,128225,129064,129903,130741,131580,132418,133257,134197,135137,136077,137017,137957,138896,139836,140776,141716,142656,144928,147681,150779,154110,157584,161136,164721,168318,171919,175520,179106,182640,186056,189276,192251,194935,197356,199634,201941,204392,207050,209868,212731,215465,217958,220162,222142,224019,225972,228127,230525,233121,235860,238647,241411,244145,246867,249563,252219,254830,257387,259895,262383,264893,267454,270089,272798,275568,278376,281214,284037,286865,289824,293084,296745,300887,305415,310033,314336,318042,321030,323407,325392,327318,329425]},{"name":"India","region":"South Asia","income":[1057,1057,1057,1058,1058,1058,1061,1063,1066,1068,1071,1074,1076,1079,1081,1084,1087,1089,1092,1095,1127,1090,1137,1146,1113,1163,1054,1137,1164,1180,1149,1063,1255,1255,1156,1194,1212,1305,1316,1314,1283,1311,1225,1235,1396,1391,1371,1359,1320,1383,1340,1370,1336,1158,1309,1197,1268,1296,1229,1264,1254,1268,1244,1232,1259,1244,1208,1194,1168,1153,1116,1134,1091,1069,1069,1081,1079,1054,1075,1043,1007,937,924,917,922,908,908,912,947,962,963,993,959,1005,1002,1048,1051,1046,1071,1125,1053,1037,1096,1095,1141,1170,1154,1125,1151,1139,1212,1201,1266,1305,1211,1270,1322,1334,1412,1436,1462,1493,1525,1649,1723,1777,1760,1821,1871,1959,2069,2186,2235,2332,2496,2548,2628,2684,2850,3029,3262,3514,3806,3901,4177,4547,4787,4967,5244,5565,5903],"lifeExpectancy":[25.3,21,25.3,25.3,21.3,25.4,25.4,25.4,25.4,25.4,25.1,20,19,20,25.4,25.4,25.4,25.3,25.2,25.1,25,24.9,24.7,24.4,24.3,24.4,23,22.7,24.1,24,23.9,22.8,19.9,25.8,23.4,18.4,23.1,23.6,23.4,22,21.9,21.9,19.2,23.2,23.2,23.2,23.1,23.3,23.5,23.7,23.9,24.1,24.3,8.1,24.6,24.7,24.9,25.3,25.7,26.2,26.6,27,27.5,27.9,28.4,28.8,29.2,29.6,29.9,30.2,30.5,30.8,31.2,31.5,31.8,32.1,32.5,32.7,31.9,32.4,33.4,33.7,32.2,33.9,34.4,34.6,35,35.6,36.3,37,37.7,38.3,39,39.7,40.4,41.1,41.8,42.6,43.3,44.1,44.8,45.6,46.3,47.1,47.8,48.5,48.9,49.3,49.9,50.4,50.9,51.4,52,52.6,53.1,53.6,54.2,54.6,55.1,55.5,55.9,56.3,56.6,57,57.3,57.7,58,58.3,58.6,59,59.3,59.6,60,60.3,60.7,61.1,61.5,61.9,62.4,62.8,63.2,63.6,64,64.4,64.7,65.1,65.5,65.9,66.2,66.5,66.8],"population":[209345676,210221550,211097425,211973300,212849174,213725049,214654582,215584115,216513647,217443180,218372713,219302246,220231779,221161311,222090844,223020377,224000298,224980218,225960139,226940060,227919981,228899901,229879822,230859743,231839663,232819584,233845020,234870456,235895893,236921329,237946765,238972201,239997637,241023074,242048510,243073946,244142672,245211397,246280123,247348848,248417574,249486300,250555025,251623751,252692476,253761202,255164612,256568022,257971432,259374842,260778252,262181661,263585071,264988481,266391891,267795301,269562855,271330409,273097962,274865516,276633070,278400624,280168178,281935731,283703285,285470839,289360989,293251138,297141288,301031437,304921587,308811737,312701886,316592036,320482185,324372335,329567622,334762909,339958196,345153483,350348770,355544057,360739344,365934631,371129918,376325205,382231042,388515758,395137696,402065915,409280196,416771502,424541513,432601236,440968677,449661874,458691457,468054145,477729958,487690114,497920270,508402908,519162069,530274729,541844848,553943226,566605402,579800632,593451889,607446519,621703641,636182810,650907559,665936435,681358553,697229745,713561406,730303461,747374856,764664278,782085127,799607235,817232241,834944397,852736160,870601776,888513869,906461358,924475633,942604211,960874982,979290432,997817250,1016402907,1034976626,1053481072,1071888190,1090189358,1108369577,1126419321,1144326293,1162088305,1179685631,1197070109,1214182182,1230984504,1247446011,1263589639,1279498874,1295291543,1311050527]},{"name":"Indonesia","region":"East Asia & Pacific","income":[1067,1068,1070,1071,1073,1075,1060,1047,1057,1070,1079,1101,1103,1079,1092,1088,1143,1101,1077,1155,1154,1136,1137,1127,1117,1077,1096,1127,1150,1154,1144,1139,1140,1132,1175,1198,1169,1135,1184,1187,1188,1207,1223,1210,1253,1313,1359,1366,1411,1396,1398,1395,1383,1409,1520,1460,1449,1474,1489,1548,1562,1636,1720,1764,1791,1795,1637,1609,1599,1608,1662,1766,1879,1910,1912,2053,2048,1505,1336,1066,940,972,1075,1249,1363,1443,1527,1541,1587,1665,1701,1664,1779,1643,1696,1737,1791,1772,1668,1694,1682,1666,1602,1741,1920,2082,2162,2351,2637,2679,2612,2797,2946,3026,3111,3314,3445,3254,3294,3461,3489,3646,3775,3940,4234,4548,4868,5131,5412,5727,6111,6478,6683,5721,5684,5878,6005,6186,6389,6615,6892,7168,7516,7856,8108,8498,8907,9327,9729,10099,10504],"lifeExpectancy":[30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,14,30,30,30.1,30.2,30.3,30.3,30.4,30.5,30.6,31.2,31.8,32.4,32.9,33.5,34.1,34.7,35.3,35.9,36.5,36.9,37.4,37.8,38.3,30.9,30,29.1,28.2,32.7,33.3,33.9,34.5,39,39.5,40.6,41.6,42.6,43.5,44.5,45.5,46.4,47.3,48.2,49.1,50,50.9,51.8,47.4,47.9,54.3,55.1,55.9,56.7,57.3,57.8,58.3,58.8,59.3,59.7,60.2,60.6,61.1,61.5,61.9,62.3,62.7,63.1,63.4,63.7,64,64.3,64.7,65,65.4,65.7,66.2,66.6,67,67.3,67.7,67.9,68.1,68.3,68.4,68.4,68.6,67.2,69,69.1,69.4,69.5,69.6,69.8,70,70.3,70.5,70.7,70.9],"population":[25635958,25921274,26206590,26491906,26777223,27062539,27377572,27692605,28007639,28322672,28637705,28952738,29267771,29582805,29897838,30212871,30566319,30919768,31273216,31626665,31980113,32333561,32687010,33040458,33393907,33747355,34188553,34629751,35070949,35512147,35953345,36394542,36835740,37276938,37718136,38159334,38620583,39081832,39543081,40004330,40465579,40926828,41388077,41849326,42310575,42771824,43223420,43675015,44126611,44578206,45029802,45481398,45932993,46384589,46836184,47287780,47899375,48510969,49122564,49734158,50345753,50957348,51568942,52180537,52792131,53403726,54245512,55087298,55929085,56770871,57612657,58454443,59296229,60138016,60979802,61821588,62593761,63365934,64138107,64910280,65682454,66454627,67226800,67998973,68771146,69543319,70869608,72309902,73866520,75539738,77327799,79226787,81230749,83332054,85521981,87792512,90138235,92558006,95055669,97638027,100308896,103067352,105907403,108821565,111800090,114834781,117921994,121059511,124242299,127465232,130724118,134010695,137322122,140665859,144053516,147490366,150978841,154506266,158044343,161555584,165012195,168402027,171728916,175000919,178233231,181436821,184614740,187762097,190873248,193939912,196957845,199926615,202853850,205753493,208644079,211540428,214448301,217369087,220307809,223268606,226254703,229263980,232296830,235360765,238465165,241613126,244808254,248037853,251268276,254454778,257563815]},{"name":"Iran","region":"Middle East & North Africa","income":[1067,1069,1071,1073,1075,1077,1085,1092,1099,1107,1115,1122,1130,1138,1146,1153,1161,1169,1177,1185,1193,1202,1210,1218,1227,1235,1243,1252,1261,1269,1278,1287,1296,1304,1313,1322,1331,1341,1350,1359,1368,1378,1387,1397,1406,1416,1431,1446,1461,1497,1534,1572,1611,1650,1691,1733,1785,1839,1894,1950,2008,2067,2127,2189,2252,2317,2383,2451,2520,2591,2664,2738,2814,2891,2970,3051,3134,3219,3306,3394,3485,3577,3672,3768,3867,3968,3881,3796,3717,3635,3554,3783,4211,4591,4863,5203,5505,5472,5921,6188,6768,7252,7862,8816,9709,10467,11475,13019,13782,14316,14690,16697,16033,13827,12312,10366,9691,10715,11655,11274,11047,9675,9335,8626,8753,9511,10502,10792,10500,10344,10477,11043,11216,11311,11327,11719,11977,12712,13454,13975,14452,15127,15903,15955,16123,16980,17425,16068,15552,15573,15573],"lifeExpectancy":[25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,21.2,25.6,25.6,25.7,25.7,25.8,25.9,26,26,26.1,26.2,26.3,26.3,26.4,26.5,26.5,26.6,26.7,26.8,26.8,26.9,27,27.1,28.5,30,31.4,32.9,34.3,35.8,37.2,38.7,40.1,41.6,42,42.6,43.3,43.9,44.6,45.3,45.9,46.6,47.2,47.9,48.5,49.1,49.8,50.4,51,51.7,52.3,53,53.7,54.5,55.7,56.5,58,59,60,60.9,61.6,60.9,62.9,60.6,59.3,60.2,61,63,63.6,64,64.4,64.7,67.5,66.2,68,68.4,68.6,69,69.3,69.7,69.9,70.4,70.8,71.2,71.6,72.2,72,73.8,74.5,75.4,76.2,76.9,77.5,77.9,78.1,78.2,78.3,78.4,78.5],"population":[8191830,8232952,8274074,8315197,8356319,8397441,8445678,8493915,8542151,8590388,8638625,8686862,8735099,8783335,8831572,8879809,8933706,8987604,9041501,9095398,9149296,9203193,9257090,9310987,9364885,9418782,9476212,9533642,9591073,9648503,9705933,9763363,9820793,9878224,9935654,9993084,10053843,10114601,10175360,10236118,10296877,10357636,10418394,10479153,10539911,10600670,10716477,10832284,10948091,11063898,11179705,11295511,11411318,11527125,11642932,11758739,11914382,12070025,12225668,12381311,12536955,12692598,12848241,13003884,13159527,13315170,13491415,13667659,13843904,14020149,14196394,14372638,14548883,14725128,14901372,15077617,15281782,15485946,15690111,15894275,16098440,16302605,16506769,16710934,16915098,17119263,17516578,17933356,18368896,18822605,19293998,19782699,20288440,20811062,21350524,21906905,22480420,23071426,23680433,24308080,24955116,25624650,26318116,27032944,27765239,28514011,29281130,30073845,30903565,31784896,32730555,33739231,34814231,35977589,37256771,38668222,40209077,41862373,43610506,45429019,47290793,49205577,51152122,53035939,54735239,56169196,57288039,58130099,58811858,59501292,60318632,61306632,62426086,63616065,64780362,65850062,66812736,67696677,68522074,69321953,70122115,70923164,71720859,72530693,73370982,74253373,75184322,76156975,77152445,78143644,79109272]},{"name":"Iraq","region":"Middle East & North Africa","income":[1169,1174,1178,1183,1188,1193,1202,1212,1221,1231,1241,1250,1260,1270,1280,1290,1300,1311,1321,1331,1342,1352,1363,1374,1385,1396,1407,1418,1429,1440,1452,1463,1474,1486,1498,1510,1522,1534,1546,1558,1570,1582,1595,1607,1620,1633,1647,1661,1675,1702,1730,1759,1788,1818,1848,1878,1908,1939,1970,2001,2033,2066,2099,2132,2166,2200,2235,2270,2306,2343,2379,2417,2455,2493,2532,2572,2612,2653,2694,2736,2779,2822,2866,2910,2955,3001,3178,3423,4678,5410,5045,5242,5045,5465,5528,5989,6480,6599,6278,6805,7178,7306,6898,7852,7846,7555,7785,7354,8648,9508,10522,11920,11575,13210,16718,16614,13478,12681,10779,10666,10711,11057,13010,13153,11519,11212,3921,5048,6379,6420,6353,6834,8027,10490,11958,11764,11684,10567,6873,10311,10489,11271,11157,11616,11992,12330,13248,14545,15368,14018,14646],"lifeExpectancy":[31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,31.2,25.9,31.2,31.2,31.3,31.4,31.5,31.6,31.7,31.8,31.9,32,32.1,32.2,32.3,32.4,32.5,32.6,32.7,32.8,32.9,33,33.1,33.2,33.6,34.1,34.6,35,35.5,35.9,36.4,36.9,37.3,37.8,38.7,40.4,42,43.5,45,46.5,47.9,49.3,50.6,51.9,53.2,54.5,55.8,57,58.2,59.4,60.5,61.4,62.3,63.1,64.1,64.4,64.7,63.8,64.3,66.3,66.8,67.2,67.7,67.4,67.7,67.9,68,68.2,68.5,68.5,68.5,57.4,69.3,69.2,67.7,68.9,68.9,68.8,68.5,68.5,68.5,68.7,68.9,69.1,69.3,69.4,66.7,65.5,66.6,63.3,64.3,66.6,68.1,68.3,70.6,70.9,71.3,71.7,72.1],"population":[1533407,1546444,1559481,1572518,1585555,1598592,1616278,1633963,1651649,1669335,1687021,1704706,1722392,1740078,1757763,1775449,1797160,1818871,1840582,1862293,1884004,1905715,1927426,1949137,1970848,1992559,2017139,2041719,2066299,2090879,2115459,2140039,2164619,2189199,2213779,2238359,2265834,2293308,2320783,2348257,2375732,2403206,2430681,2458155,2485630,2513104,2563529,2613953,2664378,2714802,2765227,2815652,2866076,2916501,2966925,3017350,3088496,3159642,3230788,3301934,3373081,3444227,3515373,3586519,3657665,3728811,3816733,3904654,3992576,4080498,4168420,4256341,4344263,4432185,4520106,4608028,4719144,4830261,4941377,5052493,5163610,5274726,5385842,5496958,5608075,5719191,5901507,6065012,6216130,6360435,6502655,6646641,6795399,6951160,7115509,7289759,7475354,7674220,7888914,8122200,8375791,8651167,8947399,9260685,9585576,9917982,10255904,10599846,10951169,11312304,11684585,12068195,12460997,12859226,13257910,13653358,14046273,14437661,14824876,15204746,15576396,15937864,16293719,16657708,17048167,17478455,17952909,18468521,19021967,19606895,20217759,20855408,21519356,22200835,22888600,23574751,24258794,24943793,25630426,26320530,27017712,27716983,28423538,29163327,29970634,30868156,31867758,32957622,34107366,35273293,36423395]},{"name":"Ireland","region":"Europe & Central Asia","income":[2755,2794,2834,2875,2916,2958,2988,3019,3050,3081,3113,3145,3177,3210,3243,3276,3309,3343,3378,3412,3447,3483,3518,3555,3591,3628,3665,3703,3741,3779,3818,3857,3897,3937,3977,4018,4059,4101,4143,4185,4228,4272,4316,4360,4405,4450,4499,4549,4599,4559,4519,4479,4440,4402,4363,4325,4295,4418,4389,4391,4409,4417,4569,4725,4886,5025,5166,5027,4891,5045,5203,5367,5210,5390,5401,5412,5423,5434,5444,5455,5407,5476,5559,5818,6142,6241,6417,6607,6808,6905,7147,7116,7159,7089,7409,7869,8297,8544,8899,9215,9350,9416,9933,10722,11331,11551,11850,12440,12834,13176,13703,13691,14631,15499,15734,16078,16425,16640,16502,17116,17606,17546,18385,19420,20665,22468,22770,23371,23881,25156,27439,29695,32568,34985,38122,41198,42686,44423,44998,46205,47775,49048,50001,47713,44222,43860,44913,44673,44640,46633,47758],"lifeExpectancy":[39.9,40.1,40.4,40.7,40.9,41.2,41.5,41.7,42,42.3,42.5,42.8,43.1,43.3,43.6,43.9,44.1,44.4,44.6,44.9,45.2,45.4,45.7,46,46.2,46.5,46.8,47,47.3,47.5,47.8,48.1,48.3,48.6,48.9,49.1,49.4,49.8,50.3,50.7,51.2,51.6,52,52.5,52.9,53.4,53.8,54.1,54.3,54.6,54.8,55.1,55.3,49.7,55.8,56.1,56.3,56.6,56.9,57.1,57.4,57.6,57.8,57.9,58,58.2,58.3,58.5,58.6,58.7,58.9,59,59.2,59.5,59.7,59.9,60.1,60.4,60.7,61,61.3,61.6,62.6,63.7,64.7,65.8,65,67.4,68.2,68.3,68.3,69.2,69.3,69.6,69.7,70.5,69.9,70.3,70.5,70.8,71,70.5,71.5,71.2,71.2,71.2,71.3,71.2,71.2,71.4,71.7,72.1,72.1,72,72.1,72.4,72.7,72.9,73.1,73.4,73.7,74,74.3,74.4,74.6,74.8,75.1,75.3,75.5,75.7,75.8,76,76.1,76.2,76.4,76.7,77.1,77.6,78.1,78.5,78.9,79.2,79.4,79.4,79.6,79.9,80.2,80.4,80.4,80.4,80.4],"population":[4024835,3994966,3965098,3935229,3905361,3875492,3852106,3828720,3805335,3781949,3758563,3735177,3711791,3688406,3665020,3641634,3612411,3583188,3553965,3524742,3495519,3466296,3437073,3407850,3378627,3349404,3330847,3312290,3293734,3275177,3256620,3238063,3219506,3200950,3182393,3163836,3156785,3149733,3142682,3135630,3128579,3121528,3114476,3107425,3100373,3093322,3091187,3089052,3086916,3084781,3082646,3080511,3078376,3076240,3074105,3071970,3055493,3039015,3022538,3006060,2989583,2973106,2956628,2940151,2923673,2907196,2910104,2913012,2915921,2918829,2921737,2924645,2927553,2930462,2933370,2936278,2933960,2931641,2929323,2927004,2924686,2922367,2920049,2917730,2915412,2913093,2921278,2924222,2921360,2912747,2899055,2881612,2862366,2843755,2828515,2819059,2816832,2821742,2831911,2844373,2857104,2869311,2882095,2897541,2918626,2947339,2984044,3027538,3076273,3128000,3180805,3234153,3287620,3339499,3387822,3431078,3468884,3501213,3527472,3547157,3560225,3566327,3566416,3563438,3561331,3563106,3570140,3582342,3599451,3620616,3645333,3673553,3706032,3743948,3788816,3841574,3901688,3968213,4040986,4119773,4203700,4293942,4388612,4480145,4558603,4617334,4652714,4667868,4671263,4675164,4688465]},{"name":"Israel","region":"Middle East & North Africa","income":[888,888,888,888,889,889,894,899,904,909,914,919,924,929,934,940,945,950,956,961,966,972,977,983,988,994,999,1005,1010,1016,1022,1028,1033,1039,1045,1051,1057,1063,1069,1074,1081,1087,1093,1099,1105,1111,1117,1124,1130,1077,1026,978,932,965,998,1032,1067,1102,1049,1316,1405,1193,1316,1434,1641,1961,2218,2531,3007,3351,3195,2642,2330,2131,2045,2064,2334,2765,2873,2947,3031,3304,3448,3612,3782,3961,4435,4247,4075,4718,5167,5382,5557,5712,6249,6464,6915,7279,7719,8152,8630,8504,8535,9634,10562,11062,11878,12903,13110,13606,13751,13626,13324,13656,14159,14768,15245,15265,15501,15310,15542,16015,16871,16906,16743,17152,17394,17749,18244,19010,22550,23240,23544,24009,24263,25739,25167,24650,24470,25256,25891,26908,28091,28562,28419,29509,30183,30518,30927,31180,31590],"lifeExpectancy":[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,26.5,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,34.1,36.3,38.4,40.5,42.7,44.8,47,49.1,51.3,53.4,55.5,57.7,59.8,62,64.1,64.4,65.1,65.7,66.2,66.7,67.2,67.6,68,68.3,68.6,68.9,69.2,69.5,69.8,70,70.3,70.5,70.7,70.9,71.1,71.4,71.5,71.1,71.6,71.8,72.3,72.7,73,73.4,73.8,74.1,74.3,74.4,74.6,74.9,75.2,75.5,75.8,76.2,76.4,76.5,76.6,76.9,77.2,77.5,77.8,78.1,78.3,78.6,78.8,78.9,79.1,79.4,79.7,80,80.2,80.6,80.9,81.2,81.5,81.8,82.1,82.2,82.3,82.4],"population":[240882,243230,245578,247926,250274,252622,255504,258386,261268,264150,267032,269913,272795,275677,278559,281441,284942,288442,291943,295444,298945,302445,305946,309447,312947,316448,320712,324975,329239,333502,337766,342030,346293,350557,354820,359084,364503,369921,375340,380758,386177,391596,397014,402433,407851,413270,415018,416765,418513,420261,422009,423756,425504,427252,428999,430747,444162,457578,470993,484408,497824,511239,524654,538069,551485,564900,596114,627329,658543,689757,720972,752186,783400,814614,845829,877043,915136,953229,991321,1029414,1067507,1105600,1143693,1181785,1219878,1257971,1354097,1451493,1546239,1635786,1718955,1796009,1868581,1939449,2012158,2089891,2174271,2264304,2355929,2443297,2522530,2591594,2652697,2711303,2775162,2849623,2936668,3033919,3137029,3239561,3336760,3427662,3513516,3594470,3671264,3744667,3815270,3883547,3950241,4016229,4082781,4148764,4215756,4290860,4383341,4499161,4641600,4806983,4985652,5163901,5331622,5486219,5630066,5764197,5891263,6013711,6129980,6240215,6350762,6470045,6603677,6754836,6920762,7093808,7262964,7420368,7563334,7694507,7817818,7939483,8064036]},{"name":"Italy","region":"Europe & Central Asia","income":[2598,2419,2441,2456,2521,2643,2629,2587,2587,2767,2710,2610,2646,2783,2776,2849,2928,2993,3030,2937,3024,3168,3212,3176,3061,3141,3221,3200,3279,3294,3331,3367,3389,3404,3448,3528,3593,3673,3768,3884,4007,4116,4247,4305,4378,4386,4421,4557,4720,5135,5152,5723,6091,6694,5796,5181,5218,5431,5435,5363,5580,5548,5551,5839,5967,5608,5633,5816,5741,5760,6186,6300,6530,6519,6875,6619,6434,6403,6014,5087,3957,4940,5610,5906,6050,6381,6736,7023,7421,7710,8117,8420,8816,9182,9686,10276,10973,11555,12094,12343,12599,13279,13997,14929,15735,16450,16680,17160,18390,19085,18469,19699,20050,20882,22146,22861,23113,23385,23664,24842,25646,26242,27304,28879,30152,30746,31198,31437,31149,31813,32731,33143,33733,34269,34798,36073,36692,36729,36622,36962,37130,37761,38125,37475,35260,35753,35901,34813,33827,33078,33297],"lifeExpectancy":[29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,31.6,31.8,31.3,33.6,34.9,34.3,34,32.7,34.2,34.3,35.2,36.6,36.8,35.1,36,36.9,39,38.5,38.5,38.8,39.8,39.9,39.6,40.7,43.3,42.3,43.7,41.7,43.5,43,43.1,44.4,43.9,45.1,45.5,43.2,44.7,46.8,44.8,49,48.5,49.9,42.3,39.3,37.7,25.6,42.1,45.5,49.2,50,51.4,51.5,51.3,51,52.6,52.7,52.3,55.2,54.8,54.8,56.3,56.8,56.2,56.7,55.5,56.1,57.6,56.9,54.6,52.4,49.2,52.3,54.8,58.9,61.1,63.4,64.1,65.7,65.3,65.9,66.5,67.9,68.2,67.6,67.8,68.8,69.3,69.2,69.8,69.2,69.3,70.3,70.2,71,71,70.8,70.8,71.6,71.9,72,72.2,72.6,72.9,73.2,73.6,73.8,74,74.2,74.5,74.9,75,75.4,75.7,76,76.3,76.6,76.8,77,77,77.3,77.6,77.8,78,78.3,78.7,79,79.3,79.6,79.8,80,80.3,80.8,81.2,81.2,81.3,81.4,81.6,81.9,82,82.1,82.1,82.1,82.1],"population":[26986620,27158362,27330105,27501848,27673591,27845334,28022954,28200574,28378193,28555813,28733433,28911053,29088673,29266292,29443912,29621532,29825891,30030251,30234610,30438969,30643329,30847688,31052047,31256406,31460766,31665125,31872246,32079367,32286488,32493609,32700730,32907851,33114972,33322093,33529214,33736335,34015603,34294871,34574140,34853408,35132676,35411944,35691212,35970481,36249749,36529017,36618337,36707658,36796978,36886298,36975619,37064939,37154259,37243579,37332900,37422220,37757104,38091988,38426873,38761757,39096641,39431525,39766409,40101294,40436178,40771062,41122436,41473809,41825183,42176556,42527930,42879304,43230677,43582051,43933424,44284798,44516178,44747559,44978939,45210320,45441700,45673080,45904461,46135841,46367222,46598602,47014137,47398599,47748689,48064766,48350847,48614865,48868412,49125959,49403558,49714962,50067464,50458277,50872976,51289904,51693136,52076758,52444751,52802703,53160056,53522670,53891946,54262086,54623207,54961926,55268549,55539118,55775934,55983298,56168376,56336446,56489623,56626403,56744400,56839859,56910888,56956635,56980621,56990645,56997093,57007577,57029614,57062760,57097411,57119163,57120136,57091906,57044614,57010940,57035249,57147081,57359179,57655677,58002003,58348332,58657355,58918471,59138599,59319234,59467196,59588007,59678993,59737717,59771094,59788667,59797685]},{"name":"Jamaica","region":"America","income":[906,905,905,904,904,903,906,909,911,914,917,920,923,926,929,932,935,937,940,943,946,949,952,955,958,961,964,967,970,973,976,979,982,986,989,992,995,998,1001,1004,1007,1010,1014,1017,1020,1023,1032,1041,1050,1076,1103,1130,1158,1186,1215,1245,1277,1309,1343,1376,1410,1445,1481,1517,1554,1591,1629,1667,1706,1746,1787,1828,1870,1912,1918,1923,1928,1933,2297,2597,2937,3321,3052,2928,2808,2693,2872,3064,3449,3795,4132,4483,5057,5041,5214,5447,5549,5591,5663,5965,6304,6424,6522,6734,7132,7880,7769,7862,8398,7929,7782,7196,6952,6912,6688,6243,6310,6268,6375,6288,5969,6041,6481,6641,7056,7391,7697,7792,8463,8514,8644,8531,8354,8086,8115,8139,8197,8349,8500,8651,8803,8954,9047,8951,8526,8370,8485,8521,8607,8462,8606],"lifeExpectancy":[34.2,34.2,34.2,34.2,34.2,34.2,34.2,34.2,34.2,34.2,34.2,34.2,34.2,34.2,34.2,34.2,34.2,40.1,38.1,37.2,37.8,36.9,35.5,38.6,37.6,34.3,37.3,39.2,38.6,39,37.4,37.6,37,39.1,37.6,37.8,38.1,40.4,34.6,33.6,37.6,32.4,29.5,36.8,37.3,36.7,37.9,34.4,37.5,38.2,37,35.6,31.7,26.4,36.6,35.4,30.7,37,38,38.6,38.9,40.7,39.4,41.6,43,45.3,42.7,44.2,41.6,44.4,44,44.3,47.1,45.8,48.4,47.5,49.3,49.7,50.2,49,49,51.3,50.3,51.6,53.8,56.5,57,58,58.9,59.8,60.6,61.4,62.2,62.9,63.5,64.1,64.7,65.2,65.7,66.1,66.5,66.9,67.2,67.5,67.8,68.1,68.4,68.9,69.3,69.7,70,70.2,70.5,71,71.6,72.1,72.3,72.4,72.4,72.4,72.6,72.9,73.2,73.6,74,74.4,74.6,74.6,74.4,74.2,73.9,73.5,73.1,72.8,72.6,72.7,72.9,73.4,73.9,74.3,74.7,75.2,75.4,75.5,75.6,75.5,75.6,75.5,75.5,75.5,75.5],"population":[474299,479728,485157,490586,496015,501444,507758,514072,520386,526700,533014,539327,545641,551955,558269,564583,571845,579106,586368,593629,600891,608153,615414,622676,629937,637199,645397,653595,661793,669991,678190,686388,694586,702784,710982,719180,728017,736854,745691,754528,763365,772202,781039,789876,798713,807550,812262,816973,821685,826397,831109,835820,840532,845244,849955,854667,870182,885697,901213,916728,932243,947758,963273,978789,994304,1009819,1029796,1049772,1069749,1089725,1109702,1129679,1149655,1169632,1189608,1209585,1228916,1248247,1267578,1286909,1306241,1325572,1344903,1364234,1383565,1402896,1436851,1468361,1496629,1521312,1542523,1560858,1577372,1593488,1610852,1630914,1654461,1681222,1709690,1737616,1763436,1786547,1807640,1827989,1849463,1873353,1900243,1929556,1960043,1989880,2017830,2043097,2066247,2089015,2113880,2142438,2175634,2212400,2249890,2284118,2312337,2333427,2348572,2360159,2371713,2385806,2403082,2422783,2444388,2466903,2489540,2512340,2535443,2558241,2579973,2600095,2618325,2634779,2649825,2664049,2677888,2691444,2704606,2717344,2729575,2741253,2752358,2762965,2773215,2783301,2793335]},{"name":"Japan","region":"East Asia & Pacific","income":[1190,1195,1199,1204,1208,1213,1218,1223,1229,1235,1320,1277,1304,1287,1352,1395,1338,1359,1346,1341,1378,1465,1519,1433,1483,1606,1516,1602,1592,1765,1768,1651,1665,1955,1786,1840,1879,1755,1850,1840,1788,2002,2042,2028,1997,1998,2069,2104,2100,2001,2148,2438,2481,2476,2701,2496,2723,2668,2623,2648,2705,2673,2657,2817,2851,2592,2561,2722,2932,2885,2903,3065,3154,3329,3818,3888,3877,3796,3792,3567,1802,1930,2055,2297,2392,2549,2728,3015,3168,3280,3464,3646,3843,3996,4288,4756,5276,5686,6106,6741,7048,7724,8454,9439,10548,14203,14673,15694,16731,16320,16632,17117,17705,18484,19346,19741,20413,20951,21446,22268,23554,24116,25018,26724,28077,29550,30437,30610,30587,30746,31224,31958,32391,31656,31535,32193,32230,32248,32721,33483,33916,34468,35183,34800,32880,34404,34316,34988,35614,35635,36162],"lifeExpectancy":[36.4,36.5,36.5,36.5,36.6,36.6,36.6,36.7,36.7,36.8,36.8,36.8,36.9,36.9,37,37,37.1,37.2,37.2,37.3,37.3,37.4,37.5,37.5,37.6,37.7,37.8,37.8,37.9,38,38.1,38.2,38.3,38.4,38.5,38.6,38.7,38.8,39,39.1,39.2,39.4,39.5,39.7,39.8,40,40.2,40.3,40.5,40.7,40.9,41.1,41.4,32.7,41.8,42,42.3,42.6,43.2,43.8,44.5,45.1,45.7,46,46.3,46.7,47,47.3,47.6,48,48.3,48.7,49,49,49,49.1,48.8,48.6,46.1,40.1,30.6,46.6,51.8,57,57.8,59.4,61.1,63.1,63.5,64.7,65.9,65.7,65.6,67.2,67.6,67.9,68.6,68.8,69.9,70.4,70.4,71.3,71.6,71.9,72.1,72.2,72.8,73.2,73.5,73.9,74.4,74.9,75.3,75.7,76.1,76.3,76.7,77,77.1,77.4,77.8,78.1,78.4,78.6,78.9,79.1,79.2,79.4,79.6,79.8,79.9,80.3,80.6,80.6,80.7,81.1,81.4,81.7,81.8,82,82.2,82.3,82.5,82.6,82.8,83,82.8,83.2,83.3,83.4,83.5],"population":[33907461,34053573,34199685,34345797,34491909,34638021,34856866,35075711,35294555,35513400,35732245,35951090,36169935,36388779,36607624,36826469,37131696,37436922,37742149,38047375,38352602,38657828,38963055,39268281,39573508,39878734,40294887,40711040,41127193,41543346,41959499,42375651,42791804,43207957,43624110,44040263,44567722,45095180,45622639,46150097,46677556,47205014,47732473,48259931,48787390,49314848,49937957,50561066,51184175,51807284,52430393,53053501,53676610,54299719,54922828,55545937,56377696,57209454,58041213,58872972,59704731,60536489,61368248,62200007,63031765,63863524,64748090,65632656,66517222,67401788,68286355,69170921,70055487,70940053,71824619,72709185,73658214,74607242,75556271,76505299,77454328,78403356,79352385,80301413,81250442,82199470,83794452,85174909,86378004,87438747,88389994,89262489,90084818,90883290,91681713,92500754,93357259,94263646,95227653,96253064,97341852,98494630,99711082,100988866,102323674,103707537,105142875,106616535,108085729,109495053,110804519,111992858,113067848,114054587,114993274,115912104,116821569,117708919,118552097,119318921,119988663,120551455,121021830,121432942,121831143,122249285,122702527,123180357,123658854,124101546,124483305,124794817,125048424,125266403,125481050,125714674,125974298,126249509,126523884,126773081,126978754,127136576,127250015,127317900,127340884,127319802,127252900,127139821,126984964,126794564,126573481]},{"name":"Jordan","region":"Middle East & North Africa","income":[1177,1181,1186,1191,1196,1201,1210,1220,1229,1239,1249,1259,1269,1279,1289,1299,1309,1319,1330,1340,1351,1362,1372,1383,1394,1405,1416,1427,1438,1450,1461,1473,1484,1496,1508,1520,1532,1544,1556,1568,1581,1593,1606,1618,1631,1644,1660,1676,1693,1720,1747,1775,1803,1831,1861,1890,1922,1955,1988,2022,2056,2090,2125,2160,2196,2232,2269,2306,2343,2381,2420,2459,2498,2538,2579,2620,2661,2703,2745,2788,2832,2876,2920,2965,3010,3056,3120,3180,3241,3301,3005,3961,3900,4119,4247,4330,4994,4876,4935,5556,5937,5855,5711,4994,5182,4478,4421,4401,4462,4681,4824,5781,5941,6939,7313,8357,8397,8657,8493,8884,8859,9318,9244,8844,7637,7057,6426,7242,7242,7312,7516,7443,7481,7503,7566,7695,7903,8160,8292,8788,9293,9818,10386,10897,11243,11256,11292,11340,11405,11496,11752],"lifeExpectancy":[31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,26.3,31.7,31.7,31.8,31.8,31.9,32,32,32.1,32.1,32.2,32.3,32.3,32.4,32.5,32.5,32.6,32.6,33.6,34.5,35.4,36.4,37.3,38.2,39.2,40.1,41,42,42.9,43.8,44.8,45.7,46.6,47.1,48.1,49,49.9,50.8,51.7,52.6,53.4,54.3,55.2,56,56.8,57.7,58.5,59.3,60.2,61,61.8,62.5,63.3,63.9,64.5,65,65.3,65.5,65.6,65.8,65.9,66.1,66.5,67.1,67.6,68.2,68.8,69.3,69.9,70.6,71.2,71.6,72,72.2,72.4,72.6,72.7,72.8,72.9,72.9,73,73,73.1,73.2,73.4,73.6,73.9,74.2,75.1,76.1,76.8,77.3,77.6,77.9,78,78.1,78.2,78.3],"population":[259361,260424,261488,262551,263615,264678,266066,267455,268843,270231,271620,273008,274396,275784,277173,278561,280182,281802,283423,285043,286664,288284,289905,291525,293146,294766,296488,298211,299933,301656,303378,305100,306823,308545,310268,311990,313807,315623,317440,319257,321074,322890,324707,326524,328340,330157,332305,334453,336601,338749,340898,343046,345194,347342,349490,351638,354142,356646,359150,361654,364158,366661,369165,371669,374173,376677,379359,382042,384724,387406,390089,392771,395453,398135,400818,403500,408036,412572,417108,421644,426181,430717,435253,439789,444325,448861,503116,542123,574887,608017,645724,689705,739263,791658,842721,888632,927850,962783,1000506,1050725,1119798,1210948,1320414,1438986,1553585,1654769,1739903,1811870,1873548,1929939,1985121,2039114,2091716,2146662,2208562,2280670,2365665,2462968,2568582,2676515,2782885,2884065,2982349,3086664,3209466,3358453,3538663,3743944,3957221,4154813,4320158,4448113,4545248,4621329,4691402,4767476,4850227,4938935,5042538,5171633,5332982,5530218,5759424,6010035,6266865,6517912,6760371,6994451,7214832,7416083,7594547]},{"name":"Kazakhstan","region":"Europe & Central Asia","income":[1561,1571,1581,1592,1602,1612,1623,1633,1644,1655,1665,1676,1687,1698,1709,1720,1731,1742,1754,1765,1776,1708,1997,1922,1787,1780,1631,1786,2024,2301,2130,2346,2307,2369,2514,2461,2522,2741,2553,2823,2499,2389,2296,2508,2604,2779,2568,2775,2915,2784,2866,2549,2238,1370,1182,1187,1087,1263,1455,1845,2307,2592,2702,2844,2879,3011,3040,2995,3110,3397,3887,4154,4502,4492,4677,4485,4404,4324,4245,4168,4092,4018,4467,5050,5519,5982,5910,6189,6353,6554,6994,7533,7558,7988,7763,8353,8680,8775,8450,9418,9836,10202,10546,11059,11115,11864,12067,12021,12914,13052,12857,13224,13301,13402,13115,12914,12816,12913,13100,13032,12922,13222,13166,13225,13242,12729,11258,10669,9751,8647,8079,8243,8517,8500,8813,9706,11035,12116,13198,14365,15619,17109,18419,18797,18527,19601,20772,21506,22470,23092,23468],"lifeExpectancy":[25.2,24.6,24.1,23.6,23.6,23.7,23.7,23.8,23.8,24,24.2,24.4,24.6,24.8,25,25.2,25.4,25.6,25.8,26,26.2,26.4,26.6,26.8,27,27.2,27.4,27.6,27.8,28,28.2,28.4,28.6,28.4,28.3,28.1,28.4,28.6,28.9,29.1,29.4,29.6,29.9,30.1,30.4,30.6,33.6,34,31.8,31.4,31,31,28,18,23.5,19,22.3,23.2,32.1,34.6,33.7,36.9,36.2,37.7,36.5,35.8,16,8,4,38.1,39.7,41.4,40.4,42.1,44.5,42,27,24,23,31,39,49,41,49,51.8,54.1,54.4,54.8,55.3,55.7,56.2,56.6,57.1,57.5,57.9,58.4,58.8,59.3,59.7,60.2,60.6,61,61.4,61.8,62.2,62.5,62.8,63,63.2,63.4,63.6,63.7,63.9,64.1,64.4,64.6,65,65.3,65.7,66.1,66.4,66.8,67,67.1,67,66.7,66.2,65.5,64.7,63.9,63.3,63.1,63,63.1,63.4,63.6,63.9,64.1,64.3,64.5,64.7,65.1,65.5,66.1,66.6,67.1,67.4,67.6,67.8,68,68.2],"population":[3086275,3114328,3142382,3170435,3198489,3226542,3257080,3287618,3318155,3348693,3379231,3409769,3440307,3470844,3501382,3531920,3565326,3598733,3632139,3665545,3698952,3732358,3765764,3799170,3832577,3865983,3902797,3939610,3976424,4013237,4050051,4086865,4123678,4160492,4197305,4234119,4274283,4314447,4354611,4394775,4434940,4475104,4515268,4555432,4595596,4635760,4679960,4724160,4768360,4812560,4856760,4900960,4945160,4989360,5033560,5077760,5126391,5175022,5223653,5272284,5320916,5369547,5418178,5466809,5515440,5564071,5617360,5670648,5723937,5777225,5830514,5883802,5937091,5990379,6043668,6096956,6157560,6218164,6278768,6339372,6399976,6460580,6521184,6581788,6642392,6702996,6831158,7041605,7315507,7636765,7992002,8370674,8764961,9169484,9580809,9995997,10411040,10819503,11211938,11577537,11909001,12200891,12455366,12682452,12897025,13109992,13325342,13540301,13751019,13950987,14136006,14304946,14461278,14610810,14761509,14918991,15082185,15248458,15419452,15596920,15780002,15972360,16167926,16344308,16471843,16530027,16514269,16433379,16297681,16123445,15925913,15704673,15465649,15238339,15059994,14956769,14942788,15010919,15139324,15294474,15451752,15603072,15755242,15915966,16098356,16310624,16554305,16821455,17099546,17371621,17625226]},{"name":"Kenya","region":"Sub-Saharan Africa","income":[1046,1049,1053,1056,1059,1063,1066,1069,1073,1076,1079,1083,1086,1090,1093,1096,1100,1103,1107,1110,1114,1117,1121,1124,1128,1131,1135,1138,1142,1145,1149,1153,1156,1160,1163,1167,1177,1187,1197,1207,1218,1228,1239,1249,1260,1271,1281,1292,1303,1314,1326,1337,1348,1360,1371,1383,1395,1407,1420,1432,1444,1457,1469,1482,1495,1508,1521,1534,1547,1561,1574,1588,1601,1615,1629,1643,1657,1672,1686,1700,1715,1730,1745,1760,1775,1790,2046,1877,1745,1838,1892,1934,1963,1913,1797,1887,1765,1852,1872,1922,1952,2114,2133,2064,2124,1948,2002,2029,2059,2082,2000,2004,2109,2214,2212,2249,2246,2242,2188,2144,2155,2226,2275,2332,2359,2376,2332,2239,2177,2168,2199,2227,2179,2194,2187,2143,2166,2120,2124,2173,2240,2319,2416,2358,2371,2503,2585,2631,2706,2776,2898],"lifeExpectancy":[25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,6,25.5,25.5,25.6,25.8,25.6,25.4,25.2,25,24.8,25.2,25.5,25.9,26.3,26.7,27,27.4,27.8,28.1,28.5,28.9,29.4,29.8,30.2,30.7,31.1,31.5,32,34.6,37.3,40,42.7,45.4,45.6,46.1,46.6,47.2,47.8,48.4,49.1,49.8,50.6,51.4,52.1,52.9,53.7,54.4,55.1,55.7,56.4,57.1,57.8,58.5,58.8,59.1,59.4,59.8,60.2,60.6,61,61.4,61.7,62,62.4,62.6,62.9,63,63.1,63.2,63.2,63.2,63.1,63,62.7,62.3,61.7,61.1,60.3,59.6,58.8,58.1,57.6,57.4,57.3,57.4,57.8,58.2,58.8,59.6,60.6,61.5,62.2,63.1,63.9,64.5,65.2,65.9,66.6],"population":[2590579,2591684,2592789,2593894,2595000,2596105,2597210,2598315,2599421,2600526,2601631,2602736,2603841,2604947,2606052,2607157,2608262,2609368,2610473,2611578,2612684,2613789,2614894,2615999,2617105,2618210,2619315,2620420,2621526,2622631,2623736,2624841,2625946,2627052,2628157,2629262,2630367,2631473,2632578,2633683,2634789,2635894,2636999,2638104,2639210,2640315,2641052,2641789,2642525,2643262,2643999,2644736,2645473,2646209,2646946,2647683,2690576,2733470,2776363,2819256,2862150,2905043,2947936,2990829,3033723,3076616,3186161,3295707,3405252,3514798,3624343,3733888,3843434,3952979,4062525,4172070,4362539,4553007,4743476,4933945,5124414,5314882,5505351,5695820,5886288,6076757,6240177,6412380,6593123,6782300,6979939,7186212,7401422,7626000,7860480,8105440,8361442,8628973,8908425,9200158,9504702,9822505,10154489,10502250,10867717,11252466,11657479,12083165,12529810,12997447,13486241,13995974,14527187,15081598,15661414,16267906,16901181,17559778,18241331,18942599,19660713,20393724,21140344,21899004,22668238,23446229,24234087,25029754,25824736,26608089,27373035,28116027,28842245,29564614,30301240,31065820,31863280,32691980,33551079,34437460,35349040,36286015,37250540,38244442,39269988,40328313,41419954,42542978,43692881,44863583,46050302]},{"name":"Kiribati","region":"East Asia & Pacific","income":[583,584,584,585,586,586,587,587,588,588,589,589,590,590,591,591,592,592,593,593,594,594,595,595,596,596,597,597,598,599,599,600,600,601,601,602,602,603,603,604,604,605,605,606,606,607,608,608,609,626,644,663,682,702,722,743,764,787,810,834,858,883,909,936,963,991,1021,1050,1081,1113,1145,1179,1213,1249,1285,1323,1362,1402,1443,1485,1528,1573,1619,1666,1715,1765,1816,1869,1924,1980,2038,2097,2158,2221,2286,2353,2422,2492,2565,2639,2716,2796,2877,2961,3047,3136,2998,3295,3913,5582,5764,4131,3850,3798,3275,1774,1669,1792,1574,1651,1531,1510,1421,1633,1455,1453,1365,1388,1418,1468,1434,1500,1559,1702,1676,1804,1785,1763,1801,1826,1792,1683,1782,1803,1765,1729,1750,1772,1796,1822,1824],"lifeExpectancy":[24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,8,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,24.9,26,27.1,28.2,29.3,30.4,31.5,32.6,29.9,26.9,30.9,26.9,37.7,39.1,40.3,41.4,42.5,42.8,43.2,43.7,44.1,44.6,45,45.5,45.9,46.4,46.8,47.3,47.7,48.2,48.6,49.1,49.5,50,50.4,50.9,51.3,51.8,52.2,52.9,53.8,54.5,55,55.4,55.8,56.1,56.2,56.2,56.2,56.3,56.3,56.4,56.6,56.8,57,57.3,57.6,57.8,57.9,58,58.2,58.4,58.7,58.9,59.1,59.3,59.5,59.7,60,60.2,60.3,60.6,60.8,61,61.1,61.3,61.5,61.7,61.8,62,62.2,62.4],"population":[21577,21719,21861,22003,22145,22287,22435,22584,22732,22881,23029,23177,23326,23474,23623,23771,23926,24081,24237,24392,24547,24702,24857,25013,25168,25323,25486,25648,25811,25973,26136,26298,26461,26623,26786,26948,27118,27287,27457,27627,27797,27966,28136,28306,28475,28645,28792,28938,29085,29231,29378,29525,29671,29818,29964,30111,30200,30289,30378,30467,30556,30644,30733,30822,30911,31000,31092,31183,31275,31366,31458,31550,31641,31733,31824,31916,32029,32143,32256,32370,32483,32596,32710,32823,32937,33050,33627,34283,35004,35778,36597,37454,38348,39276,40237,41234,42261,43312,44372,45424,46455,47461,48440,49389,50303,51181,52020,52823,53605,54382,55169,55980,56815,57664,58509,59340,60137,60918,61760,62768,64006,65519,67262,69104,70863,72411,73698,74773,75722,76674,77727,78907,80190,81556,82969,84406,85858,87343,88892,90545,92329,94257,96310,98437,100566,102648,104662,106620,108544,110470,112423]},{"name":"Kuwait","region":"Middle East & North Africa","income":[1399,1404,1410,1415,1420,1426,1446,1467,1489,1511,1533,1555,1578,1601,1624,1648,1672,1696,1721,1746,1771,1797,1823,1850,1877,1904,1932,1960,1989,2018,2047,2077,2107,2138,2169,2201,2233,2266,2299,2332,2366,2401,2436,2471,2507,2544,2581,2618,2657,2586,2517,2449,2384,2320,2337,2353,2368,2346,2324,2302,2281,2259,2238,2217,2034,1867,1713,1572,1443,1456,1469,1483,1496,1510,1524,1538,1552,1566,1581,1595,1610,1625,2091,2692,3466,4462,5745,7395,9521,10545,11679,12935,14325,15866,17572,19461,21554,23871,26437,29279,32427,35912,39772,44047,48781,54023,63583,62371,59388,115159,91796,92442,87987,81146,109863,108146,85525,67708,65168,63619,58143,42858,47974,40807,46363,37521,18820,50924,69683,75577,82268,82811,82227,80971,75316,75219,72922,72630,82466,88010,92665,94642,94915,91966,81025,75365,79102,81080,79395,83394,82633],"lifeExpectancy":[26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,21.6,26,26,26.1,26.1,26.2,26.2,26.3,26.4,26.4,26.5,26.5,26.6,26.7,26.7,26.8,26.9,26.9,27,27,27.1,27.2,29.5,31.9,34.2,36.6,38.9,41.3,43.7,46,48.4,50.7,53.1,53.7,54.8,55.9,57,58,59,59.9,60.8,61.7,62.5,63.3,64.1,64.8,65.5,66.1,66.7,67.3,67.9,68.4,68.9,69.3,69.6,69.7,69.8,69.9,70,70.2,70.8,71.5,72.1,72.5,72.7,73.2,73.9,74.6,75.4,76.1,76.7,77.4,77.7,78.4,78.4,78,77.3,76.7,76.4,76.4,76.6,77,77.5,78,78.3,78.5,78.4,78.2,78,78,78.2,78.6,79.1,79.7,80.1,80.3,80.5,80.7],"population":[81481,81574,81667,81760,81854,81947,82264,82581,82897,83214,83531,83848,84165,84481,84798,85115,85570,86025,86479,86934,87389,87844,88299,88753,89208,89663,90144,90625,91106,91587,92069,92550,93031,93512,93993,94474,94980,95485,95991,96496,97002,97508,98013,98519,99024,99530,100445,101361,102276,103191,104107,105022,105937,106852,107768,108683,109887,111090,112294,113497,114701,115905,117108,118312,119515,120719,122056,123393,124730,126067,127404,128740,130077,131414,132751,134088,135904,137720,139537,141353,143169,144985,146801,148618,150434,152250,163632,173622,181957,188811,194795,200988,208907,220405,237516,261962,294639,335161,381665,431366,482173,533521,585831,639170,693876,750184,807900,866747,926817,988267,1051187,1115463,1180939,1247597,1315428,1384342,1452383,1518855,1586205,1657920,1735320,1823201,1917950,2002645,2054443,2058832,2007110,1909096,1791511,1691891,1637031,1637906,1686256,1766247,1853152,1929470,1990022,2042215,2095993,2166344,2263604,2389498,2538591,2705290,2881243,3059473,3239181,3419581,3593689,3753121,3892115]},{"name":"Kyrgyz Republic","region":"Europe & Central Asia","income":[756,763,770,776,783,790,797,804,811,818,825,833,840,847,855,862,870,878,885,893,901,909,917,925,933,941,950,958,967,975,984,992,1001,1010,1019,1028,1037,1046,1055,1064,1074,1083,1093,1102,1112,1122,1132,1142,1152,1173,1195,1217,1239,1262,1286,1309,1334,1359,1385,1411,1438,1465,1492,1521,1549,1578,1608,1638,1669,1701,1733,1765,1798,1832,1867,1902,1937,1974,2011,2049,2087,2126,2166,2207,2248,2290,2335,2381,2428,2476,2524,2574,2624,2676,2728,2782,2836,2892,2948,3006,3065,3125,3186,3249,3312,3377,3443,3510,3579,3573,3567,3561,3555,3549,3542,3536,3530,3524,3518,3512,3506,3499,3493,3487,3481,3475,3150,2681,2266,1812,1696,1790,1939,1950,1991,2075,2164,2144,2271,2401,2370,2418,2599,2791,2837,2790,2921,2870,3121,3169,3245],"lifeExpectancy":[22.9,22.4,21.8,21.3,21.4,21.4,21.5,21.5,21.5,21.7,21.9,22.1,22.3,22.5,22.7,22.9,23.1,23.3,23.5,23.7,23.9,24.1,24.3,24.5,24.7,24.9,25.1,25.3,25.5,25.7,25.9,26.1,26.3,26.2,26,25.8,26.1,26.3,26.6,26.8,27.1,27.3,27.6,27.8,28.1,28.3,31.3,31.7,29.6,29.1,28.7,28.7,25.7,15.7,21.2,16.7,12,13.9,29.7,32.1,31.2,34.3,33.6,35.1,33.8,33.1,27.3,19.2,15.2,35.3,36.8,38.4,37.4,39,41.4,38.9,28.1,24,23,30.9,38.4,45.6,37.6,45.6,48.3,50.6,50.8,51.2,51.6,52,52.4,52.8,53.2,53.6,54.1,54.5,54.9,55.3,55.7,56.1,56.5,56.9,57.3,57.7,58,58.3,58.9,59.5,60.1,60.6,61,61.4,61.7,62.1,62.4,62.8,63.1,63.4,63.7,64.1,64.7,65.2,65.5,65.6,65.5,65.3,65.1,64.8,64.5,64.1,64.1,64.3,64.7,65.1,65.5,65.8,66.1,66.3,66.3,66.4,66.4,66.5,66.7,67.1,67.5,67.8,68.2,68.4,68.6,68.8,69],"population":[801950,809257,816564,823872,831179,838486,846442,854399,862355,870311,878268,886224,894180,902136,910093,918049,926755,935460,944166,952871,961577,970283,978988,987694,996399,1005105,1014701,1024296,1033892,1043487,1053083,1062678,1072274,1081869,1091465,1101060,1111531,1122002,1132474,1142945,1153416,1163887,1174358,1184830,1195301,1205772,1217285,1228798,1240312,1251825,1263338,1274851,1286364,1297878,1309391,1320904,1333545,1346186,1358827,1371468,1384110,1396751,1409392,1422033,1434674,1447315,1461166,1475017,1488867,1502718,1516569,1530420,1544271,1558121,1571972,1585823,1601241,1616658,1632076,1647494,1662912,1678329,1693747,1709165,1724582,1740000,1763226,1791952,1825123,1862068,1902499,1946540,1994697,2047784,2106792,2172500,2245062,2323642,2406263,2490244,2573494,2655349,2735838,2814423,2890720,2964499,3035474,3103694,3169771,3234611,3299001,3362961,3426646,3491143,3557793,3627499,3700312,3775764,3853514,3933002,4013498,4095873,4179484,4260325,4333114,4394502,4441780,4477038,4507565,4543602,4592135,4656894,4734761,4817608,4893658,4954850,4998286,5027919,5050867,5077515,5115470,5166644,5228937,5301038,5380310,5464567,5553827,5648230,5745698,5843617,5939962]},{"name":"Lao","region":"East Asia & Pacific","income":[965,967,970,972,974,977,979,981,984,986,988,991,993,995,998,1000,1003,1005,1007,1010,1012,1015,1017,1019,1022,1024,1027,1029,1032,1034,1037,1039,1042,1044,1047,1049,1051,1054,1057,1059,1062,1064,1067,1069,1072,1074,1077,1079,1082,1085,1087,1090,1092,1095,1098,1100,1101,1103,1104,1105,1106,1107,1108,1110,1111,1112,1113,1114,1115,1116,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1129,1130,1131,1132,1133,1134,1146,1158,1170,1181,1192,1201,1211,1221,1230,1239,1249,1259,1269,1280,1290,1301,1312,1323,1334,1346,1357,1369,1380,1390,1400,1435,1462,1486,1521,1553,1578,1589,1597,1605,1616,1618,1619,1620,1621,1622,1644,1686,1736,1828,1908,1993,2084,2123,2237,2327,2424,2533,2651,2780,2930,3126,3298,3483,3668,3901,4133,4381,4667,4925,5212],"lifeExpectancy":[31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,20.4,31.9,31.9,31.9,32,32,32,32.1,32.1,32.1,32.2,32.2,32.2,32.3,32.3,32.4,32.4,32.4,32.5,32.5,32.5,32.6,32.2,31.9,31.7,30.9,29.9,27.9,34.9,36.9,39.5,40.5,41.4,41.6,41.9,42.2,42.5,42.9,43.2,43.6,43.9,44.2,44.6,44.9,45.3,45.6,45.9,46.3,46.6,47,47.3,47.7,48,48.2,48.5,48.8,50.2,50.5,50.8,51,51.3,51.6,51.8,52.3,52.8,53.4,53.9,54.3,54.5,54.7,54.9,55.4,55.8,56.3,56.7,57.2,57.6,57.9,58.2,58.5,58.8,59.1,59.5,60,60.5,61.1,61.6,62.1,62.6,63.2,63.8,64.3,64.8,65.2,65.5,65.8,66.1,66.4],"population":[725984,733744,741504,749265,757025,764785,775233,785681,796130,806578,817026,827474,837922,848371,858819,869267,882237,895206,908176,921146,934116,947085,960055,973025,985994,998964,1014030,1029095,1044161,1059226,1074292,1089357,1104423,1119488,1134554,1149619,1166851,1184082,1201314,1218545,1235777,1253008,1270240,1287471,1304703,1321934,1332683,1343433,1354182,1364932,1375681,1386430,1397180,1407929,1418679,1429428,1437098,1444768,1452437,1460107,1467777,1475447,1483117,1490786,1498456,1506126,1514207,1522289,1530370,1538451,1546533,1554614,1562695,1570776,1578858,1586939,1596537,1606134,1615732,1625330,1634928,1644525,1654123,1663721,1673318,1682916,1723050,1763791,1805210,1847377,1890363,1934235,1979060,2024907,2071844,2119944,2169287,2219964,2272078,2325742,2381063,2437527,2495093,2554843,2618246,2686025,2759634,2837967,2916148,2987544,3047864,3094940,3131492,3164146,3202270,3252701,3317570,3395113,3483492,3579370,3680145,3785230,3895066,4009121,4126935,4247839,4371549,4496971,4621685,4742685,4857774,4966303,5068658,5165072,5256207,5342879,5424701,5502340,5579003,5658894,5745012,5838837,5939634,6045439,6153153,6260544,6366909,6473050,6579985,6689300,6802023]},{"name":"Latvia","region":"Europe & Central Asia","income":[1028,1035,1042,1049,1055,1062,1069,1076,1083,1090,1097,1104,1111,1118,1126,1133,1140,1148,1155,1163,1170,1125,1316,1266,1177,1173,1074,1176,1333,1516,1403,1546,1520,1561,1656,1621,1662,1806,1682,1860,1646,1574,1512,1652,1715,1831,1692,1828,1921,1834,1888,1679,1474,1180,1085,1411,1623,1867,1999,2033,2129,2187,2339,2477,2486,2440,2363,2335,2475,2738,2834,3005,3154,3291,3125,2954,2899,2845,2792,2740,2689,2639,2932,3313,3619,3921,3872,4053,4158,4288,4574,4924,4938,5217,5068,5450,5661,5720,5506,6134,6403,6639,6859,7190,7222,7706,7834,7801,8376,8712,9235,9629,9810,10003,10481,10844,11237,11434,11957,12572,12448,12959,13182,13770,14466,13383,11735,8057,7792,8081,8110,8408,9238,9912,10208,10859,11787,12782,14020,15437,17192,19367,21438,20977,18300,18148,19405,20597,21699,22460,23282],"lifeExpectancy":[34.7,35,35.3,35.7,36,36.3,36.7,37,37.3,37.6,38,38.3,38.6,39,39.3,39.6,40,40.3,40.6,41,41.3,41.6,42,42.3,42.6,43,43.3,43.6,44,44.3,44.6,45,45.3,45.6,45.9,46.2,46.5,46.8,47.1,47.5,47.8,48.1,48.4,48.7,49,49.3,49.6,50,50.3,49.5,40.3,40.1,39.5,35.5,40.1,47.7,57.2,55.6,56.7,53.7,52.9,55.9,54.2,54.9,52.9,56,56.8,56.6,58.6,55.6,58.1,57.6,56.7,60,59.3,52,31,43.2,42.1,23.5,38,55,48,58.7,59.2,59.8,60.5,61.9,63.2,64.4,65.5,66.4,67.3,68.1,69.5,70.4,70.6,70,70.4,71.6,71.3,71.3,70.9,70.5,70.3,70.3,70.3,70.2,70,69.8,69.5,69.5,69.4,69.3,69.1,69,69.1,69.2,69.2,69.5,70.1,70.8,71.2,71.2,70.7,70.1,69.2,67.9,66.5,65.8,66.4,67.9,69,69.6,69.9,70.1,70.2,70.4,70.8,71,70.9,70.9,71.3,72.3,73.2,74,74.7,75.1,75.3,75.5,75.7],"population":[895584,903831,912078,920324,928571,936818,945806,954794,963782,972770,981759,990747,999735,1008723,1017711,1026699,1036543,1046387,1056231,1066075,1075919,1085763,1095607,1105451,1115295,1125139,1136000,1146860,1157721,1168582,1179443,1190303,1201164,1212025,1222885,1233746,1245609,1257473,1269336,1281199,1293063,1304926,1316789,1328652,1340516,1352379,1365410,1378440,1391471,1404502,1417533,1430563,1443594,1456625,1469655,1482686,1496948,1511211,1525473,1539735,1553998,1568260,1582522,1596784,1611047,1625309,1640943,1656577,1672212,1687846,1703480,1719114,1734748,1750383,1766017,1781651,1798386,1815121,1831856,1848591,1865326,1882060,1898795,1915530,1932265,1949000,1954829,1965114,1979028,1995859,2015009,2035996,2058457,2082127,2106821,2132368,2158546,2185016,2211297,2236844,2261259,2284214,2305718,2326128,2346012,2365753,2385561,2405212,2424149,2441588,2457027,2470263,2481660,2491980,2502294,2513397,2524843,2536340,2548941,2564006,2582079,2604484,2629831,2652684,2665711,2663985,2645056,2611306,2568603,2525444,2487988,2458305,2434628,2414650,2394521,2371481,2345145,2316731,2286946,2256935,2227559,2199105,2171378,2144215,2117307,2090519,2063661,2037090,2011857,1989354,1970503]},{"name":"Lebanon","region":"Middle East & North Africa","income":[1495,1506,1516,1526,1537,1547,1563,1579,1594,1610,1627,1643,1659,1676,1693,1710,1727,1744,1762,1779,1797,1815,1834,1852,1870,1889,1908,1927,1947,1966,1986,2006,2026,2046,2067,2088,2108,2130,2151,2173,2194,2216,2239,2261,2284,2307,2342,2377,2414,2334,2258,2184,2112,2213,2319,2430,2612,2805,2934,3067,3203,3342,3484,3630,3779,3932,4088,4248,4412,4579,4751,4926,5106,5289,5477,5669,5865,6066,6271,6481,6696,6915,7140,7369,7603,7842,6946,7284,8274,9368,9980,9610,9638,8150,8710,8805,9242,9446,9370,9767,10545,11047,10320,11391,11422,11978,12871,14207,14597,14773,10242,4303,7403,7589,8585,9098,9165,5811,7026,10182,12739,12021,14077,10186,5891,7734,10497,10699,11136,11729,12254,12726,12347,12703,12475,12335,12356,12199,11998,12348,12258,12171,13122,14158,15393,16263,16431,16633,16623,16794,17050],"lifeExpectancy":[29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,24.6,29.7,29.7,29.8,29.8,29.9,29.9,30,30,30.1,30.1,30.2,30.2,30.3,30.3,30.4,30.4,30.5,30.5,30.6,30.6,30.7,30.7,33.8,36.8,39.8,42.9,45.9,48.9,52,55,58.1,61.1,61.4,61.9,62.4,62.8,63.3,63.7,64.1,64.5,64.9,65.3,65.7,66,66.3,66.7,67,67.3,67.6,68,68.3,68.6,68.8,69.1,69.4,69.7,62.2,47.5,62.3,62.4,62.6,62.8,63,55.5,64.7,64.9,65.3,65.6,64.4,64.6,68.2,67.9,73.1,73.3,73.6,73.9,74.3,74.7,75.1,75.5,75.9,76.2,76.5,76.7,76.9,77.1,77.3,76.8,77.2,77.6,77.8,78,76.2,78.2,78.3,78.4,78.5],"population":[452192,454942,457693,460444,463194,465945,468847,471748,474650,477551,480453,483355,486256,489158,492059,494961,498035,501109,504183,507257,510332,513406,516480,519554,522628,525702,528980,532258,535536,538814,542092,545369,548647,551925,555203,558481,561943,565405,568867,572329,575791,579252,582714,586176,589638,593100,603738,614376,625014,635652,646290,656927,667565,678203,688841,699479,716337,733195,750054,766912,783770,800628,817486,834345,851203,868061,888982,909903,930825,951746,972667,993588,1014509,1035431,1056352,1077273,1103008,1128742,1154477,1180211,1205946,1231680,1257415,1283149,1308884,1334618,1358220,1392725,1434845,1481960,1532111,1584034,1637126,1691366,1747163,1804927,1864605,1925276,1984982,2041212,2092354,2136640,2174850,2210965,2250609,2297403,2353569,2416743,2480426,2535503,2575693,2598362,2606224,2604875,2602573,2605294,2615753,2632281,2651295,2667229,2676593,2677290,2672182,2668593,2676615,2703019,2752473,2821868,2900862,2974647,3033406,3070974,3092684,3113960,3156661,3235380,3359875,3522842,3701464,3863271,3986865,4057041,4085426,4109389,4181742,4337156,4591698,4924257,5286990,5612096,5850743]},{"name":"Lesotho","region":"Sub-Saharan Africa","income":[408,408,408,408,409,409,409,409,410,410,410,410,410,411,411,411,411,412,412,412,412,413,413,413,413,413,414,414,414,414,415,415,415,415,416,416,416,416,416,417,417,417,417,418,418,418,418,419,419,419,419,420,420,420,420,420,421,421,421,421,421,421,421,422,422,422,422,422,422,422,423,423,423,423,423,423,423,423,423,424,424,424,424,424,424,424,442,448,458,476,483,493,503,513,518,546,541,613,669,711,708,707,767,748,741,742,659,768,949,984,882,1002,1149,1339,1162,1100,1081,1090,1079,1101,1113,1144,1124,1202,1248,1301,1326,1395,1413,1461,1466,1520,1563,1572,1563,1629,1684,1680,1747,1775,1810,1873,1947,2041,2091,2235,2301,2390,2473,2494,2598],"lifeExpectancy":[32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,12.7,32.8,32.8,32.9,33.1,33.2,33.4,33.5,33.7,33.8,33.9,34.1,34.2,34.4,34.5,34.7,34.8,35,35.1,35.2,35.4,35.5,35.7,35.8,36,36.1,36.2,36.4,38.2,40,41.7,43.5,45.3,45.7,46.5,47.2,47.9,48.7,49.4,50.2,50.9,51.6,52.3,53,53.5,54,54.4,54.7,55,55.3,55.5,55.8,56.2,56.5,56.7,57.1,57.5,57.8,58,58.4,58.7,59,59.2,59.4,59.7,59.9,60.2,60.4,60.7,60.8,61,61.1,61.2,61.2,61,60.5,59.6,58.5,57.2,55.6,53.6,51.6,49.8,48.3,47,45.8,44.8,44.1,44,44.4,45.2,46.3,47.4,48.3,48.2,48.3,48.4,48.5],"population":[388013,390913,393814,396715,399616,402517,405628,408738,411849,414960,418071,421181,424292,427403,430513,433624,436973,440323,443672,447022,450371,453720,457070,460419,463769,467118,470746,474374,478002,481630,485258,488886,492514,496142,499770,503398,507295,511193,515090,518988,522885,526782,530680,534577,538475,542372,546589,550806,555022,559239,563456,567673,571890,576106,580323,584540,589101,593662,598223,602784,607345,611906,616467,621028,625589,630150,635067,639984,644900,649817,654734,659651,664568,669484,674401,679318,684780,690243,695705,701168,706630,712092,717555,723017,728480,733942,744320,754849,765564,776514,787760,799377,811453,824086,837375,851412,866253,881910,898342,915473,933251,951736,970972,990869,1011308,1032240,1053524,1075281,1098033,1122484,1149090,1177975,1208836,1241159,1274216,1307403,1340694,1374044,1406818,1438248,1467856,1495101,1520244,1544580,1569936,1597534,1627900,1660360,1693459,1725118,1753824,1779201,1801695,1821632,1839631,1856225,1871489,1885488,1898778,1912042,1925844,1940345,1955656,1972194,1990413,2010586,2032950,2057331,2083061,2109197,2135022]},{"name":"Liberia","region":"Sub-Saharan Africa","income":[902,904,907,909,912,914,916,919,921,924,926,929,931,934,936,939,941,944,946,949,951,954,957,959,962,964,967,970,972,975,977,980,983,985,988,991,993,996,999,1001,1004,1007,1009,1012,1015,1017,1020,1023,1026,1028,1031,1034,1037,1039,1042,1045,1042,1039,1036,1033,1030,1027,1024,1032,1040,1048,1056,1064,1073,1081,1089,1098,1106,1114,1123,1131,1139,1148,1156,1165,1173,1181,1190,1198,1207,1215,1247,1247,1257,1287,1288,1294,1301,1295,1326,1323,1310,1282,1268,1287,1298,1348,1386,1399,1446,1486,1507,1507,1510,1505,1394,1408,1370,1397,1408,1268,1168,1138,1055,1015,971,947,959,988,1020,503,439,290,197,153,142,151,289,346,397,473,557,718,474,441,470,499,555,588,643,689,729,782,875,934,958],"lifeExpectancy":[31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,12,31.1,31.1,31.3,31.5,31.7,31.8,32,32.2,32.4,32.6,32.8,32.9,33.1,33.3,33.5,33.7,33.9,34.1,34.2,34.4,34.6,34.8,35,35.2,35.4,35.5,35.7,36.2,36.7,37.2,37.7,38.2,38.5,38.9,39.3,39.7,40.1,40.5,40.9,41.3,41.6,42.1,42.5,43,43.6,44.2,44.8,45.5,46.3,47,47.7,48.5,48.9,49.4,49.9,50.4,50.9,51.3,51.7,52.1,52.5,53,53.4,53.7,54.1,54.3,54.5,54.5,54.5,54.5,54.4,51.4,53.4,51.6,52.1,51.1,52.1,51.7,54.1,54.5,55.1,55.9,56.5,56.4,56.5,58.6,59.3,59.9,60.5,61,61.3,61.7,62.2,62.7,63.1,63.5,63.9],"population":[456428,460296,464163,468031,471898,475766,479953,484141,488328,492515,496703,500890,505077,509264,513452,517639,522192,526745,531298,535851,540404,544956,549509,554062,558615,563168,568150,573132,578114,583096,588078,593059,598041,603023,608005,612987,618391,623795,629199,634603,640007,645411,650815,656219,661623,667027,672858,678689,684521,690352,696183,702014,707845,713677,719508,725339,731542,737745,743948,750151,756354,762557,768760,774963,781166,787369,794103,800836,807570,814303,821037,827770,834503,841237,847971,854704,862236,869768,877301,884833,892365,899897,907429,914962,922494,930026,943241,957864,973896,991312,1010064,1030070,1051225,1073402,1096468,1120314,1144896,1170267,1196588,1224094,1252968,1283304,1315119,1348448,1383305,1419728,1457714,1497356,1538882,1582584,1628656,1676016,1724313,1775200,1830963,1892529,1961795,2036325,2107523,2163835,2197442,2206867,2196204,2170426,2137018,2102877,2066060,2028672,2006349,2019148,2079921,2197801,2365290,2558085,2741755,2891968,2998770,3070673,3124222,3184643,3269786,3384804,3522337,3672782,3821498,3957990,4079574,4190155,4293692,4396554,4503438]},{"name":"Libya","region":"Middle East & North Africa","income":[1828,1850,1873,1896,1919,1943,1967,1991,2016,2041,2066,2091,2117,2143,2170,2196,2223,2251,2279,2307,2335,2364,2393,2423,2453,2483,2513,2544,2576,2607,2640,2672,2705,2738,2772,2806,2841,2876,2911,2947,2984,3021,3058,3095,3134,3172,3211,3251,3291,3332,3373,3414,3456,3499,3542,3586,3631,3676,3723,3769,3817,3864,3913,3962,4011,4062,4113,4164,4216,4269,4322,4376,4431,4486,4542,4599,4656,4714,4773,4833,4893,4954,5015,5078,5141,5205,5671,5965,5936,5783,7113,8467,8625,9271,9764,12271,13113,16919,22194,30463,37902,43467,47050,60948,66299,67491,61707,52706,50828,41433,42903,51382,55104,56017,61213,59420,45426,44043,40280,35408,35825,30572,25010,23850,24458,26928,30431,28944,27251,27202,23363,23533,22977,22502,22235,22682,21933,21390,23808,24489,26967,28256,29553,29853,29182,30261,11358,23032,19760,14887,17261],"lifeExpectancy":[33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,25.3,33.1,33.1,33.3,33.5,33.7,33.9,34.1,34.2,34.4,34.6,34.8,35,35.2,35.4,35.6,35.8,36,36.2,36.3,36.5,36.7,36.6,35,34.3,34.4,34.8,37.3,39,40,41,42,43,42.9,42.6,42.7,43,43.6,44.5,45.6,47,48.5,50.2,52,53.9,55.6,57.3,58.9,60.4,61.8,63.1,64.4,65.6,66.3,67,67.5,68.1,68.6,69.1,69.5,70,70.4,70.7,70.9,71.2,71.4,71.7,71.9,72.1,71.6,72.5,72.7,73,73.3,73.6,73.9,74.2,74.4,74.2,74.7,74.7,74.6,74.6,74.7,74.7,74.8,74.9,75.1,75.2,75.2,75.3,75.5,75.6,67.7,75.3,75.6,75.9,76.2],"population":[686390,690637,694885,699132,703380,707627,712123,716619,721116,725612,730108,734604,739100,743597,748093,752589,757358,762128,766897,771667,776436,781205,785975,790744,795514,800283,805358,810433,815508,820583,825658,830732,835807,840882,845957,851032,856408,861783,867159,872534,877910,883286,888661,894037,899412,904788,910137,915486,920836,926185,931534,936883,942232,947582,952931,958280,963182,968083,972985,977886,982788,987690,992591,997493,1002394,1007296,1012448,1017600,1022753,1027905,1033057,1038209,1043361,1048514,1053666,1058818,1064274,1069731,1075187,1080644,1086100,1091556,1097013,1102469,1107926,1113382,1131590,1152277,1175887,1202737,1233025,1266813,1304045,1344561,1388133,1434576,1483856,1536196,1592111,1652294,1717255,1787080,1861661,1941056,2025282,2114264,2208125,2306668,2409101,2514373,2621730,2730373,2840378,2952877,3069540,3191304,3318560,3450078,3583183,3714264,3840635,3961363,4076888,4187631,4294547,4398419,4499210,4596811,4691934,4785488,4878202,4970391,5062160,5153764,5245414,5337264,5428303,5518341,5609166,5703224,5801543,5907149,6017794,6123022,6208680,6265697,6288652,6283403,6265987,6258984,6278438]},{"name":"Lithuania","region":"Europe & Central Asia","income":[1739,1751,1762,1773,1785,1796,1808,1820,1832,1843,1855,1867,1879,1892,1904,1916,1929,1941,1954,1966,1979,1903,2225,2141,1991,1983,1817,1989,2255,2564,2373,2614,2571,2639,2801,2741,2810,3054,2844,3145,2784,2662,2558,2794,2901,3096,2861,3092,3248,3102,3193,2839,2493,1995,1836,2387,2748,3163,3388,3449,3614,3717,3978,4215,4235,4159,4030,3986,4227,4681,4849,5145,5405,5644,5363,5073,4982,4893,4806,4720,4636,4553,5063,5726,6259,6786,6707,7025,7213,7444,7946,8561,8591,9083,8831,9503,9879,9989,9623,10728,11208,11628,12024,12613,12679,13539,13774,13725,14749,15047,14961,15533,15770,16039,15843,15747,15774,16042,16428,16497,16510,17052,17140,17378,17564,17041,16038,12629,10615,9599,10115,10606,11360,12200,12002,12484,13314,14268,15709,16913,18256,19923,22396,23223,20003,20758,22530,23711,24732,25708,26665],"lifeExpectancy":[28.9,28.9,28.9,28.9,28.9,28.9,29.3,29.8,30.2,30.6,31,31.5,31.9,32.3,32.7,33.2,33.6,34,34.4,34.9,35.3,35.7,36.2,36.6,37,37.4,37.9,38.3,38.7,39.1,39.6,40,40.4,40.8,41.3,41.7,42.1,42.4,42.8,43.1,43.5,43.8,44.2,44.5,44.9,45.2,45.6,45.9,46.3,45.7,39.5,39.4,39,34.5,39,43,49.1,49.5,49.8,50.2,50.5,51.1,51.6,52.1,52.7,53.2,53.7,54.3,54.8,55.3,55.9,56.4,56.9,57.4,55.2,51.2,12.2,46.2,44.6,27.2,40.2,52.7,45.7,58.2,60.7,63.8,64.1,64.8,65.4,66,66.6,67.3,67.9,68.5,68,70.6,70.8,69.8,70.9,72.3,72.1,72.2,72.3,72,71.6,71.5,71.7,71.6,71.5,71.4,71.3,71.2,71.1,70.9,70.9,70.9,70.7,70.7,70.6,70.7,71.2,72.1,72.4,72.3,72,71.5,70.7,69.8,69,68.5,68.9,70,71,71.7,72,72,71.9,72,72.1,71.9,71.5,71.1,71.2,72,73.1,73.9,74.5,74.8,75,75.2,75.4],"population":[1180609,1191485,1202361,1213237,1224114,1234990,1246845,1258699,1270554,1282408,1294263,1306117,1317972,1329826,1341681,1353535,1366519,1379503,1392487,1405471,1418455,1431439,1444423,1457407,1470391,1483375,1497700,1512026,1526351,1540677,1555002,1569327,1583653,1597978,1612304,1626629,1642278,1657926,1673575,1689223,1704872,1720521,1736169,1751818,1767466,1783115,1800297,1817479,1834661,1851843,1869025,1886207,1903389,1920571,1937753,1954935,1973726,1992516,2011307,2030097,2048888,2067679,2086469,2105260,2124050,2142841,2163438,2184035,2204631,2225228,2245825,2266422,2287019,2307615,2328212,2348809,2370668,2392528,2414387,2436246,2458106,2479965,2501824,2523683,2545543,2567402,2569877,2578522,2591999,2609264,2629571,2652489,2677885,2705875,2736748,2770737,2807763,2847221,2887887,2928182,2966947,3003571,3038216,3071465,3104292,3137373,3170887,3204466,3237597,3269546,3299819,3328245,3355098,3380879,3406311,3431933,3457365,3482390,3507839,3534804,3563741,3595362,3628532,3659613,3683711,3697393,3699352,3690788,3673906,3652120,3628079,3602164,3574014,3544668,3515218,3486373,3458923,3432663,3406030,3376761,3343268,3305529,3264304,3219802,3172436,3122835,3070593,3016496,2963810,2916798,2878405]},{"name":"Luxembourg","region":"Europe & Central Asia","income":[2480,2509,2539,2570,2600,2631,2662,2694,2726,2758,2791,2824,2858,2892,2926,2961,2996,3032,3068,3104,3141,3179,3216,3255,3293,3333,3372,3412,3453,3494,3535,3577,3620,3663,3707,3751,3795,3840,3886,3932,3979,4026,4074,4122,4171,4221,4271,4322,4373,4546,4725,4911,5104,5305,5514,5731,5963,6204,6455,6716,6988,7270,7564,7870,8188,8519,8863,9221,9594,9981,10384,10803,11240,11693,12165,12656,13167,13698,14250,14825,15423,16045,16692,17365,18065,18793,17504,18535,19082,18757,19501,20392,21516,21591,21558,22285,23005,23148,23269,25235,25359,25371,25163,26273,29081,29363,29877,31508,33777,34948,32351,32993,33506,34756,35697,35908,35680,36047,37142,39480,40621,44557,46150,50010,54556,56922,61019,61310,63033,64557,64568,64660,67646,71147,76102,81425,82071,83876,83849,86738,88944,91810,96245,95001,88284,91147,91469,89153,88850,88203,88314],"lifeExpectancy":[36.9,36.9,36.9,36.9,36.9,36.9,36.9,36.9,36.9,36.9,36.9,36.9,36.9,36.9,36.9,37.4,37.9,38.4,38.9,39.4,39.9,40.4,40.9,41.4,41.9,42.4,42.9,43.4,43.9,44.5,45,45.5,46,46.5,47,47.5,48,48.1,46.9,44.8,46.2,46.6,49,46.5,47.8,49.7,46.4,48.9,50.2,50.1,51.5,50.1,48,42.3,44.7,54.6,56.2,55.3,54.7,56.8,54.8,53.5,55.9,55.4,52.8,56.9,57.7,56.8,58.5,60,59.3,61.4,61.2,59.4,60.5,62.2,60.2,58.6,54.6,48.1,49.7,61.9,63.3,64.8,65.1,65.6,65.7,66.1,66.4,66.8,67.1,67.4,67.7,68,68.3,69.5,70,69.1,69.3,69.5,69.9,69.8,70.2,70.8,70.3,70.1,70.3,70.5,70.8,71.1,71.4,71.7,72.1,72.4,72.6,72.7,72.8,73,73.2,73.5,73.8,74.1,74.3,74.6,74.9,75.1,75.3,75.6,75.9,76.2,76.6,76.9,77.2,77.5,77.9,78.2,78.5,78.8,79.1,79.4,79.8,80.1,80.4,80.7,80.9,81,81.1,81.1,81.1,81.1,81.1],"population":[170500,171611,172722,173834,174945,176056,177237,178418,179599,180780,181961,183141,184322,185503,186684,187865,189125,190384,191644,192903,194163,195423,196682,197942,199201,200461,201811,203162,204512,205863,207213,208563,209914,211264,212615,213965,215403,216840,218278,219715,221153,222590,224028,225465,226903,228340,229877,231413,232950,234486,236023,237559,239096,240632,242169,243705,245344,246982,248621,250259,251898,253537,255175,256814,258452,260091,261840,263588,265337,267086,268835,270583,272332,274081,275829,277578,279420,281263,283105,284947,286790,288632,290474,292316,294159,296001,297588,299499,301505,303452,305265,306943,308562,310260,312216,314586,317442,320704,324127,327361,330164,332421,334231,335831,337565,339673,342224,345108,348173,351190,353984,356563,358961,361078,362791,364044,364779,365098,365301,365795,366884,368662,371079,374117,377708,381787,386355,391400,396807,402431,408148,414000,419974,425830,431264,436107,440198,443729,447321,451826,457847,465546,474705,485079,496257,507889,519981,532479,544885,556573,567110]},{"name":"Macedonia, FYR","region":"Europe & Central Asia","income":[937,941,945,949,952,956,973,989,1007,1024,1042,1060,1078,1097,1116,1136,1155,1176,1196,1217,1238,1259,1281,1304,1326,1349,1359,1368,1378,1387,1397,1406,1416,1426,1436,1446,1469,1493,1517,1541,1566,1592,1617,1643,1670,1697,1697,1697,1697,1692,1686,1680,1675,1669,1663,1658,1675,1701,1766,1867,1933,2040,1979,2125,2207,2134,2042,1828,1860,1904,1851,2064,2071,2207,2299,2280,2261,2243,2225,2206,2188,2170,2153,2535,2750,2542,2610,2377,2697,2813,2955,2865,3315,3425,3812,4017,4159,4197,4592,4987,5075,5300,5347,5417,5978,6221,6881,7057,7235,8100,8033,8207,8727,9133,9682,10094,10216,10229,10264,10471,10505,10885,10717,10524,10350,9563,8995,8454,7878,7779,7700,7759,7805,7983,8242,8543,8229,8314,8473,8848,9247,9704,10319,10872,10824,11179,11431,11370,11664,12096,12547],"lifeExpectancy":[36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,19.8,36.1,36.1,36.6,37.1,37.6,38.1,38.6,39.2,39.7,40.2,40.7,41.2,41.7,42.2,42.7,43.2,43.7,44.3,44.8,45.3,45.8,46.3,45.6,44.2,43,41.8,41.7,47.5,50,51,51.8,52.5,53,53.9,54.8,55.6,56.4,57.2,57.9,58.6,59.3,59.9,60.5,61.1,61.7,62.3,62.8,63.4,63.9,64.4,64.9,65.4,66,66.5,67.1,67.7,68.3,68.8,69.2,69.7,70.2,70.6,71,71.3,71.5,71.8,72,72.1,72.1,72,72.3,72.8,72.9,72.7,72.9,72.9,73,73.2,73.2,73.2,73.5,73.9,74.2,74.4,74.7,74.9,75.1,75.1,75.2,75.4,75.6,75.8,76.1,76.4,76.6,76.8,77],"population":[585290,590548,595806,601065,606323,611581,617301,623020,628740,634460,640180,645899,651619,657339,663058,668778,675029,681279,687530,693780,700031,706282,712532,718783,725033,731284,738162,745040,751918,758796,765674,772551,779429,786307,793185,800063,807560,815058,822555,830052,837550,845047,852544,860041,867539,875036,883199,891363,899526,907689,915853,924016,932179,940342,948506,956669,965466,974263,983060,991857,1000654,1009451,1018248,1027045,1035842,1044639,1054245,1063851,1073457,1083063,1092669,1102275,1111881,1121487,1131093,1140699,1152074,1163448,1174823,1186197,1197572,1208946,1220321,1231695,1243070,1254444,1290413,1320984,1347465,1370978,1392450,1412614,1432014,1451017,1469848,1488664,1507653,1527105,1547445,1569143,1592434,1617797,1644944,1672401,1698140,1720798,1739525,1754954,1768996,1784395,1803009,1825554,1851068,1877687,1902718,1924194,1941445,1954990,1965488,1974069,1981532,1988401,1994368,1998471,1999338,1996227,1988458,1977033,1964924,1956165,1953544,1958303,1969345,1984242,1999362,2012051,2021585,2028706,2033974,2038444,2042894,2047330,2051427,2055266,2058920,2062443,2065888,2069270,2072543,2075625,2078453]},{"name":"Madagascar","region":"Sub-Saharan Africa","income":[714,717,721,724,728,731,735,738,742,746,749,753,756,760,764,767,771,775,779,782,786,790,794,798,801,805,809,813,817,821,825,829,833,837,841,845,849,853,858,862,866,870,874,878,883,887,891,896,900,918,936,955,974,993,1013,1033,1055,1077,1099,1122,1145,1169,1193,1218,1244,1269,1296,1323,1350,1378,1407,1436,1466,1496,1527,1559,1591,1624,1658,1692,1727,1763,1799,1837,1875,1913,1956,1999,2041,2083,2126,2169,2211,2254,2295,2284,2288,2296,2230,2273,2218,2218,2293,2398,2436,2509,2551,2463,2346,2339,2314,2187,2184,2074,2218,2177,1936,1850,1814,1700,1691,1657,1646,1626,1645,1661,1510,1482,1468,1422,1402,1388,1394,1404,1424,1446,1487,1259,1342,1371,1393,1421,1468,1528,1426,1390,1372,1374,1369,1371,1400],"lifeExpectancy":[30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,12.7,30.5,30.5,30.6,30.7,30.9,31,31.1,31.2,31.3,31.4,31.6,31.7,31.8,31.9,32,32.2,32.3,32.4,32.5,32.6,32.8,32.9,33,33.1,33.2,33.3,33.5,34.6,35.6,36.7,37.8,38.9,39.3,39.9,40.5,41.1,41.7,42.3,42.9,43.5,44.1,44.7,45.3,45.9,46.5,47.1,47.7,48.3,48.9,49.5,50.1,50.7,51.1,51.5,51.8,52,52.2,52.4,52.8,53.1,53.6,53.8,54,54.2,54.3,54.4,54.5,54.7,55,55.5,56,56.4,56.7,56.9,57.1,57.4,57.9,58.4,59,59.5,60,60.5,60.9,61.2,61.5,61.8,62.3,62.7,63.1,63.4,63.6,63.8,63.9,64.1,64.3,64.5,64.7],"population":[2288215,2303650,2319085,2334521,2349956,2365391,2381829,2398267,2414705,2431143,2447582,2464020,2480458,2496896,2513334,2529772,2547344,2564916,2582488,2600060,2617632,2635203,2652775,2670347,2687919,2705491,2724378,2743264,2762151,2781037,2799924,2818810,2837697,2856583,2875470,2894356,2914503,2934650,2954798,2974945,2995092,3015239,3035386,3055534,3075681,3095828,3117507,3139185,3160864,3182543,3204222,3225900,3247579,3269258,3290936,3312615,3335990,3359364,3382739,3406113,3429488,3452862,3476237,3499611,3522986,3546360,3571384,3596408,3621432,3646456,3671480,3696503,3721527,3746551,3771575,3796599,3825295,3853990,3882686,3911381,3940077,3968772,3997468,4026163,4054859,4083554,4167827,4256120,4348239,4444061,4543542,4646714,4753685,4864631,4979779,5099371,5223621,5352674,5486593,5625401,5769219,5918060,6072270,6232704,6400454,6576301,6760352,6952383,7152391,7360271,7575757,7799642,8031589,8268902,8507958,8746516,8983494,9220693,9462343,9714342,9981113,10264368,10563491,10877757,11205548,11545782,11898267,12263899,12643864,13039754,13452526,13882646,14329239,14790245,15262817,15744811,16235767,16736029,17245275,17763367,18290394,18826129,19371031,19926798,20495706,21079532,21678867,22293720,22924557,23571713,24235390]},{"name":"Malawi","region":"Sub-Saharan Africa","income":[353,353,353,353,354,354,354,354,354,354,354,354,354,354,354,354,354,354,354,354,354,354,354,355,355,355,355,355,355,355,355,355,355,355,355,355,355,355,355,355,355,355,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,355,355,355,355,355,355,355,355,355,355,355,355,355,355,363,371,380,388,387,410,418,424,429,430,441,429,411,391,433,464,496,477,494,489,545,585,616,639,643,649,662,703,714,698,606,600,609,612,614,594,554,540,535,540,575,527,576,514,593,625,633,639,640,632,585,580,596,609,609,604,641,674,713,737,747,740,757,778,799],"lifeExpectancy":[30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,11.7,30.3,30.3,30.3,30.3,30.3,30.4,30.4,30.4,30.4,30.4,30.4,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.7,30.7,31.8,33,34.2,35.3,36.5,36.6,36.7,36.9,37.1,37.3,37.5,37.7,38,38.2,38.5,38.7,38.9,39.2,39.4,39.6,39.9,40.2,40.6,41,41.4,42.1,43,43.9,44.8,45.7,46.5,47.3,48.3,49.2,49.9,50.4,50.7,50.9,50.9,50.8,50.6,50.3,50.1,49.8,49.5,49.1,48.7,48.3,47.8,47.3,46.9,46.5,46.2,46.2,46.3,46.6,47,47.4,47.8,48.4,49.3,50.3,51.4,52.6,53.8,54.8,55.9,57.3,58.7,60.2],"population":[744013,744480,744948,745415,745883,746350,746818,747285,747753,748220,748688,749155,749623,750090,750558,751025,751493,751960,752428,752895,753363,753830,754298,754765,755233,755700,758147,760594,763041,765488,767936,770383,772830,775277,777724,780171,800067,819963,839858,859754,879650,899546,919442,939337,959233,979129,1003860,1028591,1053322,1078053,1102784,1127514,1152245,1176976,1201707,1226438,1263942,1301447,1338951,1376455,1413960,1451464,1488968,1526472,1563977,1601481,1637053,1672626,1708198,1743771,1779343,1814915,1850488,1886060,1921633,1957205,2056872,2156538,2256205,2355871,2455538,2555205,2654871,2754538,2854204,2953871,3008074,3065030,3124731,3187172,3252341,3320222,3390798,3464050,3539975,3618604,3700032,3784444,3872124,3963424,4058680,4158132,4262013,4370664,4484456,4603739,4728693,4859569,4996861,5141138,5292816,5454839,5627788,5807170,5986639,6163225,6327344,6483571,6659453,6892527,7205635,7617137,8108484,8620942,9073088,9408998,9604199,9682918,9697635,9725612,9822812,10006767,10260421,10563554,10882543,11193230,11491824,11788731,12090476,12407618,12747846,13112383,13498377,13904671,14329056,14769824,15226813,15700436,16190126,16695253,17215232]},{"name":"Malaysia","region":"East Asia & Pacific","income":[1096,1099,1101,1103,1105,1108,1113,1118,1124,1129,1134,1140,1145,1151,1156,1162,1167,1173,1178,1184,1190,1195,1201,1207,1213,1218,1224,1230,1236,1242,1248,1254,1260,1266,1272,1278,1284,1290,1296,1303,1309,1315,1321,1328,1334,1340,1349,1387,1522,1559,1591,1694,1761,1654,1979,1902,1849,1988,1924,1844,2098,2308,2201,2453,2981,2908,2762,2500,2585,2773,2465,2679,2379,2482,2943,2344,2277,3084,2828,2593,2377,2179,1997,2218,2872,2933,2715,2780,2726,2827,2776,2868,2776,2702,2811,2937,3061,3152,3220,3338,3491,3578,3552,3774,3902,4051,4252,4468,5000,5255,5182,5699,6028,6414,6785,7183,7517,7779,8065,8488,8198,8101,8333,8860,9476,10159,10832,11491,12309,13107,14035,15051,15749,14231,14748,15695,15443,15950,16550,17342,17929,18582,19394,19968,19320,20398,21096,21920,22589,23579,24320],"lifeExpectancy":[30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,19.6,30.6,30.6,30.6,30.7,30.7,30.7,30.7,30.8,30.8,30.8,30.8,30.9,32,33.2,34.4,35.5,36.7,37.9,39,40.2,41.4,42.5,42.3,36.7,39.1,38.9,38.7,45.7,48.7,51.2,52.7,54.2,54.6,55.3,55.9,56.6,57.3,57.9,58.6,59.2,59.9,60.5,61.1,61.7,62.2,62.8,63.3,63.8,64.3,64.8,65.2,65.7,66.2,66.7,67,67.2,67.5,67.7,67.7,68.4,68.8,69.1,69.5,69.9,70.2,70.3,70.5,70.9,71.3,71.6,71.9,72.1,72.4,72.6,72.8,72.8,72.8,73.1,73.2,73.4,73.4,73.8,74,74.1,74.1,74.2,74.4,74.6,74.6,74.5,74.3,74.3,74.4,74.5,74.7,74.9,75.1],"population":[747550,765925,784301,802676,821052,839427,869388,899349,929311,959272,989233,1019194,1049155,1079117,1109078,1139039,1184039,1229039,1274038,1319038,1364038,1409038,1454038,1499037,1544037,1589037,1650574,1712111,1773647,1835184,1896721,1958258,2019795,2081331,2142868,2204405,2271529,2338654,2405778,2472903,2540027,2607151,2674276,2741400,2808525,2875649,2940634,3005619,3070605,3135590,3200575,3265560,3330545,3395531,3460516,3525501,3611882,3698262,3784643,3871024,3957405,4043785,4130166,4216547,4302927,4389308,4490837,4592366,4693894,4795423,4896952,4998481,5100010,5201538,5303067,5404596,5475127,5545658,5616189,5686720,5757252,5827783,5898314,5968845,6039376,6109907,6261916,6433161,6618274,6813378,7016097,7225624,7442649,7669106,7907762,8160975,8429369,8710678,8999247,9287442,9569784,9844116,10111920,10375877,10640347,10908634,11182078,11460080,11741849,12025930,12311782,12599655,12891715,13191699,13504433,13833739,14180093,14543585,14926976,15333369,15764340,16221767,16703500,17202032,17707064,18211097,18709835,19204700,19700762,20205992,20725374,21260881,21808125,22358128,22898579,23420751,23920963,24401977,24869423,25332026,25796124,26263048,26730607,27197419,27661017,28119500,28572970,29021940,29465372,29901997,30331007]},{"name":"Maldives","region":"South Asia","income":[841,841,841,841,841,841,841,841,840,840,840,840,840,840,840,840,840,840,840,840,839,839,839,839,839,839,839,839,839,839,839,839,838,838,838,838,838,838,838,838,838,838,838,838,837,837,837,837,837,837,837,837,837,837,837,836,838,840,841,843,845,846,848,849,851,853,854,856,857,859,860,862,864,865,867,868,870,871,873,874,876,877,879,880,882,883,904,925,947,969,992,1016,1039,1064,1089,1114,1140,1167,1194,1222,1251,1280,1310,1341,1372,1404,1446,1449,1439,1486,1334,1309,1418,1584,1706,1968,2141,2020,2284,2817,3091,3279,3461,3648,3866,4363,4555,4699,4850,5037,5264,5602,6120,6564,6950,7134,7247,7540,8452,9511,8619,10157,11040,12029,11096,11674,12694,12637,13353,14095,14408],"lifeExpectancy":[32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,10.6,32.6,32.6,32.8,33,33.2,33.4,33.6,33.8,34,34.2,34.4,34.6,34.8,35,35.2,35.4,35.6,35.8,36,36.2,36.4,36.6,36.8,37,37.2,37.4,37.6,37.8,38,38.2,38.4,38.6,38.8,39.2,39.6,40.1,40.5,41.1,41.7,42.3,43,43.8,44.6,45.6,46.5,47.6,48.7,49.8,50.9,51.9,53,54,54.7,55.5,56.2,56.9,57.5,58,58.4,58.8,59.1,59.7,60.2,60.7,61.3,62,62.7,63.4,64,64.5,65.1,65.8,66.6,67.4,68.2,68.9,69.6,70.2,70.9,71.5,72.1,72.6,73.3,74,74.9,75.8,76.7,77.3,77.8,78.2,78.6,78.9,79.1,79.2,79.3,79.4,79.5],"population":[54254,54512,54770,55027,55285,55543,55812,56080,56349,56617,56886,57154,57423,57691,57960,58228,58509,58789,59070,59350,59631,59911,60192,60472,60753,61033,61328,61623,61918,62213,62508,62802,63097,63392,63687,63982,64278,64573,64869,65164,65460,65756,66051,66347,66642,66938,66770,66603,66435,66268,66100,65932,65765,65597,65430,65262,65992,66723,67453,68184,68914,69644,70375,71105,71836,72566,72820,73074,73328,73582,73837,74091,74345,74599,74853,75107,74968,74829,74689,74550,74411,74272,74133,73993,73854,73715,74224,75189,76483,78013,79704,81513,83423,85437,87580,89875,92327,94909,97556,100177,102723,105145,107488,109901,112591,115703,119315,123372,127717,132122,136434,140582,144645,148797,153285,158282,163834,169861,176258,182864,189551,196283,203059,209832,216553,223179,229686,236053,242252,248263,254070,259668,265067,270292,275385,280384,285298,290147,294996,299917,304968,310168,315515,321026,326713,332575,338618,344817,351111,357415,363657]},{"name":"Mali","region":"Sub-Saharan Africa","income":[614,614,614,614,614,615,615,615,615,615,616,616,616,616,616,617,617,617,617,618,618,618,618,618,619,619,619,619,619,620,620,620,620,620,621,621,621,621,621,622,622,622,622,623,623,623,623,623,624,624,624,624,624,625,625,625,626,627,628,628,629,630,631,632,632,633,634,635,636,636,637,638,639,640,640,641,642,643,644,644,645,646,647,648,648,649,660,672,684,695,707,719,732,744,757,764,754,744,779,799,795,811,821,834,813,844,855,880,839,801,891,990,1043,1003,1227,1068,1016,943,969,996,1001,1047,1048,1028,1113,1100,1095,1159,1106,1087,1126,1132,1178,1217,1265,1269,1382,1397,1456,1442,1483,1560,1576,1602,1622,1664,1658,1603,1589,1653,1684],"lifeExpectancy":[26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,10.2,26.4,26.4,26.5,26.7,26.8,26.9,27,27.2,27.3,27.4,27.6,27.7,27.8,27.9,28.1,28.2,28.3,28.5,28.6,28.7,28.8,29,29.1,29.2,29.4,29.5,29.6,29.7,29.9,30,30.1,30.3,30.5,31,31.3,31.7,32,32.3,32.6,32.8,33.1,33.3,33.6,33.9,34.3,34.7,35.3,35.9,36.5,37.2,38,38.8,39.1,39.5,39.9,40.3,40.9,41.5,42.2,42.9,43.6,44.2,44.8,45.4,46,46.5,46.9,47.4,47.7,48.1,48.5,48.8,49.1,49.4,49.7,49.7,49.9,50,50.1,50.3,50.7,51.1,51.6,52.2,52.9,53.5,54.2,54.8,55.3,55.8,56.2,56.5,56.8,57,57.2,57.4,57.6],"population":[2135114,2155186,2175259,2195332,2215404,2235477,2257398,2279318,2301239,2323159,2345080,2367000,2388921,2410841,2432762,2454682,2478735,2502789,2526842,2550896,2574949,2599002,2623056,2647109,2671163,2695216,2721800,2748385,2774969,2801553,2828138,2854722,2881306,2907890,2934475,2961059,2990154,3019249,3048344,3077439,3106534,3135628,3164723,3193818,3222913,3252008,3283810,3315611,3347413,3379214,3411016,3442817,3474618,3506420,3538222,3570023,3604405,3638786,3673168,3707549,3741931,3776313,3810694,3845076,3879457,3913839,3951532,3989225,4026917,4064610,4102303,4139996,4177689,4215381,4253074,4290767,4332533,4374299,4416064,4457830,4499596,4541362,4583128,4624893,4666659,4708425,4759039,4811198,4864754,4919547,4975401,5032124,5089507,5147344,5205448,5263730,5322267,5381369,5441611,5503748,5568485,5635859,5706198,5780834,5861411,5949043,6044532,6147459,6256192,6368351,6482276,6596817,6712545,6831530,6956779,7090125,7233877,7386669,7542377,7692537,7831891,7957390,8073178,8189984,8322726,8482075,8672581,8891141,9131449,9383608,9640643,9901045,10168000,10444822,10736542,11046926,11376094,11723017,12088867,12474857,12881384,13309942,13759226,14223403,14694565,15167286,15639115,16112333,16592097,17086022,17599694]},{"name":"Malta","region":"Europe & Central Asia","income":[1184,1195,1206,1217,1228,1239,1251,1262,1274,1286,1297,1309,1321,1333,1346,1358,1371,1383,1396,1409,1422,1435,1448,1461,1475,1488,1502,1516,1530,1544,1558,1573,1587,1602,1616,1631,1646,1661,1677,1692,1708,1723,1739,1755,1771,1788,1804,1821,1838,1855,1872,1889,1906,1924,1941,1959,1978,1996,2014,2033,2052,2071,2090,2110,2129,2149,2169,2189,2209,2230,2250,2271,2292,2313,2334,2356,2378,2400,2422,2444,2466,2489,2512,2535,2558,2582,2605,2629,2653,2678,2702,2727,2752,2777,2803,2828,2860,2767,2773,2830,3015,3325,3541,3885,4121,4631,4780,5080,5574,6092,7201,8275,9040,9767,10563,11200,11566,11912,11996,12324,12888,13253,13660,14683,15750,16596,17459,18100,18732,19616,20720,21373,22344,23347,24330,25841,24685,25191,25059,24766,25510,25983,27001,27872,26888,27906,28178,28271,28822,29508,30265],"lifeExpectancy":[28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,29.2,29.6,30.1,30.6,31.1,31.5,32,32.5,33,33.4,33.9,34.4,34.8,35.3,35.8,36.3,36.7,37.2,37.7,38.2,38.6,39.1,39.6,40,40.5,41,41.5,41.9,42.4,42.9,43.4,43.8,44.3,44.8,45.2,45.7,46.2,46.7,47.1,47.6,48.1,48.6,49,49.5,50,47.1,50.9,51.4,51.9,52.3,52.8,53.3,53.8,54.2,54.7,55.2,55.6,56.1,56.6,57.1,57.5,58,58.5,58.6,58.7,58.9,59,57.5,53,56,61,62.5,63.2,63.7,64.1,64.6,65.1,65.6,65.6,65.7,65.9,66,66.2,66.5,66.7,67,67.3,67.6,67.9,68.2,68.5,68.8,69.1,69.4,69.7,70,70.2,70.5,70.7,71,71.2,71.5,71.7,71.9,72.1,72.2,72.4,72.6,73,73.3,73.9,74.5,75.2,75.8,76.4,76.8,77.2,77.6,77.9,78.3,78.6,78.8,79,79.2,79.3,79.4,79.5,79.7,79.9,80.2,80.4,80.6,80.9,81.1,81.2,81.4,81.6,81.8,82,82.1,82.1,82.1,82.1],"population":[179885,181056,182228,183399,184571,185742,186987,188232,189477,190722,191967,193212,194457,195702,196947,198192,199520,200848,202176,203504,204832,206159,207487,208815,210143,211471,212895,214318,215742,217165,218589,220012,221435,222859,224283,225706,227221,228737,230252,231767,233283,234798,236313,237828,239344,240859,242478,244097,245716,247335,248955,250574,252193,253812,255431,257050,258776,260501,262227,263952,265678,267403,269129,270854,272580,274305,276146,277988,279829,281671,283512,285353,287195,289036,290878,292719,294647,296575,298502,300430,302358,304286,306214,308141,310069,311997,312725,313192,313505,313735,313914,314037,314063,313920,313520,312788,311702,310325,308815,307389,306212,305357,304805,304514,304401,304414,304546,304850,305398,306291,307597,309328,311455,313953,316781,319898,323298,326953,330761,334592,338348,341978,345490,348912,352304,355707,359113,362492,365838,369142,372391,375610,378789,381844,384663,387180,389323,391148,392870,394786,397094,399892,403076,406392,409475,412064,414075,415596,416747,417723,418670]},{"name":"Mauritania","region":"Sub-Saharan Africa","income":[657,661,664,667,670,673,677,680,683,687,690,693,697,700,703,707,710,714,717,721,724,727,731,735,738,742,745,749,752,756,760,763,767,771,775,778,782,786,790,794,797,801,805,809,813,817,821,825,829,833,838,842,847,851,856,861,870,880,890,900,910,920,930,940,950,960,971,981,992,1002,1013,1024,1035,1046,1057,1068,1079,1090,1102,1113,1125,1137,1148,1160,1172,1184,1224,1264,1304,1345,1388,1431,1474,1516,1561,1672,1941,1882,1752,2254,2542,2531,2592,2791,2717,2964,2957,2958,2739,2981,2753,2932,2852,2797,2879,2942,2998,2881,2962,2692,2710,2800,2822,2861,2899,2800,2772,2745,2824,2660,2838,2916,2717,2711,2834,2738,2709,2646,2721,2792,2955,3413,3412,3356,3233,3299,3357,3470,3579,3718,3877],"lifeExpectancy":[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,12.4,32,32,32.1,32.2,32.3,32.5,32.6,32.7,32.8,32.9,33,33.1,33.2,33.4,33.5,33.6,33.7,33.8,33.9,34,34.2,34.3,34.4,34.5,34.6,34.7,34.8,36,37.2,38.4,39.6,40.8,41.2,41.9,42.6,43.3,44.1,44.8,45.6,46.4,47.2,48,48.8,49.6,50.3,51.1,51.8,52.4,53,53.6,54.2,54.8,55,55.2,55.3,55.4,55,55.4,55.7,56,56.9,57.2,57.5,57.9,58.2,58.6,58.9,59.3,59.7,59.9,60.1,60.4,60.5,60.7,60.9,61,61.2,61.4,61.5,61.5,61.6,61.8,61.9,62.1,62.3,62.4,62.7,63,63.3,63.6,63.9,64.2,64.5,64.8,65.1,65.4,65.7],"population":[461589,463500,465411,467322,469234,471145,473132,475119,477105,479092,481079,483066,485053,487039,489026,491013,493083,495153,497223,499293,501363,503432,505502,507572,509642,511712,513876,516039,518203,520367,522531,524694,526858,529022,531185,533349,535600,537852,540103,542354,544606,546857,549108,551359,553611,555862,558215,560568,562921,565274,567628,569981,572334,574687,577040,579393,581854,584315,586775,589236,591697,594158,596619,599079,601540,604001,606566,609131,611697,614262,616827,619392,621957,624523,627088,629653,632737,635821,638904,641988,645072,648156,651240,654323,657407,660491,675594,691807,709098,727440,746804,767166,788504,810796,834024,858170,883223,909172,936014,963746,992368,1021880,1052285,1083586,1115790,1148908,1182945,1217912,1253839,1290755,1328687,1367640,1407621,1448664,1490811,1534085,1578585,1624310,1671080,1718641,1766855,1815692,1865356,1916240,1968870,2023665,2080782,2140250,2202201,2266745,2333966,2403779,2476188,2551429,2629806,2711421,2796502,2884672,2974686,3064882,3154087,3241762,3328285,3414552,3501927,3591400,3683221,3777067,3872684,3969625,4067564]},{"name":"Mauritius","region":"Sub-Saharan Africa","income":[1172,1177,1183,1189,1194,1200,1206,1212,1218,1224,1229,1235,1241,1247,1253,1259,1266,1272,1278,1284,1290,1296,1303,1309,1315,1322,1328,1335,1341,1348,1354,1361,1367,1374,1380,1387,1394,1401,1407,1414,1421,1428,1435,1442,1449,1456,1463,1470,1477,1495,1514,1532,1551,1571,1590,1610,1633,1657,1680,1705,1729,1754,1779,1805,1830,1857,1883,1910,1938,1965,1993,2022,2051,2080,2110,2140,2170,2201,2232,2264,2296,2329,2362,2395,2429,2464,2519,2512,2518,2579,2584,2596,2620,2621,2702,2800,3352,3288,3679,3334,3359,3168,3247,2973,3080,3023,3133,3408,3797,4155,4110,4720,4954,5061,5153,4560,4760,4965,4942,5132,5447,5944,6493,6883,7128,7568,7819,8219,8535,8764,9062,9471,9885,10375,10512,11349,11549,11711,12052,12665,12747,13188,13901,14615,15020,15599,16179,16651,17146,17731,18350],"lifeExpectancy":[28.4,29.4,4,13.6,26.5,39.3,36.9,35.5,28.8,32.5,37.6,34.8,32.6,35.1,30.3,34.1,32.6,28,27.4,31.6,29.1,33.3,28.1,31.8,28.4,28.2,35.4,28,23.2,33.3,26,22.2,32.5,30.4,27.2,26.3,23.9,28.8,23.9,30.4,23.4,23.7,28,23.6,26.1,28.9,29.7,25.1,27.8,30.5,28.5,32.6,30.7,29.5,12,31.2,23.9,28.4,34,34.8,38.7,37.3,37.5,34.2,31.7,27.5,24.5,29.7,35,36.7,35.8,35.9,33.4,32.3,34.1,36.8,36.7,32.9,36.3,35,26.6,32.5,38.1,41.2,44.3,47.5,48,49,50,51.1,52.2,53.4,54.6,55.7,56.9,58,59,59.8,60.6,61.1,61.5,61.8,62,62.1,62.1,62.2,62.7,62.7,62.9,63.3,63.5,63.8,64.1,64.6,65.1,65.5,66.1,66.7,67.2,67.6,67.8,68.1,68.5,68.8,69.2,69.5,69.7,69.8,69.9,69.9,70,70.1,70.3,70.6,70.8,71,71.2,71.4,71.6,71.8,72,72.1,72.1,72.1,72.2,72.4,72.7,73,73.3,73.6,73.9],"population":[305733,311077,316422,321767,327111,332456,334584,336713,338841,340970,343098,345226,347355,349483,351612,353740,355256,356771,358287,359802,361318,362834,364349,365865,367380,368896,369090,369284,369478,369672,369866,370059,370253,370447,370641,370835,370691,370548,370404,370261,370117,369973,369830,369686,369543,369399,369991,370583,371175,371767,372359,372950,373542,374134,374726,375318,376916,378513,380111,381708,383306,384903,386501,388098,389696,391293,393249,395205,397160,399116,401072,403028,404984,406939,408895,410851,419091,427332,435572,443812,452053,460293,468533,476773,485014,493254,506431,521190,537048,553623,570645,587949,605482,623275,641427,660023,679045,698307,717413,735860,753285,769556,784777,799139,812944,826447,839600,852397,865173,878355,892208,906926,922325,937820,952587,966036,978067,988890,998625,1007503,1015763,1023278,1030175,1037260,1045588,1055865,1068435,1082958,1098598,1114140,1128676,1141949,1154137,1165288,1175577,1185143,1193950,1201931,1209182,1215835,1222006,1227714,1232997,1238013,1242954,1247951,1253089,1258335,1263560,1268567,1273212]},{"name":"Mexico","region":"America","income":[1251,1248,1246,1243,1240,1237,1263,1289,1316,1343,1370,1399,1428,1457,1487,1518,1549,1581,1614,1647,1681,1716,1751,1787,1824,1862,1905,1948,1993,2039,2086,2120,2230,2326,2179,2164,2327,2136,2352,2368,2589,2532,2653,2621,2670,2665,2560,2541,2389,2395,2362,2546,2657,2762,2874,3059,3054,3081,3143,3046,3191,3337,3142,3115,2949,2721,2768,2311,2536,2667,2823,3004,3055,3056,3172,3165,3391,3492,3530,3725,3744,3892,3923,3981,4094,4392,4601,4647,4522,4840,5107,5305,5549,5678,5679,5970,6082,6181,6486,7045,7283,7559,7795,8183,8441,8757,8810,9253,9694,9960,10234,10391,10456,11118,11912,12716,13501,13126,12384,12546,12562,11923,11894,11817,12079,12479,12738,12925,13172,13516,12491,12979,13634,14033,14177,14704,14411,14243,14268,14700,14961,15516,15805,15826,14893,15460,15887,16320,16346,16496,16850],"lifeExpectancy":[26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,25.7,24.5,23.3,26.6,29.5,28.8,26.2,27,25,27.6,26.6,28.4,28.7,29.1,26.8,27.9,28,28.7,29.2,27.4,27.8,28.3,28.7,29.1,29.6,30,30.4,18.2,31.3,31.7,32.2,32.7,33.6,32.9,32.3,34.4,40.5,34.8,35.7,36.5,38.1,38.8,37.7,38.7,40.9,38.8,37.4,40,46.1,39.9,43.3,40.5,43.6,44,45,45.6,47.2,49.2,46.7,49.5,50.1,51.3,52.3,53.4,54.3,55.3,56.1,56.9,57.7,58.4,59,59.6,60.1,60.5,60.9,61.3,61.7,62.1,62.5,63,63.8,64.2,64.5,64.9,65.4,65.7,66,66.5,66.7,67,67.5,68.2,68.9,69.5,69.7,70.3,70.8,71.1,71.6,72.1,72.5,72.7,73,73.3,73.6,74,74.2,74.3,74.6,75.1,75.3,75.4,75.4,75.6,75.6,75.8,75.9,75.7,75.5,75.7,76.2,76,75.5,75,74.5],"population":[8885207,8975806,9066406,9157006,9247606,9338206,9451444,9564681,9677919,9791156,9904394,10017632,10130869,10244107,10357344,10470582,10610398,10750214,10890031,11029847,11169663,11309479,11449295,11589112,11728928,11868744,12048134,12227523,12406913,12586302,12765692,12945082,13124471,13303861,13483250,13662640,13807895,13953149,14098404,14243658,14388913,14534167,14679422,14824676,14969931,15115185,15110942,15106698,15102455,15098211,15093968,15089725,15085481,15081238,15076994,15072751,15302863,15532975,15763087,15993199,16223311,16453422,16683534,16913646,17143758,17373870,17706479,18039087,18371696,18704304,19036913,19369522,19702130,20034739,20367347,20699956,21431216,22162476,22893737,23624997,24356257,25087517,25818777,26550038,27281298,28012558,28836111,29711632,30634216,31599804,32605178,33647986,34726719,35840645,36989692,38174114,39394125,40649590,41939880,43264267,44623041,46010959,47429553,48893607,50423127,52029859,53719547,55480125,57283361,59090495,60872399,62620087,64337694,66025613,67688533,69330974,70950741,72547995,74133377,75721210,77322643,78939441,80571067,82223153,83901643,85609404,87347208,89110043,90887097,92663664,94426946,96181710,97925825,99632299,101266570,102808590,104239563,105578297,106888418,108257822,109747906,111382857,113139374,114972821,116815612,118617542,120365271,122070963,123740109,125385833,127017224]},{"name":"Micronesia, Fed. Sts.","region":"East Asia & Pacific","income":[539,539,540,540,540,541,541,542,542,542,543,543,543,544,544,544,545,545,545,546,546,546,547,547,547,548,548,548,549,549,549,550,550,550,551,551,551,552,552,552,553,553,553,554,554,554,555,555,555,567,578,589,601,613,625,638,651,664,677,691,705,720,734,749,764,780,796,812,828,845,862,880,898,916,935,954,973,993,1013,1033,1054,1076,1097,1120,1142,1165,1189,1213,1238,1263,1288,1314,1341,1368,1395,1424,1452,1482,1512,1542,1573,1605,1637,1670,1704,1738,1760,1774,2377,2735,2709,2667,2662,2726,2692,2417,2565,2418,2392,2229,2529,2663,2656,2756,2715,2763,2894,2933,3094,3016,3185,3063,2873,2966,3018,3167,3230,3256,3320,3220,3301,3312,3262,3197,3243,3337,3412,3428,3286,3475,3510],"lifeExpectancy":[26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,8.7,26.7,26.7,26.7,26.7,26.6,26.6,26.6,27.7,28.7,29.8,30.8,31.9,33,34,35.1,36.2,37.2,38.3,39.3,40.4,41.5,42.5,43.6,42.5,36.5,27.5,44.5,47.5,49.4,51,52.1,53.2,53.3,53.7,54.1,54.5,54.9,55.2,55.6,56,56.4,56.8,57.1,57.5,57.9,58.3,58.6,59,59.4,59.8,60.2,60.6,60.8,61,61.4,61.7,62.1,62.4,62.9,63.5,63.2,62.7,62.4,62.1,62,61.9,61.8,61.9,61.9,62,62.1,62.2,62.4,62.5,62.7,63,63.2,63.5,63.7,64,64.3,64.5,64.8,64.3,65.3,65.4,65.6,65.8,65.9,66.1,66.2,66.4,66.5,66.7,66.8,66.9,67],"population":[20640,20742,20844,20946,21048,21150,21257,21364,21470,21577,21684,21791,21898,22004,22111,22218,22330,22442,22555,22667,22779,22891,23003,23116,23228,23340,23458,23577,23695,23813,23932,24050,24168,24286,24405,24523,24647,24771,24895,25019,25143,25266,25390,25514,25638,25762,25894,26026,26159,26291,26423,26555,26687,26820,26952,27084,27227,27369,27512,27655,27798,27940,28083,28226,28368,28511,28661,28811,28962,29112,29262,29412,29562,29713,29863,30013,30212,30410,30609,30808,31007,31205,31404,31603,31801,32000,33400,34596,35694,36774,37896,39092,40372,41725,43123,44539,45956,47387,48875,50483,52238,54201,56324,58404,60167,61433,62107,62298,62289,62477,63146,64386,66110,68221,70550,72967,75462,78057,80678,83242,85689,87948,90024,92020,94091,96331,98800,101412,103937,106057,107556,108342,108506,108236,107808,107430,107170,106983,106816,106575,106198,105680,105080,104472,103961,103619,103476,103516,103718,104044,104460]},{"name":"Moldova","region":"Europe & Central Asia","income":[795,799,804,808,813,817,821,826,830,835,839,844,849,853,858,862,867,872,877,881,886,851,994,956,888,883,809,884,1001,1137,1052,1157,1137,1166,1236,1209,1238,1344,1250,1381,1221,1166,1120,1222,1267,1351,1247,1346,1413,1348,1386,1231,1080,661,569,571,522,605,696,880,1099,1232,1282,1346,1360,1419,1430,1406,1457,1589,1814,1935,2092,2084,2165,2072,2030,1989,1949,1910,1872,1834,2035,2296,2504,2708,2670,2791,2859,2943,3134,3369,3373,3558,3451,3706,3847,3885,3738,4162,4342,4499,4646,4868,4887,5212,5295,5270,5656,5765,5727,5941,6027,6124,6044,6002,6008,6104,6246,6266,6266,6466,6494,6578,6643,6440,5395,3822,3780,2620,2596,2466,2515,2353,2276,2329,2476,2676,2860,3080,3318,3487,3603,3890,3661,3925,4179,4151,4542,4754,4896],"lifeExpectancy":[33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,31.2,33.1,33.1,33.6,34,34.5,34.9,35.3,35.8,36.2,36.6,37.1,37.5,38,38.4,39.4,40.4,41.4,42.4,43.5,44.5,45.5,46.5,39.4,37.9,33.8,23.7,43.2,49.7,19.6,53.6,55,56.6,56.8,57.2,57.6,58,58.3,58.7,59,59.3,59.6,60,60.3,60.6,60.9,61.3,61.6,61.8,62.1,62.3,62.4,62.5,63,63.3,63.7,64,64.4,64.7,65,65.2,65.4,65.4,65.5,65.4,65.4,65.5,66,67,67.8,68.2,68.2,68,67.9,67.7,67.3,66.4,66,66.7,67.9,68.8,69.1,69.3,69.8,70.2,70.3,70.1,69.7,69.4,69.4,69.6,69.8,70.2,70.9,71.5,71.9,72.3,72.7],"population":[1077676,1087486,1097296,1107105,1116915,1126725,1137405,1148085,1158765,1169445,1180125,1190804,1201484,1212164,1222844,1233524,1245209,1256893,1268578,1280263,1291948,1303632,1315317,1327002,1338686,1350371,1363249,1376127,1389005,1401883,1414762,1427640,1440518,1453396,1466274,1479152,1493204,1507256,1521308,1535360,1549412,1563464,1577516,1591568,1605620,1619672,1635133,1650593,1666054,1681514,1696975,1712436,1727896,1743357,1758817,1774278,1791278,1808278,1825278,1842278,1859279,1876279,1893279,1910279,1927279,1944279,1962908,1981537,2000166,2018795,2037425,2056054,2074683,2093312,2111941,2130570,2151613,2172657,2193700,2214743,2235787,2256830,2277873,2298916,2319960,2341003,2381443,2432096,2491068,2556588,2627007,2700796,2776552,2852995,2928987,3003557,3075927,3145546,3212094,3275457,3335625,3392084,3444850,3495134,3544635,3594516,3645515,3697153,3747925,3795653,3838911,3876947,3910636,3942141,3974506,4009843,4048617,4089860,4132440,4174621,4214911,4253162,4289099,4320927,4346449,4364114,4373582,4375312,4369649,4357283,4339082,4314693,4284931,4253280,4224270,4201088,4185513,4176647,4171686,4166371,4157707,4144651,4128459,4111168,4095813,4084483,4077811,4074754,4073714,4072340,4068897]},{"name":"Mongolia","region":"East Asia & Pacific","income":[641,642,643,644,645,646,647,648,649,650,652,653,654,655,656,657,658,659,660,661,663,664,665,666,667,668,669,670,672,673,674,675,676,677,678,680,681,682,683,684,685,686,688,689,690,691,692,693,695,696,697,698,699,700,702,703,708,713,718,723,728,733,738,743,748,753,759,764,769,774,779,784,789,795,800,805,810,816,821,826,831,837,842,847,853,858,886,919,950,984,1018,1053,1091,1128,1167,1208,1249,1291,1337,1383,1431,1479,1532,1584,1637,1695,1731,1748,1854,1886,1949,1975,2121,2167,2211,2502,2223,2587,2911,3256,3188,3359,3573,3694,3609,5122,4606,4132,3966,4020,4244,4304,4435,4544,4643,4655,4748,4925,5216,5706,6047,6480,7046,7563,7357,7708,8905,9851,10833,11509,11819],"lifeExpectancy":[31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,20.4,31.8,31.8,31.8,31.8,31.7,31.7,31.7,31.7,31.7,31.6,31.6,31.6,31.6,31.5,31.5,31.5,31.5,31.5,31.4,31.4,31.4,31.4,31.4,31.3,31.3,31.3,31.3,33.4,35.5,37.6,39.8,41.9,42,42.2,42.6,43,43.6,44.2,45,45.8,46.7,47.5,48.4,49.3,50.1,50.8,51.5,52.1,52.7,53.3,53.8,54.3,54.9,55.6,56.2,56.8,57.4,57.8,58.1,58.4,58.7,59,59.4,59.7,60.1,60.5,60.8,61.3,61.7,61.8,61.9,61.8,61.7,61.5,61.3,61.1,60.9,60.8,60.8,61,61.2,61.4,61.6,61.8,61.9,62,62.2,62.5,62.9,63.2,63.5,63.8,64.1,64.4,64.7,65,65.3],"population":[662546,663571,664596,665621,666646,667671,668834,669996,671159,672321,673484,674646,675809,676971,678134,679296,680547,681797,683048,684299,685550,686800,688051,689302,690552,691803,693078,694354,695629,696905,698180,699455,700731,702006,703282,704557,705855,707153,708451,709749,711047,712344,713642,714940,716238,717536,718918,720300,721682,723064,724446,725827,727209,728591,729973,731355,732820,734285,735750,737215,738680,740144,741609,743074,744539,746004,747498,748993,750487,751981,753476,754970,756464,757958,759453,760947,762872,764798,766723,768648,770574,772499,774424,776349,778275,780200,793537,807926,823060,838787,855101,872162,890279,909885,931485,955514,982180,1011328,1042383,1074517,1107125,1139960,1173186,1207108,1242213,1278825,1317049,1356669,1397305,1438423,1479650,1520865,1562212,1603908,1646291,1689622,1733479,1777727,1823215,1871087,1921885,1976311,2033345,2089716,2141006,2184145,2217920,2243506,2263204,2280495,2298038,2316571,2335694,2355588,2376165,2397438,2419729,2443503,2469045,2496621,2526447,2558484,2592776,2629666,2669572,2712657,2759074,2808339,2859174,2909871,2959134]},{"name":"Montenegro","region":"Europe & Central Asia","income":[1437,1442,1448,1454,1459,1465,1490,1516,1543,1569,1597,1625,1653,1681,1711,1740,1771,1801,1833,1865,1897,1930,1964,1998,2032,2068,2082,2097,2111,2126,2140,2155,2170,2185,2200,2216,2251,2288,2325,2362,2400,2439,2478,2518,2559,2600,2601,2601,2601,2593,2584,2575,2566,2558,2549,2541,2571,2615,2718,2878,2984,3154,3065,3295,3427,3320,3181,2852,2906,2979,2900,3239,3254,3473,3622,3598,3573,3549,3525,3501,3477,3454,3430,4046,4394,4068,4182,3814,4334,4526,4761,4622,5356,5541,6176,6517,6756,6828,7479,8135,8288,8667,8756,8882,9816,10228,11328,11634,11943,13388,13294,13601,14481,15175,16108,16814,17041,17085,17165,17534,17613,18274,18015,17714,17442,16136,14269,10808,6780,6788,7635,9559,9978,10482,9506,9803,9871,10019,10228,10659,11090,12025,13288,14183,13352,13656,14082,13712,14156,14358,14833],"lifeExpectancy":[35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,35.4,19.4,35.4,35.4,36.2,37,37.8,38.6,39.4,40.3,41.1,41.9,42.7,43.5,44.3,45.1,45.9,46.7,47.5,48.3,49.2,50,50.8,51.6,40.8,37.8,36.7,35.1,36.9,46.4,56.4,57.6,58.9,59.7,59.8,60.1,60.4,60.8,61.3,61.9,62.4,63.1,63.8,64.5,65.2,65.9,66.5,67.1,67.7,68.3,68.9,69.5,70.1,70.7,70.9,71.1,71.3,71.6,71.8,72,72.3,72.5,72.7,73,73.1,73,73,73.1,73.1,73.2,73.3,73.5,73.6,73.8,73.9,73.9,73.7,73.5,73.2,72.7,72.3,72.2,72.2,72,72.6,73.2,73.5,73.9,73.9,74,74.4,74.6,74.9,75.2,75.4,75.5,75.6,75.7,75.8],"population":[188326,189960,191594,193229,194863,196497,198269,200041,201813,203585,205357,207128,208900,210672,212444,214216,216146,218077,220007,221937,223868,225798,227728,229658,231589,233519,235637,237755,239873,241991,244110,246228,248346,250464,252582,254700,257002,259303,261605,263906,266208,268509,270811,273112,275414,277715,280247,282778,285310,287841,290373,292904,295436,297967,300499,303030,305825,308620,311415,314210,317005,319799,322594,325389,328184,330979,334032,337084,340137,343190,346243,349295,352348,355401,358453,361506,364829,368152,371476,374799,378122,381445,384768,388092,391415,394738,400876,410511,421735,433135,443796,453322,461811,469786,478069,487416,498128,509708,520714,529176,533815,533909,530234,524844,520644,519697,522783,529209,537764,546569,554262,560424,565509,570062,574953,580755,587689,595353,602964,609433,614011,616357,616796,616055,615201,614999,615743,617174,618851,620088,620415,619696,618192,616308,614623,613557,613239,613543,614322,615332,616389,617462,618592,619740,620870,621952,622957,623864,624648,625292,625781]},{"name":"Morocco","region":"Middle East & North Africa","income":[775,777,778,780,781,782,784,785,786,788,789,791,792,793,795,796,797,799,800,802,803,804,806,807,809,810,811,813,814,816,817,819,820,821,823,824,826,827,829,830,832,833,834,836,837,839,843,848,853,873,893,914,935,957,980,1003,1029,1056,1084,1112,1141,1171,1201,1231,1262,1294,1327,1360,1394,1428,1463,1499,1535,1573,1610,1649,1688,1729,1769,1811,1853,1897,1941,1985,2031,2077,2088,2097,2115,2132,2148,2108,2067,2027,1987,1948,1971,1994,2017,2040,2064,2130,2198,2267,2338,2411,2484,2492,2530,2616,2737,2979,3066,3096,3176,3402,3250,3502,3392,3443,3566,3750,3576,3849,3845,3901,4119,3930,3825,4197,3870,4325,4177,4448,4414,4430,4710,4815,5067,5259,5363,5725,5825,6091,6313,6466,6698,6777,6967,7040,7319],"lifeExpectancy":[33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,25.3,33.1,33.1,33.2,33.3,33.4,33.5,33.6,33.7,33.8,33.9,34,34.1,34.2,34.3,34.4,34.5,34.5,34.6,34.7,34.8,34.9,35,36.3,37.6,38.9,40.2,41.5,42.8,44.1,45.4,46.6,47.9,48.2,48.6,49,49.4,49.9,50.3,50.8,51.3,51.8,52.3,52.8,53.4,53.9,54.4,54.9,55.4,55.9,56.4,56.9,57.4,57.9,58.3,58.8,59.2,59.6,60.2,60.8,61.4,62,62.7,63.4,64.2,64.9,65.6,66.1,66.7,67.1,67.6,68,68.3,68.7,69,69.3,69.6,69.7,70.1,70.4,70.7,71,71.3,71.5,71.8,72,72.2,72.5,72.8,73,73.3,73.5,73.7,73.9,74.1,74.3,74.5,74.7],"population":[3657032,3682142,3707253,3732364,3757475,3782586,3809838,3837091,3864343,3891595,3918848,3946100,3973352,4000604,4027857,4055109,4084582,4114054,4143527,4173000,4202473,4231945,4261418,4290891,4320363,4349836,4381613,4413389,4445166,4476942,4508719,4540496,4572272,4604049,4635825,4667602,4701601,4735599,4769598,4803597,4837596,4871594,4905593,4939592,4973590,5007589,5075557,5143525,5211494,5279462,5347430,5415398,5483366,5551335,5619303,5687271,5780310,5873349,5966389,6059428,6152467,6245506,6338545,6431585,6524624,6617663,6725923,6834182,6942442,7050701,7158961,7267221,7375480,7483740,7591999,7700259,7828832,7957405,8085978,8214551,8343125,8471698,8600271,8728844,8857417,8985990,9243680,9529540,9837752,10163437,10502663,10852482,11210889,11576713,11949418,12328534,12713043,13100843,13488517,13871988,14248426,14617077,14978905,15335173,15687996,16039600,16389949,16740525,17097003,17466606,17854614,18262366,18688782,19133462,19595092,20071902,20564359,21070647,21583746,22094516,22596133,23084731,23560825,24027330,24489354,24950128,25410178,25866445,26314339,26747660,27161889,27556892,27934014,28292299,28630973,28950553,29250983,29535591,29812685,30093109,30385479,30691434,31011322,31350544,31714958,32107739,32531964,32984190,33452686,33921203,34377511]},{"name":"Mozambique","region":"Sub-Saharan Africa","income":[405,406,406,406,406,407,407,407,407,408,408,408,408,409,409,409,409,410,410,410,410,410,411,411,411,411,412,412,412,412,413,413,413,413,414,414,414,414,415,415,415,415,415,416,416,416,416,417,417,417,417,418,418,418,418,419,420,420,421,422,423,424,425,426,427,427,428,429,430,431,432,433,434,434,435,436,437,438,439,440,440,441,442,443,444,445,454,464,473,476,497,492,494,508,526,528,533,559,528,540,542,548,573,623,682,703,734,738,759,683,570,527,515,504,496,499,498,477,437,420,379,383,405,441,461,462,473,435,455,468,465,485,520,562,592,583,634,671,692,732,774,801,835,864,893,930,974,1017,1064,1115,1176],"lifeExpectancy":[30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,11.7,30.3,30.3,30.5,30.7,30.9,31.1,31.3,31.4,31.6,31.8,32,32.2,32.4,32.6,32.8,33,33.2,33.4,33.6,33.8,34,34.2,34.4,34.6,34.8,35,35.2,35.3,35.5,35.7,35.9,36.1,36.6,37.3,38,38.7,39.4,40.1,40.8,41.5,42.2,42.8,43.5,44.1,44.8,45.4,46,46.5,47.1,47.7,48.4,49,49.3,49.5,49.8,50.2,50.7,50.9,50.9,51.1,51.3,51.3,48.7,49,49.1,47,47,49,49.1,51.6,51.9,51.7,51.8,52.1,52.5,52.8,53.1,53.2,53.2,53.4,53.6,53.6,53.7,53.8,53.8,53.9,53.9,54.1,54.4,55,55.4,55.7,56,56.1,56.2,56.3,56.4],"population":[3083242,3108837,3134433,3160029,3185625,3211221,3238865,3266509,3294154,3321798,3349442,3377086,3404730,3432375,3460019,3487663,3517664,3547665,3577666,3607667,3637668,3667669,3697670,3727671,3757672,3787673,3820465,3853257,3886049,3918841,3951633,3984424,4017216,4050008,4082800,4115592,4151084,4186577,4222069,4257562,4293054,4328546,4364039,4399531,4435024,4470516,4509730,4548944,4588158,4627372,4666586,4705800,4745014,4784228,4823442,4862656,4906523,4950389,4994256,5038122,5081989,5125856,5169722,5213589,5257455,5301322,5349146,5396970,5444794,5492618,5540442,5588265,5636089,5683913,5731737,5779561,5832934,5886307,5939680,5993053,6046426,6099798,6153171,6206544,6259917,6313290,6405068,6503106,6607094,6716811,6832115,6952955,7079363,7211446,7349365,7493278,7643290,7799396,7961458,8129268,8302736,8482373,8668529,8860823,9058691,9262078,9468836,9679753,9901052,10141147,10405000,10693688,11001909,11320103,11635174,11936379,12228508,12511864,12766859,12968335,13102982,13155271,13142516,13124285,13181941,13371971,13719853,14203987,14775877,15363065,15913101,16410777,16872896,17317376,17774066,18264536,18792357,19348715,19928496,20523159,21126676,21737860,22359637,22994867,23647815,24321457,25016921,25732928,26467180,27216276,27977863]},{"name":"Myanmar","region":"East Asia & Pacific","income":[848,848,848,849,849,849,858,867,877,886,895,905,915,925,935,945,955,965,975,986,997,1007,1018,1029,1040,1051,1063,1074,1086,1097,1109,1121,1133,1145,1158,1170,1183,1134,1088,1043,1000,959,972,986,1000,1014,1033,1103,1178,1258,1344,1435,1400,1367,1334,1301,1275,1320,1368,1416,1466,1518,1561,1605,1650,1696,1743,1728,1714,1699,1684,1669,1577,1490,1422,1357,1295,1098,931,789,794,804,813,823,833,842,954,963,977,905,1011,1064,1112,1067,1215,1238,1250,1339,1356,1358,1371,1292,1306,1369,1401,1438,1458,1441,1409,1456,1490,1554,1620,1700,1751,1864,1935,2002,2050,2110,2131,2072,1956,1709,1749,1775,1741,1784,1809,1839,1868,1895,1919,1944,1998,2069,2129,2196,2276,2351,2339,2593,2846,2891,2979,3077,3181,3346,3526,3727,4012],"lifeExpectancy":[30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,18.1,30.8,30.8,30.8,30.8,30.7,30.7,30.7,30.7,30.7,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.4,30.4,30.4,30.4,27.6,28,27.6,27.5,28.4,29.3,30.2,31.5,32.7,33.4,34.9,36.2,37.3,38.4,39.2,40,40.7,41.3,41.9,42.6,43.3,44.1,45.1,46.1,47.1,48,48.8,49.5,50,50.7,51.1,51.6,52.1,52.5,53.1,53.6,54.1,54.7,54.9,55.2,55.6,56,56.4,56.7,57,57.2,57.3,57.8,58.1,58.4,58.6,59,59.3,59.6,60,60.4,60.7,61.1,61.4,61.8,62.1,62.6,63.1,63.5,64.1,64.7,60.8,65.6,66,66.4,66.7,67.1,67.5,67.9],"population":[4335575,4383377,4431179,4478982,4526784,4574586,4690591,4806596,4922601,5038606,5154611,5270616,5386621,5502626,5618631,5734636,5923018,6111400,6299781,6488163,6676545,6864927,7053309,7241690,7430072,7618454,7874438,8130422,8386406,8642390,8898375,9154359,9410343,9666327,9922311,10178295,10370934,10563574,10756213,10948853,11141492,11334131,11526771,11719410,11912050,12104689,12222155,12339621,12457087,12574553,12692020,12809486,12926952,13044418,13161884,13279350,13426537,13573724,13720911,13868098,14015285,14162472,14309659,14456846,14604033,14751220,14962600,15173980,15385361,15596741,15808121,16019501,16230881,16442262,16653642,16865022,16931244,16997466,17063688,17129910,17196133,17262355,17328577,17394799,17461021,17527243,17850068,18182312,18529495,18895417,19282172,19690046,20117611,20562006,21019408,21486424,21961594,22446690,22947286,23471163,24023640,24606863,25218375,25853248,26504247,27166045,27836648,28517289,29209686,29916827,30640635,31379308,32130696,32895739,33675835,34470694,35279907,36098908,36917980,37724581,38508821,39269143,40005369,40711172,41379635,42007309,42588029,43126260,43642311,44164109,44710931,45290888,45895991,46509586,47106923,47669791,48195684,48689952,49151958,49582751,49984704,50355559,50698814,51030006,51369725,51733013,52125411,52543841,52983829,53437159,53897154]},{"name":"Namibia","region":"Sub-Saharan Africa","income":[1060,1076,1092,1109,1126,1142,1160,1177,1195,1213,1231,1250,1268,1287,1307,1326,1346,1367,1387,1408,1429,1451,1472,1495,1517,1540,1563,1586,1610,1635,1659,1684,1709,1735,1761,1788,1814,1842,1869,1898,1926,1955,1984,2014,2045,2075,2106,2138,2170,2203,2236,2270,2304,2338,2374,2409,2447,2486,2525,2564,2605,2645,2687,2729,2772,2815,2860,2904,2950,2996,3043,3091,3139,3188,3238,3289,3340,3392,3445,3499,3554,3609,3665,3722,3781,3839,3871,3901,3960,4086,4121,4175,4233,4247,4384,4682,4618,5141,5516,6254,6509,6590,6165,6060,6112,5981,5972,6106,6136,6182,6022,6124,6337,6619,6703,6824,6933,6871,6491,6219,6069,6077,6072,5961,6120,5717,5970,6198,5921,5850,5900,5906,5971,5991,6035,6111,6076,6279,6470,7184,7279,7696,8095,8169,8090,8433,8715,8995,9275,9506,10040],"lifeExpectancy":[32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,29,5,10,20,27,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,32.4,12.5,32.4,32.4,32.5,32.7,32.8,32.9,33,33.2,33.3,33.4,33.5,33.7,33.8,33.9,34,34.2,34.3,34.4,34.6,34.7,34.8,34.9,35.8,36.8,37.7,38.6,39.5,40.4,41.3,42.2,43.1,44.1,44.6,45.4,46.3,47.2,48,48.8,49.6,50.4,51.2,52,52.7,53.5,54.2,54.9,55.6,56.2,56.9,57.6,58.2,58.9,59.1,59.3,59.5,59.6,59.8,59.9,59.9,60,60.1,60.1,60.3,60.5,60.8,61.1,61.4,61.6,61.9,62,62.2,62.3,62.4,62.4,62.2,61.7,60.9,59.9,58.8,57.6,56.4,55,53.9,53,52.2,51.8,51.9,53.2,55.4,57.2,58.5,59.5,60,60.4,60.6,60.8,61],"population":[229899,229958,230018,230078,230138,230198,230258,230318,230378,230438,230498,230557,230617,230677,230737,230797,230857,230917,230976,231036,231096,231156,231216,231275,231335,231395,231455,231515,231575,231635,231695,231754,231814,231874,231934,231994,232054,232114,232174,232234,232294,232353,232413,232473,232533,232593,232633,232673,232713,232753,232793,232832,232872,232912,232952,232992,237171,241350,245528,249707,253886,258065,262244,266422,270601,274780,280304,285827,291351,296874,302398,307921,313445,318968,324492,330015,345541,361067,376593,392119,407645,423170,438696,454222,469748,485274,494611,504552,515040,526036,537519,549482,561936,574907,588430,602545,617282,632658,648668,665297,682553,700316,718622,737802,758305,780386,804309,829806,855965,881530,905647,928228,949734,970569,991365,1012761,1034446,1056758,1081740,1112044,1149389,1194769,1247186,1303879,1360921,1415447,1466152,1513689,1559480,1605828,1654214,1705349,1758097,1809920,1857320,1897953,1931005,1957749,1980531,2002745,2027026,2053915,2083174,2115703,2152357,2193643,2240161,2291645,2346592,2402858,2458830]},{"name":"Nepal","region":"South Asia","income":[660,660,661,661,661,661,666,670,675,680,685,690,695,700,705,711,716,721,726,732,737,742,748,753,759,764,770,775,781,787,792,798,804,810,816,822,828,834,840,846,852,858,864,871,877,883,890,897,903,902,900,898,897,895,893,892,889,886,883,881,878,875,872,869,867,864,861,858,856,853,850,847,844,842,839,836,833,831,828,825,822,819,817,814,811,808,822,840,881,889,896,925,914,954,968,976,984,991,997,1002,1007,1057,1020,1007,1031,1036,1002,1010,982,1019,1009,1027,1031,1049,1045,994,967,1059,1000,1068,1104,1120,1134,1190,1186,1240,1287,1306,1321,1393,1405,1443,1478,1487,1517,1577,1619,1591,1626,1675,1708,1741,1779,1866,1929,1999,2044,2118,2173,2265,2352],"lifeExpectancy":[32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,21,32.8,32.8,32.9,33,33.2,33.3,33.4,33.5,33.6,33.8,33.9,34,34.1,34.2,34.4,34.5,34.6,34.7,34.8,34.9,35.1,35.2,35.3,35.4,35.5,35.7,35.8,36.3,36.7,37.2,37.7,38.2,38.5,39,39.6,40.1,40.6,41.1,41.7,42.2,42.7,43.2,43.8,44.3,44.8,45.3,45.8,46.4,46.9,47.4,47.9,48.4,48.8,49.1,49.4,49.8,50.1,50.4,50.9,51.3,51.8,52.2,52.7,53.4,54,54.6,55.2,55.9,56.5,57.1,57.8,58.5,59.1,59.8,60.3,61.1,61.7,62.4,63.1,63.7,64.3,64.9,65.5,65.7,66.4,66.8,67.3,67.8,68.2,68.6,69,69.5,69.9,70.3,70.6,70.9,71.2],"population":[4648104,4669309,4690514,4711719,4732924,4754129,4779030,4803931,4828832,4853733,4878634,4903534,4928435,4953336,4978237,5003138,5028517,5053895,5079274,5104652,5130031,5155410,5180788,5206167,5231545,5256924,5273180,5289436,5305692,5321948,5338204,5354459,5370715,5386971,5403227,5419483,5447155,5474827,5502499,5530171,5557844,5585516,5613188,5640860,5668532,5696204,5749450,5802697,5855943,5909189,5962436,6015682,6068928,6122174,6175421,6228667,6295702,6362736,6429771,6496805,6563840,6630875,6697909,6764944,6831978,6899013,6973262,7047511,7121761,7196010,7270259,7344508,7418757,7493007,7567256,7641505,7725687,7809868,7894050,7978231,8062413,8146595,8230776,8314958,8399139,8483321,8657577,8823022,8982216,9137336,9290174,9442123,9594192,9747060,9901161,10056945,10215153,10377061,10544586,10719988,10905006,11100672,11307139,11524132,11750914,11986974,12232454,12487785,12753028,13028248,13313487,13608670,13913775,14228941,14554356,14890080,15237302,15596012,15963746,16337117,16714335,17091959,17472138,17865238,18285434,18741688,19237322,19765570,20312687,20859421,21390905,21902534,22395247,22866496,23315053,23740145,24140941,24516969,24868900,25198130,25506847,25794344,26063619,26325183,26592666,26875910,27179237,27500515,27834981,28174724,28513700]},{"name":"Netherlands","region":"Europe & Central Asia","income":[4939,5116,4932,4954,5107,5262,5220,5270,5370,5160,5449,5453,5510,5485,5208,5500,5524,5591,5931,5960,6012,6024,6094,6093,6223,5895,5833,5936,5797,6053,6003,6164,6225,6227,6224,6063,6260,6419,6309,6295,6509,6539,6325,6356,6602,6793,6923,7007,7229,7015,6627,6500,5738,5298,5877,6652,7729,8064,8063,8455,8562,8969,9211,9427,9427,9140,8640,8375,8257,8039,8135,8473,8842,8460,9039,7840,7327,6617,6398,4233,4281,7142,8093,8802,9284,9516,9593,9639,10340,10930,11566,11939,12151,11859,12256,13223,13448,13854,14148,15204,15834,16109,16824,17827,18892,19800,20555,21024,22010,22873,22849,23837,24436,25044,25473,25857,25704,25403,25919,26781,27544,28417,28937,29915,31240,32534,33066,33377,33562,34348,35244,36152,37414,38816,40306,41771,42130,41848,41761,42389,43243,44823,46605,47388,45590,45843,46388,45484,45021,45281,45784],"lifeExpectancy":[36.4,33.6,39.3,37.8,40.5,37.3,32.9,36.5,39.2,41.3,38.2,40.4,42,41.1,42,40.4,42.9,43.8,42.4,41.3,43.3,42,45,44.2,44.4,44.4,44.3,44,45.8,46.9,46.6,48.6,49.4,49,49.4,48.4,48.7,50.6,51.5,50.9,52.1,52.8,53.5,52.8,55,55.1,53.2,57.2,57.4,57.2,57.2,56.2,55.7,47.6,55,57.8,59.8,59.8,62.1,63,63.2,63.1,62.7,63.8,62.2,64.8,64.4,65.5,66.1,66.6,66.6,66.8,67,67.4,67.8,65.4,65.4,65.9,64.5,61.3,55.5,67.6,69.6,71.1,70.3,71.5,71.6,72.2,71.8,72.5,72.6,72.6,73.1,73.2,73.3,73.5,73.6,73.3,73.4,73.8,73.7,73.6,73.9,73.7,73.6,73.7,73.8,73.9,74.2,74.5,74.7,74.9,75.1,75.3,75.5,75.8,76,76.1,76.2,76.3,76.4,76.5,76.7,76.9,77,77,77.2,77.3,77.3,77.5,77.6,77.7,78,78,78.1,78.1,78.3,78.5,78.7,79.1,79.5,79.9,80.1,80.3,80.4,80.5,80.6,80.6,80.6,80.6,80.6],"population":[3482472,3510497,3538522,3566548,3594573,3622598,3662798,3702997,3743197,3783397,3823597,3863796,3903996,3944196,3984395,4024595,4075123,4125651,4176178,4226706,4277234,4327762,4378290,4428817,4479345,4529873,4592189,4654504,4716820,4779136,4841452,4903767,4966083,5028399,5090714,5153030,5229269,5305508,5381748,5457987,5534226,5610465,5686704,5762944,5839183,5915422,6008525,6101628,6194731,6287834,6380938,6474041,6567144,6660247,6753350,6846453,6949313,7052173,7155032,7257892,7360752,7463612,7566472,7669331,7772191,7875051,7973618,8072185,8170752,8269319,8367887,8466454,8565021,8663588,8762155,8860722,8977355,9093987,9210620,9327252,9443885,9560517,9677150,9793782,9910415,10027047,10148714,10275701,10407107,10542244,10680632,10822018,10966358,11113776,11264501,11418652,11576024,11735896,11896942,12057475,12216122,12372136,12525253,12675176,12821786,12964880,13104216,13239283,13369326,13493460,13611064,13722272,13827329,13925970,14017909,14103279,14181967,14255051,14325363,14396606,14471591,14551065,14634787,14723266,14816751,14915139,15019184,15128288,15239262,15347792,15450803,15546647,15636131,15721627,15806771,15894016,15984365,16076427,16167421,16253397,16331646,16401105,16463031,16519862,16575173,16631571,16689863,16749318,16809157,16868020,16924929]},{"name":"New Zealand","region":"East Asia & Pacific","income":[4353,4503,4658,4818,4984,5156,5249,5862,6375,6397,6139,6032,6631,7113,5945,6241,6272,6075,5825,6172,5980,6005,6010,5928,6174,6265,6226,6343,6323,5975,6080,6659,6597,6656,6751,7181,7058,7418,7902,7641,8109,8625,8931,8088,7981,8896,9194,8719,8625,8688,8664,8575,8389,8227,8851,9453,8598,8122,8636,8638,8893,8248,7878,8654,8863,8359,7546,7300,7724,8052,8380,9872,10320,10936,10937,10673,10387,11465,11753,11657,11765,12166,13336,11782,12794,14391,13032,13281,13388,14907,14883,15358,15441,15688,16454,16179,16664,16646,17340,17837,18632,19467,18309,18082,19745,19200,19871,20349,21342,22131,21467,21749,20623,20707,21144,21259,22191,22436,22808,23698,23750,24180,24222,24060,24206,24021,22636,22651,23830,24716,25476,25984,26152,26077,27371,27963,28752,29637,30404,31098,31798,32281,32928,32122,31723,31824,32283,32806,33360,33538,34186],"lifeExpectancy":[34,34,34,34,34,34,34.5,34.9,35.4,35.8,36.3,36.7,37.2,37.6,38.1,38.5,39,39.4,39.9,40.3,40.7,41.2,41.6,42.1,42.5,43,43.4,43.9,44.3,44.8,45.2,45.7,46.1,46.5,47,47.4,47.9,48.3,48.8,49.2,49.7,50.1,50.6,51,51.5,51.9,52.3,52.8,53.2,53.7,54.1,54.6,55,47,55.9,56.4,56.8,57.3,57.7,58.2,58.6,59.1,59.5,60,60.4,60.9,61.3,61.8,62.2,62.7,63.1,63.6,64,64.5,64.9,65.4,65.8,66.3,66.7,67.2,67.6,68.1,68.5,69,69.1,69.4,69.3,69.5,70.4,70.5,70.6,70.9,70.4,71,70.9,71.4,71.1,71.4,71.5,71.5,71.4,71.3,71.7,71.3,71.7,71.5,71.6,71.8,71.8,72,72.1,72.3,72.4,72.7,73,73.2,73.5,73.7,73.9,74.1,74.2,74.2,74.4,74.6,75,75.4,75.8,76.1,76.5,76.7,76.9,77.1,77.4,77.8,78.1,78.5,78.8,79,79.3,79.5,79.8,80,80.1,80.2,80.3,80.5,80.6,80.6,80.6,80.6,80.6],"population":[229080,243473,257866,272259,286652,301045,321447,341849,362251,382653,403055,423457,443859,464261,484663,505065,521557,538049,554541,571033,587525,604017,620509,637001,653493,669985,684538,699092,713645,728199,742752,757305,771859,786412,800966,815519,838401,861283,884165,907047,929930,952812,975694,998576,1021458,1044340,1063546,1082751,1101957,1121162,1140368,1159573,1178779,1197984,1217190,1236395,1261949,1287503,1313058,1338612,1364166,1389720,1415274,1440829,1466383,1491937,1505730,1519523,1533317,1547110,1560903,1574696,1588489,1602283,1616076,1629869,1657682,1685495,1713309,1741122,1768935,1796748,1824561,1852375,1880188,1908001,1947802,1992619,2040015,2088194,2136000,2182943,2229176,2275392,2322669,2371999,2423769,2477328,2530791,2581578,2628003,2668590,2704205,2738283,2775684,2819548,2871810,2930469,2989985,3042573,3082883,3108745,3122551,3129098,3135453,3146771,3164965,3188664,3215826,3243078,3268192,3290132,3310408,3332297,3360350,3397534,3445596,3502765,3564227,3623181,3674886,3717239,3752102,3783516,3817489,3858234,3906911,3961695,4020195,4078779,4134699,4187584,4238021,4285380,4329124,4369027,4404483,4435883,4465276,4495482,4528526]},{"name":"Nicaragua","region":"America","income":[1574,1591,1607,1625,1642,1659,1677,1695,1713,1731,1750,1769,1788,1807,1826,1845,1865,1885,1905,1925,1946,1967,1988,2009,2030,2052,2074,2096,2118,2141,2164,2187,2210,2234,2258,2282,2306,2331,2356,2381,2406,2432,2458,2484,2511,2537,2564,2592,2619,2647,2676,2704,2733,2762,2792,2821,2928,2637,2820,2941,3246,2777,2788,3528,3882,3136,2889,2598,3220,2879,2844,2201,2323,2370,2832,3019,3261,3065,3282,3175,3118,3278,3184,3389,3228,3527,3651,4140,4110,4356,4503,4360,4580,4450,4373,4292,4466,4793,5143,5559,5892,5890,6097,5981,6173,6031,6120,6128,6249,6914,6680,6796,7137,6433,4575,4577,4658,4493,4593,4390,4112,3934,3808,3295,3159,3025,2948,2888,2807,2833,2934,3057,3117,3175,3342,3424,3474,3452,3493,3632,3740,3846,3998,4060,3896,3966,4154,4304,4432,4574,4712],"lifeExpectancy":[25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.2,22.3,24.8,24.6,24.4,25,25.6,26.2,26.8,27.4,28,28.6,29.2,29.8,30.5,31.1,31.7,32.3,32.9,33.5,34.1,34.7,35.3,35.9,36.6,37.3,38.1,38.8,39.5,40.2,41,41.7,42.4,43.2,43.5,44.2,44.9,45.6,46.3,47,47.7,48.4,49.1,49.8,50.6,51.3,52,52.7,53.5,54.2,55,55.7,56.5,57.2,58.3,52.6,60.5,61.6,62.5,63.3,64,62.9,60.3,65.8,66.2,66.7,65.2,64.6,64.9,66,65.8,68.1,70.5,70.9,71.4,71.6,72,72.3,72.5,72.8,73.1,71.6,73.6,73.9,74.1,74.2,74.3,74.4,74.6,74.8,75,75.2,75.5,75.8,76,76.2,76.4,76.6,76.8],"population":[390747,393714,396681,399648,402615,405582,409987,414392,418797,423202,427608,432013,436418,440823,445228,449633,455227,460821,466415,472009,477603,483197,488791,494385,499979,505573,512151,518729,525307,531885,538463,545040,551618,558196,564774,571352,580137,588921,597706,606491,615276,624060,632845,641630,650414,659199,669271,679342,689414,699485,709557,719628,729699,739771,749843,759914,765441,770969,776496,782023,787551,793078,798605,804132,809660,815187,832286,849385,866484,883583,900683,917782,934881,951980,969079,986178,1017060,1047941,1078823,1109704,1140586,1171467,1202349,1233230,1264112,1294993,1331740,1371525,1414276,1459850,1508020,1558473,1610819,1664607,1719364,1774696,1830400,1886560,1943591,2002119,2062633,2125233,2189880,2256779,2326136,2398095,2472656,2549779,2629503,2711847,2796748,2884156,2973805,3065118,3157356,3249910,3342666,3435527,3527935,3619252,3709091,3796914,3882940,3968453,4055262,4144564,4236805,4331273,4426577,4520727,4612229,4700777,4786641,4869627,4949661,5026792,5100750,5171736,5240876,5309703,5379327,5450217,5522119,5594524,5666595,5737722,5807787,5877034,5945646,6013913,6082032]},{"name":"Niger","region":"Sub-Saharan Africa","income":[556,559,561,564,567,569,572,575,578,581,583,586,589,592,595,598,601,603,606,609,612,615,618,621,624,627,630,633,636,639,643,646,649,652,655,658,661,665,668,671,674,678,681,684,687,691,694,697,701,706,710,715,720,725,730,735,742,748,755,762,770,777,784,791,799,806,813,821,828,836,844,851,859,867,875,883,891,899,907,916,924,932,941,949,958,967,989,1011,1032,1054,1077,1099,1121,1144,1167,1220,1248,1355,1461,1437,1517,1469,1448,1432,1362,1376,1426,1325,1077,1148,1093,1077,1135,1260,1320,1353,1337,1291,1237,1004,997,1018,958,988,965,924,918,830,814,818,811,809,802,854,819,778,804,798,811,782,788,804,799,843,806,841,828,891,897,923,943],"lifeExpectancy":[30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,11.9,30.8,30.8,30.9,31.1,31.2,31.4,31.5,31.6,31.8,31.9,32.1,32.2,32.3,32.5,32.6,32.8,32.9,33,33.2,33.3,33.5,33.6,33.7,33.9,34,34.2,34.3,35.3,36.2,37.2,38.1,39.1,39.2,39.4,39.6,39.8,40,40.2,40.4,40.7,40.9,41.1,41.3,41.6,41.8,42,42.2,42.4,42.6,42.8,43,43.3,43.4,43.3,43.1,43.1,43.2,43.3,43.5,43.8,44.2,44.4,44.6,44.7,44.9,44.9,45,45.3,45.6,46.1,46.5,47,47.5,48,48.6,49.2,49.9,50.7,51.3,51.9,52.4,53,53.7,54.5,55.4,56.3,57.3,58.3,59.1,59.7,60.3,60.7,61,61.3,61.6,61.9,62.2],"population":[1588775,1597845,1606916,1615986,1625057,1634127,1643697,1653266,1662836,1672405,1681975,1691544,1701114,1710683,1720253,1729822,1739945,1750067,1760190,1770312,1780435,1790558,1800680,1810803,1820925,1831048,1841796,1852544,1863293,1874041,1884789,1895537,1906285,1917034,1927782,1938530,1949882,1961234,1972587,1983939,1995291,2006643,2017995,2029348,2040700,2052052,2063756,2075459,2087163,2098867,2110571,2122274,2133978,2145682,2157385,2169089,2180769,2192450,2204130,2215810,2227491,2239171,2250851,2262531,2274212,2285892,2298201,2310511,2322820,2335129,2347439,2359748,2372057,2384366,2396676,2408985,2424057,2439129,2454200,2469272,2484344,2499416,2514488,2529559,2544631,2559703,2637582,2717047,2797435,2878395,2959896,3042231,3126010,3212101,3301531,3395212,3493636,3596613,3703159,3811813,3921581,4032210,4144238,4258415,4375837,4497355,4623121,4753054,4887484,5026744,5171029,5320869,5476206,5635954,5798584,5963159,6129762,6299343,6472971,6652110,6838170,7031675,7233482,7445788,7671233,7911884,8168834,8442330,8732500,9039088,9361912,9701730,10058960,10432657,10821434,11224523,11642308,12075991,12526725,12996012,13485436,13995530,14527631,15085130,15672194,16291990,16946485,17635782,18358863,19113728,19899120]},{"name":"Nigeria","region":"Sub-Saharan Africa","income":[1083,1088,1093,1097,1102,1108,1113,1118,1123,1128,1133,1138,1143,1149,1154,1159,1164,1170,1175,1180,1186,1191,1197,1202,1207,1213,1218,1224,1230,1235,1241,1246,1252,1258,1264,1269,1275,1281,1287,1293,1299,1304,1310,1316,1322,1328,1334,1341,1347,1371,1396,1422,1448,1475,1502,1529,1559,1590,1621,1653,1685,1718,1752,1787,1822,1857,1894,1931,1969,2007,2046,2086,2127,2169,2211,2254,2298,2343,2389,2436,2483,2532,2581,2631,2683,2735,2843,2971,2981,3141,3106,2975,2975,3090,3151,3810,3551,3585,3788,3803,3524,3252,2666,2610,2988,3483,3889,3928,4042,4381,4044,4288,4415,4040,4192,4250,3598,3474,3221,3081,3258,2901,2526,2650,2753,3030,2936,2875,2863,2817,2740,2805,2813,2818,2761,2836,2888,2922,3144,4098,4130,4353,4528,4684,4874,5114,5217,5291,5423,5607,5727],"lifeExpectancy":[30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,14.4,30.4,30.4,30.7,30.9,31.2,31.4,31.7,31.9,32.2,32.4,32.7,32.9,33.2,33.4,33.7,33.9,34.2,34.4,34.7,34.9,35.2,35.4,35.7,35.9,36.2,36.4,36.7,37.5,38.4,39.2,40,40.9,41.3,41.9,42.5,43.1,43.8,44.4,45.1,45.8,46.6,47.3,48,48.7,49.3,50,50.6,51.2,45.8,41.1,39.3,49.6,50,50.5,51.1,51.7,52.3,52.9,53.6,54.1,54.5,54.8,55.1,55.4,55.5,55.5,55.5,55.4,55.3,55.3,55.3,55.4,55.4,55.5,55.5,55.5,55.6,55.6,55.6,55.6,55.7,55.8,55.9,56.1,56.3,56.5,56.9,57.2,57.7,58,58.5,58.8,59.1,59.5,60.1,60.7,61.3],"population":[14694699,14758810,14822922,14887033,14951145,15015256,15082044,15148833,15215621,15282409,15349198,15415986,15482774,15549562,15616351,15683139,15752877,15822614,15892352,15962090,16031828,16101565,16171303,16241041,16310778,16380516,16453572,16526628,16599684,16672740,16745796,16818852,16891908,16964964,17038020,17111076,17187258,17263441,17339623,17415805,17491988,17568170,17644352,17720534,17796717,17872899,17952023,18031147,18110271,18189395,18268519,18347642,18426766,18505890,18585014,18664138,18719774,18775410,18831046,18886682,18942319,18997955,19053591,19109227,19164863,19220499,19960950,20701402,21441853,22182304,22922756,23663207,24403658,25144109,25884561,26625012,27748485,28871959,29995432,31118905,32242379,33365852,34489325,35612798,36736272,37859745,38431323,39049831,39707796,40399771,41122333,41874186,42656058,43470429,44321061,45211614,46144154,47117859,48128460,49169819,50238569,51336375,52468593,53640547,54859201,56131844,57453734,58829319,60285453,61857023,63565598,65426976,67425435,69512233,71619216,73698096,75729572,77729802,79729311,81775215,83901570,86118043,88412917,90773613,93179755,95617345,98085436,100592458,103145093,105753088,108424822,111164651,113975055,116860691,119826231,122876723,126014935,129246283,132581484,136033321,139611303,143318011,147152502,151115683,155207145,159424742,163770669,168240403,172816517,177475986,182201962]},{"name":"North Korea","region":"East Asia & Pacific","income":[542,541,541,540,540,539,539,538,537,537,536,536,535,535,534,534,533,533,532,531,531,530,530,529,529,528,528,527,527,526,526,525,525,524,523,523,525,527,529,531,533,535,538,540,542,544,551,574,596,622,726,710,784,844,897,779,844,778,835,843,845,878,917,924,876,829,833,834,1008,1006,1096,1197,1322,1392,1257,1418,1438,1429,1450,1386,650,662,703,761,822,868,729,784,1018,1080,1146,1208,1322,1498,1452,1544,1624,1592,1577,1592,1630,1616,1646,1673,1643,1697,1699,1730,1751,1782,1844,1851,1884,1809,2015,1887,2073,2180,2138,2205,2121,2106,2142,2198,2257,2076,1973,1745,1619,1605,1442,1393,1230,1267,1377,1287,1368,1375,1405,1410,1464,1461,1392,1427,1407,1393,1397,1393,1392,1391,1390],"lifeExpectancy":[26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,25.5,25,24.5,24,23.5,23.8,24.1,24.4,24.7,25,25.5,26,26.5,27,17,27.5,28,28.4,28.8,29.2,29.8,30.5,31.2,31.9,32.6,33.2,33.9,34.5,35.1,35.8,36.7,37.6,38.5,39.4,40.3,40.8,41.2,41.7,42.1,40.1,39,39.4,41.7,43.6,44.1,44.4,32.2,23.1,21,27.9,38.7,42.6,44,44.9,45.3,45.9,46.3,46.5,46.8,47.2,47.8,48.6,49.6,50.6,51.6,52.6,53.4,54.6,55.7,56.8,57.9,58.9,59.8,60.7,61.5,62.2,62.9,63.6,64.2,64.8,65.4,65.9,66.4,66.8,67.2,67.6,67.9,68.2,68.4,68.6,68.8,62.4,62.6,62.7,62.8,63,63.2,63.3,63.5,69.8,69.9,70.1,70.2,70.3,70.6,70.7,70.8,71,71.1,71.2,71.3,71.4],"population":[4599374,4610770,4622166,4633561,4644957,4656353,4670575,4684797,4699019,4713241,4727464,4741686,4755908,4770130,4784352,4798574,4814621,4830668,4846715,4862762,4878809,4894856,4910903,4926950,4942997,4959044,4975544,4992044,5008544,5025044,5041544,5058044,5074544,5091044,5107544,5124044,5140988,5157932,5174877,5191821,5208765,5225709,5242653,5259598,5276542,5293486,5375925,5458363,5540802,5623241,5705680,5788118,5870557,5952996,6035434,6117873,6242755,6367637,6492519,6617401,6742284,6867166,6992048,7116930,7241812,7366694,7517068,7667442,7817816,7968190,8118564,8268937,8419311,8569685,8720059,8870433,9038337,9206240,9374144,9542047,9709951,9877855,10045758,10213662,10381565,10549469,10248496,10049026,9957244,9972437,10086993,10285936,10547389,10843979,11145152,11424179,11665593,11871720,12065470,12282421,12547524,12864683,13221826,13608611,14009168,14410400,14812363,15214615,15603001,15960127,16274740,16539029,16758826,16953621,17151321,17372167,17623335,17899236,18191881,18487997,18778101,19058988,19334550,19610512,19895390,20194354,20510208,20838082,21166230,21478544,21763670,22016510,22240826,22444986,22641747,22840218,23043441,23248053,23449173,23639296,23813324,23969897,24111945,24243829,24371806,24500506,24631359,24763353,24895705,25026772,25155317]},{"name":"Norway","region":"Europe & Central Asia","income":[2336,2361,2411,2402,2492,2483,2517,2671,2721,2805,2861,2906,2898,2765,2758,2827,2854,2859,2855,2897,2907,2908,2933,3066,3179,3251,3263,3311,3386,3382,3387,3443,3582,3566,3633,3643,3700,3732,3695,3695,3711,3856,4015,4121,4182,4332,4473,4655,4864,4919,5087,5239,4713,4481,5203,5483,4897,5376,5492,5466,5772,5834,6037,6290,6871,7369,6763,7066,7215,7441,7785,8282,8622,8780,9164,8349,8519,8151,7944,7475,8308,9069,10196,10804,11002,11452,11986,12316,12707,13247,13438,14054,14379,14285,14797,15542,16425,16793,17347,18118,18980,19588,20686,21022,21845,22186,23239,24308,25278,26252,27553,29117,30319,31348,32737,34346,34659,34704,35932,38057,40031,41450,42225,42101,42449,43296,44419,45742,46765,48850,50616,52892,55386,56502,57246,58699,59620,60152,60351,62370,63573,64573,65781,65216,63354,62946,62737,63620,63322,64020,64304],"lifeExpectancy":[50.4,49.9,47.9,47.2,49.3,50.9,49.7,50,49.7,47.8,47.6,46.8,49.8,51.8,53.2,51.9,50.5,47.4,49.6,50.8,51.1,51.7,51.7,50.4,49.1,48.6,49.8,49.7,51.4,50.6,52.8,53.8,53.7,54,51.6,53.5,54.6,56.5,55,56.1,55.1,56.9,56.5,56.3,57.5,58,58,57.8,58.3,57.8,58.2,57.3,57.8,50.3,56.8,58.9,61.6,60.8,61.8,62.1,62.5,63.2,62.8,63.4,62.4,64.1,64.1,64.6,65.4,66.2,65.8,65.8,66,67,67.3,65.8,65.7,65.6,66,65.7,68.1,69.4,69.9,71,71.4,71.5,72.4,72.6,73,73.1,73.3,73.4,73.3,73.3,73.4,73.4,73.4,73.3,73,73.5,73.6,73.8,73.9,73.8,73.5,73.9,74.1,74.3,74.5,74.7,74.8,75,75.2,75.3,75.5,75.7,75.8,75.9,76,76.1,76.1,76.1,76.1,76.3,76.5,76.8,77.1,77.3,77.6,77.8,78,78.1,78.2,78.3,78.5,78.7,78.9,79.2,79.5,79.7,80.1,80.4,80.6,80.7,80.8,80.9,81.1,81.3,81.4,81.5,81.6],"population":[1663542,1680177,1696812,1713448,1730083,1746718,1760418,1774118,1787817,1801517,1815217,1828917,1842617,1856316,1870016,1883716,1895740,1907764,1919787,1931811,1943835,1955859,1967883,1979906,1991930,2003954,2025051,2046148,2067245,2088342,2109439,2130535,2151632,2172729,2193826,2214923,2231794,2248665,2265535,2282406,2299277,2316148,2333019,2349889,2366760,2383631,2408731,2433832,2458932,2484033,2509133,2534233,2559334,2584434,2609535,2634635,2651964,2669292,2686621,2703950,2721279,2738607,2755936,2773265,2790593,2807922,2824284,2840647,2857009,2873372,2889734,2906096,2922459,2938821,2955184,2971546,3000919,3030292,3059666,3089039,3118412,3147785,3177158,3206532,3235905,3265278,3300422,3333895,3366281,3398028,3429431,3460640,3491657,3522361,3552545,3582016,3610710,3638791,3666690,3694987,3724065,3754010,3784579,3815399,3845932,3875719,3904750,3932945,3959705,3984291,4006221,4025297,4041789,4056280,4069626,4082525,4095177,4107655,4120386,4133833,4148355,4164166,4181326,4199817,4219532,4240375,4262367,4285504,4309606,4334434,4359788,4385951,4412958,4440109,4466468,4491572,4514907,4537240,4560947,4589241,4624388,4667105,4716584,4771633,4830371,4891251,4953945,5018367,5083450,5147970,5210967]},{"name":"Oman","region":"Middle East & North Africa","income":[1107,1112,1116,1121,1125,1130,1139,1148,1158,1167,1177,1186,1196,1205,1215,1225,1235,1245,1255,1265,1275,1285,1296,1306,1317,1327,1338,1349,1360,1371,1382,1393,1404,1416,1427,1439,1450,1462,1474,1486,1498,1510,1522,1534,1547,1559,1572,1584,1597,1621,1645,1669,1693,1718,1743,1769,1801,1833,1867,1900,1935,1969,2005,2041,2078,2115,2153,2192,2231,2271,2311,2353,2395,2437,2481,2525,2570,2616,2662,2709,2757,2806,2856,2907,2958,3010,3148,3293,3445,3599,3759,3930,4101,4288,4470,4654,4611,5428,5539,5419,5322,5472,8890,15768,19335,19472,19104,20283,16951,18360,22184,23966,22951,21418,21258,21463,23905,25439,28410,31842,34967,34510,36053,35924,36220,35076,35728,37147,37882,38131,39194,39990,42370,43621,43544,45472,46523,44628,41970,41220,41270,42933,44585,47799,49393,49188,45081,44060,41770,48201,48226],"lifeExpectancy":[32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,26.8,32.3,32.3,32.4,32.4,32.5,32.6,32.6,32.7,32.7,32.8,32.9,32.9,33,33.1,33.1,33.2,33.3,33.3,33.4,33.4,33.5,33.6,33.6,33.7,33.8,33.8,33.9,34.3,34.8,35.2,35.7,36.1,36.6,37.6,38.6,39.6,40.6,41.5,42.5,43.4,44.3,45.2,46.1,47,47.9,48.7,49.5,50.3,51.1,51.9,52.7,53.5,54.9,55.6,56.7,57.8,59.1,60.8,61.6,62.8,63.7,64.6,65.4,66.3,67,67.7,68.4,69,69.5,69.9,70.3,70.7,71.1,71.4,71.7,72,72.3,72.6,72.9,73.2,73.4,73.7,73.9,74,74.1,74.2,74.3,74.3,74.3,74.6,74.8,75,75.2,75.4,75.5,75.6,75.7],"population":[362225,363387,364550,365712,366875,368037,369517,370997,372477,373957,375437,376917,378397,379877,381357,382837,384535,386233,387931,389629,391327,393024,394722,396420,398118,399816,401595,403374,405153,406932,408711,410490,412269,414048,415827,417606,419461,421315,423170,425024,426879,428734,430588,432443,434297,436152,436943,437734,438526,439317,440108,440899,441690,442482,443273,444064,444396,444729,445061,445393,445726,446058,446390,446722,447055,447387,447722,448057,448391,448726,449061,449396,449731,450065,450400,450735,451303,451872,452440,453008,453577,454145,454713,455281,455850,456418,462257,469350,477437,486310,495824,505889,516473,527598,539327,551737,564895,578825,593504,608889,625007,642005,660117,679593,700729,723850,748971,776379,806989,841947,882044,927439,977806,1032799,1091855,1154375,1220548,1290007,1360921,1430926,1498416,1561493,1620573,1679089,1741965,1812159,1892345,1979914,2066264,2139539,2191864,2219768,2227596,2224922,2225481,2239403,2272547,2323203,2385075,2448194,2506891,2553376,2593750,2652281,2762073,2943747,3210003,3545192,3906912,4236057,4490541]},{"name":"Pakistan","region":"South Asia","income":[1026,1026,1026,1026,1026,1027,1029,1032,1034,1037,1039,1042,1044,1047,1049,1052,1054,1057,1060,1062,1094,1057,1104,1112,1080,1128,1023,1103,1129,1145,1115,1031,1217,1218,1121,1159,1176,1266,1277,1275,1244,1272,1188,1198,1355,1349,1338,1334,1303,1373,1339,1377,1351,1177,1339,1232,1319,1362,1305,1356,1359,1389,1376,1377,1420,1417,1390,1387,1369,1364,1333,1366,1326,1312,1323,1349,1358,1337,1375,1345,1309,1226,1219,1218,1233,1176,1112,1091,1167,1167,1166,1171,1193,1180,1164,1191,1231,1286,1332,1396,1421,1497,1513,1577,1636,1758,1721,1690,1765,1781,1811,1864,1897,2002,2018,2155,2242,2333,2421,2458,2603,2689,2761,2853,2908,2961,3026,3174,3148,3183,3255,3324,3270,3266,3303,3366,3362,3405,3506,3698,3910,4076,4194,4187,4227,4220,4261,4337,4454,4619,4743],"lifeExpectancy":[25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.9,26.1,26.2,26.3,26.4,26.6,26.7,26.8,27,27.1,26.7,26.3,25.9,25.5,25.1,23.6,24.4,24,23.6,23.2,23,22.8,22.6,21.1,22.2,22,21.8,20.3,20.1,19.9,17.8,21.8,22.1,22.4,22.8,23.1,23.4,23.7,24,24.3,24.6,8.2,25.2,25.5,25.9,26.2,26.5,26.8,27.1,27.4,27.8,28.2,28.5,28.9,29.2,29.6,30,30.3,30.7,31.1,31.4,31.8,32.2,32.5,32.9,33.3,33.6,34,34.3,34.7,10.8,31.6,35.8,36.2,36.8,38,39.2,40.3,41.4,42.5,43.6,44.6,45.6,46.6,47.5,48.4,49.2,50,50.7,51.4,52,52.6,53.2,53.7,50.7,54.6,55.1,55.4,55.9,56.4,56.9,57.4,57.9,58.6,59.1,59.6,60.2,60.6,61.1,61.4,61.7,61.9,62.2,62.3,62.4,62.3,62.3,62.2,62.1,62.2,62.2,62.3,62.5,62.6,62.7,62.9,63,63.2,62.6,63.6,63.8,64.1,64.4,64.7,65,65.3,65.7,66.1,66.5],"population":[15893208,15954498,16015788,16077078,16138368,16199658,16277451,16355244,16433036,16510829,16588622,16666415,16744208,16822000,16899793,16977586,17067137,17156689,17246240,17335792,17425343,17514894,17604446,17693997,17783549,17873100,17967712,18062324,18156935,18251547,18346159,18440771,18535383,18629994,18724606,18819218,18918633,19018048,19117462,19216877,19316292,19415707,19515122,19614536,19713951,19813366,19963798,20114229,20264661,20415093,20565525,20715956,20866388,21016820,21167251,21317683,21521786,21725888,21929991,22134093,22338196,22542298,22746401,22950503,23154606,23358708,23807604,24256501,24705397,25154293,25603190,26052086,26500982,26949878,27398775,27847671,28817142,29786613,30756084,31725555,32695026,33664496,34633967,35603438,36572909,37542380,37976075,38485341,39065871,39714074,40427072,41202729,42039623,42936961,43894437,44911810,45988447,47122931,48312888,49555472,50848775,52194629,53594445,55045897,56545924,58094239,59690467,61341255,63062204,64873705,66791496,68818471,70953777,73204087,75575981,78071984,80691701,83427522,86264621,89183159,92165065,95207133,98301647,101420791,104530689,107607639,110634399,113616165,116579605,119564925,122599749,125697651,128845692,132013680,135158132,138250487,141282077,144271586,147251530,150267989,153356383,156524189,159767672,163096985,166520983,170043918,173669648,177392252,181192646,185044286,188924874]},{"name":"Panama","region":"America","income":[1411,1427,1443,1459,1476,1492,1509,1526,1544,1561,1579,1597,1615,1633,1652,1670,1689,1709,1728,1747,1767,1787,1808,1828,1849,1870,1891,1912,1934,1956,1978,2000,2023,2046,2069,2093,2116,2140,2165,2189,2214,2239,2264,2290,2316,2342,2369,2396,2423,2450,2478,2506,2534,2563,2592,2622,2652,2683,2714,2745,2777,2809,2842,2875,2908,2941,2975,3010,3044,3080,3115,3151,3187,3224,3261,3299,3337,3375,3414,3453,3493,3564,3640,3350,3362,3172,3066,3149,3264,3303,3407,3496,3766,3719,3853,3970,4274,4502,4788,4852,5128,5352,5634,5873,6153,6345,6676,6843,7076,7046,6992,6941,6833,7372,7529,8486,8659,8957,8839,8624,8847,8954,8995,7445,7272,7463,7997,8476,8757,8823,8795,8857,9237,9713,9889,9954,9814,9836,10053,10605,11156,11886,13087,14033,14339,14921,16254,17627,18793,19637,20485],"lifeExpectancy":[32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,33.1,33.3,29.4,33.7,33.9,34.2,34.4,34.7,35,35.2,35.5,35.8,36,36.3,36.6,37.3,38,38.7,39.4,40.1,40.9,41.6,42.3,43,43.7,45.1,46.5,47.9,49.3,50.7,52.1,53.5,54.9,56.3,57.7,58,58.6,59.2,59.8,60.4,61.1,61.7,62.3,62.9,63.5,64.1,64.6,65.2,65.7,66.2,66.7,67.2,67.7,68.3,68.8,69.5,70.1,70.8,71.4,72,72.5,73.1,73.5,73.8,74.3,74.6,74.8,74.9,75.1,75.1,75.2,75.2,75.2,75.1,75.2,75.2,75.3,75.5,75.6,75.8,76,76.2,76.4,76.7,76.9,77.1,77.2,77.2,77.2,77.2,77.2,77.1,77.1,77.1,77.2,77.4,77.6,77.8,78,78.2],"population":[165632,167831,170030,172229,174428,176627,179128,181629,184130,186631,189132,191633,194134,196635,199136,201637,204497,207356,210216,213075,215935,218794,221654,224513,227373,230232,233856,237480,241104,244728,248352,251976,255600,259224,262848,266472,272441,278411,284380,290349,296319,302288,308257,314226,320196,326165,341543,356920,372298,387676,403054,418431,433809,449187,464564,479942,483542,487141,490741,494340,497940,501540,505139,508739,512338,515938,533436,550934,568432,585930,603428,620925,638423,655921,673419,690917,707791,724666,741540,758414,775289,792163,809037,825911,842786,859660,881346,904387,928713,954272,981032,1008979,1038120,1068473,1100067,1132924,1167041,1202372,1238824,1276274,1314627,1353805,1393800,1434660,1476478,1519293,1563113,1607835,1653257,1699114,1745207,1791459,1837887,1884512,1931393,1978575,2026057,2073826,2121921,2170390,2219276,2268619,2318444,2368772,2419618,2471010,2522901,2575330,2628511,2682720,2738125,2794845,2852739,2911383,2970193,3028751,3086887,3144728,3202511,3260611,3319301,3378600,3438398,3498679,3559401,3620506,3681979,3743761,3805683,3867535,3929141]},{"name":"Papua New Guinea","region":"East Asia & Pacific","income":[638,640,643,645,647,649,651,654,656,658,660,662,665,667,669,671,674,676,678,681,683,685,688,690,692,695,697,699,702,704,707,709,711,714,716,719,721,723,726,728,731,733,736,738,741,743,746,748,751,756,760,765,770,775,779,784,790,795,800,806,811,817,823,828,834,839,845,851,857,862,868,874,880,886,892,898,904,910,916,922,929,935,941,947,954,960,975,989,1004,1020,1035,1051,1067,1083,1099,1116,1165,1217,1243,1324,1431,1484,1512,1545,1636,1774,1844,1904,1982,1989,1928,1824,1801,1915,1908,1822,1774,1736,1747,1697,1720,1756,1760,1767,1699,1607,1717,1907,2198,2270,2139,2245,2101,1969,1953,1856,1806,1758,1752,1756,1822,1819,1903,1982,2055,2163,2341,2476,2558,2510,2529],"lifeExpectancy":[31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.5,31.7,31.9,32.1,32.4,32.6,32.8,33,33.2,33.4,33.7,33.9,34.1,34.3,34.5,34.7,35,35.2,35.4,35.6,35.8,36,35.7,35,34.2,33.4,37.1,37.9,38.6,39.4,40.2,40.6,41.3,42,42.8,43.5,44.2,44.9,45.6,46.3,47.1,47.9,48.7,49.7,50.7,51.7,52.8,53.8,54.9,55.9,56.8,56.7,56.9,56.9,57,57,57,57,56.8,56.7,56.5,56.3,56.2,56.1,56,56,55.9,55.9,55.9,55.8,55.7,55.7,55.8,56,56.2,56.3,56.5,56.6,56.2,56.8,56.9,56.9,57,57.1,57.2,57.3,57.5,57.8,58.2,58.4,58.7,59.1,59.4,59.8,60.2,60.6],"population":[1002256,1008519,1014783,1021046,1027310,1033573,1040213,1046853,1053493,1060133,1066773,1073412,1080052,1086692,1093332,1099972,1107035,1114099,1121162,1128226,1135289,1142352,1149416,1156479,1163543,1170606,1178157,1185709,1193260,1200812,1208363,1215914,1223466,1231017,1238569,1246120,1254138,1262155,1270173,1278190,1286208,1294226,1302243,1310261,1318278,1326296,1334862,1343429,1351995,1360561,1369128,1377694,1386260,1394826,1403393,1411959,1421113,1430267,1439421,1448575,1457729,1466882,1476036,1485190,1494344,1503498,1513245,1522993,1532740,1542488,1552235,1561982,1571730,1581477,1591225,1600972,1611694,1622416,1633138,1643860,1654582,1665304,1676026,1686748,1697470,1708192,1729254,1750883,1773331,1796808,1821496,1847534,1875027,1904053,1934670,1966957,2001048,2037165,2075630,2116832,2161103,2208422,2258877,2313017,2371515,2434755,2503074,2576093,2652586,2730859,2809692,2888509,2967620,3047769,3130125,3215483,3304188,3395798,3489402,3583707,3677854,3771578,3865402,3960243,4057406,4157903,4261933,4369407,4480689,4596131,4715929,4840311,4969116,5101633,5236863,5374051,5512835,5653284,5795571,5940048,6086905,6236158,6387470,6540267,6693799,6847517,7001172,7154870,7308864,7463577,7619321]},{"name":"Paraguay","region":"America","income":[1471,1489,1508,1527,1546,1565,1585,1605,1625,1646,1666,1687,1709,1730,1752,1774,1796,1819,1842,1865,1888,1912,1936,1961,1985,2010,2036,2061,2087,2113,2140,2167,2194,2222,2250,2278,2307,2336,2365,2395,2425,2456,2487,2518,2550,2582,2614,2647,2680,2714,2748,2783,2818,2853,2889,2926,2960,2994,3029,3064,3099,3135,3171,3208,3245,3283,3321,3359,3398,3437,3477,3517,3557,3598,3639,3364,3338,3449,3438,3428,3230,3465,2940,2904,3312,3013,2988,2858,2861,2832,2882,2925,2981,3067,2979,2928,2987,3113,3114,3163,3256,3203,3315,3339,3375,3487,3539,3618,3785,3977,4113,4284,4632,5022,5449,6087,6437,6038,5686,5692,5743,5566,5637,5825,5983,5985,6037,5988,6132,6306,6582,6536,6665,6527,6303,6031,5860,5742,5873,5994,6007,6180,6398,6684,6306,7008,7186,6975,7833,8038,8219],"lifeExpectancy":[35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,31.4,35.5,35.5,35.6,35.6,35.7,35.8,35.8,35.9,35.9,36,36.1,36.1,36.2,36.3,37.8,39.4,41,42.6,44.1,45.7,47.3,48.9,50.4,52,53.6,55.2,56.7,58.3,59.9,61.5,63,64.6,64.7,64.7,64.8,65,65.2,65.4,65.6,65.9,66.2,66.4,66.7,67,67.3,67.5,67.7,67.9,68.1,68.3,68.5,68.7,68.9,69.1,69.3,69.5,69.9,70.2,70.5,70.8,71.1,71.4,71.8,72.2,72.4,72.8,73.1,73.5,73.7,74,74.1,74.2,74.2,74.1,73.9,73.9,73.9,73.9,74,74.1,74.1,74.1,74.1,74,73.8,73.6,73.5,73.5,73.6,73.6,73.5,73.4,73.5,73.6,73.7,73.8,73.9],"population":[376741,378565,380390,382215,384039,385864,387755,389646,391537,393428,395319,397210,399101,400992,402883,404774,406746,408718,410691,412663,414635,416607,418579,420552,422524,424496,427765,431033,434302,437570,440839,444107,447375,450644,453913,457181,467689,478196,488704,499211,509719,520227,530734,541242,551749,562257,577032,591807,606582,621357,636132,650907,665682,680457,695232,710007,728426,746845,765263,783682,802101,820520,838939,857357,875776,894195,917659,941123,964586,988050,1011514,1034978,1058442,1081905,1105369,1128833,1163274,1197715,1232157,1266598,1301039,1335480,1369921,1404363,1438804,1473245,1511764,1550763,1590497,1631186,1673007,1716105,1760584,1806515,1853937,1902871,1953331,2005337,2058916,2114095,2170853,2229373,2289579,2350900,2412565,2474102,2535355,2596741,2659084,2723523,2790964,2861582,2935375,3012833,3094479,3180628,3271454,3366726,3465796,3567750,3671826,3777764,3885433,3994328,4103909,4213740,4323402,4432738,4541902,4651222,4760853,4870695,4980346,5089306,5196935,5302703,5406625,5508615,5607948,5703742,5795493,5882797,5966160,6047131,6127847,6209877,6293763,6379162,6465669,6552518,6639123]},{"name":"Peru","region":"America","income":[1359,1363,1366,1370,1374,1377,1381,1385,1388,1392,1395,1399,1403,1407,1410,1414,1418,1421,1425,1429,1433,1436,1440,1444,1448,1452,1456,1459,1463,1467,1471,1475,1593,1675,1746,1816,1925,2005,2115,2159,2288,2440,2561,2578,2589,2601,2609,2651,2690,2625,2799,3033,3087,3048,3092,3065,3110,3292,3429,3656,3658,3927,3897,4044,4355,3760,3369,3158,3425,3791,4043,4132,4084,4046,3969,3948,3854,3672,3638,3853,3898,3951,3964,3997,4197,4419,4614,4701,4843,4821,5016,5076,5155,5007,4871,5366,5652,5875,5947,6155,6360,6681,6733,6459,6425,6719,6828,6853,7016,7186,7548,7452,7255,7067,7298,7443,7582,7437,6303,6449,6432,6923,7356,6609,5681,5280,5290,5160,5329,5875,6198,6260,6551,6418,6411,6485,6433,6693,6883,7137,7499,7975,8563,9249,9246,9915,10429,10913,11395,11514,11903],"lifeExpectancy":[35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,31.6,35.7,35.7,35.7,35.6,35.6,35.6,35.6,35.5,35.5,35.5,35.5,35.4,35.4,35.4,35.4,35.3,35.3,35.3,35.3,35.2,35.2,35.2,35.9,36.6,37.3,38.1,38.8,39.5,40.2,40.9,41.6,42.4,42.5,42.9,43.3,43.7,44.1,44.6,45.1,45.6,46.2,46.7,47.2,47.7,48.2,48.6,49.1,49.6,50.1,50.8,51.5,52.2,61.7,62.6,63.2,64,64.8,65.4,65.7,65.8,65.9,65.9,66.1,66.2,66.3,66.5,67.2,67.8,68.3,68.8,69.3,69.4,69.7,70,70.3,70.8,71.2,71.8,72.3,73,73.6,74.3,74.7,75.2,75.6,75.9,76.2,76.5,76.6,76.8,76.7,76.8,76.8,76.9,77.1,77.3,77.5],"population":[2455529,2487781,2520033,2552285,2584537,2616789,2652274,2687760,2723245,2758731,2794216,2829701,2865187,2900672,2936158,2971643,3008277,3044910,3081544,3118177,3154811,3191445,3228078,3264712,3301345,3337979,3372215,3406452,3440688,3474924,3509161,3543397,3577633,3611869,3646106,3680342,3729739,3779136,3828532,3877929,3927326,3976723,4026120,4075516,4124913,4174310,4231033,4287756,4344478,4401201,4457924,4514647,4571370,4628092,4684815,4741538,4820984,4900431,4979877,5059324,5138770,5218216,5297663,5377109,5456556,5536002,5633055,5730107,5827160,5924212,6021265,6118318,6215370,6312423,6409475,6506528,6628649,6750769,6872890,6995011,7117132,7239252,7361373,7483494,7605614,7727735,7924206,8128525,8340379,8559721,8786753,9021960,9266078,9520048,9784909,10061519,10350239,10650672,10961539,11281015,11607684,11941327,12282081,12629333,12982444,13341071,13704333,14072476,14447649,14832839,15229951,15639898,16061327,16491087,16924758,17359118,17792551,18225727,18660443,19099575,19544950,19996250,20451712,20909897,21368856,21826658,22283130,22737056,23184222,23619358,24038761,24441076,24827409,25199744,25561297,25914875,26261363,26601463,26937737,27273188,27610406,27949958,28292768,28642048,29001563,29373644,29759891,30158768,30565461,30973148,31376670]},{"name":"Philippines","region":"East Asia & Pacific","income":[1031,1032,1034,1035,1037,1039,1041,1044,1046,1049,1052,1054,1057,1060,1062,1065,1067,1070,1073,1076,1078,1081,1084,1086,1089,1092,1095,1097,1100,1103,1106,1108,1111,1114,1117,1119,1122,1125,1344,1136,1186,1209,1250,1297,1297,1464,1529,1527,1656,1595,1468,1682,1926,2158,2036,2165,2077,2286,2108,2260,2238,2308,2315,2362,2400,2351,2317,2367,2337,2305,2101,2337,2450,2474,2595,2595,2256,1961,1705,1482,1289,1120,1519,1725,1782,1864,2006,2069,2190,2287,2376,2470,2529,2542,2637,2597,2663,2708,2814,2825,2886,2926,2992,3051,3104,3132,3212,3296,3494,3524,3624,3840,3947,4041,4154,4251,4295,4347,4333,3928,3559,3598,3670,3834,3982,4010,3891,3813,3804,3882,3973,4112,4230,4115,4151,4243,4275,4340,4465,4672,4804,4967,5205,5332,5304,5614,5721,6005,6326,6598,6876],"lifeExpectancy":[30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,12.7,20,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,25.6,30.9,30.9,31,31,31.1,31.2,31.2,32,32.8,33.6,34.3,35.1,35.9,36.6,37.4,38.2,38.9,39.7,40.5,41.2,42.5,43.8,42.5,36.3,38.7,34.2,31.6,42.8,46.3,49.8,53.3,56.8,57.1,57.5,57.9,58.3,58.7,59.1,59.5,59.9,60.3,60.6,61,61.4,61.8,62.1,62.5,62.9,63.2,63.6,64,64.3,64.5,64.3,64.3,64.2,64.1,63.4,64.2,64.4,64.8,65.2,65.5,65.9,66,65.9,66,66.2,66.6,67.2,67.9,68.3,68.5,68.6,68.6,68.7,68.8,68.9,69,69.1,69.1,69,69,68.9,68.9,68.9,69,69.1,69.3,69.4,69.5,69.7,69.8,69.9,70,70.1,70.2],"population":[4064604,4128166,4191729,4255291,4318854,4382416,4445323,4508230,4571136,4634043,4696950,4759857,4822764,4885670,4948577,5011484,5077170,5142857,5208543,5274230,5339916,5405602,5471289,5536975,5602662,5668348,5749572,5830796,5912020,5993244,6074469,6155693,6236917,6318141,6399365,6480589,6609642,6738694,6867747,6996800,7125853,7254905,7383958,7513011,7642063,7771116,7935047,8098978,8262908,8426839,8590770,8754701,8918632,9082562,9246493,9410424,9627180,9843937,10060693,10277450,10494206,10710962,10927719,11144475,11361232,11577988,11875429,12172869,12470310,12767751,13065192,13362632,13660073,13957514,14254954,14552395,14955204,15358013,15760823,16163632,16566441,16969250,17372059,17774869,18177678,18580487,19246611,19945659,20670541,21416099,22179103,22958357,23754592,24570174,25408605,26273023,27164618,28081234,29016770,29962877,30913931,31867565,32826602,33797041,34787588,35804731,36851055,37925400,39026082,40149959,41295129,42461189,43650333,44866279,46113992,47396966,48715592,50068493,51455037,52873979,54323651,55803915,57312794,58844392,60391168,61947340,63509940,65078901,66654954,68240134,69835713,71437381,73042605,74656228,76285225,77932247,79604541,81294378,82971734,84596249,86141373,87592899,88965508,90297115,91641881,93038902,94501233,96017322,97571676,99138690,100699395]},{"name":"Poland","region":"Europe & Central Asia","income":[1554,1560,1566,1572,1578,1584,1609,1634,1659,1685,1711,1738,1765,1792,1820,1848,1877,1906,1936,1966,1996,2027,2059,2091,2123,2156,2196,2236,2276,2318,2360,2403,2447,2492,2537,2583,2608,2634,2660,2685,2712,2738,2765,2792,2819,2846,2881,2916,2952,2996,3041,3087,3133,3180,3227,3276,3331,3387,3444,3502,3560,3618,3678,3738,3799,3591,3296,3007,2894,2910,2926,2987,3533,4037,4354,3696,3377,2978,2808,1809,1875,3203,3715,4134,4458,4670,4801,4832,5027,5224,5386,5530,5730,5923,6009,6248,6669,6511,6836,7078,7409,7818,8044,8473,8331,8705,9256,9854,10504,11020,11430,11605,11713,12033,11703,11307,10610,10420,10835,11138,11159,11429,11207,11418,11212,10088,9347,9553,9884,10386,11093,11776,12602,13225,13824,14565,14744,14964,15508,16314,16900,17959,19254,19996,20507,21328,22333,22740,23144,23952,24787],"lifeExpectancy":[35.9,35.9,35.9,35.9,35.9,35.9,35.9,35.9,35.9,35.9,35.9,35.9,35.9,35.9,35.9,35.9,35.9,35.9,35.9,35.9,35.9,36.2,36.5,36.8,37.1,37.4,37.7,38,38.3,38.6,38.9,39.2,39.5,39.8,40.1,40.4,40.7,41,41.3,41.6,41.9,42.2,42.5,42.9,43.2,43.5,43.8,44.1,44.4,44.7,45,45.3,45.6,38.6,46.2,46.5,46.8,47.1,47.4,47.7,48,48.3,48.6,48.9,49.2,49.5,49.8,50.3,50.8,51.3,51.8,52.3,52.8,53.3,45,44.8,41.2,33.5,23.7,15.5,34.4,47.1,54.1,57.1,58.1,59.1,59.7,60.9,62,63,63.9,64.8,65.5,66,65.6,68,68.1,67.7,68.7,68.9,69.6,70,69.7,70.4,69.9,70,70.2,70.6,70.9,71.2,70.9,70.8,70.6,70.7,70.7,70.6,71,71.2,71.1,70.8,70.7,70.9,71.1,71.2,71.1,70.8,70.7,71.1,71.7,71.8,72,72.4,72.7,73,73.2,73.8,74.3,74.6,74.9,75,75,75,75.1,75.3,75.6,76.1,76.5,76.7,76.9,77.1,77.3],"population":[15931193,16147712,16364231,16580749,16797268,17013787,17279367,17544947,17810527,18076107,18341687,18607267,18872847,19138427,19404007,19669587,19964522,20259456,20554391,20849325,21144260,21439195,21734129,22029064,22323998,22618933,22827136,23035339,23243543,23451746,23659949,23868152,24076355,24284559,24492762,24700965,24880211,25059456,25238702,25417948,25597194,25776439,25955685,26134931,26314176,26493422,26260680,26027939,25795197,25562456,25329714,25096972,24864231,24631489,24398748,24166006,24566398,24966789,25367181,25767572,26167964,26568356,26968747,27369139,27769530,28169922,28357036,28544150,28731264,28918378,29105492,29292606,29479720,29666834,29853948,30041062,29519357,28997652,28475947,27954242,27432538,26910833,26389128,25867423,25345718,24824013,25264029,25738253,26236679,26750026,27269745,27787997,28297669,28792427,29266789,29716363,30138099,30530513,30893775,31229448,31539695,31824145,32085011,32330582,32571673,32816751,33068997,33328713,33597810,33877397,34168112,34468877,34779313,35100942,35435627,35782855,36145211,36517072,36879742,37208529,37486105,37703942,37867481,37990683,38094812,38195258,38297549,38396826,38485892,38553355,38591860,38599825,38583109,38550777,38515359,38486305,38466543,38454823,38451227,38454520,38463514,38478763,38500356,38525752,38551489,38574682,38594217,38609486,38618698,38619974,38611794]},{"name":"Portugal","region":"Europe & Central Asia","income":[1643,1695,1735,1743,1778,1798,1721,1761,1823,1783,1771,1720,1789,1780,1771,1750,1792,1833,1863,1910,1944,2034,2060,2067,2013,2086,2034,2011,2037,1997,2068,2083,2188,2249,2313,2412,2352,2345,2359,2371,2286,2282,2317,2261,2241,2278,2303,2330,2318,2330,2275,2285,2245,2128,2171,2274,2386,2645,2725,2592,2674,2624,3047,2719,2977,2904,3016,3037,3203,3298,3085,2816,3249,3231,3234,2987,3231,3160,3341,3501,3337,3567,3831,3787,3806,3862,4013,4002,4256,4433,4585,4751,4928,4954,5180,5481,5786,6179,6503,6902,7413,7733,8324,9056,9269,10175,10920,11826,13148,13125,12142,12700,13361,13691,14430,15016,15153,15467,15426,15121,15533,16165,17189,18473,19424,20282,21216,21464,21000,21146,21975,22658,23555,24560,25371,26147,26468,26526,26180,26590,26744,27111,27732,27747,26895,27393,26932,25953,25677,26055,26437],"lifeExpectancy":[35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,35.6,20.4,35.6,35.6,35.6,35.6,35.6,35.6,35.6,36.7,37.7,38.8,39.9,40.9,42,43,44.1,45.2,46.2,47.3,48.3,49.4,50.5,51.5,48,50,51.2,52.5,53.9,53.8,56.2,56.9,55.5,58.7,58.9,60,61.3,62.4,61.6,61.4,61.7,64,63.2,64.4,63.1,64.6,65.2,65.4,66.4,65.9,66.8,67.1,66.7,67.4,67.9,68.6,69,69.3,69.5,69.8,70.3,70.9,71.5,71.8,72,72.3,72.6,72.8,73.1,73.4,73.7,74,74.2,74.3,74.3,74.5,74.9,75.3,75.5,75.5,75.8,76.1,76.3,76.7,76.9,77.2,77.6,78,78.4,78.7,79,79.2,79.3,79.5,79.7,79.8,79.8,79.8,79.8],"population":[4183778,4212697,4241616,4270535,4299455,4328374,4359358,4390341,4421325,4452308,4483292,4514275,4545259,4576242,4607226,4638209,4677369,4716529,4755689,4794849,4834010,4873170,4912330,4951490,4990650,5029810,5069477,5109144,5148811,5188478,5228145,5267812,5307479,5347146,5386813,5426480,5473384,5520287,5567191,5614094,5660998,5707902,5754805,5801709,5848612,5895516,5911746,5927976,5944206,5960436,5976666,5992895,6009125,6025355,6041585,6057815,6132464,6207112,6281761,6356410,6431059,6505707,6580356,6655005,6729653,6804302,6893192,6982082,7070972,7159862,7248752,7337641,7426531,7515421,7604311,7693201,7765578,7837955,7910331,7982708,8055085,8127462,8199839,8272215,8344592,8416969,8431207,8473628,8532193,8597225,8661418,8719914,8770221,8811959,8846425,8875311,8899331,8917020,8924221,8915539,8888635,8839831,8774391,8709805,8669641,8670352,8717871,8806016,8923928,9054924,9185876,9314301,9441167,9560753,9667021,9755635,9824239,9873144,9904444,9921895,9929014,9925410,9912208,9896416,9886997,9890319,9909574,9943197,9986828,10033600,10078431,10119985,10159662,10198310,10237593,10278542,10320463,10362028,10402836,10442446,10480085,10516559,10550695,10577458,10590260,10584837,10558909,10515016,10459716,10402343,10349803]},{"name":"Qatar","region":"Middle East & North Africa","income":[1399,1404,1410,1415,1420,1426,1446,1467,1489,1511,1533,1555,1578,1601,1624,1648,1672,1696,1721,1746,1771,1797,1823,1850,1877,1904,1932,1960,1989,2018,2047,2077,2107,2138,2169,2201,2233,2266,2299,2332,2366,2401,2436,2471,2507,2544,2581,2618,2657,2528,2406,2290,2179,2074,2185,2301,2426,2557,2534,2512,2232,2201,2170,2140,1930,1741,1570,1416,1277,1152,1143,1133,1124,1115,1106,1097,1088,1079,1070,1061,1073,1084,1096,1108,1343,1628,1973,2486,3132,3945,4970,6261,7888,9937,12518,15769,19865,25024,31524,39711,50024,63016,79381,99995,125963,158673,160147,162805,165564,162379,160783,164858,145688,150718,148451,134862,122762,102308,90054,85422,76910,75482,71067,71568,73074,73402,70806,77977,76440,76944,77809,79461,100111,107276,107741,112238,112539,117133,115622,126335,119134,127563,126364,126076,122655,127984,133734,130990,131579,133563,132877],"lifeExpectancy":[30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,25.5,30.8,30.8,30.8,30.9,30.9,30.9,30.9,31,31,31,31.1,31.1,31.1,31.1,31.2,31.2,31.2,31.3,31.3,31.3,31.4,31.4,33.7,36,38.3,40.6,42.9,45.2,47.6,49.9,52.2,54.5,54.9,55.8,56.6,57.5,58.3,59.1,59.9,60.7,61.5,62.3,63.1,63.9,64.6,65.4,66.2,67,67.7,68.4,69.1,69.8,70,70.2,70.4,70.7,70.9,71.2,71.4,71.6,71.9,72.1,72.3,73,73.6,74.4,75,75.6,76.1,76.5,76.8,77,77,77,77,77,77,77,77.1,77.1,77.1,77.2,77.3,77.5,77.9,78.3,78.8,79.3,79.9,80.4,80.9,81.3,81.6,81.7,81.8,81.9,82],"population":[14104,14119,14133,14148,14162,14177,14230,14283,14337,14390,14443,14496,14549,14603,14656,14709,14786,14863,14940,15017,15094,15170,15247,15324,15401,15478,15559,15640,15722,15803,15884,15965,16046,16128,16209,16290,16375,16461,16546,16631,16717,16802,16887,16972,17058,17143,17280,17417,17554,17691,17829,17966,18103,18240,18377,18514,18689,18864,19039,19214,19389,19564,19739,19914,20089,20264,20456,20647,20839,21030,21222,21413,21605,21796,21988,22179,22461,22743,23025,23307,23589,23871,24153,24435,24717,24999,27475,29843,32029,34016,35835,37581,39402,41487,44059,47309,51355,56187,61647,67487,73543,79735,86161,93043,100697,109329,119246,130377,142111,153593,164333,173759,182370,192018,205244,223715,248053,277242,309276,341286,371071,398326,423327,445203,463062,476478,485114,489668,492120,495179,501019,511864,528213,548618,570643,593453,613720,634388,668165,732096,836924,988448,1178955,1388962,1591151,1765513,1905437,2015624,2101288,2172065,2235355]},{"name":"Romania","region":"Europe & Central Asia","income":[1513,1534,1555,1577,1598,1620,1644,1669,1694,1719,1744,1770,1796,1823,1850,1877,1905,1933,1962,1991,2021,2051,2081,2112,2143,2175,2203,2232,2261,2290,2319,2350,2380,2411,2442,2474,2514,2555,2596,2638,2681,2725,2769,2814,2860,2906,3005,3106,3210,3183,3156,3128,3100,3071,3041,3012,3005,2996,2985,2971,2954,2936,2951,2962,2834,3046,3119,2949,3096,3132,3212,3248,3113,3460,3356,3254,3153,3054,2957,2862,2769,2678,2589,2502,3034,3676,3933,4202,4475,4773,5062,5235,5417,5611,5829,6052,6429,6637,7087,7512,7959,8836,9190,9193,9492,9602,10824,11396,11648,12166,12563,13062,13207,13507,13769,13705,13523,13452,13281,13759,13673,13836,13471,13367,12872,11449,10059,9253,9406,9794,10516,10969,10329,9855,9752,9970,10684,11429,12105,13286,13941,15246,16442,18032,16947,16888,17363,17502,18182,18569,19203],"lifeExpectancy":[35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,35.7,26.4,35.7,35.7,36.2,36.7,37.3,37.8,38.3,38.8,39.4,39.9,40.4,40.9,41.5,42,43,44.1,45.2,46.2,47.3,48.3,49.4,50.4,45.3,44.6,42.3,41.1,45.3,53.9,57.9,58.9,60,61,61,60.9,61,61.3,61.7,62.3,63,63.9,64.8,65.6,66.4,67,67.4,67.6,67.7,67.6,67.6,67.6,67.8,68,68.8,69.1,69.4,69.6,69.8,70.1,69.7,69.6,69.3,69.5,69.7,70,70.3,70.1,69.7,69.7,69.1,69.4,69.4,69.8,70.3,70.1,69.8,69.4,69.3,69,69.1,69.8,70.5,70.8,70.9,71.2,71.6,72,72.6,73,73.3,73.4,73.5,74,74.9,75.6,76,76.4,76.8],"population":[8860148,8918387,8976626,9034865,9093104,9151343,9209786,9268229,9326673,9385116,9443559,9502002,9560445,9618889,9677332,9735775,9795603,9855431,9915258,9975086,10034914,10094742,10154570,10214397,10274225,10334053,10398503,10462952,10527402,10591851,10656301,10720751,10785200,10849650,10914099,10978549,11068544,11158540,11248535,11338530,11428526,11518521,11608516,11698511,11788507,11878502,11922733,11966964,12011195,12055426,12099657,12143887,12188118,12232349,12276580,12320811,12495174,12669537,12843899,13018262,13192625,13366988,13541351,13715713,13890076,14064439,14229576,14394712,14559849,14724985,14890122,15055259,15220395,15385532,15550668,15715805,15767854,15819902,15871951,15924000,15976049,16028097,16080146,16132195,16184243,16236292,16512672,16764920,17005725,17243807,17483911,17726584,17968397,18202623,18420348,18613835,18780105,18924068,19059874,19207098,19379554,19582342,19810623,20055983,20305391,20549016,20783864,21011826,21233593,21451256,21665780,21877548,22083933,22279485,22457125,22612149,22739965,22842426,22928996,23013190,23103637,23205267,23312045,23408397,23472562,23489361,23454143,23373155,23255683,23115921,22965125,22804526,22633398,22458737,22288573,22128139,21983221,21851988,21722664,21578318,21407619,21205977,20979708,20741669,20510263,20298838,20111664,19944954,19794163,19651554,19511324]},{"name":"Russia","region":"Europe & Central Asia","income":[1959,1971,1984,1997,2010,2023,2036,2049,2062,2076,2089,2103,2116,2130,2144,2158,2172,2186,2200,2214,2229,2143,2506,2411,2242,2233,2046,2240,2539,2887,2672,2944,2895,2972,3154,3087,3165,3439,3203,3542,3136,2997,2881,3146,3267,3487,3222,3481,3658,3494,3596,3198,2808,1719,1482,1489,1364,1584,1826,2315,2895,3253,3391,3569,3613,3779,3816,3760,3904,4265,4880,5216,5652,5640,5873,5632,5530,5430,5331,5235,5140,5047,5611,6343,6932,7514,7424,7775,7981,8234,8787,9465,9496,10037,9755,10496,10908,11027,10620,11836,12363,12823,13256,13902,13972,14915,15170,15113,16236,16594,16530,17192,17487,17818,17632,17557,17619,17951,18417,18527,18576,19221,19355,19660,19906,19349,18332,15661,14320,12535,12013,11597,11779,11173,11925,13173,13902,14629,15768,16967,18118,19660,21374,22506,20739,21664,22570,23299,23561,23293,23038],"lifeExpectancy":[29.6,29.6,29.6,27.9,27.9,31.1,28.1,25.9,29.5,30.5,31.1,30.9,31.3,27.8,30.8,30.2,32.2,26.7,29,32.7,30.8,34.3,33.2,33.1,31,29.9,26.4,21.3,27.6,28.1,26.9,28.3,30.5,27.9,31.6,30.7,29,29.8,31.8,32.2,30.5,32,33.6,33.6,32.4,31.4,35.1,35.5,33.3,33,31.5,31.5,29,23,25,20.5,23.8,24.7,33.6,36.1,35.2,38.4,37.4,38.8,37.3,36.4,34.9,32.7,17.3,38.1,39.5,41,39.8,41.3,43.5,41.1,22.8,17.8,15.8,26.8,33.8,45.9,40.2,52,54.8,57.1,57.6,58,58.8,60.8,63.1,64.6,63.7,66.6,67.4,68.4,68.6,68.3,68.7,69.5,69.1,69.2,69,68.9,68.4,68.5,68.6,68.7,68.7,68.6,68.2,68,67.8,67.7,67.4,67.3,67.5,67.9,67.7,67.4,68.2,69.8,70.1,70,69.8,69.6,69.4,68,65.2,63.6,64.2,65.9,67.4,67.6,66.2,65.4,65.1,64.9,64.8,65,64.8,66.1,67.2,67.6,68.3,68.7,69.4,70.4,71.3,72.2,73.1],"population":[47127595,47559777,47991959,48424140,48856322,49288504,49759334,50230165,50700995,51171825,51642656,52113486,52584316,53055146,53525977,53996807,54512280,55027752,55543225,56058698,56574171,57089643,57605116,58120589,58636061,59151534,59720048,60288562,60857076,61425590,61994105,62562619,63131133,63699647,64268161,64836675,65457428,66078181,66698935,67319688,67940441,68561194,69181947,69802701,70423454,71044207,71726985,72409763,73092541,73775319,74458097,75140875,75823653,76506431,77189209,77871987,78621743,79371499,80121256,80871012,81620768,82370524,83120280,83870037,84619793,85369549,86191492,87013435,87835379,88657322,89479265,90301208,91123151,91945095,92767038,93588981,94509949,95430916,96351884,97272851,98193819,99114787,100035754,100956722,101877689,102798657,104306354,105969442,107729541,109537868,111355224,113152347,114909562,116615781,118266807,119860289,121390327,122842753,124193114,125412397,126483874,127396324,128165823,128837792,129475269,130126383,130808492,131517584,132254362,133012558,133788113,134583945,135406786,136259517,137144808,138063062,139006739,139969243,140951400,141955200,142975753,144016095,145056221,146040116,146895053,147568552,148040354,148322473,148435811,148416292,148293265,148078355,147772805,147385440,146924174,146400951,145818121,145195521,144583147,144043914,143622566,143338407,143180249,143123163,143126660,143158099,143211476,143287536,143367341,143429435,143456918]},{"name":"Rwanda","region":"Sub-Saharan Africa","income":[468,469,469,470,470,471,472,472,473,473,474,475,475,476,476,477,478,478,479,479,480,481,481,482,482,483,484,484,485,486,486,487,487,488,489,489,490,490,491,492,492,493,494,494,495,495,496,497,497,498,499,499,500,501,501,502,503,503,504,505,506,506,507,508,509,509,510,511,512,513,513,514,515,516,516,517,518,519,519,520,521,522,522,523,524,525,544,551,560,580,586,595,604,607,627,631,601,669,588,506,528,549,572,596,642,691,679,662,663,675,777,740,752,798,846,920,948,990,1014,945,962,989,953,892,884,856,863,973,965,509,695,749,781,768,754,764,796,880,879,928,973,1038,1087,1173,1210,1262,1324,1400,1426,1485,1549],"lifeExpectancy":[31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,31.8,28,27,26,25,24,23,22,31.8,31.8,26,25,24,31.8,31.8,31.8,31.8,31.8,31.8,31.8,26,24,12.3,31.8,31.8,31.8,31.9,31.9,26.1,25.1,24.2,32,26.2,24.3,32.1,32.1,32.6,33,33.4,33.9,34.3,34.8,35.2,35.7,36.1,36.5,37,34.6,20.1,38.2,38.6,39,39.4,39.8,40.2,40.4,40.7,41.1,41.4,41.7,42.1,42.4,42.7,43.1,43.4,43.7,44,44.3,44.6,44.9,45.1,45.3,45.5,45.7,45.8,45.8,45.7,45.7,45.6,45.6,45.7,46,46.4,47,48,48.8,49.4,49.9,50.2,50.3,50.3,50.4,50.2,50,49.4,48.9,48.3,47.6,15.6,42,45.2,36.3,44.8,48.1,50,51.2,52.7,54.2,55.7,57.3,59.3,61,62.2,62.9,63.7,64.3,64.7,65.3,65.9,66.5],"population":[1240587,1249125,1257663,1266202,1274740,1283278,1292385,1301491,1310598,1319705,1328812,1337918,1347025,1356132,1365238,1374345,1384087,1393829,1403571,1413313,1423056,1432798,1442540,1452282,1462024,1471766,1482233,1492700,1503167,1513634,1524101,1534568,1545035,1555502,1565969,1576436,1587614,1598791,1609969,1621146,1632324,1643501,1654679,1665856,1677034,1688211,1699785,1711358,1722932,1734505,1746079,1757652,1769226,1780799,1792373,1803946,1815439,1826932,1838426,1849919,1861412,1872905,1884398,1895892,1907385,1918878,1931104,1943329,1955555,1967780,1980006,1992231,2004457,2016682,2028908,2041133,2055638,2070144,2084649,2099155,2113660,2128165,2142671,2157176,2171682,2186187,2250675,2313306,2378442,2448814,2525524,2607945,2693819,2779550,2860694,2933424,2996091,3050596,3102968,3161719,3232937,3319077,3418313,3527260,3640591,3754546,3868345,3983707,4102336,4226836,4359166,4499720,4648070,4804375,4968628,5140786,5313908,5486431,5669251,5877556,6117966,6410594,6742390,7048075,7239097,7259740,7071393,6712924,6300358,5995987,5912755,6097688,6506118,7047196,7585143,8021875,8329113,8539029,8686469,8828956,9008230,9231041,9481083,9750314,10024594,10293669,10556429,10817350,11078095,11341544,11609666]},{"name":"Samoa","region":"East Asia & Pacific","income":[1636,1641,1647,1653,1658,1664,1669,1675,1681,1687,1692,1698,1704,1710,1715,1721,1727,1733,1739,1745,1751,1757,1763,1768,1775,1781,1787,1793,1799,1805,1811,1817,1823,1829,1836,1842,1848,1854,1861,1867,1873,1880,1886,1893,1899,1905,1912,1918,1925,1949,1973,1997,2022,2047,2072,2098,2123,2148,2173,2199,2224,2251,2277,2304,2331,2358,2386,2414,2442,2471,2500,2529,2559,2589,2619,2650,2681,2712,2744,2776,2808,2841,2874,2908,2942,2976,3011,3046,3081,3117,3153,3190,3227,3264,3302,3341,3379,3419,3458,3498,3539,3580,3621,3663,3706,3748,3792,3836,3880,3433,3273,3548,3493,3686,4149,3879,3517,3471,3477,3512,3636,3818,3815,3736,3847,3649,3539,3500,3608,3483,3686,3925,3929,3997,4066,4326,4601,4773,4958,5155,5335,5406,5711,5731,5418,5405,5675,5654,5502,5525,5558],"lifeExpectancy":[25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,25.4,1,25.4,25.4,25.6,25.8,26,26.2,26.4,26.6,26.8,27,27.2,27.4,27.6,27.8,28,28.2,29.6,31,32.5,33.9,35.3,36.7,38.1,39.6,41,42.4,43.8,45.2,46.6,48.1,49.5,50.9,51.4,52.1,52.8,53.5,54.2,54.9,55.7,56.4,57.1,57.8,58.5,59.2,59.9,60.6,61.3,62,62.7,63.4,64.1,64.8,64.7,64.5,64.4,64.5,64.8,65.3,65.7,66.1,66.4,66.5,66.7,66.9,67.1,67.2,67.5,67.7,67.9,68.1,68.3,68.4,68.5,68.8,68.9,69,69.2,69.3,69.5,69.6,69.7,69.9,70.1,70.3,70.5,70.7,70.8,71.1,71.3,71.4,69.9,71.6,71.6,71.6,71.8,72,72.2],"population":[42307,42012,41717,41423,41128,40833,40557,40281,40004,39728,39452,39176,38900,38623,38347,38071,37813,37556,37298,37041,36783,36525,36268,36010,35753,35495,35377,35258,35140,35021,34903,34784,34666,34547,34429,34310,34664,35018,35372,35726,36080,36434,36788,37142,37496,37850,37699,37547,37396,37245,37094,36942,36791,36640,36488,36337,37299,38261,39224,40186,41148,42110,43072,44035,44997,45959,47493,49026,50560,52094,53628,55161,56695,58229,59762,61296,63377,65457,67538,69618,71699,73780,75860,77941,80021,82102,84439,86818,89235,91695,94209,96801,99503,102352,105391,108645,112121,115786,119564,123354,127068,130687,134194,137503,140520,143175,145437,147323,148889,150219,151383,152390,153244,154010,154763,155554,156435,157401,158383,159281,160030,160591,161014,161424,162001,162865,164073,165568,167206,168786,170158,171276,172191,172979,173758,174614,175567,176592,177677,178794,179928,181072,182238,183440,184700,186029,187434,188901,190390,191845,193228]},{"name":"Sao Tome and Principe","region":"Sub-Saharan Africa","income":[959,961,963,964,966,968,970,972,973,975,977,979,981,983,984,986,988,990,992,993,995,997,999,1001,1003,1005,1006,1008,1010,1012,1014,1016,1018,1020,1021,1023,1025,1027,1029,1031,1033,1035,1037,1039,1041,1043,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1066,1071,1075,1080,1084,1089,1093,1098,1102,1107,1112,1116,1121,1125,1130,1134,1139,1144,1148,1153,1157,1162,1167,1171,1176,1181,1185,1190,1195,1199,1198,1199,1202,1254,1129,1194,1186,1302,1169,1296,1397,1493,1586,1675,1759,1865,1949,2031,2115,2196,2267,2276,2272,2354,2426,2403,2883,2883,3266,3157,2777,2817,2668,2469,2653,2451,2330,2327,2350,2254,2235,2207,2190,2196,2197,2186,2164,2174,2186,2157,2188,2191,2291,2341,2321,2546,2524,2673,2701,2743,2801,2837,2876,2923,3003],"lifeExpectancy":[31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,12,31,31,31,31.1,31.1,31.2,31.2,31.3,31.3,31.4,31.4,31.4,31.5,31.5,31.6,31.6,31.7,32.7,33.7,34.7,35.7,36.7,37.8,38.8,39.8,40.8,41.8,42.8,43.8,44.9,45.9,46.9,47.1,47.6,48.1,48.6,49.1,49.7,50.3,50.9,51.5,52.2,52.8,53.4,54,54.6,55.1,55.7,56.3,56.9,57.5,58.1,58.9,59.6,60.3,60.9,61.5,62.1,62.5,62.8,63,62.9,62.6,62.3,62.2,62.2,62.5,62.9,63.4,63.8,64.1,64.4,64.5,64.7,64.8,64.9,64.9,65,65,65.1,65.2,65.3,65.5,65.7,65.8,66,66.2,66.5,66.8,67.1,67.4,67.6,67.9,68.2,68.4,68.6,68.8],"population":[31916,32157,32399,32641,32882,33124,33383,33643,33902,34162,34421,34680,34940,35199,35459,35718,35998,36277,36557,36836,37116,37395,37675,37954,38234,38513,38816,39119,39422,39725,40029,40332,40635,40938,41241,41544,41870,42196,42522,42848,43174,43499,43825,44151,44477,44803,45154,45504,45855,46205,46556,46907,47257,47608,47958,48309,48684,49058,49433,49807,50182,50556,50930,51305,51680,52054,52458,52861,53265,53668,54072,54475,54878,55282,55686,56089,56480,56871,57262,57653,58045,58436,58827,59218,59609,60000,59203,58525,58163,58238,58782,59744,60990,62316,63476,64255,64549,64429,64181,64209,64797,66057,67874,70040,72240,74251,75989,77536,79026,80670,82607,84889,87436,90095,92652,94953,96947,98692,100285,101871,103557,105364,107264,109268,111373,113575,115900,118346,120849,123318,125694,127946,130110,132284,134602,137164,140003,143085,146357,149732,153146,156584,160064,163595,167196,170880,174646,178484,182386,186342,190344]},{"name":"Saudi Arabia","region":"Middle East & North Africa","income":[906,907,909,910,911,912,914,916,919,921,923,926,928,930,933,935,937,939,942,944,946,949,951,954,956,958,961,963,965,968,970,973,975,977,980,982,985,987,990,992,994,997,999,1002,1004,1007,1009,1012,1014,1017,1021,1024,1027,1030,1033,1036,1040,1044,1048,1052,1056,1060,1064,1067,1071,1034,997,962,928,930,931,933,934,936,937,969,1002,1036,1071,1107,1145,1184,1371,1587,1838,2128,2465,2854,3305,3827,4432,5132,5942,6881,7968,9226,10684,12371,14325,16587,19207,22240,25752,29819,34527,39979,47016,52961,56842,89417,68111,80328,77548,71169,69720,72465,67447,55569,49634,44693,36344,35239,32136,32091,32281,35681,37688,38237,37182,36526,35870,36531,37060,37671,36746,37531,36387,34875,35859,37556,38892,39958,41464,44189,44276,45598,49230,50916,51294,52096,52469],"lifeExpectancy":[32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,26.6,32.1,32.1,32.3,32.5,32.8,33,33.2,33.4,33.6,33.8,34.1,34.3,34.5,34.7,34.9,35.2,35.4,35.6,35.8,36,36.2,36.5,36.7,36.9,37.1,37.3,37.6,39.5,41.5,43.5,45.5,47.5,48,48.7,49.4,50.1,50.8,51.5,52.2,52.9,53.6,54.4,55.1,55.8,56.6,57.4,58.2,59.1,60.1,61.2,62.4,63.6,64.1,64.8,65.4,66.2,66.8,67.4,68,68.6,69.1,69.7,70.3,70.8,71.2,71.5,71.8,72.1,72.3,72.6,72.7,72.9,73.2,73.5,73.8,74.1,74.4,74.7,75,75.4,75.7,76.1,76.4,76.6,76.8,77,77.2,77.4,77.4,77.5,77.6,77.7,77.8,77.8,77.9,78,78.1],"population":[2311880,2317379,2322878,2328377,2333876,2339375,2346030,2352684,2359339,2365993,2372648,2379303,2385957,2392612,2399266,2405921,2413340,2420759,2428177,2435596,2443015,2450434,2457853,2465271,2472690,2480109,2487774,2495439,2503104,2510769,2518434,2526098,2533763,2541428,2549093,2556758,2564649,2572541,2580432,2588323,2596215,2604106,2611997,2619888,2627780,2635671,2645851,2656031,2666210,2676390,2686570,2696750,2706930,2717109,2727289,2737469,2749099,2760728,2772358,2783987,2795617,2807246,2818876,2830505,2842135,2853764,2865888,2878011,2890135,2902258,2914382,2926505,2938629,2950752,2962876,2974999,2989633,3004266,3018900,3033534,3048168,3062801,3077435,3092069,3106702,3121336,3198551,3283299,3372617,3464554,3558164,3653563,3751876,3855089,3965811,4086539,4218879,4362863,4516663,4677409,4843635,5015672,5196349,5389848,5601649,5836394,6096106,6382106,6697486,7045477,7428705,7845300,8295384,8785326,9323290,9912917,10556936,11247085,11962244,12674089,13361284,14016569,14642354,15239174,15810980,16361453,16890555,17398523,17890529,18373412,18853670,19331311,19809633,20302193,20825955,21392273,22007937,22668102,23357887,24055573,24745230,25419994,26083522,26742842,27409491,28090647,28788438,29496047,30201051,30886545,31540372]},{"name":"Senegal","region":"Sub-Saharan Africa","income":[620,623,626,629,632,635,638,641,644,647,650,653,656,660,663,666,669,673,676,679,682,686,689,692,696,699,702,706,709,713,716,720,723,727,730,734,737,741,744,748,751,755,759,762,766,770,774,777,781,798,814,832,849,867,885,904,924,945,966,988,1010,1032,1055,1079,1103,1127,1153,1178,1205,1231,1259,1287,1315,1345,1375,1405,1436,1468,1501,1534,1568,1603,1639,1675,1712,1750,1784,1816,1848,1880,1912,1943,1975,2005,2035,2032,2076,2096,2127,2118,2137,2135,2054,2127,1934,2041,1979,2046,1876,1899,1996,2129,2011,1874,1946,1826,1758,1965,1955,1810,1823,1855,1875,1914,1828,1856,1846,1813,1782,1731,1774,1764,1774,1834,1904,1916,1953,1915,1988,2049,2106,2099,2143,2162,2153,2182,2163,2174,2185,2206,2251],"lifeExpectancy":[25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,11.9,25.2,25.2,25.4,25.5,25.4,25.3,25.2,25.1,25,25.4,25.8,26.2,26.6,27,27.4,27.8,28.2,28.6,29,29.4,29.9,30.3,30.8,31.2,31.7,32.1,32.6,33.9,35.2,36.5,37.8,39.1,39.5,40.1,40.7,41.3,41.9,42.5,43,43.5,43.9,44.3,44.6,44.8,45,45.1,45.2,45.4,45.5,45.8,46.2,46.8,47.2,47.7,48.2,48.8,49.4,50.1,50.8,51.5,52.1,52.8,53.4,54.1,54.6,55.2,55.8,56.3,56.9,57.4,57.7,58.1,58.3,58.5,58.6,58.7,58.8,59,59,59.2,59.6,60,60.6,61.1,61.7,62.3,62.8,63.4,63.9,64.3,64.7,65,65.2,65.5,65.7,65.9,66.1],"population":[1374199,1383839,1393478,1403118,1412757,1422397,1432692,1442988,1453283,1463579,1473874,1484169,1494465,1504760,1515056,1525351,1536385,1547419,1558454,1569488,1580522,1591556,1602590,1613625,1624659,1635693,1647579,1659465,1671351,1683237,1695124,1707010,1718896,1730782,1742668,1754554,1767268,1779982,1792696,1805410,1818125,1830839,1843553,1856267,1868981,1881695,1895156,1908617,1922077,1935538,1948999,1962460,1975921,1989381,2002842,2016303,2030298,2044293,2058288,2072283,2086279,2100274,2114269,2128264,2142259,2156254,2171220,2186187,2201153,2216120,2231086,2246052,2261019,2275985,2290952,2305918,2322990,2340062,2357134,2374206,2391278,2408350,2425422,2442494,2459566,2476638,2529699,2586817,2647955,2713038,2781955,2854549,2930627,3009966,3092338,3177560,3265558,3356421,3450418,3547939,3649308,3754268,3862783,3975614,4093763,4217754,4348499,4485342,4625377,4764623,4900491,5031849,5160313,5289445,5424299,5568651,5723541,5888261,6062682,6246140,6438024,6638186,6846556,7062540,7285378,7514201,7749559,7990736,8234147,8475136,8710746,8939438,9163184,9386923,9617641,9860578,10118078,10389457,10673320,10967016,11268994,11578430,11897230,12229703,12581624,12956791,13357003,13780108,14221041,14672557,15129273]},{"name":"Serbia","region":"Europe & Central Asia","income":[1845,1852,1859,1866,1874,1881,1914,1947,1981,2015,2050,2086,2122,2159,2197,2235,2274,2313,2353,2394,2436,2478,2521,2565,2610,2655,2674,2692,2711,2730,2749,2768,2787,2806,2826,2845,2891,2938,2985,3033,3082,3132,3182,3234,3286,3339,3339,3340,3340,3329,3318,3307,3296,3284,3273,3262,3286,3325,3439,3624,3738,3931,3802,4066,4209,4056,3868,3450,3498,3568,3456,3841,3840,4078,4232,4182,4133,4084,4036,3989,3942,3895,3849,4517,4881,4496,4598,4173,4718,4901,5129,4955,5712,5879,6518,6843,7057,7096,7733,8367,8481,8823,8867,8948,9837,10197,11234,11477,11721,13070,12910,13138,13914,14503,15313,15900,16028,15983,15972,16228,16214,16732,16406,16043,15712,14457,13278,9531,6622,6786,7167,7348,7899,8121,7161,7741,8141,8725,9134,9983,10568,11130,11833,12522,12180,12301,12572,12505,12889,12717,12908],"lifeExpectancy":[35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,35.5,25,16,21,20,9.9,35.5,35.5,36.3,37,37.8,38.5,39.3,40,40.8,41.5,42.3,43.1,43.8,44.6,45.3,46.1,46.8,47.6,48.3,49.1,49.8,50.6,44.1,41.8,40.3,38.8,43.3,51,55.2,56.6,57.4,58.2,58.4,58.8,59.3,59.8,60.3,60.8,61.3,61.8,62.4,62.9,63.4,64,64.5,65,65.5,66,66.5,66.9,67.3,67.7,68.1,68.6,69,69.4,69.8,70.1,70.4,70.7,71,71.2,71.5,71.8,72,72.3,72.6,72.9,73.1,73.4,73.5,73.7,73.2,73.5,73.3,72.9,72.7,72.7,73,74.2,74.6,74.7,75,75.3,75.5,75.6,75.8,76,76.2,76.4,76.7,77,77.3,77.5,77.7,77.9,78.1],"population":[3194923,3222875,3250826,3278778,3306729,3334681,3365012,3395343,3425673,3456004,3486335,3516666,3546997,3577327,3607658,3637989,3671058,3704127,3737196,3770265,3803334,3836403,3869472,3902541,3935610,3968679,4004988,4041297,4077606,4113915,4150225,4186534,4222843,4259152,4295461,4331770,4371255,4410740,4450224,4489709,4529194,4568679,4608164,4647648,4687133,4726618,4769897,4813176,4856454,4899733,4943012,4986291,5029570,5072848,5116127,5159406,5206812,5254218,5301624,5349030,5396437,5443843,5491249,5538655,5586061,5633467,5685229,5736991,5788753,5840515,5892277,5944038,5995800,6047562,6099324,6151086,6209203,6267320,6325437,6383554,6441671,6499788,6557905,6616022,6674139,6732256,6853289,6963396,7063169,7153366,7234916,7308931,7376692,7439609,7499166,7556730,7613356,7669610,7725501,7780683,7835084,7888802,7942638,7998000,8056663,8119861,8187994,8260626,8337076,8416250,8497168,8579631,8663327,8746982,8829038,8908293,8984599,9057974,9127679,9192917,9253401,9306283,9351938,9396975,9450482,9517670,9603621,9702958,9797838,9863781,9884146,9851958,9775008,9669648,9559819,9463306,9384816,9320350,9268451,9225001,9186685,9154760,9130353,9109535,9087019,9059046,9023881,8982578,8937605,8892815,8850975]},{"name":"Seychelles","region":"Sub-Saharan Africa","income":[1024,1028,1032,1036,1040,1044,1049,1053,1057,1061,1065,1070,1074,1078,1082,1087,1091,1095,1100,1104,1108,1113,1117,1122,1126,1131,1135,1140,1144,1149,1153,1158,1162,1167,1172,1176,1181,1186,1190,1195,1200,1205,1209,1214,1219,1224,1229,1233,1238,1285,1332,1382,1434,1487,1543,1600,1660,1723,1788,1855,1925,1997,2072,2150,2231,2314,2401,2492,2585,2682,2783,2888,2996,3108,3225,3346,3472,3602,3737,3877,4023,4174,4330,4492,4661,4836,5106,5186,5275,5503,5482,5428,5540,5576,5715,6003,5520,5851,6240,6318,6184,6185,6051,6410,6242,6536,7402,7665,8204,8154,8277,8930,9401,9898,11366,10894,10311,10099,10039,10411,11392,11409,11470,12038,13200,14116,14351,15185,15893,15507,15097,15609,17272,18361,18341,18453,18018,17693,16832,16412,17803,19086,20968,20065,19765,20364,22556,23685,24805,25038,25684],"lifeExpectancy":[37,37,37,37,37,37,37.3,37.5,37.8,38,38.3,38.6,38.8,39.1,39.4,39.6,39.9,40.1,40.4,40.7,40.9,41.2,41.5,41.7,42,42.2,42.5,42.8,43,43.3,43.6,43.8,44.1,44.3,44.6,44.9,45.1,45.4,45.7,45.9,46.2,46.4,46.7,47,47.2,47.5,47.8,48,48.3,48.5,48.8,49.1,49.3,49.6,49.9,50.1,50.4,50.6,50.9,51.2,51.4,51.7,51.9,52.2,52.5,52.7,53,53.3,53.5,53.8,54,54.3,54.6,54.8,55.1,55.3,55.6,55.9,56.1,56.4,56.6,56.9,57.2,57.4,57.7,58,57.9,57.8,57.8,58,58.3,58.7,59.2,59.8,60.4,61.1,61.7,62.3,62.8,63.2,63.6,64,64.3,64.7,65.1,65.6,66.3,66.8,67.3,67.7,68.1,68.5,68.8,69.1,69.5,69.9,70.1,70.2,70.2,70.1,69.9,69.7,69.5,69.4,69.4,69.4,69.5,69.7,69.9,70.1,70.2,70.3,70.3,70.6,70.8,70.9,71,71.1,71.3,71.5,71.9,72.2,72.4,72.6,72.7,72.8,72.9,73.1,73.3,73.5,73.7],"population":[14632,14682,14733,14783,14834,14884,14936,14988,15041,15093,15145,15197,15249,15302,15354,15406,15481,15555,15630,15704,15779,15853,15928,16002,16077,16151,16410,16668,16927,17186,17445,17703,17962,18221,18479,18738,19116,19495,19873,20252,20630,21008,21387,21765,22144,22522,22749,22976,23203,23430,23657,23884,24111,24338,24565,24792,24992,25192,25392,25592,25792,25992,26192,26392,26592,26792,27220,27648,28076,28504,28933,29361,29789,30217,30645,31073,31598,32123,32648,33173,33698,34222,34747,35272,35797,36322,36883,37438,37966,38453,38904,39332,39769,40252,40829,41538,42402,43409,44515,45651,46770,47851,48911,49985,51124,52364,53706,55128,56605,58102,59589,61058,62500,63880,65153,66292,67298,68176,68906,69463,69841,70011,70010,69990,70150,70627,71496,72706,74111,75493,76703,77678,78474,79213,80066,81154,82519,84096,85765,87356,88747,89896,90841,91634,92360,93081,93810,94524,95215,95868,96471]},{"name":"Sierra Leone","region":"Sub-Saharan Africa","income":[915,919,924,928,932,937,942,946,951,955,960,965,969,974,979,983,988,993,998,1002,1007,1012,1017,1022,1027,1032,1037,1042,1047,1052,1057,1062,1067,1073,1078,1083,1088,1093,1099,1104,1109,1115,1120,1126,1131,1136,1142,1148,1153,1155,1157,1159,1160,1162,1164,1166,1163,1160,1157,1153,1150,1147,1144,1140,1137,1134,1131,1127,1124,1120,1117,1114,1110,1107,1103,1100,1096,1093,1089,1086,1082,1079,1075,1072,1068,1064,1105,1119,1140,1183,1202,1224,1246,1257,1303,1319,1317,1349,1345,1333,1399,1458,1419,1526,1630,1650,1601,1549,1563,1591,1600,1515,1500,1467,1513,1544,1598,1582,1518,1497,1415,1327,1356,1352,1341,1334,1361,1109,1135,1124,1041,1061,996,1006,969,1006,900,1087,1133,1154,1158,1185,1249,1289,1304,1347,1400,1582,1865,1959,2085],"lifeExpectancy":[25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,11.9,25.1,25.1,25.4,25.6,25.9,26.1,26.4,26.6,26.7,26.9,27,27.1,27.3,27.6,27.9,28.2,28.5,28.7,29,29.3,29.6,29.9,30.2,30.5,30.8,31.1,31.4,32.3,33.2,34.1,35.1,36,36.3,36.8,37.2,37.7,38.1,38.6,39.1,39.5,40,40.5,40.9,41.4,41.8,42.4,42.9,43.6,44.3,45.2,46.2,47.2,47.5,47.7,47.9,48.1,48.2,48.3,48.4,48.5,48.5,48.4,48.5,48.6,48.9,49.2,49.5,49.8,50.1,50.4,50.8,51.1,50.9,51.3,51.2,51.3,51.2,52.2,52.1,51.1,50.6,52.2,52.5,52.9,53.3,53.8,54.4,54.9,55.5,55.9,56.1,56.5,56.8,57.3,57.7,58.1,58.5],"population":[1080496,1088099,1095702,1103304,1110907,1118510,1126632,1134754,1142876,1150998,1159120,1167241,1175363,1183485,1191607,1199729,1208435,1217142,1225848,1234554,1243261,1251967,1260673,1269379,1278086,1286792,1296172,1305551,1314931,1324310,1333690,1343070,1352449,1361829,1371208,1380588,1390623,1400658,1410693,1420728,1430764,1440799,1450834,1460869,1470904,1480939,1491544,1502149,1512754,1523359,1533965,1544570,1555175,1565780,1576385,1586990,1597971,1608952,1619933,1630914,1641896,1652877,1663858,1674839,1685820,1696801,1708542,1720283,1732024,1743765,1755506,1767246,1778987,1790728,1802469,1814210,1827189,1840168,1853147,1866126,1879106,1892085,1905064,1918043,1931022,1944001,1962818,1983321,2005162,2028070,2051845,2076362,2101568,2127479,2154160,2181701,2210169,2239581,2269890,2301023,2332999,2365801,2399667,2435197,2473165,2514151,2558395,2605837,2656380,2709797,2765914,2824827,2886607,2951001,3017670,3086406,3155368,3224346,3296530,3376371,3466044,3569102,3681945,3791078,3878211,3931208,3945899,3929182,3893891,3858559,3837807,3833053,3843472,3878475,3948800,4060709,4220198,4422154,4647701,4870467,5071271,5243214,5391108,5521838,5647194,5775902,5908908,6043157,6178859,6315627,6453184]},{"name":"Singapore","region":"East Asia & Pacific","income":[1132,1135,1137,1140,1142,1145,1177,1210,1244,1279,1314,1351,1389,1428,1468,1509,1552,1595,1640,1686,1733,1782,1832,1883,1936,1990,2046,2103,2162,2223,2285,2349,2415,2482,2552,2624,2890,2732,2351,2272,2516,2828,2579,2963,2996,3255,2926,2512,2182,2617,2678,2222,3090,2424,2760,2385,2710,3602,3710,3650,4135,3432,2551,3048,4313,3977,2943,2574,3658,4335,4905,4894,5338,4544,5307,5284,5260,5235,5211,5186,5160,5134,5108,5081,5055,5027,4753,3312,3963,4553,4198,4629,4116,4134,4656,4990,5520,5372,5722,5613,6141,6659,7331,8209,9207,10336,11389,12711,13889,14499,14743,15590,16589,17799,19252,20882,21889,22467,24095,25649,25245,25812,27957,30453,32597,34316,35583,36978,40213,43231,44884,46342,48528,45863,48271,51663,49809,51435,54515,58977,61921,65331,68375,65991,63644,72056,74949,75630,77721,78958,80794],"lifeExpectancy":[34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,21.8,34,34,34.8,35.6,36.5,37.3,38.1,38.9,39.7,40.5,41.4,42.2,43,43.8,44.6,45.4,46.3,47.1,47.9,48.7,49.5,50.3,49.1,35.2,36.9,36.2,35,44.1,53.1,56.1,57.5,58.5,59,60,60.9,61.7,62.5,63.2,63.9,64.6,65.1,65.6,66.1,66.4,66.7,66.9,67.1,67.3,67.4,67.7,68,68.3,68.5,68.8,69.1,69.7,70.2,70.6,70.8,71,71.1,71.4,71.6,71.9,72.2,72.7,73.1,73.5,73.8,74,74.4,75,75.8,76.3,76.5,76.6,76.7,77,77.4,77.8,78.2,78.6,78.8,79.1,79.5,79.8,80.2,80.4,80.7,80.9,81.2,81.5,81.8,81.8,81.9,82,82.1],"population":[78305,80147,81989,83831,85673,87515,90378,93241,96104,98967,101830,104692,107555,110418,113281,116144,120302,124460,128618,132776,136934,141092,145250,149408,153566,157724,163539,169354,175169,180984,186800,192615,198430,204245,210060,215875,223697,231518,239340,247162,254984,262805,270627,278449,286270,294092,304280,314469,324657,334845,345034,355222,365410,375598,385787,395975,414125,432276,450426,468576,486727,504877,523027,541177,559328,577478,594596,611714,628832,645950,663068,680185,697303,714421,731539,748657,776001,803345,830689,858033,885378,912722,940066,967410,994754,1022098,1067964,1120277,1178074,1240283,1305731,1373121,1441052,1508061,1572694,1633718,1690353,1742472,1790682,1836087,1879571,1921099,1960547,1998637,2036270,2074071,2112873,2152603,2191924,2228896,2262393,2291621,2317796,2344224,2375417,2414524,2463245,2520494,2583241,2646981,2708634,2766755,2822828,2880188,2943633,3016400,3100091,3193042,3291280,3389119,3482635,3570080,3653151,3735531,3822619,3918183,4023237,4136102,4254553,4375230,4495531,4614637,4732785,4849641,4965105,5078961,5190666,5299524,5405009,5506586,5603740]},{"name":"Slovak Republic","region":"Europe & Central Asia","income":[1938,1946,1953,1961,1969,1976,2002,2029,2055,2082,2109,2137,2165,2193,2222,2251,2280,2310,2340,2371,2402,2433,2465,2497,2530,2563,2599,2636,2673,2711,2749,2788,2828,2867,2908,2949,2991,3034,3078,3122,3167,3212,3258,3305,3353,3401,3460,3520,3581,3540,3500,3461,3422,3383,3345,3307,3566,3431,3678,4024,4457,4404,4705,5090,5201,5002,4801,4580,4361,4174,4118,4440,4922,4953,4984,5015,5046,5077,5108,5140,5172,5203,5236,5268,5558,5969,6007,6132,6040,6222,6681,7000,7356,7849,8136,8693,8955,9022,8792,9135,9405,9756,10134,10570,10790,10978,11302,11638,11945,12284,12546,12647,13122,13191,13217,13514,13392,13613,13781,14068,14144,14376,14416,14707,14802,14366,12223,11364,11536,12204,12879,13720,14525,15085,15039,15242,15778,16528,17433,18351,19549,21162,23416,24670,23334,24438,25066,25424,25759,26355,27204],"lifeExpectancy":[36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.4,36.7,37,37.3,37.6,37.9,38.2,38.5,38.8,39.1,39.4,39.7,40,40.3,40.6,40.9,41.2,41.5,41.8,42.1,42.4,42.7,43,31.9,43.6,43.9,44.2,44.8,45.5,46.1,46.7,47.4,48,48.7,49.3,49.9,50.4,50.9,51.4,51.8,52.3,52.8,53.3,53.8,54.2,54.1,53.9,52.1,47.6,42.6,40.6,54.1,58.1,59.1,60.4,61,61.4,64.5,65.8,66.8,68,68.5,67.6,69.5,69.2,70.5,70.9,70.5,70.8,71.2,70.4,70.6,71.1,70.7,70,69.9,70,70,70,70.2,70.3,70.3,70.5,70.4,70.5,70.5,70.7,70.7,70.7,70.7,70.8,71,71,71,70.9,70.9,70.9,71.3,71.9,72.3,72.6,72.8,72.8,72.8,73,73.3,73.7,73.8,73.9,74.2,74.3,74.4,74.5,74.8,75.1,75.5,75.9,76.1,76.2,76.3,76.4],"population":[2520317,2529327,2538338,2547348,2556359,2565369,2574685,2584001,2593317,2602633,2611950,2621266,2630582,2639898,2649214,2658530,2668182,2677834,2687485,2697137,2706789,2716441,2726093,2735744,2745396,2755048,2765077,2775105,2785134,2795162,2805191,2815220,2825248,2835277,2845305,2855334,2865712,2876090,2886468,2896846,2907224,2917601,2927979,2938357,2948735,2959113,2969949,2980785,2991621,3002457,3013293,3024128,3034964,3045800,3056636,3067472,3078847,3090223,3101598,3112973,3124349,3135724,3147099,3158474,3169850,3181225,3193022,3204819,3216617,3228414,3240211,3252008,3263805,3275603,3287400,3299197,3312935,3326672,3340410,3354148,3367886,3381623,3395361,3409099,3422836,3436574,3509957,3585960,3662707,3738674,3812696,3883977,3952080,4016885,4078531,4137224,4193035,4245726,4294673,4339082,4378613,4412907,4442799,4470632,4499554,4531874,4568274,4608266,4651493,4697153,4744482,4793633,4844392,4895130,4943732,4988654,5029208,5065658,5098607,5129108,5157959,5185157,5210451,5234119,5256475,5277709,5298080,5317480,5335292,5350643,5362950,5372115,5378490,5382521,5384857,5386065,5386224,5385480,5384533,5384237,5385192,5387734,5391728,5396710,5401951,5406896,5411377,5415496,5419288,5422861,5426258]},{"name":"Slovenia","region":"Europe & Central Asia","income":[1914,1921,1929,1936,1944,1951,1985,2020,2055,2091,2127,2164,2202,2240,2279,2318,2359,2400,2441,2484,2527,2571,2616,2661,2707,2755,2774,2793,2812,2832,2851,2871,2891,2911,2931,2952,2999,3048,3097,3147,3197,3249,3301,3355,3409,3464,3464,3465,3465,3454,3442,3430,3419,3407,3396,3384,3419,3471,3602,3807,3940,4157,4033,4328,4494,4345,4156,3719,3784,3872,3763,4195,4208,4483,4668,4628,4589,4551,4512,4474,4436,4398,4361,5135,5568,5147,5282,4809,5456,5687,5973,5790,6698,6918,7697,8110,8393,8469,9262,10057,10231,10681,10773,10911,12039,12524,13849,14200,14555,16290,16150,16496,17536,18347,19444,20265,20506,20527,20591,21000,21062,21819,21476,21084,20729,19147,17370,16351,16748,17576,18240,18894,19887,20585,21655,22488,23115,23972,24639,25694,26677,28096,29878,30816,28157,28377,28492,27682,27368,28059,28550],"lifeExpectancy":[36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,20.1,36.6,36.6,37.5,38.4,39.2,40.1,41,41.9,42.7,43.6,44.5,45.4,46.2,47.1,48,48.9,49.7,50.6,51.5,52.4,53.2,54.1,51.1,49.3,47.6,46.1,47.8,53.6,59.6,61,62,62.9,63.1,63.6,64.1,64.6,65,65.4,65.8,66.1,66.4,66.6,66.7,66.8,66.9,66.9,66.9,66.8,66.8,66.7,66.8,66.8,67.3,67.8,68.2,68.6,69,69.3,69.7,70,70.3,70.6,70.8,71.1,71.2,71.5,71.8,72.1,72.3,72.7,73.3,73.6,73.7,73.8,74,74.2,74.7,75,75.2,75.4,75.6,75.8,76,76.2,76.5,76.8,77.2,77.6,78,78.5,79,79.5,79.8,79.9,80,80.1,80.2],"population":[699336,705483,711630,717777,723925,730072,736745,743419,750092,756766,763439,770112,776786,783459,790133,796806,804085,811364,818643,825922,833201,840479,847758,855037,862316,869595,877590,885585,893581,901576,909571,917566,925561,933557,941552,949547,958245,966943,975642,984340,993038,1001736,1010434,1019133,1027831,1036529,1046052,1055575,1065099,1074622,1084145,1093668,1103191,1112715,1122238,1131761,1142163,1152566,1162968,1173370,1183773,1194175,1204577,1214979,1225382,1235784,1247143,1258501,1269860,1281218,1292577,1303935,1315294,1326652,1338011,1349369,1361742,1374114,1386487,1398859,1411232,1423604,1435977,1448349,1460722,1473094,1481637,1491673,1502837,1514789,1527205,1539786,1552255,1564356,1575871,1586632,1596554,1605645,1614022,1621883,1629434,1636660,1643697,1651094,1659553,1669583,1681426,1694979,1709974,1725967,1742626,1759725,1777316,1795649,1815101,1835839,1857854,1880699,1903548,1925315,1945136,1962890,1978541,1991454,2000910,2006520,2007918,2005535,2000783,1995615,1991487,1989042,1988077,1988166,1988527,1988652,1988287,1987855,1988304,1990924,1996522,2005566,2017452,2030599,2042804,2052480,2059023,2062881,2064819,2066068,2067526]},{"name":"Solomon Islands","region":"East Asia & Pacific","income":[427,428,430,431,433,434,436,437,439,440,442,443,445,447,448,450,451,453,454,456,458,459,461,463,464,466,467,469,471,472,474,476,477,479,481,482,484,486,488,489,491,493,494,496,498,500,501,503,505,514,522,531,540,549,559,568,578,588,598,608,618,629,639,650,661,672,684,696,707,719,732,744,757,769,782,796,809,823,837,851,865,880,895,910,926,941,957,973,990,1006,1023,1041,1058,1076,1094,1113,1132,1151,1170,1190,1210,1230,1251,1270,1195,1215,1200,829,892,1086,923,1014,1122,1181,1424,1293,1416,1407,1547,1514,1479,1718,1710,1723,1812,1793,1847,2024,2045,2171,2284,2257,2163,2142,2074,1731,1550,1468,1523,1557,1602,1672,1753,1835,1709,1787,1975,2024,2041,2030,2047],"lifeExpectancy":[25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,25.1,24.5,25.1,25.1,25.1,25.2,25.2,25.3,25.3,25.4,25.4,25.5,25.5,25.6,25.6,25.7,25.7,25.8,27,28.3,29.5,30.8,32.1,33.3,34.6,29.1,27.1,32.2,36.2,39.3,41.3,43.3,44.5,45.8,46.1,46.7,47.3,47.8,48.4,48.9,49.5,50,50.6,51.1,51.7,52.2,52.8,53.3,53.9,54.5,55,55.6,56.1,56.7,57.1,57.4,57.7,58,56.8,58.6,58.7,59.2,59.5,59.6,59.7,59.9,60,60.1,60.2,59.7,60.3,60.3,60.3,60.4,60.4,60.6,60.7,60.9,61.1,61.3,61.4,61.6,61.7,61.7,61.7,61.8,61.8,61.9,62,62.2,62.2,62.6,62.7,63,63.3,63.5,63.7,63.9,64.1],"population":[67329,67465,67601,67738,67874,68010,68144,68277,68411,68544,68678,68812,68945,69079,69212,69346,69478,69609,69741,69872,70004,70135,70267,70398,70530,70661,70791,70921,71051,71181,71311,71441,71571,71701,71831,71961,72087,72214,72340,72466,72593,72719,72845,72971,73098,73224,73419,73613,73808,74002,74197,74392,74586,74781,74975,75170,75517,75863,76210,76556,76903,77250,77596,77943,78289,78636,79158,79681,80203,80725,81248,81770,82292,82814,83337,83859,84452,85046,85639,86233,86826,87419,88013,88606,89200,89793,91808,94079,96561,99221,102027,104962,108015,111181,114463,117869,121403,125068,128863,132787,136847,141027,145354,149926,154876,160292,166214,172599,179354,186338,193447,200642,207942,215353,222905,230614,238488,246502,254602,262719,270809,278846,286868,294962,303258,311849,320764,329984,339490,349250,359236,369438,379859,390489,401319,412336,423535,434893,446352,457841,469306,480716,492075,503410,514767,526177,537648,549162,560685,572171,583591]},{"name":"Somalia","region":"Sub-Saharan Africa","income":[738,739,740,740,741,742,742,743,744,745,745,746,747,747,748,749,750,750,751,752,752,753,754,755,755,756,757,757,758,759,760,760,761,762,763,763,764,765,765,766,767,768,768,769,770,771,771,772,773,778,783,788,793,799,804,809,815,820,826,832,838,844,850,856,862,868,874,880,886,892,898,905,911,917,924,930,937,943,950,956,963,969,976,983,990,997,1036,1050,1070,1111,1126,1145,1166,1175,1219,1210,1243,1272,1294,1131,1034,1155,1196,1190,1019,1083,1097,1256,1092,1065,1148,1027,1046,995,869,837,866,888,794,832,919,897,979,962,950,930,921,813,817,644,637,648,613,607,605,603,603,607,611,614,616,615,615,615,615,614,614,616,619,621,624],"lifeExpectancy":[29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,15.5,29.4,29.4,29.6,29.8,30,30.2,30.4,30.6,30.8,31,31.2,31.4,31.6,31.8,32,32.2,32.4,32.6,32.8,33.1,33.3,33.5,33.7,33.9,34.1,34.3,34.5,35.4,36.4,37.3,38.3,39.3,39.7,40.3,40.9,41.5,42.1,42.7,43.3,43.9,44.5,45.1,45.7,46.3,46.9,47.5,48.1,48.7,49.3,49.9,50.5,51.1,51.3,51.5,51.7,49.6,50,50.3,52.5,52.6,52.8,52.8,52.9,52.8,52.8,52.7,52.8,52.7,52.7,50.4,52.9,52.4,51.1,51.9,52.9,52.8,52.9,53,52.8,53.5,53.8,54.3,54.6,55,55.4,55.7,56.2,56.3,56.4,56.7,56.8,56.9,57.1,57.2,57.7,58.2,58.7],"population":[1326985,1335221,1343457,1351692,1359928,1368164,1376891,1385618,1394344,1403071,1411798,1420525,1429252,1437978,1446705,1455432,1464711,1473990,1483270,1492549,1501828,1511107,1520386,1529666,1538945,1548224,1558140,1568057,1577973,1587889,1597806,1607722,1617638,1627554,1637471,1647387,1657911,1668434,1678958,1689481,1700005,1710529,1721052,1731576,1742099,1752623,1763892,1775160,1786429,1797698,1808967,1820235,1831504,1842773,1854041,1865310,1877412,1889513,1901615,1913716,1925818,1937919,1950021,1962122,1974224,1986325,1999212,2012098,2024985,2037872,2050759,2063645,2076532,2089419,2102305,2115192,2130081,2144970,2159859,2174748,2189637,2204525,2219414,2234303,2249192,2264081,2307576,2351811,2397067,2443576,2491530,2541067,2592278,2645219,2699912,2756380,2814683,2874944,2937360,3002173,3069558,3144244,3227245,3311111,3385414,3445420,3477568,3490295,3526527,3644572,3880955,4259636,4754149,5289049,5758961,6089707,6251730,6271538,6199671,6113252,6068425,6082723,6138907,6217331,6285456,6321615,6319531,6294017,6269244,6278911,6346440,6480888,6672781,6904231,7148406,7385416,7610053,7827203,8039104,8251054,8466938,8686939,8909015,9132589,9356827,9581714,9806670,10033630,10268157,10517569,10787104]},{"name":"South Africa","region":"Sub-Saharan Africa","income":[1239,1288,1544,1579,1579,1696,1721,2566,2237,2157,2433,2752,2626,2593,2908,3400,3251,3116,2424,2223,1900,2269,2620,2990,2995,3052,3216,3175,3182,3129,3646,3853,3646,4429,3936,2802,3051,3685,4996,5054,5458,5963,5921,4703,4985,5044,5009,4975,4940,4906,4871,4836,4801,4766,4799,4833,4843,4854,4866,4878,5130,5198,5230,5554,5355,4991,4657,4424,4843,5303,5805,6279,6616,6278,6515,6733,6837,6839,6787,6817,6789,6821,6690,6994,6880,7217,7316,7335,7435,7623,7752,7928,7978,7897,8001,8080,8175,8365,8701,9004,9255,9371,9720,9849,10156,10394,10654,10615,10813,11164,11120,11138,10874,10952,11132,11577,11845,11459,10927,11151,10699,10474,10459,10666,10670,10364,10049,9631,9546,9643,9730,9925,9952,9770,9766,9927,9988,10213,10382,10715,11133,11597,12052,12263,11903,12087,12291,12375,12454,12446,12509],"lifeExpectancy":[33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,33.5,11.1,33.5,33.5,33.6,33.7,33.8,33.9,34,34.1,34.2,34.2,34.3,34.4,35,35.6,36.2,36.8,37.4,38,38.6,39.2,39.8,40.4,41,41.6,42.2,42.8,43.4,44,44.6,45.2,45.8,46.4,46.8,47.7,48.5,49.2,49.9,50.6,51.2,51.8,52.3,52.8,53.3,53.7,54.2,54.7,55.2,55.6,56.1,56.6,57.1,57.5,57.6,57.8,58.2,58.6,59.1,59.5,59.8,60.1,60.6,61.1,61.5,62,62.4,62.7,62.8,63.1,63.4,63.8,64.2,64.5,64.9,65,64.9,64.7,64.1,62.9,61.6,60.1,58.6,57.1,55.7,54.6,53.7,53.3,53.1,53.3,54.1,55,55.8,56.7,57.5,58.8,60.4,62,63.7],"population":[2470008,2501973,2533939,2565905,2597870,2629836,2681059,2732282,2783505,2834728,2885951,2937174,2988397,3039620,3090843,3142066,3212444,3282823,3353201,3423579,3493958,3564336,3634714,3705092,3775471,3845849,3933378,4020906,4108435,4195963,4283492,4371020,4458549,4546077,4633606,4721134,4827609,4934085,5040560,5147035,5253511,5359986,5466461,5572936,5679412,5785887,5922828,6059769,6196711,6333652,6470593,6607534,6744475,6881417,7018358,7155299,7327821,7500344,7672866,7845388,8017911,8190433,8362955,8535477,8708000,8880522,9094641,9308761,9522880,9736999,9951119,10165238,10379357,10593476,10807596,11021715,11287860,11554004,11820149,12086294,12352439,12618583,12884728,13150873,13417017,13683162,13993888,14322409,14665139,15019626,15384557,15759812,16146410,16546324,16962183,17396367,17850045,18322335,18809939,19308166,19813947,20325230,20843785,21374931,21926165,22502502,23106806,23736489,24384538,25040940,25698856,26354140,27009755,27674446,28360820,29077143,29828874,30611206,31409913,32204952,32983013,33733547,34463077,35195598,35965131,36793490,37692367,38646788,39619539,40558495,41426810,42210216,42921506,43584030,44233730,44896856,45579161,46272223,46971250,47667150,48352951,49027805,49693580,50348811,50992034,51621594,52237272,52837274,53416609,53969054,54490406]},{"name":"South Korea","region":"East Asia & Pacific","income":[539,538,538,537,537,536,536,535,535,534,534,533,533,532,531,531,530,530,529,529,528,528,527,527,526,526,525,524,524,523,523,522,522,521,521,520,522,524,526,527,529,531,533,535,536,538,544,565,585,610,711,694,765,822,872,756,816,750,804,809,808,838,873,878,830,784,787,786,948,945,1028,1120,1236,1300,1173,1322,1340,1331,1349,1289,605,616,654,707,764,807,753,809,1051,1070,1139,1130,1226,1233,1212,1178,1201,1182,1305,1380,1416,1563,1621,1774,1998,2142,2427,2760,3326,3673,4108,4614,4964,5373,5505,4899,5159,5483,6078,6612,6970,7996,9096,10233,11002,12087,13130,13744,14466,15577,16798,17835,18687,17493,19233,20757,21536,23008,23566,24628,25541,26734,28063,28650,28716,30440,31327,31901,32684,33629,34644],"lifeExpectancy":[25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.3,24.9,24.4,24,23.5,23.8,24.1,24.4,24.7,25,25.5,26,26.5,27,17,27.5,28,28.5,29,29.6,30.4,31.2,32.1,32.9,33.7,34.5,35.2,36,36.8,37.6,38.6,39.7,40.7,41.7,42.8,43.4,44,44.6,45.2,43.3,42.3,42.8,45.3,47.3,47.9,48.4,43.4,40.9,40.4,45.4,48.4,50,50.6,51.3,52,52.8,53.5,54.2,55,55.8,56.6,57.4,58.2,59.1,60,60.9,61.8,62.3,62.8,63.3,63.9,64.4,64.9,65.4,66,66.5,66.9,67.5,67.9,68.4,69,69.5,70,70.4,71,71.5,72,72.5,73,73.5,73.8,74.2,74.7,75.1,75.4,75.8,76.3,76.8,77.3,77.8,78.3,78.8,79.2,79.5,79.7,79.8,80,80.3,80.4,80.5,80.6,80.7],"population":[9696272,9705404,9714537,9723670,9732802,9741935,9748381,9754827,9761273,9767719,9774165,9780610,9787056,9793502,9799948,9806394,9811359,9816325,9821290,9826255,9831221,9836186,9841151,9846116,9851082,9856047,9863106,9870164,9877223,9884281,9891340,9898399,9905457,9912516,9919574,9926633,9953363,9980092,10006822,10033551,10060281,10087011,10113740,10140470,10167199,10193929,10358507,10523084,10687662,10852239,11016817,11181394,11345972,11510549,11675127,11839704,12048721,12257737,12466754,12675770,12884787,13093803,13302819,13511836,13720853,13929869,14105340,14280811,14456282,14631753,14807224,14982695,15158166,15333637,15509108,15684579,16037260,16389940,16742621,17095302,17447983,17800663,18153344,18506025,18858705,19211386,19304737,19566860,19979069,20520601,21168611,21897911,22681233,23490027,24295786,25074028,25808542,26495107,27143075,27770874,28392722,29006181,29606633,30204127,30811523,31437141,32087884,32759447,33435268,34091816,34713078,35290737,35832213,36356187,36889651,37451085,38046253,38665964,39295418,39912900,40501917,41059473,41588374,42085050,42546704,42972254,43358716,43708170,44031222,44342530,44652994,44967346,45283939,45599569,45908307,46206271,46492324,46769579,47043251,47320454,47605863,47901643,48205062,48509842,48807036,49090041,49356692,49608451,49846756,50074401,50293439]},{"name":"South Sudan","region":"Sub-Saharan Africa","income":[632,635,638,641,644,648,651,654,657,660,663,667,670,673,676,680,683,686,690,693,696,700,703,706,710,713,717,720,724,727,731,734,738,741,745,748,752,756,759,763,767,770,774,778,782,785,789,793,797,813,829,846,863,880,898,916,939,962,986,1011,1036,1062,1088,1115,1143,1171,1200,1230,1260,1291,1323,1356,1389,1423,1458,1494,1531,1568,1607,1646,1686,1727,1769,1812,1856,1901,1947,1997,2043,2094,2146,2318,2234,2273,2484,2472,2416,2524,2396,2318,2426,2343,2218,2301,2388,2233,2329,2224,1983,2126,2332,2686,3009,2871,2488,2432,2411,2637,2530,2327,2104,2130,2137,2125,2247,2013,2089,2137,2141,2125,2132,2183,2338,2407,2518,2684,2769,2855,2976,3045,3221,3455,3756,3776,3799,3838,3505,1810,1965,2574,3047],"lifeExpectancy":[26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,10.3,26.7,26.7,26.9,27.2,27.4,27.7,27.9,28.2,28.4,28.7,28.9,29.2,29.4,29.7,29.9,30.2,30.4,30.7,30.9,31.2,31.4,31.7,31.9,32.2,32.4,32.7,32.9,33.2,33.4,33.7,33.9,34.2,34.7,35.6,36.4,37.3,38.1,38.8,39.6,40.3,41,41.7,42.3,43,43.7,44.4,45,45.7,46.4,47,47.7,48.3,48.5,48.7,49,49.2,49.5,49.7,49.9,50.1,50.3,50.2,50.4,50.5,50.7,50.8,51.1,51.3,51.5,51.7,52,52.3,52.6,52.8,53,53.1,53.3,53.4,53.5,53.7,53.9,54.1,54.3,54.5,54.8,55,55.2,55.5,55.7,56,56.2,56.5,56.7,56.8,57.2,57.6,58],"population":[1396336,1409621,1422907,1436193,1449479,1462765,1476964,1491163,1505362,1519561,1533760,1547959,1562158,1576357,1590556,1604755,1619938,1635122,1650305,1665489,1680672,1695855,1711039,1726222,1741406,1756589,1772845,1789102,1805358,1821615,1837871,1854127,1870384,1886640,1902897,1919153,1936508,1953863,1971218,1988573,2005928,2023283,2040638,2057993,2075348,2092703,2108240,2123777,2139313,2154850,2170387,2185924,2201461,2216997,2232534,2248071,2258291,2268511,2278731,2288951,2299171,2309391,2319611,2329831,2340051,2350271,2360956,2371640,2382325,2393009,2403694,2414378,2425063,2435747,2446432,2457116,2469697,2482279,2494860,2507441,2520023,2532604,2545185,2557766,2570348,2582929,2601308,2624563,2652415,2684597,2720852,2760933,2804604,2851644,2901847,2955044,3011112,3069990,3131686,3196258,3263767,3334254,3407754,3484335,3564079,3647097,3733547,3823605,3917450,4015271,4117299,4222056,4329467,4442665,4565912,4701360,4849708,5007145,5165623,5314358,5444907,5559804,5660153,5735170,5771305,5762190,5698998,5593347,5484372,5425099,5452771,5584223,5806951,6092688,6398416,6692999,6967817,7233237,7499695,7784488,8099908,8445659,8815495,9208598,9623176,10056475,10510122,10980623,11453810,11911184,12339812]},{"name":"Spain","region":"Europe & Central Asia","income":[1871,1962,1951,1748,1798,1837,1976,2242,2432,2221,2279,2314,2542,2465,2317,2509,2559,2579,2623,2616,2533,2466,2419,2505,2488,2479,2524,2702,2596,2614,2580,2364,2473,2653,2684,2730,2906,2803,2797,2769,2719,2832,2902,2995,3027,2901,3096,3060,3171,3115,3152,3285,3232,3196,3202,3420,3497,3633,3665,3754,3970,3939,4261,4259,4540,4367,4237,4311,4209,4349,4417,3418,3122,3106,3337,3643,3570,3756,3881,4047,3760,3914,3963,3957,3916,3993,4369,4701,4660,4987,5158,5546,5692,5904,5735,5792,6498,7206,7896,8611,9106,9700,10252,10767,11650,12233,12834,13790,14908,15885,16296,16818,17305,17707,17825,18119,18116,18358,18754,18970,19300,19881,20953,22036,23141,24126,24684,24831,24498,25015,25645,26270,27167,28238,29353,30647,31488,31866,32293,32745,33396,34206,34845,34676,33142,32994,32674,31971,31681,32270,32979],"lifeExpectancy":[29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.8,30,30.3,30.5,30.8,31.1,31.3,31.6,31.8,32.1,32.4,32.8,33.1,33.5,33.8,34.1,34.5,34.8,35.6,36.5,37.3,38.1,39,39.8,40.6,41.5,41.1,40.9,39.8,43.5,42.6,42.8,43,44,42.6,30.3,41.1,39.3,42,44.2,44.7,46.3,46.9,47.7,48.4,48.6,49.4,49.3,49.2,51.1,51.5,52.1,52.6,50.8,47.1,47.4,46.9,48.2,47,52.3,54.6,56,57.6,57.3,59.1,61,60.8,61.6,61.2,64.7,65.5,66.7,66.5,66.5,66.3,68.5,68.4,68.9,69.3,69.3,69.5,70.2,70.6,70.8,71,71.3,70.8,71.8,72.1,72.7,72.9,73.2,73.5,73.8,74.2,74.5,74.9,75.4,75.7,76.1,76.3,76.4,76.6,76.7,76.7,76.8,76.8,77,77.1,77.4,77.6,77.8,77.8,78.2,78.7,79,79.1,79.3,79.5,79.6,79.8,80.1,80.4,80.7,80.9,81.1,81.4,81.6,81.7,81.7,81.7,81.7,81.7],"population":[15917765,15979436,16041108,16102780,16164451,16226123,16295611,16365099,16434587,16504075,16573564,16643052,16712540,16782028,16851516,16921004,17007283,17093562,17179840,17266119,17352398,17438677,17524956,17611234,17697513,17783792,17870657,17957523,18044388,18131254,18218119,18304984,18391850,18478715,18565581,18652446,18778286,18904127,19029967,19155807,19281648,19407488,19533328,19659168,19785009,19910849,20050608,20190367,20330127,20469886,20609645,20749404,20889163,21028923,21168682,21308441,21528968,21749494,21970021,22190548,22411075,22631601,22852128,23072655,23293181,23513708,23745167,23976627,24208086,24439546,24671005,24902464,25133924,25365383,25596843,25828302,26052446,26276589,26500733,26724876,26949020,27173163,27397307,27621450,27845594,28069737,28237323,28430442,28641790,28866150,29100396,29343602,29596934,29863304,30146802,30450994,30777097,31122390,31479529,31838485,32192223,32536637,32873962,33211168,33558627,33923240,34305591,34701025,35104633,35509391,35909042,36302392,36687352,37055640,37397232,37704867,37976189,38212556,38415495,38588238,38734330,38854360,38950965,39032625,39110106,39192055,39287043,39397403,39518427,39641740,39764267,39878881,39996221,40151723,40392585,40749800,41230518,41815486,42475265,43167276,43854761,44537926,45209538,45817016,46295191,46601492,46708366,46637082,46455163,46259716,46121699]},{"name":"Sri Lanka","region":"South Asia","income":[1267,1293,1320,1348,1376,1405,1365,1295,1302,1279,1289,1303,1310,1186,1272,1373,1466,1546,1557,1496,1393,1340,1564,1524,1492,1730,1716,1742,1743,1728,1797,1802,1864,1935,2045,2139,1976,1949,2032,2016,1956,1975,2046,2027,1914,2005,1920,1907,2029,1982,1855,1908,1975,1790,1879,1753,1691,1725,1683,1771,1855,1969,1951,1934,2045,1928,1824,1722,1728,1884,1763,1741,1840,1801,1736,1824,1854,1913,1851,1658,1596,1498,1525,1642,1693,1764,1815,1838,1814,1807,1859,1821,1797,1799,1773,1785,1769,1782,1771,1809,1820,1755,1870,1961,1993,2044,1988,1994,2039,2074,2091,2118,2220,2318,2424,2514,2630,2718,2820,2924,3008,3115,3101,3138,3178,3340,3442,3561,3759,3915,4075,4184,4396,4550,4677,4946,4949,5111,5344,5559,5843,6223,6586,6907,7080,7572,8112,8856,9426,10043,10624],"lifeExpectancy":[32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.7,34,34.9,32.5,27,30.2,30.6,29.9,32.8,27.3,29,32,29.2,34.4,32.8,34.4,28.2,25.5,31.1,32,36.1,33.3,38,39.8,38.6,41.7,37.9,37.7,38.5,42.5,44.5,43.6,41.6,28.2,43,43.1,44,43.2,44.6,47.7,48,44.4,44.5,43.6,46.6,54.1,53.9,53.6,53.4,54,55.1,56.1,57,57.8,58.5,59.1,59.6,60.1,60.6,61,61.4,61.9,62.4,62.9,63.5,64,64.6,65.1,65.6,65.7,65.5,65.2,64.5,64.9,65.9,66.9,67.9,68.6,69.7,70.4,70.4,70.2,70.1,70.5,71,71.2,71.2,71,71,72.4,72.9,73.2,72.9,72.3,71.8,71.8,72.2,72.3,72.4,72.9,73.5,73.9,73.7,74.2,74.4,75.1,74.3,74.5,75.7,75.8,75.9,76.1,76.3,76.5],"population":[2634563,2662705,2690847,2718988,2747130,2775272,2802167,2829062,2855956,2882851,2909746,2936641,2963536,2990430,3017325,3044220,3078571,3112922,3147273,3181624,3215976,3250327,3284678,3319029,3353380,3387731,3446970,3506210,3565449,3624689,3683928,3743167,3802407,3861646,3920886,3980125,4051352,4122580,4193807,4265035,4336262,4407489,4478717,4549944,4621172,4692399,4751291,4810184,4869076,4927968,4986861,5045753,5104645,5163537,5222430,5281322,5328016,5374709,5421403,5468097,5514791,5561484,5608178,5654872,5701565,5748259,5791025,5833791,5876558,5919324,5962090,6004856,6047622,6090389,6133155,6175921,6365910,6555899,6745888,6935877,7125866,7315854,7505843,7695832,7885821,8075810,8201505,8338783,8489249,8653784,8832541,9024911,9229560,9444541,9667485,9896172,10129134,10366190,10608672,10858780,11117685,11385943,11661660,11940634,12217248,12487493,12749209,13003394,13253063,13502870,13755990,14013610,14274023,14534087,14789300,15036562,15274137,15503320,15727670,15952350,16180776,16413729,16648992,16883250,17111785,17330817,17540762,17741793,17929772,18099591,18248435,18373530,18478024,18572347,18670843,18783745,18914866,19061066,19217032,19374281,19526406,19672418,19813816,19949553,20078873,20201312,20315673,20421862,20521959,20618991,20715010]},{"name":"St. Lucia","region":"America","income":[1017,1020,1023,1027,1030,1034,1037,1040,1044,1047,1051,1054,1058,1061,1065,1068,1072,1075,1079,1082,1086,1089,1093,1096,1100,1104,1107,1111,1115,1118,1122,1126,1129,1133,1137,1141,1144,1148,1152,1156,1159,1163,1167,1171,1175,1179,1182,1186,1190,1194,1198,1202,1206,1210,1214,1218,1224,1230,1236,1242,1248,1254,1261,1267,1273,1279,1285,1292,1298,1304,1311,1317,1323,1330,1336,1343,1349,1355,1362,1368,1375,1382,1388,1395,1401,1408,1468,1530,1596,1663,1734,1808,1885,1965,2049,2136,2227,2321,2420,2523,2630,2742,2858,2979,3106,3238,3367,3425,3448,3613,3734,4381,4724,5010,5077,4728,4789,4873,5084,5365,5689,6545,6616,7436,7861,7979,8077,8536,8655,8677,8854,9213,9125,9574,9673,9980,9507,9413,9771,10455,10158,10858,10636,10843,10759,10515,10535,10275,10152,9917,9997],"lifeExpectancy":[28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,18.2,28,28,28,28.9,29.8,30.6,31.5,32.3,33.2,34,34.9,35.8,36.6,37.5,38.3,39.2,40,40.9,41.8,42.6,43.5,44.3,45.2,46,46.9,47.8,48.6,49.5,50.3,51.2,52,52.9,53,53.3,53.6,54.1,54.6,55.3,56,56.8,57.7,58.5,59.3,60.1,60.8,61.4,61.9,62.4,62.9,63.4,63.9,64.5,64.5,64.6,64.9,65.3,65.8,66.3,66.8,67.2,67.5,67.8,68.3,68.7,69.1,69.4,69.5,69.6,69.7,69.7,70,70.2,70.5,70.7,70.9,71,71.2,71.3,71.4,71.5,71.7,72,72.1,72.3,72.6,73,73.3,73.6,73.9,74.2,74.4,74.3,74.5,74.5,74.5,74.5,74.5],"population":[29536,30016,30497,30977,31458,31938,32516,33095,33673,34252,34830,35408,35987,36565,37144,37722,38183,38644,39105,39566,40028,40489,40950,41411,41872,42333,42964,43595,44226,44857,45488,46118,46749,47380,48011,48642,48737,48831,48926,49020,49115,49210,49304,49399,49493,49588,49846,50105,50363,50622,50880,51138,51397,51655,51914,52172,52796,53420,54044,54668,55293,55917,56541,57165,57789,58413,59151,59888,60626,61363,62101,62838,63576,64313,65051,65788,67488,69187,70887,72586,74286,75985,77685,79384,81084,82783,83875,84763,85493,86108,86655,87178,87722,88331,89047,89901,90913,92086,93397,94813,96303,97877,99526,101181,102747,104162,105389,106458,107461,108534,109770,111211,112826,114551,116292,117984,119593,121150,122738,124468,126416,128620,131032,133532,135954,138180,140159,141934,143592,145262,147040,148962,150994,153066,155073,156949,158650,160218,161767,163462,165407,167656,170146,172729,175196,177397,179278,180890,182305,183645,184999]},{"name":"St. Vincent and the Grenadines","region":"America","income":[1138,1146,1153,1161,1169,1177,1185,1193,1201,1209,1217,1225,1234,1242,1250,1259,1267,1276,1285,1293,1302,1311,1320,1329,1338,1347,1356,1365,1374,1383,1393,1402,1412,1421,1431,1440,1450,1460,1470,1480,1490,1500,1510,1520,1530,1541,1551,1562,1572,1588,1603,1619,1634,1650,1666,1683,1697,1711,1725,1740,1755,1769,1784,1799,1814,1829,1845,1860,1876,1891,1907,1923,1939,1955,1971,1988,2004,2021,2038,2054,2071,2089,2106,2123,2141,2158,2229,2301,2376,2454,2534,2616,2701,2789,2880,2974,3059,3127,2893,2963,2953,2919,2611,2749,2795,3059,3112,3867,3394,3056,2789,3041,3090,3419,3495,3529,3710,3853,3988,4185,4397,4640,4796,5434,5507,5726,5745,6166,6170,5983,6044,6127,6945,7310,7635,7571,7693,8168,8779,9126,9337,10038,10357,10517,10287,9935,9883,9997,10177,10131,10435],"lifeExpectancy":[26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,16.9,26,26,26,26.7,27.5,28.3,29.1,29.9,30.7,31.5,32.3,33.1,33.9,34.7,35.5,36.3,37.1,37.9,38.6,39.4,40.2,41,41.8,42.6,43.4,44.2,45,45.8,46.6,47.4,48.2,49,49.2,49.6,50.2,50.9,51.6,52.5,53.5,54.5,55.6,56.7,57.7,58.7,59.7,60.5,61.1,61.7,62.2,62.7,63.1,63.4,63.6,63.7,63.8,64.1,64.4,64.8,65.3,66,66.6,67.1,67.5,67.9,68.4,68.9,69.3,69.5,69.6,69.6,69.7,69.7,69.7,69.7,69.7,69.6,69.6,69.6,69.6,69.6,69.7,69.8,70,70.1,70.3,70.5,70.7,70.9,71.2,71.6,72.1,72.3,72.4,72.6,72.7,72.8,72.9],"population":[34002,34360,34718,35075,35433,35791,36178,36566,36953,37341,37728,38115,38503,38890,39278,39665,39861,40058,40254,40451,40647,40843,41040,41236,41433,41629,42073,42517,42962,43406,43850,44294,44738,45183,45627,46071,45740,45410,45079,44749,44418,44087,43757,43426,43096,42765,42873,42981,43089,43197,43305,43412,43520,43628,43736,43844,44223,44603,44982,45362,45741,46120,46500,46879,47259,47638,48478,49317,50157,50996,51836,52676,53515,54355,55194,56034,57131,58227,59324,60420,61517,62614,63710,64807,65903,67000,68067,69270,70594,72022,73528,75081,76642,78168,79616,80948,82144,83206,84167,85076,85972,86860,87736,88615,89518,90457,91440,92465,93516,94572,95614,96639,97649,98634,99589,100506,101378,102202,102985,103742,104477,105197,105892,106533,107081,107509,107811,108001,108097,108129,108122,108078,108001,107923,107879,107897,107989,108150,108354,108563,108749,108908,109049,109165,109255,109316,109341,109334,109327,109360,109462]},{"name":"Sudan","region":"Sub-Saharan Africa","income":[646,649,652,655,659,662,665,668,671,675,678,681,684,688,691,694,698,701,705,708,711,715,718,722,725,729,732,736,739,743,747,750,754,757,761,765,768,772,776,780,783,787,791,795,799,803,806,810,814,831,847,864,882,899,917,936,956,978,999,1021,1044,1067,1091,1115,1139,1164,1190,1216,1243,1271,1299,1327,1356,1386,1417,1448,1480,1512,1546,1579,1614,1650,1686,1723,1760,1799,1838,1881,1920,1963,2007,2164,2081,2112,2303,2287,2230,2325,2202,2126,2220,2140,2022,2093,2167,2022,2106,2006,1785,1910,2091,2403,2687,2559,2213,2159,2137,2332,2233,2050,1850,1869,1871,1858,1961,1753,1830,1892,1918,1879,1934,1992,2142,2175,2183,2258,2338,2419,2533,2557,2672,2858,3097,3246,3259,3282,3524,3856,3903,3940,3975],"lifeExpectancy":[31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,12.1,31.4,31.4,31.5,31.6,31.7,31.7,31.8,31.9,32,32.1,32.2,32.3,32.3,32.4,32.5,32.6,32.7,32.8,32.9,32.9,33,33.1,34.4,35.7,37,38.3,39.5,40.8,42.1,43.4,44.7,46,46.4,47,47.6,48.3,48.9,49.4,50,50.6,51.1,51.6,52.1,52.6,53.1,53.6,54.1,54.6,55.1,55.6,56,56.5,56.6,56.8,57.3,57.4,57.5,57.7,58.1,58.3,58.5,58.6,58.9,59.2,54.1,54.5,54.9,60,60.4,60.7,61.2,61.3,61.6,61.8,62,62.6,62.8,62.9,63.2,63.4,64.1,64.4,64.7,65.2,65.3,65.6,66.3,66.6,67,67.4,67.6,68,68.2,68.6,68.9,69.2,69.5],"population":[4762661,4767308,4771955,4776602,4781250,4785897,4789927,4793957,4797987,4802017,4806047,4810077,4814107,4818137,4822167,4826197,4829603,4833008,4836414,4839819,4843225,4846630,4850036,4853441,4856847,4860252,4863043,4865833,4868624,4871414,4874205,4876996,4879786,4882577,4885367,4888158,4890159,4892160,4894161,4896162,4898164,4900165,4902166,4904167,4906168,4908169,4916410,4924651,4932892,4941133,4949375,4957616,4965857,4974098,4982339,4990580,5013268,5035955,5058643,5081331,5104019,5126706,5149394,5172082,5194769,5217457,5241176,5264895,5288614,5312333,5336053,5359772,5383491,5407210,5430929,5454648,5482578,5510507,5538437,5566366,5594296,5622226,5650155,5678085,5706014,5733944,5883670,6039086,6200492,6368211,6542583,6723968,6912742,7109305,7314066,7527450,7749884,7981797,8223613,8475765,8738703,9013112,9299545,9598196,9909152,10232758,10568788,10918137,11283574,11668674,12075841,12506035,12958110,13429688,13917268,14418063,14935471,15470415,16015120,16559205,17097619,17618852,18130501,18669146,19284633,20008804,20861117,21820588,22829227,23805536,24691970,25466387,26149124,26777059,27406808,28079664,28805142,29569978,30365586,31176209,31990003,32809056,33637960,34470138,35297298,36114885,36918193,37712420,38515095,39350274,40234882]},{"name":"Suriname","region":"America","income":[2222,2237,2252,2268,2283,2298,2314,2329,2345,2361,2377,2393,2409,2426,2442,2458,2475,2492,2509,2526,2543,2560,2577,2594,2612,2630,2647,2665,2683,2701,2720,2738,2757,2775,2794,2813,2832,2851,2870,2890,2909,2929,2949,2968,2989,3009,3029,3050,3070,3116,3163,3211,3259,3308,3358,3408,3464,3521,3579,3637,3697,3757,3818,3881,3944,4009,4074,4140,4208,4276,4346,4417,4489,4562,4636,4711,4788,4866,4945,5025,5107,5190,5274,5359,5446,5534,5664,5797,5933,6071,6214,6359,6508,6660,6816,6975,7138,7305,7476,7650,7829,8012,8199,8390,8586,8786,9315,9776,10239,10609,9648,10622,11830,12569,11872,10836,11515,10888,10291,9935,11162,10842,9949,10724,11131,10625,10759,10588,9690,9873,9848,9839,10263,10283,10054,9908,10214,10502,10979,11836,12225,12553,13059,13470,13747,14325,14942,15254,15556,16649,17125],"lifeExpectancy":[32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,29.1,32.9,32.9,32.9,33,33,33,33.1,34,34.9,35.8,36.7,37.6,38.5,39.4,40.3,41.2,42.1,43,43.9,44.8,45.7,46.6,47.5,48.4,49.3,50.2,51.1,52,52.9,53.8,54.7,55.6,56,56.7,57.3,58,58.5,59.1,59.6,60,60.5,60.9,61.3,61.7,62.1,62.5,62.9,63.3,63.7,64.1,64.4,64.8,64.9,65,64.9,64.7,64.4,64.3,64.4,64.6,65,65.5,66.1,66.7,67.3,67.9,68.5,68.8,69.1,69,69.1,68.7,68.4,68.3,68.4,69,69.6,70.1,70.1,69.8,69.3,68.8,68.4,68.2,68.1,68.3,68.5,68.7,68.9,69.1,69.3,69.5,69.7,69.9,70.1,70.3,70.5],"population":[113266,114103,114941,115778,116616,117453,118350,119247,120144,121041,121939,122836,123733,124630,125527,126424,127389,128354,129319,130284,131249,132214,133179,134144,135109,136074,137119,138163,139208,140252,141297,142341,143386,144430,145475,146519,147640,148761,149882,151003,152125,153246,154367,155488,156609,157730,158948,160166,161384,162602,163820,165038,166256,167474,168692,169910,171240,172570,173899,175229,176559,177889,179219,180548,181878,183208,184642,186076,187510,188944,190378,191812,193246,194680,196114,197548,199293,201038,202783,204528,206274,208019,209764,211509,213254,214999,222679,229653,236348,243087,250094,257485,265273,273383,281669,289972,298190,306330,314530,322995,331799,341137,350755,359735,366845,371268,372619,371318,368342,365104,362651,361368,361053,361463,362137,362777,363309,363993,365242,367611,371469,376973,383916,391851,400133,408276,416068,423572,430901,438280,445830,453653,461569,469108,475637,480751,484210,486271,487641,489312,491999,495953,500953,506657,512522,518141,523439,528535,533450,538248,542975]},{"name":"Swaziland","region":"Sub-Saharan Africa","income":[610,613,616,619,622,625,628,631,634,637,640,643,646,650,653,656,659,662,665,669,672,675,678,682,685,688,692,695,698,702,705,709,712,715,719,722,726,729,733,736,740,744,747,751,754,758,762,765,769,781,792,804,816,828,841,853,867,881,895,910,925,939,955,970,986,1001,1017,1034,1050,1067,1084,1102,1120,1138,1156,1174,1193,1212,1232,1251,1271,1292,1312,1333,1355,1376,1424,1437,1460,1508,1522,1544,1566,1573,1625,1804,1986,2348,2424,2713,3059,3112,3324,3092,3142,3971,3934,4302,4417,4786,4827,4851,4859,4842,4766,4723,4894,5031,4890,4821,4945,4943,5171,4823,4924,4844,4793,4835,4887,4909,5043,5125,5167,5189,5243,5257,5263,5320,5410,5533,5618,5733,5847,5887,5860,5862,5846,5910,5998,6058,6095],"lifeExpectancy":[32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.3,12.5,32.3,32.3,32.4,32.6,32.7,32.8,32.9,33.1,33.2,33.3,33.4,33.6,33.7,33.8,33.9,34.1,34.2,34.3,34.4,34.6,34.7,34.8,34.9,35.1,35.2,35.3,35.4,37.2,39,40.7,42.5,44.3,44.6,45.2,45.8,46.3,46.9,47.4,47.9,48.4,48.8,49.3,49.7,50.1,50.5,51,51.4,51.9,52.4,53,53.6,54.3,54.6,55,55.4,55.8,56.3,56.7,57,57.4,57.7,57.9,58.3,58.7,58,59.5,60,60.5,61,61.5,61.9,62.2,62.4,62.2,61.7,60.6,59,56.9,54.8,52.7,50.6,48.7,46.9,45.7,44.7,43.9,43.5,44,45.1,46.1,47.2,47.8,49.2,50.3,50.7,51.1,51.5],"population":[86444,86474,86503,86533,86562,86592,86622,86651,86681,86710,86740,86769,86799,86828,86858,86887,86917,86946,86976,87005,87035,87065,87094,87124,87153,87183,87240,87297,87354,87411,87468,87525,87582,87639,87696,87753,89676,91599,93522,95445,97368,99291,101214,103137,105060,106983,107802,108622,109441,110260,111080,111899,112718,113537,114357,115176,117741,120306,122871,125436,128002,130567,133132,135697,138262,140827,144007,147186,150366,153545,156725,159904,163084,166263,169443,172622,182660,192698,202735,212773,222811,232849,242887,252924,262962,273000,278952,285338,292189,299502,307249,315361,323740,332264,340799,349233,357522,365719,373991,382575,391659,401295,411478,422266,433709,445844,458717,472337,486656,501596,517100,533264,550135,567560,585335,603373,621314,639333,658496,680253,705492,734790,767417,801350,833787,862728,887248,907947,926224,944223,963428,984506,1006760,1028694,1048151,1063715,1074765,1082195,1087949,1094775,1104642,1118204,1134853,1153750,1173529,1193148,1212458,1231694,1250641,1269112,1286970]},{"name":"Sweden","region":"Europe & Central Asia","income":[2042,2009,2039,1856,1989,2243,2321,2363,2391,2481,2393,2545,2488,2400,2532,2472,2561,2467,2654,2597,2644,2671,2592,2634,2674,2735,2885,2847,2917,2931,3074,3154,3278,3391,3475,3489,3580,3534,3720,3784,3730,4029,4298,4166,4189,4266,4377,4547,4836,4943,5120,5410,5086,4705,4781,5090,4838,5195,5372,5749,5891,6190,6403,6598,7003,7317,7142,6875,7000,7465,7821,8092,8305,8573,9199,8517,8278,8340,8598,8840,9088,9985,10787,10925,11278,11977,11890,12133,12221,12896,13177,13642,13956,14031,14598,15097,15998,16607,17228,18434,19142,19222,19709,20401,21168,22054,22277,22308,23232,25048,25353,25378,24567,24784,25827,26010,25869,26431,26808,27890,28202,29138,29889,30596,31161,30901,30340,29813,29028,30000,31044,31465,32360,33709,35208,36816,37292,37941,38702,40216,41184,42873,44005,43421,40820,42898,43709,43263,43448,44029,44892],"lifeExpectancy":[45.4,44.7,46.2,43.2,41,45,49,50.1,48.7,44.3,44.6,44.8,46,46.7,48.9,47.6,48.5,48.6,49,49.2,48.9,50.6,51.5,52.4,52.3,50.5,51.1,50.6,51.4,52.1,54.2,53.5,54.1,54.7,51,52.3,52.9,54.8,55.1,55.4,54.5,56.7,57,56.4,58.4,57.8,58,57.8,58.7,58.3,57.2,58.2,58.9,49.8,56.6,58.8,61,61,63,62,62.5,62.8,61.6,62.2,62.3,63.1,62.6,63.9,64.8,64.9,64.8,64.5,64.6,65.5,66.3,66.7,66.9,68.9,68.6,67.6,68.2,69.4,69.4,70.6,70.7,71,71.2,71.7,71.8,72.2,72.5,72.5,72.3,73,73.2,72.9,73.3,73.2,73.4,73.6,73.7,73.9,74,73.8,74,74.5,74.5,74.7,74.8,74.9,75,75.1,75.2,75.4,75.5,75.7,76,76.3,76.6,76.8,76.9,77,77.1,77.2,77.4,77.6,77.8,78.1,78.4,78.6,78.9,79.1,79.3,79.5,79.6,79.7,79.8,80,80.1,80.3,80.5,80.7,80.9,81.1,81.2,81.5,81.6,81.7,81.8,81.9,82],"population":[3991950,4028433,4064916,4101399,4137882,4174365,4207238,4240111,4272984,4305857,4338730,4371603,4404476,4437349,4470222,4503095,4530796,4558498,4586199,4613901,4641602,4669303,4697005,4724706,4752408,4780109,4813208,4846306,4879405,4912503,4945602,4978701,5011799,5044898,5077996,5111095,5149261,5187427,5225594,5263760,5301926,5340092,5378258,5416425,5454591,5492757,5530523,5568289,5606055,5643821,5681588,5719354,5757120,5794886,5832652,5870418,5897433,5924448,5951462,5978477,6005492,6032507,6059522,6086536,6113551,6140566,6161848,6183129,6204411,6225692,6246974,6268255,6289536,6310818,6332100,6353381,6419034,6484687,6550341,6615994,6681647,6747300,6812953,6878607,6944260,7009913,7072080,7125539,7173121,7217176,7259579,7301708,7344466,7388317,7433373,7479602,7527081,7576192,7627722,7682603,7741167,7804200,7870642,7936726,7997380,8049049,8090044,8121560,8146472,8169141,8192693,8218630,8245975,8272499,8294832,8310915,8319810,8323466,8326196,8333904,8350814,8377863,8413658,8457108,8506236,8559107,8616535,8677787,8737500,8788696,8826720,8849420,8859106,8861204,8863595,8872284,8888675,8911899,8942926,8982282,9030163,9087251,9153316,9226333,9303432,9382297,9462352,9543457,9624247,9703247,9779426]},{"name":"Switzerland","region":"Europe & Central Asia","income":[5028,4955,4333,5089,5536,5263,5573,5278,5392,6004,6628,6436,5772,5844,5792,6143,6222,6019,6011,6667,7164,7418,7358,7505,7486,7990,7502,8055,8276,7989,8765,8887,9238,9295,9643,9640,9419,9516,9214,9583,9848,10586,10555,10268,10676,10908,10999,10961,10666,10559,10675,10616,9419,9382,10003,10604,10301,11259,11835,12187,12980,13502,14086,14699,15027,14769,14003,13408,13961,13882,13731,13689,14253,14711,14600,14639,14403,13896,13618,13778,17496,18416,20323,20420,19569,20209,21545,21379,21800,22745,23981,25197,25738,24798,26014,27258,28621,29137,29877,30886,31531,31983,32566,33324,34719,36582,37621,38478,39412,39874,37301,37189,38201,38264,39109,40692,41080,40226,40229,41269,42462,42899,42914,43895,45400,46600,45599,45080,44615,44823,44738,44809,45734,46942,47486,49083,49479,49177,48837,49882,51069,52786,54483,55020,53179,54183,54551,54573,54983,55776,56118],"lifeExpectancy":[38,38,38,38,38,38,38,38,38,38,38,40.1,40,40.5,41.8,42.4,41.9,43,44.9,45,43.8,44.7,45.4,46,45.1,45,44.7,47.2,46.1,45.8,46.8,48.9,49.1,48.2,49.3,47.5,48.9,50.4,50,49.2,49.7,50.7,51.2,52.3,51.6,52.9,51.7,54.4,54.2,55.1,56,56.6,55.8,46.3,55,54.4,57.9,58.5,60,59.5,59.9,60.6,60.1,60.4,60.1,61.4,61.2,61.2,62.4,62.9,62.1,63.1,63.5,63.8,64,63.5,64.9,65.6,65.8,64.8,65.3,66,66.2,67.3,67.9,68.9,68.6,69.5,69.4,69.9,70,70.1,70.5,71.2,71.4,71.3,71.6,71.2,71.2,72.1,72.2,72.3,72.6,72.6,72.6,73,73.4,73.8,74.2,74.6,74.8,75,75.2,75.4,75.5,75.7,75.9,76.1,76.3,76.6,76.9,77.1,77.3,77.4,77.5,77.6,77.7,77.9,78.1,78.4,78.6,78.9,79.3,79.6,79.8,80,80.2,80.4,80.7,81,81.2,81.5,81.7,81.9,82.1,82.3,82.5,82.6,82.7,82.8,82.9],"population":[2587739,2602972,2618205,2633438,2648671,2663904,2679811,2695719,2711626,2727534,2743441,2759348,2775256,2791163,2807071,2822978,2837924,2852871,2867817,2882764,2897710,2912656,2927603,2942549,2957496,2972442,3004921,3037400,3069879,3102358,3134837,3167316,3199795,3232274,3264753,3297232,3340148,3383064,3425980,3468896,3511812,3554728,3597644,3640560,3683476,3726392,3740322,3754252,3768181,3782111,3796041,3809971,3823901,3837830,3851760,3865690,3883352,3901014,3918676,3936338,3954000,3971662,3989324,4006986,4024648,4042310,4060039,4077767,4095496,4113224,4130953,4148682,4166410,4184139,4201867,4219596,4264445,4309294,4354144,4398993,4443842,4488691,4533540,4578390,4623239,4668088,4726283,4788958,4851987,4912885,4970810,5026664,5082993,5143672,5213397,5296120,5393411,5503000,5618160,5729465,5829958,5916911,5991681,6056358,6114719,6169357,6221634,6270112,6311468,6341051,6356178,6355245,6341216,6321583,6306578,6303608,6315799,6341369,6376791,6416275,6455680,6493442,6531160,6571461,6618268,6673920,6739995,6814186,6890300,6959860,7017042,7059633,7090176,7113505,7136813,7165581,7200945,7242034,7289901,7345299,7408608,7480317,7560141,7646542,7737316,7830534,7925813,8022628,8118719,8211383,8298663]},{"name":"Syria","region":"Middle East & North Africa","income":[1147,1148,1150,1151,1153,1154,1165,1176,1186,1197,1209,1220,1231,1242,1254,1266,1277,1289,1301,1313,1325,1338,1350,1363,1375,1388,1401,1414,1427,1440,1453,1467,1480,1494,1508,1522,1536,1550,1565,1579,1594,1609,1623,1638,1654,1669,1683,1697,1711,1663,1617,1571,1527,1557,1586,1616,1647,1678,1682,1686,1690,1694,1699,1703,1707,1675,1643,1612,1581,1551,1522,1493,1512,1532,1552,1573,1593,1614,1636,1657,1679,1702,1724,1747,1771,1794,1686,2074,2295,2569,2261,2609,2697,2260,2276,2247,2210,2932,2578,2894,2810,2503,2580,2598,3009,2582,2744,3317,2933,3521,4071,4372,4178,4398,4411,4777,5055,4987,4886,4531,4653,4284,4234,4654,3749,3809,3991,4399,4498,4693,4894,5246,5385,5620,5291,5188,5232,5474,5341,5546,5738,5888,6094,6246,6497,6603,6358,6432,5464,5105,4637],"lifeExpectancy":[31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,25.8,31.1,31.1,31.2,31.2,31.3,31.4,31.4,31.5,31.6,31.6,31.7,31.7,31.8,31.9,31.9,32,32.1,33.2,34.4,35.5,36.7,37.9,39,40.2,41.3,42.5,43.7,44.8,46,47.1,48.3,49.5,49.8,50.5,51.1,51.7,52.3,52.9,53.6,54.2,54.8,55.4,56,56.6,57.2,57.9,58.6,59.3,60,60.8,61.6,62.4,62.8,63.2,63.5,64,64.4,65,65.4,65.9,66.2,66.7,67.1,64.2,68,68.3,68.5,68.8,69,69.3,69.5,69.7,70,70.4,70.8,71.2,71.7,72.1,72.5,73,73.4,73.8,74.2,74.6,75,75.4,75.8,76.1,76.4,76.6,76.7,76.7,75.1,73.5,72.4,71.3,70.3],"population":[1559283,1565299,1571315,1577331,1583347,1589363,1597184,1605005,1612826,1620647,1628468,1636288,1644109,1651930,1659751,1667572,1676670,1685769,1694867,1703966,1713064,1722162,1731261,1740359,1749458,1758556,1768188,1777821,1787453,1797086,1806718,1816350,1825983,1835615,1845248,1854880,1865017,1875155,1885292,1895429,1905567,1915704,1925841,1935978,1946116,1956253,1980656,2005059,2029461,2053864,2078267,2102670,2127073,2151475,2175878,2200281,2234686,2269091,2303496,2337901,2372306,2406711,2441116,2475521,2509926,2544331,2584116,2623901,2663685,2703470,2743255,2783040,2822825,2862609,2902394,2942179,2989294,3036409,3083524,3130639,3177754,3224869,3271984,3319099,3366214,3413329,3500650,3595227,3697041,3805985,3921864,4044390,4173185,4307809,4447797,4592777,4742596,4897428,5057825,5224579,5398333,5579283,5767478,5963248,6166933,6378802,6599366,6828765,7066474,7311685,7564000,7822610,8088148,8363346,8651904,8956156,9277263,9613517,9960833,10313485,10667245,11020718,11374772,11730217,12088714,12451539,12817578,13186187,13559642,13941025,14331962,14736209,15151962,15568797,15972430,16354050,16694414,16997521,17304339,17671913,18132842,18728200,19425597,20097057,20566871,20720602,20501167,19978756,19322593,18772481,18502413]},{"name":"Tajikistan","region":"Europe & Central Asia","income":[723,727,731,735,739,743,748,752,756,760,765,769,773,778,782,786,791,795,800,804,809,777,908,873,811,807,739,809,916,1040,962,1059,1041,1068,1132,1107,1134,1231,1146,1266,1120,1070,1027,1121,1163,1240,1145,1236,1298,1238,1274,1132,993,608,523,525,480,556,640,809,1009,1131,1176,1235,1247,1302,1311,1289,1335,1455,1661,1771,1914,1906,1979,1894,1855,1817,1780,1743,1708,1673,1855,2092,2281,2466,2431,2540,2601,2677,2850,3063,3065,3232,3134,3363,3490,3522,3387,3769,3930,4070,4200,4398,4413,4703,4776,4750,5095,5053,4883,4928,4864,4809,4617,4461,4344,4294,4274,4172,4059,4075,3981,3924,3855,3635,3302,2300,1891,1465,1266,1040,1045,1086,1111,1186,1285,1398,1522,1645,1719,1800,1898,2001,2029,2110,2212,2320,2432,2533,2582],"lifeExpectancy":[23.2,22.7,22.1,21.6,21.7,21.7,21.7,21.8,21.8,22,22.2,22.4,22.6,22.8,23,23.2,23.4,23.6,23.8,24,24.2,24.4,24.6,24.8,25,25.2,25.4,25.6,25.8,26,26.2,26.4,26.6,26.5,26.3,26.1,26.4,26.6,26.9,27.1,27.4,27.6,27.9,28.1,28.4,28.6,31.6,32,29.8,29.4,29,29,26,16,21.5,17,20.2,21.1,29.9,32.4,31.4,34.6,33.8,35.3,34,33.2,27.4,19.3,15.3,35.4,36.9,38.5,37.4,39.1,41.4,38.9,28.5,24.4,23.4,31.3,38.7,45.5,37.5,45.5,48.2,50.4,50.6,51,51.3,51.7,52,52.4,52.7,53.1,53.5,53.8,54.2,54.5,54.9,55.3,55.6,56,56.3,56.6,56.9,57.2,57.8,58.3,58.8,59.3,59.9,60.4,61,61.5,62,62.5,62.9,63.3,63.7,64.1,64.4,64.7,64.8,64.9,65,65,64.8,62.6,58.8,63.7,63.6,63.8,64.5,65,65.7,66.3,66.9,67.4,68,68.4,68.8,69,69.2,69.5,69.7,69.9,70.2,70.4,70.6,70.8,71],"population":[704820,711187,717554,723920,730287,736654,743581,750507,757434,764360,771287,778213,785139,792066,798993,805919,813492,821064,828637,836210,843783,851355,858928,866501,874073,881646,889987,898327,906668,915008,923349,931690,940030,948371,956711,965052,974146,983241,992335,1001429,1010524,1019618,1028712,1037806,1046901,1055995,1066018,1076041,1086064,1096087,1106111,1116134,1126157,1136180,1146203,1156226,1167295,1178363,1189432,1200500,1211569,1222637,1233706,1244774,1255843,1266911,1279039,1291167,1303295,1315423,1327552,1339680,1351808,1363936,1376064,1388192,1402523,1416854,1431185,1445516,1459847,1474178,1488509,1502840,1517171,1531502,1576454,1624542,1674117,1724204,1774504,1825437,1878098,1934134,1995539,2064035,2140413,2223956,2312193,2401598,2489648,2575335,2659452,2743461,2829641,2919586,3013956,3112041,3212446,3313144,3412819,3511050,3608761,3707624,3809991,3917642,4030104,4146923,4269775,4400743,4540688,4690913,4849253,5008827,5160375,5297286,5417554,5523207,5616797,5702611,5784330,5862224,5936780,6012308,6094126,6186152,6290413,6406518,6532871,6666628,6805655,6949566,7099021,7254072,7414960,7581696,7753925,7930929,8111894,8295840,8481855]},{"name":"Tanzania","region":"Sub-Saharan Africa","income":[636,638,639,641,643,645,646,648,650,652,653,655,657,659,660,662,664,666,667,669,671,673,675,676,678,680,682,684,686,687,689,691,693,695,697,699,700,702,704,706,708,710,712,714,716,718,720,721,723,725,727,729,731,733,735,737,744,750,756,763,770,776,783,789,796,803,809,816,823,829,836,843,850,857,864,871,878,885,892,899,906,913,920,927,934,941,1040,1042,985,1044,1048,1038,1041,1027,1054,1072,1035,1102,1143,1176,1189,1307,1326,1360,1349,1391,1412,1465,1470,1464,1503,1571,1574,1579,1559,1534,1479,1461,1419,1418,1379,1389,1420,1442,1454,1471,1453,1413,1384,1362,1369,1392,1405,1421,1454,1488,1538,1607,1673,1756,1848,1880,1980,2030,2076,2143,2243,2288,2382,2472,2571],"lifeExpectancy":[32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,12.5,32.2,32.2,32.3,32.5,32.6,32.8,32.9,33,33.2,33.3,33.5,33.6,33.7,33.9,34,34.2,34.3,34.4,34.6,34.7,34.9,35,35.1,35.3,35.4,35.6,35.7,37.5,39.3,41,42.8,44.6,45,45.5,46.1,46.6,47.1,47.6,48,48.5,48.9,49.3,49.7,50.1,50.5,50.9,51.3,51.8,52.2,52.7,53.2,53.7,54.2,54.8,55.4,55.8,56.3,56.7,57.1,57.5,57.8,57.9,58,58,57.9,57.9,57.9,57.9,57.9,57.8,57.6,57.2,56.8,56.4,55.9,55.5,55.1,54.8,54.6,54.5,54.5,54.8,55.1,55.6,56.2,56.7,57.2,57.9,58.7,59.7,60.3,60.9,61.4,61.6,62.2,62.8,63.4],"population":[3532991,3544913,3556835,3568757,3580679,3592601,3604902,3617203,3629504,3641805,3654106,3666406,3678707,3691008,3703309,3715610,3728328,3741046,3753764,3766482,3779200,3791918,3804636,3817354,3830072,3842790,3855977,3869164,3882351,3895538,3908725,3921912,3935099,3948286,3961473,3974660,3988278,4001896,4015514,4029132,4042750,4056368,4069986,4083604,4097222,4110840,4125166,4139493,4153819,4168145,4182472,4196798,4211124,4225450,4239777,4254103,4342445,4430787,4519129,4607471,4695813,4784155,4872497,4960839,5049181,5137523,5264728,5391933,5519138,5646343,5773548,5900752,6027957,6155162,6282367,6409572,6533591,6657611,6781630,6905650,7029669,7153688,7277708,7401727,7525747,7649766,7847303,8055911,8274747,8503218,8740984,8987966,9244340,9510501,9787019,10074490,10373380,10683888,11005882,11339076,11683511,12038886,12406040,12787494,13186560,13605504,14045757,14506496,14984973,15477155,15980265,16493435,17018013,17556148,18110990,18684893,19279543,19894677,20528465,21178079,21842087,22516809,23204186,23914852,24663284,25458208,26307482,27203865,28122799,29030288,29903329,30733937,31533781,32323953,33135281,33991590,34899062,35855480,36866228,37935334,39065600,40260847,41522004,42844744,44222113,45648525,47122998,48645709,50213457,51822621,53470420]},{"name":"Thailand","region":"East Asia & Pacific","income":[997,998,1000,1001,1002,1004,1017,1030,1043,1057,1071,1084,1098,1113,1127,1142,1156,1171,1187,1202,1217,1233,1249,1265,1282,1298,1302,1307,1311,1315,1319,1323,1328,1332,1336,1340,1345,1349,1353,1357,1362,1366,1370,1375,1379,1384,1384,1384,1384,1375,1366,1357,1348,1339,1330,1321,1310,1298,1287,1276,1265,1255,1244,1234,1224,1224,1224,1224,1224,1225,1225,1226,1226,1227,1221,1215,1209,1204,1199,1193,1188,1183,1178,1173,1169,1164,1206,1232,1322,1266,1329,1304,1274,1276,1383,1500,1527,1593,1667,1725,1804,1945,2044,2145,2246,2323,2365,2398,2570,2621,2688,2870,3088,3325,3427,3508,3645,3770,3912,4068,4191,4356,4701,5250,5808,6369,6841,7333,7882,8529,9239,9689,9454,8363,8633,8939,9028,9399,9962,10497,10901,11400,11940,12216,11915,12822,12798,13586,13932,13986,14512],"lifeExpectancy":[30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,30.4,19.5,30.4,30.4,30.5,30.6,30.7,30.8,30.8,30.9,31,31.1,31.2,31.3,32.8,34.3,35.8,37.3,38.8,40.3,41.8,41.9,42,41.1,40.1,40.2,40.3,40.2,41.5,42.8,44.2,52.4,52.9,53.5,53.7,54.2,54.6,55.1,55.7,56.3,56.9,57.5,58.1,58.7,59.4,59.9,60.5,61,61.5,61.9,62.4,62.9,63.4,63.9,64.5,64.9,65.4,66,66.6,67.1,67.4,67.5,67.6,67.6,67.9,68.3,68.9,69.6,70.4,71,71.4,71.6,71.7,71.7,71.7,71.5,71.4,71.1,70.9,70.8,70.9,70.9,71.1,71.3,71.5,71.8,72,72,72.8,73.3,73.7,74.1,74.4,74.6,74.7,74.8,74.9,75,75.1],"population":[5684687,5718250,5751814,5785378,5818941,5852505,5894598,5936690,5978783,6020875,6062968,6105060,6147153,6189245,6231338,6273430,6324300,6375171,6426041,6476911,6527782,6578652,6629522,6680392,6731263,6782133,6852160,6922186,6992213,7062239,7132266,7202292,7272319,7342345,7412372,7482398,7582963,7683529,7784094,7884660,7985225,8085790,8186356,8286921,8387487,8488052,8641742,8795432,8949122,9102812,9256502,9410192,9563882,9717572,9871262,10024952,10289978,10555003,10820029,11085054,11350080,11615105,11880130,12145156,12410182,12675207,12994226,13313245,13632264,13951283,14270303,14589322,14908341,15227360,15546379,15865398,16349894,16834390,17318885,17803381,18287877,18772373,19256869,19741364,20225860,20710356,21263203,21837991,22436536,23060429,23711041,24389520,25096792,25833554,26600277,27397178,28224208,29081037,29967043,30881332,31822798,32789097,33778500,34790945,35826803,36884914,37964925,39061999,40164969,41259539,42334954,43386846,44416007,45423442,46412310,47385325,48336894,49265597,50183106,51105438,52041468,53002775,53979503,54933561,55812794,56582824,57225972,57761574,58237672,58722767,59266089,59878955,60544937,61250974,61973957,62693322,63415174,64136669,64817254,65404522,65863973,66174486,66353572,66453255,66548197,66692024,66902958,67164130,67451422,67725979,67959359]},{"name":"Timor-Leste","region":"East Asia & Pacific","income":[592,594,595,596,597,598,599,601,602,603,604,605,607,608,609,610,611,613,614,615,616,617,619,620,621,622,624,625,626,627,628,630,631,632,633,635,636,637,638,640,641,642,644,645,646,647,649,650,651,652,654,655,656,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,673,674,675,676,677,678,679,680,681,682,683,684,684,685,686,687,688,689,690,691,692,693,693,694,695,696,697,698,699,700,701,701,702,703,704,705,706,707,707,708,725,742,759,776,794,813,832,851,871,891,912,933,955,977,999,1022,1046,1121,1195,1273,1365,1477,1644,1741,1738,1132,1322,1507,1363,1283,1244,1301,1206,1323,1486,1652,1777,1940,2040,2093,2173,2086],"lifeExpectancy":[28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,9.4,28.9,28.9,29.1,29.3,29.4,29.6,29.7,29.9,30.1,30.2,30.4,30.5,30.7,30.9,31,31.2,31.3,31.5,31.7,31.8,32,32.1,32.3,24.5,22.7,19.8,19,24.2,30.3,33.4,33.6,33.7,34.2,34.8,35.5,36.1,36.8,37.5,38.1,38.8,39.4,40.1,40.8,41.4,42.1,42.7,43.4,44.2,45.1,46,46.9,47.5,48,48.6,49.1,49.6,50,50.3,50.6,50.9,51.4,51.9,52.6,53.4,54.2,55,55.8,56.5,57.2,57.8,58.4,59,59.5,60.1,60.8,61.5,62,62.5,62.9,63.2,63.3,63.6,64.4,65.1,65.7,66.4,67,67.6,68.1,68.7,69.3,69.8,70.4,70.9,71.4,71.9,72.4],"population":[226084,228558,231032,233507,235981,238455,241195,243935,246675,249415,252156,254896,257636,260376,263116,265856,268909,271961,275014,278066,281119,284171,287224,290276,293329,296381,299812,303243,306674,310105,313537,316968,320399,323830,327261,330692,334502,338313,342123,345934,349744,353554,357365,361175,364986,368796,373073,377350,381626,385903,390180,394457,398734,403010,407287,411564,415209,418855,422500,426145,429791,433436,437081,440726,444372,448017,448143,448268,448394,448519,448645,448771,448896,449022,449147,449273,447686,446098,444511,442923,441336,439748,438161,436573,434986,433398,438192,443346,448894,454860,461257,468089,475350,483024,491090,499525,508311,517446,526936,536798,547035,557252,567330,577824,589519,602737,618508,636100,652017,661528,661634,650490,630151,606295,586886,577580,580556,593937,614379,636670,657018,674128,689170,703696,720198,740231,764884,792846,820471,842752,856439,859496,853867,845106,841063,847185,865848,894837,929431,962634,989497,1008389,1021235,1030915,1041827,1057122,1077602,1102076,1129315,1157360,1184765]},{"name":"Togo","region":"Sub-Saharan Africa","income":[851,855,859,863,867,871,876,880,884,888,893,897,901,906,910,914,919,923,928,932,937,941,946,950,955,960,964,969,974,978,983,988,993,997,1002,1007,1012,1017,1022,1027,1032,1037,1042,1047,1052,1057,1062,1067,1072,1073,1073,1073,1074,1074,1074,1074,1073,1072,1071,1069,1068,1067,1065,1064,1063,1062,1060,1059,1058,1056,1055,1054,1052,1051,1050,1048,1047,1045,1044,1043,1041,1040,1039,1037,1036,1034,1050,1066,1080,1095,1110,1125,1139,1152,1165,1238,1289,1303,1331,1483,1640,1742,1788,1827,1969,1878,1962,1980,1854,1885,1828,1774,1825,1960,2026,1882,1710,1587,1447,1436,1449,1440,1406,1415,1414,1350,1306,1223,1014,1138,1198,1272,1418,1351,1349,1305,1251,1207,1235,1228,1211,1228,1224,1219,1230,1246,1273,1314,1346,1387,1433],"lifeExpectancy":[31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,31.3,12.1,31.3,31.3,31.4,31.5,31.6,31.7,31.8,32,32.1,32.2,32.3,32.4,32.5,32.6,32.7,32.8,32.9,33,33.1,33.3,33.4,33.5,33.6,33.7,33.8,33.9,34,34.7,35.3,35.9,36.6,37.2,37.6,38.4,39.2,40,40.8,41.6,42.4,43.1,43.9,44.6,45.4,46.1,46.9,47.6,48.4,49.1,49.8,50.6,51.3,52,52.6,53.1,53.5,53.9,54.2,54.6,55,55.4,55.8,56.1,56.5,56.7,56.9,57.2,57.5,57.7,58,58.2,58.4,58.6,58.6,58.8,58.7,58.8,58.9,59.1,59.2,59.2,59.1,59,58.9,58.8,58.8,58.9,59,59.4,59.7,60,60.5,61,61.7,62.4,63,63.6,64.2],"population":[662824,668593,674361,680130,685898,691667,697924,704180,710437,716694,722951,729207,735464,741721,747977,754234,761052,767871,774689,781508,788326,795144,801963,808781,815600,822418,829901,837384,844867,852350,859834,867317,874800,882283,889766,897249,905383,913516,921650,929784,937918,946051,954185,962319,970452,978586,987508,996430,1005352,1014274,1023197,1032119,1041041,1049963,1058885,1067807,1077600,1087393,1097186,1106979,1116772,1126564,1136357,1146150,1155943,1165736,1176427,1187118,1197809,1208500,1219191,1229882,1240573,1251264,1261955,1272646,1284927,1297208,1309490,1321771,1334052,1346333,1358614,1370896,1383177,1395458,1425482,1441908,1452091,1461521,1473839,1490731,1512025,1535969,1559679,1580513,1597528,1612758,1631763,1662072,1708632,1774029,1855445,1945781,2034909,2115521,2185661,2247575,2303345,2356623,2410446,2464457,2518566,2576468,2642845,2720838,2812071,2915148,3026378,3140355,3252995,3363448,3472459,3579489,3684309,3786942,3886858,3984356,4081398,4180689,4284286,4392941,4506465,4624826,4747665,4874735,5006223,5142419,5283246,5428552,5578219,5732175,5890414,6052937,6219761,6390851,6566179,6745581,6928719,7115163,7304578]},{"name":"Tonga","region":"East Asia & Pacific","income":[774,777,779,782,785,787,790,793,795,798,801,803,806,809,812,814,817,820,823,826,828,831,834,837,840,843,845,848,851,854,857,860,863,866,869,872,875,877,880,883,886,889,892,896,899,902,905,908,911,922,934,945,957,969,981,993,1004,1015,1027,1038,1050,1061,1073,1085,1097,1109,1122,1134,1147,1159,1172,1185,1198,1212,1225,1238,1252,1266,1280,1294,1308,1323,1337,1352,1367,1382,1397,1413,1428,1444,1460,1476,1492,1508,1525,1541,1558,1575,1592,1610,1627,1645,1663,1681,1699,1718,1736,1755,1774,1849,1909,1920,1992,2002,2016,2324,2655,3072,3288,3379,3621,3698,3793,3695,3678,3572,3795,3800,3937,4125,4269,4256,4235,4331,4478,4605,4745,4878,4953,4959,5006,4920,4664,4748,4772,4945,5023,5032,4879,4962,5069],"lifeExpectancy":[28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,8,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,28.2,5.8,28.2,28.2,28.2,28.3,28.3,28.3,28.4,29.6,30.8,32,33.2,34.5,35.7,36.9,38.1,39.4,40.6,41.8,43,44.2,45.5,46.7,47.9,49.1,50.4,51.6,52.8,54,55.2,56.5,57.7,58.9,59.1,59.5,59.9,60.3,60.7,61.1,61.5,61.9,62.3,62.7,63.1,63.5,63.9,64.3,64.6,65,65.4,65.8,66.1,66.5,66.6,66.8,66.8,67,67.1,67.2,67.3,67.3,67.3,67.3,67.3,67.2,67.5,67.8,68,68.2,68.4,68.5,68.6,68.7,68.8,68.9,69,69.1,69.2,69.2,69.3,69.2,69.2,69.1,69.1,69.1,69.2,69.3,69.5,69.7,69.8,69.9,69.8,70.1,70.1,70.2,70.3,70.4,70.5],"population":[18919,18947,18975,19003,19031,19059,19087,19116,19144,19173,19201,19229,19258,19286,19315,19343,19372,19401,19430,19459,19488,19517,19546,19575,19604,19633,19721,19809,19897,19985,20073,20160,20248,20336,20424,20512,20730,20947,21165,21383,21601,21818,22036,22254,22471,22689,22887,23085,23284,23482,23680,23878,24076,24275,24473,24671,25047,25424,25800,26176,26553,26929,27305,27681,28058,28434,29077,29721,30364,31008,31651,32294,32938,33581,34225,34868,36103,37338,38574,39809,41044,42279,43514,44750,45985,47220,49311,51171,52784,54154,55324,56366,57386,58508,59874,61600,63740,66255,69000,71757,74363,76787,79048,81096,82879,84370,85520,86349,86985,87609,88347,89258,90296,91360,92299,93007,93452,93683,93775,93838,93953,94147,94399,94680,94943,95152,95304,95421,95532,95678,95889,96174,96526,96937,97398,97898,98434,99005,99606,100226,100858,101507,102169,102816,103416,103947,104392,104769,105139,105586,106170]},{"name":"Trinidad and Tobago","region":"America","income":[1575,1583,1592,1600,1609,1618,1627,1636,1644,1653,1662,1671,1680,1690,1699,1708,1717,1727,1736,1745,1755,1764,1774,1784,1793,1803,1813,1823,1833,1843,1853,1863,1873,1883,1893,1904,1914,1924,1935,1945,1956,1966,1977,1988,1999,2010,2020,2031,2043,2088,2134,2181,2229,2278,2328,2380,2438,2498,2559,2622,2686,2752,2819,2888,2959,3031,3105,3181,3259,3338,3420,3503,3588,3676,3765,3857,3951,4047,4145,4246,4349,4455,4563,4674,4787,4903,5209,5283,5313,5271,5825,6843,7246,7621,7820,8531,8714,8929,9229,9362,9699,10002,10152,10669,10988,11495,11558,12081,12187,12729,12847,13904,14568,16047,16549,17624,18248,16989,15457,16175,15331,14682,13902,13310,13206,13464,13735,13426,13158,13562,14046,14561,14928,16064,16739,17721,18383,19773,22519,24175,25439,28790,30008,30875,29383,29321,28743,29086,29469,29820,30113],"lifeExpectancy":[38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,38.8,25.2,38.8,38.8,38.8,39.5,40.2,40.9,41.6,42.3,43,43.7,44.4,45.1,45.8,46.4,47,47.6,48.2,48.8,49.4,50,50.6,51.2,51.8,52.4,53,53.6,54.2,54.8,55.4,56,56.7,57.3,57.5,58,58.5,59.1,59.7,60.4,61.1,61.8,62.5,63.1,63.7,64.2,64.7,65,65.2,65.3,65.4,65.5,65.6,65.7,65.8,65.9,66.1,66.4,66.6,66.7,67,67.5,67.8,67.9,68.1,68.2,68.3,68.3,68.5,69,69.3,69.4,69.5,69.6,69.7,69.6,69.5,69.4,69.5,69.6,69.6,69.6,69.4,69.4,69.5,69.7,70,70.4,70.9,71.2,71.3,71.3,71.2,71.1,71.1,71.1,71.2,71.3,71.4],"population":[114032,116684,119335,121987,124638,127290,130863,134436,138009,141582,145155,148728,152301,155874,159447,163020,167759,172499,177238,181978,186717,191456,196196,200935,205675,210414,216460,222506,228552,234598,240644,246689,252735,258781,264827,270873,277470,284067,290663,297260,303857,310454,317051,323647,330244,336841,341868,346895,351922,356949,361976,367003,372030,377057,382084,387111,389694,392277,394860,397443,400026,402609,405192,407775,410358,412941,420384,427827,435270,442713,450157,457600,465043,472486,479929,487372,503198,519023,534849,550674,566500,582326,598151,613977,629802,645628,658830,675742,695467,717161,740036,763355,786438,808663,829489,848481,865356,880019,892571,903272,912419,919902,925918,931466,937846,945996,956364,968742,982594,997052,1011487,1025655,1039757,1054109,1069199,1085308,1102562,1120610,1138673,1155701,1170935,1184053,1195243,1204890,1213625,1221904,1229906,1237486,1244410,1250316,1255001,1258365,1260677,1262544,1264781,1267980,1272383,1277840,1284052,1290535,1296933,1303141,1309260,1315372,1321624,1328095,1334790,1341579,1348240,1354483,1360088]},{"name":"Tunisia","region":"Middle East & North Africa","income":[891,895,899,904,908,912,917,921,926,930,934,939,943,948,953,957,962,966,971,976,980,985,990,995,999,1004,1009,1014,1019,1024,1029,1033,1038,1043,1048,1053,1059,1064,1069,1074,1079,1084,1089,1095,1100,1105,1115,1125,1135,1148,1160,1172,1185,1197,1210,1223,1240,1257,1274,1291,1308,1326,1343,1360,1377,1395,1412,1429,1446,1464,1481,1498,1516,1533,1550,1567,1585,1602,1619,1636,1653,1670,1688,1705,1722,1739,1732,1916,1959,1974,1845,1945,1848,2064,1950,2157,2312,2226,2516,2575,2683,2690,2615,2831,2876,2990,3246,3746,3639,3841,4011,4215,4255,4434,4618,4837,4980,4863,4999,5048,5205,5002,5214,5109,5196,5502,5604,5920,5991,6031,6055,6393,6649,6879,7201,7464,7699,7752,8094,8468,8707,9109,9585,9938,10187,10411,10235,10609,10768,10825,11126],"lifeExpectancy":[28.8,28.8,28.8,9.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,22,28.8,28.8,28.9,29,29.2,29.5,29.9,30.2,30.6,30.9,31.3,31.7,32,32.4,32.7,33.3,33.8,34.3,34.9,35.4,35.9,36.4,35.5,29.6,27.7,28.8,30.4,38.1,40.2,40.7,41.2,41.8,42,42.4,42.8,43.2,43.7,44.2,44.7,45.3,46,46.7,47.4,48.2,49.1,50.1,51.1,52.2,53.3,54.5,55.7,57,57.8,58.9,59.8,60.8,61.8,62.8,63.7,64.6,65.4,66.1,67,67.7,68.4,69.2,69.8,70.4,70.9,71.3,71.6,71.9,72.2,72.5,72.8,73.1,73.4,73.8,74.1,74.5,74.8,75,75.2,75.4,75.6,75.8,76,76.2,76.3,76.5,76.6,76.8,76.9,77,77.1,77.2,77.3],"population":[1156383,1165129,1173876,1182622,1191369,1200115,1212509,1224902,1237296,1249690,1262084,1274477,1286871,1299265,1311658,1324052,1339468,1354884,1370301,1385717,1401133,1416549,1431965,1447382,1462798,1478214,1495558,1512902,1530246,1547590,1564934,1582277,1599621,1616965,1634309,1651653,1670944,1690236,1709527,1728818,1748110,1767401,1786692,1805983,1825275,1844566,1875398,1906229,1937061,1967892,1998724,2029556,2060387,2091219,2122050,2152882,2193207,2233533,2273858,2314183,2354509,2394834,2435159,2475484,2515810,2556135,2604014,2651892,2699771,2747649,2795528,2843406,2891285,2939163,2987042,3034920,3091959,3148998,3206037,3263076,3320115,3377154,3434193,3491232,3548271,3605310,3696457,3773357,3838499,3894386,3943533,3988481,4031786,4075967,4123437,4176266,4235936,4303130,4377636,4458609,4545340,4638271,4737633,4842166,4950153,5060393,5172692,5287548,5405354,5526768,5652478,5781793,5915006,6054914,6205210,6368169,6545025,6733958,6930390,7127943,7321877,7509750,7692246,7871460,8050936,8232797,8417689,8603226,8784888,8956590,9113972,9256036,9384151,9499387,9603733,9699192,9785665,9864207,9939478,10017439,10102477,10196441,10298717,10408091,10522214,10639194,10758870,10881450,11005706,11130154,11253554]},{"name":"Turkey","region":"Europe & Central Asia","income":[1555,1563,1572,1580,1588,1597,1608,1619,1605,1590,1576,1562,1548,1534,1520,1535,1601,1669,1741,1754,1768,1782,1795,1809,1823,1838,1852,1866,1881,1895,1910,1925,1939,1954,1970,1985,2000,2016,2031,2047,2063,2079,2095,2111,2128,2144,2162,2181,2200,2088,1981,1880,1784,1694,1607,1525,1449,1377,1308,1557,1725,1993,1803,1970,2252,2323,2426,2247,2507,2529,2544,2981,3031,3246,3420,3163,2851,2947,2651,2514,2154,2722,2812,3123,2901,3103,3701,3963,4361,3892,4156,4122,4943,5252,4869,4735,4691,4849,5188,5296,5309,5906,6020,6295,6470,6740,6765,7186,7442,7991,8381,9142,8863,8400,8160,7828,8518,8323,8535,8798,9163,9556,10351,10421,10103,10670,10568,10920,11569,10857,11530,12190,12911,13008,12381,13025,12106,12669,13151,14187,15176,16013,16551,16454,15467,16674,17908,18057,18579,18884,19360],"lifeExpectancy":[35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,27,7,19,22,19.1,30,29,29.1,33.2,35.2,35.3,35.4,35.5,35.5,35.6,35.7,35.8,35.9,36.1,36.2,36.3,36.5,36.6,36.8,36,35.3,34.5,33.8,33.1,34.5,35.9,37.4,38.8,40.2,41,41.7,42.5,42.8,43.3,43.8,44.3,44.9,45.6,46.3,47,47.7,48.5,49.3,50.1,50.9,51.8,52.6,53.3,54.1,54.8,55.5,56.2,56.9,57.7,58.3,58.9,59.5,60,60.9,61.4,62,62.7,63.2,63.7,64.2,64.8,65.2,65.7,66.1,66.5,66.9,67.3,67.6,67.9,68.3,68.6,69,69.4,69.8,70.4,70.3,71.5,72,72.5,72.9,73.4,73.8,74.3,74.7,75.1,75.4,75.7,76,76.2,76.3,76.4,76.5],"population":[11650253,11694560,11738867,11783174,11827481,11871788,11932044,11992301,12052557,12112813,12173070,12233326,12293582,12353838,12414095,12474351,12545768,12617185,12688602,12760019,12831437,12902854,12974271,13045688,13117105,13188522,13264333,13340144,13415956,13491767,13567578,13643389,13719200,13795012,13870823,13946634,14026619,14106603,14186588,14266572,14346557,14426541,14506525,14586510,14666495,14746479,14691872,14637264,14582657,14528049,14473442,14418834,14364227,14309619,14255012,14200404,14273441,14346478,14419514,14492551,14565588,14638625,14711662,14784698,14857735,14930772,15215412,15500052,15784692,16069332,16353972,16638612,16923252,17207892,17492532,17777172,18123304,18469437,18815569,19161702,19507834,19853966,20200099,20546231,20892364,21238496,21806355,22393931,22999018,23619469,24253200,24898170,25552398,26214022,26881379,27553280,28229291,28909985,29597047,30292969,31000167,31718266,32448404,33196289,33969201,34772031,35608079,36475356,37366922,38272701,39185637,40100696,41020211,41953105,42912350,43905790,44936836,45997940,47072603,48138191,49178079,50187091,51168841,52126497,53066569,53994605,54909508,55811134,56707454,57608769,58522320,59451488,60394104,61344874,62295617,63240157,64182694,65125766,66060121,66973561,67860617,68704721,69515492,70344357,71261307,72310416,73517002,74849187,76223639,77523788,78665830]},{"name":"Turkmenistan","region":"Europe & Central Asia","income":[1291,1300,1308,1317,1325,1334,1342,1351,1360,1369,1377,1386,1395,1404,1414,1423,1432,1441,1451,1460,1469,1413,1652,1590,1478,1472,1349,1477,1674,1904,1762,1941,1908,1960,2080,2035,2086,2268,2111,2335,2067,1976,1899,2074,2154,2299,2124,2295,2412,2303,2371,2108,1851,1133,977,981,899,1045,1205,1529,1913,2150,2243,2361,2391,2502,2528,2492,2588,2829,3239,3463,3754,3748,3904,3745,3679,3614,3550,3487,3426,3365,3743,4233,4628,5018,4961,5197,5337,5509,5881,6338,6361,6726,6540,7040,7319,7402,7132,7952,8309,8622,8916,9355,9406,10045,10221,10186,10948,10900,10576,10715,10617,10538,10158,9853,9632,9559,9553,9362,9143,9216,9040,8944,8822,8353,7748,6402,6320,5094,4623,4841,4221,4460,5132,5351,5521,5477,5598,5817,6505,7137,7834,8877,9303,10032,11361,12460,13555,14762,15865],"lifeExpectancy":[22.3,21.5,20.7,19.8,19.9,19.9,20,20,20.1,20.3,20.5,20.7,20.9,21.1,21.3,21.5,21.7,21.9,22.1,22.3,22.5,22.7,22.9,23.1,23.3,23.5,23.7,23.9,24.1,24.3,24.5,24.7,24.9,24.7,24.5,24.4,24.6,24.9,25.1,25.4,25.6,25.9,26.1,26.4,26.6,26.9,29.8,30.2,28.1,27.7,27.3,27.3,24.3,14.3,19.7,15.2,18.4,19.2,28,30.3,29.3,32.4,31.6,33,31.7,30.9,24.9,16.8,12.7,32.7,34.2,35.7,34.6,36.2,38.5,35.9,25,20.9,19.8,27.6,35,42.2,34,42,44.7,46.8,46.9,47.3,47.6,47.9,48.2,48.5,48.8,49.1,49.4,49.7,50,50.3,50.6,50.9,51.2,51.5,51.8,52.1,52.3,52.5,53.3,54.1,54.9,55.6,56.3,57,57.7,58.4,59,59.5,60.1,60.7,61.2,61.6,62,62.3,62.6,62.9,63.1,63.3,63.3,63.2,63.1,62.9,62.7,62.7,62.6,62.7,62.9,63.1,63.4,63.7,64.1,64.4,64.8,65.1,65.5,65.9,66.3,66.6,67,67.3,67.5,67.7,67.9],"population":[556239,561327,566414,571502,576589,581677,587218,592759,598301,603842,609383,614924,620465,626007,631548,637089,643154,649220,655285,661350,667416,673481,679546,685611,691677,697742,704430,711117,717805,724493,731181,737868,744556,751244,757931,764619,771919,779220,786520,793821,801121,808421,815722,823022,830323,837623,845654,853686,861717,869748,877780,885811,893842,901873,909905,917936,926760,935585,944409,953234,962058,970882,979707,988531,997356,1006180,1015853,1025525,1035198,1044871,1054544,1064216,1073889,1083562,1093234,1102907,1113716,1124526,1135335,1146144,1156954,1167763,1178572,1189381,1200191,1211000,1228378,1252660,1282584,1317126,1355501,1397172,1441843,1489418,1539955,1593501,1649914,1708711,1769008,1829697,1890000,1949425,2008148,2066889,2126749,2188499,2252386,2318070,2385039,2452528,2520002,2587417,2655036,2723006,2791575,2861000,2931343,3002785,3075867,3151262,3229499,3310059,3392823,3479088,3570558,3668000,3772350,3881973,3991917,4095512,4188010,4267690,4335991,4395293,4449427,4501419,4551762,4600172,4648036,4696876,4747839,4801594,4858235,4917541,4978960,5041995,5106672,5172941,5240088,5307188,5373502]},{"name":"Uganda","region":"Sub-Saharan Africa","income":[578,581,584,586,589,592,595,598,601,604,607,610,612,615,618,621,624,627,630,634,637,640,643,646,649,652,655,658,662,665,668,671,675,678,681,684,688,691,694,698,701,704,708,711,715,718,722,725,729,730,731,733,734,736,737,738,741,744,747,750,752,755,758,761,764,767,769,772,775,778,781,784,786,789,792,795,798,801,804,807,810,812,815,818,821,824,772,800,814,783,813,837,850,834,853,871,839,850,922,965,960,991,1015,1012,1092,1079,1084,1071,1046,1027,982,967,958,884,770,729,740,781,816,724,716,695,713,736,762,767,782,781,818,842,910,961,979,996,1043,1042,1060,1115,1147,1184,1217,1304,1367,1437,1490,1515,1607,1622,1621,1638,1680],"lifeExpectancy":[25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,9.8,25.3,25.3,25.4,25.5,25.3,25.1,24.8,24.6,24.4,24.8,25.1,25.4,25.8,26.1,26.4,26.7,27.1,27.4,27.7,28.1,28.5,28.9,29.2,29.6,30,30.4,30.7,32.9,35,37.1,39.2,41.3,41.6,42.2,42.8,43.4,44,44.6,45.2,45.8,46.4,47.1,47.7,48.4,49.1,49.7,50.4,51,51.5,52,52.4,52.7,52.9,52.9,52.9,52.8,52.8,52.7,52.7,52.3,52.2,50.7,50.8,51.1,51.5,52,52.3,52.3,53.3,52.9,52.5,51.7,50.9,50.2,49.6,49.1,48.8,48.6,48.6,49,49.4,50,50.8,51.5,52.4,53.3,54.5,55.9,56.6,57.2,57.9,58.4,58.8,59.3,59.8,60.3,60.8],"population":[2439302,2447290,2455279,2463267,2471256,2479244,2487480,2495717,2503953,2512190,2520426,2528662,2536899,2545135,2553372,2561608,2570116,2578624,2587132,2595640,2604149,2612657,2621165,2629673,2638181,2646689,2655501,2664312,2673124,2681936,2690748,2699559,2708371,2717183,2725994,2734806,2743864,2752921,2761979,2771036,2780094,2789151,2798209,2807266,2816324,2825381,2833255,2841129,2849002,2856876,2864750,2872624,2880498,2888371,2896245,2904119,2961173,3018226,3075280,3132334,3189388,3246441,3303495,3360549,3417602,3474656,3549882,3625108,3700335,3775561,3850787,3926013,4001239,4076466,4151692,4226918,4320046,4413173,4506301,4599428,4692556,4785683,4878811,4971938,5065066,5158193,5308673,5455540,5601243,5748208,5898834,6055517,6220628,6396454,6585103,6788211,7006629,7240155,7487411,7746181,8014376,8292747,8580632,8872866,9162773,9446024,9720365,9988321,10256342,10533627,10827071,11139772,11470741,11817951,12177677,12547754,12927007,13318149,13727427,14163214,14631089,15133740,15668278,16227778,16802258,17384369,17973428,18571527,19177660,19791266,20412967,21041468,21679497,22336812,23026357,23757636,24534668,25355794,26217760,27114742,28042413,29000925,29991958,31014427,32067125,33149417,34260342,35400620,36573387,37782971,39032383]},{"name":"Ukraine","region":"Europe & Central Asia","income":[1045,1052,1059,1065,1072,1079,1086,1093,1100,1107,1115,1122,1129,1136,1144,1151,1159,1166,1174,1181,1189,1143,1337,1286,1196,1192,1092,1195,1355,1540,1426,1570,1544,1586,1683,1647,1688,1835,1709,1890,1673,1599,1537,1679,1743,1860,1719,1857,1952,1864,1919,1706,1498,917,791,794,727,845,973,1234,1542,1733,1806,1900,1923,2010,2030,1999,2075,2267,2593,2770,3001,2994,3117,2988,2933,2879,2826,2774,2723,2673,2971,3358,3669,3976,3927,4112,4220,4352,4643,5000,5015,5299,5149,5539,5755,5816,5600,6239,6515,6756,6982,7320,7355,7850,7982,7950,8538,8742,8724,9090,9262,9454,9372,9349,9400,9594,9860,9937,9981,10346,10437,10621,10773,10490,9588,8633,7401,5732,5073,4606,4509,4463,4496,4809,5305,5637,6217,7022,7265,7848,8519,8762,7498,7844,8282,8319,8338,8267,8449],"lifeExpectancy":[36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,36.6,37,37.4,37.8,38.2,38.6,39,39.4,39.8,40.2,40.6,41,41.4,41.8,40.5,35,35,33,29,31,28.1,31.3,32.2,41.1,43.5,42.6,45.8,44.9,46.4,44.5,44.4,45.4,36.6,8.7,39.4,49.2,49.9,48.6,49.8,49.6,49.4,24.4,19,17.7,28.3,34.9,54.6,44.6,57.2,60,61.9,61.5,62.2,62.9,63.7,65.5,66.4,66.4,68.1,68.4,70,70.3,69.7,70.3,71.1,70.5,70.7,70.3,70.4,69.7,69.6,69.6,69.7,69.7,69.7,69.6,69.4,69.3,69.1,69,68.9,68.9,69,69.1,69.4,70,70.6,70.9,70.8,70.4,69.9,69.4,68.8,68,67.3,66.8,66.8,67.1,67.5,67.6,67.5,67.5,67.4,67.4,67.3,67.2,67.3,67.6,68.2,69.3,70.4,71.2,71.5,71.7,71.9,72.1],"population":[17038205,17195112,17352019,17508926,17665833,17822740,17993738,18164735,18335733,18506731,18677729,18848726,19019724,19190722,19361719,19532717,19719998,19907280,20094561,20281842,20469124,20656405,20843686,21030967,21218249,21405530,21612171,21818812,22025453,22232094,22438735,22645375,22852016,23058657,23265298,23471939,23697649,23923358,24149068,24374778,24600488,24826197,25051907,25277617,25503326,25729036,25977514,26225992,26474470,26722948,26971426,27219904,27468382,27716860,27965338,28213816,28487039,28760262,29033485,29306708,29579931,29853153,30126376,30399599,30672822,30946045,31245727,31545409,31845091,32144773,32444455,32744136,33043818,33343500,33643182,33942864,34278343,34613822,34949300,35284779,35620258,35955737,36291216,36626694,36962173,37297652,37815815,38360511,38916265,39471682,40019446,40556528,41083978,41606286,42130322,42662150,43203635,43749469,44285897,44794325,45261939,45682314,46060456,46409007,46746668,47086758,47433807,47783013,48127170,48455120,48758986,49036202,49290087,49525597,49750150,49968811,50181709,50385836,50579135,50758512,50920778,51063970,51185554,51280766,51343974,51370009,51360720,51314080,51216988,51052752,50811673,50489566,50096497,49655175,49196895,48746269,48310816,47890647,47493771,47127110,46795313,46502718,46249196,46028476,45830711,45647497,45477690,45319949,45165211,45002497,44823765]},{"name":"United Arab Emirates","region":"Middle East & North Africa","income":[1272,1277,1281,1286,1291,1296,1315,1334,1353,1373,1393,1414,1434,1455,1476,1498,1520,1542,1564,1587,1610,1634,1658,1682,1706,1731,1756,1782,1808,1834,1861,1888,1916,1944,1972,2001,2030,2060,2090,2120,2151,2182,2214,2247,2279,2313,2346,2380,2415,2298,2187,2082,1981,1885,1986,2092,2205,2323,2308,2293,2278,2230,2182,2136,1982,1839,1706,1583,1469,1363,1343,1323,1303,1284,1265,1246,1227,1209,1191,1173,1182,1191,1199,1208,1217,1225,1233,1240,1247,1255,1262,1270,1278,1433,1606,1801,2019,2264,2954,5021,8534,14505,24652,29634,35623,42822,41464,39798,60948,149185,167748,165063,167326,143058,159226,182668,181228,158177,144955,139882,129469,100191,101308,82687,92115,114832,109658,107416,103224,104855,106425,106923,109553,104107,101940,108048,105860,105346,109675,110662,102324,95637,82993,73029,60955,56644,56192,57028,59092,60578,60749],"lifeExpectancy":[30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,30.7,25.5,30.7,30.7,30.8,30.8,30.9,31,31.1,31.1,31.2,31.3,31.3,31.4,31.5,31.6,31.6,31.7,31.8,31.8,31.9,32,32.1,32.1,32.2,32.3,32.3,32.4,32.5,34.7,36.9,39.1,41.4,43.6,44.3,45.5,46.8,48.1,49.3,50.5,51.7,52.8,54,55.1,56.2,57.3,58.4,59.5,60.5,61.6,62.5,63.5,64.4,65.2,65.8,66.4,66.9,67.5,68,68.5,69.1,69.5,70,70.5,70.9,71.3,71.5,71.8,71.9,72,72.1,72.2,72.2,72.3,72.4,72.5,72.6,72.7,72.8,72.9,73.1,73.3,73.5,73.8,74,74.3,74.6,74.9,75.3,75.6,75.8,76,76.1,76.2,76.2,76.3,76.4,76.5,76.6],"population":[40556,40622,40689,40756,40822,40889,41068,41248,41427,41606,41786,41965,42144,42323,42503,42682,42933,43183,43434,43685,43936,44186,44437,44688,44938,45189,45456,45722,45989,46255,46522,46788,47054,47321,47588,47854,48136,48417,48699,48980,49262,49543,49824,50106,50388,50669,51072,51476,51879,52283,52686,53089,53493,53896,54300,54703,55183,55662,56142,56621,57101,57580,58060,58539,59019,59498,60020,60541,61063,61584,62106,62627,63149,63670,64192,64713,65201,65688,66176,66664,67152,67639,68127,68615,69102,69590,67972,69813,73184,76708,79566,81515,82870,84420,87303,92612,100985,112240,125216,138220,150318,161077,171781,185312,205570,235434,275160,324069,382823,451948,531265,622051,722849,827394,927303,1016789,1093108,1158477,1218223,1280278,1350433,1430548,1518991,1613904,1712117,1811458,1913190,2019014,2127863,2238281,2350192,2467726,2595220,2733770,2884188,3050128,3217865,3394060,3625798,3975945,4481976,5171255,6010100,6900142,7705423,8329453,8734722,8952542,9039978,9086139,9156963]},{"name":"United Kingdom","region":"Europe & Central Asia","income":[5527,5650,5623,5844,5843,6046,6310,6274,6274,6457,6464,6441,6410,6364,6176,6553,6637,6696,6848,6736,6633,6621,6835,6995,7164,7169,7276,7072,6963,7216,7387,7629,7642,7909,8113,8013,8107,8160,8018,8042,8208,8341,8428,8045,8163,8305,8491,8564,8853,8930,9330,9377,9276,9439,8683,8316,7420,7732,7892,8176,8407,8085,8647,8659,8858,8722,8253,8187,8388,8834,9095,9459,9719,9726,10022,10935,11860,11997,12078,11467,10881,10644,10411,10599,10866,11135,11416,11367,11751,12173,12531,12572,12702,12672,13122,13697,13887,13897,14393,15067,15292,15494,15777,16357,16616,16933,17207,17793,19043,18801,18699,19207,19684,20337,20871,20417,20149,20607,21357,21904,22648,23516,24551,25750,26279,26424,26017,26062,26688,27691,28317,28998,29662,30614,31474,32543,33282,33954,35250,35910,36665,37504,38164,37739,35840,36240,36549,36535,36908,37614,38225],"lifeExpectancy":[40.6,40.4,42.6,42,41.7,41,41.3,42.9,43.8,42.1,41.9,43.7,44.7,43,44.3,43.8,46.1,44.9,45.1,44.8,45.8,45.3,45.6,46.8,46.3,44.8,44.3,45.5,44.9,48.3,45.7,47.4,47.2,47,46.1,46.3,47.9,49.1,50.4,49.1,50.9,50.6,51.4,51.8,52.5,54,51.5,54.5,53.8,52,48.2,47.7,45.6,40.4,54.1,56.6,58.3,57.1,59.4,58.2,58.5,59.6,59,60,57.7,60.9,60.1,60.6,60.6,61.3,62,61.8,61.8,63.2,63.6,60.9,61.3,63.9,63.9,64.8,65.8,66.4,66.3,68.4,68.1,68.6,68.2,69.5,69.7,70.1,70.1,70.3,70.5,70.6,70.7,70.9,70.7,70.8,70.7,71.4,71.4,71.3,72,71.6,71.6,71.8,72,72,72,72.3,72.6,72.9,73.1,73,73.1,73.4,73.8,74.1,74.3,74.6,74.7,74.9,75.1,75.3,75.5,75.7,76,76.3,76.5,76.7,76.8,76.9,77.2,77.4,77.6,77.8,78,78.2,78.5,78.8,79.1,79.3,79.4,79.5,79.7,80,80.4,80.8,81,81.2,81.4],"population":[26217575,26504386,26791196,27078007,27364817,27651628,27971461,28291294,28611127,28930960,29250793,29570625,29890458,30210291,30530124,30849957,31186519,31523082,31859644,32196206,32532769,32869331,33205893,33542455,33879018,34215580,34593598,34971616,35349634,35727652,36105670,36483687,36861705,37239723,37617741,37995759,38376674,38757590,39138505,39519420,39900336,40281251,40662166,41043081,41423997,41804912,42006993,42209074,42411154,42613235,42815316,43017397,43219478,43421558,43623639,43825720,44038945,44252170,44465395,44678620,44891845,45105069,45318294,45531519,45744744,45957969,46185768,46413568,46641367,46869167,47096966,47324765,47552565,47780364,48008164,48235963,48473968,48711973,48949978,49187983,49425988,49663992,49901997,50140002,50378007,50616012,50620538,50683596,50792671,50938227,51113711,51315724,51543847,51800117,52088147,52410496,52765864,53146634,53537821,53920055,54278349,54606608,54904680,55171084,55406435,55611401,55785325,55927492,56039166,56122405,56179925,56212943,56224944,56223974,56220089,56221513,56231020,56250124,56283959,56337848,56415196,56519444,56649375,56797704,56953861,57110117,57264600,57419469,57575969,57736667,57903790,58079322,58263858,58456989,58657794,58867004,59080221,59301235,59548421,59846226,60210012,60648850,61151820,61689620,62221164,62716684,63164949,63573766,63955654,64331348,64715810]},{"name":"United States","region":"America","income":[3914,3884,4013,4066,4175,4058,4154,4218,4323,4196,4316,4269,4311,4396,4834,5292,5344,5549,5552,5521,5439,5479,5603,5461,5680,5646,5772,6207,5792,5519,6070,5837,6280,6299,6752,6819,7442,7372,7589,7355,7744,8474,8452,7612,8374,8287,8416,8666,8824,7981,8081,9061,8703,9375,9401,9181,8789,9135,10150,10249,10316,10828,10771,10746,11272,10139,9277,7991,7769,8308,8872,10058,10413,9911,10605,11320,13239,15702,18551,19847,18828,14777,14267,14544,14340,15319,16198,16508,16974,16558,17409,17428,17430,16961,17909,18059,18170,18966,19497,20338,21361,22495,22803,23647,24147,23908,24350,25374,26567,26258,25934,27041,27990,29281,29951,29619,30070,29230,30185,32110,33065,33899,34787,35929,36830,37062,36543,37321,37844,38892,39476,40501,41812,43166,44673,45986,45978,46367,47260,48597,49762,50599,51011,50384,48558,49373,49781,50549,51282,52118,53354],"lifeExpectancy":[38,39.4,39.4,39.4,39.4,39.4,39.4,39.4,39.4,39.4,39.4,39.4,39.4,39.4,39.4,39.4,40,40.6,41.1,41.7,42.3,42.9,43.5,44,44.6,45.2,45.6,46,46.3,46.7,47.1,47.4,47.8,48.2,48.6,48.9,49.3,50.5,50.6,49.6,50.3,50.1,50.2,51.9,52.8,51.8,53.4,54.1,53.5,54.6,55.1,54.2,54,47.2,55.3,55.4,58.2,58.1,57.5,58.5,58.5,57.9,59.4,58.3,58.5,59.6,60.3,60.9,60.9,60.2,60.9,60.3,61,62.4,63,63.2,63.7,64.5,64.2,65,65.5,66.2,66.6,67.2,67.6,68,68.1,68.3,68.6,69.4,69.5,69.6,69.3,69.6,69.8,69.7,70.1,70,69.9,70.1,70.2,70.2,70.6,70.2,70.4,70.7,71,71.3,71.6,72.1,72.6,72.9,73.2,73.5,73.7,73.8,74,74.4,74.6,74.8,74.8,74.9,75,75,75.2,75.4,75.6,75.8,75.7,75.8,75.9,76.3,76.8,77,77.1,77.1,77.1,77.2,77.3,77.6,77.7,77.8,78.1,78.2,78.3,78.5,78.7,78.8,78.9,79,79.1],"population":[36379106,37267599,38156091,39044584,39933076,40821569,41865062,42908555,43952048,44995541,46039034,47082526,48126019,49169512,50213005,51256498,52511856,53767213,55022571,56277928,57533286,58788644,60044001,61299359,62554716,63810074,65170628,66531181,67891735,69252288,70612842,71973396,73333949,74694503,76055056,77415610,79029968,80644325,82258683,83873040,85487398,87101756,88716113,90330471,91944828,93559186,95047432,96535678,98023923,99512169,101000415,102488661,103976907,105465152,106953398,108441644,110103040,111764436,113425833,115087229,116748625,118410021,120071417,121732814,123394210,125055606,125985459,126915311,127845164,128775017,129704870,130634722,131564575,132494428,133424280,134354133,136700024,139045914,141391805,143737696,146083587,148429477,150775368,153121259,155467149,157813040,159880756,162280405,164941716,167800046,170796378,173877321,176995108,180107612,183178348,186176524,189077076,191860710,194513911,197028908,199403532,201629471,203713082,205687611,207599308,209485807,211357912,213219515,215092900,217001865,218963561,220993166,223090871,225239456,227411604,229588208,231765783,233953874,236161961,238404223,240691557,243032017,245425409,247865202,250340795,252847810,255367160,257908206,260527420,263301323,266275528,269483224,272882865,276354096,279730801,282895741,285796198,288470847,291005482,293530886,296139635,298860519,301655953,304473143,307231961,309876170,312390368,314799465,317135919,319448634,321773631]},{"name":"Uruguay","region":"America","income":[5065,5185,5308,5434,5563,5695,5689,6876,6796,6050,5077,5501,5549,5876,5097,5445,5053,5441,6271,6082,6725,6828,5936,7118,6325,5624,6000,6012,6387,6964,6732,6932,6538,5901,5930,5820,5859,6750,6863,6929,6128,6651,7241,7809,7766,8239,7716,9091,8520,6785,6271,6323,6802,7027,7736,6551,6655,7353,7478,7915,7335,7723,8525,8662,8430,9311,7487,6756,5746,6650,6849,6980,6908,7253,7204,7065,7031,6305,6227,6854,6893,7404,7744,7835,7935,8135,8573,8501,8738,9091,8952,8897,8784,8834,7890,7999,8068,7735,7627,7644,7606,7746,7315,7324,7668,7934,7849,7563,7606,7831,8284,8567,8612,9012,9513,10034,10169,9147,8556,8410,8478,9169,9833,9770,9827,9841,10118,10841,11048,11766,11513,12068,13007,13508,13177,12876,12359,11401,11500,12081,12978,13489,14336,15317,15912,17095,17916,18447,19321,19929,20438],"lifeExpectancy":[32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,32.9,30.6,32.9,32.9,32.9,32.9,32.9,32.9,32.9,34.2,35.5,36.8,38.1,39.4,40.7,42.1,43.4,44.7,46,47.3,48.6,49.9,51.2,52.6,53.9,55.2,56.5,57.8,59.1,60.4,61.7,63.1,64.4,65.7,65.7,65.9,66,66.2,66.4,66.6,66.9,67.1,67.4,67.6,67.8,68,68.2,68.3,68.3,68.4,68.4,68.4,68.4,68.4,68.5,68.5,68.7,68.9,69.1,69.3,69.2,69.7,70.1,70.4,70.9,71.5,71.9,71.9,72.1,72.2,72.4,72.5,72.6,72.9,73.2,73.4,73.4,73.4,73.5,73.6,73.8,74.1,74.3,74.6,74.9,75,75,75.2,75.4,75.5,75.7,76,76.3,76.5,76.6,76.7,76.9,77.1,77.3],"population":[279547,291071,302596,314120,325645,337169,351524,365880,380235,394591,408946,423301,437657,452012,466368,480723,500866,521010,541153,561296,581440,601583,621726,641869,662013,682156,704404,726652,748900,771148,793397,815645,837893,860141,882389,904637,923422,942206,960991,979775,998560,1017344,1036128,1054913,1073698,1092482,1120939,1149395,1177852,1206308,1234765,1263222,1291678,1320135,1348591,1377048,1411357,1445666,1479975,1514284,1548594,1582903,1617212,1651521,1685830,1720139,1745478,1770816,1796155,1821493,1846832,1872170,1897508,1922847,1948186,1973524,2000022,2026520,2053019,2079517,2106015,2132513,2159011,2185510,2212008,2238506,2261342,2286264,2313208,2342044,2372567,2404500,2437498,2471152,2505016,2538651,2571691,2603887,2635128,2665387,2694535,2722874,2750093,2774771,2795044,2809799,2818269,2821437,2822084,2824069,2830172,2841436,2857107,2875970,2896021,2915775,2935036,2954281,2973461,2992648,3011907,3031032,3049962,3069094,3088985,3109987,3132048,3154853,3178156,3201604,3224807,3248039,3271014,3292134,3309318,3321242,3327105,3327770,3325637,3324096,3325608,3331041,3339750,3350832,3362761,3374414,3385610,3396753,3407969,3419516,3431555]},{"name":"Uzbekistan","region":"Europe & Central Asia","income":[578,580,582,584,586,587,589,591,593,595,596,598,600,602,604,606,608,609,611,613,615,590,688,660,612,608,555,606,685,777,717,787,772,790,837,816,834,904,840,926,818,779,747,813,842,896,826,890,932,888,911,905,782,676,584,550,519,559,602,648,698,751,809,871,880,917,924,908,940,1024,1168,1245,1345,1338,1389,1329,1301,1274,1247,1221,1195,1170,1297,1462,1594,1722,1697,1772,1814,1866,1986,2133,2133,2248,2179,2338,2430,2456,2365,2636,2753,2856,2952,3096,3111,3321,3378,3365,3615,3619,3531,3598,3584,3577,3468,3382,3325,3318,3335,3286,3227,3271,3226,3210,3184,3032,2953,2561,2446,2274,2213,2208,2280,2340,2414,2471,2543,2612,2691,2865,3030,3211,3467,3733,3968,4185,4412,4705,5002,5320,5598],"lifeExpectancy":[25.9,25.4,24.8,24.3,24.4,24.4,24.4,24.5,24.5,24.7,24.9,25.1,25.3,25.5,25.7,25.9,26.1,26.3,26.5,26.7,26.9,27.1,27.3,27.5,27.7,27.9,28.1,28.3,28.5,28.7,28.9,29.1,29.3,29.2,29,28.8,29.1,29.3,29.6,29.8,30.1,30.3,30.6,30.8,31.1,31.3,34.3,34.7,32.5,32.1,31.7,31.7,28.7,18.7,24.2,19.7,23,23.8,32.7,35.2,34.3,37.5,36.8,38.3,37,36.3,30.5,22.4,18.4,38.6,40.1,41.7,40.7,42.4,44.8,42.3,29.7,25.5,23.5,32.8,40.3,49.1,41.1,49.1,51.9,54.2,54.4,54.8,55.2,55.6,56,56.4,56.8,57.2,57.6,58,58.4,58.8,59.3,59.7,60.1,60.4,60.8,61.2,61.5,61.8,62.3,62.8,63.3,63.7,64.1,64.4,64.8,65,65.2,65.5,65.7,66,66.3,66.6,67,67.3,67.6,67.7,67.7,67.7,67.5,67.3,67,66.7,66.5,66.4,66.5,66.8,67.1,67.4,67.7,67.8,68,68.1,68.1,68.3,68.5,68.7,68.9,69.1,69.3,69.5,69.7,69.9,70.1],"population":[2968724,3000024,3031325,3062626,3093927,3125228,3159762,3194296,3228830,3263364,3297898,3332431,3366965,3401499,3436033,3470567,3508824,3547080,3585337,3623593,3661850,3700107,3738363,3776620,3814876,3853133,3895781,3938428,3981076,4023723,4066371,4109018,4151665,4194313,4236961,4279608,4326732,4373857,4420981,4468106,4515230,4562354,4609479,4656603,4703728,4750852,4800948,4851044,4901140,4951236,5001333,5051429,5101525,5151621,5201717,5251813,5302195,5352578,5402960,5453343,5503725,5554107,5604490,5654872,5705255,5755637,5810853,5866068,5921284,5976500,6031716,6086931,6142147,6197363,6252578,6307794,6371554,6435315,6499075,6562835,6626596,6690356,6754116,6817876,6881637,6945397,7104056,7265172,7428993,7596333,7768581,7947735,8136364,8337474,8554271,8789492,9044671,9319510,9611601,9917202,10233502,10559050,10894306,11240523,11599763,11972994,12361237,12762439,13170848,13578783,13980997,14374729,14762133,15148932,15543520,15951899,16375135,16810937,17257774,17712992,18174143,18640558,19111312,19583186,20052259,20515248,20970307,21416399,21852080,22276140,22687456,23087174,23474760,23845788,24194543,24518222,24814629,25088682,25353547,25627007,25922239,26242947,26586701,26952719,27338109,27739764,28158395,28592451,29033361,29469913,29893488]},{"name":"Vanuatu","region":"East Asia & Pacific","income":[684,686,689,691,693,696,698,700,703,705,708,710,712,715,717,720,722,725,727,729,732,734,737,739,742,744,747,750,752,755,757,760,762,765,768,770,773,775,778,781,783,786,789,791,794,797,799,802,805,815,824,834,844,855,865,875,887,899,910,923,935,947,960,972,985,998,1011,1024,1038,1052,1065,1079,1094,1108,1123,1137,1152,1167,1183,1198,1214,1230,1246,1262,1279,1295,1312,1329,1347,1364,1382,1400,1418,1437,1456,1475,1494,1513,1533,1553,1573,1593,1614,1635,1656,1678,1699,1721,1744,2274,2103,2080,1999,2283,2306,1989,2021,2186,2593,2710,2679,2566,2519,2475,2498,2550,2557,2548,2494,2647,2610,2615,2693,2761,2720,2823,2664,2467,2508,2542,2610,2761,2833,2944,2970,2948,2916,2902,2895,2837,2912],"lifeExpectancy":[24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.5,24.6,24.8,24.9,25.1,25.2,25.4,25.5,25.7,25.8,26,26.1,26.3,26.4,27.6,28.8,30,31.2,32.3,33.5,34.7,35.9,37.1,38.2,39.4,40.6,41.8,43,44.1,45.3,45.8,46.5,47.3,48,48.8,49.5,50.3,51,51.8,52.5,53.3,54.1,54.8,55.6,56.3,57.1,57.8,58.5,59.3,60,60.1,60.2,60.5,60.8,61.1,61.3,61.5,61.7,61.8,61.8,61.9,62,62.1,62.3,62.3,62.5,62.1,62.6,62.6,62.6,62.6,62.6,62.6,62.8,62.8,62.9,62.1,63,62.6,63,63,63,63,63.1,63.1,63.3,63.4,63.6,63.8,64,64.2,64.4,64.6,64.8,65],"population":[33468,33603,33739,33874,34010,34145,34286,34426,34567,34708,34849,34989,35130,35271,35411,35552,35698,35845,35991,36138,36284,36430,36577,36723,36870,37016,37169,37322,37474,37627,37780,37933,38086,38238,38391,38544,38703,38862,39021,39180,39339,39498,39657,39816,39975,40134,40301,40468,40636,40803,40970,41137,41304,41472,41639,41806,41983,42161,42338,42515,42693,42870,43047,43224,43402,43579,43764,43949,44134,44319,44504,44688,44873,45058,45243,45428,45655,45881,46108,46335,46562,46788,47015,47242,47468,47695,48919,50295,51774,53325,54924,56564,58246,59984,61796,63701,65708,67806,69962,72131,74287,76410,78518,80669,82941,85388,88023,90824,93761,96793,99879,103024,106223,109429,112579,115634,118578,121433,124248,127094,130028,133040,136129,139369,142852,146633,150779,155242,159814,164209,168236,171802,175004,178074,181346,185058,189288,193957,198963,204144,209375,214635,219956,225335,230782,236299,241876,247498,253165,258883,264652]},{"name":"Venezuela","region":"America","income":[835,839,842,846,850,854,878,904,930,958,986,1014,1044,1074,1106,1138,1171,1206,1241,1274,1347,1261,1386,1421,1365,1438,1285,1100,1526,1295,1483,1306,1183,1320,1296,1237,1200,1290,1378,1321,1298,1205,1195,1269,1305,1336,1414,1450,1663,1438,1471,1381,1603,1583,1470,1754,1739,1801,2071,2468,3166,3770,3979,4510,4984,4985,4161,4277,4164,4393,4836,4992,5497,5715,5966,5651,5603,5030,5275,6520,7526,8688,10306,11891,11614,11070,11268,11528,11582,12151,12555,13452,14657,13548,13493,13014,12405,12571,12468,13789,14056,13807,14225,14764,14753,15390,15549,15667,16369,17042,17710,18947,19632,19488,19140,18125,17539,16681,15025,14218,13874,14092,14802,15505,14125,14539,15577,16143,15829,15124,15390,15044,15680,15416,14216,14461,14673,13129,11894,13820,14981,16178,17298,17911,17056,16536,16960,17642,17614,16666,15753],"lifeExpectancy":[32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,29.1,32.2,32.2,32.2,32.3,32.3,32.4,32.4,32.5,32.7,32.9,33.2,33.4,33.6,33.8,34,34.2,34.5,34.7,35.9,37.2,38.4,39.7,40.9,42.6,44.2,45.8,47.4,49,50.7,52.3,53.9,55.5,55.8,56.5,57.1,57.7,58.3,59,59.6,60.2,60.8,61.5,62.1,62.7,63.4,64,64.6,65.2,65.8,66.3,66.9,67.4,67.5,67.4,67.5,68.1,68.4,68.6,69.2,69.8,70.1,70.2,70.3,70.8,71.4,71.9,72.2,72.5,72.6,72.7,72.7,72.7,72.8,72.9,72.9,72.8,73.1,73.6,74.1,74.3,74,74.3,74.3,74.3,74.2,74.6,75,74.8,74.6,74.4,74.5,74.7,75,75.2,75.4,75.6,75.8],"population":[1610079,1631989,1653899,1675808,1697718,1719628,1749264,1778899,1808535,1838171,1867807,1897442,1927078,1956714,1986349,2015985,2048375,2080764,2113154,2145543,2177933,2210323,2242712,2275102,2307491,2339881,2375481,2411082,2446682,2482282,2517883,2553483,2589083,2624683,2660284,2695884,2727242,2758600,2789959,2821317,2852675,2884033,2915391,2946750,2978108,3009466,3031565,3053664,3075763,3097862,3119961,3142059,3164158,3186257,3208356,3230455,3263649,3296843,3330036,3363230,3396424,3429618,3462812,3496005,3529199,3562393,3614452,3666511,3718569,3770628,3822687,3874746,3926805,3978863,4030922,4082981,4222881,4362780,4502680,4642579,4782479,4922379,5062278,5202178,5342077,5481977,5735168,5989555,6244652,6500642,6758372,7019406,7285974,7560821,7846947,8146845,8461684,8790590,9130346,9476255,9824694,10175143,10528054,10881995,11235492,11587758,11937803,12286434,12636971,12994025,13360988,13739142,14127790,14525929,14931741,15343917,15761800,16185895,16617343,17057786,17508059,17968530,18437737,18912431,19388262,19861959,20332247,20799471,21263994,21726808,22188671,22649212,23108003,23565734,24023355,24481477,24940223,25399143,25857553,26314483,26769115,27221228,27670659,28116716,28558607,28995745,29427631,29854238,30276045,30693827,31108083]},{"name":"Vietnam","region":"East Asia & Pacific","income":[837,837,836,835,835,834,841,849,856,863,871,878,886,894,901,909,917,925,933,941,949,957,966,974,982,991,999,1008,1017,1026,1034,1043,1052,1062,1071,1080,1089,1099,1108,1118,1127,1137,1147,1157,1167,1177,1183,1190,1196,1189,1182,1176,1169,1162,1155,1148,1140,1132,1124,1117,1109,1102,1094,1087,1080,1073,1066,1060,1053,1047,1040,1034,1028,1022,1017,1011,1005,1000,995,989,984,979,974,970,965,961,985,1009,1034,1061,1086,1104,1119,1132,1140,1150,1167,1272,1267,1285,1257,1232,1047,1002,1059,1053,1082,1152,1202,1128,1023,1168,1182,1165,1151,1097,1112,1178,1216,1297,1345,1354,1374,1427,1457,1501,1562,1667,1770,1895,2042,2197,2339,2437,2515,2650,2778,2920,3085,3278,3485,3687,3907,4085,4260,4486,4717,4912,5125,5370,5623],"lifeExpectancy":[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,20.5,32,32,31.9,31.9,31.8,31.8,31.7,31.7,31.6,31.6,31.5,31.5,31.6,31.7,31.8,31.9,32.1,32.2,33.5,34.8,36.1,35,34,33.4,31.8,25.8,15.7,34.7,40.6,45.5,48.5,50.3,50.7,51.5,52.2,53,53.7,54.4,55.1,55.7,56.3,57,57.6,58.2,58.8,59.3,59.7,59.7,59.4,58.7,57.9,57,57.6,54.6,57.9,57.2,63.3,64.8,65.2,65.6,65.9,66,66.3,66.5,66.8,67.1,67.4,67.8,68.1,68.4,68.7,69.1,69.5,69.8,70.1,70.5,70.8,71.1,71.4,71.9,72.2,72.6,73.1,73.5,73.9,74.3,74.6,75,75.2,75.4,75.6,75.8,76,76.2,76.3,76.4,76.5],"population":[9847629,9934950,10022272,10109594,10196916,10284238,10403088,10521938,10640788,10759638,10878489,10997339,11116189,11235039,11353889,11472739,11618954,11765168,11911383,12057598,12203813,12350027,12496242,12642457,12788671,12934886,13101177,13267468,13433759,13600050,13766341,13932631,14098922,14265213,14431504,14597795,14783443,14969091,15154739,15340387,15526035,15711683,15897331,16082979,16268627,16454275,16627094,16799914,16972733,17145552,17318372,17491191,17664010,17836829,18009649,18182468,18378849,18575231,18771612,18967993,19164375,19360756,19557137,19753518,19949900,20146281,20363873,20581464,20799056,21016648,21234240,21451831,21669423,21887015,22104606,22322198,22570969,22819739,23068510,23317280,23566051,23814821,24063591,24312362,24561133,24809903,25364453,25976838,26646172,27370699,28147785,28973873,29844533,30754603,31698436,32670623,33666768,34684164,35722092,36780984,37860014,38959335,40074695,41195833,42309662,43407291,44485910,45549487,46604726,47661770,48729397,49808071,50899504,52015279,53169674,54372518,55627743,56931822,58277391,59653092,61049370,62459557,63881296,65313709,66757401,68209604,69670620,71129537,72558986,73923849,75198975,76375677,77460429,78462888,79399708,80285563,81123685,81917488,82683039,83439812,84203817,84979667,85770717,86589342,87449021,88357775,89321903,90335547,91378752,92423338,93447601]},{"name":"West Bank and Gaza","region":"Middle East & North Africa","income":[1232,1232,1233,1233,1233,1233,1236,1240,1243,1246,1250,1253,1256,1260,1263,1266,1270,1273,1276,1280,1283,1286,1290,1293,1297,1300,1304,1307,1310,1314,1317,1321,1324,1328,1331,1335,1338,1342,1345,1349,1353,1356,1360,1363,1367,1371,1367,1363,1359,1288,1221,1158,1097,1129,1161,1195,1218,1242,1176,1290,1248,1288,1361,1127,1233,1237,1229,1179,1162,1495,1799,1612,1795,1506,1426,1443,1551,1730,1758,1776,1828,2008,2097,1606,1230,1272,1316,1362,1351,1340,1329,1318,1307,1297,1286,1276,1266,1256,1247,1237,1228,1219,1210,1202,1320,1404,1546,1751,1592,1895,1834,2073,1989,2181,2144,2414,2197,2285,2104,2122,2018,2306,2149,2053,1987,2264,2027,2386,2521,2722,2788,2860,3392,4163,4788,4206,3836,3685,3922,4163,4506,4193,4015,3564,4187,4163,4359,4842,4498,4493,4319],"lifeExpectancy":[32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,32.1,26.6,32.1,32.1,32.2,32.3,32.4,32.6,32.7,32.8,32.9,33,33.1,33.2,33.3,33.5,33.6,33.7,33.8,34.8,35.9,36.9,38,39,40.1,41.1,42.2,43.2,44.3,45.3,46.4,47.4,48.5,49.5,49.7,50,50.4,50.8,51.2,51.7,52.2,52.7,53.3,53.9,54.5,55.2,55.9,56.7,57.4,58.2,59,59.8,60.6,61.4,62.4,62.9,59.4,64,64.6,65.1,65.7,66.2,66.7,67.2,67.6,64.3,68.4,68.8,69.1,69.4,69.5,69.7,70,70.3,70.6,70.9,71.3,71.9,72.2,72.5,72.9,73.3,73.6,73.5,73.6,73.5,73.7,73.6,73.7,73.3,73.7,73.5,73.6,74,74.1,74.3,74.6,74.9,75.2],"population":[191398,193329,195261,197193,199125,201057,203428,205800,208171,210543,212914,215285,217657,220028,222400,224771,227655,230538,233422,236305,239189,242073,244956,247840,250723,253607,257124,260641,264158,267675,271192,274708,278225,281742,285259,288776,293249,297722,302196,306669,311142,315615,320088,324562,329035,333508,334999,336490,337981,339472,340963,342454,343945,345436,346927,348418,359269,370121,380972,391823,402675,413526,424377,435228,446080,456931,482179,507427,532675,557923,583172,608420,633668,658916,684164,709412,731663,753915,776166,798418,820669,842920,865172,887423,909675,931926,923753,931919,948797,968681,987790,1004360,1018549,1032161,1048183,1069399,1096903,1128809,1159693,1182168,1191509,1184822,1165200,1141217,1124929,1124843,1144297,1180273,1227160,1276368,1321677,1361612,1398295,1433382,1469730,1509484,1553094,1599960,1650014,1702974,1758788,1817336,1879218,1945947,2019486,2101156,2190716,2287375,2391070,2501613,2618272,2742127,2871637,3000312,3119607,3223781,3309978,3380907,3443333,3507096,3579462,3662561,3754693,3854667,3959988,4068780,4181135,4297826,4418341,4542059,4668466]},{"name":"Yemen","region":"Middle East & North Africa","income":[1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1097,1100,1103,1106,1109,1112,1115,1119,1122,1125,1128,1131,1134,1138,1141,1144,1147,1151,1154,1157,1160,1164,1167,1170,1174,1177,1180,1184,1187,1190,1194,1197,1200,1204,1207,1211,1214,1218,1221,1224,1228,1231,1236,1240,1244,1248,1252,1256,1260,1264,1269,1273,1277,1281,1285,1289,1294,1298,1302,1306,1310,1315,1319,1323,1327,1332,1336,1340,1345,1349,1353,1357,1367,1377,1388,1397,1406,1414,1421,1428,1435,1443,1452,1461,1475,1483,1495,1512,1530,1544,1563,1849,2126,2249,2469,2554,2687,3018,3259,3440,3533,3457,3568,3529,3627,3661,3526,3495,3524,3558,3562,3441,3482,3578,3536,3598,3644,3676,3746,3857,3892,4017,4053,4094,4129,4177,4295,4320,4354,4420,4494,4534,3761,3765,3832,3866,3887],"lifeExpectancy":[23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,19.4,23.4,23.4,23.4,23.4,23.5,23.5,23.5,23.6,23.6,23.6,23.7,23.7,23.7,23.8,23.8,23.8,23.8,23.9,23.9,23.9,24,24,24,24.1,24.1,24.1,24.1,24.2,24.2,24.2,24.3,24.3,24.8,25.8,26.8,27.7,28.7,29.7,30.7,31.7,32.6,33.6,34.6,35.5,36.5,37.4,38.3,39.2,40.1,41,41.8,42.7,44.8,45.8,46.8,47.8,48.8,49.8,50.9,51.8,52.8,53.6,54.6,55.1,56.4,57.1,57.8,56.5,58.8,59.3,59.7,60.1,60.4,60.8,61,61.2,61.7,61.9,62.3,62.7,63.1,63.5,63.8,64.1,64.5,64.7,65,65.4,65.5,65.9,66.2,66.5,66.5,66.7,67,67.3,67.6],"population":[2831448,2838504,2845560,2852616,2859672,2866728,2876133,2885537,2894942,2904346,2913751,2923155,2932560,2941964,2951369,2960773,2971707,2982641,2993575,3004509,3015443,3026377,3037311,3048245,3059179,3070113,3081474,3092835,3104196,3115557,3126919,3138280,3149641,3161002,3172363,3183724,3195488,3207253,3219017,3230782,3242546,3254310,3266075,3277839,3289604,3301368,3323024,3344681,3366337,3387994,3409650,3431306,3452963,3474619,3496276,3517932,3544898,3571863,3598829,3625794,3652760,3679726,3706691,3733657,3760622,3787588,3816621,3845653,3874686,3903718,3932751,3961783,3990815,4019848,4048881,4077913,4110354,4142794,4175235,4207676,4240117,4272557,4304998,4337439,4369879,4402320,4474025,4546100,4618871,4692620,4767589,4843974,4921929,5001572,5082998,5166311,5251663,5339285,5429501,5522690,5619170,5720538,5827223,5937125,6047230,6156234,6262934,6370599,6487853,6626208,6793979,6994840,7226885,7485921,7765087,8059381,8369708,8698304,9043210,9402070,9774242,10153613,10542601,10958983,11426912,11961099,12571240,13245003,13948118,14633091,15266147,15834747,16349809,16829935,17304422,17795219,18306287,18832097,19374012,19931617,20504385,21093973,21701105,22322699,22954226,23591972,24234940,24882792,25533217,26183676,26832215]},{"name":"Zambia","region":"Sub-Saharan Africa","income":[776,778,780,782,784,786,787,789,791,793,795,797,799,801,803,805,807,809,811,813,815,816,818,820,822,824,826,828,830,832,834,836,838,841,843,845,847,849,851,853,855,857,859,861,863,865,867,869,872,900,930,960,992,1025,1059,1093,1126,1159,1194,1229,1266,1303,1342,1382,1423,1465,1508,1553,1599,1646,1694,1745,1796,1849,1903,1960,2017,2077,2138,2201,2265,2332,2400,2471,2543,2618,2714,2812,2913,3016,2865,3104,3257,2916,3167,3151,3091,3017,3016,3214,3506,3877,4390,4423,3891,3888,3828,4050,3839,3822,3658,3622,3382,3232,2993,2998,2866,2832,2811,2696,2602,2579,2560,2523,2465,2407,2348,2253,2351,2098,2106,2180,2203,2136,2176,2202,2260,2304,2403,2507,2620,2752,2901,3039,3224,3451,3557,3678,3800,3898,4034],"lifeExpectancy":[32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,32.6,12.6,32.6,32.6,32.8,33,33.1,33.3,33.5,33.7,33.9,34,34.2,34.4,34.6,34.8,35,35.1,35.3,35.5,35.7,35.9,36,36.2,36.4,36.6,36.8,36.9,37.1,39,40.9,42.9,44.8,46.7,47.1,47.7,48.3,48.9,49.4,50,50.6,51.2,51.8,52.4,52.9,53.5,54,54.5,55.1,55.6,56.2,56.8,57.5,58.1,58.7,59.4,59.9,60.3,60.5,60.5,60.4,60.2,60.1,60,59.8,59.4,58.8,58,56.9,55.6,54.4,53.2,52.1,51,50,49.1,48.4,47.8,47.3,46.8,46.4,46.1,45.9,45.7,45.8,46,46.4,47.1,47.9,48.8,49.9,52,53.5,54.1,54.6,55.6,56.7,57.8,59],"population":[745579,745484,745389,745294,745200,745105,745010,744915,744821,744726,744631,744536,744441,744347,744252,744157,744062,743968,743873,743778,743684,743589,743494,743399,743305,743210,743208,743206,743204,743202,743201,743199,743197,743195,743193,743191,749426,755660,761895,768129,774364,780599,786833,793068,799302,805537,820822,836107,851392,866677,881963,897248,912533,927818,943103,958388,991851,1025313,1058776,1092238,1125701,1159163,1192626,1226088,1259551,1293013,1337135,1381256,1425378,1469499,1513621,1557742,1601863,1645985,1690107,1734228,1792500,1850772,1909045,1967317,2025589,2083861,2142133,2200406,2258678,2316950,2376075,2438575,2504147,2572608,2643906,2718118,2795451,2876213,2960799,3049586,3142848,3240664,3342894,3449266,3559687,3674088,3792864,3916928,4047479,4185378,4331002,4484141,4644329,4810810,4983017,5160570,5343550,5532350,5727577,5929497,6138069,6352561,6571673,6793708,7017292,7242496,7469270,7696070,7921028,8143142,8361381,8576987,8794061,9018229,9253527,9502346,9763742,10034412,10309310,10585220,10861238,11139978,11426006,11725635,12043591,12381509,12738676,13114579,13507849,13917439,14343526,14786581,15246086,15721343,16211767]},{"name":"Zimbabwe","region":"Sub-Saharan Africa","income":[940,941,942,943,944,945,947,948,949,950,951,952,953,955,956,957,958,959,960,961,963,964,965,966,967,968,970,971,972,973,974,975,977,978,979,980,981,983,984,985,986,987,989,990,991,992,993,994,996,997,998,999,1000,1002,1003,1004,1005,1007,1008,1009,1011,1012,1013,1014,1016,1017,1018,1039,1060,1082,1104,1126,1149,1172,1196,1221,1245,1271,1296,1323,1350,1377,1405,1434,1463,1492,1537,1543,1618,1645,1719,1843,1941,1920,1962,1969,2024,2001,1973,1976,2054,1985,1926,1639,2121,2521,2651,2778,2765,2740,2674,2568,2332,2209,2217,2364,2561,2527,2467,2327,2395,2357,2299,2390,2436,2532,2604,2316,2292,2456,2416,2619,2645,2680,2625,2521,2540,2304,1908,1794,1689,1629,1568,1286,1352,1484,1626,1750,1773,1773,1801],"lifeExpectancy":[33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,33.7,17,33.7,33.7,33.8,33.8,33.9,33.9,34,34.1,34.1,34.2,34.2,34.3,34.4,34.4,34.5,34.5,34.6,34.7,34.7,34.8,34.8,34.9,36.4,37.8,39.3,40.7,42.2,43.6,45.1,46.6,48,49.5,49.8,50.2,50.7,51.2,51.7,52.1,52.6,53.1,53.5,54,54.4,54.8,55.2,55.6,56,56.4,56.8,57.1,57.5,57.9,58.2,58.5,58.6,58.8,58.9,58.6,58.2,57,57.4,59.8,60.4,61.2,62,62.8,63.5,64,64.2,64.2,63.9,63.3,62.7,61.9,60.8,59.2,57.7,56.2,54.8,53.5,52.2,50.8,49.8,48.9,48.3,47.8,47.7,47.8,48.4,49,49.6,50.4,51.9,54.1,56,58,60],"population":[1496933,1507442,1517952,1528461,1538971,1549480,1560700,1571921,1583141,1594361,1605582,1616802,1628022,1639242,1650463,1661683,1673709,1685736,1697762,1709789,1721815,1733841,1745868,1757894,1769921,1781947,1794912,1807877,1820841,1833806,1846771,1859736,1872701,1885665,1898630,1911595,1925461,1939327,1953193,1967059,1980925,1994791,2008657,2022523,2036389,2050255,2065249,2080244,2095238,2110232,2125227,2140221,2155215,2170209,2185204,2200198,2216481,2232763,2249046,2265328,2281611,2297893,2314176,2330458,2346741,2363023,2380511,2397998,2415486,2432973,2450461,2467948,2485436,2502923,2520411,2537898,2558794,2579689,2600585,2621480,2642376,2663272,2684167,2705063,2725958,2746854,2830449,2918424,3010186,3105346,3203735,3305403,3410611,3519806,3633554,3752390,3876638,4006262,4140804,4279561,4422132,4568320,4718612,4874113,5036321,5206311,5385342,5573312,5768382,5967861,6170284,6373956,6580739,6796946,7031159,7289083,7571965,7876414,8197564,8528328,8862601,9198874,9535657,9866776,10184966,10484771,10763036,11019717,11256512,11476807,11683136,11877664,12059858,12226742,12374019,12499981,12603988,12691431,12774162,12867828,12984418,13127942,13297798,13495462,13720997,13973897,14255592,14565482,14898092,15245855,15602751]}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment