Skip to content

Instantly share code, notes, and snippets.

@etpinard
Last active February 3, 2016 21:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save etpinard/cc1d4d5cbf79a235c133 to your computer and use it in GitHub Desktop.
Save etpinard/cc1d4d5cbf79a235c133 to your computer and use it in GitHub Desktop.
Performance comparison between assign-deep and clone
Performance comparison between assign-deep and clone
node_modules
var assignDeep = require('assign-deep'),
clone = require('clone');
var math = require('mathjs');
var pkgList = ['assignDeep', 'clone'];
var SAMPLE_SIZE = 500;
var testsConfig = {};
testsConfig['copy an object'] = function() {
var obj1 = {'marker.color': [['blue', 'red']], name: 'mah trace'};
return [
function() { assignDeep({}, obj1); },
function() { clone(obj1); }
];
};
testsConfig['copy a plotly object (1)'] = function() {
var obj1 = require('./plot1.json');
return [
function() { assignDeep({}, obj1); },
function() { clone(obj1); }
];
};
testsConfig['copy a plotly object (2)'] = function() {
var obj1 = require('./plot2.json');
return [
function() { assignDeep({}, obj1); },
function() { clone(obj1); }
];
};
function runOne(testName) {
var testConfig = testsConfig[testName]();
var resultOne = [];
var timeStart, timeEnd;
pkgList.forEach(function(_, i) {
timeStart = new Date();
testConfig[i]();
timeEnd = new Date();
resultOne[i] = (timeEnd.getTime() - timeStart.getTime());
});
return resultOne;
}
function log(testName, results) {
console.log([
testName, '(averaged over', SAMPLE_SIZE, 'tries)'
].join(' '));
pkgList.forEach(function(pkg, i) {
console.log([' ',
'with', pkg, ':', math.mean(results[i]), 'ms'
].join(' '));
});
console.log('------');
}
function main(testsConfig) {
console.log('');
Object.keys(testsConfig).forEach(function(testName) {
var results = [new Array(SAMPLE_SIZE), new Array(SAMPLE_SIZE)];
for(var i = 0; i < SAMPLE_SIZE; i++) {
results[i] = runOne(testName);
}
log(testName, results);
});
console.log('');
}
main(testsConfig);
{
"name": "assign-deep_vs_clone",
"version": "1.0.0",
"description": "Performance comparison between assign-deep and clone",
"main": "index.js",
"scripts": {
"perf": "date >> results.txt && node index.js >> results.txt"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gist.github.com/cc1d4d5cbf79a235c133.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gist.github.com/cc1d4d5cbf79a235c133"
},
"homepage": "https://gist.github.com/cc1d4d5cbf79a235c133",
"dependencies": {
"assign-deep": "^0.3.1",
"clone": "^1.0.2",
"mathjs": "^2.2.0"
}
}
{
"data": [
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y",
"ysrc": "etpinard:4362:d9f40e",
"textsrc": "etpinard:4362:c9fa11",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:fbdf4c",
"size": [
28.801,
30.331999999999997,
31.997,
34.02,
36.088,
38.438,
39.854,
40.821999999999996,
41.674,
41.763000000000005,
42.129,
43.828
]
},
"mode": "markers",
"xaxis": "x",
"text": [
"Country: Afghanistan <br>Life Expectancy: 28.801 years <br>GDP per capita: 779.4453145 $ <br>Population: 8.425333 million",
"Country: Afghanistan <br>Life Expectancy: 30.332 years <br>GDP per capita: 820.8530296 $ <br>Population: 9.240934 million",
"Country: Afghanistan <br>Life Expectancy: 31.997 years <br>GDP per capita: 853.10071 $ <br>Population: 10.267083 million",
"Country: Afghanistan <br>Life Expectancy: 34.02 years <br>GDP per capita: 836.1971382 $ <br>Population: 11.537966 million",
"Country: Afghanistan <br>Life Expectancy: 36.088 years <br>GDP per capita: 739.9811058 $ <br>Population: 13.07946 million",
"Country: Afghanistan <br>Life Expectancy: 38.438 years <br>GDP per capita: 786.11336 $ <br>Population: 14.880372 million",
"Country: Afghanistan <br>Life Expectancy: 39.854 years <br>GDP per capita: 978.0114388 $ <br>Population: 12.881816 million",
"Country: Afghanistan <br>Life Expectancy: 40.822 years <br>GDP per capita: 852.3959448 $ <br>Population: 13.867957 million",
"Country: Afghanistan <br>Life Expectancy: 41.674 years <br>GDP per capita: 649.3413952 $ <br>Population: 16.317921 million",
"Country: Afghanistan <br>Life Expectancy: 41.763 years <br>GDP per capita: 635.341351 $ <br>Population: 22.227415 million",
"Country: Afghanistan <br>Life Expectancy: 42.129 years <br>GDP per capita: 726.7340548 $ <br>Population: 25.268405 million",
"Country: Afghanistan <br>Life Expectancy: 43.828 years <br>GDP per capita: 974.5803384 $ <br>Population: 31.889923 million"
],
"y": [
779.4453145,
820.8530296,
853.1007099999999,
836.1971382,
739.9811057999999,
786.11336,
978.0114388000001,
852.3959447999999,
649.3413952000001,
635.341351,
726.7340548,
974.5803384
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "c4b63a"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y",
"ysrc": "etpinard:4362:fd8594",
"textsrc": "etpinard:4362:10917f",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:e0b04b",
"size": [
55.23,
59.28,
64.82,
66.22,
67.69,
68.93,
70.42,
72,
71.581,
72.95,
75.65100000000001,
76.423
]
},
"mode": "markers",
"xaxis": "x2",
"text": [
"Country: Albania <br>Life Expectancy: 55.23 years <br>GDP per capita: 1601.056136 $ <br>Population: 1.282697 million",
"Country: Albania <br>Life Expectancy: 59.28 years <br>GDP per capita: 1942.284244 $ <br>Population: 1.476505 million",
"Country: Albania <br>Life Expectancy: 64.82 years <br>GDP per capita: 2312.888958 $ <br>Population: 1.728137 million",
"Country: Albania <br>Life Expectancy: 66.22 years <br>GDP per capita: 2760.196931 $ <br>Population: 1.98406 million",
"Country: Albania <br>Life Expectancy: 67.69 years <br>GDP per capita: 3313.422188 $ <br>Population: 2.263554 million",
"Country: Albania <br>Life Expectancy: 68.93 years <br>GDP per capita: 3533.00391 $ <br>Population: 2.509048 million",
"Country: Albania <br>Life Expectancy: 70.42 years <br>GDP per capita: 3630.880722 $ <br>Population: 2.780097 million",
"Country: Albania <br>Life Expectancy: 72.0 years <br>GDP per capita: 3738.932735 $ <br>Population: 3.075321 million",
"Country: Albania <br>Life Expectancy: 71.581 years <br>GDP per capita: 2497.437901 $ <br>Population: 3.326498 million",
"Country: Albania <br>Life Expectancy: 72.95 years <br>GDP per capita: 3193.054604 $ <br>Population: 3.428038 million",
"Country: Albania <br>Life Expectancy: 75.651 years <br>GDP per capita: 4604.211737 $ <br>Population: 3.508512 million",
"Country: Albania <br>Life Expectancy: 76.423 years <br>GDP per capita: 5937.029526 $ <br>Population: 3.600523 million"
],
"y": [
1601.056136,
1942.2842440000002,
2312.888958,
2760.196931,
3313.422188,
3533.0039100000004,
3630.880722,
3738.9327350000003,
2497.4379010000002,
3193.054604,
4604.211737,
5937.029525999999
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "53a35f"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y",
"ysrc": "etpinard:4362:c77da4",
"textsrc": "etpinard:4362:5da648",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:202a21",
"size": [
43.077,
45.685,
48.303000000000004,
51.407,
54.518,
58.013999999999996,
61.368,
65.79899999999999,
67.744,
69.152,
70.994,
72.301
]
},
"mode": "markers",
"xaxis": "x3",
"text": [
"Country: Algeria <br>Life Expectancy: 43.077 years <br>GDP per capita: 2449.008185 $ <br>Population: 9.279525 million",
"Country: Algeria <br>Life Expectancy: 45.685 years <br>GDP per capita: 3013.976023 $ <br>Population: 10.270856 million",
"Country: Algeria <br>Life Expectancy: 48.303 years <br>GDP per capita: 2550.81688 $ <br>Population: 11.000948 million",
"Country: Algeria <br>Life Expectancy: 51.407 years <br>GDP per capita: 3246.991771 $ <br>Population: 12.760499 million",
"Country: Algeria <br>Life Expectancy: 54.518 years <br>GDP per capita: 4182.663766 $ <br>Population: 14.760787 million",
"Country: Algeria <br>Life Expectancy: 58.014 years <br>GDP per capita: 4910.416756 $ <br>Population: 17.152804 million",
"Country: Algeria <br>Life Expectancy: 61.368 years <br>GDP per capita: 5745.160213 $ <br>Population: 20.033753 million",
"Country: Algeria <br>Life Expectancy: 65.799 years <br>GDP per capita: 5681.358539 $ <br>Population: 23.254956 million",
"Country: Algeria <br>Life Expectancy: 67.744 years <br>GDP per capita: 5023.216647 $ <br>Population: 26.298373 million",
"Country: Algeria <br>Life Expectancy: 69.152 years <br>GDP per capita: 4797.295051 $ <br>Population: 29.072015 million",
"Country: Algeria <br>Life Expectancy: 70.994 years <br>GDP per capita: 5288.040382 $ <br>Population: 31.287142 million",
"Country: Algeria <br>Life Expectancy: 72.301 years <br>GDP per capita: 6223.367465 $ <br>Population: 33.333216 million"
],
"y": [
2449.008185,
3013.976023,
2550.81688,
3246.991771,
4182.663766,
4910.4167560000005,
5745.160213,
5681.358539,
5023.216647,
4797.295051,
5288.040382,
6223.367465
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "e48c3c"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y",
"ysrc": "etpinard:4362:337eb4",
"textsrc": "etpinard:4362:29bdf5",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:7370f3",
"size": [
30.015,
31.999000000000002,
34,
35.985,
37.928000000000004,
39.483000000000004,
39.942,
39.906,
40.647,
40.963,
41.003,
42.731
]
},
"mode": "markers",
"xaxis": "x4",
"text": [
"Country: Angola <br>Life Expectancy: 30.015 years <br>GDP per capita: 3520.610273 $ <br>Population: 4.232095 million",
"Country: Angola <br>Life Expectancy: 31.999 years <br>GDP per capita: 3827.940465 $ <br>Population: 4.561361 million",
"Country: Angola <br>Life Expectancy: 34.0 years <br>GDP per capita: 4269.276742 $ <br>Population: 4.826015 million",
"Country: Angola <br>Life Expectancy: 35.985 years <br>GDP per capita: 5522.776375 $ <br>Population: 5.247469 million",
"Country: Angola <br>Life Expectancy: 37.928 years <br>GDP per capita: 5473.288005 $ <br>Population: 5.894858 million",
"Country: Angola <br>Life Expectancy: 39.483 years <br>GDP per capita: 3008.647355 $ <br>Population: 6.162675 million",
"Country: Angola <br>Life Expectancy: 39.942 years <br>GDP per capita: 2756.953672 $ <br>Population: 7.016384 million",
"Country: Angola <br>Life Expectancy: 39.906 years <br>GDP per capita: 2430.208311 $ <br>Population: 7.87423 million",
"Country: Angola <br>Life Expectancy: 40.647 years <br>GDP per capita: 2627.845685 $ <br>Population: 8.735988 million",
"Country: Angola <br>Life Expectancy: 40.963 years <br>GDP per capita: 2277.140884 $ <br>Population: 9.875024 million",
"Country: Angola <br>Life Expectancy: 41.003 years <br>GDP per capita: 2773.287312 $ <br>Population: 10.866106 million",
"Country: Angola <br>Life Expectancy: 42.731 years <br>GDP per capita: 4797.231267 $ <br>Population: 12.420476 million"
],
"y": [
3520.610273,
3827.9404649999997,
4269.276742,
5522.776375,
5473.288004999999,
3008.647355,
2756.953672,
2430.208311,
2627.8456850000002,
2277.140884,
2773.287312,
4797.231267
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "06ead6"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y",
"ysrc": "etpinard:4362:83c23e",
"textsrc": "etpinard:4362:8807bb",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:c69c2e",
"size": [
62.485,
64.399,
65.142,
65.634,
67.065,
68.48100000000001,
69.942,
70.774,
71.868,
73.275,
74.34,
75.32
]
},
"mode": "markers",
"xaxis": "x5",
"text": [
"Country: Argentina <br>Life Expectancy: 62.485 years <br>GDP per capita: 5911.315053 $ <br>Population: 17.876956 million",
"Country: Argentina <br>Life Expectancy: 64.399 years <br>GDP per capita: 6856.856212 $ <br>Population: 19.610538 million",
"Country: Argentina <br>Life Expectancy: 65.142 years <br>GDP per capita: 7133.166023 $ <br>Population: 21.283783 million",
"Country: Argentina <br>Life Expectancy: 65.634 years <br>GDP per capita: 8052.953021 $ <br>Population: 22.934225 million",
"Country: Argentina <br>Life Expectancy: 67.065 years <br>GDP per capita: 9443.038526 $ <br>Population: 24.779799 million",
"Country: Argentina <br>Life Expectancy: 68.481 years <br>GDP per capita: 10079.02674 $ <br>Population: 26.983828 million",
"Country: Argentina <br>Life Expectancy: 69.942 years <br>GDP per capita: 8997.897412 $ <br>Population: 29.341374 million",
"Country: Argentina <br>Life Expectancy: 70.774 years <br>GDP per capita: 9139.671389 $ <br>Population: 31.620918 million",
"Country: Argentina <br>Life Expectancy: 71.868 years <br>GDP per capita: 9308.41871 $ <br>Population: 33.958947 million",
"Country: Argentina <br>Life Expectancy: 73.275 years <br>GDP per capita: 10967.28195 $ <br>Population: 36.203463 million",
"Country: Argentina <br>Life Expectancy: 74.34 years <br>GDP per capita: 8797.640716 $ <br>Population: 38.331121 million",
"Country: Argentina <br>Life Expectancy: 75.32 years <br>GDP per capita: 12779.37964 $ <br>Population: 40.301927 million"
],
"y": [
5911.315053,
6856.856212000001,
7133.166023000001,
8052.953020999999,
9443.038526,
10079.026740000001,
8997.897412,
9139.671389,
9308.41871,
10967.28195,
8797.640716,
12779.379640000001
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "9dedfe"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Oceania",
"yaxis": "y",
"ysrc": "etpinard:4362:0d889c",
"textsrc": "etpinard:4362:4f77b6",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#9467bd",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:9ae496",
"size": [
69.12,
70.33,
70.93,
71.1,
71.93,
73.49,
74.74,
76.32,
77.56,
78.83,
80.37,
81.235
]
},
"mode": "markers",
"xaxis": "x6",
"text": [
"Country: Australia <br>Life Expectancy: 69.12 years <br>GDP per capita: 10039.59564 $ <br>Population: 8.691212 million",
"Country: Australia <br>Life Expectancy: 70.33 years <br>GDP per capita: 10949.64959 $ <br>Population: 9.712569 million",
"Country: Australia <br>Life Expectancy: 70.93 years <br>GDP per capita: 12217.22686 $ <br>Population: 10.794968 million",
"Country: Australia <br>Life Expectancy: 71.1 years <br>GDP per capita: 14526.12465 $ <br>Population: 11.872264 million",
"Country: Australia <br>Life Expectancy: 71.93 years <br>GDP per capita: 16788.62948 $ <br>Population: 13.177 million",
"Country: Australia <br>Life Expectancy: 73.49 years <br>GDP per capita: 18334.19751 $ <br>Population: 14.0741 million",
"Country: Australia <br>Life Expectancy: 74.74 years <br>GDP per capita: 19477.00928 $ <br>Population: 15.1842 million",
"Country: Australia <br>Life Expectancy: 76.32 years <br>GDP per capita: 21888.88903 $ <br>Population: 16.257249 million",
"Country: Australia <br>Life Expectancy: 77.56 years <br>GDP per capita: 23424.76683 $ <br>Population: 17.481977 million",
"Country: Australia <br>Life Expectancy: 78.83 years <br>GDP per capita: 26997.93657 $ <br>Population: 18.565243 million",
"Country: Australia <br>Life Expectancy: 80.37 years <br>GDP per capita: 30687.75473 $ <br>Population: 19.546792 million",
"Country: Australia <br>Life Expectancy: 81.235 years <br>GDP per capita: 34435.36744 $ <br>Population: 20.434176 million"
],
"y": [
10039.595640000001,
10949.64959,
12217.226859999999,
14526.12465,
16788.62948,
18334.197509999998,
19477.009280000002,
21888.889030000002,
23424.76683,
26997.936569999998,
30687.75473,
34435.367439999995
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "459808"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y",
"ysrc": "etpinard:4362:1cd114",
"textsrc": "etpinard:4362:57018b",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:d8c835",
"size": [
66.8,
67.48,
69.54,
70.14,
70.63,
72.17,
73.18,
74.94,
76.04,
77.51,
78.98,
79.829
]
},
"mode": "markers",
"xaxis": "x7",
"text": [
"Country: Austria <br>Life Expectancy: 66.8 years <br>GDP per capita: 6137.076492 $ <br>Population: 6.927772 million",
"Country: Austria <br>Life Expectancy: 67.48 years <br>GDP per capita: 8842.59803 $ <br>Population: 6.96586 million",
"Country: Austria <br>Life Expectancy: 69.54 years <br>GDP per capita: 10750.72111 $ <br>Population: 7.129864 million",
"Country: Austria <br>Life Expectancy: 70.14 years <br>GDP per capita: 12834.6024 $ <br>Population: 7.376998 million",
"Country: Austria <br>Life Expectancy: 70.63 years <br>GDP per capita: 16661.6256 $ <br>Population: 7.544201 million",
"Country: Austria <br>Life Expectancy: 72.17 years <br>GDP per capita: 19749.4223 $ <br>Population: 7.56843 million",
"Country: Austria <br>Life Expectancy: 73.18 years <br>GDP per capita: 21597.08362 $ <br>Population: 7.574613 million",
"Country: Austria <br>Life Expectancy: 74.94 years <br>GDP per capita: 23687.82607 $ <br>Population: 7.578903 million",
"Country: Austria <br>Life Expectancy: 76.04 years <br>GDP per capita: 27042.01868 $ <br>Population: 7.914969 million",
"Country: Austria <br>Life Expectancy: 77.51 years <br>GDP per capita: 29095.92066 $ <br>Population: 8.069876 million",
"Country: Austria <br>Life Expectancy: 78.98 years <br>GDP per capita: 32417.60769 $ <br>Population: 8.148312 million",
"Country: Austria <br>Life Expectancy: 79.829 years <br>GDP per capita: 36126.4927 $ <br>Population: 8.199783 million"
],
"y": [
6137.076492,
8842.59803,
10750.721109999999,
12834.6024,
16661.6256,
19749.4223,
21597.083619999998,
23687.82607,
27042.01868,
29095.920660000003,
32417.607689999997,
36126.4927
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "5f6eec"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y",
"ysrc": "etpinard:4362:be8f59",
"textsrc": "etpinard:4362:fb6919",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:452eb1",
"size": [
50.93899999999999,
53.832,
56.923,
59.923,
63.3,
65.593,
69.05199999999999,
70.75,
72.601,
73.925,
74.795,
75.635
]
},
"mode": "markers",
"xaxis": "x8",
"text": [
"Country: Bahrain <br>Life Expectancy: 50.939 years <br>GDP per capita: 9867.084765 $ <br>Population: 0.120447 million",
"Country: Bahrain <br>Life Expectancy: 53.832 years <br>GDP per capita: 11635.79945 $ <br>Population: 0.138655 million",
"Country: Bahrain <br>Life Expectancy: 56.923 years <br>GDP per capita: 12753.27514 $ <br>Population: 0.171863 million",
"Country: Bahrain <br>Life Expectancy: 59.923 years <br>GDP per capita: 14804.6727 $ <br>Population: 0.202182 million",
"Country: Bahrain <br>Life Expectancy: 63.3 years <br>GDP per capita: 18268.65839 $ <br>Population: 0.2308 million",
"Country: Bahrain <br>Life Expectancy: 65.593 years <br>GDP per capita: 19340.10196 $ <br>Population: 0.29741 million",
"Country: Bahrain <br>Life Expectancy: 69.052 years <br>GDP per capita: 19211.14731 $ <br>Population: 0.377967 million",
"Country: Bahrain <br>Life Expectancy: 70.75 years <br>GDP per capita: 18524.02406 $ <br>Population: 0.454612 million",
"Country: Bahrain <br>Life Expectancy: 72.601 years <br>GDP per capita: 19035.57917 $ <br>Population: 0.529491 million",
"Country: Bahrain <br>Life Expectancy: 73.925 years <br>GDP per capita: 20292.01679 $ <br>Population: 0.598561 million",
"Country: Bahrain <br>Life Expectancy: 74.795 years <br>GDP per capita: 23403.55927 $ <br>Population: 0.656397 million",
"Country: Bahrain <br>Life Expectancy: 75.635 years <br>GDP per capita: 29796.04834 $ <br>Population: 0.708573 million"
],
"y": [
9867.084765000001,
11635.79945,
12753.27514,
14804.6727,
18268.65839,
19340.10196,
19211.14731,
18524.02406,
19035.579169999997,
20292.01679,
23403.559269999998,
29796.048339999998
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "b59d74"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y",
"ysrc": "etpinard:4362:7cec48",
"textsrc": "etpinard:4362:fe682f",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:7c41e7",
"size": [
37.484,
39.348,
41.216,
43.453,
45.251999999999995,
46.923,
50.00899999999999,
52.818999999999996,
56.018,
59.412,
62.013000000000005,
64.062
]
},
"mode": "markers",
"xaxis": "x9",
"text": [
"Country: Bangladesh <br>Life Expectancy: 37.484 years <br>GDP per capita: 684.2441716 $ <br>Population: 46.886859 million",
"Country: Bangladesh <br>Life Expectancy: 39.348 years <br>GDP per capita: 661.6374577 $ <br>Population: 51.365468 million",
"Country: Bangladesh <br>Life Expectancy: 41.216 years <br>GDP per capita: 686.3415538 $ <br>Population: 56.839289 million",
"Country: Bangladesh <br>Life Expectancy: 43.453 years <br>GDP per capita: 721.1860862 $ <br>Population: 62.821884 million",
"Country: Bangladesh <br>Life Expectancy: 45.252 years <br>GDP per capita: 630.2336265 $ <br>Population: 70.759295 million",
"Country: Bangladesh <br>Life Expectancy: 46.923 years <br>GDP per capita: 659.8772322 $ <br>Population: 80.428306 million",
"Country: Bangladesh <br>Life Expectancy: 50.009 years <br>GDP per capita: 676.9818656 $ <br>Population: 93.074406 million",
"Country: Bangladesh <br>Life Expectancy: 52.819 years <br>GDP per capita: 751.9794035 $ <br>Population: 103.764241 million",
"Country: Bangladesh <br>Life Expectancy: 56.018 years <br>GDP per capita: 837.8101643 $ <br>Population: 113.704579 million",
"Country: Bangladesh <br>Life Expectancy: 59.412 years <br>GDP per capita: 972.7700352 $ <br>Population: 123.315288 million",
"Country: Bangladesh <br>Life Expectancy: 62.013 years <br>GDP per capita: 1136.39043 $ <br>Population: 135.65679 million",
"Country: Bangladesh <br>Life Expectancy: 64.062 years <br>GDP per capita: 1391.253792 $ <br>Population: 150.448339 million"
],
"y": [
684.2441716,
661.6374577,
686.3415537999999,
721.1860862000001,
630.2336265,
659.8772322000001,
676.9818656,
751.9794035,
837.8101642999999,
972.7700352,
1136.3904300000002,
1391.253792
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "ddf6ec"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y",
"ysrc": "etpinard:4362:d2014a",
"textsrc": "etpinard:4362:02e503",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:2d2220",
"size": [
68,
69.24,
70.25,
70.94,
71.44,
72.8,
73.93,
75.35,
76.46,
77.53,
78.32,
79.441
]
},
"mode": "markers",
"xaxis": "x10",
"text": [
"Country: Belgium <br>Life Expectancy: 68.0 years <br>GDP per capita: 8343.105127 $ <br>Population: 8.730405 million",
"Country: Belgium <br>Life Expectancy: 69.24 years <br>GDP per capita: 9714.960623 $ <br>Population: 8.989111 million",
"Country: Belgium <br>Life Expectancy: 70.25 years <br>GDP per capita: 10991.20676 $ <br>Population: 9.2184 million",
"Country: Belgium <br>Life Expectancy: 70.94 years <br>GDP per capita: 13149.04119 $ <br>Population: 9.5565 million",
"Country: Belgium <br>Life Expectancy: 71.44 years <br>GDP per capita: 16672.14356 $ <br>Population: 9.7091 million",
"Country: Belgium <br>Life Expectancy: 72.8 years <br>GDP per capita: 19117.97448 $ <br>Population: 9.8218 million",
"Country: Belgium <br>Life Expectancy: 73.93 years <br>GDP per capita: 20979.84589 $ <br>Population: 9.856303 million",
"Country: Belgium <br>Life Expectancy: 75.35 years <br>GDP per capita: 22525.56308 $ <br>Population: 9.8702 million",
"Country: Belgium <br>Life Expectancy: 76.46 years <br>GDP per capita: 25575.57069 $ <br>Population: 10.045622 million",
"Country: Belgium <br>Life Expectancy: 77.53 years <br>GDP per capita: 27561.19663 $ <br>Population: 10.199787 million",
"Country: Belgium <br>Life Expectancy: 78.32 years <br>GDP per capita: 30485.88375 $ <br>Population: 10.31197 million",
"Country: Belgium <br>Life Expectancy: 79.441 years <br>GDP per capita: 33692.60508 $ <br>Population: 10.392226 million"
],
"y": [
8343.105126999999,
9714.960623,
10991.20676,
13149.04119,
16672.14356,
19117.97448,
20979.84589,
22525.56308,
25575.57069,
27561.196630000002,
30485.88375,
33692.60508
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "d0080d"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y",
"ysrc": "etpinard:4362:6e26c7",
"textsrc": "etpinard:4362:84d54a",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:8762c1",
"size": [
38.223,
40.358000000000004,
42.618,
44.885,
47.013999999999996,
49.19,
50.903999999999996,
52.336999999999996,
53.919,
54.777,
54.406000000000006,
56.728
]
},
"mode": "markers",
"xaxis": "x11",
"text": [
"Country: Benin <br>Life Expectancy: 38.223 years <br>GDP per capita: 1062.7522 $ <br>Population: 1.738315 million",
"Country: Benin <br>Life Expectancy: 40.358 years <br>GDP per capita: 959.6010805 $ <br>Population: 1.925173 million",
"Country: Benin <br>Life Expectancy: 42.618 years <br>GDP per capita: 949.4990641 $ <br>Population: 2.151895 million",
"Country: Benin <br>Life Expectancy: 44.885 years <br>GDP per capita: 1035.831411 $ <br>Population: 2.427334 million",
"Country: Benin <br>Life Expectancy: 47.014 years <br>GDP per capita: 1085.796879 $ <br>Population: 2.761407 million",
"Country: Benin <br>Life Expectancy: 49.19 years <br>GDP per capita: 1029.161251 $ <br>Population: 3.168267 million",
"Country: Benin <br>Life Expectancy: 50.904 years <br>GDP per capita: 1277.897616 $ <br>Population: 3.641603 million",
"Country: Benin <br>Life Expectancy: 52.337 years <br>GDP per capita: 1225.85601 $ <br>Population: 4.243788 million",
"Country: Benin <br>Life Expectancy: 53.919 years <br>GDP per capita: 1191.207681 $ <br>Population: 4.981671 million",
"Country: Benin <br>Life Expectancy: 54.777 years <br>GDP per capita: 1232.975292 $ <br>Population: 6.06608 million",
"Country: Benin <br>Life Expectancy: 54.406 years <br>GDP per capita: 1372.877931 $ <br>Population: 7.026113 million",
"Country: Benin <br>Life Expectancy: 56.728 years <br>GDP per capita: 1441.284873 $ <br>Population: 8.078314 million"
],
"y": [
1062.7522,
959.6010805,
949.4990641,
1035.831411,
1085.796879,
1029.161251,
1277.897616,
1225.85601,
1191.207681,
1232.975292,
1372.877931,
1441.284873
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "39d66a"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y",
"ysrc": "etpinard:4362:ad7b5e",
"textsrc": "etpinard:4362:939802",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:3a2376",
"size": [
40.414,
41.89,
43.428000000000004,
45.032,
46.714,
50.023,
53.858999999999995,
57.251000000000005,
59.957,
62.05,
63.883,
65.554
]
},
"mode": "markers",
"xaxis": "x12",
"text": [
"Country: Bolivia <br>Life Expectancy: 40.414 years <br>GDP per capita: 2677.326347 $ <br>Population: 2.883315 million",
"Country: Bolivia <br>Life Expectancy: 41.89 years <br>GDP per capita: 2127.686326 $ <br>Population: 3.211738 million",
"Country: Bolivia <br>Life Expectancy: 43.428 years <br>GDP per capita: 2180.972546 $ <br>Population: 3.593918 million",
"Country: Bolivia <br>Life Expectancy: 45.032 years <br>GDP per capita: 2586.886053 $ <br>Population: 4.040665 million",
"Country: Bolivia <br>Life Expectancy: 46.714 years <br>GDP per capita: 2980.331339 $ <br>Population: 4.565872 million",
"Country: Bolivia <br>Life Expectancy: 50.023 years <br>GDP per capita: 3548.097832 $ <br>Population: 5.079716 million",
"Country: Bolivia <br>Life Expectancy: 53.859 years <br>GDP per capita: 3156.510452 $ <br>Population: 5.642224 million",
"Country: Bolivia <br>Life Expectancy: 57.251 years <br>GDP per capita: 2753.69149 $ <br>Population: 6.156369 million",
"Country: Bolivia <br>Life Expectancy: 59.957 years <br>GDP per capita: 2961.699694 $ <br>Population: 6.893451 million",
"Country: Bolivia <br>Life Expectancy: 62.05 years <br>GDP per capita: 3326.143191 $ <br>Population: 7.693188 million",
"Country: Bolivia <br>Life Expectancy: 63.883 years <br>GDP per capita: 3413.26269 $ <br>Population: 8.445134 million",
"Country: Bolivia <br>Life Expectancy: 65.554 years <br>GDP per capita: 3822.137084 $ <br>Population: 9.119152 million"
],
"y": [
2677.3263469999997,
2127.686326,
2180.972546,
2586.886053,
2980.331339,
3548.097832,
3156.510452,
2753.6914899999997,
2961.699694,
3326.143191,
3413.26269,
3822.1370840000004
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "b19810"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y2",
"ysrc": "etpinard:4362:fe33c7",
"textsrc": "etpinard:4362:213f1b",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:e4e117",
"size": [
53.82,
58.45,
61.93,
64.79,
67.45,
69.86,
70.69,
71.14,
72.178,
73.244,
74.09,
74.852
]
},
"mode": "markers",
"xaxis": "x",
"text": [
"Country: Bosnia and Herzegovina <br>Life Expectancy: 53.82 years <br>GDP per capita: 973.5331948 $ <br>Population: 2.791 million",
"Country: Bosnia and Herzegovina <br>Life Expectancy: 58.45 years <br>GDP per capita: 1353.989176 $ <br>Population: 3.076 million",
"Country: Bosnia and Herzegovina <br>Life Expectancy: 61.93 years <br>GDP per capita: 1709.683679 $ <br>Population: 3.349 million",
"Country: Bosnia and Herzegovina <br>Life Expectancy: 64.79 years <br>GDP per capita: 2172.352423 $ <br>Population: 3.585 million",
"Country: Bosnia and Herzegovina <br>Life Expectancy: 67.45 years <br>GDP per capita: 2860.16975 $ <br>Population: 3.819 million",
"Country: Bosnia and Herzegovina <br>Life Expectancy: 69.86 years <br>GDP per capita: 3528.481305 $ <br>Population: 4.086 million",
"Country: Bosnia and Herzegovina <br>Life Expectancy: 70.69 years <br>GDP per capita: 4126.613157 $ <br>Population: 4.172693 million",
"Country: Bosnia and Herzegovina <br>Life Expectancy: 71.14 years <br>GDP per capita: 4314.114757 $ <br>Population: 4.338977 million",
"Country: Bosnia and Herzegovina <br>Life Expectancy: 72.178 years <br>GDP per capita: 2546.781445 $ <br>Population: 4.256013 million",
"Country: Bosnia and Herzegovina <br>Life Expectancy: 73.244 years <br>GDP per capita: 4766.355904 $ <br>Population: 3.607 million",
"Country: Bosnia and Herzegovina <br>Life Expectancy: 74.09 years <br>GDP per capita: 6018.975239 $ <br>Population: 4.165416 million",
"Country: Bosnia and Herzegovina <br>Life Expectancy: 74.852 years <br>GDP per capita: 7446.298803 $ <br>Population: 4.552198 million"
],
"y": [
973.5331947999999,
1353.989176,
1709.683679,
2172.3524230000003,
2860.16975,
3528.481305,
4126.613157,
4314.114757,
2546.781445,
4766.355904,
6018.975239,
7446.298803
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "5193e7"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y2",
"ysrc": "etpinard:4362:8a0817",
"textsrc": "etpinard:4362:5fbfdc",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:e62e36",
"size": [
47.622,
49.618,
51.52,
53.298,
56.023999999999994,
59.318999999999996,
61.483999999999995,
63.622,
62.745,
52.556000000000004,
46.63399999999999,
50.728
]
},
"mode": "markers",
"xaxis": "x2",
"text": [
"Country: Botswana <br>Life Expectancy: 47.622 years <br>GDP per capita: 851.2411407 $ <br>Population: 0.442308 million",
"Country: Botswana <br>Life Expectancy: 49.618 years <br>GDP per capita: 918.2325349 $ <br>Population: 0.474639 million",
"Country: Botswana <br>Life Expectancy: 51.52 years <br>GDP per capita: 983.6539764 $ <br>Population: 0.512764 million",
"Country: Botswana <br>Life Expectancy: 53.298 years <br>GDP per capita: 1214.709294 $ <br>Population: 0.553541 million",
"Country: Botswana <br>Life Expectancy: 56.024 years <br>GDP per capita: 2263.611114 $ <br>Population: 0.619351 million",
"Country: Botswana <br>Life Expectancy: 59.319 years <br>GDP per capita: 3214.857818 $ <br>Population: 0.781472 million",
"Country: Botswana <br>Life Expectancy: 61.484 years <br>GDP per capita: 4551.14215 $ <br>Population: 0.970347 million",
"Country: Botswana <br>Life Expectancy: 63.622 years <br>GDP per capita: 6205.88385 $ <br>Population: 1.151184 million",
"Country: Botswana <br>Life Expectancy: 62.745 years <br>GDP per capita: 7954.111645 $ <br>Population: 1.342614 million",
"Country: Botswana <br>Life Expectancy: 52.556 years <br>GDP per capita: 8647.142313 $ <br>Population: 1.536536 million",
"Country: Botswana <br>Life Expectancy: 46.634 years <br>GDP per capita: 11003.60508 $ <br>Population: 1.630347 million",
"Country: Botswana <br>Life Expectancy: 50.728 years <br>GDP per capita: 12569.85177 $ <br>Population: 1.639131 million"
],
"y": [
851.2411407,
918.2325348999999,
983.6539764,
1214.709294,
2263.6111140000003,
3214.857818,
4551.14215,
6205.88385,
7954.111645,
8647.142313,
11003.60508,
12569.851770000001
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "7414a7"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y2",
"ysrc": "etpinard:4362:216ae6",
"textsrc": "etpinard:4362:566cb8",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:fab55c",
"size": [
50.917,
53.285,
55.665,
57.632,
59.504,
61.489,
63.336000000000006,
65.205,
67.057,
69.388,
71.006,
72.39
]
},
"mode": "markers",
"xaxis": "x3",
"text": [
"Country: Brazil <br>Life Expectancy: 50.917 years <br>GDP per capita: 2108.944355 $ <br>Population: 56.60256 million",
"Country: Brazil <br>Life Expectancy: 53.285 years <br>GDP per capita: 2487.365989 $ <br>Population: 65.551171 million",
"Country: Brazil <br>Life Expectancy: 55.665 years <br>GDP per capita: 3336.585802 $ <br>Population: 76.03939 million",
"Country: Brazil <br>Life Expectancy: 57.632 years <br>GDP per capita: 3429.864357 $ <br>Population: 88.049823 million",
"Country: Brazil <br>Life Expectancy: 59.504 years <br>GDP per capita: 4985.711467 $ <br>Population: 100.840058 million",
"Country: Brazil <br>Life Expectancy: 61.489 years <br>GDP per capita: 6660.118654 $ <br>Population: 114.313951 million",
"Country: Brazil <br>Life Expectancy: 63.336 years <br>GDP per capita: 7030.835878 $ <br>Population: 128.962939 million",
"Country: Brazil <br>Life Expectancy: 65.205 years <br>GDP per capita: 7807.095818 $ <br>Population: 142.938076 million",
"Country: Brazil <br>Life Expectancy: 67.057 years <br>GDP per capita: 6950.283021 $ <br>Population: 155.975974 million",
"Country: Brazil <br>Life Expectancy: 69.388 years <br>GDP per capita: 7957.980824 $ <br>Population: 168.546719 million",
"Country: Brazil <br>Life Expectancy: 71.006 years <br>GDP per capita: 8131.212843 $ <br>Population: 179.914212 million",
"Country: Brazil <br>Life Expectancy: 72.39 years <br>GDP per capita: 9065.800825 $ <br>Population: 190.010647 million"
],
"y": [
2108.944355,
2487.365989,
3336.585802,
3429.864357,
4985.711467,
6660.118654,
7030.835878,
7807.095818000001,
6950.283020999999,
7957.980823999999,
8131.212843000001,
9065.800825
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "79625d"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y2",
"ysrc": "etpinard:4362:b04624",
"textsrc": "etpinard:4362:cd3fa7",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:89018a",
"size": [
59.6,
66.61,
69.51,
70.42,
70.9,
70.81,
71.08,
71.34,
71.19,
70.32,
72.14,
73.005
]
},
"mode": "markers",
"xaxis": "x4",
"text": [
"Country: Bulgaria <br>Life Expectancy: 59.6 years <br>GDP per capita: 2444.286648 $ <br>Population: 7.2749 million",
"Country: Bulgaria <br>Life Expectancy: 66.61 years <br>GDP per capita: 3008.670727 $ <br>Population: 7.651254 million",
"Country: Bulgaria <br>Life Expectancy: 69.51 years <br>GDP per capita: 4254.337839 $ <br>Population: 8.012946 million",
"Country: Bulgaria <br>Life Expectancy: 70.42 years <br>GDP per capita: 5577.0028 $ <br>Population: 8.310226 million",
"Country: Bulgaria <br>Life Expectancy: 70.9 years <br>GDP per capita: 6597.494398 $ <br>Population: 8.5762 million",
"Country: Bulgaria <br>Life Expectancy: 70.81 years <br>GDP per capita: 7612.240438 $ <br>Population: 8.797022 million",
"Country: Bulgaria <br>Life Expectancy: 71.08 years <br>GDP per capita: 8224.191647 $ <br>Population: 8.892098 million",
"Country: Bulgaria <br>Life Expectancy: 71.34 years <br>GDP per capita: 8239.854824 $ <br>Population: 8.971958 million",
"Country: Bulgaria <br>Life Expectancy: 71.19 years <br>GDP per capita: 6302.623438 $ <br>Population: 8.658506 million",
"Country: Bulgaria <br>Life Expectancy: 70.32 years <br>GDP per capita: 5970.38876 $ <br>Population: 8.066057 million",
"Country: Bulgaria <br>Life Expectancy: 72.14 years <br>GDP per capita: 7696.777725 $ <br>Population: 7.661799 million",
"Country: Bulgaria <br>Life Expectancy: 73.005 years <br>GDP per capita: 10680.79282 $ <br>Population: 7.322858 million"
],
"y": [
2444.2866480000002,
3008.670727,
4254.337839,
5577.0028,
6597.494398,
7612.240438,
8224.191647,
8239.854824,
6302.6234380000005,
5970.38876,
7696.777725,
10680.79282
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "93e707"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y2",
"ysrc": "etpinard:4362:43023e",
"textsrc": "etpinard:4362:7e2f27",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:4120c5",
"size": [
31.975,
34.906,
37.814,
40.696999999999996,
43.591,
46.137,
48.122,
49.556999999999995,
50.26,
50.324,
50.65,
52.295
]
},
"mode": "markers",
"xaxis": "x5",
"text": [
"Country: Burkina Faso <br>Life Expectancy: 31.975 years <br>GDP per capita: 543.2552413 $ <br>Population: 4.469979 million",
"Country: Burkina Faso <br>Life Expectancy: 34.906 years <br>GDP per capita: 617.1834648 $ <br>Population: 4.713416 million",
"Country: Burkina Faso <br>Life Expectancy: 37.814 years <br>GDP per capita: 722.5120206 $ <br>Population: 4.919632 million",
"Country: Burkina Faso <br>Life Expectancy: 40.697 years <br>GDP per capita: 794.8265597 $ <br>Population: 5.127935 million",
"Country: Burkina Faso <br>Life Expectancy: 43.591 years <br>GDP per capita: 854.7359763 $ <br>Population: 5.433886 million",
"Country: Burkina Faso <br>Life Expectancy: 46.137 years <br>GDP per capita: 743.3870368 $ <br>Population: 5.889574 million",
"Country: Burkina Faso <br>Life Expectancy: 48.122 years <br>GDP per capita: 807.1985855 $ <br>Population: 6.634596 million",
"Country: Burkina Faso <br>Life Expectancy: 49.557 years <br>GDP per capita: 912.0631417 $ <br>Population: 7.586551 million",
"Country: Burkina Faso <br>Life Expectancy: 50.26 years <br>GDP per capita: 931.7527731 $ <br>Population: 8.878303 million",
"Country: Burkina Faso <br>Life Expectancy: 50.324 years <br>GDP per capita: 946.2949618 $ <br>Population: 10.352843 million",
"Country: Burkina Faso <br>Life Expectancy: 50.65 years <br>GDP per capita: 1037.645221 $ <br>Population: 12.251209 million",
"Country: Burkina Faso <br>Life Expectancy: 52.295 years <br>GDP per capita: 1217.032994 $ <br>Population: 14.326203 million"
],
"y": [
543.2552413,
617.1834647999999,
722.5120206,
794.8265597,
854.7359763000001,
743.3870368,
807.1985855,
912.0631417000001,
931.7527731,
946.2949617999999,
1037.645221,
1217.032994
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "2cfbec"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y2",
"ysrc": "etpinard:4362:548325",
"textsrc": "etpinard:4362:de752d",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:50e77a",
"size": [
39.031,
40.533,
42.045,
43.548,
44.056999999999995,
45.91,
47.471000000000004,
48.211000000000006,
44.736000000000004,
45.326,
47.36,
49.58
]
},
"mode": "markers",
"xaxis": "x6",
"text": [
"Country: Burundi <br>Life Expectancy: 39.031 years <br>GDP per capita: 339.2964587 $ <br>Population: 2.445618 million",
"Country: Burundi <br>Life Expectancy: 40.533 years <br>GDP per capita: 379.5646281 $ <br>Population: 2.667518 million",
"Country: Burundi <br>Life Expectancy: 42.045 years <br>GDP per capita: 355.2032273 $ <br>Population: 2.961915 million",
"Country: Burundi <br>Life Expectancy: 43.548 years <br>GDP per capita: 412.9775136 $ <br>Population: 3.330989 million",
"Country: Burundi <br>Life Expectancy: 44.057 years <br>GDP per capita: 464.0995039 $ <br>Population: 3.529983 million",
"Country: Burundi <br>Life Expectancy: 45.91 years <br>GDP per capita: 556.1032651 $ <br>Population: 3.834415 million",
"Country: Burundi <br>Life Expectancy: 47.471 years <br>GDP per capita: 559.603231 $ <br>Population: 4.58041 million",
"Country: Burundi <br>Life Expectancy: 48.211 years <br>GDP per capita: 621.8188189 $ <br>Population: 5.126023 million",
"Country: Burundi <br>Life Expectancy: 44.736 years <br>GDP per capita: 631.6998778 $ <br>Population: 5.809236 million",
"Country: Burundi <br>Life Expectancy: 45.326 years <br>GDP per capita: 463.1151478 $ <br>Population: 6.12161 million",
"Country: Burundi <br>Life Expectancy: 47.36 years <br>GDP per capita: 446.4035126 $ <br>Population: 7.021078 million",
"Country: Burundi <br>Life Expectancy: 49.58 years <br>GDP per capita: 430.0706916 $ <br>Population: 8.390505 million"
],
"y": [
339.29645869999996,
379.56462810000005,
355.2032273,
412.97751360000007,
464.0995039,
556.1032651,
559.6032309999999,
621.8188188999999,
631.6998778,
463.1151478,
446.4035126,
430.07069160000003
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "a93842"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y2",
"ysrc": "etpinard:4362:6ca090",
"textsrc": "etpinard:4362:e97faf",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:321068",
"size": [
39.417,
41.36600000000001,
43.415,
45.415,
40.317,
31.22,
50.957,
53.913999999999994,
55.803000000000004,
56.534,
56.751999999999995,
59.723
]
},
"mode": "markers",
"xaxis": "x7",
"text": [
"Country: Cambodia <br>Life Expectancy: 39.417 years <br>GDP per capita: 368.4692856 $ <br>Population: 4.693836 million",
"Country: Cambodia <br>Life Expectancy: 41.366 years <br>GDP per capita: 434.0383364 $ <br>Population: 5.322536 million",
"Country: Cambodia <br>Life Expectancy: 43.415 years <br>GDP per capita: 496.9136476 $ <br>Population: 6.083619 million",
"Country: Cambodia <br>Life Expectancy: 45.415 years <br>GDP per capita: 523.4323142 $ <br>Population: 6.960067 million",
"Country: Cambodia <br>Life Expectancy: 40.317 years <br>GDP per capita: 421.6240257 $ <br>Population: 7.450606 million",
"Country: Cambodia <br>Life Expectancy: 31.22 years <br>GDP per capita: 524.9721832 $ <br>Population: 6.978607 million",
"Country: Cambodia <br>Life Expectancy: 50.957 years <br>GDP per capita: 624.4754784 $ <br>Population: 7.272485 million",
"Country: Cambodia <br>Life Expectancy: 53.914 years <br>GDP per capita: 683.8955732 $ <br>Population: 8.371791 million",
"Country: Cambodia <br>Life Expectancy: 55.803 years <br>GDP per capita: 682.3031755 $ <br>Population: 10.150094 million",
"Country: Cambodia <br>Life Expectancy: 56.534 years <br>GDP per capita: 734.28517 $ <br>Population: 11.782962 million",
"Country: Cambodia <br>Life Expectancy: 56.752 years <br>GDP per capita: 896.2260153 $ <br>Population: 12.926707 million",
"Country: Cambodia <br>Life Expectancy: 59.723 years <br>GDP per capita: 1713.778686 $ <br>Population: 14.131858 million"
],
"y": [
368.46928560000003,
434.0383364,
496.9136476,
523.4323142,
421.6240257,
524.9721831999999,
624.4754784,
683.8955732000001,
682.3031755,
734.28517,
896.2260152999999,
1713.7786859999999
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "c39c76"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y2",
"ysrc": "etpinard:4362:e6bfb9",
"textsrc": "etpinard:4362:460bab",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:93c94a",
"size": [
38.523,
40.428000000000004,
42.643,
44.799,
47.049,
49.355,
52.961000000000006,
54.985,
54.31399999999999,
52.199,
49.856,
50.43
]
},
"mode": "markers",
"xaxis": "x8",
"text": [
"Country: Cameroon <br>Life Expectancy: 38.523 years <br>GDP per capita: 1172.667655 $ <br>Population: 5.009067 million",
"Country: Cameroon <br>Life Expectancy: 40.428 years <br>GDP per capita: 1313.048099 $ <br>Population: 5.359923 million",
"Country: Cameroon <br>Life Expectancy: 42.643 years <br>GDP per capita: 1399.607441 $ <br>Population: 5.793633 million",
"Country: Cameroon <br>Life Expectancy: 44.799 years <br>GDP per capita: 1508.453148 $ <br>Population: 6.335506 million",
"Country: Cameroon <br>Life Expectancy: 47.049 years <br>GDP per capita: 1684.146528 $ <br>Population: 7.021028 million",
"Country: Cameroon <br>Life Expectancy: 49.355 years <br>GDP per capita: 1783.432873 $ <br>Population: 7.959865 million",
"Country: Cameroon <br>Life Expectancy: 52.961 years <br>GDP per capita: 2367.983282 $ <br>Population: 9.250831 million",
"Country: Cameroon <br>Life Expectancy: 54.985 years <br>GDP per capita: 2602.664206 $ <br>Population: 10.780667 million",
"Country: Cameroon <br>Life Expectancy: 54.314 years <br>GDP per capita: 1793.163278 $ <br>Population: 12.467171 million",
"Country: Cameroon <br>Life Expectancy: 52.199 years <br>GDP per capita: 1694.337469 $ <br>Population: 14.195809 million",
"Country: Cameroon <br>Life Expectancy: 49.856 years <br>GDP per capita: 1934.011449 $ <br>Population: 15.929988 million",
"Country: Cameroon <br>Life Expectancy: 50.43 years <br>GDP per capita: 2042.09524 $ <br>Population: 17.696293 million"
],
"y": [
1172.667655,
1313.048099,
1399.607441,
1508.453148,
1684.1465280000002,
1783.432873,
2367.983282,
2602.664206,
1793.1632780000002,
1694.337469,
1934.0114489999999,
2042.0952399999999
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "9e8e85"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y2",
"ysrc": "etpinard:4362:4579a0",
"textsrc": "etpinard:4362:ae48d3",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:7b34ed",
"size": [
68.75,
69.96,
71.3,
72.13,
72.88,
74.21,
75.76,
76.86,
77.95,
78.61,
79.77,
80.653
]
},
"mode": "markers",
"xaxis": "x9",
"text": [
"Country: Canada <br>Life Expectancy: 68.75 years <br>GDP per capita: 11367.16112 $ <br>Population: 14.785584 million",
"Country: Canada <br>Life Expectancy: 69.96 years <br>GDP per capita: 12489.95006 $ <br>Population: 17.010154 million",
"Country: Canada <br>Life Expectancy: 71.3 years <br>GDP per capita: 13462.48555 $ <br>Population: 18.985849 million",
"Country: Canada <br>Life Expectancy: 72.13 years <br>GDP per capita: 16076.58803 $ <br>Population: 20.819767 million",
"Country: Canada <br>Life Expectancy: 72.88 years <br>GDP per capita: 18970.57086 $ <br>Population: 22.2845 million",
"Country: Canada <br>Life Expectancy: 74.21 years <br>GDP per capita: 22090.88306 $ <br>Population: 23.7964 million",
"Country: Canada <br>Life Expectancy: 75.76 years <br>GDP per capita: 22898.79214 $ <br>Population: 25.2019 million",
"Country: Canada <br>Life Expectancy: 76.86 years <br>GDP per capita: 26626.51503 $ <br>Population: 26.5497 million",
"Country: Canada <br>Life Expectancy: 77.95 years <br>GDP per capita: 26342.88426 $ <br>Population: 28.523502 million",
"Country: Canada <br>Life Expectancy: 78.61 years <br>GDP per capita: 28954.92589 $ <br>Population: 30.305843 million",
"Country: Canada <br>Life Expectancy: 79.77 years <br>GDP per capita: 33328.96507 $ <br>Population: 31.902268 million",
"Country: Canada <br>Life Expectancy: 80.653 years <br>GDP per capita: 36319.23501 $ <br>Population: 33.390141 million"
],
"y": [
11367.16112,
12489.95006,
13462.48555,
16076.58803,
18970.57086,
22090.88306,
22898.79214,
26626.515030000002,
26342.88426,
28954.92589,
33328.96507,
36319.235010000004
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "f87e5a"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y2",
"ysrc": "etpinard:4362:801396",
"textsrc": "etpinard:4362:602374",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:7cdbc6",
"size": [
35.463,
37.464,
39.475,
41.478,
43.457,
46.775,
48.295,
50.485,
49.396,
46.066,
43.308,
44.74100000000001
]
},
"mode": "markers",
"xaxis": "x10",
"text": [
"Country: Central African Republic <br>Life Expectancy: 35.463 years <br>GDP per capita: 1071.310713 $ <br>Population: 1.291695 million",
"Country: Central African Republic <br>Life Expectancy: 37.464 years <br>GDP per capita: 1190.844328 $ <br>Population: 1.392284 million",
"Country: Central African Republic <br>Life Expectancy: 39.475 years <br>GDP per capita: 1193.068753 $ <br>Population: 1.523478 million",
"Country: Central African Republic <br>Life Expectancy: 41.478 years <br>GDP per capita: 1136.056615 $ <br>Population: 1.733638 million",
"Country: Central African Republic <br>Life Expectancy: 43.457 years <br>GDP per capita: 1070.013275 $ <br>Population: 1.92726 million",
"Country: Central African Republic <br>Life Expectancy: 46.775 years <br>GDP per capita: 1109.374338 $ <br>Population: 2.167533 million",
"Country: Central African Republic <br>Life Expectancy: 48.295 years <br>GDP per capita: 956.7529907 $ <br>Population: 2.476971 million",
"Country: Central African Republic <br>Life Expectancy: 50.485 years <br>GDP per capita: 844.8763504 $ <br>Population: 2.840009 million",
"Country: Central African Republic <br>Life Expectancy: 49.396 years <br>GDP per capita: 747.9055252 $ <br>Population: 3.265124 million",
"Country: Central African Republic <br>Life Expectancy: 46.066 years <br>GDP per capita: 740.5063317 $ <br>Population: 3.696513 million",
"Country: Central African Republic <br>Life Expectancy: 43.308 years <br>GDP per capita: 738.6906068 $ <br>Population: 4.048013 million",
"Country: Central African Republic <br>Life Expectancy: 44.741 years <br>GDP per capita: 706.016537 $ <br>Population: 4.369038 million"
],
"y": [
1071.310713,
1190.844328,
1193.068753,
1136.056615,
1070.013275,
1109.374338,
956.7529906999999,
844.8763504000001,
747.9055252,
740.5063317,
738.6906068,
706.016537
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "caeab0"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y2",
"ysrc": "etpinard:4362:f69d02",
"textsrc": "etpinard:4362:c3af95",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:87f242",
"size": [
38.092,
39.881,
41.716,
43.601000000000006,
45.568999999999996,
47.383,
49.516999999999996,
51.051,
51.724,
51.573,
50.525,
50.651
]
},
"mode": "markers",
"xaxis": "x11",
"text": [
"Country: Chad <br>Life Expectancy: 38.092 years <br>GDP per capita: 1178.665927 $ <br>Population: 2.682462 million",
"Country: Chad <br>Life Expectancy: 39.881 years <br>GDP per capita: 1308.495577 $ <br>Population: 2.894855 million",
"Country: Chad <br>Life Expectancy: 41.716 years <br>GDP per capita: 1389.817618 $ <br>Population: 3.150417 million",
"Country: Chad <br>Life Expectancy: 43.601 years <br>GDP per capita: 1196.810565 $ <br>Population: 3.495967 million",
"Country: Chad <br>Life Expectancy: 45.569 years <br>GDP per capita: 1104.103987 $ <br>Population: 3.899068 million",
"Country: Chad <br>Life Expectancy: 47.383 years <br>GDP per capita: 1133.98495 $ <br>Population: 4.38826 million",
"Country: Chad <br>Life Expectancy: 49.517 years <br>GDP per capita: 797.9081006 $ <br>Population: 4.875118 million",
"Country: Chad <br>Life Expectancy: 51.051 years <br>GDP per capita: 952.386129 $ <br>Population: 5.498955 million",
"Country: Chad <br>Life Expectancy: 51.724 years <br>GDP per capita: 1058.0643 $ <br>Population: 6.429417 million",
"Country: Chad <br>Life Expectancy: 51.573 years <br>GDP per capita: 1004.961353 $ <br>Population: 7.562011 million",
"Country: Chad <br>Life Expectancy: 50.525 years <br>GDP per capita: 1156.18186 $ <br>Population: 8.835739 million",
"Country: Chad <br>Life Expectancy: 50.651 years <br>GDP per capita: 1704.063724 $ <br>Population: 10.238807 million"
],
"y": [
1178.665927,
1308.495577,
1389.817618,
1196.810565,
1104.103987,
1133.98495,
797.9081006,
952.3861289999999,
1058.0643,
1004.9613529999999,
1156.18186,
1704.0637239999999
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "210826"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y2",
"ysrc": "etpinard:4362:3a425c",
"textsrc": "etpinard:4362:c02d2b",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:a6dfcd",
"size": [
54.745,
56.074,
57.924,
60.523,
63.441,
67.05199999999999,
70.565,
72.492,
74.126,
75.816,
77.86,
78.553
]
},
"mode": "markers",
"xaxis": "x12",
"text": [
"Country: Chile <br>Life Expectancy: 54.745 years <br>GDP per capita: 3939.978789 $ <br>Population: 6.377619 million",
"Country: Chile <br>Life Expectancy: 56.074 years <br>GDP per capita: 4315.622723 $ <br>Population: 7.048426 million",
"Country: Chile <br>Life Expectancy: 57.924 years <br>GDP per capita: 4519.094331 $ <br>Population: 7.961258 million",
"Country: Chile <br>Life Expectancy: 60.523 years <br>GDP per capita: 5106.654313 $ <br>Population: 8.858908 million",
"Country: Chile <br>Life Expectancy: 63.441 years <br>GDP per capita: 5494.024437 $ <br>Population: 9.717524 million",
"Country: Chile <br>Life Expectancy: 67.052 years <br>GDP per capita: 4756.763836 $ <br>Population: 10.599793 million",
"Country: Chile <br>Life Expectancy: 70.565 years <br>GDP per capita: 5095.665738 $ <br>Population: 11.487112 million",
"Country: Chile <br>Life Expectancy: 72.492 years <br>GDP per capita: 5547.063754 $ <br>Population: 12.463354 million",
"Country: Chile <br>Life Expectancy: 74.126 years <br>GDP per capita: 7596.125964 $ <br>Population: 13.572994 million",
"Country: Chile <br>Life Expectancy: 75.816 years <br>GDP per capita: 10118.05318 $ <br>Population: 14.599929 million",
"Country: Chile <br>Life Expectancy: 77.86 years <br>GDP per capita: 10778.78385 $ <br>Population: 15.497046 million",
"Country: Chile <br>Life Expectancy: 78.553 years <br>GDP per capita: 13171.63885 $ <br>Population: 16.284741 million"
],
"y": [
3939.9787890000002,
4315.6227229999995,
4519.094331,
5106.654313,
5494.024437,
4756.763836,
5095.665738000001,
5547.063754,
7596.125964,
10118.053179999999,
10778.78385,
13171.63885
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "c7c121"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y3",
"ysrc": "etpinard:4362:c573e5",
"textsrc": "etpinard:4362:6094b6",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:d7427b",
"size": [
44,
50.54896,
44.50136,
58.381119999999996,
63.118880000000004,
63.96736,
65.525,
67.274,
68.69,
70.426,
72.028,
72.961
]
},
"mode": "markers",
"xaxis": "x",
"text": [
"Country: China <br>Life Expectancy: 44.0 years <br>GDP per capita: 400.4486107 $ <br>Population: 556.263528 million",
"Country: China <br>Life Expectancy: 50.54896 years <br>GDP per capita: 575.9870009 $ <br>Population: 637.408 million",
"Country: China <br>Life Expectancy: 44.50136 years <br>GDP per capita: 487.6740183 $ <br>Population: 665.77 million",
"Country: China <br>Life Expectancy: 58.38112 years <br>GDP per capita: 612.7056934 $ <br>Population: 754.55 million",
"Country: China <br>Life Expectancy: 63.11888 years <br>GDP per capita: 676.9000921 $ <br>Population: 862.03 million",
"Country: China <br>Life Expectancy: 63.96736 years <br>GDP per capita: 741.2374699 $ <br>Population: 943.455 million",
"Country: China <br>Life Expectancy: 65.525 years <br>GDP per capita: 962.4213805 $ <br>Population: 1000.281 million",
"Country: China <br>Life Expectancy: 67.274 years <br>GDP per capita: 1378.904018 $ <br>Population: 1084.035 million",
"Country: China <br>Life Expectancy: 68.69 years <br>GDP per capita: 1655.784158 $ <br>Population: 1164.97 million",
"Country: China <br>Life Expectancy: 70.426 years <br>GDP per capita: 2289.234136 $ <br>Population: 1230.075 million",
"Country: China <br>Life Expectancy: 72.028 years <br>GDP per capita: 3119.280896 $ <br>Population: 1280.4 million",
"Country: China <br>Life Expectancy: 72.961 years <br>GDP per capita: 4959.114854 $ <br>Population: 1318.683096 million"
],
"y": [
400.448610699994,
575.9870009,
487.6740183,
612.7056934,
676.9000921,
741.2374699,
962.4213804999999,
1378.904018,
1655.784158,
2289.234136,
3119.280896,
4959.1148539999995
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "032e48"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y3",
"ysrc": "etpinard:4362:3ac9f1",
"textsrc": "etpinard:4362:bdeef9",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:678a67",
"size": [
50.643,
55.118,
57.863,
59.963,
61.623000000000005,
63.836999999999996,
66.653,
67.768,
68.421,
70.313,
71.682,
72.889
]
},
"mode": "markers",
"xaxis": "x2",
"text": [
"Country: Colombia <br>Life Expectancy: 50.643 years <br>GDP per capita: 2144.115096 $ <br>Population: 12.350771 million",
"Country: Colombia <br>Life Expectancy: 55.118 years <br>GDP per capita: 2323.805581 $ <br>Population: 14.485993 million",
"Country: Colombia <br>Life Expectancy: 57.863 years <br>GDP per capita: 2492.351109 $ <br>Population: 17.009885 million",
"Country: Colombia <br>Life Expectancy: 59.963 years <br>GDP per capita: 2678.729839 $ <br>Population: 19.764027 million",
"Country: Colombia <br>Life Expectancy: 61.623 years <br>GDP per capita: 3264.660041 $ <br>Population: 22.54289 million",
"Country: Colombia <br>Life Expectancy: 63.837 years <br>GDP per capita: 3815.80787 $ <br>Population: 25.094412 million",
"Country: Colombia <br>Life Expectancy: 66.653 years <br>GDP per capita: 4397.575659 $ <br>Population: 27.764644 million",
"Country: Colombia <br>Life Expectancy: 67.768 years <br>GDP per capita: 4903.2191 $ <br>Population: 30.964245 million",
"Country: Colombia <br>Life Expectancy: 68.421 years <br>GDP per capita: 5444.648617 $ <br>Population: 34.202721 million",
"Country: Colombia <br>Life Expectancy: 70.313 years <br>GDP per capita: 6117.361746 $ <br>Population: 37.65783 million",
"Country: Colombia <br>Life Expectancy: 71.682 years <br>GDP per capita: 5755.259962 $ <br>Population: 41.008227 million",
"Country: Colombia <br>Life Expectancy: 72.889 years <br>GDP per capita: 7006.580419 $ <br>Population: 44.22755 million"
],
"y": [
2144.115096,
2323.805581,
2492.351109,
2678.729839,
3264.660041,
3815.80787,
4397.575659,
4903.2191,
5444.648617,
6117.3617460000005,
5755.259962,
7006.580419
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "e43ef4"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y3",
"ysrc": "etpinard:4362:b61da8",
"textsrc": "etpinard:4362:eb0ddc",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:1c069c",
"size": [
40.715,
42.46,
44.467,
46.472,
48.943999999999996,
50.93899999999999,
52.933,
54.926,
57.93899999999999,
60.66,
62.974,
65.152
]
},
"mode": "markers",
"xaxis": "x3",
"text": [
"Country: Comoros <br>Life Expectancy: 40.715 years <br>GDP per capita: 1102.990936 $ <br>Population: 0.153936 million",
"Country: Comoros <br>Life Expectancy: 42.46 years <br>GDP per capita: 1211.148548 $ <br>Population: 0.170928 million",
"Country: Comoros <br>Life Expectancy: 44.467 years <br>GDP per capita: 1406.648278 $ <br>Population: 0.191689 million",
"Country: Comoros <br>Life Expectancy: 46.472 years <br>GDP per capita: 1876.029643 $ <br>Population: 0.217378 million",
"Country: Comoros <br>Life Expectancy: 48.944 years <br>GDP per capita: 1937.577675 $ <br>Population: 0.250027 million",
"Country: Comoros <br>Life Expectancy: 50.939 years <br>GDP per capita: 1172.603047 $ <br>Population: 0.304739 million",
"Country: Comoros <br>Life Expectancy: 52.933 years <br>GDP per capita: 1267.100083 $ <br>Population: 0.348643 million",
"Country: Comoros <br>Life Expectancy: 54.926 years <br>GDP per capita: 1315.980812 $ <br>Population: 0.395114 million",
"Country: Comoros <br>Life Expectancy: 57.939 years <br>GDP per capita: 1246.90737 $ <br>Population: 0.454429 million",
"Country: Comoros <br>Life Expectancy: 60.66 years <br>GDP per capita: 1173.618235 $ <br>Population: 0.527982 million",
"Country: Comoros <br>Life Expectancy: 62.974 years <br>GDP per capita: 1075.811558 $ <br>Population: 0.614382 million",
"Country: Comoros <br>Life Expectancy: 65.152 years <br>GDP per capita: 986.1478792 $ <br>Population: 0.71096 million"
],
"y": [
1102.990936,
1211.1485480000001,
1406.648278,
1876.029643,
1937.577675,
1172.603047,
1267.100083,
1315.980812,
1246.90737,
1173.618235,
1075.811558,
986.1478792000001
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "a4c1b3"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y3",
"ysrc": "etpinard:4362:85e0c5",
"textsrc": "etpinard:4362:c66bd1",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:97c8db",
"size": [
39.143,
40.652,
42.122,
44.056000000000004,
45.989,
47.803999999999995,
47.784,
47.412,
45.548,
42.586999999999996,
44.966,
46.461999999999996
]
},
"mode": "markers",
"xaxis": "x4",
"text": [
"Country: Congo, Dem. Rep. <br>Life Expectancy: 39.143 years <br>GDP per capita: 780.5423257 $ <br>Population: 14.100005 million",
"Country: Congo, Dem. Rep. <br>Life Expectancy: 40.652 years <br>GDP per capita: 905.8602303 $ <br>Population: 15.577932 million",
"Country: Congo, Dem. Rep. <br>Life Expectancy: 42.122 years <br>GDP per capita: 896.3146335 $ <br>Population: 17.486434 million",
"Country: Congo, Dem. Rep. <br>Life Expectancy: 44.056 years <br>GDP per capita: 861.5932424 $ <br>Population: 19.941073 million",
"Country: Congo, Dem. Rep. <br>Life Expectancy: 45.989 years <br>GDP per capita: 904.8960685 $ <br>Population: 23.007669 million",
"Country: Congo, Dem. Rep. <br>Life Expectancy: 47.804 years <br>GDP per capita: 795.757282 $ <br>Population: 26.48087 million",
"Country: Congo, Dem. Rep. <br>Life Expectancy: 47.784 years <br>GDP per capita: 673.7478181 $ <br>Population: 30.646495 million",
"Country: Congo, Dem. Rep. <br>Life Expectancy: 47.412 years <br>GDP per capita: 672.774812 $ <br>Population: 35.481645 million",
"Country: Congo, Dem. Rep. <br>Life Expectancy: 45.548 years <br>GDP per capita: 457.7191807 $ <br>Population: 41.672143 million",
"Country: Congo, Dem. Rep. <br>Life Expectancy: 42.587 years <br>GDP per capita: 312.188423 $ <br>Population: 47.798986 million",
"Country: Congo, Dem. Rep. <br>Life Expectancy: 44.966 years <br>GDP per capita: 241.1658765 $ <br>Population: 55.379852 million",
"Country: Congo, Dem. Rep. <br>Life Expectancy: 46.462 years <br>GDP per capita: 277.5518587 $ <br>Population: 64.606759 million"
],
"y": [
780.5423257,
905.8602302999999,
896.3146335000001,
861.5932424,
904.8960685000001,
795.757282,
673.7478181,
672.774812,
457.7191807,
312.188423,
241.16587650000002,
277.55185869999997
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "e8756b"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y3",
"ysrc": "etpinard:4362:e349a0",
"textsrc": "etpinard:4362:1af2bd",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:d565b5",
"size": [
42.111000000000004,
45.053000000000004,
48.435,
52.04,
54.907,
55.625,
56.695,
57.47,
56.433,
52.961999999999996,
52.97,
55.321999999999996
]
},
"mode": "markers",
"xaxis": "x5",
"text": [
"Country: Congo, Rep. <br>Life Expectancy: 42.111 years <br>GDP per capita: 2125.621418 $ <br>Population: 0.854885 million",
"Country: Congo, Rep. <br>Life Expectancy: 45.053 years <br>GDP per capita: 2315.056572 $ <br>Population: 0.940458 million",
"Country: Congo, Rep. <br>Life Expectancy: 48.435 years <br>GDP per capita: 2464.783157 $ <br>Population: 1.047924 million",
"Country: Congo, Rep. <br>Life Expectancy: 52.04 years <br>GDP per capita: 2677.939642 $ <br>Population: 1.17976 million",
"Country: Congo, Rep. <br>Life Expectancy: 54.907 years <br>GDP per capita: 3213.152683 $ <br>Population: 1.340458 million",
"Country: Congo, Rep. <br>Life Expectancy: 55.625 years <br>GDP per capita: 3259.178978 $ <br>Population: 1.536769 million",
"Country: Congo, Rep. <br>Life Expectancy: 56.695 years <br>GDP per capita: 4879.507522 $ <br>Population: 1.774735 million",
"Country: Congo, Rep. <br>Life Expectancy: 57.47 years <br>GDP per capita: 4201.194937 $ <br>Population: 2.064095 million",
"Country: Congo, Rep. <br>Life Expectancy: 56.433 years <br>GDP per capita: 4016.239529 $ <br>Population: 2.409073 million",
"Country: Congo, Rep. <br>Life Expectancy: 52.962 years <br>GDP per capita: 3484.164376 $ <br>Population: 2.800947 million",
"Country: Congo, Rep. <br>Life Expectancy: 52.97 years <br>GDP per capita: 3484.06197 $ <br>Population: 3.328795 million",
"Country: Congo, Rep. <br>Life Expectancy: 55.322 years <br>GDP per capita: 3632.557798 $ <br>Population: 3.80061 million"
],
"y": [
2125.621418,
2315.056572,
2464.783157,
2677.9396420000003,
3213.152683,
3259.178978,
4879.507522,
4201.194936999999,
4016.239529,
3484.1643759999997,
3484.06197,
3632.557798
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "841144"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y3",
"ysrc": "etpinard:4362:401324",
"textsrc": "etpinard:4362:11f86e",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:25fdde",
"size": [
57.206,
60.026,
62.842,
65.42399999999999,
67.84899999999999,
70.75,
73.45,
74.752,
75.71300000000001,
77.26,
78.123,
78.782
]
},
"mode": "markers",
"xaxis": "x6",
"text": [
"Country: Costa Rica <br>Life Expectancy: 57.206 years <br>GDP per capita: 2627.009471 $ <br>Population: 0.926317 million",
"Country: Costa Rica <br>Life Expectancy: 60.026 years <br>GDP per capita: 2990.010802 $ <br>Population: 1.1123 million",
"Country: Costa Rica <br>Life Expectancy: 62.842 years <br>GDP per capita: 3460.937025 $ <br>Population: 1.345187 million",
"Country: Costa Rica <br>Life Expectancy: 65.424 years <br>GDP per capita: 4161.727834 $ <br>Population: 1.588717 million",
"Country: Costa Rica <br>Life Expectancy: 67.849 years <br>GDP per capita: 5118.146939 $ <br>Population: 1.834796 million",
"Country: Costa Rica <br>Life Expectancy: 70.75 years <br>GDP per capita: 5926.876967 $ <br>Population: 2.108457 million",
"Country: Costa Rica <br>Life Expectancy: 73.45 years <br>GDP per capita: 5262.734751 $ <br>Population: 2.424367 million",
"Country: Costa Rica <br>Life Expectancy: 74.752 years <br>GDP per capita: 5629.915318 $ <br>Population: 2.799811 million",
"Country: Costa Rica <br>Life Expectancy: 75.713 years <br>GDP per capita: 6160.416317 $ <br>Population: 3.173216 million",
"Country: Costa Rica <br>Life Expectancy: 77.26 years <br>GDP per capita: 6677.045314 $ <br>Population: 3.518107 million",
"Country: Costa Rica <br>Life Expectancy: 78.123 years <br>GDP per capita: 7723.447195 $ <br>Population: 3.834934 million",
"Country: Costa Rica <br>Life Expectancy: 78.782 years <br>GDP per capita: 9645.06142 $ <br>Population: 4.133884 million"
],
"y": [
2627.0094710000003,
2990.010802,
3460.937025,
4161.727834,
5118.146939,
5926.876967,
5262.734751,
5629.915318,
6160.416317,
6677.045314,
7723.447195000001,
9645.06142
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "1289ae"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y3",
"ysrc": "etpinard:4362:9ff675",
"textsrc": "etpinard:4362:a420e3",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:59fe3d",
"size": [
40.477,
42.468999999999994,
44.93,
47.35,
49.801,
52.373999999999995,
53.983000000000004,
54.655,
52.044,
47.99100000000001,
46.832,
48.328
]
},
"mode": "markers",
"xaxis": "x7",
"text": [
"Country: Cote d'Ivoire <br>Life Expectancy: 40.477 years <br>GDP per capita: 1388.594732 $ <br>Population: 2.977019 million",
"Country: Cote d'Ivoire <br>Life Expectancy: 42.469 years <br>GDP per capita: 1500.895925 $ <br>Population: 3.3 million",
"Country: Cote d'Ivoire <br>Life Expectancy: 44.93 years <br>GDP per capita: 1728.869428 $ <br>Population: 3.832408 million",
"Country: Cote d'Ivoire <br>Life Expectancy: 47.35 years <br>GDP per capita: 2052.050473 $ <br>Population: 4.74487 million",
"Country: Cote d'Ivoire <br>Life Expectancy: 49.801 years <br>GDP per capita: 2378.201111 $ <br>Population: 6.071696 million",
"Country: Cote d'Ivoire <br>Life Expectancy: 52.374 years <br>GDP per capita: 2517.736547 $ <br>Population: 7.459574 million",
"Country: Cote d'Ivoire <br>Life Expectancy: 53.983 years <br>GDP per capita: 2602.710169 $ <br>Population: 9.025951 million",
"Country: Cote d'Ivoire <br>Life Expectancy: 54.655 years <br>GDP per capita: 2156.956069 $ <br>Population: 10.761098 million",
"Country: Cote d'Ivoire <br>Life Expectancy: 52.044 years <br>GDP per capita: 1648.073791 $ <br>Population: 12.772596 million",
"Country: Cote d'Ivoire <br>Life Expectancy: 47.991 years <br>GDP per capita: 1786.265407 $ <br>Population: 14.625967 million",
"Country: Cote d'Ivoire <br>Life Expectancy: 46.832 years <br>GDP per capita: 1648.800823 $ <br>Population: 16.252726 million",
"Country: Cote d'Ivoire <br>Life Expectancy: 48.328 years <br>GDP per capita: 1544.750112 $ <br>Population: 18.013409 million"
],
"y": [
1388.594732,
1500.895925,
1728.8694280000002,
2052.0504730000002,
2378.201111,
2517.736547,
2602.710169,
2156.9560690000003,
1648.073791,
1786.265407,
1648.800823,
1544.750112
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "bcd4c9"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y3",
"ysrc": "etpinard:4362:6319a4",
"textsrc": "etpinard:4362:849966",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:f277d3",
"size": [
61.21,
64.77,
67.13,
68.5,
69.61,
70.64,
70.46,
71.52,
72.527,
73.68,
74.876,
75.748
]
},
"mode": "markers",
"xaxis": "x8",
"text": [
"Country: Croatia <br>Life Expectancy: 61.21 years <br>GDP per capita: 3119.23652 $ <br>Population: 3.882229 million",
"Country: Croatia <br>Life Expectancy: 64.77 years <br>GDP per capita: 4338.231617 $ <br>Population: 3.991242 million",
"Country: Croatia <br>Life Expectancy: 67.13 years <br>GDP per capita: 5477.890018 $ <br>Population: 4.076557 million",
"Country: Croatia <br>Life Expectancy: 68.5 years <br>GDP per capita: 6960.297861 $ <br>Population: 4.174366 million",
"Country: Croatia <br>Life Expectancy: 69.61 years <br>GDP per capita: 9164.090127 $ <br>Population: 4.22531 million",
"Country: Croatia <br>Life Expectancy: 70.64 years <br>GDP per capita: 11305.38517 $ <br>Population: 4.318673 million",
"Country: Croatia <br>Life Expectancy: 70.46 years <br>GDP per capita: 13221.82184 $ <br>Population: 4.413368 million",
"Country: Croatia <br>Life Expectancy: 71.52 years <br>GDP per capita: 13822.58394 $ <br>Population: 4.48431 million",
"Country: Croatia <br>Life Expectancy: 72.527 years <br>GDP per capita: 8447.794873 $ <br>Population: 4.494013 million",
"Country: Croatia <br>Life Expectancy: 73.68 years <br>GDP per capita: 9875.604515 $ <br>Population: 4.444595 million",
"Country: Croatia <br>Life Expectancy: 74.876 years <br>GDP per capita: 11628.38895 $ <br>Population: 4.48102 million",
"Country: Croatia <br>Life Expectancy: 75.748 years <br>GDP per capita: 14619.22272 $ <br>Population: 4.493312 million"
],
"y": [
3119.23652,
4338.231617,
5477.890018,
6960.297861,
9164.090127,
11305.38517,
13221.82184,
13822.58394,
8447.794873,
9875.604515,
11628.38895,
14619.222719999998
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "e32494"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y3",
"ysrc": "etpinard:4362:a17fc5",
"textsrc": "etpinard:4362:08e625",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:ba083d",
"size": [
59.42100000000001,
62.325,
65.24600000000001,
68.29,
70.723,
72.649,
73.717,
74.17399999999999,
74.414,
76.15100000000001,
77.158,
78.273
]
},
"mode": "markers",
"xaxis": "x9",
"text": [
"Country: Cuba <br>Life Expectancy: 59.421 years <br>GDP per capita: 5586.53878 $ <br>Population: 6.007797 million",
"Country: Cuba <br>Life Expectancy: 62.325 years <br>GDP per capita: 6092.174359 $ <br>Population: 6.640752 million",
"Country: Cuba <br>Life Expectancy: 65.246 years <br>GDP per capita: 5180.75591 $ <br>Population: 7.254373 million",
"Country: Cuba <br>Life Expectancy: 68.29 years <br>GDP per capita: 5690.268015 $ <br>Population: 8.139332 million",
"Country: Cuba <br>Life Expectancy: 70.723 years <br>GDP per capita: 5305.445256 $ <br>Population: 8.831348 million",
"Country: Cuba <br>Life Expectancy: 72.649 years <br>GDP per capita: 6380.494966 $ <br>Population: 9.537988 million",
"Country: Cuba <br>Life Expectancy: 73.717 years <br>GDP per capita: 7316.918107 $ <br>Population: 9.789224 million",
"Country: Cuba <br>Life Expectancy: 74.174 years <br>GDP per capita: 7532.924763 $ <br>Population: 10.239839 million",
"Country: Cuba <br>Life Expectancy: 74.414 years <br>GDP per capita: 5592.843963 $ <br>Population: 10.72326 million",
"Country: Cuba <br>Life Expectancy: 76.151 years <br>GDP per capita: 5431.990415 $ <br>Population: 10.983007 million",
"Country: Cuba <br>Life Expectancy: 77.158 years <br>GDP per capita: 6340.646683 $ <br>Population: 11.226999 million",
"Country: Cuba <br>Life Expectancy: 78.273 years <br>GDP per capita: 8948.102923 $ <br>Population: 11.416987 million"
],
"y": [
5586.53878,
6092.174359000001,
5180.75591,
5690.268015,
5305.445256,
6380.494965999999,
7316.9181069999995,
7532.924762999999,
5592.843963,
5431.990415,
6340.646683,
8948.102923
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "b335c7"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y3",
"ysrc": "etpinard:4362:7b6860",
"textsrc": "etpinard:4362:b2c556",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:20d133",
"size": [
66.87,
69.03,
69.9,
70.38,
70.29,
70.71,
70.96,
71.58,
72.4,
74.01,
75.51,
76.486
]
},
"mode": "markers",
"xaxis": "x10",
"text": [
"Country: Czech Republic <br>Life Expectancy: 66.87 years <br>GDP per capita: 6876.14025 $ <br>Population: 9.125183 million",
"Country: Czech Republic <br>Life Expectancy: 69.03 years <br>GDP per capita: 8256.343918 $ <br>Population: 9.513758 million",
"Country: Czech Republic <br>Life Expectancy: 69.9 years <br>GDP per capita: 10136.86713 $ <br>Population: 9.620282 million",
"Country: Czech Republic <br>Life Expectancy: 70.38 years <br>GDP per capita: 11399.44489 $ <br>Population: 9.835109 million",
"Country: Czech Republic <br>Life Expectancy: 70.29 years <br>GDP per capita: 13108.4536 $ <br>Population: 9.862158 million",
"Country: Czech Republic <br>Life Expectancy: 70.71 years <br>GDP per capita: 14800.16062 $ <br>Population: 10.161915 million",
"Country: Czech Republic <br>Life Expectancy: 70.96 years <br>GDP per capita: 15377.22855 $ <br>Population: 10.303704 million",
"Country: Czech Republic <br>Life Expectancy: 71.58 years <br>GDP per capita: 16310.4434 $ <br>Population: 10.311597 million",
"Country: Czech Republic <br>Life Expectancy: 72.4 years <br>GDP per capita: 14297.02122 $ <br>Population: 10.315702 million",
"Country: Czech Republic <br>Life Expectancy: 74.01 years <br>GDP per capita: 16048.51424 $ <br>Population: 10.300707 million",
"Country: Czech Republic <br>Life Expectancy: 75.51 years <br>GDP per capita: 17596.21022 $ <br>Population: 10.256295 million",
"Country: Czech Republic <br>Life Expectancy: 76.486 years <br>GDP per capita: 22833.30851 $ <br>Population: 10.228744 million"
],
"y": [
6876.14025,
8256.343918,
10136.86713,
11399.44489,
13108.4536,
14800.160619999999,
15377.22855,
16310.4434,
14297.021219999999,
16048.51424,
17596.210219999997,
22833.30851
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "3c2144"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y3",
"ysrc": "etpinard:4362:defeae",
"textsrc": "etpinard:4362:ae6687",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:78de20",
"size": [
70.78,
71.81,
72.35,
72.96,
73.47,
74.69,
74.63,
74.8,
75.33,
76.11,
77.18,
78.332
]
},
"mode": "markers",
"xaxis": "x11",
"text": [
"Country: Denmark <br>Life Expectancy: 70.78 years <br>GDP per capita: 9692.385245 $ <br>Population: 4.334 million",
"Country: Denmark <br>Life Expectancy: 71.81 years <br>GDP per capita: 11099.65935 $ <br>Population: 4.487831 million",
"Country: Denmark <br>Life Expectancy: 72.35 years <br>GDP per capita: 13583.31351 $ <br>Population: 4.646899 million",
"Country: Denmark <br>Life Expectancy: 72.96 years <br>GDP per capita: 15937.21123 $ <br>Population: 4.8388 million",
"Country: Denmark <br>Life Expectancy: 73.47 years <br>GDP per capita: 18866.20721 $ <br>Population: 4.991596 million",
"Country: Denmark <br>Life Expectancy: 74.69 years <br>GDP per capita: 20422.9015 $ <br>Population: 5.088419 million",
"Country: Denmark <br>Life Expectancy: 74.63 years <br>GDP per capita: 21688.04048 $ <br>Population: 5.11781 million",
"Country: Denmark <br>Life Expectancy: 74.8 years <br>GDP per capita: 25116.17581 $ <br>Population: 5.127024 million",
"Country: Denmark <br>Life Expectancy: 75.33 years <br>GDP per capita: 26406.73985 $ <br>Population: 5.171393 million",
"Country: Denmark <br>Life Expectancy: 76.11 years <br>GDP per capita: 29804.34567 $ <br>Population: 5.283663 million",
"Country: Denmark <br>Life Expectancy: 77.18 years <br>GDP per capita: 32166.50006 $ <br>Population: 5.374693 million",
"Country: Denmark <br>Life Expectancy: 78.332 years <br>GDP per capita: 35278.41874 $ <br>Population: 5.46812 million"
],
"y": [
9692.385245,
11099.65935,
13583.31351,
15937.21123,
18866.20721,
20422.9015,
21688.04048,
25116.17581,
26406.73985,
29804.34567,
32166.500060000002,
35278.41874
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "5be433"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y3",
"ysrc": "etpinard:4362:2f874d",
"textsrc": "etpinard:4362:c2fea5",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:8615ce",
"size": [
34.812,
37.328,
39.693000000000005,
42.074,
44.36600000000001,
46.519,
48.812,
50.04,
51.604,
53.157,
53.373000000000005,
54.791000000000004
]
},
"mode": "markers",
"xaxis": "x12",
"text": [
"Country: Djibouti <br>Life Expectancy: 34.812 years <br>GDP per capita: 2669.529475 $ <br>Population: 0.063149 million",
"Country: Djibouti <br>Life Expectancy: 37.328 years <br>GDP per capita: 2864.969076 $ <br>Population: 0.071851 million",
"Country: Djibouti <br>Life Expectancy: 39.693 years <br>GDP per capita: 3020.989263 $ <br>Population: 0.089898 million",
"Country: Djibouti <br>Life Expectancy: 42.074 years <br>GDP per capita: 3020.050513 $ <br>Population: 0.127617 million",
"Country: Djibouti <br>Life Expectancy: 44.366 years <br>GDP per capita: 3694.212352 $ <br>Population: 0.178848 million",
"Country: Djibouti <br>Life Expectancy: 46.519 years <br>GDP per capita: 3081.761022 $ <br>Population: 0.228694 million",
"Country: Djibouti <br>Life Expectancy: 48.812 years <br>GDP per capita: 2879.468067 $ <br>Population: 0.305991 million",
"Country: Djibouti <br>Life Expectancy: 50.04 years <br>GDP per capita: 2880.102568 $ <br>Population: 0.311025 million",
"Country: Djibouti <br>Life Expectancy: 51.604 years <br>GDP per capita: 2377.156192 $ <br>Population: 0.384156 million",
"Country: Djibouti <br>Life Expectancy: 53.157 years <br>GDP per capita: 1895.016984 $ <br>Population: 0.417908 million",
"Country: Djibouti <br>Life Expectancy: 53.373 years <br>GDP per capita: 1908.260867 $ <br>Population: 0.447416 million",
"Country: Djibouti <br>Life Expectancy: 54.791 years <br>GDP per capita: 2082.481567 $ <br>Population: 0.496374 million"
],
"y": [
2669.529475,
2864.9690760000003,
3020.989263,
3020.0505129999997,
3694.2123520000005,
3081.7610219999997,
2879.4680670000002,
2880.102568,
2377.1561920000004,
1895.016984,
1908.2608670000002,
2082.4815670000003
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "31ca13"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y4",
"ysrc": "etpinard:4362:62b169",
"textsrc": "etpinard:4362:bfb867",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:83f709",
"size": [
45.928000000000004,
49.828,
53.458999999999996,
56.751000000000005,
59.631,
61.788000000000004,
63.727,
66.046,
68.457,
69.957,
70.847,
72.235
]
},
"mode": "markers",
"xaxis": "x",
"text": [
"Country: Dominican Republic <br>Life Expectancy: 45.928 years <br>GDP per capita: 1397.717137 $ <br>Population: 2.491346 million",
"Country: Dominican Republic <br>Life Expectancy: 49.828 years <br>GDP per capita: 1544.402995 $ <br>Population: 2.923186 million",
"Country: Dominican Republic <br>Life Expectancy: 53.459 years <br>GDP per capita: 1662.137359 $ <br>Population: 3.453434 million",
"Country: Dominican Republic <br>Life Expectancy: 56.751 years <br>GDP per capita: 1653.723003 $ <br>Population: 4.049146 million",
"Country: Dominican Republic <br>Life Expectancy: 59.631 years <br>GDP per capita: 2189.874499 $ <br>Population: 4.671329 million",
"Country: Dominican Republic <br>Life Expectancy: 61.788 years <br>GDP per capita: 2681.9889 $ <br>Population: 5.3028 million",
"Country: Dominican Republic <br>Life Expectancy: 63.727 years <br>GDP per capita: 2861.092386 $ <br>Population: 5.968349 million",
"Country: Dominican Republic <br>Life Expectancy: 66.046 years <br>GDP per capita: 2899.842175 $ <br>Population: 6.655297 million",
"Country: Dominican Republic <br>Life Expectancy: 68.457 years <br>GDP per capita: 3044.214214 $ <br>Population: 7.351181 million",
"Country: Dominican Republic <br>Life Expectancy: 69.957 years <br>GDP per capita: 3614.101285 $ <br>Population: 7.992357 million",
"Country: Dominican Republic <br>Life Expectancy: 70.847 years <br>GDP per capita: 4563.808154 $ <br>Population: 8.650322 million",
"Country: Dominican Republic <br>Life Expectancy: 72.235 years <br>GDP per capita: 6025.374752 $ <br>Population: 9.319622 million"
],
"y": [
1397.7171369999999,
1544.402995,
1662.137359,
1653.7230029999998,
2189.874499,
2681.9889,
2861.092386,
2899.842175,
3044.214214,
3614.101285,
4563.808154,
6025.374752000001
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "9981d9"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y4",
"ysrc": "etpinard:4362:0531e1",
"textsrc": "etpinard:4362:0a73d9",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:30c94b",
"size": [
48.357,
51.356,
54.64,
56.678000000000004,
58.79600000000001,
61.31,
64.342,
67.23100000000001,
69.613,
72.312,
74.173,
74.994
]
},
"mode": "markers",
"xaxis": "x2",
"text": [
"Country: Ecuador <br>Life Expectancy: 48.357 years <br>GDP per capita: 3522.110717 $ <br>Population: 3.548753 million",
"Country: Ecuador <br>Life Expectancy: 51.356 years <br>GDP per capita: 3780.546651 $ <br>Population: 4.058385 million",
"Country: Ecuador <br>Life Expectancy: 54.64 years <br>GDP per capita: 4086.114078 $ <br>Population: 4.681707 million",
"Country: Ecuador <br>Life Expectancy: 56.678 years <br>GDP per capita: 4579.074215 $ <br>Population: 5.432424 million",
"Country: Ecuador <br>Life Expectancy: 58.796 years <br>GDP per capita: 5280.99471 $ <br>Population: 6.298651 million",
"Country: Ecuador <br>Life Expectancy: 61.31 years <br>GDP per capita: 6679.62326 $ <br>Population: 7.278866 million",
"Country: Ecuador <br>Life Expectancy: 64.342 years <br>GDP per capita: 7213.791267 $ <br>Population: 8.36585 million",
"Country: Ecuador <br>Life Expectancy: 67.231 years <br>GDP per capita: 6481.776993 $ <br>Population: 9.545158 million",
"Country: Ecuador <br>Life Expectancy: 69.613 years <br>GDP per capita: 7103.702595 $ <br>Population: 10.748394 million",
"Country: Ecuador <br>Life Expectancy: 72.312 years <br>GDP per capita: 7429.455877 $ <br>Population: 11.911819 million",
"Country: Ecuador <br>Life Expectancy: 74.173 years <br>GDP per capita: 5773.044512 $ <br>Population: 12.921234 million",
"Country: Ecuador <br>Life Expectancy: 74.994 years <br>GDP per capita: 6873.262326 $ <br>Population: 13.75568 million"
],
"y": [
3522.110717,
3780.5466509999997,
4086.114078,
4579.074215,
5280.99471,
6679.62326,
7213.7912670000005,
6481.776993,
7103.702595000001,
7429.455876999999,
5773.0445119999995,
6873.262326000001
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "06f53d"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y4",
"ysrc": "etpinard:4362:004e16",
"textsrc": "etpinard:4362:fd6268",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:79ca40",
"size": [
41.893,
44.443999999999996,
46.992,
49.293,
51.137,
53.318999999999996,
56.006,
59.797,
63.674,
67.217,
69.806,
71.33800000000001
]
},
"mode": "markers",
"xaxis": "x3",
"text": [
"Country: Egypt <br>Life Expectancy: 41.893 years <br>GDP per capita: 1418.822445 $ <br>Population: 22.223309 million",
"Country: Egypt <br>Life Expectancy: 44.444 years <br>GDP per capita: 1458.915272 $ <br>Population: 25.009741 million",
"Country: Egypt <br>Life Expectancy: 46.992 years <br>GDP per capita: 1693.335853 $ <br>Population: 28.173309 million",
"Country: Egypt <br>Life Expectancy: 49.293 years <br>GDP per capita: 1814.880728 $ <br>Population: 31.681188 million",
"Country: Egypt <br>Life Expectancy: 51.137 years <br>GDP per capita: 2024.008147 $ <br>Population: 34.807417 million",
"Country: Egypt <br>Life Expectancy: 53.319 years <br>GDP per capita: 2785.493582 $ <br>Population: 38.783863 million",
"Country: Egypt <br>Life Expectancy: 56.006 years <br>GDP per capita: 3503.729636 $ <br>Population: 45.681811 million",
"Country: Egypt <br>Life Expectancy: 59.797 years <br>GDP per capita: 3885.46071 $ <br>Population: 52.799062 million",
"Country: Egypt <br>Life Expectancy: 63.674 years <br>GDP per capita: 3794.755195 $ <br>Population: 59.402198 million",
"Country: Egypt <br>Life Expectancy: 67.217 years <br>GDP per capita: 4173.181797 $ <br>Population: 66.134291 million",
"Country: Egypt <br>Life Expectancy: 69.806 years <br>GDP per capita: 4754.604414 $ <br>Population: 73.312559 million",
"Country: Egypt <br>Life Expectancy: 71.338 years <br>GDP per capita: 5581.180998 $ <br>Population: 80.264543 million"
],
"y": [
1418.822445,
1458.915272,
1693.335853,
1814.880728,
2024.0081469999998,
2785.493582,
3503.729636,
3885.4607100000003,
3794.755195,
4173.181797,
4754.604414,
5581.180998
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "07da0b"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y4",
"ysrc": "etpinard:4362:1f2290",
"textsrc": "etpinard:4362:02789a",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:43b5e0",
"size": [
45.262,
48.57,
52.306999999999995,
55.855,
58.207,
56.696000000000005,
56.604,
63.153999999999996,
66.798,
69.535,
70.734,
71.878
]
},
"mode": "markers",
"xaxis": "x4",
"text": [
"Country: El Salvador <br>Life Expectancy: 45.262 years <br>GDP per capita: 3048.3029 $ <br>Population: 2.042865 million",
"Country: El Salvador <br>Life Expectancy: 48.57 years <br>GDP per capita: 3421.523218 $ <br>Population: 2.355805 million",
"Country: El Salvador <br>Life Expectancy: 52.307 years <br>GDP per capita: 3776.803627 $ <br>Population: 2.747687 million",
"Country: El Salvador <br>Life Expectancy: 55.855 years <br>GDP per capita: 4358.595393 $ <br>Population: 3.232927 million",
"Country: El Salvador <br>Life Expectancy: 58.207 years <br>GDP per capita: 4520.246008 $ <br>Population: 3.790903 million",
"Country: El Salvador <br>Life Expectancy: 56.696 years <br>GDP per capita: 5138.922374 $ <br>Population: 4.282586 million",
"Country: El Salvador <br>Life Expectancy: 56.604 years <br>GDP per capita: 4098.344175 $ <br>Population: 4.474873 million",
"Country: El Salvador <br>Life Expectancy: 63.154 years <br>GDP per capita: 4140.442097 $ <br>Population: 4.842194 million",
"Country: El Salvador <br>Life Expectancy: 66.798 years <br>GDP per capita: 4444.2317 $ <br>Population: 5.274649 million",
"Country: El Salvador <br>Life Expectancy: 69.535 years <br>GDP per capita: 5154.825496 $ <br>Population: 5.783439 million",
"Country: El Salvador <br>Life Expectancy: 70.734 years <br>GDP per capita: 5351.568666 $ <br>Population: 6.353681 million",
"Country: El Salvador <br>Life Expectancy: 71.878 years <br>GDP per capita: 5728.353514 $ <br>Population: 6.939688 million"
],
"y": [
3048.3029,
3421.523218,
3776.8036270000002,
4358.595393,
4520.246008,
5138.922374,
4098.344175,
4140.442097,
4444.2317,
5154.825496,
5351.568665999999,
5728.353514
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "21f374"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y4",
"ysrc": "etpinard:4362:0ba280",
"textsrc": "etpinard:4362:4c53f4",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:ed668a",
"size": [
34.482,
35.983000000000004,
37.485,
38.986999999999995,
40.516,
42.023999999999994,
43.662,
45.663999999999994,
47.545,
48.245,
49.348,
51.57899999999999
]
},
"mode": "markers",
"xaxis": "x5",
"text": [
"Country: Equatorial Guinea <br>Life Expectancy: 34.482 years <br>GDP per capita: 375.6431231 $ <br>Population: 0.216964 million",
"Country: Equatorial Guinea <br>Life Expectancy: 35.983 years <br>GDP per capita: 426.0964081 $ <br>Population: 0.232922 million",
"Country: Equatorial Guinea <br>Life Expectancy: 37.485 years <br>GDP per capita: 582.8419714 $ <br>Population: 0.24922 million",
"Country: Equatorial Guinea <br>Life Expectancy: 38.987 years <br>GDP per capita: 915.5960025 $ <br>Population: 0.259864 million",
"Country: Equatorial Guinea <br>Life Expectancy: 40.516 years <br>GDP per capita: 672.4122571 $ <br>Population: 0.277603 million",
"Country: Equatorial Guinea <br>Life Expectancy: 42.024 years <br>GDP per capita: 958.5668124 $ <br>Population: 0.192675 million",
"Country: Equatorial Guinea <br>Life Expectancy: 43.662 years <br>GDP per capita: 927.8253427 $ <br>Population: 0.285483 million",
"Country: Equatorial Guinea <br>Life Expectancy: 45.664 years <br>GDP per capita: 966.8968149 $ <br>Population: 0.341244 million",
"Country: Equatorial Guinea <br>Life Expectancy: 47.545 years <br>GDP per capita: 1132.055034 $ <br>Population: 0.387838 million",
"Country: Equatorial Guinea <br>Life Expectancy: 48.245 years <br>GDP per capita: 2814.480755 $ <br>Population: 0.439971 million",
"Country: Equatorial Guinea <br>Life Expectancy: 49.348 years <br>GDP per capita: 7703.4959 $ <br>Population: 0.495627 million",
"Country: Equatorial Guinea <br>Life Expectancy: 51.579 years <br>GDP per capita: 12154.08975 $ <br>Population: 0.551201 million"
],
"y": [
375.6431231,
426.0964081,
582.8419713999999,
915.5960025,
672.4122571,
958.5668124,
927.8253427000001,
966.8968149,
1132.055034,
2814.480755,
7703.4959,
12154.08975
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "c2ca5c"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y4",
"ysrc": "etpinard:4362:0067bb",
"textsrc": "etpinard:4362:28be73",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:9a8e81",
"size": [
35.928000000000004,
38.047,
40.158,
42.18899999999999,
44.141999999999996,
44.535,
43.89,
46.453,
49.99100000000001,
53.378,
55.24,
58.04
]
},
"mode": "markers",
"xaxis": "x6",
"text": [
"Country: Eritrea <br>Life Expectancy: 35.928 years <br>GDP per capita: 328.9405571 $ <br>Population: 1.43876 million",
"Country: Eritrea <br>Life Expectancy: 38.047 years <br>GDP per capita: 344.1618859 $ <br>Population: 1.542611 million",
"Country: Eritrea <br>Life Expectancy: 40.158 years <br>GDP per capita: 380.9958433 $ <br>Population: 1.666618 million",
"Country: Eritrea <br>Life Expectancy: 42.189 years <br>GDP per capita: 468.7949699 $ <br>Population: 1.820319 million",
"Country: Eritrea <br>Life Expectancy: 44.142 years <br>GDP per capita: 514.3242082 $ <br>Population: 2.260187 million",
"Country: Eritrea <br>Life Expectancy: 44.535 years <br>GDP per capita: 505.7538077 $ <br>Population: 2.512642 million",
"Country: Eritrea <br>Life Expectancy: 43.89 years <br>GDP per capita: 524.8758493 $ <br>Population: 2.637297 million",
"Country: Eritrea <br>Life Expectancy: 46.453 years <br>GDP per capita: 521.1341333 $ <br>Population: 2.915959 million",
"Country: Eritrea <br>Life Expectancy: 49.991 years <br>GDP per capita: 582.8585102 $ <br>Population: 3.66844 million",
"Country: Eritrea <br>Life Expectancy: 53.378 years <br>GDP per capita: 913.47079 $ <br>Population: 4.058319 million",
"Country: Eritrea <br>Life Expectancy: 55.24 years <br>GDP per capita: 765.3500015 $ <br>Population: 4.414865 million",
"Country: Eritrea <br>Life Expectancy: 58.04 years <br>GDP per capita: 641.3695236 $ <br>Population: 4.906585 million"
],
"y": [
328.94055710000004,
344.16188589999996,
380.99584330000005,
468.7949699,
514.3242081999999,
505.7538077,
524.8758493,
521.1341333,
582.8585102000001,
913.4707900000001,
765.3500015,
641.3695236000001
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "79a7d8"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y4",
"ysrc": "etpinard:4362:6ea7a6",
"textsrc": "etpinard:4362:261f16",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:e412b8",
"size": [
34.078,
36.667,
40.059,
42.115,
43.515,
44.51,
44.916000000000004,
46.684,
48.091,
49.402,
50.725,
52.946999999999996
]
},
"mode": "markers",
"xaxis": "x7",
"text": [
"Country: Ethiopia <br>Life Expectancy: 34.078 years <br>GDP per capita: 362.1462796 $ <br>Population: 20.860941 million",
"Country: Ethiopia <br>Life Expectancy: 36.667 years <br>GDP per capita: 378.9041632 $ <br>Population: 22.815614 million",
"Country: Ethiopia <br>Life Expectancy: 40.059 years <br>GDP per capita: 419.4564161 $ <br>Population: 25.145372 million",
"Country: Ethiopia <br>Life Expectancy: 42.115 years <br>GDP per capita: 516.1186438 $ <br>Population: 27.860297 million",
"Country: Ethiopia <br>Life Expectancy: 43.515 years <br>GDP per capita: 566.2439442 $ <br>Population: 30.770372 million",
"Country: Ethiopia <br>Life Expectancy: 44.51 years <br>GDP per capita: 556.8083834 $ <br>Population: 34.617799 million",
"Country: Ethiopia <br>Life Expectancy: 44.916 years <br>GDP per capita: 577.8607471 $ <br>Population: 38.111756 million",
"Country: Ethiopia <br>Life Expectancy: 46.684 years <br>GDP per capita: 573.7413142 $ <br>Population: 42.99953 million",
"Country: Ethiopia <br>Life Expectancy: 48.091 years <br>GDP per capita: 421.3534653 $ <br>Population: 52.088559 million",
"Country: Ethiopia <br>Life Expectancy: 49.402 years <br>GDP per capita: 515.8894013 $ <br>Population: 59.861301 million",
"Country: Ethiopia <br>Life Expectancy: 50.725 years <br>GDP per capita: 530.0535319 $ <br>Population: 67.946797 million",
"Country: Ethiopia <br>Life Expectancy: 52.947 years <br>GDP per capita: 690.8055759 $ <br>Population: 76.511887 million"
],
"y": [
362.1462796,
378.90416319999997,
419.4564161,
516.1186438,
566.2439442000001,
556.8083834,
577.8607471,
573.7413142000001,
421.3534653,
515.8894013,
530.0535319,
690.8055759
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "546df1"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y4",
"ysrc": "etpinard:4362:a408b0",
"textsrc": "etpinard:4362:f92765",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:c4f17e",
"size": [
66.55,
67.49,
68.75,
69.83,
70.87,
72.52,
74.55,
74.83,
75.7,
77.13,
78.37,
79.313
]
},
"mode": "markers",
"xaxis": "x8",
"text": [
"Country: Finland <br>Life Expectancy: 66.55 years <br>GDP per capita: 6424.519071 $ <br>Population: 4.0905 million",
"Country: Finland <br>Life Expectancy: 67.49 years <br>GDP per capita: 7545.415386 $ <br>Population: 4.324 million",
"Country: Finland <br>Life Expectancy: 68.75 years <br>GDP per capita: 9371.842561 $ <br>Population: 4.491443 million",
"Country: Finland <br>Life Expectancy: 69.83 years <br>GDP per capita: 10921.63626 $ <br>Population: 4.605744 million",
"Country: Finland <br>Life Expectancy: 70.87 years <br>GDP per capita: 14358.8759 $ <br>Population: 4.639657 million",
"Country: Finland <br>Life Expectancy: 72.52 years <br>GDP per capita: 15605.42283 $ <br>Population: 4.738902 million",
"Country: Finland <br>Life Expectancy: 74.55 years <br>GDP per capita: 18533.15761 $ <br>Population: 4.826933 million",
"Country: Finland <br>Life Expectancy: 74.83 years <br>GDP per capita: 21141.01223 $ <br>Population: 4.931729 million",
"Country: Finland <br>Life Expectancy: 75.7 years <br>GDP per capita: 20647.16499 $ <br>Population: 5.041039 million",
"Country: Finland <br>Life Expectancy: 77.13 years <br>GDP per capita: 23723.9502 $ <br>Population: 5.134406 million",
"Country: Finland <br>Life Expectancy: 78.37 years <br>GDP per capita: 28204.59057 $ <br>Population: 5.193039 million",
"Country: Finland <br>Life Expectancy: 79.313 years <br>GDP per capita: 33207.0844 $ <br>Population: 5.23846 million"
],
"y": [
6424.519071,
7545.415386,
9371.842561,
10921.63626,
14358.8759,
15605.422830000001,
18533.15761,
21141.01223,
20647.16499,
23723.9502,
28204.59057,
33207.0844
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "ccb027"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y4",
"ysrc": "etpinard:4362:4c47bf",
"textsrc": "etpinard:4362:6bed66",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:eab225",
"size": [
67.41,
68.93,
70.51,
71.55,
72.38,
73.83,
74.89,
76.34,
77.46,
78.64,
79.59,
80.657
]
},
"mode": "markers",
"xaxis": "x9",
"text": [
"Country: France <br>Life Expectancy: 67.41 years <br>GDP per capita: 7029.809327 $ <br>Population: 42.459667 million",
"Country: France <br>Life Expectancy: 68.93 years <br>GDP per capita: 8662.834898 $ <br>Population: 44.310863 million",
"Country: France <br>Life Expectancy: 70.51 years <br>GDP per capita: 10560.48553 $ <br>Population: 47.124 million",
"Country: France <br>Life Expectancy: 71.55 years <br>GDP per capita: 12999.91766 $ <br>Population: 49.569 million",
"Country: France <br>Life Expectancy: 72.38 years <br>GDP per capita: 16107.19171 $ <br>Population: 51.732 million",
"Country: France <br>Life Expectancy: 73.83 years <br>GDP per capita: 18292.63514 $ <br>Population: 53.165019 million",
"Country: France <br>Life Expectancy: 74.89 years <br>GDP per capita: 20293.89746 $ <br>Population: 54.433565 million",
"Country: France <br>Life Expectancy: 76.34 years <br>GDP per capita: 22066.44214 $ <br>Population: 55.6301 million",
"Country: France <br>Life Expectancy: 77.46 years <br>GDP per capita: 24703.79615 $ <br>Population: 57.374179 million",
"Country: France <br>Life Expectancy: 78.64 years <br>GDP per capita: 25889.78487 $ <br>Population: 58.623428 million",
"Country: France <br>Life Expectancy: 79.59 years <br>GDP per capita: 28926.03234 $ <br>Population: 59.925035 million",
"Country: France <br>Life Expectancy: 80.657 years <br>GDP per capita: 30470.0167 $ <br>Population: 61.083916 million"
],
"y": [
7029.809327,
8662.834898000001,
10560.48553,
12999.91766,
16107.19171,
18292.635140000002,
20293.89746,
22066.44214,
24703.79615,
25889.78487,
28926.032339999998,
30470.0167
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "df0baa"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y4",
"ysrc": "etpinard:4362:23d975",
"textsrc": "etpinard:4362:e5a65e",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:d1b0e5",
"size": [
37.003,
38.999,
40.489000000000004,
44.598,
48.69,
52.79,
56.56399999999999,
60.19,
61.36600000000001,
60.461000000000006,
56.761,
56.735
]
},
"mode": "markers",
"xaxis": "x10",
"text": [
"Country: Gabon <br>Life Expectancy: 37.003 years <br>GDP per capita: 4293.476475 $ <br>Population: 0.420702 million",
"Country: Gabon <br>Life Expectancy: 38.999 years <br>GDP per capita: 4976.198099 $ <br>Population: 0.434904 million",
"Country: Gabon <br>Life Expectancy: 40.489 years <br>GDP per capita: 6631.459222 $ <br>Population: 0.455661 million",
"Country: Gabon <br>Life Expectancy: 44.598 years <br>GDP per capita: 8358.761987 $ <br>Population: 0.489004 million",
"Country: Gabon <br>Life Expectancy: 48.69 years <br>GDP per capita: 11401.94841 $ <br>Population: 0.537977 million",
"Country: Gabon <br>Life Expectancy: 52.79 years <br>GDP per capita: 21745.57328 $ <br>Population: 0.706367 million",
"Country: Gabon <br>Life Expectancy: 56.564 years <br>GDP per capita: 15113.36194 $ <br>Population: 0.753874 million",
"Country: Gabon <br>Life Expectancy: 60.19 years <br>GDP per capita: 11864.40844 $ <br>Population: 0.880397 million",
"Country: Gabon <br>Life Expectancy: 61.366 years <br>GDP per capita: 13522.15752 $ <br>Population: 0.985739 million",
"Country: Gabon <br>Life Expectancy: 60.461 years <br>GDP per capita: 14722.84188 $ <br>Population: 1.126189 million",
"Country: Gabon <br>Life Expectancy: 56.761 years <br>GDP per capita: 12521.71392 $ <br>Population: 1.299304 million",
"Country: Gabon <br>Life Expectancy: 56.735 years <br>GDP per capita: 13206.48452 $ <br>Population: 1.454867 million"
],
"y": [
4293.476475,
4976.198099,
6631.4592219999995,
8358.761987,
11401.948409999999,
21745.57328,
15113.36194,
11864.408440000001,
13522.157519999999,
14722.841880000002,
12521.71392,
13206.48452
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "c18981"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y4",
"ysrc": "etpinard:4362:4d775c",
"textsrc": "etpinard:4362:aef125",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:d1ae5e",
"size": [
30,
32.065,
33.896,
35.857,
38.308,
41.842,
45.58,
49.265,
52.644,
55.861000000000004,
58.041000000000004,
59.448
]
},
"mode": "markers",
"xaxis": "x11",
"text": [
"Country: Gambia <br>Life Expectancy: 30.0 years <br>GDP per capita: 485.2306591 $ <br>Population: 0.28432 million",
"Country: Gambia <br>Life Expectancy: 32.065 years <br>GDP per capita: 520.9267111 $ <br>Population: 0.32315 million",
"Country: Gambia <br>Life Expectancy: 33.896 years <br>GDP per capita: 599.650276 $ <br>Population: 0.37402 million",
"Country: Gambia <br>Life Expectancy: 35.857 years <br>GDP per capita: 734.7829124 $ <br>Population: 0.439593 million",
"Country: Gambia <br>Life Expectancy: 38.308 years <br>GDP per capita: 756.0868363 $ <br>Population: 0.517101 million",
"Country: Gambia <br>Life Expectancy: 41.842 years <br>GDP per capita: 884.7552507 $ <br>Population: 0.608274 million",
"Country: Gambia <br>Life Expectancy: 45.58 years <br>GDP per capita: 835.8096108 $ <br>Population: 0.715523 million",
"Country: Gambia <br>Life Expectancy: 49.265 years <br>GDP per capita: 611.6588611 $ <br>Population: 0.848406 million",
"Country: Gambia <br>Life Expectancy: 52.644 years <br>GDP per capita: 665.6244126 $ <br>Population: 1.025384 million",
"Country: Gambia <br>Life Expectancy: 55.861 years <br>GDP per capita: 653.7301704 $ <br>Population: 1.235767 million",
"Country: Gambia <br>Life Expectancy: 58.041 years <br>GDP per capita: 660.5855997 $ <br>Population: 1.457766 million",
"Country: Gambia <br>Life Expectancy: 59.448 years <br>GDP per capita: 752.7497265 $ <br>Population: 1.688359 million"
],
"y": [
485.2306591,
520.9267111,
599.650276,
734.7829124,
756.0868363,
884.7552507000001,
835.8096107999999,
611.6588611000001,
665.6244126,
653.7301704,
660.5855997,
752.7497265
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "121c99"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y4",
"ysrc": "etpinard:4362:8faea3",
"textsrc": "etpinard:4362:518748",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:0aa3f2",
"size": [
67.5,
69.1,
70.3,
70.8,
71,
72.5,
73.8,
74.847,
76.07,
77.34,
78.67,
79.406
]
},
"mode": "markers",
"xaxis": "x12",
"text": [
"Country: Germany <br>Life Expectancy: 67.5 years <br>GDP per capita: 7144.114393 $ <br>Population: 69.145952 million",
"Country: Germany <br>Life Expectancy: 69.1 years <br>GDP per capita: 10187.82665 $ <br>Population: 71.019069 million",
"Country: Germany <br>Life Expectancy: 70.3 years <br>GDP per capita: 12902.46291 $ <br>Population: 73.739117 million",
"Country: Germany <br>Life Expectancy: 70.8 years <br>GDP per capita: 14745.62561 $ <br>Population: 76.368453 million",
"Country: Germany <br>Life Expectancy: 71.0 years <br>GDP per capita: 18016.18027 $ <br>Population: 78.717088 million",
"Country: Germany <br>Life Expectancy: 72.5 years <br>GDP per capita: 20512.92123 $ <br>Population: 78.160773 million",
"Country: Germany <br>Life Expectancy: 73.8 years <br>GDP per capita: 22031.53274 $ <br>Population: 78.335266 million",
"Country: Germany <br>Life Expectancy: 74.847 years <br>GDP per capita: 24639.18566 $ <br>Population: 77.718298 million",
"Country: Germany <br>Life Expectancy: 76.07 years <br>GDP per capita: 26505.30317 $ <br>Population: 80.597764 million",
"Country: Germany <br>Life Expectancy: 77.34 years <br>GDP per capita: 27788.88416 $ <br>Population: 82.011073 million",
"Country: Germany <br>Life Expectancy: 78.67 years <br>GDP per capita: 30035.80198 $ <br>Population: 82.350671 million",
"Country: Germany <br>Life Expectancy: 79.406 years <br>GDP per capita: 32170.37442 $ <br>Population: 82.400996 million"
],
"y": [
7144.114393000001,
10187.82665,
12902.46291,
14745.62561,
18016.180269999997,
20512.92123,
22031.532740000002,
24639.18566,
26505.30317,
27788.88416,
30035.80198,
32170.37442
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "7eeec9"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y5",
"ysrc": "etpinard:4362:3b4de0",
"textsrc": "etpinard:4362:128505",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:46a585",
"size": [
43.148999999999994,
44.778999999999996,
46.452,
48.071999999999996,
49.875,
51.756,
53.744,
55.729,
57.501000000000005,
58.556000000000004,
58.453,
60.022
]
},
"mode": "markers",
"xaxis": "x",
"text": [
"Country: Ghana <br>Life Expectancy: 43.149 years <br>GDP per capita: 911.2989371 $ <br>Population: 5.581001 million",
"Country: Ghana <br>Life Expectancy: 44.779 years <br>GDP per capita: 1043.561537 $ <br>Population: 6.391288 million",
"Country: Ghana <br>Life Expectancy: 46.452 years <br>GDP per capita: 1190.041118 $ <br>Population: 7.355248 million",
"Country: Ghana <br>Life Expectancy: 48.072 years <br>GDP per capita: 1125.69716 $ <br>Population: 8.490213 million",
"Country: Ghana <br>Life Expectancy: 49.875 years <br>GDP per capita: 1178.223708 $ <br>Population: 9.35412 million",
"Country: Ghana <br>Life Expectancy: 51.756 years <br>GDP per capita: 993.2239571 $ <br>Population: 10.538093 million",
"Country: Ghana <br>Life Expectancy: 53.744 years <br>GDP per capita: 876.032569 $ <br>Population: 11.400338 million",
"Country: Ghana <br>Life Expectancy: 55.729 years <br>GDP per capita: 847.0061135 $ <br>Population: 14.168101 million",
"Country: Ghana <br>Life Expectancy: 57.501 years <br>GDP per capita: 925.060154 $ <br>Population: 16.278738 million",
"Country: Ghana <br>Life Expectancy: 58.556 years <br>GDP per capita: 1005.245812 $ <br>Population: 18.418288 million",
"Country: Ghana <br>Life Expectancy: 58.453 years <br>GDP per capita: 1111.984578 $ <br>Population: 20.550751 million",
"Country: Ghana <br>Life Expectancy: 60.022 years <br>GDP per capita: 1327.60891 $ <br>Population: 22.873338 million"
],
"y": [
911.2989371,
1043.5615369999998,
1190.0411179999999,
1125.69716,
1178.223708,
993.2239571,
876.032569,
847.0061135,
925.0601539999999,
1005.2458119999999,
1111.9845779999998,
1327.60891
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "314a8c"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y5",
"ysrc": "etpinard:4362:3779ed",
"textsrc": "etpinard:4362:bb1245",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:301fd8",
"size": [
65.86,
67.86,
69.51,
71,
72.34,
73.68,
75.24,
76.67,
77.03,
77.869,
78.256,
79.483
]
},
"mode": "markers",
"xaxis": "x2",
"text": [
"Country: Greece <br>Life Expectancy: 65.86 years <br>GDP per capita: 3530.690067 $ <br>Population: 7.73325 million",
"Country: Greece <br>Life Expectancy: 67.86 years <br>GDP per capita: 4916.299889 $ <br>Population: 8.096218 million",
"Country: Greece <br>Life Expectancy: 69.51 years <br>GDP per capita: 6017.190733 $ <br>Population: 8.448233 million",
"Country: Greece <br>Life Expectancy: 71.0 years <br>GDP per capita: 8513.097016 $ <br>Population: 8.716441 million",
"Country: Greece <br>Life Expectancy: 72.34 years <br>GDP per capita: 12724.82957 $ <br>Population: 8.888628 million",
"Country: Greece <br>Life Expectancy: 73.68 years <br>GDP per capita: 14195.52428 $ <br>Population: 9.308479 million",
"Country: Greece <br>Life Expectancy: 75.24 years <br>GDP per capita: 15268.42089 $ <br>Population: 9.78648 million",
"Country: Greece <br>Life Expectancy: 76.67 years <br>GDP per capita: 16120.52839 $ <br>Population: 9.97449 million",
"Country: Greece <br>Life Expectancy: 77.03 years <br>GDP per capita: 17541.49634 $ <br>Population: 10.325429 million",
"Country: Greece <br>Life Expectancy: 77.869 years <br>GDP per capita: 18747.69814 $ <br>Population: 10.502372 million",
"Country: Greece <br>Life Expectancy: 78.256 years <br>GDP per capita: 22514.2548 $ <br>Population: 10.603863 million",
"Country: Greece <br>Life Expectancy: 79.483 years <br>GDP per capita: 27538.41188 $ <br>Population: 10.70629 million"
],
"y": [
3530.690067,
4916.299889,
6017.190732999999,
8513.097016,
12724.82957,
14195.524280000001,
15268.420890000001,
16120.528390000001,
17541.49634,
18747.69814,
22514.2548,
27538.41188
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "a3267e"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y5",
"ysrc": "etpinard:4362:f9627a",
"textsrc": "etpinard:4362:f544ac",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:cccf3a",
"size": [
42.023,
44.141999999999996,
46.95399999999999,
50.016000000000005,
53.738,
56.028999999999996,
58.137,
60.782,
63.373000000000005,
66.322,
68.97800000000001,
70.259
]
},
"mode": "markers",
"xaxis": "x3",
"text": [
"Country: Guatemala <br>Life Expectancy: 42.023 years <br>GDP per capita: 2428.237769 $ <br>Population: 3.146381 million",
"Country: Guatemala <br>Life Expectancy: 44.142 years <br>GDP per capita: 2617.155967 $ <br>Population: 3.640876 million",
"Country: Guatemala <br>Life Expectancy: 46.954 years <br>GDP per capita: 2750.364446 $ <br>Population: 4.208858 million",
"Country: Guatemala <br>Life Expectancy: 50.016 years <br>GDP per capita: 3242.531147 $ <br>Population: 4.690773 million",
"Country: Guatemala <br>Life Expectancy: 53.738 years <br>GDP per capita: 4031.408271 $ <br>Population: 5.149581 million",
"Country: Guatemala <br>Life Expectancy: 56.029 years <br>GDP per capita: 4879.992748 $ <br>Population: 5.70343 million",
"Country: Guatemala <br>Life Expectancy: 58.137 years <br>GDP per capita: 4820.49479 $ <br>Population: 6.39563 million",
"Country: Guatemala <br>Life Expectancy: 60.782 years <br>GDP per capita: 4246.485974 $ <br>Population: 7.326406 million",
"Country: Guatemala <br>Life Expectancy: 63.373 years <br>GDP per capita: 4439.45084 $ <br>Population: 8.486949 million",
"Country: Guatemala <br>Life Expectancy: 66.322 years <br>GDP per capita: 4684.313807 $ <br>Population: 9.803875 million",
"Country: Guatemala <br>Life Expectancy: 68.978 years <br>GDP per capita: 4858.347495 $ <br>Population: 11.17865 million",
"Country: Guatemala <br>Life Expectancy: 70.259 years <br>GDP per capita: 5186.050003 $ <br>Population: 12.572928 million"
],
"y": [
2428.2377690000003,
2617.155967,
2750.364446,
3242.5311469999997,
4031.4082710000002,
4879.992748,
4820.49479,
4246.485974,
4439.4508399999995,
4684.313807,
4858.347495,
5186.050003
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "859fc3"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y5",
"ysrc": "etpinard:4362:e2aa24",
"textsrc": "etpinard:4362:6618d7",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:360552",
"size": [
33.609,
34.558,
35.753,
37.196999999999996,
38.842,
40.762,
42.891000000000005,
45.552,
48.576,
51.455,
53.676,
56.007
]
},
"mode": "markers",
"xaxis": "x4",
"text": [
"Country: Guinea <br>Life Expectancy: 33.609 years <br>GDP per capita: 510.1964923 $ <br>Population: 2.664249 million",
"Country: Guinea <br>Life Expectancy: 34.558 years <br>GDP per capita: 576.2670245 $ <br>Population: 2.876726 million",
"Country: Guinea <br>Life Expectancy: 35.753 years <br>GDP per capita: 686.3736739 $ <br>Population: 3.140003 million",
"Country: Guinea <br>Life Expectancy: 37.197 years <br>GDP per capita: 708.7595409 $ <br>Population: 3.451418 million",
"Country: Guinea <br>Life Expectancy: 38.842 years <br>GDP per capita: 741.6662307 $ <br>Population: 3.811387 million",
"Country: Guinea <br>Life Expectancy: 40.762 years <br>GDP per capita: 874.6858643 $ <br>Population: 4.227026 million",
"Country: Guinea <br>Life Expectancy: 42.891 years <br>GDP per capita: 857.2503577 $ <br>Population: 4.710497 million",
"Country: Guinea <br>Life Expectancy: 45.552 years <br>GDP per capita: 805.5724718 $ <br>Population: 5.650262 million",
"Country: Guinea <br>Life Expectancy: 48.576 years <br>GDP per capita: 794.3484384 $ <br>Population: 6.990574 million",
"Country: Guinea <br>Life Expectancy: 51.455 years <br>GDP per capita: 869.4497668 $ <br>Population: 8.048834 million",
"Country: Guinea <br>Life Expectancy: 53.676 years <br>GDP per capita: 945.5835837 $ <br>Population: 8.807818 million",
"Country: Guinea <br>Life Expectancy: 56.007 years <br>GDP per capita: 942.6542111 $ <br>Population: 9.947814 million"
],
"y": [
510.19649230000005,
576.2670245,
686.3736739,
708.7595409,
741.6662307,
874.6858642999999,
857.2503577,
805.5724717999999,
794.3484384,
869.4497667999999,
945.5835837000001,
942.6542111
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "b2ea73"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y5",
"ysrc": "etpinard:4362:4bfa11",
"textsrc": "etpinard:4362:050a63",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:9f912b",
"size": [
32.5,
33.489000000000004,
34.488,
35.492,
36.486,
37.465,
39.327,
41.245,
43.266000000000005,
44.873000000000005,
45.504,
46.388000000000005
]
},
"mode": "markers",
"xaxis": "x5",
"text": [
"Country: Guinea-Bissau <br>Life Expectancy: 32.5 years <br>GDP per capita: 299.850319 $ <br>Population: 0.580653 million",
"Country: Guinea-Bissau <br>Life Expectancy: 33.489 years <br>GDP per capita: 431.7904566 $ <br>Population: 0.601095 million",
"Country: Guinea-Bissau <br>Life Expectancy: 34.488 years <br>GDP per capita: 522.0343725 $ <br>Population: 0.62782 million",
"Country: Guinea-Bissau <br>Life Expectancy: 35.492 years <br>GDP per capita: 715.5806402 $ <br>Population: 0.601287 million",
"Country: Guinea-Bissau <br>Life Expectancy: 36.486 years <br>GDP per capita: 820.2245876 $ <br>Population: 0.625361 million",
"Country: Guinea-Bissau <br>Life Expectancy: 37.465 years <br>GDP per capita: 764.7259628 $ <br>Population: 0.745228 million",
"Country: Guinea-Bissau <br>Life Expectancy: 39.327 years <br>GDP per capita: 838.1239671 $ <br>Population: 0.825987 million",
"Country: Guinea-Bissau <br>Life Expectancy: 41.245 years <br>GDP per capita: 736.4153921 $ <br>Population: 0.927524 million",
"Country: Guinea-Bissau <br>Life Expectancy: 43.266 years <br>GDP per capita: 745.5398706 $ <br>Population: 1.050938 million",
"Country: Guinea-Bissau <br>Life Expectancy: 44.873 years <br>GDP per capita: 796.6644681 $ <br>Population: 1.193708 million",
"Country: Guinea-Bissau <br>Life Expectancy: 45.504 years <br>GDP per capita: 575.7047176 $ <br>Population: 1.332459 million",
"Country: Guinea-Bissau <br>Life Expectancy: 46.388 years <br>GDP per capita: 579.231743 $ <br>Population: 1.472041 million"
],
"y": [
299.850319,
431.7904566000001,
522.0343725,
715.5806402000001,
820.2245876000001,
764.7259627999999,
838.1239671,
736.4153921,
745.5398706,
796.6644681,
575.7047176,
579.2317429999999
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "ac1b4e"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y5",
"ysrc": "etpinard:4362:fae511",
"textsrc": "etpinard:4362:8ae4ec",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:54e889",
"size": [
37.579,
40.696,
43.59,
46.243,
48.042,
49.923,
51.461000000000006,
53.636,
55.089,
56.67100000000001,
58.137,
60.916000000000004
]
},
"mode": "markers",
"xaxis": "x6",
"text": [
"Country: Haiti <br>Life Expectancy: 37.579 years <br>GDP per capita: 1840.366939 $ <br>Population: 3.201488 million",
"Country: Haiti <br>Life Expectancy: 40.696 years <br>GDP per capita: 1726.887882 $ <br>Population: 3.507701 million",
"Country: Haiti <br>Life Expectancy: 43.59 years <br>GDP per capita: 1796.589032 $ <br>Population: 3.88013 million",
"Country: Haiti <br>Life Expectancy: 46.243 years <br>GDP per capita: 1452.057666 $ <br>Population: 4.318137 million",
"Country: Haiti <br>Life Expectancy: 48.042 years <br>GDP per capita: 1654.456946 $ <br>Population: 4.698301 million",
"Country: Haiti <br>Life Expectancy: 49.923 years <br>GDP per capita: 1874.298931 $ <br>Population: 4.908554 million",
"Country: Haiti <br>Life Expectancy: 51.461 years <br>GDP per capita: 2011.159549 $ <br>Population: 5.198399 million",
"Country: Haiti <br>Life Expectancy: 53.636 years <br>GDP per capita: 1823.015995 $ <br>Population: 5.756203 million",
"Country: Haiti <br>Life Expectancy: 55.089 years <br>GDP per capita: 1456.309517 $ <br>Population: 6.326682 million",
"Country: Haiti <br>Life Expectancy: 56.671 years <br>GDP per capita: 1341.726931 $ <br>Population: 6.913545 million",
"Country: Haiti <br>Life Expectancy: 58.137 years <br>GDP per capita: 1270.364932 $ <br>Population: 7.607651 million",
"Country: Haiti <br>Life Expectancy: 60.916 years <br>GDP per capita: 1201.637154 $ <br>Population: 8.502814 million"
],
"y": [
1840.366939,
1726.887882,
1796.589032,
1452.057666,
1654.456946,
1874.2989309999998,
2011.1595489999997,
1823.015995,
1456.309517,
1341.7269310000001,
1270.364932,
1201.637154
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "b70257"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y5",
"ysrc": "etpinard:4362:147974",
"textsrc": "etpinard:4362:4ec63d",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:27d58a",
"size": [
41.912,
44.665,
48.041000000000004,
50.924,
53.88399999999999,
57.402,
60.909,
64.492,
66.399,
67.65899999999999,
68.565,
70.19800000000001
]
},
"mode": "markers",
"xaxis": "x7",
"text": [
"Country: Honduras <br>Life Expectancy: 41.912 years <br>GDP per capita: 2194.926204 $ <br>Population: 1.517453 million",
"Country: Honduras <br>Life Expectancy: 44.665 years <br>GDP per capita: 2220.487682 $ <br>Population: 1.77039 million",
"Country: Honduras <br>Life Expectancy: 48.041 years <br>GDP per capita: 2291.156835 $ <br>Population: 2.090162 million",
"Country: Honduras <br>Life Expectancy: 50.924 years <br>GDP per capita: 2538.269358 $ <br>Population: 2.500689 million",
"Country: Honduras <br>Life Expectancy: 53.884 years <br>GDP per capita: 2529.842345 $ <br>Population: 2.965146 million",
"Country: Honduras <br>Life Expectancy: 57.402 years <br>GDP per capita: 3203.208066 $ <br>Population: 3.055235 million",
"Country: Honduras <br>Life Expectancy: 60.909 years <br>GDP per capita: 3121.760794 $ <br>Population: 3.669448 million",
"Country: Honduras <br>Life Expectancy: 64.492 years <br>GDP per capita: 3023.096699 $ <br>Population: 4.372203 million",
"Country: Honduras <br>Life Expectancy: 66.399 years <br>GDP per capita: 3081.694603 $ <br>Population: 5.077347 million",
"Country: Honduras <br>Life Expectancy: 67.659 years <br>GDP per capita: 3160.454906 $ <br>Population: 5.867957 million",
"Country: Honduras <br>Life Expectancy: 68.565 years <br>GDP per capita: 3099.72866 $ <br>Population: 6.677328 million",
"Country: Honduras <br>Life Expectancy: 70.198 years <br>GDP per capita: 3548.330846 $ <br>Population: 7.483763 million"
],
"y": [
2194.926204,
2220.487682,
2291.1568350000002,
2538.269358,
2529.842345,
3203.208066,
3121.7607940000003,
3023.0966989999997,
3081.694603,
3160.454906,
3099.72866,
3548.3308460000003
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "f0949a"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y5",
"ysrc": "etpinard:4362:055a91",
"textsrc": "etpinard:4362:b80575",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:181763",
"size": [
60.96,
64.75,
67.65,
70,
72,
73.6,
75.45,
76.2,
77.601,
80,
81.495,
82.208
]
},
"mode": "markers",
"xaxis": "x8",
"text": [
"Country: Hong Kong, China <br>Life Expectancy: 60.96 years <br>GDP per capita: 3054.421209 $ <br>Population: 2.1259 million",
"Country: Hong Kong, China <br>Life Expectancy: 64.75 years <br>GDP per capita: 3629.076457 $ <br>Population: 2.7363 million",
"Country: Hong Kong, China <br>Life Expectancy: 67.65 years <br>GDP per capita: 4692.648272 $ <br>Population: 3.3052 million",
"Country: Hong Kong, China <br>Life Expectancy: 70.0 years <br>GDP per capita: 6197.962814 $ <br>Population: 3.7228 million",
"Country: Hong Kong, China <br>Life Expectancy: 72.0 years <br>GDP per capita: 8315.928145 $ <br>Population: 4.1157 million",
"Country: Hong Kong, China <br>Life Expectancy: 73.6 years <br>GDP per capita: 11186.14125 $ <br>Population: 4.5837 million",
"Country: Hong Kong, China <br>Life Expectancy: 75.45 years <br>GDP per capita: 14560.53051 $ <br>Population: 5.2645 million",
"Country: Hong Kong, China <br>Life Expectancy: 76.2 years <br>GDP per capita: 20038.47269 $ <br>Population: 5.58451 million",
"Country: Hong Kong, China <br>Life Expectancy: 77.601 years <br>GDP per capita: 24757.60301 $ <br>Population: 5.829696 million",
"Country: Hong Kong, China <br>Life Expectancy: 80.0 years <br>GDP per capita: 28377.63219 $ <br>Population: 6.495918 million",
"Country: Hong Kong, China <br>Life Expectancy: 81.495 years <br>GDP per capita: 30209.01516 $ <br>Population: 6.762476 million",
"Country: Hong Kong, China <br>Life Expectancy: 82.208 years <br>GDP per capita: 39724.97867 $ <br>Population: 6.980412 million"
],
"y": [
3054.421209,
3629.076457,
4692.648271999999,
6197.962814,
8315.928145,
11186.14125,
14560.530509999999,
20038.472690000002,
24757.60301,
28377.632189999997,
30209.015160000003,
39724.97867
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "67b3b2"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y5",
"ysrc": "etpinard:4362:95a500",
"textsrc": "etpinard:4362:7899d5",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:0897a3",
"size": [
64.03,
66.41,
67.96,
69.5,
69.76,
69.95,
69.39,
69.58,
69.17,
71.04,
72.59,
73.33800000000001
]
},
"mode": "markers",
"xaxis": "x9",
"text": [
"Country: Hungary <br>Life Expectancy: 64.03 years <br>GDP per capita: 5263.673816 $ <br>Population: 9.504 million",
"Country: Hungary <br>Life Expectancy: 66.41 years <br>GDP per capita: 6040.180011 $ <br>Population: 9.839 million",
"Country: Hungary <br>Life Expectancy: 67.96 years <br>GDP per capita: 7550.359877 $ <br>Population: 10.063 million",
"Country: Hungary <br>Life Expectancy: 69.5 years <br>GDP per capita: 9326.64467 $ <br>Population: 10.223422 million",
"Country: Hungary <br>Life Expectancy: 69.76 years <br>GDP per capita: 10168.65611 $ <br>Population: 10.394091 million",
"Country: Hungary <br>Life Expectancy: 69.95 years <br>GDP per capita: 11674.83737 $ <br>Population: 10.637171 million",
"Country: Hungary <br>Life Expectancy: 69.39 years <br>GDP per capita: 12545.99066 $ <br>Population: 10.705535 million",
"Country: Hungary <br>Life Expectancy: 69.58 years <br>GDP per capita: 12986.47998 $ <br>Population: 10.61274 million",
"Country: Hungary <br>Life Expectancy: 69.17 years <br>GDP per capita: 10535.62855 $ <br>Population: 10.348684 million",
"Country: Hungary <br>Life Expectancy: 71.04 years <br>GDP per capita: 11712.7768 $ <br>Population: 10.244684 million",
"Country: Hungary <br>Life Expectancy: 72.59 years <br>GDP per capita: 14843.93556 $ <br>Population: 10.083313 million",
"Country: Hungary <br>Life Expectancy: 73.338 years <br>GDP per capita: 18008.94444 $ <br>Population: 9.956108 million"
],
"y": [
5263.6738159999995,
6040.180011,
7550.359877,
9326.64467,
10168.65611,
11674.837370000001,
12545.99066,
12986.47998,
10535.62855,
11712.7768,
14843.93556,
18008.94444
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "6b4d87"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y5",
"ysrc": "etpinard:4362:580432",
"textsrc": "etpinard:4362:e6937c",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:450aa3",
"size": [
72.49,
73.47,
73.68,
73.73,
74.46,
76.11,
76.99,
77.23,
78.77,
78.95,
80.5,
81.757
]
},
"mode": "markers",
"xaxis": "x10",
"text": [
"Country: Iceland <br>Life Expectancy: 72.49 years <br>GDP per capita: 7267.688428 $ <br>Population: 0.147962 million",
"Country: Iceland <br>Life Expectancy: 73.47 years <br>GDP per capita: 9244.001412 $ <br>Population: 0.16511 million",
"Country: Iceland <br>Life Expectancy: 73.68 years <br>GDP per capita: 10350.15906 $ <br>Population: 0.182053 million",
"Country: Iceland <br>Life Expectancy: 73.73 years <br>GDP per capita: 13319.89568 $ <br>Population: 0.198676 million",
"Country: Iceland <br>Life Expectancy: 74.46 years <br>GDP per capita: 15798.06362 $ <br>Population: 0.209275 million",
"Country: Iceland <br>Life Expectancy: 76.11 years <br>GDP per capita: 19654.96247 $ <br>Population: 0.221823 million",
"Country: Iceland <br>Life Expectancy: 76.99 years <br>GDP per capita: 23269.6075 $ <br>Population: 0.233997 million",
"Country: Iceland <br>Life Expectancy: 77.23 years <br>GDP per capita: 26923.20628 $ <br>Population: 0.244676 million",
"Country: Iceland <br>Life Expectancy: 78.77 years <br>GDP per capita: 25144.39201 $ <br>Population: 0.259012 million",
"Country: Iceland <br>Life Expectancy: 78.95 years <br>GDP per capita: 28061.09966 $ <br>Population: 0.271192 million",
"Country: Iceland <br>Life Expectancy: 80.5 years <br>GDP per capita: 31163.20196 $ <br>Population: 0.28803 million",
"Country: Iceland <br>Life Expectancy: 81.757 years <br>GDP per capita: 36180.78919 $ <br>Population: 0.301931 million"
],
"y": [
7267.688428,
9244.001412,
10350.15906,
13319.89568,
15798.063619999999,
19654.96247,
23269.6075,
26923.206280000002,
25144.39201,
28061.099660000003,
31163.201960000002,
36180.789189999996
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "cb6d99"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y5",
"ysrc": "etpinard:4362:6141f6",
"textsrc": "etpinard:4362:a3f29d",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:ff8820",
"size": [
37.373000000000005,
40.249,
43.605,
47.193000000000005,
50.651,
54.208,
56.596000000000004,
58.553000000000004,
60.223,
61.765,
62.879,
64.69800000000001
]
},
"mode": "markers",
"xaxis": "x11",
"text": [
"Country: India <br>Life Expectancy: 37.373 years <br>GDP per capita: 546.5657493 $ <br>Population: 372.0 million",
"Country: India <br>Life Expectancy: 40.249 years <br>GDP per capita: 590.061996 $ <br>Population: 409.0 million",
"Country: India <br>Life Expectancy: 43.605 years <br>GDP per capita: 658.3471509 $ <br>Population: 454.0 million",
"Country: India <br>Life Expectancy: 47.193 years <br>GDP per capita: 700.7706107 $ <br>Population: 506.0 million",
"Country: India <br>Life Expectancy: 50.651 years <br>GDP per capita: 724.032527 $ <br>Population: 567.0 million",
"Country: India <br>Life Expectancy: 54.208 years <br>GDP per capita: 813.337323 $ <br>Population: 634.0 million",
"Country: India <br>Life Expectancy: 56.596 years <br>GDP per capita: 855.7235377 $ <br>Population: 708.0 million",
"Country: India <br>Life Expectancy: 58.553 years <br>GDP per capita: 976.5126756 $ <br>Population: 788.0 million",
"Country: India <br>Life Expectancy: 60.223 years <br>GDP per capita: 1164.406809 $ <br>Population: 872.0 million",
"Country: India <br>Life Expectancy: 61.765 years <br>GDP per capita: 1458.817442 $ <br>Population: 959.0 million",
"Country: India <br>Life Expectancy: 62.879 years <br>GDP per capita: 1746.769454 $ <br>Population: 1034.172547 million",
"Country: India <br>Life Expectancy: 64.698 years <br>GDP per capita: 2452.210407 $ <br>Population: 1110.396331 million"
],
"y": [
546.5657493,
590.061996,
658.3471509,
700.7706107000001,
724.032527,
813.3373230000001,
855.7235377000001,
976.5126756000001,
1164.406809,
1458.817442,
1746.769454,
2452.210407
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "eb5f7a"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y5",
"ysrc": "etpinard:4362:9fab5d",
"textsrc": "etpinard:4362:60705b",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:dc3a51",
"size": [
37.468,
39.918,
42.518,
45.964,
49.203,
52.702,
56.159,
60.137,
62.681000000000004,
66.041,
68.58800000000001,
70.65
]
},
"mode": "markers",
"xaxis": "x12",
"text": [
"Country: Indonesia <br>Life Expectancy: 37.468 years <br>GDP per capita: 749.6816546 $ <br>Population: 82.052 million",
"Country: Indonesia <br>Life Expectancy: 39.918 years <br>GDP per capita: 858.9002707 $ <br>Population: 90.124 million",
"Country: Indonesia <br>Life Expectancy: 42.518 years <br>GDP per capita: 849.2897701 $ <br>Population: 99.028 million",
"Country: Indonesia <br>Life Expectancy: 45.964 years <br>GDP per capita: 762.4317721 $ <br>Population: 109.343 million",
"Country: Indonesia <br>Life Expectancy: 49.203 years <br>GDP per capita: 1111.107907 $ <br>Population: 121.282 million",
"Country: Indonesia <br>Life Expectancy: 52.702 years <br>GDP per capita: 1382.702056 $ <br>Population: 136.725 million",
"Country: Indonesia <br>Life Expectancy: 56.159 years <br>GDP per capita: 1516.872988 $ <br>Population: 153.343 million",
"Country: Indonesia <br>Life Expectancy: 60.137 years <br>GDP per capita: 1748.356961 $ <br>Population: 169.276 million",
"Country: Indonesia <br>Life Expectancy: 62.681 years <br>GDP per capita: 2383.140898 $ <br>Population: 184.816 million",
"Country: Indonesia <br>Life Expectancy: 66.041 years <br>GDP per capita: 3119.335603 $ <br>Population: 199.278 million",
"Country: Indonesia <br>Life Expectancy: 68.588 years <br>GDP per capita: 2873.91287 $ <br>Population: 211.06 million",
"Country: Indonesia <br>Life Expectancy: 70.65 years <br>GDP per capita: 3540.651564 $ <br>Population: 223.547 million"
],
"y": [
749.6816546,
858.9002707000001,
849.2897700999999,
762.4317721,
1111.107907,
1382.702056,
1516.872988,
1748.356961,
2383.140898,
3119.335603,
2873.91287,
3540.6515640000002
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "8ddb5f"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y6",
"ysrc": "etpinard:4362:3bfc84",
"textsrc": "etpinard:4362:e889f9",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:ebddc2",
"size": [
44.869,
47.181000000000004,
49.325,
52.468999999999994,
55.233999999999995,
57.702,
59.62,
63.04,
65.742,
68.042,
69.45100000000001,
70.964
]
},
"mode": "markers",
"xaxis": "x",
"text": [
"Country: Iran <br>Life Expectancy: 44.869 years <br>GDP per capita: 3035.326002 $ <br>Population: 17.272 million",
"Country: Iran <br>Life Expectancy: 47.181 years <br>GDP per capita: 3290.257643 $ <br>Population: 19.792 million",
"Country: Iran <br>Life Expectancy: 49.325 years <br>GDP per capita: 4187.329802 $ <br>Population: 22.874 million",
"Country: Iran <br>Life Expectancy: 52.469 years <br>GDP per capita: 5906.731805 $ <br>Population: 26.538 million",
"Country: Iran <br>Life Expectancy: 55.234 years <br>GDP per capita: 9613.818607 $ <br>Population: 30.614 million",
"Country: Iran <br>Life Expectancy: 57.702 years <br>GDP per capita: 11888.59508 $ <br>Population: 35.480679 million",
"Country: Iran <br>Life Expectancy: 59.62 years <br>GDP per capita: 7608.334602 $ <br>Population: 43.072751 million",
"Country: Iran <br>Life Expectancy: 63.04 years <br>GDP per capita: 6642.881371 $ <br>Population: 51.889696 million",
"Country: Iran <br>Life Expectancy: 65.742 years <br>GDP per capita: 7235.653188 $ <br>Population: 60.397973 million",
"Country: Iran <br>Life Expectancy: 68.042 years <br>GDP per capita: 8263.590301 $ <br>Population: 63.327987 million",
"Country: Iran <br>Life Expectancy: 69.451 years <br>GDP per capita: 9240.761975 $ <br>Population: 66.907826 million",
"Country: Iran <br>Life Expectancy: 70.964 years <br>GDP per capita: 11605.71449 $ <br>Population: 69.45357 million"
],
"y": [
3035.326002,
3290.257643,
4187.329802,
5906.731804999999,
9613.818607,
11888.59508,
7608.334602,
6642.881371,
7235.653187999999,
8263.590301,
9240.761975,
11605.71449
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "42384e"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y6",
"ysrc": "etpinard:4362:f53a91",
"textsrc": "etpinard:4362:5c5e0e",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:12e434",
"size": [
45.32,
48.437,
51.457,
54.458999999999996,
56.95,
60.413000000000004,
62.038000000000004,
65.044,
59.461000000000006,
58.81100000000001,
57.04600000000001,
59.545
]
},
"mode": "markers",
"xaxis": "x2",
"text": [
"Country: Iraq <br>Life Expectancy: 45.32 years <br>GDP per capita: 4129.766056 $ <br>Population: 5.441766 million",
"Country: Iraq <br>Life Expectancy: 48.437 years <br>GDP per capita: 6229.333562 $ <br>Population: 6.248643 million",
"Country: Iraq <br>Life Expectancy: 51.457 years <br>GDP per capita: 8341.737815 $ <br>Population: 7.24026 million",
"Country: Iraq <br>Life Expectancy: 54.459 years <br>GDP per capita: 8931.459811 $ <br>Population: 8.519282 million",
"Country: Iraq <br>Life Expectancy: 56.95 years <br>GDP per capita: 9576.037596 $ <br>Population: 10.061506 million",
"Country: Iraq <br>Life Expectancy: 60.413 years <br>GDP per capita: 14688.23507 $ <br>Population: 11.882916 million",
"Country: Iraq <br>Life Expectancy: 62.038 years <br>GDP per capita: 14517.90711 $ <br>Population: 14.173318 million",
"Country: Iraq <br>Life Expectancy: 65.044 years <br>GDP per capita: 11643.57268 $ <br>Population: 16.543189 million",
"Country: Iraq <br>Life Expectancy: 59.461 years <br>GDP per capita: 3745.640687 $ <br>Population: 17.861905 million",
"Country: Iraq <br>Life Expectancy: 58.811 years <br>GDP per capita: 3076.239795 $ <br>Population: 20.775703 million",
"Country: Iraq <br>Life Expectancy: 57.046 years <br>GDP per capita: 4390.717312 $ <br>Population: 24.001816 million",
"Country: Iraq <br>Life Expectancy: 59.545 years <br>GDP per capita: 4471.061906 $ <br>Population: 27.499638 million"
],
"y": [
4129.766056,
6229.333562,
8341.737815,
8931.459811,
9576.037596,
14688.235069999999,
14517.90711,
11643.57268,
3745.6406869999996,
3076.239795,
4390.717312,
4471.061906
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "8d9db2"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y6",
"ysrc": "etpinard:4362:a3ce78",
"textsrc": "etpinard:4362:ba75db",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:322742",
"size": [
66.91,
68.9,
70.29,
71.08,
71.28,
72.03,
73.1,
74.36,
75.467,
76.122,
77.783,
78.885
]
},
"mode": "markers",
"xaxis": "x3",
"text": [
"Country: Ireland <br>Life Expectancy: 66.91 years <br>GDP per capita: 5210.280328 $ <br>Population: 2.952156 million",
"Country: Ireland <br>Life Expectancy: 68.9 years <br>GDP per capita: 5599.077872 $ <br>Population: 2.87822 million",
"Country: Ireland <br>Life Expectancy: 70.29 years <br>GDP per capita: 6631.597314 $ <br>Population: 2.83 million",
"Country: Ireland <br>Life Expectancy: 71.08 years <br>GDP per capita: 7655.568963 $ <br>Population: 2.9001 million",
"Country: Ireland <br>Life Expectancy: 71.28 years <br>GDP per capita: 9530.772896 $ <br>Population: 3.0244 million",
"Country: Ireland <br>Life Expectancy: 72.03 years <br>GDP per capita: 11150.98113 $ <br>Population: 3.2719 million",
"Country: Ireland <br>Life Expectancy: 73.1 years <br>GDP per capita: 12618.32141 $ <br>Population: 3.48 million",
"Country: Ireland <br>Life Expectancy: 74.36 years <br>GDP per capita: 13872.86652 $ <br>Population: 3.5399 million",
"Country: Ireland <br>Life Expectancy: 75.467 years <br>GDP per capita: 17558.81555 $ <br>Population: 3.557761 million",
"Country: Ireland <br>Life Expectancy: 76.122 years <br>GDP per capita: 24521.94713 $ <br>Population: 3.667233 million",
"Country: Ireland <br>Life Expectancy: 77.783 years <br>GDP per capita: 34077.04939 $ <br>Population: 3.879155 million",
"Country: Ireland <br>Life Expectancy: 78.885 years <br>GDP per capita: 40675.99635 $ <br>Population: 4.109086 million"
],
"y": [
5210.280328,
5599.077872,
6631.597314,
7655.568963,
9530.772895999999,
11150.98113,
12618.321409999999,
13872.86652,
17558.81555,
24521.94713,
34077.04939,
40675.99635
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "2a164d"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y6",
"ysrc": "etpinard:4362:89c129",
"textsrc": "etpinard:4362:0a46f6",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:569d8c",
"size": [
65.39,
67.84,
69.39,
70.75,
71.63,
73.06,
74.45,
75.6,
76.93,
78.26899999999999,
79.696,
80.745
]
},
"mode": "markers",
"xaxis": "x4",
"text": [
"Country: Israel <br>Life Expectancy: 65.39 years <br>GDP per capita: 4086.522128 $ <br>Population: 1.620914 million",
"Country: Israel <br>Life Expectancy: 67.84 years <br>GDP per capita: 5385.278451 $ <br>Population: 1.944401 million",
"Country: Israel <br>Life Expectancy: 69.39 years <br>GDP per capita: 7105.630706 $ <br>Population: 2.310904 million",
"Country: Israel <br>Life Expectancy: 70.75 years <br>GDP per capita: 8393.741404 $ <br>Population: 2.693585 million",
"Country: Israel <br>Life Expectancy: 71.63 years <br>GDP per capita: 12786.93223 $ <br>Population: 3.095893 million",
"Country: Israel <br>Life Expectancy: 73.06 years <br>GDP per capita: 13306.61921 $ <br>Population: 3.495918 million",
"Country: Israel <br>Life Expectancy: 74.45 years <br>GDP per capita: 15367.0292 $ <br>Population: 3.858421 million",
"Country: Israel <br>Life Expectancy: 75.6 years <br>GDP per capita: 17122.47986 $ <br>Population: 4.203148 million",
"Country: Israel <br>Life Expectancy: 76.93 years <br>GDP per capita: 18051.52254 $ <br>Population: 4.93655 million",
"Country: Israel <br>Life Expectancy: 78.269 years <br>GDP per capita: 20896.60924 $ <br>Population: 5.531387 million",
"Country: Israel <br>Life Expectancy: 79.696 years <br>GDP per capita: 21905.59514 $ <br>Population: 6.029529 million",
"Country: Israel <br>Life Expectancy: 80.745 years <br>GDP per capita: 25523.2771 $ <br>Population: 6.426679 million"
],
"y": [
4086.522128,
5385.278451,
7105.630706,
8393.741404,
12786.93223,
13306.619209999999,
15367.0292,
17122.47986,
18051.52254,
20896.60924,
21905.59514,
25523.2771
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "b053a3"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y6",
"ysrc": "etpinard:4362:abccb7",
"textsrc": "etpinard:4362:aa4b8b",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:0e89a0",
"size": [
65.94,
67.81,
69.24,
71.06,
72.19,
73.48,
74.98,
76.42,
77.44,
78.82,
80.24,
80.546
]
},
"mode": "markers",
"xaxis": "x5",
"text": [
"Country: Italy <br>Life Expectancy: 65.94 years <br>GDP per capita: 4931.404155 $ <br>Population: 47.666 million",
"Country: Italy <br>Life Expectancy: 67.81 years <br>GDP per capita: 6248.656232 $ <br>Population: 49.182 million",
"Country: Italy <br>Life Expectancy: 69.24 years <br>GDP per capita: 8243.58234 $ <br>Population: 50.8432 million",
"Country: Italy <br>Life Expectancy: 71.06 years <br>GDP per capita: 10022.40131 $ <br>Population: 52.6671 million",
"Country: Italy <br>Life Expectancy: 72.19 years <br>GDP per capita: 12269.27378 $ <br>Population: 54.365564 million",
"Country: Italy <br>Life Expectancy: 73.48 years <br>GDP per capita: 14255.98475 $ <br>Population: 56.059245 million",
"Country: Italy <br>Life Expectancy: 74.98 years <br>GDP per capita: 16537.4835 $ <br>Population: 56.535636 million",
"Country: Italy <br>Life Expectancy: 76.42 years <br>GDP per capita: 19207.23482 $ <br>Population: 56.729703 million",
"Country: Italy <br>Life Expectancy: 77.44 years <br>GDP per capita: 22013.64486 $ <br>Population: 56.840847 million",
"Country: Italy <br>Life Expectancy: 78.82 years <br>GDP per capita: 24675.02446 $ <br>Population: 57.479469 million",
"Country: Italy <br>Life Expectancy: 80.24 years <br>GDP per capita: 27968.09817 $ <br>Population: 57.926999 million",
"Country: Italy <br>Life Expectancy: 80.546 years <br>GDP per capita: 28569.7197 $ <br>Population: 58.147733 million"
],
"y": [
4931.404154999999,
6248.656232,
8243.58234,
10022.40131,
12269.27378,
14255.98475,
16537.4835,
19207.234819999998,
22013.64486,
24675.02446,
27968.098169999997,
28569.7197
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "de4d0e"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y6",
"ysrc": "etpinard:4362:57372e",
"textsrc": "etpinard:4362:0ec7c3",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:0809ae",
"size": [
58.53,
62.61,
65.61,
67.51,
69,
70.11,
71.21,
71.77,
71.766,
72.262,
72.047,
72.567
]
},
"mode": "markers",
"xaxis": "x6",
"text": [
"Country: Jamaica <br>Life Expectancy: 58.53 years <br>GDP per capita: 2898.530881 $ <br>Population: 1.426095 million",
"Country: Jamaica <br>Life Expectancy: 62.61 years <br>GDP per capita: 4756.525781 $ <br>Population: 1.53509 million",
"Country: Jamaica <br>Life Expectancy: 65.61 years <br>GDP per capita: 5246.107524 $ <br>Population: 1.665128 million",
"Country: Jamaica <br>Life Expectancy: 67.51 years <br>GDP per capita: 6124.703451 $ <br>Population: 1.861096 million",
"Country: Jamaica <br>Life Expectancy: 69.0 years <br>GDP per capita: 7433.889293 $ <br>Population: 1.997616 million",
"Country: Jamaica <br>Life Expectancy: 70.11 years <br>GDP per capita: 6650.195573 $ <br>Population: 2.156814 million",
"Country: Jamaica <br>Life Expectancy: 71.21 years <br>GDP per capita: 6068.05135 $ <br>Population: 2.298309 million",
"Country: Jamaica <br>Life Expectancy: 71.77 years <br>GDP per capita: 6351.237495 $ <br>Population: 2.326606 million",
"Country: Jamaica <br>Life Expectancy: 71.766 years <br>GDP per capita: 7404.923685 $ <br>Population: 2.378618 million",
"Country: Jamaica <br>Life Expectancy: 72.262 years <br>GDP per capita: 7121.924704 $ <br>Population: 2.531311 million",
"Country: Jamaica <br>Life Expectancy: 72.047 years <br>GDP per capita: 6994.774861 $ <br>Population: 2.664659 million",
"Country: Jamaica <br>Life Expectancy: 72.567 years <br>GDP per capita: 7320.880262 $ <br>Population: 2.780132 million"
],
"y": [
2898.5308809999997,
4756.525781,
5246.107524,
6124.703450999999,
7433.889293000001,
6650.195573,
6068.05135,
6351.237495,
7404.923685,
7121.924704000001,
6994.774861,
7320.880262000001
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "f828b7"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y6",
"ysrc": "etpinard:4362:c324ad",
"textsrc": "etpinard:4362:e5d658",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:a37cbd",
"size": [
63.03,
65.5,
68.73,
71.43,
73.42,
75.38,
77.11,
78.67,
79.36,
80.69,
82,
82.603
]
},
"mode": "markers",
"xaxis": "x7",
"text": [
"Country: Japan <br>Life Expectancy: 63.03 years <br>GDP per capita: 3216.956347 $ <br>Population: 86.459025 million",
"Country: Japan <br>Life Expectancy: 65.5 years <br>GDP per capita: 4317.694365 $ <br>Population: 91.563009 million",
"Country: Japan <br>Life Expectancy: 68.73 years <br>GDP per capita: 6576.649461 $ <br>Population: 95.831757 million",
"Country: Japan <br>Life Expectancy: 71.43 years <br>GDP per capita: 9847.788607 $ <br>Population: 100.825279 million",
"Country: Japan <br>Life Expectancy: 73.42 years <br>GDP per capita: 14778.78636 $ <br>Population: 107.188273 million",
"Country: Japan <br>Life Expectancy: 75.38 years <br>GDP per capita: 16610.37701 $ <br>Population: 113.872473 million",
"Country: Japan <br>Life Expectancy: 77.11 years <br>GDP per capita: 19384.10571 $ <br>Population: 118.454974 million",
"Country: Japan <br>Life Expectancy: 78.67 years <br>GDP per capita: 22375.94189 $ <br>Population: 122.091325 million",
"Country: Japan <br>Life Expectancy: 79.36 years <br>GDP per capita: 26824.89511 $ <br>Population: 124.329269 million",
"Country: Japan <br>Life Expectancy: 80.69 years <br>GDP per capita: 28816.58499 $ <br>Population: 125.956499 million",
"Country: Japan <br>Life Expectancy: 82.0 years <br>GDP per capita: 28604.5919 $ <br>Population: 127.065841 million",
"Country: Japan <br>Life Expectancy: 82.603 years <br>GDP per capita: 31656.06806 $ <br>Population: 127.467972 million"
],
"y": [
3216.956347,
4317.694365,
6576.649461,
9847.788606999999,
14778.78636,
16610.37701,
19384.10571,
22375.941890000002,
26824.895109999998,
28816.58499,
28604.5919,
31656.06806
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "d6b4f4"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y6",
"ysrc": "etpinard:4362:95c723",
"textsrc": "etpinard:4362:ea4dd0",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:cdd260",
"size": [
43.158,
45.669,
48.126000000000005,
51.629,
56.528,
61.13399999999999,
63.739,
65.869,
68.015,
69.77199999999999,
71.263,
72.535
]
},
"mode": "markers",
"xaxis": "x8",
"text": [
"Country: Jordan <br>Life Expectancy: 43.158 years <br>GDP per capita: 1546.907807 $ <br>Population: 0.607914 million",
"Country: Jordan <br>Life Expectancy: 45.669 years <br>GDP per capita: 1886.080591 $ <br>Population: 0.746559 million",
"Country: Jordan <br>Life Expectancy: 48.126 years <br>GDP per capita: 2348.009158 $ <br>Population: 0.933559 million",
"Country: Jordan <br>Life Expectancy: 51.629 years <br>GDP per capita: 2741.796252 $ <br>Population: 1.255058 million",
"Country: Jordan <br>Life Expectancy: 56.528 years <br>GDP per capita: 2110.856309 $ <br>Population: 1.613551 million",
"Country: Jordan <br>Life Expectancy: 61.134 years <br>GDP per capita: 2852.351568 $ <br>Population: 1.937652 million",
"Country: Jordan <br>Life Expectancy: 63.739 years <br>GDP per capita: 4161.415959 $ <br>Population: 2.347031 million",
"Country: Jordan <br>Life Expectancy: 65.869 years <br>GDP per capita: 4448.679912 $ <br>Population: 2.820042 million",
"Country: Jordan <br>Life Expectancy: 68.015 years <br>GDP per capita: 3431.593647 $ <br>Population: 3.867409 million",
"Country: Jordan <br>Life Expectancy: 69.772 years <br>GDP per capita: 3645.379572 $ <br>Population: 4.526235 million",
"Country: Jordan <br>Life Expectancy: 71.263 years <br>GDP per capita: 3844.917194 $ <br>Population: 5.30747 million",
"Country: Jordan <br>Life Expectancy: 72.535 years <br>GDP per capita: 4519.461171 $ <br>Population: 6.053193 million"
],
"y": [
1546.907807,
1886.080591,
2348.009158,
2741.796252,
2110.856309,
2852.351568,
4161.415959,
4448.679912,
3431.5936469999997,
3645.379572,
3844.9171939999997,
4519.461171
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "4edb47"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y6",
"ysrc": "etpinard:4362:4b5c83",
"textsrc": "etpinard:4362:f42592",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:96d3e1",
"size": [
42.27,
44.68600000000001,
47.949,
50.653999999999996,
53.559,
56.155,
58.766000000000005,
59.339,
59.285,
54.407,
50.992,
54.11
]
},
"mode": "markers",
"xaxis": "x9",
"text": [
"Country: Kenya <br>Life Expectancy: 42.27 years <br>GDP per capita: 853.540919 $ <br>Population: 6.464046 million",
"Country: Kenya <br>Life Expectancy: 44.686 years <br>GDP per capita: 944.4383152 $ <br>Population: 7.454779 million",
"Country: Kenya <br>Life Expectancy: 47.949 years <br>GDP per capita: 896.9663732 $ <br>Population: 8.678557 million",
"Country: Kenya <br>Life Expectancy: 50.654 years <br>GDP per capita: 1056.736457 $ <br>Population: 10.191512 million",
"Country: Kenya <br>Life Expectancy: 53.559 years <br>GDP per capita: 1222.359968 $ <br>Population: 12.044785 million",
"Country: Kenya <br>Life Expectancy: 56.155 years <br>GDP per capita: 1267.613204 $ <br>Population: 14.500404 million",
"Country: Kenya <br>Life Expectancy: 58.766 years <br>GDP per capita: 1348.225791 $ <br>Population: 17.661452 million",
"Country: Kenya <br>Life Expectancy: 59.339 years <br>GDP per capita: 1361.936856 $ <br>Population: 21.198082 million",
"Country: Kenya <br>Life Expectancy: 59.285 years <br>GDP per capita: 1341.921721 $ <br>Population: 25.020539 million",
"Country: Kenya <br>Life Expectancy: 54.407 years <br>GDP per capita: 1360.485021 $ <br>Population: 28.263827 million",
"Country: Kenya <br>Life Expectancy: 50.992 years <br>GDP per capita: 1287.514732 $ <br>Population: 31.386842 million",
"Country: Kenya <br>Life Expectancy: 54.11 years <br>GDP per capita: 1463.249282 $ <br>Population: 35.610177 million"
],
"y": [
853.5409189999999,
944.4383152,
896.9663732,
1056.736457,
1222.359968,
1267.613204,
1348.225791,
1361.936856,
1341.9217210000002,
1360.4850210000002,
1287.514732,
1463.249282
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "697e05"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y6",
"ysrc": "etpinard:4362:f55924",
"textsrc": "etpinard:4362:f8394f",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:61b3fb",
"size": [
50.056000000000004,
54.081,
56.656000000000006,
59.942,
63.983000000000004,
67.15899999999999,
69.1,
70.64699999999999,
69.97800000000001,
67.727,
66.66199999999999,
67.297
]
},
"mode": "markers",
"xaxis": "x10",
"text": [
"Country: Korea, Dem. Rep. <br>Life Expectancy: 50.056 years <br>GDP per capita: 1088.277758 $ <br>Population: 8.865488 million",
"Country: Korea, Dem. Rep. <br>Life Expectancy: 54.081 years <br>GDP per capita: 1571.134655 $ <br>Population: 9.411381 million",
"Country: Korea, Dem. Rep. <br>Life Expectancy: 56.656 years <br>GDP per capita: 1621.693598 $ <br>Population: 10.917494 million",
"Country: Korea, Dem. Rep. <br>Life Expectancy: 59.942 years <br>GDP per capita: 2143.540609 $ <br>Population: 12.617009 million",
"Country: Korea, Dem. Rep. <br>Life Expectancy: 63.983 years <br>GDP per capita: 3701.621503 $ <br>Population: 14.781241 million",
"Country: Korea, Dem. Rep. <br>Life Expectancy: 67.159 years <br>GDP per capita: 4106.301249 $ <br>Population: 16.32532 million",
"Country: Korea, Dem. Rep. <br>Life Expectancy: 69.1 years <br>GDP per capita: 4106.525293 $ <br>Population: 17.647518 million",
"Country: Korea, Dem. Rep. <br>Life Expectancy: 70.647 years <br>GDP per capita: 4106.492315 $ <br>Population: 19.067554 million",
"Country: Korea, Dem. Rep. <br>Life Expectancy: 69.978 years <br>GDP per capita: 3726.063507 $ <br>Population: 20.711375 million",
"Country: Korea, Dem. Rep. <br>Life Expectancy: 67.727 years <br>GDP per capita: 1690.756814 $ <br>Population: 21.585105 million",
"Country: Korea, Dem. Rep. <br>Life Expectancy: 66.662 years <br>GDP per capita: 1646.758151 $ <br>Population: 22.215365 million",
"Country: Korea, Dem. Rep. <br>Life Expectancy: 67.297 years <br>GDP per capita: 1593.06548 $ <br>Population: 23.301725 million"
],
"y": [
1088.277758,
1571.134655,
1621.693598,
2143.540609,
3701.6215030000003,
4106.301249,
4106.525293,
4106.4923149999995,
3726.063507,
1690.756814,
1646.758151,
1593.06548
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "a2618e"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y6",
"ysrc": "etpinard:4362:373afb",
"textsrc": "etpinard:4362:c50dc7",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:c5f8d3",
"size": [
47.453,
52.681000000000004,
55.292,
57.716,
62.611999999999995,
64.766,
67.123,
69.81,
72.244,
74.64699999999999,
77.045,
78.623
]
},
"mode": "markers",
"xaxis": "x11",
"text": [
"Country: Korea, Rep. <br>Life Expectancy: 47.453 years <br>GDP per capita: 1030.592226 $ <br>Population: 20.947571 million",
"Country: Korea, Rep. <br>Life Expectancy: 52.681 years <br>GDP per capita: 1487.593537 $ <br>Population: 22.611552 million",
"Country: Korea, Rep. <br>Life Expectancy: 55.292 years <br>GDP per capita: 1536.344387 $ <br>Population: 26.420307 million",
"Country: Korea, Rep. <br>Life Expectancy: 57.716 years <br>GDP per capita: 2029.228142 $ <br>Population: 30.131 million",
"Country: Korea, Rep. <br>Life Expectancy: 62.612 years <br>GDP per capita: 3030.87665 $ <br>Population: 33.505 million",
"Country: Korea, Rep. <br>Life Expectancy: 64.766 years <br>GDP per capita: 4657.22102 $ <br>Population: 36.436 million",
"Country: Korea, Rep. <br>Life Expectancy: 67.123 years <br>GDP per capita: 5622.942464 $ <br>Population: 39.326 million",
"Country: Korea, Rep. <br>Life Expectancy: 69.81 years <br>GDP per capita: 8533.088805 $ <br>Population: 41.622 million",
"Country: Korea, Rep. <br>Life Expectancy: 72.244 years <br>GDP per capita: 12104.27872 $ <br>Population: 43.80545 million",
"Country: Korea, Rep. <br>Life Expectancy: 74.647 years <br>GDP per capita: 15993.52796 $ <br>Population: 46.173816 million",
"Country: Korea, Rep. <br>Life Expectancy: 77.045 years <br>GDP per capita: 19233.98818 $ <br>Population: 47.96915 million",
"Country: Korea, Rep. <br>Life Expectancy: 78.623 years <br>GDP per capita: 23348.13973 $ <br>Population: 49.04479 million"
],
"y": [
1030.592226,
1487.593537,
1536.3443869999999,
2029.2281420000002,
3030.87665,
4657.22102,
5622.942464,
8533.088805,
12104.27872,
15993.52796,
19233.98818,
23348.139730000003
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "5876a9"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y6",
"ysrc": "etpinard:4362:06e5ea",
"textsrc": "etpinard:4362:ecbf84",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:f86b9f",
"size": [
55.565,
58.033,
60.47,
64.624,
67.712,
69.343,
71.309,
74.17399999999999,
75.19,
76.156,
76.904,
77.58800000000001
]
},
"mode": "markers",
"xaxis": "x12",
"text": [
"Country: Kuwait <br>Life Expectancy: 55.565 years <br>GDP per capita: 108382.3529 $ <br>Population: 0.16 million",
"Country: Kuwait <br>Life Expectancy: 58.033 years <br>GDP per capita: 113523.1329 $ <br>Population: 0.212846 million",
"Country: Kuwait <br>Life Expectancy: 60.47 years <br>GDP per capita: 95458.11176 $ <br>Population: 0.358266 million",
"Country: Kuwait <br>Life Expectancy: 64.624 years <br>GDP per capita: 80894.88326 $ <br>Population: 0.575003 million",
"Country: Kuwait <br>Life Expectancy: 67.712 years <br>GDP per capita: 109347.867 $ <br>Population: 0.841934 million",
"Country: Kuwait <br>Life Expectancy: 69.343 years <br>GDP per capita: 59265.47714 $ <br>Population: 1.140357 million",
"Country: Kuwait <br>Life Expectancy: 71.309 years <br>GDP per capita: 31354.03573 $ <br>Population: 1.497494 million",
"Country: Kuwait <br>Life Expectancy: 74.174 years <br>GDP per capita: 28118.42998 $ <br>Population: 1.891487 million",
"Country: Kuwait <br>Life Expectancy: 75.19 years <br>GDP per capita: 34932.91959 $ <br>Population: 1.418095 million",
"Country: Kuwait <br>Life Expectancy: 76.156 years <br>GDP per capita: 40300.61996 $ <br>Population: 1.765345 million",
"Country: Kuwait <br>Life Expectancy: 76.904 years <br>GDP per capita: 35110.10566 $ <br>Population: 2.111561 million",
"Country: Kuwait <br>Life Expectancy: 77.588 years <br>GDP per capita: 47306.98978 $ <br>Population: 2.505559 million"
],
"y": [
108382.3529,
113523.1329,
95458.11176,
80894.88326,
109347.867,
59265.477139999995,
31354.03573,
28118.42998,
34932.91959,
40300.61996,
35110.10566,
47306.98978
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "a98394"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y7",
"ysrc": "etpinard:4362:94385e",
"textsrc": "etpinard:4362:949cdd",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:af0edc",
"size": [
55.928000000000004,
59.489,
62.093999999999994,
63.87,
65.421,
66.09899999999999,
66.983,
67.926,
69.292,
70.265,
71.028,
71.993
]
},
"mode": "markers",
"xaxis": "x",
"text": [
"Country: Lebanon <br>Life Expectancy: 55.928 years <br>GDP per capita: 4834.804067 $ <br>Population: 1.439529 million",
"Country: Lebanon <br>Life Expectancy: 59.489 years <br>GDP per capita: 6089.786934 $ <br>Population: 1.647412 million",
"Country: Lebanon <br>Life Expectancy: 62.094 years <br>GDP per capita: 5714.560611 $ <br>Population: 1.886848 million",
"Country: Lebanon <br>Life Expectancy: 63.87 years <br>GDP per capita: 6006.983042 $ <br>Population: 2.186894 million",
"Country: Lebanon <br>Life Expectancy: 65.421 years <br>GDP per capita: 7486.384341 $ <br>Population: 2.680018 million",
"Country: Lebanon <br>Life Expectancy: 66.099 years <br>GDP per capita: 8659.696836 $ <br>Population: 3.115787 million",
"Country: Lebanon <br>Life Expectancy: 66.983 years <br>GDP per capita: 7640.519521 $ <br>Population: 3.086876 million",
"Country: Lebanon <br>Life Expectancy: 67.926 years <br>GDP per capita: 5377.091329 $ <br>Population: 3.089353 million",
"Country: Lebanon <br>Life Expectancy: 69.292 years <br>GDP per capita: 6890.806854 $ <br>Population: 3.219994 million",
"Country: Lebanon <br>Life Expectancy: 70.265 years <br>GDP per capita: 8754.96385 $ <br>Population: 3.430388 million",
"Country: Lebanon <br>Life Expectancy: 71.028 years <br>GDP per capita: 9313.93883 $ <br>Population: 3.67778 million",
"Country: Lebanon <br>Life Expectancy: 71.993 years <br>GDP per capita: 10461.05868 $ <br>Population: 3.921278 million"
],
"y": [
4834.804067,
6089.786934000001,
5714.560611,
6006.983042,
7486.384341,
8659.696836,
7640.519520999999,
5377.091329,
6890.806854,
8754.96385,
9313.93883,
10461.05868
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "123e8b"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y7",
"ysrc": "etpinard:4362:2daa5a",
"textsrc": "etpinard:4362:f9fe15",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:89b01f",
"size": [
42.138000000000005,
45.047,
47.747,
48.492,
49.766999999999996,
52.208,
55.078,
57.18,
59.685,
55.558,
44.593,
42.592
]
},
"mode": "markers",
"xaxis": "x2",
"text": [
"Country: Lesotho <br>Life Expectancy: 42.138 years <br>GDP per capita: 298.8462121 $ <br>Population: 0.748747 million",
"Country: Lesotho <br>Life Expectancy: 45.047 years <br>GDP per capita: 335.9971151 $ <br>Population: 0.813338 million",
"Country: Lesotho <br>Life Expectancy: 47.747 years <br>GDP per capita: 411.8006266 $ <br>Population: 0.893143 million",
"Country: Lesotho <br>Life Expectancy: 48.492 years <br>GDP per capita: 498.6390265 $ <br>Population: 0.99638 million",
"Country: Lesotho <br>Life Expectancy: 49.767 years <br>GDP per capita: 496.5815922 $ <br>Population: 1.116779 million",
"Country: Lesotho <br>Life Expectancy: 52.208 years <br>GDP per capita: 745.3695408 $ <br>Population: 1.251524 million",
"Country: Lesotho <br>Life Expectancy: 55.078 years <br>GDP per capita: 797.2631074 $ <br>Population: 1.411807 million",
"Country: Lesotho <br>Life Expectancy: 57.18 years <br>GDP per capita: 773.9932141 $ <br>Population: 1.5992 million",
"Country: Lesotho <br>Life Expectancy: 59.685 years <br>GDP per capita: 977.4862725 $ <br>Population: 1.803195 million",
"Country: Lesotho <br>Life Expectancy: 55.558 years <br>GDP per capita: 1186.147994 $ <br>Population: 1.982823 million",
"Country: Lesotho <br>Life Expectancy: 44.593 years <br>GDP per capita: 1275.184575 $ <br>Population: 2.046772 million",
"Country: Lesotho <br>Life Expectancy: 42.592 years <br>GDP per capita: 1569.331442 $ <br>Population: 2.012649 million"
],
"y": [
298.8462121,
335.99711510000003,
411.80062660000004,
498.63902649999994,
496.58159220000005,
745.3695408,
797.2631074,
773.9932140999999,
977.4862724999999,
1186.147994,
1275.184575,
1569.331442
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "916020"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y7",
"ysrc": "etpinard:4362:6e1a4d",
"textsrc": "etpinard:4362:20117b",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:69b2bd",
"size": [
38.48,
39.486,
40.501999999999995,
41.536,
42.614,
43.763999999999996,
44.852,
46.027,
40.802,
42.221000000000004,
43.753,
45.678000000000004
]
},
"mode": "markers",
"xaxis": "x3",
"text": [
"Country: Liberia <br>Life Expectancy: 38.48 years <br>GDP per capita: 575.5729961 $ <br>Population: 0.863308 million",
"Country: Liberia <br>Life Expectancy: 39.486 years <br>GDP per capita: 620.9699901 $ <br>Population: 0.97595 million",
"Country: Liberia <br>Life Expectancy: 40.502 years <br>GDP per capita: 634.1951625 $ <br>Population: 1.112796 million",
"Country: Liberia <br>Life Expectancy: 41.536 years <br>GDP per capita: 713.6036483 $ <br>Population: 1.279406 million",
"Country: Liberia <br>Life Expectancy: 42.614 years <br>GDP per capita: 803.0054535 $ <br>Population: 1.482628 million",
"Country: Liberia <br>Life Expectancy: 43.764 years <br>GDP per capita: 640.3224383 $ <br>Population: 1.703617 million",
"Country: Liberia <br>Life Expectancy: 44.852 years <br>GDP per capita: 572.1995694 $ <br>Population: 1.956875 million",
"Country: Liberia <br>Life Expectancy: 46.027 years <br>GDP per capita: 506.1138573 $ <br>Population: 2.269414 million",
"Country: Liberia <br>Life Expectancy: 40.802 years <br>GDP per capita: 636.6229191 $ <br>Population: 1.912974 million",
"Country: Liberia <br>Life Expectancy: 42.221 years <br>GDP per capita: 609.1739508 $ <br>Population: 2.200725 million",
"Country: Liberia <br>Life Expectancy: 43.753 years <br>GDP per capita: 531.4823679 $ <br>Population: 2.814651 million",
"Country: Liberia <br>Life Expectancy: 45.678 years <br>GDP per capita: 414.5073415 $ <br>Population: 3.193942 million"
],
"y": [
575.5729961000001,
620.9699901,
634.1951625,
713.6036482999999,
803.0054535,
640.3224382999999,
572.1995694,
506.1138573,
636.6229191000001,
609.1739508,
531.4823679,
414.5073415
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "5e8212"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y7",
"ysrc": "etpinard:4362:084e7f",
"textsrc": "etpinard:4362:ae9e36",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:336b13",
"size": [
42.723,
45.288999999999994,
47.808,
50.227,
52.773,
57.442,
62.155,
66.234,
68.755,
71.555,
72.737,
73.952
]
},
"mode": "markers",
"xaxis": "x4",
"text": [
"Country: Libya <br>Life Expectancy: 42.723 years <br>GDP per capita: 2387.54806 $ <br>Population: 1.019729 million",
"Country: Libya <br>Life Expectancy: 45.289 years <br>GDP per capita: 3448.284395 $ <br>Population: 1.201578 million",
"Country: Libya <br>Life Expectancy: 47.808 years <br>GDP per capita: 6757.030816 $ <br>Population: 1.441863 million",
"Country: Libya <br>Life Expectancy: 50.227 years <br>GDP per capita: 18772.75169 $ <br>Population: 1.759224 million",
"Country: Libya <br>Life Expectancy: 52.773 years <br>GDP per capita: 21011.49721 $ <br>Population: 2.183877 million",
"Country: Libya <br>Life Expectancy: 57.442 years <br>GDP per capita: 21951.21176 $ <br>Population: 2.721783 million",
"Country: Libya <br>Life Expectancy: 62.155 years <br>GDP per capita: 17364.27538 $ <br>Population: 3.344074 million",
"Country: Libya <br>Life Expectancy: 66.234 years <br>GDP per capita: 11770.5898 $ <br>Population: 3.799845 million",
"Country: Libya <br>Life Expectancy: 68.755 years <br>GDP per capita: 9640.138501 $ <br>Population: 4.364501 million",
"Country: Libya <br>Life Expectancy: 71.555 years <br>GDP per capita: 9467.446056 $ <br>Population: 4.75967 million",
"Country: Libya <br>Life Expectancy: 72.737 years <br>GDP per capita: 9534.677467 $ <br>Population: 5.368585 million",
"Country: Libya <br>Life Expectancy: 73.952 years <br>GDP per capita: 12057.49928 $ <br>Population: 6.036914 million"
],
"y": [
2387.54806,
3448.284395,
6757.0308159999995,
18772.75169,
21011.497209999998,
21951.21176,
17364.275380000003,
11770.5898,
9640.138501000001,
9467.446056,
9534.677467,
12057.49928
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "7d3f18"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y7",
"ysrc": "etpinard:4362:232ef9",
"textsrc": "etpinard:4362:f62356",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:201c62",
"size": [
36.681,
38.865,
40.848,
42.881,
44.851000000000006,
46.881,
48.968999999999994,
49.35,
52.214,
54.978,
57.286,
59.443000000000005
]
},
"mode": "markers",
"xaxis": "x5",
"text": [
"Country: Madagascar <br>Life Expectancy: 36.681 years <br>GDP per capita: 1443.011715 $ <br>Population: 4.762912 million",
"Country: Madagascar <br>Life Expectancy: 38.865 years <br>GDP per capita: 1589.20275 $ <br>Population: 5.181679 million",
"Country: Madagascar <br>Life Expectancy: 40.848 years <br>GDP per capita: 1643.38711 $ <br>Population: 5.703324 million",
"Country: Madagascar <br>Life Expectancy: 42.881 years <br>GDP per capita: 1634.047282 $ <br>Population: 6.334556 million",
"Country: Madagascar <br>Life Expectancy: 44.851 years <br>GDP per capita: 1748.562982 $ <br>Population: 7.08243 million",
"Country: Madagascar <br>Life Expectancy: 46.881 years <br>GDP per capita: 1544.228586 $ <br>Population: 8.007166 million",
"Country: Madagascar <br>Life Expectancy: 48.969 years <br>GDP per capita: 1302.878658 $ <br>Population: 9.171477 million",
"Country: Madagascar <br>Life Expectancy: 49.35 years <br>GDP per capita: 1155.441948 $ <br>Population: 10.568642 million",
"Country: Madagascar <br>Life Expectancy: 52.214 years <br>GDP per capita: 1040.67619 $ <br>Population: 12.210395 million",
"Country: Madagascar <br>Life Expectancy: 54.978 years <br>GDP per capita: 986.2958956 $ <br>Population: 14.165114 million",
"Country: Madagascar <br>Life Expectancy: 57.286 years <br>GDP per capita: 894.6370822 $ <br>Population: 16.473477 million",
"Country: Madagascar <br>Life Expectancy: 59.443 years <br>GDP per capita: 1044.770126 $ <br>Population: 19.167654 million"
],
"y": [
1443.011715,
1589.20275,
1643.38711,
1634.047282,
1748.562982,
1544.228586,
1302.878658,
1155.4419480000001,
1040.6761900000001,
986.2958956,
894.6370822,
1044.770126
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "619c11"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y7",
"ysrc": "etpinard:4362:9e5d07",
"textsrc": "etpinard:4362:75a5c8",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:fcb96b",
"size": [
36.256,
37.207,
38.41,
39.486999999999995,
41.766000000000005,
43.766999999999996,
45.641999999999996,
47.457,
49.42,
47.495,
45.00899999999999,
48.303000000000004
]
},
"mode": "markers",
"xaxis": "x6",
"text": [
"Country: Malawi <br>Life Expectancy: 36.256 years <br>GDP per capita: 369.1650802 $ <br>Population: 2.917802 million",
"Country: Malawi <br>Life Expectancy: 37.207 years <br>GDP per capita: 416.3698064 $ <br>Population: 3.221238 million",
"Country: Malawi <br>Life Expectancy: 38.41 years <br>GDP per capita: 427.9010856 $ <br>Population: 3.628608 million",
"Country: Malawi <br>Life Expectancy: 39.487 years <br>GDP per capita: 495.5147806 $ <br>Population: 4.147252 million",
"Country: Malawi <br>Life Expectancy: 41.766 years <br>GDP per capita: 584.6219709 $ <br>Population: 4.730997 million",
"Country: Malawi <br>Life Expectancy: 43.767 years <br>GDP per capita: 663.2236766 $ <br>Population: 5.637246 million",
"Country: Malawi <br>Life Expectancy: 45.642 years <br>GDP per capita: 632.8039209 $ <br>Population: 6.502825 million",
"Country: Malawi <br>Life Expectancy: 47.457 years <br>GDP per capita: 635.5173634 $ <br>Population: 7.824747 million",
"Country: Malawi <br>Life Expectancy: 49.42 years <br>GDP per capita: 563.2000145 $ <br>Population: 10.014249 million",
"Country: Malawi <br>Life Expectancy: 47.495 years <br>GDP per capita: 692.2758103 $ <br>Population: 10.419991 million",
"Country: Malawi <br>Life Expectancy: 45.009 years <br>GDP per capita: 665.4231186 $ <br>Population: 11.824495 million",
"Country: Malawi <br>Life Expectancy: 48.303 years <br>GDP per capita: 759.3499101 $ <br>Population: 13.327079 million"
],
"y": [
369.1650802,
416.36980639999996,
427.90108560000004,
495.5147806,
584.6219709,
663.2236766,
632.8039209,
635.5173633999999,
563.2000145,
692.2758102999999,
665.4231186000001,
759.3499101
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "6acabe"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y7",
"ysrc": "etpinard:4362:81f165",
"textsrc": "etpinard:4362:22328a",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:6c1850",
"size": [
48.463,
52.102,
55.736999999999995,
59.371,
63.01,
65.256,
68,
69.5,
70.693,
71.938,
73.044,
74.241
]
},
"mode": "markers",
"xaxis": "x7",
"text": [
"Country: Malaysia <br>Life Expectancy: 48.463 years <br>GDP per capita: 1831.132894 $ <br>Population: 6.748378 million",
"Country: Malaysia <br>Life Expectancy: 52.102 years <br>GDP per capita: 1810.066992 $ <br>Population: 7.739235 million",
"Country: Malaysia <br>Life Expectancy: 55.737 years <br>GDP per capita: 2036.884944 $ <br>Population: 8.906385 million",
"Country: Malaysia <br>Life Expectancy: 59.371 years <br>GDP per capita: 2277.742396 $ <br>Population: 10.154878 million",
"Country: Malaysia <br>Life Expectancy: 63.01 years <br>GDP per capita: 2849.09478 $ <br>Population: 11.441462 million",
"Country: Malaysia <br>Life Expectancy: 65.256 years <br>GDP per capita: 3827.921571 $ <br>Population: 12.845381 million",
"Country: Malaysia <br>Life Expectancy: 68.0 years <br>GDP per capita: 4920.355951 $ <br>Population: 14.441916 million",
"Country: Malaysia <br>Life Expectancy: 69.5 years <br>GDP per capita: 5249.802653 $ <br>Population: 16.331785 million",
"Country: Malaysia <br>Life Expectancy: 70.693 years <br>GDP per capita: 7277.912802 $ <br>Population: 18.319502 million",
"Country: Malaysia <br>Life Expectancy: 71.938 years <br>GDP per capita: 10132.90964 $ <br>Population: 20.476091 million",
"Country: Malaysia <br>Life Expectancy: 73.044 years <br>GDP per capita: 10206.97794 $ <br>Population: 22.662365 million",
"Country: Malaysia <br>Life Expectancy: 74.241 years <br>GDP per capita: 12451.6558 $ <br>Population: 24.821286 million"
],
"y": [
1831.132894,
1810.0669920000003,
2036.8849440000001,
2277.742396,
2849.09478,
3827.9215710000003,
4920.355951,
5249.802653,
7277.912802,
10132.90964,
10206.97794,
12451.6558
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "e7d7a8"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y7",
"ysrc": "etpinard:4362:42440d",
"textsrc": "etpinard:4362:0306fa",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:9d4333",
"size": [
33.685,
35.306999999999995,
36.936,
38.486999999999995,
39.977,
41.714,
43.916000000000004,
46.364,
48.388000000000005,
49.903,
51.818000000000005,
54.467
]
},
"mode": "markers",
"xaxis": "x8",
"text": [
"Country: Mali <br>Life Expectancy: 33.685 years <br>GDP per capita: 452.3369807 $ <br>Population: 3.838168 million",
"Country: Mali <br>Life Expectancy: 35.307 years <br>GDP per capita: 490.3821867 $ <br>Population: 4.241884 million",
"Country: Mali <br>Life Expectancy: 36.936 years <br>GDP per capita: 496.1743428 $ <br>Population: 4.690372 million",
"Country: Mali <br>Life Expectancy: 38.487 years <br>GDP per capita: 545.0098873 $ <br>Population: 5.212416 million",
"Country: Mali <br>Life Expectancy: 39.977 years <br>GDP per capita: 581.3688761 $ <br>Population: 5.828158 million",
"Country: Mali <br>Life Expectancy: 41.714 years <br>GDP per capita: 686.3952693 $ <br>Population: 6.491649 million",
"Country: Mali <br>Life Expectancy: 43.916 years <br>GDP per capita: 618.0140641 $ <br>Population: 6.998256 million",
"Country: Mali <br>Life Expectancy: 46.364 years <br>GDP per capita: 684.1715576 $ <br>Population: 7.634008 million",
"Country: Mali <br>Life Expectancy: 48.388 years <br>GDP per capita: 739.014375 $ <br>Population: 8.416215 million",
"Country: Mali <br>Life Expectancy: 49.903 years <br>GDP per capita: 790.2579846 $ <br>Population: 9.384984 million",
"Country: Mali <br>Life Expectancy: 51.818 years <br>GDP per capita: 951.4097518 $ <br>Population: 10.580176 million",
"Country: Mali <br>Life Expectancy: 54.467 years <br>GDP per capita: 1042.581557 $ <br>Population: 12.031795 million"
],
"y": [
452.3369807,
490.3821867,
496.17434280000003,
545.0098873,
581.3688761,
686.3952693,
618.0140640999999,
684.1715576,
739.014375,
790.2579846,
951.4097517999999,
1042.581557
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "a2c80a"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y7",
"ysrc": "etpinard:4362:d439e7",
"textsrc": "etpinard:4362:0245b0",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:887762",
"size": [
40.543,
42.338,
44.248000000000005,
46.288999999999994,
48.437,
50.852,
53.599,
56.145,
58.333,
60.43,
62.247,
64.164
]
},
"mode": "markers",
"xaxis": "x9",
"text": [
"Country: Mauritania <br>Life Expectancy: 40.543 years <br>GDP per capita: 743.1159097 $ <br>Population: 1.022556 million",
"Country: Mauritania <br>Life Expectancy: 42.338 years <br>GDP per capita: 846.1202613 $ <br>Population: 1.076852 million",
"Country: Mauritania <br>Life Expectancy: 44.248 years <br>GDP per capita: 1055.896036 $ <br>Population: 1.146757 million",
"Country: Mauritania <br>Life Expectancy: 46.289 years <br>GDP per capita: 1421.145193 $ <br>Population: 1.230542 million",
"Country: Mauritania <br>Life Expectancy: 48.437 years <br>GDP per capita: 1586.851781 $ <br>Population: 1.332786 million",
"Country: Mauritania <br>Life Expectancy: 50.852 years <br>GDP per capita: 1497.492223 $ <br>Population: 1.456688 million",
"Country: Mauritania <br>Life Expectancy: 53.599 years <br>GDP per capita: 1481.150189 $ <br>Population: 1.622136 million",
"Country: Mauritania <br>Life Expectancy: 56.145 years <br>GDP per capita: 1421.603576 $ <br>Population: 1.84124 million",
"Country: Mauritania <br>Life Expectancy: 58.333 years <br>GDP per capita: 1361.369784 $ <br>Population: 2.119465 million",
"Country: Mauritania <br>Life Expectancy: 60.43 years <br>GDP per capita: 1483.136136 $ <br>Population: 2.444741 million",
"Country: Mauritania <br>Life Expectancy: 62.247 years <br>GDP per capita: 1579.019543 $ <br>Population: 2.828858 million",
"Country: Mauritania <br>Life Expectancy: 64.164 years <br>GDP per capita: 1803.151496 $ <br>Population: 3.270065 million"
],
"y": [
743.1159097,
846.1202613,
1055.8960359999999,
1421.145193,
1586.851781,
1497.492223,
1481.150189,
1421.603576,
1361.369784,
1483.1361359999999,
1579.0195429999999,
1803.1514960000002
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "827a62"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y7",
"ysrc": "etpinard:4362:af1c68",
"textsrc": "etpinard:4362:468523",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:afe0c0",
"size": [
50.986000000000004,
58.089,
60.246,
61.556999999999995,
62.943999999999996,
64.93,
66.711,
68.74,
69.745,
70.736,
71.954,
72.801
]
},
"mode": "markers",
"xaxis": "x10",
"text": [
"Country: Mauritius <br>Life Expectancy: 50.986 years <br>GDP per capita: 1967.955707 $ <br>Population: 0.516556 million",
"Country: Mauritius <br>Life Expectancy: 58.089 years <br>GDP per capita: 2034.037981 $ <br>Population: 0.609816 million",
"Country: Mauritius <br>Life Expectancy: 60.246 years <br>GDP per capita: 2529.067487 $ <br>Population: 0.701016 million",
"Country: Mauritius <br>Life Expectancy: 61.557 years <br>GDP per capita: 2475.387562 $ <br>Population: 0.789309 million",
"Country: Mauritius <br>Life Expectancy: 62.944 years <br>GDP per capita: 2575.484158 $ <br>Population: 0.851334 million",
"Country: Mauritius <br>Life Expectancy: 64.93 years <br>GDP per capita: 3710.982963 $ <br>Population: 0.913025 million",
"Country: Mauritius <br>Life Expectancy: 66.711 years <br>GDP per capita: 3688.037739 $ <br>Population: 0.99204 million",
"Country: Mauritius <br>Life Expectancy: 68.74 years <br>GDP per capita: 4783.586903 $ <br>Population: 1.042663 million",
"Country: Mauritius <br>Life Expectancy: 69.745 years <br>GDP per capita: 6058.253846 $ <br>Population: 1.096202 million",
"Country: Mauritius <br>Life Expectancy: 70.736 years <br>GDP per capita: 7425.705295 $ <br>Population: 1.149818 million",
"Country: Mauritius <br>Life Expectancy: 71.954 years <br>GDP per capita: 9021.815894 $ <br>Population: 1.200206 million",
"Country: Mauritius <br>Life Expectancy: 72.801 years <br>GDP per capita: 10956.99112 $ <br>Population: 1.250882 million"
],
"y": [
1967.955707,
2034.037981,
2529.0674870000003,
2475.387562,
2575.4841579999998,
3710.9829630000004,
3688.037739,
4783.586903,
6058.2538460000005,
7425.705295000001,
9021.815894,
10956.99112
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "9c26eb"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y7",
"ysrc": "etpinard:4362:bde0bc",
"textsrc": "etpinard:4362:d60f84",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:5fbf56",
"size": [
50.788999999999994,
55.19,
58.299,
60.11,
62.361000000000004,
65.032,
67.405,
69.498,
71.455,
73.67,
74.902,
76.195
]
},
"mode": "markers",
"xaxis": "x11",
"text": [
"Country: Mexico <br>Life Expectancy: 50.789 years <br>GDP per capita: 3478.125529 $ <br>Population: 30.144317 million",
"Country: Mexico <br>Life Expectancy: 55.19 years <br>GDP per capita: 4131.546641 $ <br>Population: 35.015548 million",
"Country: Mexico <br>Life Expectancy: 58.299 years <br>GDP per capita: 4581.609385 $ <br>Population: 41.121485 million",
"Country: Mexico <br>Life Expectancy: 60.11 years <br>GDP per capita: 5754.733883 $ <br>Population: 47.995559 million",
"Country: Mexico <br>Life Expectancy: 62.361 years <br>GDP per capita: 6809.40669 $ <br>Population: 55.984294 million",
"Country: Mexico <br>Life Expectancy: 65.032 years <br>GDP per capita: 7674.929108 $ <br>Population: 63.759976 million",
"Country: Mexico <br>Life Expectancy: 67.405 years <br>GDP per capita: 9611.147541 $ <br>Population: 71.640904 million",
"Country: Mexico <br>Life Expectancy: 69.498 years <br>GDP per capita: 8688.156003 $ <br>Population: 80.122492 million",
"Country: Mexico <br>Life Expectancy: 71.455 years <br>GDP per capita: 9472.384295 $ <br>Population: 88.11103 million",
"Country: Mexico <br>Life Expectancy: 73.67 years <br>GDP per capita: 9767.29753 $ <br>Population: 95.895146 million",
"Country: Mexico <br>Life Expectancy: 74.902 years <br>GDP per capita: 10742.44053 $ <br>Population: 102.479927 million",
"Country: Mexico <br>Life Expectancy: 76.195 years <br>GDP per capita: 11977.57496 $ <br>Population: 108.700891 million"
],
"y": [
3478.125529,
4131.546641,
4581.609385,
5754.733883,
6809.406690000001,
7674.929108,
9611.147541,
8688.156003,
9472.384295,
9767.29753,
10742.44053,
11977.57496
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "df9e73"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y7",
"ysrc": "etpinard:4362:f0342a",
"textsrc": "etpinard:4362:19ab72",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:41ca61",
"size": [
42.244,
45.248000000000005,
48.251000000000005,
51.253,
53.754,
55.49100000000001,
57.489,
60.222,
61.271,
63.625,
65.033,
66.803
]
},
"mode": "markers",
"xaxis": "x12",
"text": [
"Country: Mongolia <br>Life Expectancy: 42.244 years <br>GDP per capita: 786.5668575 $ <br>Population: 0.800663 million",
"Country: Mongolia <br>Life Expectancy: 45.248 years <br>GDP per capita: 912.6626085 $ <br>Population: 0.882134 million",
"Country: Mongolia <br>Life Expectancy: 48.251 years <br>GDP per capita: 1056.353958 $ <br>Population: 1.01028 million",
"Country: Mongolia <br>Life Expectancy: 51.253 years <br>GDP per capita: 1226.04113 $ <br>Population: 1.1495 million",
"Country: Mongolia <br>Life Expectancy: 53.754 years <br>GDP per capita: 1421.741975 $ <br>Population: 1.3205 million",
"Country: Mongolia <br>Life Expectancy: 55.491 years <br>GDP per capita: 1647.511665 $ <br>Population: 1.528 million",
"Country: Mongolia <br>Life Expectancy: 57.489 years <br>GDP per capita: 2000.603139 $ <br>Population: 1.756032 million",
"Country: Mongolia <br>Life Expectancy: 60.222 years <br>GDP per capita: 2338.008304 $ <br>Population: 2.015133 million",
"Country: Mongolia <br>Life Expectancy: 61.271 years <br>GDP per capita: 1785.402016 $ <br>Population: 2.312802 million",
"Country: Mongolia <br>Life Expectancy: 63.625 years <br>GDP per capita: 1902.2521 $ <br>Population: 2.494803 million",
"Country: Mongolia <br>Life Expectancy: 65.033 years <br>GDP per capita: 2140.739323 $ <br>Population: 2.674234 million",
"Country: Mongolia <br>Life Expectancy: 66.803 years <br>GDP per capita: 3095.772271 $ <br>Population: 2.874127 million"
],
"y": [
786.5668575,
912.6626085,
1056.353958,
1226.04113,
1421.741975,
1647.511665,
2000.603139,
2338.008304,
1785.402016,
1902.2521,
2140.7393230000002,
3095.7722710000003
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "f28a0a"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y8",
"ysrc": "etpinard:4362:f04c52",
"textsrc": "etpinard:4362:fad3c0",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:905528",
"size": [
59.163999999999994,
61.448,
63.728,
67.178,
70.63600000000001,
73.066,
74.101,
74.865,
75.435,
75.445,
73.98100000000001,
74.543
]
},
"mode": "markers",
"xaxis": "x",
"text": [
"Country: Montenegro <br>Life Expectancy: 59.164 years <br>GDP per capita: 2647.585601 $ <br>Population: 0.413834 million",
"Country: Montenegro <br>Life Expectancy: 61.448 years <br>GDP per capita: 3682.259903 $ <br>Population: 0.442829 million",
"Country: Montenegro <br>Life Expectancy: 63.728 years <br>GDP per capita: 4649.593785 $ <br>Population: 0.474528 million",
"Country: Montenegro <br>Life Expectancy: 67.178 years <br>GDP per capita: 5907.850937 $ <br>Population: 0.501035 million",
"Country: Montenegro <br>Life Expectancy: 70.636 years <br>GDP per capita: 7778.414017 $ <br>Population: 0.527678 million",
"Country: Montenegro <br>Life Expectancy: 73.066 years <br>GDP per capita: 9595.929905 $ <br>Population: 0.560073 million",
"Country: Montenegro <br>Life Expectancy: 74.101 years <br>GDP per capita: 11222.58762 $ <br>Population: 0.562548 million",
"Country: Montenegro <br>Life Expectancy: 74.865 years <br>GDP per capita: 11732.51017 $ <br>Population: 0.569473 million",
"Country: Montenegro <br>Life Expectancy: 75.435 years <br>GDP per capita: 7003.339037 $ <br>Population: 0.621621 million",
"Country: Montenegro <br>Life Expectancy: 75.445 years <br>GDP per capita: 6465.613349 $ <br>Population: 0.692651 million",
"Country: Montenegro <br>Life Expectancy: 73.981 years <br>GDP per capita: 6557.194282 $ <br>Population: 0.72023 million",
"Country: Montenegro <br>Life Expectancy: 74.543 years <br>GDP per capita: 9253.896111 $ <br>Population: 0.684736 million"
],
"y": [
2647.585601,
3682.259903,
4649.593785,
5907.850937,
7778.414017,
9595.929904999999,
11222.58762,
11732.51017,
7003.339037000001,
6465.613349,
6557.194282,
9253.896111
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "4c4b9c"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y8",
"ysrc": "etpinard:4362:02c040",
"textsrc": "etpinard:4362:87946a",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:79874c",
"size": [
42.873000000000005,
45.423,
47.924,
50.335,
52.861999999999995,
55.73,
59.65,
62.677,
65.393,
67.66,
69.615,
71.164
]
},
"mode": "markers",
"xaxis": "x2",
"text": [
"Country: Morocco <br>Life Expectancy: 42.873 years <br>GDP per capita: 1688.20357 $ <br>Population: 9.939217 million",
"Country: Morocco <br>Life Expectancy: 45.423 years <br>GDP per capita: 1642.002314 $ <br>Population: 11.40635 million",
"Country: Morocco <br>Life Expectancy: 47.924 years <br>GDP per capita: 1566.353493 $ <br>Population: 13.056604 million",
"Country: Morocco <br>Life Expectancy: 50.335 years <br>GDP per capita: 1711.04477 $ <br>Population: 14.770296 million",
"Country: Morocco <br>Life Expectancy: 52.862 years <br>GDP per capita: 1930.194975 $ <br>Population: 16.66067 million",
"Country: Morocco <br>Life Expectancy: 55.73 years <br>GDP per capita: 2370.619976 $ <br>Population: 18.396941 million",
"Country: Morocco <br>Life Expectancy: 59.65 years <br>GDP per capita: 2702.620356 $ <br>Population: 20.19873 million",
"Country: Morocco <br>Life Expectancy: 62.677 years <br>GDP per capita: 2755.046991 $ <br>Population: 22.987397 million",
"Country: Morocco <br>Life Expectancy: 65.393 years <br>GDP per capita: 2948.047252 $ <br>Population: 25.798239 million",
"Country: Morocco <br>Life Expectancy: 67.66 years <br>GDP per capita: 2982.101858 $ <br>Population: 28.529501 million",
"Country: Morocco <br>Life Expectancy: 69.615 years <br>GDP per capita: 3258.495584 $ <br>Population: 31.167783 million",
"Country: Morocco <br>Life Expectancy: 71.164 years <br>GDP per capita: 3820.17523 $ <br>Population: 33.757175 million"
],
"y": [
1688.20357,
1642.002314,
1566.353493,
1711.04477,
1930.194975,
2370.619976,
2702.620356,
2755.046991,
2948.047252,
2982.101858,
3258.495584,
3820.17523
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "59088c"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y8",
"ysrc": "etpinard:4362:47b4c1",
"textsrc": "etpinard:4362:645f3a",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:09df0b",
"size": [
31.285999999999998,
33.779,
36.161,
38.113,
40.328,
42.495,
42.795,
42.861000000000004,
44.284,
46.343999999999994,
44.026,
42.082
]
},
"mode": "markers",
"xaxis": "x3",
"text": [
"Country: Mozambique <br>Life Expectancy: 31.286 years <br>GDP per capita: 468.5260381 $ <br>Population: 6.446316 million",
"Country: Mozambique <br>Life Expectancy: 33.779 years <br>GDP per capita: 495.5868333 $ <br>Population: 7.038035 million",
"Country: Mozambique <br>Life Expectancy: 36.161 years <br>GDP per capita: 556.6863539 $ <br>Population: 7.788944 million",
"Country: Mozambique <br>Life Expectancy: 38.113 years <br>GDP per capita: 566.6691539 $ <br>Population: 8.680909 million",
"Country: Mozambique <br>Life Expectancy: 40.328 years <br>GDP per capita: 724.9178037 $ <br>Population: 9.809596 million",
"Country: Mozambique <br>Life Expectancy: 42.495 years <br>GDP per capita: 502.3197334 $ <br>Population: 11.127868 million",
"Country: Mozambique <br>Life Expectancy: 42.795 years <br>GDP per capita: 462.2114149 $ <br>Population: 12.587223 million",
"Country: Mozambique <br>Life Expectancy: 42.861 years <br>GDP per capita: 389.8761846 $ <br>Population: 12.891952 million",
"Country: Mozambique <br>Life Expectancy: 44.284 years <br>GDP per capita: 410.8968239 $ <br>Population: 13.160731 million",
"Country: Mozambique <br>Life Expectancy: 46.344 years <br>GDP per capita: 472.3460771 $ <br>Population: 16.603334 million",
"Country: Mozambique <br>Life Expectancy: 44.026 years <br>GDP per capita: 633.6179466 $ <br>Population: 18.47378 million",
"Country: Mozambique <br>Life Expectancy: 42.082 years <br>GDP per capita: 823.6856205 $ <br>Population: 19.951656 million"
],
"y": [
468.5260381,
495.5868333000001,
556.6863539,
566.6691539,
724.9178037,
502.31973339999996,
462.2114149,
389.87618460000004,
410.89682389999996,
472.34607710000006,
633.6179466,
823.6856205
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "ba5770"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y8",
"ysrc": "etpinard:4362:b18cbd",
"textsrc": "etpinard:4362:99d39c",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:2c38d2",
"size": [
36.319,
41.905,
45.108000000000004,
49.379,
53.07,
56.059,
58.056000000000004,
58.339,
59.32,
60.328,
59.908,
62.068999999999996
]
},
"mode": "markers",
"xaxis": "x4",
"text": [
"Country: Myanmar <br>Life Expectancy: 36.319 years <br>GDP per capita: 331.0 $ <br>Population: 20.092996 million",
"Country: Myanmar <br>Life Expectancy: 41.905 years <br>GDP per capita: 350.0 $ <br>Population: 21.731844 million",
"Country: Myanmar <br>Life Expectancy: 45.108 years <br>GDP per capita: 388.0 $ <br>Population: 23.634436 million",
"Country: Myanmar <br>Life Expectancy: 49.379 years <br>GDP per capita: 349.0 $ <br>Population: 25.870271 million",
"Country: Myanmar <br>Life Expectancy: 53.07 years <br>GDP per capita: 357.0 $ <br>Population: 28.46639 million",
"Country: Myanmar <br>Life Expectancy: 56.059 years <br>GDP per capita: 371.0 $ <br>Population: 31.528087 million",
"Country: Myanmar <br>Life Expectancy: 58.056 years <br>GDP per capita: 424.0 $ <br>Population: 34.680442 million",
"Country: Myanmar <br>Life Expectancy: 58.339 years <br>GDP per capita: 385.0 $ <br>Population: 38.028578 million",
"Country: Myanmar <br>Life Expectancy: 59.32 years <br>GDP per capita: 347.0 $ <br>Population: 40.546538 million",
"Country: Myanmar <br>Life Expectancy: 60.328 years <br>GDP per capita: 415.0 $ <br>Population: 43.247867 million",
"Country: Myanmar <br>Life Expectancy: 59.908 years <br>GDP per capita: 611.0 $ <br>Population: 45.598081 million",
"Country: Myanmar <br>Life Expectancy: 62.069 years <br>GDP per capita: 944.0 $ <br>Population: 47.76198 million"
],
"y": [
331,
350,
388,
349,
357,
371,
424,
385,
347,
415,
611,
944
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "410673"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y8",
"ysrc": "etpinard:4362:579fb4",
"textsrc": "etpinard:4362:4f8d6e",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:606bbe",
"size": [
41.725,
45.226000000000006,
48.386,
51.159,
53.867,
56.437,
58.968,
60.835,
61.998999999999995,
58.909,
51.479,
52.906000000000006
]
},
"mode": "markers",
"xaxis": "x5",
"text": [
"Country: Namibia <br>Life Expectancy: 41.725 years <br>GDP per capita: 2423.780443 $ <br>Population: 0.485831 million",
"Country: Namibia <br>Life Expectancy: 45.226 years <br>GDP per capita: 2621.448058 $ <br>Population: 0.54808 million",
"Country: Namibia <br>Life Expectancy: 48.386 years <br>GDP per capita: 3173.215595 $ <br>Population: 0.621392 million",
"Country: Namibia <br>Life Expectancy: 51.159 years <br>GDP per capita: 3793.694753 $ <br>Population: 0.70664 million",
"Country: Namibia <br>Life Expectancy: 53.867 years <br>GDP per capita: 3746.080948 $ <br>Population: 0.821782 million",
"Country: Namibia <br>Life Expectancy: 56.437 years <br>GDP per capita: 3876.485958 $ <br>Population: 0.977026 million",
"Country: Namibia <br>Life Expectancy: 58.968 years <br>GDP per capita: 4191.100511 $ <br>Population: 1.09901 million",
"Country: Namibia <br>Life Expectancy: 60.835 years <br>GDP per capita: 3693.731337 $ <br>Population: 1.278184 million",
"Country: Namibia <br>Life Expectancy: 61.999 years <br>GDP per capita: 3804.537999 $ <br>Population: 1.554253 million",
"Country: Namibia <br>Life Expectancy: 58.909 years <br>GDP per capita: 3899.52426 $ <br>Population: 1.774766 million",
"Country: Namibia <br>Life Expectancy: 51.479 years <br>GDP per capita: 4072.324751 $ <br>Population: 1.972153 million",
"Country: Namibia <br>Life Expectancy: 52.906 years <br>GDP per capita: 4811.060429 $ <br>Population: 2.05508 million"
],
"y": [
2423.780443,
2621.448058,
3173.215595,
3793.694753,
3746.080948,
3876.4859579999998,
4191.100511,
3693.7313369999997,
3804.537999,
3899.52426,
4072.3247509999997,
4811.060429
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "d17db4"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y8",
"ysrc": "etpinard:4362:036c5c",
"textsrc": "etpinard:4362:f7bcdf",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:513534",
"size": [
36.157,
37.686,
39.393,
41.472,
43.971000000000004,
46.748000000000005,
49.593999999999994,
52.537,
55.727,
59.426,
61.34,
63.785
]
},
"mode": "markers",
"xaxis": "x6",
"text": [
"Country: Nepal <br>Life Expectancy: 36.157 years <br>GDP per capita: 545.8657229 $ <br>Population: 9.182536 million",
"Country: Nepal <br>Life Expectancy: 37.686 years <br>GDP per capita: 597.9363558 $ <br>Population: 9.682338 million",
"Country: Nepal <br>Life Expectancy: 39.393 years <br>GDP per capita: 652.3968593 $ <br>Population: 10.332057 million",
"Country: Nepal <br>Life Expectancy: 41.472 years <br>GDP per capita: 676.4422254 $ <br>Population: 11.26169 million",
"Country: Nepal <br>Life Expectancy: 43.971 years <br>GDP per capita: 674.7881296 $ <br>Population: 12.412593 million",
"Country: Nepal <br>Life Expectancy: 46.748 years <br>GDP per capita: 694.1124398 $ <br>Population: 13.933198 million",
"Country: Nepal <br>Life Expectancy: 49.594 years <br>GDP per capita: 718.3730947 $ <br>Population: 15.796314 million",
"Country: Nepal <br>Life Expectancy: 52.537 years <br>GDP per capita: 775.6324501 $ <br>Population: 17.91718 million",
"Country: Nepal <br>Life Expectancy: 55.727 years <br>GDP per capita: 897.7403604 $ <br>Population: 20.326209 million",
"Country: Nepal <br>Life Expectancy: 59.426 years <br>GDP per capita: 1010.892138 $ <br>Population: 23.001113 million",
"Country: Nepal <br>Life Expectancy: 61.34 years <br>GDP per capita: 1057.206311 $ <br>Population: 25.873917 million",
"Country: Nepal <br>Life Expectancy: 63.785 years <br>GDP per capita: 1091.359778 $ <br>Population: 28.90179 million"
],
"y": [
545.8657228999999,
597.9363557999999,
652.3968593,
676.4422254,
674.7881296,
694.1124398,
718.3730947,
775.6324501,
897.7403604,
1010.892138,
1057.206311,
1091.359778
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "60acd4"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y8",
"ysrc": "etpinard:4362:1ef2ce",
"textsrc": "etpinard:4362:3e279a",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:f041fb",
"size": [
72.13,
72.99,
73.23,
73.82,
73.75,
75.24,
76.05,
76.83,
77.42,
78.03,
78.53,
79.762
]
},
"mode": "markers",
"xaxis": "x7",
"text": [
"Country: Netherlands <br>Life Expectancy: 72.13 years <br>GDP per capita: 8941.571858 $ <br>Population: 10.381988 million",
"Country: Netherlands <br>Life Expectancy: 72.99 years <br>GDP per capita: 11276.19344 $ <br>Population: 11.026383 million",
"Country: Netherlands <br>Life Expectancy: 73.23 years <br>GDP per capita: 12790.84956 $ <br>Population: 11.805689 million",
"Country: Netherlands <br>Life Expectancy: 73.82 years <br>GDP per capita: 15363.25136 $ <br>Population: 12.596822 million",
"Country: Netherlands <br>Life Expectancy: 73.75 years <br>GDP per capita: 18794.74567 $ <br>Population: 13.329874 million",
"Country: Netherlands <br>Life Expectancy: 75.24 years <br>GDP per capita: 21209.0592 $ <br>Population: 13.852989 million",
"Country: Netherlands <br>Life Expectancy: 76.05 years <br>GDP per capita: 21399.46046 $ <br>Population: 14.310401 million",
"Country: Netherlands <br>Life Expectancy: 76.83 years <br>GDP per capita: 23651.32361 $ <br>Population: 14.665278 million",
"Country: Netherlands <br>Life Expectancy: 77.42 years <br>GDP per capita: 26790.94961 $ <br>Population: 15.174244 million",
"Country: Netherlands <br>Life Expectancy: 78.03 years <br>GDP per capita: 30246.13063 $ <br>Population: 15.604464 million",
"Country: Netherlands <br>Life Expectancy: 78.53 years <br>GDP per capita: 33724.75778 $ <br>Population: 16.12283 million",
"Country: Netherlands <br>Life Expectancy: 79.762 years <br>GDP per capita: 36797.93332 $ <br>Population: 16.570613 million"
],
"y": [
8941.571858,
11276.193440000001,
12790.849559999999,
15363.25136,
18794.74567,
21209.0592,
21399.46046,
23651.32361,
26790.94961,
30246.13063,
33724.75778,
36797.93332
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "415afb"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Oceania",
"yaxis": "y8",
"ysrc": "etpinard:4362:488c0c",
"textsrc": "etpinard:4362:6598f6",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#9467bd",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:ba9060",
"size": [
69.39,
70.26,
71.24,
71.52,
71.89,
72.22,
73.84,
74.32,
76.33,
77.55,
79.11,
80.204
]
},
"mode": "markers",
"xaxis": "x8",
"text": [
"Country: New Zealand <br>Life Expectancy: 69.39 years <br>GDP per capita: 10556.57566 $ <br>Population: 1.994794 million",
"Country: New Zealand <br>Life Expectancy: 70.26 years <br>GDP per capita: 12247.39532 $ <br>Population: 2.229407 million",
"Country: New Zealand <br>Life Expectancy: 71.24 years <br>GDP per capita: 13175.678 $ <br>Population: 2.48855 million",
"Country: New Zealand <br>Life Expectancy: 71.52 years <br>GDP per capita: 14463.91893 $ <br>Population: 2.72815 million",
"Country: New Zealand <br>Life Expectancy: 71.89 years <br>GDP per capita: 16046.03728 $ <br>Population: 2.9291 million",
"Country: New Zealand <br>Life Expectancy: 72.22 years <br>GDP per capita: 16233.7177 $ <br>Population: 3.1649 million",
"Country: New Zealand <br>Life Expectancy: 73.84 years <br>GDP per capita: 17632.4104 $ <br>Population: 3.21065 million",
"Country: New Zealand <br>Life Expectancy: 74.32 years <br>GDP per capita: 19007.19129 $ <br>Population: 3.317166 million",
"Country: New Zealand <br>Life Expectancy: 76.33 years <br>GDP per capita: 18363.32494 $ <br>Population: 3.437674 million",
"Country: New Zealand <br>Life Expectancy: 77.55 years <br>GDP per capita: 21050.41377 $ <br>Population: 3.676187 million",
"Country: New Zealand <br>Life Expectancy: 79.11 years <br>GDP per capita: 23189.80135 $ <br>Population: 3.908037 million",
"Country: New Zealand <br>Life Expectancy: 80.204 years <br>GDP per capita: 25185.00911 $ <br>Population: 4.115771 million"
],
"y": [
10556.575659999999,
12247.39532,
13175.678,
14463.918930000002,
16046.03728,
16233.7177,
17632.4104,
19007.19129,
18363.324940000002,
21050.41377,
23189.80135,
25185.00911
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "ed71ef"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y8",
"ysrc": "etpinard:4362:1f0bc6",
"textsrc": "etpinard:4362:19c5e0",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:74783f",
"size": [
42.31399999999999,
45.431999999999995,
48.632,
51.88399999999999,
55.151,
57.47,
59.298,
62.008,
65.843,
68.426,
70.836,
72.899
]
},
"mode": "markers",
"xaxis": "x9",
"text": [
"Country: Nicaragua <br>Life Expectancy: 42.314 years <br>GDP per capita: 3112.363948 $ <br>Population: 1.16579 million",
"Country: Nicaragua <br>Life Expectancy: 45.432 years <br>GDP per capita: 3457.415947 $ <br>Population: 1.358828 million",
"Country: Nicaragua <br>Life Expectancy: 48.632 years <br>GDP per capita: 3634.364406 $ <br>Population: 1.590597 million",
"Country: Nicaragua <br>Life Expectancy: 51.884 years <br>GDP per capita: 4643.393534 $ <br>Population: 1.86549 million",
"Country: Nicaragua <br>Life Expectancy: 55.151 years <br>GDP per capita: 4688.593267 $ <br>Population: 2.182908 million",
"Country: Nicaragua <br>Life Expectancy: 57.47 years <br>GDP per capita: 5486.371089 $ <br>Population: 2.554598 million",
"Country: Nicaragua <br>Life Expectancy: 59.298 years <br>GDP per capita: 3470.338156 $ <br>Population: 2.979423 million",
"Country: Nicaragua <br>Life Expectancy: 62.008 years <br>GDP per capita: 2955.984375 $ <br>Population: 3.344353 million",
"Country: Nicaragua <br>Life Expectancy: 65.843 years <br>GDP per capita: 2170.151724 $ <br>Population: 4.017939 million",
"Country: Nicaragua <br>Life Expectancy: 68.426 years <br>GDP per capita: 2253.023004 $ <br>Population: 4.609572 million",
"Country: Nicaragua <br>Life Expectancy: 70.836 years <br>GDP per capita: 2474.548819 $ <br>Population: 5.146848 million",
"Country: Nicaragua <br>Life Expectancy: 72.899 years <br>GDP per capita: 2749.320965 $ <br>Population: 5.675356 million"
],
"y": [
3112.363948,
3457.415947,
3634.364406,
4643.393534000001,
4688.593267,
5486.371089,
3470.3381560000003,
2955.984375,
2170.151724,
2253.023004,
2474.548819,
2749.320965
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "6bc31d"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y8",
"ysrc": "etpinard:4362:905e61",
"textsrc": "etpinard:4362:fd76fd",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:dc768f",
"size": [
37.444,
38.598,
39.486999999999995,
40.118,
40.546,
41.291000000000004,
42.598,
44.555,
47.391000000000005,
51.313,
54.496,
56.867
]
},
"mode": "markers",
"xaxis": "x10",
"text": [
"Country: Niger <br>Life Expectancy: 37.444 years <br>GDP per capita: 761.879376 $ <br>Population: 3.379468 million",
"Country: Niger <br>Life Expectancy: 38.598 years <br>GDP per capita: 835.5234025 $ <br>Population: 3.692184 million",
"Country: Niger <br>Life Expectancy: 39.487 years <br>GDP per capita: 997.7661127 $ <br>Population: 4.076008 million",
"Country: Niger <br>Life Expectancy: 40.118 years <br>GDP per capita: 1054.384891 $ <br>Population: 4.534062 million",
"Country: Niger <br>Life Expectancy: 40.546 years <br>GDP per capita: 954.2092363 $ <br>Population: 5.060262 million",
"Country: Niger <br>Life Expectancy: 41.291 years <br>GDP per capita: 808.8970728 $ <br>Population: 5.682086 million",
"Country: Niger <br>Life Expectancy: 42.598 years <br>GDP per capita: 909.7221354 $ <br>Population: 6.437188 million",
"Country: Niger <br>Life Expectancy: 44.555 years <br>GDP per capita: 668.3000228 $ <br>Population: 7.332638 million",
"Country: Niger <br>Life Expectancy: 47.391 years <br>GDP per capita: 581.182725 $ <br>Population: 8.392818 million",
"Country: Niger <br>Life Expectancy: 51.313 years <br>GDP per capita: 580.3052092 $ <br>Population: 9.666252 million",
"Country: Niger <br>Life Expectancy: 54.496 years <br>GDP per capita: 601.0745012 $ <br>Population: 11.140655 million",
"Country: Niger <br>Life Expectancy: 56.867 years <br>GDP per capita: 619.6768924 $ <br>Population: 12.894865 million"
],
"y": [
761.879376,
835.5234025000001,
997.7661127,
1054.384891,
954.2092363,
808.8970727999999,
909.7221354000001,
668.3000228,
581.182725,
580.3052092,
601.0745012,
619.6768923999999
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "c63adf"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y8",
"ysrc": "etpinard:4362:8ddf38",
"textsrc": "etpinard:4362:fdfa06",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:876521",
"size": [
36.324,
37.802,
39.36,
41.04,
42.821000000000005,
44.513999999999996,
45.826,
46.886,
47.472,
47.464,
46.608000000000004,
46.858999999999995
]
},
"mode": "markers",
"xaxis": "x11",
"text": [
"Country: Nigeria <br>Life Expectancy: 36.324 years <br>GDP per capita: 1077.281856 $ <br>Population: 33.119096 million",
"Country: Nigeria <br>Life Expectancy: 37.802 years <br>GDP per capita: 1100.592563 $ <br>Population: 37.17334 million",
"Country: Nigeria <br>Life Expectancy: 39.36 years <br>GDP per capita: 1150.927478 $ <br>Population: 41.871351 million",
"Country: Nigeria <br>Life Expectancy: 41.04 years <br>GDP per capita: 1014.514104 $ <br>Population: 47.287752 million",
"Country: Nigeria <br>Life Expectancy: 42.821 years <br>GDP per capita: 1698.388838 $ <br>Population: 53.740085 million",
"Country: Nigeria <br>Life Expectancy: 44.514 years <br>GDP per capita: 1981.951806 $ <br>Population: 62.209173 million",
"Country: Nigeria <br>Life Expectancy: 45.826 years <br>GDP per capita: 1576.97375 $ <br>Population: 73.039376 million",
"Country: Nigeria <br>Life Expectancy: 46.886 years <br>GDP per capita: 1385.029563 $ <br>Population: 81.55152 million",
"Country: Nigeria <br>Life Expectancy: 47.472 years <br>GDP per capita: 1619.848217 $ <br>Population: 93.364244 million",
"Country: Nigeria <br>Life Expectancy: 47.464 years <br>GDP per capita: 1624.941275 $ <br>Population: 106.207839 million",
"Country: Nigeria <br>Life Expectancy: 46.608 years <br>GDP per capita: 1615.286395 $ <br>Population: 119.901274 million",
"Country: Nigeria <br>Life Expectancy: 46.859 years <br>GDP per capita: 2013.977305 $ <br>Population: 135.031164 million"
],
"y": [
1077.281856,
1100.5925630000002,
1150.9274779999998,
1014.5141039999999,
1698.3888379999999,
1981.9518059999998,
1576.97375,
1385.029563,
1619.848217,
1624.941275,
1615.2863949999999,
2013.9773050000001
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "819642"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y8",
"ysrc": "etpinard:4362:f36985",
"textsrc": "etpinard:4362:045ddf",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:d48953",
"size": [
72.67,
73.44,
73.47,
74.08,
74.34,
75.37,
75.97,
75.89,
77.32,
78.32,
79.05,
80.196
]
},
"mode": "markers",
"xaxis": "x12",
"text": [
"Country: Norway <br>Life Expectancy: 72.67 years <br>GDP per capita: 10095.42172 $ <br>Population: 3.327728 million",
"Country: Norway <br>Life Expectancy: 73.44 years <br>GDP per capita: 11653.97304 $ <br>Population: 3.491938 million",
"Country: Norway <br>Life Expectancy: 73.47 years <br>GDP per capita: 13450.40151 $ <br>Population: 3.638919 million",
"Country: Norway <br>Life Expectancy: 74.08 years <br>GDP per capita: 16361.87647 $ <br>Population: 3.786019 million",
"Country: Norway <br>Life Expectancy: 74.34 years <br>GDP per capita: 18965.05551 $ <br>Population: 3.933004 million",
"Country: Norway <br>Life Expectancy: 75.37 years <br>GDP per capita: 23311.34939 $ <br>Population: 4.043205 million",
"Country: Norway <br>Life Expectancy: 75.97 years <br>GDP per capita: 26298.63531 $ <br>Population: 4.114787 million",
"Country: Norway <br>Life Expectancy: 75.89 years <br>GDP per capita: 31540.9748 $ <br>Population: 4.186147 million",
"Country: Norway <br>Life Expectancy: 77.32 years <br>GDP per capita: 33965.66115 $ <br>Population: 4.286357 million",
"Country: Norway <br>Life Expectancy: 78.32 years <br>GDP per capita: 41283.16433 $ <br>Population: 4.405672 million",
"Country: Norway <br>Life Expectancy: 79.05 years <br>GDP per capita: 44683.97525 $ <br>Population: 4.535591 million",
"Country: Norway <br>Life Expectancy: 80.196 years <br>GDP per capita: 49357.19017 $ <br>Population: 4.627926 million"
],
"y": [
10095.42172,
11653.97304,
13450.40151,
16361.87647,
18965.05551,
23311.34939,
26298.635309999998,
31540.9748,
33965.66115,
41283.16433,
44683.97525,
49357.19017
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "eef2c2"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y9",
"ysrc": "etpinard:4362:6a45eb",
"textsrc": "etpinard:4362:c729df",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:2cdc48",
"size": [
37.578,
40.08,
43.165,
46.988,
52.143,
57.367,
62.728,
67.734,
71.197,
72.499,
74.193,
75.64
]
},
"mode": "markers",
"xaxis": "x",
"text": [
"Country: Oman <br>Life Expectancy: 37.578 years <br>GDP per capita: 1828.230307 $ <br>Population: 0.507833 million",
"Country: Oman <br>Life Expectancy: 40.08 years <br>GDP per capita: 2242.746551 $ <br>Population: 0.561977 million",
"Country: Oman <br>Life Expectancy: 43.165 years <br>GDP per capita: 2924.638113 $ <br>Population: 0.628164 million",
"Country: Oman <br>Life Expectancy: 46.988 years <br>GDP per capita: 4720.942687 $ <br>Population: 0.714775 million",
"Country: Oman <br>Life Expectancy: 52.143 years <br>GDP per capita: 10618.03855 $ <br>Population: 0.82905 million",
"Country: Oman <br>Life Expectancy: 57.367 years <br>GDP per capita: 11848.34392 $ <br>Population: 1.004533 million",
"Country: Oman <br>Life Expectancy: 62.728 years <br>GDP per capita: 12954.79101 $ <br>Population: 1.301048 million",
"Country: Oman <br>Life Expectancy: 67.734 years <br>GDP per capita: 18115.22313 $ <br>Population: 1.593882 million",
"Country: Oman <br>Life Expectancy: 71.197 years <br>GDP per capita: 18616.70691 $ <br>Population: 1.915208 million",
"Country: Oman <br>Life Expectancy: 72.499 years <br>GDP per capita: 19702.05581 $ <br>Population: 2.283635 million",
"Country: Oman <br>Life Expectancy: 74.193 years <br>GDP per capita: 19774.83687 $ <br>Population: 2.713462 million",
"Country: Oman <br>Life Expectancy: 75.64 years <br>GDP per capita: 22316.19287 $ <br>Population: 3.204897 million"
],
"y": [
1828.230307,
2242.746551,
2924.638113,
4720.942687,
10618.03855,
11848.343920000001,
12954.791009999999,
18115.223130000002,
18616.70691,
19702.055809999998,
19774.83687,
22316.19287
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "e549ea"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y9",
"ysrc": "etpinard:4362:6d8b0f",
"textsrc": "etpinard:4362:4b05eb",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:96b928",
"size": [
43.43600000000001,
45.556999999999995,
47.67,
49.8,
51.928999999999995,
54.043,
56.158,
58.245,
60.838,
61.818000000000005,
63.61,
65.483
]
},
"mode": "markers",
"xaxis": "x2",
"text": [
"Country: Pakistan <br>Life Expectancy: 43.436 years <br>GDP per capita: 684.5971438 $ <br>Population: 41.34656 million",
"Country: Pakistan <br>Life Expectancy: 45.557 years <br>GDP per capita: 747.0835292 $ <br>Population: 46.679944 million",
"Country: Pakistan <br>Life Expectancy: 47.67 years <br>GDP per capita: 803.3427418 $ <br>Population: 53.100671 million",
"Country: Pakistan <br>Life Expectancy: 49.8 years <br>GDP per capita: 942.4082588 $ <br>Population: 60.641899 million",
"Country: Pakistan <br>Life Expectancy: 51.929 years <br>GDP per capita: 1049.938981 $ <br>Population: 69.325921 million",
"Country: Pakistan <br>Life Expectancy: 54.043 years <br>GDP per capita: 1175.921193 $ <br>Population: 78.152686 million",
"Country: Pakistan <br>Life Expectancy: 56.158 years <br>GDP per capita: 1443.429832 $ <br>Population: 91.462088 million",
"Country: Pakistan <br>Life Expectancy: 58.245 years <br>GDP per capita: 1704.686583 $ <br>Population: 105.186881 million",
"Country: Pakistan <br>Life Expectancy: 60.838 years <br>GDP per capita: 1971.829464 $ <br>Population: 120.065004 million",
"Country: Pakistan <br>Life Expectancy: 61.818 years <br>GDP per capita: 2049.350521 $ <br>Population: 135.564834 million",
"Country: Pakistan <br>Life Expectancy: 63.61 years <br>GDP per capita: 2092.712441 $ <br>Population: 153.403524 million",
"Country: Pakistan <br>Life Expectancy: 65.483 years <br>GDP per capita: 2605.94758 $ <br>Population: 169.270617 million"
],
"y": [
684.5971437999999,
747.0835292,
803.3427418,
942.4082588,
1049.938981,
1175.921193,
1443.429832,
1704.686583,
1971.8294640000001,
2049.3505210000003,
2092.712441,
2605.94758
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "ddd480"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y9",
"ysrc": "etpinard:4362:6e61c7",
"textsrc": "etpinard:4362:258de8",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:8b38d5",
"size": [
55.191,
59.201,
61.817,
64.071,
66.21600000000001,
68.681,
70.472,
71.523,
72.462,
73.738,
74.712,
75.53699999999999
]
},
"mode": "markers",
"xaxis": "x3",
"text": [
"Country: Panama <br>Life Expectancy: 55.191 years <br>GDP per capita: 2480.380334 $ <br>Population: 0.94008 million",
"Country: Panama <br>Life Expectancy: 59.201 years <br>GDP per capita: 2961.800905 $ <br>Population: 1.063506 million",
"Country: Panama <br>Life Expectancy: 61.817 years <br>GDP per capita: 3536.540301 $ <br>Population: 1.215725 million",
"Country: Panama <br>Life Expectancy: 64.071 years <br>GDP per capita: 4421.009084 $ <br>Population: 1.405486 million",
"Country: Panama <br>Life Expectancy: 66.216 years <br>GDP per capita: 5364.249663 $ <br>Population: 1.616384 million",
"Country: Panama <br>Life Expectancy: 68.681 years <br>GDP per capita: 5351.912144 $ <br>Population: 1.839782 million",
"Country: Panama <br>Life Expectancy: 70.472 years <br>GDP per capita: 7009.601598 $ <br>Population: 2.036305 million",
"Country: Panama <br>Life Expectancy: 71.523 years <br>GDP per capita: 7034.779161 $ <br>Population: 2.253639 million",
"Country: Panama <br>Life Expectancy: 72.462 years <br>GDP per capita: 6618.74305 $ <br>Population: 2.484997 million",
"Country: Panama <br>Life Expectancy: 73.738 years <br>GDP per capita: 7113.692252 $ <br>Population: 2.734531 million",
"Country: Panama <br>Life Expectancy: 74.712 years <br>GDP per capita: 7356.031934 $ <br>Population: 2.990875 million",
"Country: Panama <br>Life Expectancy: 75.537 years <br>GDP per capita: 9809.185636 $ <br>Population: 3.242173 million"
],
"y": [
2480.380334,
2961.800905,
3536.540301,
4421.009084,
5364.2496630000005,
5351.912144,
7009.601598,
7034.779161,
6618.74305,
7113.692252,
7356.031934000001,
9809.185636
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "a3513a"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y9",
"ysrc": "etpinard:4362:435cdd",
"textsrc": "etpinard:4362:a95c42",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:6e4b75",
"size": [
62.648999999999994,
63.196000000000005,
64.361,
64.95100000000001,
65.815,
66.35300000000001,
66.874,
67.378,
68.225,
69.4,
70.755,
71.752
]
},
"mode": "markers",
"xaxis": "x4",
"text": [
"Country: Paraguay <br>Life Expectancy: 62.649 years <br>GDP per capita: 1952.308701 $ <br>Population: 1.555876 million",
"Country: Paraguay <br>Life Expectancy: 63.196 years <br>GDP per capita: 2046.154706 $ <br>Population: 1.770902 million",
"Country: Paraguay <br>Life Expectancy: 64.361 years <br>GDP per capita: 2148.027146 $ <br>Population: 2.009813 million",
"Country: Paraguay <br>Life Expectancy: 64.951 years <br>GDP per capita: 2299.376311 $ <br>Population: 2.287985 million",
"Country: Paraguay <br>Life Expectancy: 65.815 years <br>GDP per capita: 2523.337977 $ <br>Population: 2.614104 million",
"Country: Paraguay <br>Life Expectancy: 66.353 years <br>GDP per capita: 3248.373311 $ <br>Population: 2.984494 million",
"Country: Paraguay <br>Life Expectancy: 66.874 years <br>GDP per capita: 4258.503604 $ <br>Population: 3.366439 million",
"Country: Paraguay <br>Life Expectancy: 67.378 years <br>GDP per capita: 3998.875695 $ <br>Population: 3.886512 million",
"Country: Paraguay <br>Life Expectancy: 68.225 years <br>GDP per capita: 4196.411078 $ <br>Population: 4.483945 million",
"Country: Paraguay <br>Life Expectancy: 69.4 years <br>GDP per capita: 4247.400261 $ <br>Population: 5.154123 million",
"Country: Paraguay <br>Life Expectancy: 70.755 years <br>GDP per capita: 3783.674243 $ <br>Population: 5.884491 million",
"Country: Paraguay <br>Life Expectancy: 71.752 years <br>GDP per capita: 4172.838464 $ <br>Population: 6.667147 million"
],
"y": [
1952.3087010000002,
2046.1547059999998,
2148.027146,
2299.376311,
2523.337977,
3248.373311,
4258.5036039999995,
3998.875695,
4196.411078,
4247.400261,
3783.674243,
4172.838464
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "a8bb6c"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y9",
"ysrc": "etpinard:4362:8ebcdb",
"textsrc": "etpinard:4362:d1a0fc",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:911c3f",
"size": [
43.902,
46.263000000000005,
49.096000000000004,
51.445,
55.448,
58.446999999999996,
61.406000000000006,
64.134,
66.458,
68.38600000000001,
69.906,
71.421
]
},
"mode": "markers",
"xaxis": "x5",
"text": [
"Country: Peru <br>Life Expectancy: 43.902 years <br>GDP per capita: 3758.523437 $ <br>Population: 8.0257 million",
"Country: Peru <br>Life Expectancy: 46.263 years <br>GDP per capita: 4245.256698 $ <br>Population: 9.1461 million",
"Country: Peru <br>Life Expectancy: 49.096 years <br>GDP per capita: 4957.037982 $ <br>Population: 10.5165 million",
"Country: Peru <br>Life Expectancy: 51.445 years <br>GDP per capita: 5788.09333 $ <br>Population: 12.1322 million",
"Country: Peru <br>Life Expectancy: 55.448 years <br>GDP per capita: 5937.827283 $ <br>Population: 13.9547 million",
"Country: Peru <br>Life Expectancy: 58.447 years <br>GDP per capita: 6281.290855 $ <br>Population: 15.990099 million",
"Country: Peru <br>Life Expectancy: 61.406 years <br>GDP per capita: 6434.501797 $ <br>Population: 18.125129 million",
"Country: Peru <br>Life Expectancy: 64.134 years <br>GDP per capita: 6360.943444 $ <br>Population: 20.195924 million",
"Country: Peru <br>Life Expectancy: 66.458 years <br>GDP per capita: 4446.380924 $ <br>Population: 22.430449 million",
"Country: Peru <br>Life Expectancy: 68.386 years <br>GDP per capita: 5838.347657 $ <br>Population: 24.748122 million",
"Country: Peru <br>Life Expectancy: 69.906 years <br>GDP per capita: 5909.020073 $ <br>Population: 26.769436 million",
"Country: Peru <br>Life Expectancy: 71.421 years <br>GDP per capita: 7408.905561 $ <br>Population: 28.674757 million"
],
"y": [
3758.523437,
4245.256697999999,
4957.037982,
5788.09333,
5937.827283,
6281.290854999999,
6434.501797,
6360.9434439999995,
4446.380924,
5838.347657,
5909.020073,
7408.905561
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "0d9b6a"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y9",
"ysrc": "etpinard:4362:9036dc",
"textsrc": "etpinard:4362:121741",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:a580f4",
"size": [
47.751999999999995,
51.333999999999996,
54.757,
56.393,
58.065,
60.06,
62.082,
64.15100000000001,
66.458,
68.564,
70.303,
71.688
]
},
"mode": "markers",
"xaxis": "x6",
"text": [
"Country: Philippines <br>Life Expectancy: 47.752 years <br>GDP per capita: 1272.880995 $ <br>Population: 22.438691 million",
"Country: Philippines <br>Life Expectancy: 51.334 years <br>GDP per capita: 1547.944844 $ <br>Population: 26.072194 million",
"Country: Philippines <br>Life Expectancy: 54.757 years <br>GDP per capita: 1649.552153 $ <br>Population: 30.325264 million",
"Country: Philippines <br>Life Expectancy: 56.393 years <br>GDP per capita: 1814.12743 $ <br>Population: 35.3566 million",
"Country: Philippines <br>Life Expectancy: 58.065 years <br>GDP per capita: 1989.37407 $ <br>Population: 40.850141 million",
"Country: Philippines <br>Life Expectancy: 60.06 years <br>GDP per capita: 2373.204287 $ <br>Population: 46.850962 million",
"Country: Philippines <br>Life Expectancy: 62.082 years <br>GDP per capita: 2603.273765 $ <br>Population: 53.456774 million",
"Country: Philippines <br>Life Expectancy: 64.151 years <br>GDP per capita: 2189.634995 $ <br>Population: 60.017788 million",
"Country: Philippines <br>Life Expectancy: 66.458 years <br>GDP per capita: 2279.324017 $ <br>Population: 67.185766 million",
"Country: Philippines <br>Life Expectancy: 68.564 years <br>GDP per capita: 2536.534925 $ <br>Population: 75.012988 million",
"Country: Philippines <br>Life Expectancy: 70.303 years <br>GDP per capita: 2650.921068 $ <br>Population: 82.995088 million",
"Country: Philippines <br>Life Expectancy: 71.688 years <br>GDP per capita: 3190.481016 $ <br>Population: 91.077287 million"
],
"y": [
1272.880995,
1547.9448439999999,
1649.5521529999999,
1814.12743,
1989.3740699999998,
2373.204287,
2603.273765,
2189.634995,
2279.3240170000004,
2536.534925,
2650.921068,
3190.481016
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "1669cd"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y9",
"ysrc": "etpinard:4362:8524e0",
"textsrc": "etpinard:4362:7396b9",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:624657",
"size": [
61.31,
65.77,
67.64,
69.61,
70.85,
70.67,
71.32,
70.98,
70.99,
72.75,
74.67,
75.563
]
},
"mode": "markers",
"xaxis": "x7",
"text": [
"Country: Poland <br>Life Expectancy: 61.31 years <br>GDP per capita: 4029.329699 $ <br>Population: 25.730551 million",
"Country: Poland <br>Life Expectancy: 65.77 years <br>GDP per capita: 4734.253019 $ <br>Population: 28.235346 million",
"Country: Poland <br>Life Expectancy: 67.64 years <br>GDP per capita: 5338.752143 $ <br>Population: 30.329617 million",
"Country: Poland <br>Life Expectancy: 69.61 years <br>GDP per capita: 6557.152776 $ <br>Population: 31.785378 million",
"Country: Poland <br>Life Expectancy: 70.85 years <br>GDP per capita: 8006.506993 $ <br>Population: 33.039545 million",
"Country: Poland <br>Life Expectancy: 70.67 years <br>GDP per capita: 9508.141454 $ <br>Population: 34.621254 million",
"Country: Poland <br>Life Expectancy: 71.32 years <br>GDP per capita: 8451.531004 $ <br>Population: 36.227381 million",
"Country: Poland <br>Life Expectancy: 70.98 years <br>GDP per capita: 9082.351172 $ <br>Population: 37.74071 million",
"Country: Poland <br>Life Expectancy: 70.99 years <br>GDP per capita: 7738.881247 $ <br>Population: 38.370697 million",
"Country: Poland <br>Life Expectancy: 72.75 years <br>GDP per capita: 10159.58368 $ <br>Population: 38.654957 million",
"Country: Poland <br>Life Expectancy: 74.67 years <br>GDP per capita: 12002.23908 $ <br>Population: 38.625976 million",
"Country: Poland <br>Life Expectancy: 75.563 years <br>GDP per capita: 15389.92468 $ <br>Population: 38.518241 million"
],
"y": [
4029.3296990000003,
4734.253019,
5338.752143,
6557.152776,
8006.506993000001,
9508.141454,
8451.531004,
9082.351172,
7738.881247,
10159.58368,
12002.23908,
15389.924680000002
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "6546a3"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y9",
"ysrc": "etpinard:4362:434211",
"textsrc": "etpinard:4362:98551a",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:e697dd",
"size": [
59.82,
61.51,
64.39,
66.6,
69.26,
70.41,
72.77,
74.06,
74.86,
75.97,
77.29,
78.098
]
},
"mode": "markers",
"xaxis": "x8",
"text": [
"Country: Portugal <br>Life Expectancy: 59.82 years <br>GDP per capita: 3068.319867 $ <br>Population: 8.52605 million",
"Country: Portugal <br>Life Expectancy: 61.51 years <br>GDP per capita: 3774.571743 $ <br>Population: 8.81765 million",
"Country: Portugal <br>Life Expectancy: 64.39 years <br>GDP per capita: 4727.954889 $ <br>Population: 9.0198 million",
"Country: Portugal <br>Life Expectancy: 66.6 years <br>GDP per capita: 6361.517993 $ <br>Population: 9.103 million",
"Country: Portugal <br>Life Expectancy: 69.26 years <br>GDP per capita: 9022.247417 $ <br>Population: 8.97045 million",
"Country: Portugal <br>Life Expectancy: 70.41 years <br>GDP per capita: 10172.48572 $ <br>Population: 9.6626 million",
"Country: Portugal <br>Life Expectancy: 72.77 years <br>GDP per capita: 11753.84291 $ <br>Population: 9.85965 million",
"Country: Portugal <br>Life Expectancy: 74.06 years <br>GDP per capita: 13039.30876 $ <br>Population: 9.915289 million",
"Country: Portugal <br>Life Expectancy: 74.86 years <br>GDP per capita: 16207.26663 $ <br>Population: 9.92768 million",
"Country: Portugal <br>Life Expectancy: 75.97 years <br>GDP per capita: 17641.03156 $ <br>Population: 10.156415 million",
"Country: Portugal <br>Life Expectancy: 77.29 years <br>GDP per capita: 19970.90787 $ <br>Population: 10.433867 million",
"Country: Portugal <br>Life Expectancy: 78.098 years <br>GDP per capita: 20509.64777 $ <br>Population: 10.642836 million"
],
"y": [
3068.319867,
3774.571743,
4727.954889,
6361.517993,
9022.247417,
10172.48572,
11753.84291,
13039.30876,
16207.266630000002,
17641.03156,
19970.90787,
20509.64777
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "25b8b1"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y9",
"ysrc": "etpinard:4362:0f36c7",
"textsrc": "etpinard:4362:6448fa",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:635ab5",
"size": [
64.28,
68.54,
69.62,
71.1,
72.16,
73.44,
73.75,
74.63,
73.911,
74.917,
77.778,
78.74600000000001
]
},
"mode": "markers",
"xaxis": "x9",
"text": [
"Country: Puerto Rico <br>Life Expectancy: 64.28 years <br>GDP per capita: 3081.959785 $ <br>Population: 2.227 million",
"Country: Puerto Rico <br>Life Expectancy: 68.54 years <br>GDP per capita: 3907.156189 $ <br>Population: 2.26 million",
"Country: Puerto Rico <br>Life Expectancy: 69.62 years <br>GDP per capita: 5108.34463 $ <br>Population: 2.448046 million",
"Country: Puerto Rico <br>Life Expectancy: 71.1 years <br>GDP per capita: 6929.277714 $ <br>Population: 2.648961 million",
"Country: Puerto Rico <br>Life Expectancy: 72.16 years <br>GDP per capita: 9123.041742 $ <br>Population: 2.847132 million",
"Country: Puerto Rico <br>Life Expectancy: 73.44 years <br>GDP per capita: 9770.524921 $ <br>Population: 3.080828 million",
"Country: Puerto Rico <br>Life Expectancy: 73.75 years <br>GDP per capita: 10330.98915 $ <br>Population: 3.279001 million",
"Country: Puerto Rico <br>Life Expectancy: 74.63 years <br>GDP per capita: 12281.34191 $ <br>Population: 3.444468 million",
"Country: Puerto Rico <br>Life Expectancy: 73.911 years <br>GDP per capita: 14641.58711 $ <br>Population: 3.585176 million",
"Country: Puerto Rico <br>Life Expectancy: 74.917 years <br>GDP per capita: 16999.4333 $ <br>Population: 3.75943 million",
"Country: Puerto Rico <br>Life Expectancy: 77.778 years <br>GDP per capita: 18855.60618 $ <br>Population: 3.859606 million",
"Country: Puerto Rico <br>Life Expectancy: 78.746 years <br>GDP per capita: 19328.70901 $ <br>Population: 3.942491 million"
],
"y": [
3081.959785,
3907.1561890000003,
5108.34463,
6929.277714,
9123.041742,
9770.524921,
10330.98915,
12281.34191,
14641.587109999999,
16999.4333,
18855.606180000002,
19328.70901
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "b6a662"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y9",
"ysrc": "etpinard:4362:705e29",
"textsrc": "etpinard:4362:73c511",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:aad49f",
"size": [
52.724,
55.09,
57.666000000000004,
60.542,
64.274,
67.064,
69.885,
71.913,
73.615,
74.77199999999999,
75.744,
76.442
]
},
"mode": "markers",
"xaxis": "x10",
"text": [
"Country: Reunion <br>Life Expectancy: 52.724 years <br>GDP per capita: 2718.885295 $ <br>Population: 0.2577 million",
"Country: Reunion <br>Life Expectancy: 55.09 years <br>GDP per capita: 2769.451844 $ <br>Population: 0.3087 million",
"Country: Reunion <br>Life Expectancy: 57.666 years <br>GDP per capita: 3173.72334 $ <br>Population: 0.3589 million",
"Country: Reunion <br>Life Expectancy: 60.542 years <br>GDP per capita: 4021.175739 $ <br>Population: 0.414024 million",
"Country: Reunion <br>Life Expectancy: 64.274 years <br>GDP per capita: 5047.658563 $ <br>Population: 0.461633 million",
"Country: Reunion <br>Life Expectancy: 67.064 years <br>GDP per capita: 4319.804067 $ <br>Population: 0.492095 million",
"Country: Reunion <br>Life Expectancy: 69.885 years <br>GDP per capita: 5267.219353 $ <br>Population: 0.51781 million",
"Country: Reunion <br>Life Expectancy: 71.913 years <br>GDP per capita: 5303.377488 $ <br>Population: 0.562035 million",
"Country: Reunion <br>Life Expectancy: 73.615 years <br>GDP per capita: 6101.255823 $ <br>Population: 0.622191 million",
"Country: Reunion <br>Life Expectancy: 74.772 years <br>GDP per capita: 6071.941411 $ <br>Population: 0.68481 million",
"Country: Reunion <br>Life Expectancy: 75.744 years <br>GDP per capita: 6316.1652 $ <br>Population: 0.743981 million",
"Country: Reunion <br>Life Expectancy: 76.442 years <br>GDP per capita: 7670.122558 $ <br>Population: 0.798094 million"
],
"y": [
2718.885295,
2769.451844,
3173.72334,
4021.1757390000002,
5047.658563,
4319.804067,
5267.219353,
5303.377488,
6101.2558229999995,
6071.941411,
6316.1652,
7670.122558
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "738a02"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y9",
"ysrc": "etpinard:4362:f1aa85",
"textsrc": "etpinard:4362:f0a5ac",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:fea301",
"size": [
61.05,
64.1,
66.8,
66.8,
69.21,
69.46,
69.66,
69.53,
69.36,
69.72,
71.322,
72.476
]
},
"mode": "markers",
"xaxis": "x11",
"text": [
"Country: Romania <br>Life Expectancy: 61.05 years <br>GDP per capita: 3144.613186 $ <br>Population: 16.63 million",
"Country: Romania <br>Life Expectancy: 64.1 years <br>GDP per capita: 3943.370225 $ <br>Population: 17.829327 million",
"Country: Romania <br>Life Expectancy: 66.8 years <br>GDP per capita: 4734.997586 $ <br>Population: 18.680721 million",
"Country: Romania <br>Life Expectancy: 66.8 years <br>GDP per capita: 6470.866545 $ <br>Population: 19.284814 million",
"Country: Romania <br>Life Expectancy: 69.21 years <br>GDP per capita: 8011.414402 $ <br>Population: 20.662648 million",
"Country: Romania <br>Life Expectancy: 69.46 years <br>GDP per capita: 9356.39724 $ <br>Population: 21.658597 million",
"Country: Romania <br>Life Expectancy: 69.66 years <br>GDP per capita: 9605.314053 $ <br>Population: 22.356726 million",
"Country: Romania <br>Life Expectancy: 69.53 years <br>GDP per capita: 9696.273295 $ <br>Population: 22.686371 million",
"Country: Romania <br>Life Expectancy: 69.36 years <br>GDP per capita: 6598.409903 $ <br>Population: 22.797027 million",
"Country: Romania <br>Life Expectancy: 69.72 years <br>GDP per capita: 7346.547557 $ <br>Population: 22.562458 million",
"Country: Romania <br>Life Expectancy: 71.322 years <br>GDP per capita: 7885.360081 $ <br>Population: 22.404337 million",
"Country: Romania <br>Life Expectancy: 72.476 years <br>GDP per capita: 10808.47561 $ <br>Population: 22.276056 million"
],
"y": [
3144.613186,
3943.370225,
4734.9975859999995,
6470.866545,
8011.414401999999,
9356.39724,
9605.314053,
9696.273295,
6598.409903,
7346.547556999999,
7885.360081,
10808.47561
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "117761"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y9",
"ysrc": "etpinard:4362:ccdbcd",
"textsrc": "etpinard:4362:d98b39",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:ee7d26",
"size": [
40,
41.5,
43,
44.1,
44.6,
45,
46.218,
44.02,
23.599,
36.086999999999996,
43.413000000000004,
46.242
]
},
"mode": "markers",
"xaxis": "x12",
"text": [
"Country: Rwanda <br>Life Expectancy: 40.0 years <br>GDP per capita: 493.3238752 $ <br>Population: 2.534927 million",
"Country: Rwanda <br>Life Expectancy: 41.5 years <br>GDP per capita: 540.2893983 $ <br>Population: 2.822082 million",
"Country: Rwanda <br>Life Expectancy: 43.0 years <br>GDP per capita: 597.4730727 $ <br>Population: 3.051242 million",
"Country: Rwanda <br>Life Expectancy: 44.1 years <br>GDP per capita: 510.9637142 $ <br>Population: 3.451079 million",
"Country: Rwanda <br>Life Expectancy: 44.6 years <br>GDP per capita: 590.5806638 $ <br>Population: 3.992121 million",
"Country: Rwanda <br>Life Expectancy: 45.0 years <br>GDP per capita: 670.0806011 $ <br>Population: 4.657072 million",
"Country: Rwanda <br>Life Expectancy: 46.218 years <br>GDP per capita: 881.5706467 $ <br>Population: 5.507565 million",
"Country: Rwanda <br>Life Expectancy: 44.02 years <br>GDP per capita: 847.991217 $ <br>Population: 6.349365 million",
"Country: Rwanda <br>Life Expectancy: 23.599 years <br>GDP per capita: 737.0685949 $ <br>Population: 7.290203 million",
"Country: Rwanda <br>Life Expectancy: 36.087 years <br>GDP per capita: 589.9445051 $ <br>Population: 7.212583 million",
"Country: Rwanda <br>Life Expectancy: 43.413 years <br>GDP per capita: 785.6537648 $ <br>Population: 7.852401 million",
"Country: Rwanda <br>Life Expectancy: 46.242 years <br>GDP per capita: 863.0884639 $ <br>Population: 8.860588 million"
],
"y": [
493.32387520000003,
540.2893982999999,
597.4730727000001,
510.9637142,
590.5806637999999,
670.0806011,
881.5706467,
847.991217,
737.0685949,
589.9445051,
785.6537647999999,
863.0884639000001
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "3b212d"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y10",
"ysrc": "etpinard:4362:a63e19",
"textsrc": "etpinard:4362:a6b502",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:ce87e5",
"size": [
46.471000000000004,
48.945,
51.893,
54.425,
56.48,
58.55,
60.351000000000006,
61.728,
62.742,
63.306000000000004,
64.337,
65.528
]
},
"mode": "markers",
"xaxis": "x",
"text": [
"Country: Sao Tome and Principe <br>Life Expectancy: 46.471 years <br>GDP per capita: 879.5835855 $ <br>Population: 0.060011 million",
"Country: Sao Tome and Principe <br>Life Expectancy: 48.945 years <br>GDP per capita: 860.7369026 $ <br>Population: 0.061325 million",
"Country: Sao Tome and Principe <br>Life Expectancy: 51.893 years <br>GDP per capita: 1071.551119 $ <br>Population: 0.065345 million",
"Country: Sao Tome and Principe <br>Life Expectancy: 54.425 years <br>GDP per capita: 1384.840593 $ <br>Population: 0.070787 million",
"Country: Sao Tome and Principe <br>Life Expectancy: 56.48 years <br>GDP per capita: 1532.985254 $ <br>Population: 0.076595 million",
"Country: Sao Tome and Principe <br>Life Expectancy: 58.55 years <br>GDP per capita: 1737.561657 $ <br>Population: 0.086796 million",
"Country: Sao Tome and Principe <br>Life Expectancy: 60.351 years <br>GDP per capita: 1890.218117 $ <br>Population: 0.098593 million",
"Country: Sao Tome and Principe <br>Life Expectancy: 61.728 years <br>GDP per capita: 1516.525457 $ <br>Population: 0.110812 million",
"Country: Sao Tome and Principe <br>Life Expectancy: 62.742 years <br>GDP per capita: 1428.777814 $ <br>Population: 0.125911 million",
"Country: Sao Tome and Principe <br>Life Expectancy: 63.306 years <br>GDP per capita: 1339.076036 $ <br>Population: 0.145608 million",
"Country: Sao Tome and Principe <br>Life Expectancy: 64.337 years <br>GDP per capita: 1353.09239 $ <br>Population: 0.170372 million",
"Country: Sao Tome and Principe <br>Life Expectancy: 65.528 years <br>GDP per capita: 1598.435089 $ <br>Population: 0.199579 million"
],
"y": [
879.5835855,
860.7369026,
1071.551119,
1384.840593,
1532.985254,
1737.561657,
1890.2181170000001,
1516.525457,
1428.777814,
1339.076036,
1353.09239,
1598.435089
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "890b68"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y10",
"ysrc": "etpinard:4362:afe0e8",
"textsrc": "etpinard:4362:e924a6",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:adf188",
"size": [
39.875,
42.868,
45.913999999999994,
49.901,
53.886,
58.69,
63.012,
66.295,
68.768,
70.533,
71.626,
72.777
]
},
"mode": "markers",
"xaxis": "x2",
"text": [
"Country: Saudi Arabia <br>Life Expectancy: 39.875 years <br>GDP per capita: 6459.554823 $ <br>Population: 4.005677 million",
"Country: Saudi Arabia <br>Life Expectancy: 42.868 years <br>GDP per capita: 8157.591248 $ <br>Population: 4.41965 million",
"Country: Saudi Arabia <br>Life Expectancy: 45.914 years <br>GDP per capita: 11626.41975 $ <br>Population: 4.943029 million",
"Country: Saudi Arabia <br>Life Expectancy: 49.901 years <br>GDP per capita: 16903.04886 $ <br>Population: 5.618198 million",
"Country: Saudi Arabia <br>Life Expectancy: 53.886 years <br>GDP per capita: 24837.42865 $ <br>Population: 6.472756 million",
"Country: Saudi Arabia <br>Life Expectancy: 58.69 years <br>GDP per capita: 34167.7626 $ <br>Population: 8.128505 million",
"Country: Saudi Arabia <br>Life Expectancy: 63.012 years <br>GDP per capita: 33693.17525 $ <br>Population: 11.254672 million",
"Country: Saudi Arabia <br>Life Expectancy: 66.295 years <br>GDP per capita: 21198.26136 $ <br>Population: 14.619745 million",
"Country: Saudi Arabia <br>Life Expectancy: 68.768 years <br>GDP per capita: 24841.61777 $ <br>Population: 16.945857 million",
"Country: Saudi Arabia <br>Life Expectancy: 70.533 years <br>GDP per capita: 20586.69019 $ <br>Population: 21.229759 million",
"Country: Saudi Arabia <br>Life Expectancy: 71.626 years <br>GDP per capita: 19014.54118 $ <br>Population: 24.50153 million",
"Country: Saudi Arabia <br>Life Expectancy: 72.777 years <br>GDP per capita: 21654.83194 $ <br>Population: 27.601038 million"
],
"y": [
6459.5548229999995,
8157.591248000001,
11626.41975,
16903.04886,
24837.42865,
34167.7626,
33693.17525,
21198.26136,
24841.617769999997,
20586.69019,
19014.54118,
21654.83194
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "d4239f"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y10",
"ysrc": "etpinard:4362:f5297b",
"textsrc": "etpinard:4362:63d289",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:b7b188",
"size": [
37.278,
39.329,
41.45399999999999,
43.563,
45.815,
48.879,
52.379,
55.769,
58.196000000000005,
60.187,
61.6,
63.062
]
},
"mode": "markers",
"xaxis": "x3",
"text": [
"Country: Senegal <br>Life Expectancy: 37.278 years <br>GDP per capita: 1450.356983 $ <br>Population: 2.755589 million",
"Country: Senegal <br>Life Expectancy: 39.329 years <br>GDP per capita: 1567.653006 $ <br>Population: 3.054547 million",
"Country: Senegal <br>Life Expectancy: 41.454 years <br>GDP per capita: 1654.988723 $ <br>Population: 3.430243 million",
"Country: Senegal <br>Life Expectancy: 43.563 years <br>GDP per capita: 1612.404632 $ <br>Population: 3.965841 million",
"Country: Senegal <br>Life Expectancy: 45.815 years <br>GDP per capita: 1597.712056 $ <br>Population: 4.588696 million",
"Country: Senegal <br>Life Expectancy: 48.879 years <br>GDP per capita: 1561.769116 $ <br>Population: 5.260855 million",
"Country: Senegal <br>Life Expectancy: 52.379 years <br>GDP per capita: 1518.479984 $ <br>Population: 6.147783 million",
"Country: Senegal <br>Life Expectancy: 55.769 years <br>GDP per capita: 1441.72072 $ <br>Population: 7.171347 million",
"Country: Senegal <br>Life Expectancy: 58.196 years <br>GDP per capita: 1367.899369 $ <br>Population: 8.30792 million",
"Country: Senegal <br>Life Expectancy: 60.187 years <br>GDP per capita: 1392.368347 $ <br>Population: 9.535314 million",
"Country: Senegal <br>Life Expectancy: 61.6 years <br>GDP per capita: 1519.635262 $ <br>Population: 10.870037 million",
"Country: Senegal <br>Life Expectancy: 63.062 years <br>GDP per capita: 1712.472136 $ <br>Population: 12.267493 million"
],
"y": [
1450.356983,
1567.653006,
1654.988723,
1612.404632,
1597.712056,
1561.769116,
1518.479984,
1441.72072,
1367.899369,
1392.368347,
1519.635262,
1712.4721359999999
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "7c64fc"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y10",
"ysrc": "etpinard:4362:03c46a",
"textsrc": "etpinard:4362:db5e79",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:027eb9",
"size": [
57.996,
61.685,
64.531,
66.914,
68.7,
70.3,
70.16199999999999,
71.218,
71.65899999999999,
72.232,
73.21300000000001,
74.002
]
},
"mode": "markers",
"xaxis": "x4",
"text": [
"Country: Serbia <br>Life Expectancy: 57.996 years <br>GDP per capita: 3581.459448 $ <br>Population: 6.860147 million",
"Country: Serbia <br>Life Expectancy: 61.685 years <br>GDP per capita: 4981.090891 $ <br>Population: 7.271135 million",
"Country: Serbia <br>Life Expectancy: 64.531 years <br>GDP per capita: 6289.629157 $ <br>Population: 7.61606 million",
"Country: Serbia <br>Life Expectancy: 66.914 years <br>GDP per capita: 7991.707066 $ <br>Population: 7.971222 million",
"Country: Serbia <br>Life Expectancy: 68.7 years <br>GDP per capita: 10522.06749 $ <br>Population: 8.313288 million",
"Country: Serbia <br>Life Expectancy: 70.3 years <br>GDP per capita: 12980.66956 $ <br>Population: 8.686367 million",
"Country: Serbia <br>Life Expectancy: 70.162 years <br>GDP per capita: 15181.0927 $ <br>Population: 9.032824 million",
"Country: Serbia <br>Life Expectancy: 71.218 years <br>GDP per capita: 15870.87851 $ <br>Population: 9.230783 million",
"Country: Serbia <br>Life Expectancy: 71.659 years <br>GDP per capita: 9325.068238 $ <br>Population: 9.826397 million",
"Country: Serbia <br>Life Expectancy: 72.232 years <br>GDP per capita: 7914.320304 $ <br>Population: 10.336594 million",
"Country: Serbia <br>Life Expectancy: 73.213 years <br>GDP per capita: 7236.075251 $ <br>Population: 10.111559 million",
"Country: Serbia <br>Life Expectancy: 74.002 years <br>GDP per capita: 9786.534714 $ <br>Population: 10.150265 million"
],
"y": [
3581.4594479999996,
4981.090891,
6289.629157,
7991.707066,
10522.067490000001,
12980.66956,
15181.0927,
15870.878509999999,
9325.068238,
7914.320304000001,
7236.075251,
9786.534714
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "86c9c0"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y10",
"ysrc": "etpinard:4362:69f99b",
"textsrc": "etpinard:4362:623e4f",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:6fedca",
"size": [
30.331,
31.57,
32.766999999999996,
34.113,
35.4,
36.788000000000004,
38.445,
40.006,
38.333,
39.897,
41.012,
42.568000000000005
]
},
"mode": "markers",
"xaxis": "x5",
"text": [
"Country: Sierra Leone <br>Life Expectancy: 30.331 years <br>GDP per capita: 879.7877358 $ <br>Population: 2.143249 million",
"Country: Sierra Leone <br>Life Expectancy: 31.57 years <br>GDP per capita: 1004.484437 $ <br>Population: 2.295678 million",
"Country: Sierra Leone <br>Life Expectancy: 32.767 years <br>GDP per capita: 1116.639877 $ <br>Population: 2.467895 million",
"Country: Sierra Leone <br>Life Expectancy: 34.113 years <br>GDP per capita: 1206.043465 $ <br>Population: 2.66219 million",
"Country: Sierra Leone <br>Life Expectancy: 35.4 years <br>GDP per capita: 1353.759762 $ <br>Population: 2.879013 million",
"Country: Sierra Leone <br>Life Expectancy: 36.788 years <br>GDP per capita: 1348.285159 $ <br>Population: 3.140897 million",
"Country: Sierra Leone <br>Life Expectancy: 38.445 years <br>GDP per capita: 1465.010784 $ <br>Population: 3.464522 million",
"Country: Sierra Leone <br>Life Expectancy: 40.006 years <br>GDP per capita: 1294.447788 $ <br>Population: 3.868905 million",
"Country: Sierra Leone <br>Life Expectancy: 38.333 years <br>GDP per capita: 1068.696278 $ <br>Population: 4.260884 million",
"Country: Sierra Leone <br>Life Expectancy: 39.897 years <br>GDP per capita: 574.6481576 $ <br>Population: 4.578212 million",
"Country: Sierra Leone <br>Life Expectancy: 41.012 years <br>GDP per capita: 699.489713 $ <br>Population: 5.359092 million",
"Country: Sierra Leone <br>Life Expectancy: 42.568 years <br>GDP per capita: 862.5407561 $ <br>Population: 6.144562 million"
],
"y": [
879.7877358,
1004.484437,
1116.6398769999998,
1206.043465,
1353.759762,
1348.285159,
1465.010784,
1294.4477880000002,
1068.696278,
574.6481576,
699.4897129999999,
862.5407561000001
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "b50bed"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y10",
"ysrc": "etpinard:4362:85877b",
"textsrc": "etpinard:4362:651f39",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:63fefc",
"size": [
60.396,
63.178999999999995,
65.798,
67.946,
69.521,
70.795,
71.76,
73.56,
75.788,
77.158,
78.77,
79.972
]
},
"mode": "markers",
"xaxis": "x6",
"text": [
"Country: Singapore <br>Life Expectancy: 60.396 years <br>GDP per capita: 2315.138227 $ <br>Population: 1.127 million",
"Country: Singapore <br>Life Expectancy: 63.179 years <br>GDP per capita: 2843.104409 $ <br>Population: 1.445929 million",
"Country: Singapore <br>Life Expectancy: 65.798 years <br>GDP per capita: 3674.735572 $ <br>Population: 1.7502 million",
"Country: Singapore <br>Life Expectancy: 67.946 years <br>GDP per capita: 4977.41854 $ <br>Population: 1.9776 million",
"Country: Singapore <br>Life Expectancy: 69.521 years <br>GDP per capita: 8597.756202 $ <br>Population: 2.1524 million",
"Country: Singapore <br>Life Expectancy: 70.795 years <br>GDP per capita: 11210.08948 $ <br>Population: 2.3253 million",
"Country: Singapore <br>Life Expectancy: 71.76 years <br>GDP per capita: 15169.16112 $ <br>Population: 2.651869 million",
"Country: Singapore <br>Life Expectancy: 73.56 years <br>GDP per capita: 18861.53081 $ <br>Population: 2.794552 million",
"Country: Singapore <br>Life Expectancy: 75.788 years <br>GDP per capita: 24769.8912 $ <br>Population: 3.235865 million",
"Country: Singapore <br>Life Expectancy: 77.158 years <br>GDP per capita: 33519.4766 $ <br>Population: 3.802309 million",
"Country: Singapore <br>Life Expectancy: 78.77 years <br>GDP per capita: 36023.1054 $ <br>Population: 4.197776 million",
"Country: Singapore <br>Life Expectancy: 79.972 years <br>GDP per capita: 47143.17964 $ <br>Population: 4.553009 million"
],
"y": [
2315.138227,
2843.104409,
3674.735572,
4977.41854,
8597.756202,
11210.08948,
15169.161119999999,
18861.53081,
24769.8912,
33519.4766,
36023.1054,
47143.179639999995
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "a64e01"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y10",
"ysrc": "etpinard:4362:ab3bc6",
"textsrc": "etpinard:4362:dd3f8f",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:62d292",
"size": [
64.36,
67.45,
70.33,
70.98,
70.35,
70.45,
70.8,
71.08,
71.38,
72.71,
73.8,
74.663
]
},
"mode": "markers",
"xaxis": "x7",
"text": [
"Country: Slovak Republic <br>Life Expectancy: 64.36 years <br>GDP per capita: 5074.659104 $ <br>Population: 3.558137 million",
"Country: Slovak Republic <br>Life Expectancy: 67.45 years <br>GDP per capita: 6093.26298 $ <br>Population: 3.844277 million",
"Country: Slovak Republic <br>Life Expectancy: 70.33 years <br>GDP per capita: 7481.107598 $ <br>Population: 4.237384 million",
"Country: Slovak Republic <br>Life Expectancy: 70.98 years <br>GDP per capita: 8412.902397 $ <br>Population: 4.442238 million",
"Country: Slovak Republic <br>Life Expectancy: 70.35 years <br>GDP per capita: 9674.167626 $ <br>Population: 4.593433 million",
"Country: Slovak Republic <br>Life Expectancy: 70.45 years <br>GDP per capita: 10922.66404 $ <br>Population: 4.827803 million",
"Country: Slovak Republic <br>Life Expectancy: 70.8 years <br>GDP per capita: 11348.54585 $ <br>Population: 5.048043 million",
"Country: Slovak Republic <br>Life Expectancy: 71.08 years <br>GDP per capita: 12037.26758 $ <br>Population: 5.199318 million",
"Country: Slovak Republic <br>Life Expectancy: 71.38 years <br>GDP per capita: 9498.467723 $ <br>Population: 5.302888 million",
"Country: Slovak Republic <br>Life Expectancy: 72.71 years <br>GDP per capita: 12126.23065 $ <br>Population: 5.38301 million",
"Country: Slovak Republic <br>Life Expectancy: 73.8 years <br>GDP per capita: 13638.77837 $ <br>Population: 5.410052 million",
"Country: Slovak Republic <br>Life Expectancy: 74.663 years <br>GDP per capita: 18678.31435 $ <br>Population: 5.447502 million"
],
"y": [
5074.659104,
6093.2629799999995,
7481.1075980000005,
8412.902397,
9674.167626,
10922.664040000001,
11348.54585,
12037.26758,
9498.467723,
12126.23065,
13638.778369999998,
18678.31435
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "1f630e"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y10",
"ysrc": "etpinard:4362:a6b777",
"textsrc": "etpinard:4362:bdc6a3",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:69e93e",
"size": [
65.57,
67.85,
69.15,
69.18,
69.82,
70.97,
71.063,
72.25,
73.64,
75.13,
76.66,
77.926
]
},
"mode": "markers",
"xaxis": "x8",
"text": [
"Country: Slovenia <br>Life Expectancy: 65.57 years <br>GDP per capita: 4215.041741 $ <br>Population: 1.489518 million",
"Country: Slovenia <br>Life Expectancy: 67.85 years <br>GDP per capita: 5862.276629 $ <br>Population: 1.53307 million",
"Country: Slovenia <br>Life Expectancy: 69.15 years <br>GDP per capita: 7402.303395 $ <br>Population: 1.582962 million",
"Country: Slovenia <br>Life Expectancy: 69.18 years <br>GDP per capita: 9405.489397 $ <br>Population: 1.646912 million",
"Country: Slovenia <br>Life Expectancy: 69.82 years <br>GDP per capita: 12383.4862 $ <br>Population: 1.69451 million",
"Country: Slovenia <br>Life Expectancy: 70.97 years <br>GDP per capita: 15277.03017 $ <br>Population: 1.746919 million",
"Country: Slovenia <br>Life Expectancy: 71.063 years <br>GDP per capita: 17866.72175 $ <br>Population: 1.861252 million",
"Country: Slovenia <br>Life Expectancy: 72.25 years <br>GDP per capita: 18678.53492 $ <br>Population: 1.94587 million",
"Country: Slovenia <br>Life Expectancy: 73.64 years <br>GDP per capita: 14214.71681 $ <br>Population: 1.99921 million",
"Country: Slovenia <br>Life Expectancy: 75.13 years <br>GDP per capita: 17161.10735 $ <br>Population: 2.011612 million",
"Country: Slovenia <br>Life Expectancy: 76.66 years <br>GDP per capita: 20660.01936 $ <br>Population: 2.011497 million",
"Country: Slovenia <br>Life Expectancy: 77.926 years <br>GDP per capita: 25768.25759 $ <br>Population: 2.009245 million"
],
"y": [
4215.041741,
5862.276629,
7402.303395,
9405.489397,
12383.4862,
15277.030169999998,
17866.72175,
18678.53492,
14214.71681,
17161.10735,
20660.01936,
25768.25759
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "6a0005"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y10",
"ysrc": "etpinard:4362:d5dee5",
"textsrc": "etpinard:4362:3c4a92",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:ba0f5c",
"size": [
32.978,
34.977,
36.981,
38.977,
40.973,
41.974,
42.955,
44.501000000000005,
39.658,
43.795,
45.93600000000001,
48.159
]
},
"mode": "markers",
"xaxis": "x9",
"text": [
"Country: Somalia <br>Life Expectancy: 32.978 years <br>GDP per capita: 1135.749842 $ <br>Population: 2.526994 million",
"Country: Somalia <br>Life Expectancy: 34.977 years <br>GDP per capita: 1258.147413 $ <br>Population: 2.780415 million",
"Country: Somalia <br>Life Expectancy: 36.981 years <br>GDP per capita: 1369.488336 $ <br>Population: 3.080153 million",
"Country: Somalia <br>Life Expectancy: 38.977 years <br>GDP per capita: 1284.73318 $ <br>Population: 3.428839 million",
"Country: Somalia <br>Life Expectancy: 40.973 years <br>GDP per capita: 1254.576127 $ <br>Population: 3.840161 million",
"Country: Somalia <br>Life Expectancy: 41.974 years <br>GDP per capita: 1450.992513 $ <br>Population: 4.353666 million",
"Country: Somalia <br>Life Expectancy: 42.955 years <br>GDP per capita: 1176.807031 $ <br>Population: 5.828892 million",
"Country: Somalia <br>Life Expectancy: 44.501 years <br>GDP per capita: 1093.244963 $ <br>Population: 6.921858 million",
"Country: Somalia <br>Life Expectancy: 39.658 years <br>GDP per capita: 926.9602964 $ <br>Population: 6.099799 million",
"Country: Somalia <br>Life Expectancy: 43.795 years <br>GDP per capita: 930.5964284 $ <br>Population: 6.633514 million",
"Country: Somalia <br>Life Expectancy: 45.936 years <br>GDP per capita: 882.0818218 $ <br>Population: 7.75331 million",
"Country: Somalia <br>Life Expectancy: 48.159 years <br>GDP per capita: 926.1410683 $ <br>Population: 9.118773 million"
],
"y": [
1135.749842,
1258.1474130000001,
1369.488336,
1284.7331800000002,
1254.576127,
1450.9925130000001,
1176.807031,
1093.244963,
926.9602964,
930.5964284,
882.0818218000001,
926.1410683
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "f4a893"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y10",
"ysrc": "etpinard:4362:91a9ab",
"textsrc": "etpinard:4362:654c78",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:d78e1a",
"size": [
45.00899999999999,
47.985,
49.951,
51.927,
53.696000000000005,
55.527,
58.161,
60.833999999999996,
61.888000000000005,
60.236000000000004,
53.365,
49.339
]
},
"mode": "markers",
"xaxis": "x10",
"text": [
"Country: South Africa <br>Life Expectancy: 45.009 years <br>GDP per capita: 4725.295531 $ <br>Population: 14.264935 million",
"Country: South Africa <br>Life Expectancy: 47.985 years <br>GDP per capita: 5487.104219 $ <br>Population: 16.151549 million",
"Country: South Africa <br>Life Expectancy: 49.951 years <br>GDP per capita: 5768.729717 $ <br>Population: 18.356657 million",
"Country: South Africa <br>Life Expectancy: 51.927 years <br>GDP per capita: 7114.477971 $ <br>Population: 20.997321 million",
"Country: South Africa <br>Life Expectancy: 53.696 years <br>GDP per capita: 7765.962636 $ <br>Population: 23.93581 million",
"Country: South Africa <br>Life Expectancy: 55.527 years <br>GDP per capita: 8028.651439 $ <br>Population: 27.129932 million",
"Country: South Africa <br>Life Expectancy: 58.161 years <br>GDP per capita: 8568.266228 $ <br>Population: 31.140029 million",
"Country: South Africa <br>Life Expectancy: 60.834 years <br>GDP per capita: 7825.823398 $ <br>Population: 35.933379 million",
"Country: South Africa <br>Life Expectancy: 61.888 years <br>GDP per capita: 7225.069258 $ <br>Population: 39.964159 million",
"Country: South Africa <br>Life Expectancy: 60.236 years <br>GDP per capita: 7479.188244 $ <br>Population: 42.835005 million",
"Country: South Africa <br>Life Expectancy: 53.365 years <br>GDP per capita: 7710.946444 $ <br>Population: 44.433622 million",
"Country: South Africa <br>Life Expectancy: 49.339 years <br>GDP per capita: 9269.657808 $ <br>Population: 43.997828 million"
],
"y": [
4725.295531000001,
5487.104219,
5768.729717,
7114.477970999999,
7765.962636,
8028.651439,
8568.266228,
7825.823398,
7225.0692579999995,
7479.188244,
7710.946444,
9269.657808
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "5785f6"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y10",
"ysrc": "etpinard:4362:e942e9",
"textsrc": "etpinard:4362:f253ef",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:f63e7d",
"size": [
64.94,
66.66,
69.69,
71.44,
73.06,
74.39,
76.3,
76.9,
77.57,
78.77,
79.78,
80.941
]
},
"mode": "markers",
"xaxis": "x11",
"text": [
"Country: Spain <br>Life Expectancy: 64.94 years <br>GDP per capita: 3834.034742 $ <br>Population: 28.54987 million",
"Country: Spain <br>Life Expectancy: 66.66 years <br>GDP per capita: 4564.80241 $ <br>Population: 29.841614 million",
"Country: Spain <br>Life Expectancy: 69.69 years <br>GDP per capita: 5693.843879 $ <br>Population: 31.158061 million",
"Country: Spain <br>Life Expectancy: 71.44 years <br>GDP per capita: 7993.512294 $ <br>Population: 32.850275 million",
"Country: Spain <br>Life Expectancy: 73.06 years <br>GDP per capita: 10638.75131 $ <br>Population: 34.513161 million",
"Country: Spain <br>Life Expectancy: 74.39 years <br>GDP per capita: 13236.92117 $ <br>Population: 36.439 million",
"Country: Spain <br>Life Expectancy: 76.3 years <br>GDP per capita: 13926.16997 $ <br>Population: 37.98331 million",
"Country: Spain <br>Life Expectancy: 76.9 years <br>GDP per capita: 15764.98313 $ <br>Population: 38.880702 million",
"Country: Spain <br>Life Expectancy: 77.57 years <br>GDP per capita: 18603.06452 $ <br>Population: 39.549438 million",
"Country: Spain <br>Life Expectancy: 78.77 years <br>GDP per capita: 20445.29896 $ <br>Population: 39.855442 million",
"Country: Spain <br>Life Expectancy: 79.78 years <br>GDP per capita: 24835.47166 $ <br>Population: 40.152517 million",
"Country: Spain <br>Life Expectancy: 80.941 years <br>GDP per capita: 28821.0637 $ <br>Population: 40.448191 million"
],
"y": [
3834.0347420000003,
4564.80241,
5693.843879,
7993.512294,
10638.75131,
13236.92117,
13926.169969999999,
15764.98313,
18603.06452,
20445.29896,
24835.47166,
28821.0637
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "139b13"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y10",
"ysrc": "etpinard:4362:692949",
"textsrc": "etpinard:4362:2768bd",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:49db52",
"size": [
57.593,
61.456,
62.192,
64.266,
65.042,
65.949,
68.757,
69.01100000000001,
70.37899999999999,
70.457,
70.815,
72.396
]
},
"mode": "markers",
"xaxis": "x12",
"text": [
"Country: Sri Lanka <br>Life Expectancy: 57.593 years <br>GDP per capita: 1083.53203 $ <br>Population: 7.982342 million",
"Country: Sri Lanka <br>Life Expectancy: 61.456 years <br>GDP per capita: 1072.546602 $ <br>Population: 9.128546 million",
"Country: Sri Lanka <br>Life Expectancy: 62.192 years <br>GDP per capita: 1074.47196 $ <br>Population: 10.421936 million",
"Country: Sri Lanka <br>Life Expectancy: 64.266 years <br>GDP per capita: 1135.514326 $ <br>Population: 11.737396 million",
"Country: Sri Lanka <br>Life Expectancy: 65.042 years <br>GDP per capita: 1213.39553 $ <br>Population: 13.016733 million",
"Country: Sri Lanka <br>Life Expectancy: 65.949 years <br>GDP per capita: 1348.775651 $ <br>Population: 14.116836 million",
"Country: Sri Lanka <br>Life Expectancy: 68.757 years <br>GDP per capita: 1648.079789 $ <br>Population: 15.410151 million",
"Country: Sri Lanka <br>Life Expectancy: 69.011 years <br>GDP per capita: 1876.766827 $ <br>Population: 16.495304 million",
"Country: Sri Lanka <br>Life Expectancy: 70.379 years <br>GDP per capita: 2153.739222 $ <br>Population: 17.58706 million",
"Country: Sri Lanka <br>Life Expectancy: 70.457 years <br>GDP per capita: 2664.477257 $ <br>Population: 18.698655 million",
"Country: Sri Lanka <br>Life Expectancy: 70.815 years <br>GDP per capita: 3015.378833 $ <br>Population: 19.576783 million",
"Country: Sri Lanka <br>Life Expectancy: 72.396 years <br>GDP per capita: 3970.095407 $ <br>Population: 20.378239 million"
],
"y": [
1083.53203,
1072.546602,
1074.4719599999999,
1135.514326,
1213.39553,
1348.775651,
1648.0797890000001,
1876.766827,
2153.7392219999997,
2664.477257,
3015.3788329999998,
3970.0954070000003
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "3325b0"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y11",
"ysrc": "etpinard:4362:c8d39e",
"textsrc": "etpinard:4362:e81af8",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:f5c893",
"size": [
38.635,
39.624,
40.87,
42.858000000000004,
45.083,
47.8,
50.338,
51.744,
53.556000000000004,
55.373000000000005,
56.369,
58.556000000000004
]
},
"mode": "markers",
"xaxis": "x",
"text": [
"Country: Sudan <br>Life Expectancy: 38.635 years <br>GDP per capita: 1615.991129 $ <br>Population: 8.504667 million",
"Country: Sudan <br>Life Expectancy: 39.624 years <br>GDP per capita: 1770.337074 $ <br>Population: 9.753392 million",
"Country: Sudan <br>Life Expectancy: 40.87 years <br>GDP per capita: 1959.593767 $ <br>Population: 11.183227 million",
"Country: Sudan <br>Life Expectancy: 42.858 years <br>GDP per capita: 1687.997641 $ <br>Population: 12.716129 million",
"Country: Sudan <br>Life Expectancy: 45.083 years <br>GDP per capita: 1659.652775 $ <br>Population: 14.597019 million",
"Country: Sudan <br>Life Expectancy: 47.8 years <br>GDP per capita: 2202.988423 $ <br>Population: 17.104986 million",
"Country: Sudan <br>Life Expectancy: 50.338 years <br>GDP per capita: 1895.544073 $ <br>Population: 20.367053 million",
"Country: Sudan <br>Life Expectancy: 51.744 years <br>GDP per capita: 1507.819159 $ <br>Population: 24.72596 million",
"Country: Sudan <br>Life Expectancy: 53.556 years <br>GDP per capita: 1492.197043 $ <br>Population: 28.227588 million",
"Country: Sudan <br>Life Expectancy: 55.373 years <br>GDP per capita: 1632.210764 $ <br>Population: 32.160729 million",
"Country: Sudan <br>Life Expectancy: 56.369 years <br>GDP per capita: 1993.398314 $ <br>Population: 37.090298 million",
"Country: Sudan <br>Life Expectancy: 58.556 years <br>GDP per capita: 2602.394995 $ <br>Population: 42.292929 million"
],
"y": [
1615.991129,
1770.3370739999998,
1959.593767,
1687.997641,
1659.652775,
2202.9884230000002,
1895.544073,
1507.819159,
1492.197043,
1632.2107640000002,
1993.398314,
2602.394995
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "0c6319"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y11",
"ysrc": "etpinard:4362:1edeed",
"textsrc": "etpinard:4362:a42305",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:226729",
"size": [
41.407,
43.424,
44.992,
46.633,
49.552,
52.537,
55.56100000000001,
57.678000000000004,
58.474,
54.288999999999994,
43.869,
39.613
]
},
"mode": "markers",
"xaxis": "x2",
"text": [
"Country: Swaziland <br>Life Expectancy: 41.407 years <br>GDP per capita: 1148.376626 $ <br>Population: 0.290243 million",
"Country: Swaziland <br>Life Expectancy: 43.424 years <br>GDP per capita: 1244.708364 $ <br>Population: 0.326741 million",
"Country: Swaziland <br>Life Expectancy: 44.992 years <br>GDP per capita: 1856.182125 $ <br>Population: 0.370006 million",
"Country: Swaziland <br>Life Expectancy: 46.633 years <br>GDP per capita: 2613.101665 $ <br>Population: 0.42069 million",
"Country: Swaziland <br>Life Expectancy: 49.552 years <br>GDP per capita: 3364.836625 $ <br>Population: 0.480105 million",
"Country: Swaziland <br>Life Expectancy: 52.537 years <br>GDP per capita: 3781.410618 $ <br>Population: 0.551425 million",
"Country: Swaziland <br>Life Expectancy: 55.561 years <br>GDP per capita: 3895.384018 $ <br>Population: 0.649901 million",
"Country: Swaziland <br>Life Expectancy: 57.678 years <br>GDP per capita: 3984.839812 $ <br>Population: 0.779348 million",
"Country: Swaziland <br>Life Expectancy: 58.474 years <br>GDP per capita: 3553.0224 $ <br>Population: 0.962344 million",
"Country: Swaziland <br>Life Expectancy: 54.289 years <br>GDP per capita: 3876.76846 $ <br>Population: 1.054486 million",
"Country: Swaziland <br>Life Expectancy: 43.869 years <br>GDP per capita: 4128.116943 $ <br>Population: 1.130269 million",
"Country: Swaziland <br>Life Expectancy: 39.613 years <br>GDP per capita: 4513.480643 $ <br>Population: 1.133066 million"
],
"y": [
1148.376626,
1244.708364,
1856.182125,
2613.1016649999997,
3364.836625,
3781.410618,
3895.384018,
3984.8398119999997,
3553.0224,
3876.7684600000002,
4128.116943,
4513.480643
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "6ad6e3"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y11",
"ysrc": "etpinard:4362:96d9b5",
"textsrc": "etpinard:4362:7cbaba",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:491a36",
"size": [
71.86,
72.49,
73.37,
74.16,
74.72,
75.44,
76.42,
77.19,
78.16,
79.39,
80.04,
80.884
]
},
"mode": "markers",
"xaxis": "x3",
"text": [
"Country: Sweden <br>Life Expectancy: 71.86 years <br>GDP per capita: 8527.844662 $ <br>Population: 7.124673 million",
"Country: Sweden <br>Life Expectancy: 72.49 years <br>GDP per capita: 9911.878226 $ <br>Population: 7.363802 million",
"Country: Sweden <br>Life Expectancy: 73.37 years <br>GDP per capita: 12329.44192 $ <br>Population: 7.561588 million",
"Country: Sweden <br>Life Expectancy: 74.16 years <br>GDP per capita: 15258.29697 $ <br>Population: 7.867931 million",
"Country: Sweden <br>Life Expectancy: 74.72 years <br>GDP per capita: 17832.02464 $ <br>Population: 8.122293 million",
"Country: Sweden <br>Life Expectancy: 75.44 years <br>GDP per capita: 18855.72521 $ <br>Population: 8.251648 million",
"Country: Sweden <br>Life Expectancy: 76.42 years <br>GDP per capita: 20667.38125 $ <br>Population: 8.32526 million",
"Country: Sweden <br>Life Expectancy: 77.19 years <br>GDP per capita: 23586.92927 $ <br>Population: 8.421403 million",
"Country: Sweden <br>Life Expectancy: 78.16 years <br>GDP per capita: 23880.01683 $ <br>Population: 8.718867 million",
"Country: Sweden <br>Life Expectancy: 79.39 years <br>GDP per capita: 25266.59499 $ <br>Population: 8.897619 million",
"Country: Sweden <br>Life Expectancy: 80.04 years <br>GDP per capita: 29341.63093 $ <br>Population: 8.954175 million",
"Country: Sweden <br>Life Expectancy: 80.884 years <br>GDP per capita: 33859.74835 $ <br>Population: 9.031088 million"
],
"y": [
8527.844662000001,
9911.878226,
12329.441920000001,
15258.29697,
17832.02464,
18855.72521,
20667.38125,
23586.92927,
23880.01683,
25266.59499,
29341.630930000003,
33859.74835
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "865875"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y11",
"ysrc": "etpinard:4362:f632f2",
"textsrc": "etpinard:4362:d49320",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:b40a03",
"size": [
69.62,
70.56,
71.32,
72.77,
73.78,
75.39,
76.21,
77.41,
78.03,
79.37,
80.62,
81.70100000000001
]
},
"mode": "markers",
"xaxis": "x4",
"text": [
"Country: Switzerland <br>Life Expectancy: 69.62 years <br>GDP per capita: 14734.23275 $ <br>Population: 4.815 million",
"Country: Switzerland <br>Life Expectancy: 70.56 years <br>GDP per capita: 17909.48973 $ <br>Population: 5.126 million",
"Country: Switzerland <br>Life Expectancy: 71.32 years <br>GDP per capita: 20431.0927 $ <br>Population: 5.666 million",
"Country: Switzerland <br>Life Expectancy: 72.77 years <br>GDP per capita: 22966.14432 $ <br>Population: 6.063 million",
"Country: Switzerland <br>Life Expectancy: 73.78 years <br>GDP per capita: 27195.11304 $ <br>Population: 6.4014 million",
"Country: Switzerland <br>Life Expectancy: 75.39 years <br>GDP per capita: 26982.29052 $ <br>Population: 6.316424 million",
"Country: Switzerland <br>Life Expectancy: 76.21 years <br>GDP per capita: 28397.71512 $ <br>Population: 6.468126 million",
"Country: Switzerland <br>Life Expectancy: 77.41 years <br>GDP per capita: 30281.70459 $ <br>Population: 6.649942 million",
"Country: Switzerland <br>Life Expectancy: 78.03 years <br>GDP per capita: 31871.5303 $ <br>Population: 6.995447 million",
"Country: Switzerland <br>Life Expectancy: 79.37 years <br>GDP per capita: 32135.32301 $ <br>Population: 7.193761 million",
"Country: Switzerland <br>Life Expectancy: 80.62 years <br>GDP per capita: 34480.95771 $ <br>Population: 7.361757 million",
"Country: Switzerland <br>Life Expectancy: 81.701 years <br>GDP per capita: 37506.41907 $ <br>Population: 7.554661 million"
],
"y": [
14734.23275,
17909.48973,
20431.0927,
22966.14432,
27195.113039999997,
26982.29052,
28397.715119999997,
30281.704589999998,
31871.5303,
32135.323010000004,
34480.95771,
37506.419069999996
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "3fc554"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y11",
"ysrc": "etpinard:4362:14f56a",
"textsrc": "etpinard:4362:b0d166",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:031701",
"size": [
45.883,
48.284,
50.305,
53.655,
57.29600000000001,
61.195,
64.59,
66.97399999999999,
69.249,
71.527,
73.053,
74.143
]
},
"mode": "markers",
"xaxis": "x5",
"text": [
"Country: Syria <br>Life Expectancy: 45.883 years <br>GDP per capita: 1643.485354 $ <br>Population: 3.661549 million",
"Country: Syria <br>Life Expectancy: 48.284 years <br>GDP per capita: 2117.234893 $ <br>Population: 4.149908 million",
"Country: Syria <br>Life Expectancy: 50.305 years <br>GDP per capita: 2193.037133 $ <br>Population: 4.834621 million",
"Country: Syria <br>Life Expectancy: 53.655 years <br>GDP per capita: 1881.923632 $ <br>Population: 5.680812 million",
"Country: Syria <br>Life Expectancy: 57.296 years <br>GDP per capita: 2571.423014 $ <br>Population: 6.701172 million",
"Country: Syria <br>Life Expectancy: 61.195 years <br>GDP per capita: 3195.484582 $ <br>Population: 7.932503 million",
"Country: Syria <br>Life Expectancy: 64.59 years <br>GDP per capita: 3761.837715 $ <br>Population: 9.410494 million",
"Country: Syria <br>Life Expectancy: 66.974 years <br>GDP per capita: 3116.774285 $ <br>Population: 11.242847 million",
"Country: Syria <br>Life Expectancy: 69.249 years <br>GDP per capita: 3340.542768 $ <br>Population: 13.219062 million",
"Country: Syria <br>Life Expectancy: 71.527 years <br>GDP per capita: 4014.238972 $ <br>Population: 15.081016 million",
"Country: Syria <br>Life Expectancy: 73.053 years <br>GDP per capita: 4090.925331 $ <br>Population: 17.155814 million",
"Country: Syria <br>Life Expectancy: 74.143 years <br>GDP per capita: 4184.548089 $ <br>Population: 19.314747 million"
],
"y": [
1643.485354,
2117.234893,
2193.037133,
1881.923632,
2571.423014,
3195.484582,
3761.8377149999997,
3116.774285,
3340.542768,
4014.238972,
4090.9253310000004,
4184.548089
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "470f81"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y11",
"ysrc": "etpinard:4362:508f19",
"textsrc": "etpinard:4362:25fddd",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:e6f2b1",
"size": [
58.5,
62.4,
65.2,
67.5,
69.39,
70.59,
72.16,
73.4,
74.26,
75.25,
76.99,
78.4
]
},
"mode": "markers",
"xaxis": "x6",
"text": [
"Country: Taiwan <br>Life Expectancy: 58.5 years <br>GDP per capita: 1206.947913 $ <br>Population: 8.550362 million",
"Country: Taiwan <br>Life Expectancy: 62.4 years <br>GDP per capita: 1507.86129 $ <br>Population: 10.164215 million",
"Country: Taiwan <br>Life Expectancy: 65.2 years <br>GDP per capita: 1822.879028 $ <br>Population: 11.918938 million",
"Country: Taiwan <br>Life Expectancy: 67.5 years <br>GDP per capita: 2643.858681 $ <br>Population: 13.648692 million",
"Country: Taiwan <br>Life Expectancy: 69.39 years <br>GDP per capita: 4062.523897 $ <br>Population: 15.226039 million",
"Country: Taiwan <br>Life Expectancy: 70.59 years <br>GDP per capita: 5596.519826 $ <br>Population: 16.785196 million",
"Country: Taiwan <br>Life Expectancy: 72.16 years <br>GDP per capita: 7426.354774 $ <br>Population: 18.50139 million",
"Country: Taiwan <br>Life Expectancy: 73.4 years <br>GDP per capita: 11054.56175 $ <br>Population: 19.757799 million",
"Country: Taiwan <br>Life Expectancy: 74.26 years <br>GDP per capita: 15215.6579 $ <br>Population: 20.686918 million",
"Country: Taiwan <br>Life Expectancy: 75.25 years <br>GDP per capita: 20206.82098 $ <br>Population: 21.628605 million",
"Country: Taiwan <br>Life Expectancy: 76.99 years <br>GDP per capita: 23235.42329 $ <br>Population: 22.454239 million",
"Country: Taiwan <br>Life Expectancy: 78.4 years <br>GDP per capita: 28718.27684 $ <br>Population: 23.174294 million"
],
"y": [
1206.947913,
1507.86129,
1822.879028,
2643.8586809999997,
4062.523897,
5596.519826,
7426.354773999999,
11054.56175,
15215.6579,
20206.82098,
23235.42329,
28718.27684
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "554ea3"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y11",
"ysrc": "etpinard:4362:862451",
"textsrc": "etpinard:4362:486f5c",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:a48cfc",
"size": [
41.215,
42.974,
44.246,
45.757,
47.62,
49.919,
50.608000000000004,
51.535,
50.44,
48.466,
49.651,
52.516999999999996
]
},
"mode": "markers",
"xaxis": "x7",
"text": [
"Country: Tanzania <br>Life Expectancy: 41.215 years <br>GDP per capita: 716.6500721 $ <br>Population: 8.322925 million",
"Country: Tanzania <br>Life Expectancy: 42.974 years <br>GDP per capita: 698.5356073 $ <br>Population: 9.452826 million",
"Country: Tanzania <br>Life Expectancy: 44.246 years <br>GDP per capita: 722.0038073 $ <br>Population: 10.863958 million",
"Country: Tanzania <br>Life Expectancy: 45.757 years <br>GDP per capita: 848.2186575 $ <br>Population: 12.607312 million",
"Country: Tanzania <br>Life Expectancy: 47.62 years <br>GDP per capita: 915.9850592 $ <br>Population: 14.706593 million",
"Country: Tanzania <br>Life Expectancy: 49.919 years <br>GDP per capita: 962.4922932 $ <br>Population: 17.129565 million",
"Country: Tanzania <br>Life Expectancy: 50.608 years <br>GDP per capita: 874.2426069 $ <br>Population: 19.844382 million",
"Country: Tanzania <br>Life Expectancy: 51.535 years <br>GDP per capita: 831.8220794 $ <br>Population: 23.04063 million",
"Country: Tanzania <br>Life Expectancy: 50.44 years <br>GDP per capita: 825.682454 $ <br>Population: 26.605473 million",
"Country: Tanzania <br>Life Expectancy: 48.466 years <br>GDP per capita: 789.1862231 $ <br>Population: 30.686889 million",
"Country: Tanzania <br>Life Expectancy: 49.651 years <br>GDP per capita: 899.0742111 $ <br>Population: 34.593779 million",
"Country: Tanzania <br>Life Expectancy: 52.517 years <br>GDP per capita: 1107.482182 $ <br>Population: 38.13964 million"
],
"y": [
716.6500721,
698.5356073,
722.0038073,
848.2186575,
915.9850592,
962.4922932,
874.2426069,
831.8220794,
825.682454,
789.1862231,
899.0742111,
1107.482182
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "c628e2"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y11",
"ysrc": "etpinard:4362:d1f9c1",
"textsrc": "etpinard:4362:321618",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:dd6bf6",
"size": [
50.848,
53.63,
56.06100000000001,
58.285,
60.405,
62.494,
64.597,
66.084,
67.298,
67.521,
68.564,
70.616
]
},
"mode": "markers",
"xaxis": "x8",
"text": [
"Country: Thailand <br>Life Expectancy: 50.848 years <br>GDP per capita: 757.7974177 $ <br>Population: 21.289402 million",
"Country: Thailand <br>Life Expectancy: 53.63 years <br>GDP per capita: 793.5774148 $ <br>Population: 25.041917 million",
"Country: Thailand <br>Life Expectancy: 56.061 years <br>GDP per capita: 1002.199172 $ <br>Population: 29.263397 million",
"Country: Thailand <br>Life Expectancy: 58.285 years <br>GDP per capita: 1295.46066 $ <br>Population: 34.024249 million",
"Country: Thailand <br>Life Expectancy: 60.405 years <br>GDP per capita: 1524.358936 $ <br>Population: 39.276153 million",
"Country: Thailand <br>Life Expectancy: 62.494 years <br>GDP per capita: 1961.224635 $ <br>Population: 44.148285 million",
"Country: Thailand <br>Life Expectancy: 64.597 years <br>GDP per capita: 2393.219781 $ <br>Population: 48.82716 million",
"Country: Thailand <br>Life Expectancy: 66.084 years <br>GDP per capita: 2982.653773 $ <br>Population: 52.910342 million",
"Country: Thailand <br>Life Expectancy: 67.298 years <br>GDP per capita: 4616.896545 $ <br>Population: 56.667095 million",
"Country: Thailand <br>Life Expectancy: 67.521 years <br>GDP per capita: 5852.625497 $ <br>Population: 60.216677 million",
"Country: Thailand <br>Life Expectancy: 68.564 years <br>GDP per capita: 5913.187529 $ <br>Population: 62.806748 million",
"Country: Thailand <br>Life Expectancy: 70.616 years <br>GDP per capita: 7458.396327 $ <br>Population: 65.068149 million"
],
"y": [
757.7974177,
793.5774147999999,
1002.1991720000001,
1295.46066,
1524.3589359999999,
1961.2246350000003,
2393.219781,
2982.653773,
4616.8965450000005,
5852.625497,
5913.187529,
7458.3963269999995
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "c26c58"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y11",
"ysrc": "etpinard:4362:5b64bc",
"textsrc": "etpinard:4362:c99983",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:efa96b",
"size": [
38.596,
41.208,
43.922,
46.769,
49.75899999999999,
52.887,
55.471000000000004,
56.941,
58.06100000000001,
58.39,
57.56100000000001,
58.42
]
},
"mode": "markers",
"xaxis": "x9",
"text": [
"Country: Togo <br>Life Expectancy: 38.596 years <br>GDP per capita: 859.8086567 $ <br>Population: 1.219113 million",
"Country: Togo <br>Life Expectancy: 41.208 years <br>GDP per capita: 925.9083202 $ <br>Population: 1.357445 million",
"Country: Togo <br>Life Expectancy: 43.922 years <br>GDP per capita: 1067.53481 $ <br>Population: 1.528098 million",
"Country: Togo <br>Life Expectancy: 46.769 years <br>GDP per capita: 1477.59676 $ <br>Population: 1.73555 million",
"Country: Togo <br>Life Expectancy: 49.759 years <br>GDP per capita: 1649.660188 $ <br>Population: 2.056351 million",
"Country: Togo <br>Life Expectancy: 52.887 years <br>GDP per capita: 1532.776998 $ <br>Population: 2.308582 million",
"Country: Togo <br>Life Expectancy: 55.471 years <br>GDP per capita: 1344.577953 $ <br>Population: 2.644765 million",
"Country: Togo <br>Life Expectancy: 56.941 years <br>GDP per capita: 1202.201361 $ <br>Population: 3.154264 million",
"Country: Togo <br>Life Expectancy: 58.061 years <br>GDP per capita: 1034.298904 $ <br>Population: 3.747553 million",
"Country: Togo <br>Life Expectancy: 58.39 years <br>GDP per capita: 982.2869243 $ <br>Population: 4.32089 million",
"Country: Togo <br>Life Expectancy: 57.561 years <br>GDP per capita: 886.2205765 $ <br>Population: 4.977378 million",
"Country: Togo <br>Life Expectancy: 58.42 years <br>GDP per capita: 882.9699438 $ <br>Population: 5.701579 million"
],
"y": [
859.8086567,
925.9083201999999,
1067.5348099999999,
1477.59676,
1649.660188,
1532.776998,
1344.577953,
1202.201361,
1034.298904,
982.2869242999999,
886.2205765000001,
882.9699437999999
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "701f1b"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y11",
"ysrc": "etpinard:4362:301563",
"textsrc": "etpinard:4362:e34ee8",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:3e6d5a",
"size": [
59.1,
61.8,
64.9,
65.4,
65.9,
68.3,
68.832,
69.582,
69.862,
69.465,
68.976,
69.819
]
},
"mode": "markers",
"xaxis": "x10",
"text": [
"Country: Trinidad and Tobago <br>Life Expectancy: 59.1 years <br>GDP per capita: 3023.271928 $ <br>Population: 0.66285 million",
"Country: Trinidad and Tobago <br>Life Expectancy: 61.8 years <br>GDP per capita: 4100.3934 $ <br>Population: 0.7649 million",
"Country: Trinidad and Tobago <br>Life Expectancy: 64.9 years <br>GDP per capita: 4997.523971 $ <br>Population: 0.887498 million",
"Country: Trinidad and Tobago <br>Life Expectancy: 65.4 years <br>GDP per capita: 5621.368472 $ <br>Population: 0.960155 million",
"Country: Trinidad and Tobago <br>Life Expectancy: 65.9 years <br>GDP per capita: 6619.551419 $ <br>Population: 0.975199 million",
"Country: Trinidad and Tobago <br>Life Expectancy: 68.3 years <br>GDP per capita: 7899.554209 $ <br>Population: 1.039009 million",
"Country: Trinidad and Tobago <br>Life Expectancy: 68.832 years <br>GDP per capita: 9119.528607 $ <br>Population: 1.116479 million",
"Country: Trinidad and Tobago <br>Life Expectancy: 69.582 years <br>GDP per capita: 7388.597823 $ <br>Population: 1.191336 million",
"Country: Trinidad and Tobago <br>Life Expectancy: 69.862 years <br>GDP per capita: 7370.990932 $ <br>Population: 1.183669 million",
"Country: Trinidad and Tobago <br>Life Expectancy: 69.465 years <br>GDP per capita: 8792.573126 $ <br>Population: 1.138101 million",
"Country: Trinidad and Tobago <br>Life Expectancy: 68.976 years <br>GDP per capita: 11460.60023 $ <br>Population: 1.101832 million",
"Country: Trinidad and Tobago <br>Life Expectancy: 69.819 years <br>GDP per capita: 18008.50924 $ <br>Population: 1.056608 million"
],
"y": [
3023.271928,
4100.3934,
4997.5239710000005,
5621.368472,
6619.551418999999,
7899.554209000001,
9119.528607,
7388.597823,
7370.990932,
8792.573126000001,
11460.60023,
18008.50924
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "55c673"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y11",
"ysrc": "etpinard:4362:20c88e",
"textsrc": "etpinard:4362:bf1e41",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:90dc9b",
"size": [
44.6,
47.1,
49.57899999999999,
52.053000000000004,
55.602,
59.836999999999996,
64.048,
66.89399999999999,
70.001,
71.973,
73.042,
73.923
]
},
"mode": "markers",
"xaxis": "x11",
"text": [
"Country: Tunisia <br>Life Expectancy: 44.6 years <br>GDP per capita: 1468.475631 $ <br>Population: 3.647735 million",
"Country: Tunisia <br>Life Expectancy: 47.1 years <br>GDP per capita: 1395.232468 $ <br>Population: 3.950849 million",
"Country: Tunisia <br>Life Expectancy: 49.579 years <br>GDP per capita: 1660.30321 $ <br>Population: 4.286552 million",
"Country: Tunisia <br>Life Expectancy: 52.053 years <br>GDP per capita: 1932.360167 $ <br>Population: 4.786986 million",
"Country: Tunisia <br>Life Expectancy: 55.602 years <br>GDP per capita: 2753.285994 $ <br>Population: 5.303507 million",
"Country: Tunisia <br>Life Expectancy: 59.837 years <br>GDP per capita: 3120.876811 $ <br>Population: 6.005061 million",
"Country: Tunisia <br>Life Expectancy: 64.048 years <br>GDP per capita: 3560.233174 $ <br>Population: 6.734098 million",
"Country: Tunisia <br>Life Expectancy: 66.894 years <br>GDP per capita: 3810.419296 $ <br>Population: 7.724976 million",
"Country: Tunisia <br>Life Expectancy: 70.001 years <br>GDP per capita: 4332.720164 $ <br>Population: 8.523077 million",
"Country: Tunisia <br>Life Expectancy: 71.973 years <br>GDP per capita: 4876.798614 $ <br>Population: 9.231669 million",
"Country: Tunisia <br>Life Expectancy: 73.042 years <br>GDP per capita: 5722.895655 $ <br>Population: 9.770575 million",
"Country: Tunisia <br>Life Expectancy: 73.923 years <br>GDP per capita: 7092.923025 $ <br>Population: 10.276158 million"
],
"y": [
1468.475631,
1395.232468,
1660.30321,
1932.3601670000003,
2753.2859940000003,
3120.876811,
3560.2331740000004,
3810.419296,
4332.720164,
4876.798614,
5722.895654999999,
7092.923025
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "87c3f9"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y11",
"ysrc": "etpinard:4362:d1898d",
"textsrc": "etpinard:4362:4b1e07",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:1ae215",
"size": [
43.585,
48.07899999999999,
52.098,
54.336000000000006,
57.005,
59.507,
61.036,
63.108000000000004,
66.146,
68.835,
70.845,
71.777
]
},
"mode": "markers",
"xaxis": "x12",
"text": [
"Country: Turkey <br>Life Expectancy: 43.585 years <br>GDP per capita: 1969.10098 $ <br>Population: 22.235677 million",
"Country: Turkey <br>Life Expectancy: 48.079 years <br>GDP per capita: 2218.754257 $ <br>Population: 25.670939 million",
"Country: Turkey <br>Life Expectancy: 52.098 years <br>GDP per capita: 2322.869908 $ <br>Population: 29.788695 million",
"Country: Turkey <br>Life Expectancy: 54.336 years <br>GDP per capita: 2826.356387 $ <br>Population: 33.411317 million",
"Country: Turkey <br>Life Expectancy: 57.005 years <br>GDP per capita: 3450.69638 $ <br>Population: 37.492953 million",
"Country: Turkey <br>Life Expectancy: 59.507 years <br>GDP per capita: 4269.122326 $ <br>Population: 42.404033 million",
"Country: Turkey <br>Life Expectancy: 61.036 years <br>GDP per capita: 4241.356344 $ <br>Population: 47.328791 million",
"Country: Turkey <br>Life Expectancy: 63.108 years <br>GDP per capita: 5089.043686 $ <br>Population: 52.881328 million",
"Country: Turkey <br>Life Expectancy: 66.146 years <br>GDP per capita: 5678.348271 $ <br>Population: 58.179144 million",
"Country: Turkey <br>Life Expectancy: 68.835 years <br>GDP per capita: 6601.429915 $ <br>Population: 63.047647 million",
"Country: Turkey <br>Life Expectancy: 70.845 years <br>GDP per capita: 6508.085718 $ <br>Population: 67.308928 million",
"Country: Turkey <br>Life Expectancy: 71.777 years <br>GDP per capita: 8458.276384 $ <br>Population: 71.158647 million"
],
"y": [
1969.1009800000002,
2218.754257,
2322.8699079999997,
2826.3563870000003,
3450.69638,
4269.122326,
4241.356344,
5089.043686,
5678.348271,
6601.429915,
6508.085718,
8458.276384
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "38ea6b"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y12",
"ysrc": "etpinard:4362:d31922",
"textsrc": "etpinard:4362:3573ac",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:cb010a",
"size": [
39.978,
42.571000000000005,
45.343999999999994,
48.051,
51.016000000000005,
50.35,
49.849,
51.50899999999999,
48.825,
44.578,
47.813,
51.542
]
},
"mode": "markers",
"xaxis": "x",
"text": [
"Country: Uganda <br>Life Expectancy: 39.978 years <br>GDP per capita: 734.753484 $ <br>Population: 5.824797 million",
"Country: Uganda <br>Life Expectancy: 42.571 years <br>GDP per capita: 774.3710692 $ <br>Population: 6.675501 million",
"Country: Uganda <br>Life Expectancy: 45.344 years <br>GDP per capita: 767.2717398 $ <br>Population: 7.688797 million",
"Country: Uganda <br>Life Expectancy: 48.051 years <br>GDP per capita: 908.9185217 $ <br>Population: 8.900294 million",
"Country: Uganda <br>Life Expectancy: 51.016 years <br>GDP per capita: 950.735869 $ <br>Population: 10.190285 million",
"Country: Uganda <br>Life Expectancy: 50.35 years <br>GDP per capita: 843.7331372 $ <br>Population: 11.457758 million",
"Country: Uganda <br>Life Expectancy: 49.849 years <br>GDP per capita: 682.2662268 $ <br>Population: 12.9394 million",
"Country: Uganda <br>Life Expectancy: 51.509 years <br>GDP per capita: 617.7244065 $ <br>Population: 15.28305 million",
"Country: Uganda <br>Life Expectancy: 48.825 years <br>GDP per capita: 644.1707969 $ <br>Population: 18.25219 million",
"Country: Uganda <br>Life Expectancy: 44.578 years <br>GDP per capita: 816.559081 $ <br>Population: 21.210254 million",
"Country: Uganda <br>Life Expectancy: 47.813 years <br>GDP per capita: 927.7210018 $ <br>Population: 24.739869 million",
"Country: Uganda <br>Life Expectancy: 51.542 years <br>GDP per capita: 1056.380121 $ <br>Population: 29.170398 million"
],
"y": [
734.753484,
774.3710692000001,
767.2717397999999,
908.9185217,
950.735869,
843.7331372000001,
682.2662267999999,
617.7244065,
644.1707968999999,
816.559081,
927.7210018,
1056.3801210000001
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "a7c112"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Europe",
"yaxis": "y12",
"ysrc": "etpinard:4362:d38255",
"textsrc": "etpinard:4362:dec455",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#ff7f0e",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:5763d9",
"size": [
69.18,
70.42,
70.76,
71.36,
72.01,
72.76,
74.04,
75.007,
76.42,
77.218,
78.471,
79.425
]
},
"mode": "markers",
"xaxis": "x2",
"text": [
"Country: United Kingdom <br>Life Expectancy: 69.18 years <br>GDP per capita: 9979.508487 $ <br>Population: 50.43 million",
"Country: United Kingdom <br>Life Expectancy: 70.42 years <br>GDP per capita: 11283.17795 $ <br>Population: 51.43 million",
"Country: United Kingdom <br>Life Expectancy: 70.76 years <br>GDP per capita: 12477.17707 $ <br>Population: 53.292 million",
"Country: United Kingdom <br>Life Expectancy: 71.36 years <br>GDP per capita: 14142.85089 $ <br>Population: 54.959 million",
"Country: United Kingdom <br>Life Expectancy: 72.01 years <br>GDP per capita: 15895.11641 $ <br>Population: 56.079 million",
"Country: United Kingdom <br>Life Expectancy: 72.76 years <br>GDP per capita: 17428.74846 $ <br>Population: 56.179 million",
"Country: United Kingdom <br>Life Expectancy: 74.04 years <br>GDP per capita: 18232.42452 $ <br>Population: 56.339704 million",
"Country: United Kingdom <br>Life Expectancy: 75.007 years <br>GDP per capita: 21664.78767 $ <br>Population: 56.98162 million",
"Country: United Kingdom <br>Life Expectancy: 76.42 years <br>GDP per capita: 22705.09254 $ <br>Population: 57.866349 million",
"Country: United Kingdom <br>Life Expectancy: 77.218 years <br>GDP per capita: 26074.53136 $ <br>Population: 58.808266 million",
"Country: United Kingdom <br>Life Expectancy: 78.471 years <br>GDP per capita: 29478.99919 $ <br>Population: 59.912431 million",
"Country: United Kingdom <br>Life Expectancy: 79.425 years <br>GDP per capita: 33203.26128 $ <br>Population: 60.776238 million"
],
"y": [
9979.508487000001,
11283.17795,
12477.17707,
14142.85089,
15895.116409999999,
17428.74846,
18232.42452,
21664.787669999998,
22705.09254,
26074.53136,
29478.99919,
33203.26128
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "19961d"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y12",
"ysrc": "etpinard:4362:a8bcaa",
"textsrc": "etpinard:4362:c41f21",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:704f18",
"size": [
68.44,
69.49,
70.21,
70.76,
71.34,
73.38,
74.65,
75.02,
76.09,
76.81,
77.31,
78.242
]
},
"mode": "markers",
"xaxis": "x3",
"text": [
"Country: United States <br>Life Expectancy: 68.44 years <br>GDP per capita: 13990.48208 $ <br>Population: 157.553 million",
"Country: United States <br>Life Expectancy: 69.49 years <br>GDP per capita: 14847.12712 $ <br>Population: 171.984 million",
"Country: United States <br>Life Expectancy: 70.21 years <br>GDP per capita: 16173.14586 $ <br>Population: 186.538 million",
"Country: United States <br>Life Expectancy: 70.76 years <br>GDP per capita: 19530.36557 $ <br>Population: 198.712 million",
"Country: United States <br>Life Expectancy: 71.34 years <br>GDP per capita: 21806.03594 $ <br>Population: 209.896 million",
"Country: United States <br>Life Expectancy: 73.38 years <br>GDP per capita: 24072.63213 $ <br>Population: 220.239 million",
"Country: United States <br>Life Expectancy: 74.65 years <br>GDP per capita: 25009.55914 $ <br>Population: 232.187835 million",
"Country: United States <br>Life Expectancy: 75.02 years <br>GDP per capita: 29884.35041 $ <br>Population: 242.803533 million",
"Country: United States <br>Life Expectancy: 76.09 years <br>GDP per capita: 32003.93224 $ <br>Population: 256.894189 million",
"Country: United States <br>Life Expectancy: 76.81 years <br>GDP per capita: 35767.43303 $ <br>Population: 272.91176 million",
"Country: United States <br>Life Expectancy: 77.31 years <br>GDP per capita: 39097.09955 $ <br>Population: 287.675526 million",
"Country: United States <br>Life Expectancy: 78.242 years <br>GDP per capita: 42951.65309 $ <br>Population: 301.139947 million"
],
"y": [
13990.482080000002,
14847.12712,
16173.145859999999,
19530.365569999998,
21806.03594,
24072.63213,
25009.55914,
29884.350410000003,
32003.93224,
35767.43303,
39097.09955,
42951.65309
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "cd4cf1"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y12",
"ysrc": "etpinard:4362:4ef960",
"textsrc": "etpinard:4362:3aab3d",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:355d34",
"size": [
66.071,
67.044,
68.253,
68.468,
68.673,
69.48100000000001,
70.805,
71.918,
72.752,
74.223,
75.307,
76.384
]
},
"mode": "markers",
"xaxis": "x4",
"text": [
"Country: Uruguay <br>Life Expectancy: 66.071 years <br>GDP per capita: 5716.766744 $ <br>Population: 2.252965 million",
"Country: Uruguay <br>Life Expectancy: 67.044 years <br>GDP per capita: 6150.772969 $ <br>Population: 2.424959 million",
"Country: Uruguay <br>Life Expectancy: 68.253 years <br>GDP per capita: 5603.357717 $ <br>Population: 2.598466 million",
"Country: Uruguay <br>Life Expectancy: 68.468 years <br>GDP per capita: 5444.61962 $ <br>Population: 2.748579 million",
"Country: Uruguay <br>Life Expectancy: 68.673 years <br>GDP per capita: 5703.408898 $ <br>Population: 2.829526 million",
"Country: Uruguay <br>Life Expectancy: 69.481 years <br>GDP per capita: 6504.339663 $ <br>Population: 2.87352 million",
"Country: Uruguay <br>Life Expectancy: 70.805 years <br>GDP per capita: 6920.223051 $ <br>Population: 2.953997 million",
"Country: Uruguay <br>Life Expectancy: 71.918 years <br>GDP per capita: 7452.398969 $ <br>Population: 3.045153 million",
"Country: Uruguay <br>Life Expectancy: 72.752 years <br>GDP per capita: 8137.004775 $ <br>Population: 3.149262 million",
"Country: Uruguay <br>Life Expectancy: 74.223 years <br>GDP per capita: 9230.240708 $ <br>Population: 3.262838 million",
"Country: Uruguay <br>Life Expectancy: 75.307 years <br>GDP per capita: 7727.002004 $ <br>Population: 3.363085 million",
"Country: Uruguay <br>Life Expectancy: 76.384 years <br>GDP per capita: 10611.46299 $ <br>Population: 3.447496 million"
],
"y": [
5716.766744,
6150.772969,
5603.357717,
5444.61962,
5703.408898,
6504.339663000001,
6920.223051000001,
7452.398969,
8137.004775,
9230.240708,
7727.002004000001,
10611.46299
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "525327"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Americas",
"yaxis": "y12",
"ysrc": "etpinard:4362:3ddba6",
"textsrc": "etpinard:4362:80309e",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#d62728",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:b18873",
"size": [
55.088,
57.907,
60.77,
63.479,
65.712,
67.456,
68.557,
70.19,
71.15,
72.146,
72.766,
73.747
]
},
"mode": "markers",
"xaxis": "x5",
"text": [
"Country: Venezuela <br>Life Expectancy: 55.088 years <br>GDP per capita: 7689.799761 $ <br>Population: 5.439568 million",
"Country: Venezuela <br>Life Expectancy: 57.907 years <br>GDP per capita: 9802.466526 $ <br>Population: 6.702668 million",
"Country: Venezuela <br>Life Expectancy: 60.77 years <br>GDP per capita: 8422.974165 $ <br>Population: 8.143375 million",
"Country: Venezuela <br>Life Expectancy: 63.479 years <br>GDP per capita: 9541.474188 $ <br>Population: 9.709552 million",
"Country: Venezuela <br>Life Expectancy: 65.712 years <br>GDP per capita: 10505.25966 $ <br>Population: 11.515649 million",
"Country: Venezuela <br>Life Expectancy: 67.456 years <br>GDP per capita: 13143.95095 $ <br>Population: 13.503563 million",
"Country: Venezuela <br>Life Expectancy: 68.557 years <br>GDP per capita: 11152.41011 $ <br>Population: 15.620766 million",
"Country: Venezuela <br>Life Expectancy: 70.19 years <br>GDP per capita: 9883.584648 $ <br>Population: 17.910182 million",
"Country: Venezuela <br>Life Expectancy: 71.15 years <br>GDP per capita: 10733.92631 $ <br>Population: 20.265563 million",
"Country: Venezuela <br>Life Expectancy: 72.146 years <br>GDP per capita: 10165.49518 $ <br>Population: 22.374398 million",
"Country: Venezuela <br>Life Expectancy: 72.766 years <br>GDP per capita: 8605.047831 $ <br>Population: 24.28767 million",
"Country: Venezuela <br>Life Expectancy: 73.747 years <br>GDP per capita: 11415.80569 $ <br>Population: 26.084662 million"
],
"y": [
7689.799761,
9802.466526,
8422.974165000001,
9541.474188,
10505.25966,
13143.95095,
11152.410109999999,
9883.584648,
10733.926309999999,
10165.49518,
8605.047831,
11415.805690000001
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "6491bf"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y12",
"ysrc": "etpinard:4362:eaba57",
"textsrc": "etpinard:4362:a89dca",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:0de707",
"size": [
40.412,
42.887,
45.363,
47.838,
50.254,
55.763999999999996,
58.816,
62.82,
67.66199999999999,
70.672,
73.017,
74.249
]
},
"mode": "markers",
"xaxis": "x6",
"text": [
"Country: Vietnam <br>Life Expectancy: 40.412 years <br>GDP per capita: 605.0664917 $ <br>Population: 26.246839 million",
"Country: Vietnam <br>Life Expectancy: 42.887 years <br>GDP per capita: 676.2854478 $ <br>Population: 28.998543 million",
"Country: Vietnam <br>Life Expectancy: 45.363 years <br>GDP per capita: 772.0491602 $ <br>Population: 33.79614 million",
"Country: Vietnam <br>Life Expectancy: 47.838 years <br>GDP per capita: 637.1232887 $ <br>Population: 39.46391 million",
"Country: Vietnam <br>Life Expectancy: 50.254 years <br>GDP per capita: 699.5016441 $ <br>Population: 44.655014 million",
"Country: Vietnam <br>Life Expectancy: 55.764 years <br>GDP per capita: 713.5371196 $ <br>Population: 50.533506 million",
"Country: Vietnam <br>Life Expectancy: 58.816 years <br>GDP per capita: 707.2357863 $ <br>Population: 56.142181 million",
"Country: Vietnam <br>Life Expectancy: 62.82 years <br>GDP per capita: 820.7994449 $ <br>Population: 62.826491 million",
"Country: Vietnam <br>Life Expectancy: 67.662 years <br>GDP per capita: 989.0231487 $ <br>Population: 69.940728 million",
"Country: Vietnam <br>Life Expectancy: 70.672 years <br>GDP per capita: 1385.896769 $ <br>Population: 76.048996 million",
"Country: Vietnam <br>Life Expectancy: 73.017 years <br>GDP per capita: 1764.456677 $ <br>Population: 80.908147 million",
"Country: Vietnam <br>Life Expectancy: 74.249 years <br>GDP per capita: 2441.576404 $ <br>Population: 85.262356 million"
],
"y": [
605.0664917,
676.2854477999999,
772.0491602000001,
637.1232887,
699.5016441,
713.5371196000001,
707.2357863,
820.7994449,
989.0231487,
1385.896769,
1764.456677,
2441.576404
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "3def9e"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y12",
"ysrc": "etpinard:4362:2c05a7",
"textsrc": "etpinard:4362:33c595",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:069556",
"size": [
43.16,
45.67100000000001,
48.126999999999995,
51.631,
56.532,
60.765,
64.406,
67.046,
69.718,
71.096,
72.37,
73.422
]
},
"mode": "markers",
"xaxis": "x7",
"text": [
"Country: West Bank and Gaza <br>Life Expectancy: 43.16 years <br>GDP per capita: 1515.592329 $ <br>Population: 1.030585 million",
"Country: West Bank and Gaza <br>Life Expectancy: 45.671 years <br>GDP per capita: 1827.067742 $ <br>Population: 1.070439 million",
"Country: West Bank and Gaza <br>Life Expectancy: 48.127 years <br>GDP per capita: 2198.956312 $ <br>Population: 1.133134 million",
"Country: West Bank and Gaza <br>Life Expectancy: 51.631 years <br>GDP per capita: 2649.715007 $ <br>Population: 1.142636 million",
"Country: West Bank and Gaza <br>Life Expectancy: 56.532 years <br>GDP per capita: 3133.409277 $ <br>Population: 1.089572 million",
"Country: West Bank and Gaza <br>Life Expectancy: 60.765 years <br>GDP per capita: 3682.831494 $ <br>Population: 1.261091 million",
"Country: West Bank and Gaza <br>Life Expectancy: 64.406 years <br>GDP per capita: 4336.032082 $ <br>Population: 1.425876 million",
"Country: West Bank and Gaza <br>Life Expectancy: 67.046 years <br>GDP per capita: 5107.197384 $ <br>Population: 1.69121 million",
"Country: West Bank and Gaza <br>Life Expectancy: 69.718 years <br>GDP per capita: 6017.654756 $ <br>Population: 2.104779 million",
"Country: West Bank and Gaza <br>Life Expectancy: 71.096 years <br>GDP per capita: 7110.667619 $ <br>Population: 2.826046 million",
"Country: West Bank and Gaza <br>Life Expectancy: 72.37 years <br>GDP per capita: 4515.487575 $ <br>Population: 3.389578 million",
"Country: West Bank and Gaza <br>Life Expectancy: 73.422 years <br>GDP per capita: 3025.349798 $ <br>Population: 4.018332 million"
],
"y": [
1515.5923289999998,
1827.0677420000002,
2198.9563120000003,
2649.7150070000002,
3133.4092769999997,
3682.8314939999996,
4336.032082,
5107.197384,
6017.654756,
7110.667619,
4515.487575,
3025.349798
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "4e8052"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Asia",
"yaxis": "y12",
"ysrc": "etpinard:4362:8996c8",
"textsrc": "etpinard:4362:50ff99",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#1f77b4",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:66d7c7",
"size": [
32.548,
33.97,
35.18,
36.984,
39.848,
44.175,
49.113,
52.922,
55.599,
58.02,
60.308,
62.698
]
},
"mode": "markers",
"xaxis": "x8",
"text": [
"Country: Yemen, Rep. <br>Life Expectancy: 32.548 years <br>GDP per capita: 781.7175761 $ <br>Population: 4.963829 million",
"Country: Yemen, Rep. <br>Life Expectancy: 33.97 years <br>GDP per capita: 804.8304547 $ <br>Population: 5.49809 million",
"Country: Yemen, Rep. <br>Life Expectancy: 35.18 years <br>GDP per capita: 825.6232006 $ <br>Population: 6.120081 million",
"Country: Yemen, Rep. <br>Life Expectancy: 36.984 years <br>GDP per capita: 862.4421463 $ <br>Population: 6.740785 million",
"Country: Yemen, Rep. <br>Life Expectancy: 39.848 years <br>GDP per capita: 1265.047031 $ <br>Population: 7.407075 million",
"Country: Yemen, Rep. <br>Life Expectancy: 44.175 years <br>GDP per capita: 1829.765177 $ <br>Population: 8.40399 million",
"Country: Yemen, Rep. <br>Life Expectancy: 49.113 years <br>GDP per capita: 1977.55701 $ <br>Population: 9.657618 million",
"Country: Yemen, Rep. <br>Life Expectancy: 52.922 years <br>GDP per capita: 1971.741538 $ <br>Population: 11.21934 million",
"Country: Yemen, Rep. <br>Life Expectancy: 55.599 years <br>GDP per capita: 1879.496673 $ <br>Population: 13.367997 million",
"Country: Yemen, Rep. <br>Life Expectancy: 58.02 years <br>GDP per capita: 2117.484526 $ <br>Population: 15.826497 million",
"Country: Yemen, Rep. <br>Life Expectancy: 60.308 years <br>GDP per capita: 2234.820827 $ <br>Population: 18.701257 million",
"Country: Yemen, Rep. <br>Life Expectancy: 62.698 years <br>GDP per capita: 2280.769906 $ <br>Population: 22.211743 million"
],
"y": [
781.7175761,
804.8304547,
825.6232006,
862.4421463,
1265.047031,
1829.765177,
1977.5570100000002,
1971.741538,
1879.496673,
2117.484526,
2234.820827,
2280.769906
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "61e026"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y12",
"ysrc": "etpinard:4362:2b4572",
"textsrc": "etpinard:4362:2969b5",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:b3a1c3",
"size": [
42.038000000000004,
44.077,
46.023,
47.768,
50.107,
51.386,
51.821000000000005,
50.821000000000005,
46.1,
40.238,
39.193000000000005,
42.38399999999999
]
},
"mode": "markers",
"xaxis": "x9",
"text": [
"Country: Zambia <br>Life Expectancy: 42.038 years <br>GDP per capita: 1147.388831 $ <br>Population: 2.672 million",
"Country: Zambia <br>Life Expectancy: 44.077 years <br>GDP per capita: 1311.956766 $ <br>Population: 3.016 million",
"Country: Zambia <br>Life Expectancy: 46.023 years <br>GDP per capita: 1452.725766 $ <br>Population: 3.421 million",
"Country: Zambia <br>Life Expectancy: 47.768 years <br>GDP per capita: 1777.077318 $ <br>Population: 3.9 million",
"Country: Zambia <br>Life Expectancy: 50.107 years <br>GDP per capita: 1773.498265 $ <br>Population: 4.506497 million",
"Country: Zambia <br>Life Expectancy: 51.386 years <br>GDP per capita: 1588.688299 $ <br>Population: 5.21655 million",
"Country: Zambia <br>Life Expectancy: 51.821 years <br>GDP per capita: 1408.678565 $ <br>Population: 6.100407 million",
"Country: Zambia <br>Life Expectancy: 50.821 years <br>GDP per capita: 1213.315116 $ <br>Population: 7.272406 million",
"Country: Zambia <br>Life Expectancy: 46.1 years <br>GDP per capita: 1210.884633 $ <br>Population: 8.381163 million",
"Country: Zambia <br>Life Expectancy: 40.238 years <br>GDP per capita: 1071.353818 $ <br>Population: 9.417789 million",
"Country: Zambia <br>Life Expectancy: 39.193 years <br>GDP per capita: 1071.613938 $ <br>Population: 10.595811 million",
"Country: Zambia <br>Life Expectancy: 42.384 years <br>GDP per capita: 1271.211593 $ <br>Population: 11.746035 million"
],
"y": [
1147.388831,
1311.956766,
1452.725766,
1777.0773179999999,
1773.498265,
1588.688299,
1408.678565,
1213.315116,
1210.884633,
1071.353818,
1071.6139380000002,
1271.211593
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "e76147"
},
{
"xsrc": "etpinard:4362:cea95f",
"name": "Africa",
"yaxis": "y12",
"ysrc": "etpinard:4362:36a485",
"textsrc": "etpinard:4362:bec9c4",
"marker": {
"opacity": 0.6,
"sizeref": 2.753433333333333,
"color": "#2ca02c",
"sizemode": "dimeter",
"sizesrc": "etpinard:4362:768581",
"size": [
48.451,
50.468999999999994,
52.358000000000004,
53.995,
55.635,
57.674,
60.363,
62.351000000000006,
60.376999999999995,
46.809,
39.989000000000004,
43.486999999999995
]
},
"mode": "markers",
"xaxis": "x10",
"text": [
"Country: Zimbabwe <br>Life Expectancy: 48.451 years <br>GDP per capita: 406.8841148 $ <br>Population: 3.080907 million",
"Country: Zimbabwe <br>Life Expectancy: 50.469 years <br>GDP per capita: 518.7642681 $ <br>Population: 3.64634 million",
"Country: Zimbabwe <br>Life Expectancy: 52.358 years <br>GDP per capita: 527.2721818 $ <br>Population: 4.277736 million",
"Country: Zimbabwe <br>Life Expectancy: 53.995 years <br>GDP per capita: 569.7950712 $ <br>Population: 4.995432 million",
"Country: Zimbabwe <br>Life Expectancy: 55.635 years <br>GDP per capita: 799.3621758 $ <br>Population: 5.861135 million",
"Country: Zimbabwe <br>Life Expectancy: 57.674 years <br>GDP per capita: 685.5876821 $ <br>Population: 6.642107 million",
"Country: Zimbabwe <br>Life Expectancy: 60.363 years <br>GDP per capita: 788.8550411 $ <br>Population: 7.636524 million",
"Country: Zimbabwe <br>Life Expectancy: 62.351 years <br>GDP per capita: 706.1573059 $ <br>Population: 9.216418 million",
"Country: Zimbabwe <br>Life Expectancy: 60.377 years <br>GDP per capita: 693.4207856 $ <br>Population: 10.70434 million",
"Country: Zimbabwe <br>Life Expectancy: 46.809 years <br>GDP per capita: 792.4499603 $ <br>Population: 11.404948 million",
"Country: Zimbabwe <br>Life Expectancy: 39.989 years <br>GDP per capita: 672.0386227 $ <br>Population: 11.926563 million",
"Country: Zimbabwe <br>Life Expectancy: 43.487 years <br>GDP per capita: 469.7092981 $ <br>Population: 12.311143 million"
],
"y": [
406.8841148,
518.7642681,
527.2721818,
569.7950712,
799.3621757999999,
685.5876821,
788.8550411,
706.1573059,
693.4207856,
792.4499602999999,
672.0386227000001,
469.70929810000007
],
"x": [
1952,
1957,
1962,
1967,
1972,
1977,
1982,
1987,
1992,
1997,
2002,
2007
],
"type": "scatter",
"uid": "4dc07b"
}
],
"layout": {
"xaxis12": {
"domain": [
0.9319444444444444,
0.9999999999999999
],
"title": "year",
"ticks": "outside",
"showgrid": false,
"range": [
1950,
2010
],
"showline": true,
"zeroline": false,
"position": 0,
"anchor": "free",
"type": "linear"
},
"xaxis11": {
"domain": [
0.8472222222222221,
0.9152777777777776
],
"title": "year",
"ticks": "outside",
"showgrid": false,
"range": [
1950,
2010
],
"showline": true,
"zeroline": false,
"position": 0,
"anchor": "free",
"type": "linear"
},
"height": 1800,
"yaxis2": {
"domain": [
0.8541666666666667,
0.9145833333333334
],
"title": "GDP per cap.",
"ticks": "outside",
"showgrid": false,
"range": [
1.9542425094393248,
5.698970004336019
],
"showline": true,
"zeroline": false,
"position": 0,
"type": "log",
"anchor": "free"
},
"yaxis3": {
"domain": [
0.76875,
0.8291666666666667
],
"title": "GDP per cap.",
"ticks": "outside",
"showgrid": false,
"range": [
1.9542425094393248,
5.698970004336019
],
"showline": true,
"zeroline": false,
"position": 0,
"type": "log",
"anchor": "free"
},
"yaxis4": {
"domain": [
0.6833333333333333,
0.74375
],
"title": "GDP per cap.",
"ticks": "outside",
"showgrid": false,
"range": [
1.9542425094393248,
5.698970004336019
],
"showline": true,
"zeroline": false,
"position": 0,
"type": "log",
"anchor": "free"
},
"yaxis5": {
"domain": [
0.5979166666666667,
0.6583333333333333
],
"title": "GDP per cap.",
"ticks": "outside",
"showgrid": false,
"range": [
1.9542425094393248,
5.698970004336019
],
"showline": true,
"zeroline": false,
"position": 0,
"type": "log",
"anchor": "free"
},
"yaxis6": {
"domain": [
0.5125,
0.5729166666666666
],
"title": "GDP per cap.",
"ticks": "outside",
"showgrid": false,
"range": [
1.9542425094393248,
5.698970004336019
],
"showline": true,
"zeroline": false,
"position": 0,
"type": "log",
"anchor": "free"
},
"yaxis7": {
"domain": [
0.42708333333333337,
0.48750000000000004
],
"title": "GDP per cap.",
"ticks": "outside",
"showgrid": false,
"range": [
1.9542425094393248,
5.698970004336019
],
"showline": true,
"zeroline": false,
"position": 0,
"type": "log",
"anchor": "free"
},
"yaxis8": {
"domain": [
0.3416666666666667,
0.40208333333333335
],
"title": "GDP per cap.",
"ticks": "outside",
"showgrid": false,
"range": [
1.9542425094393248,
5.698970004336019
],
"showline": true,
"zeroline": false,
"position": 0,
"type": "log",
"anchor": "free"
},
"yaxis9": {
"domain": [
0.25625,
0.31666666666666665
],
"title": "GDP per cap.",
"ticks": "outside",
"showgrid": false,
"range": [
1.9542425094393248,
5.698970004336019
],
"showline": true,
"zeroline": false,
"position": 0,
"type": "log",
"anchor": "free"
},
"autosize": false,
"title": "Fig 3.2: GDP per Capita from 1952 to 2007 in USD of the year 2000 [GapMinder]",
"yaxis12": {
"domain": [
0,
0.060416666666666674
],
"title": "GDP per cap.",
"ticks": "outside",
"showgrid": false,
"range": [
1.9542425094393248,
5.698970004336019
],
"zeroline": false,
"showline": true,
"type": "log",
"anchor": "x"
},
"width": 2000,
"yaxis10": {
"domain": [
0.17083333333333334,
0.23125
],
"title": "GDP per cap.",
"ticks": "outside",
"showgrid": false,
"range": [
1.9542425094393248,
5.698970004336019
],
"showline": true,
"zeroline": false,
"position": 0,
"type": "log",
"anchor": "free"
},
"yaxis11": {
"domain": [
0.08541666666666667,
0.14583333333333334
],
"title": "GDP per cap.",
"ticks": "outside",
"showgrid": false,
"range": [
1.9542425094393248,
5.698970004336019
],
"showline": true,
"zeroline": false,
"position": 0,
"type": "log",
"anchor": "free"
},
"annotations": [
{
"xref": "x",
"xanchor": "left",
"yref": "y",
"text": "Afghanistan",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x2",
"xanchor": "left",
"yref": "y",
"text": "Albania",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x3",
"xanchor": "left",
"yref": "y",
"text": "Algeria",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x4",
"xanchor": "left",
"yref": "y",
"text": "Angola",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x5",
"xanchor": "left",
"yref": "y",
"text": "Argentina",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x6",
"xanchor": "left",
"yref": "y",
"text": "Australia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x7",
"xanchor": "left",
"yref": "y",
"text": "Austria",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x8",
"xanchor": "left",
"yref": "y",
"text": "Bahrain",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x9",
"xanchor": "left",
"yref": "y",
"text": "Bangladesh",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x10",
"xanchor": "left",
"yref": "y",
"text": "Belgium",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x11",
"xanchor": "left",
"yref": "y",
"text": "Benin",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x12",
"xanchor": "left",
"yref": "y",
"text": "Bolivia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x",
"xanchor": "left",
"yref": "y2",
"text": "Bosnia and Her.",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x2",
"xanchor": "left",
"yref": "y2",
"text": "Botswana",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x3",
"xanchor": "left",
"yref": "y2",
"text": "Brazil",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x4",
"xanchor": "left",
"yref": "y2",
"text": "Bulgaria",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x5",
"xanchor": "left",
"yref": "y2",
"text": "Burkina Faso",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x6",
"xanchor": "left",
"yref": "y2",
"text": "Burundi",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x7",
"xanchor": "left",
"yref": "y2",
"text": "Cambodia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x8",
"xanchor": "left",
"yref": "y2",
"text": "Cameroon",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x9",
"xanchor": "left",
"yref": "y2",
"text": "Canada",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x10",
"xanchor": "left",
"yref": "y2",
"text": "Central Africa.",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x11",
"xanchor": "left",
"yref": "y2",
"text": "Chad",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x12",
"xanchor": "left",
"yref": "y2",
"text": "Chile",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x",
"xanchor": "left",
"yref": "y3",
"text": "China",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x2",
"xanchor": "left",
"yref": "y3",
"text": "Colombia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x3",
"xanchor": "left",
"yref": "y3",
"text": "Comoros",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x4",
"xanchor": "left",
"yref": "y3",
"text": "Congo, Dem. Re.",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x5",
"xanchor": "left",
"yref": "y3",
"text": "Congo, Rep.",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x6",
"xanchor": "left",
"yref": "y3",
"text": "Costa Rica",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x7",
"xanchor": "left",
"yref": "y3",
"text": "Cote d'Ivoire",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x8",
"xanchor": "left",
"yref": "y3",
"text": "Croatia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x9",
"xanchor": "left",
"yref": "y3",
"text": "Cuba",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x10",
"xanchor": "left",
"yref": "y3",
"text": "Czech Republic",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x11",
"xanchor": "left",
"yref": "y3",
"text": "Denmark",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x12",
"xanchor": "left",
"yref": "y3",
"text": "Djibouti",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x",
"xanchor": "left",
"yref": "y4",
"text": "Dominican Repu.",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x2",
"xanchor": "left",
"yref": "y4",
"text": "Ecuador",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x3",
"xanchor": "left",
"yref": "y4",
"text": "Egypt",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x4",
"xanchor": "left",
"yref": "y4",
"text": "El Salvador",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x5",
"xanchor": "left",
"yref": "y4",
"text": "Equatorial Gui.",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x6",
"xanchor": "left",
"yref": "y4",
"text": "Eritrea",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x7",
"xanchor": "left",
"yref": "y4",
"text": "Ethiopia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x8",
"xanchor": "left",
"yref": "y4",
"text": "Finland",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x9",
"xanchor": "left",
"yref": "y4",
"text": "France",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x10",
"xanchor": "left",
"yref": "y4",
"text": "Gabon",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x11",
"xanchor": "left",
"yref": "y4",
"text": "Gambia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x12",
"xanchor": "left",
"yref": "y4",
"text": "Germany",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x",
"xanchor": "left",
"yref": "y5",
"text": "Ghana",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x2",
"xanchor": "left",
"yref": "y5",
"text": "Greece",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x3",
"xanchor": "left",
"yref": "y5",
"text": "Guatemala",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x4",
"xanchor": "left",
"yref": "y5",
"text": "Guinea",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x5",
"xanchor": "left",
"yref": "y5",
"text": "Guinea-Bissau",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x6",
"xanchor": "left",
"yref": "y5",
"text": "Haiti",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x7",
"xanchor": "left",
"yref": "y5",
"text": "Honduras",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x8",
"xanchor": "left",
"yref": "y5",
"text": "Hong Kong, Chi.",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x9",
"xanchor": "left",
"yref": "y5",
"text": "Hungary",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x10",
"xanchor": "left",
"yref": "y5",
"text": "Iceland",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x11",
"xanchor": "left",
"yref": "y5",
"text": "India",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x12",
"xanchor": "left",
"yref": "y5",
"text": "Indonesia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x",
"xanchor": "left",
"yref": "y6",
"text": "Iran",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x2",
"xanchor": "left",
"yref": "y6",
"text": "Iraq",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x3",
"xanchor": "left",
"yref": "y6",
"text": "Ireland",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x4",
"xanchor": "left",
"yref": "y6",
"text": "Israel",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x5",
"xanchor": "left",
"yref": "y6",
"text": "Italy",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x6",
"xanchor": "left",
"yref": "y6",
"text": "Jamaica",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x7",
"xanchor": "left",
"yref": "y6",
"text": "Japan",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x8",
"xanchor": "left",
"yref": "y6",
"text": "Jordan",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x9",
"xanchor": "left",
"yref": "y6",
"text": "Kenya",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x10",
"xanchor": "left",
"yref": "y6",
"text": "Korea, Dem. Re.",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x11",
"xanchor": "left",
"yref": "y6",
"text": "Korea, Rep.",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x12",
"xanchor": "left",
"yref": "y6",
"text": "Kuwait",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x",
"xanchor": "left",
"yref": "y7",
"text": "Lebanon",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x2",
"xanchor": "left",
"yref": "y7",
"text": "Lesotho",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x3",
"xanchor": "left",
"yref": "y7",
"text": "Liberia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x4",
"xanchor": "left",
"yref": "y7",
"text": "Libya",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x5",
"xanchor": "left",
"yref": "y7",
"text": "Madagascar",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x6",
"xanchor": "left",
"yref": "y7",
"text": "Malawi",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x7",
"xanchor": "left",
"yref": "y7",
"text": "Malaysia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x8",
"xanchor": "left",
"yref": "y7",
"text": "Mali",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x9",
"xanchor": "left",
"yref": "y7",
"text": "Mauritania",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x10",
"xanchor": "left",
"yref": "y7",
"text": "Mauritius",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x11",
"xanchor": "left",
"yref": "y7",
"text": "Mexico",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x12",
"xanchor": "left",
"yref": "y7",
"text": "Mongolia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x",
"xanchor": "left",
"yref": "y8",
"text": "Montenegro",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x2",
"xanchor": "left",
"yref": "y8",
"text": "Morocco",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x3",
"xanchor": "left",
"yref": "y8",
"text": "Mozambique",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x4",
"xanchor": "left",
"yref": "y8",
"text": "Myanmar",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x5",
"xanchor": "left",
"yref": "y8",
"text": "Namibia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x6",
"xanchor": "left",
"yref": "y8",
"text": "Nepal",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x7",
"xanchor": "left",
"yref": "y8",
"text": "Netherlands",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x8",
"xanchor": "left",
"yref": "y8",
"text": "New Zealand",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x9",
"xanchor": "left",
"yref": "y8",
"text": "Nicaragua",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x10",
"xanchor": "left",
"yref": "y8",
"text": "Niger",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x11",
"xanchor": "left",
"yref": "y8",
"text": "Nigeria",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x12",
"xanchor": "left",
"yref": "y8",
"text": "Norway",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x",
"xanchor": "left",
"yref": "y9",
"text": "Oman",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x2",
"xanchor": "left",
"yref": "y9",
"text": "Pakistan",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x3",
"xanchor": "left",
"yref": "y9",
"text": "Panama",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x4",
"xanchor": "left",
"yref": "y9",
"text": "Paraguay",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x5",
"xanchor": "left",
"yref": "y9",
"text": "Peru",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x6",
"xanchor": "left",
"yref": "y9",
"text": "Philippines",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x7",
"xanchor": "left",
"yref": "y9",
"text": "Poland",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x8",
"xanchor": "left",
"yref": "y9",
"text": "Portugal",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x9",
"xanchor": "left",
"yref": "y9",
"text": "Puerto Rico",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x10",
"xanchor": "left",
"yref": "y9",
"text": "Reunion",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x11",
"xanchor": "left",
"yref": "y9",
"text": "Romania",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x12",
"xanchor": "left",
"yref": "y9",
"text": "Rwanda",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x",
"xanchor": "left",
"yref": "y10",
"text": "Sao Tome and P.",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x2",
"xanchor": "left",
"yref": "y10",
"text": "Saudi Arabia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x3",
"xanchor": "left",
"yref": "y10",
"text": "Senegal",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x4",
"xanchor": "left",
"yref": "y10",
"text": "Serbia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x5",
"xanchor": "left",
"yref": "y10",
"text": "Sierra Leone",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x6",
"xanchor": "left",
"yref": "y10",
"text": "Singapore",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x7",
"xanchor": "left",
"yref": "y10",
"text": "Slovak Republi.",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x8",
"xanchor": "left",
"yref": "y10",
"text": "Slovenia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x9",
"xanchor": "left",
"yref": "y10",
"text": "Somalia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x10",
"xanchor": "left",
"yref": "y10",
"text": "South Africa",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x11",
"xanchor": "left",
"yref": "y10",
"text": "Spain",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x12",
"xanchor": "left",
"yref": "y10",
"text": "Sri Lanka",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x",
"xanchor": "left",
"yref": "y11",
"text": "Sudan",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x2",
"xanchor": "left",
"yref": "y11",
"text": "Swaziland",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x3",
"xanchor": "left",
"yref": "y11",
"text": "Sweden",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x4",
"xanchor": "left",
"yref": "y11",
"text": "Switzerland",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x5",
"xanchor": "left",
"yref": "y11",
"text": "Syria",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x6",
"xanchor": "left",
"yref": "y11",
"text": "Taiwan",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x7",
"xanchor": "left",
"yref": "y11",
"text": "Tanzania",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x8",
"xanchor": "left",
"yref": "y11",
"text": "Thailand",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x9",
"xanchor": "left",
"yref": "y11",
"text": "Togo",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x10",
"xanchor": "left",
"yref": "y11",
"text": "Trinidad and T.",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x11",
"xanchor": "left",
"yref": "y11",
"text": "Tunisia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x12",
"xanchor": "left",
"yref": "y11",
"text": "Turkey",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x",
"xanchor": "left",
"yref": "y12",
"text": "Uganda",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x2",
"xanchor": "left",
"yref": "y12",
"text": "United Kingdom",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x3",
"xanchor": "left",
"yref": "y12",
"text": "United States",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x4",
"xanchor": "left",
"yref": "y12",
"text": "Uruguay",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x5",
"xanchor": "left",
"yref": "y12",
"text": "Venezuela",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x6",
"xanchor": "left",
"yref": "y12",
"text": "Vietnam",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x7",
"xanchor": "left",
"yref": "y12",
"text": "West Bank and .",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x8",
"xanchor": "left",
"yref": "y12",
"text": "Yemen, Rep.",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x9",
"xanchor": "left",
"yref": "y12",
"text": "Zambia",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
},
{
"xref": "x10",
"xanchor": "left",
"yref": "y12",
"text": "Zimbabwe",
"align": "center",
"y": 5.3979400086720375,
"x": 1955,
"font": {
"size": 14
},
"showarrow": false
}
],
"showlegend": false,
"xaxis10": {
"domain": [
0.7625,
0.8305555555555555
],
"title": "year",
"ticks": "outside",
"showgrid": false,
"range": [
1950,
2010
],
"showline": true,
"zeroline": false,
"position": 0,
"anchor": "free",
"type": "linear"
},
"xaxis9": {
"domain": [
0.6777777777777777,
0.7458333333333332
],
"title": "year",
"ticks": "outside",
"showgrid": false,
"range": [
1950,
2010
],
"showline": true,
"zeroline": false,
"position": 0,
"anchor": "free",
"type": "linear"
},
"xaxis8": {
"domain": [
0.5930555555555554,
0.661111111111111
],
"title": "year",
"ticks": "outside",
"showgrid": false,
"range": [
1950,
2010
],
"showline": true,
"zeroline": false,
"position": 0,
"anchor": "free",
"type": "linear"
},
"xaxis7": {
"domain": [
0.5083333333333333,
0.5763888888888888
],
"title": "year",
"ticks": "outside",
"showgrid": false,
"range": [
1950,
2010
],
"showline": true,
"zeroline": false,
"position": 0,
"anchor": "free",
"type": "linear"
},
"xaxis6": {
"domain": [
0.42361111111111105,
0.4916666666666666
],
"title": "year",
"ticks": "outside",
"showgrid": false,
"range": [
1950,
2010
],
"showline": true,
"zeroline": false,
"position": 0,
"anchor": "free",
"type": "linear"
},
"xaxis5": {
"domain": [
0.33888888888888885,
0.4069444444444444
],
"title": "year",
"ticks": "outside",
"showgrid": false,
"range": [
1950,
2010
],
"showline": true,
"zeroline": false,
"position": 0,
"anchor": "free",
"type": "linear"
},
"xaxis4": {
"domain": [
0.25416666666666665,
0.3222222222222222
],
"title": "year",
"ticks": "outside",
"showgrid": false,
"range": [
1950,
2010
],
"showline": true,
"zeroline": false,
"position": 0,
"anchor": "free",
"type": "linear"
},
"xaxis3": {
"domain": [
0.16944444444444443,
0.2375
],
"title": "year",
"ticks": "outside",
"showgrid": false,
"range": [
1950,
2010
],
"showline": true,
"zeroline": false,
"position": 0,
"anchor": "free",
"type": "linear"
},
"xaxis2": {
"domain": [
0.08472222222222221,
0.15277777777777776
],
"title": "year",
"ticks": "outside",
"showgrid": false,
"range": [
1950,
2010
],
"showline": true,
"zeroline": false,
"position": 0,
"anchor": "free",
"type": "linear"
},
"titlefont": {
"size": 30
},
"_realWidth": 2000,
"_realHeight": 1800,
"_realAutosize": false,
"xaxis": {
"domain": [
0,
0.06805555555555555
],
"title": "year",
"ticks": "outside",
"showgrid": false,
"range": [
1950,
2010
],
"zeroline": false,
"showline": true,
"anchor": "y12",
"type": "linear"
},
"yaxis": {
"domain": [
0.9395833333333333,
1
],
"title": "GDP per cap.",
"ticks": "outside",
"showgrid": false,
"range": [
1.9542425094393248,
5.698970004336019
],
"showline": true,
"zeroline": false,
"position": 0,
"type": "log",
"anchor": "free"
}
}
}
This file has been truncated, but you can view the full file.
{
"data": [
{
"z": [
[
null,
7.83,
7.89,
7.81,
7.87,
7.9,
7.87,
7.98,
7.94,
null,
8.0
],
[
null,
7.89,
7.94,
7.85,
7.94,
7.96,
7.92,
8.04,
7.99,
null,
8.04
],
[
null,
7.84,
7.9,
7.82,
7.92,
7.93,
7.91,
8.02,
7.98,
null,
8.04
],
[
null,
7.79,
7.85,
7.79,
7.9,
7.94,
7.92,
8.03,
7.99,
null,
8.06
],
[
null,
7.79,
7.88,
7.81,
7.9,
7.95,
7.92,
8.05,
8.02,
null,
8.09
],
[
null,
7.8,
7.82,
7.78,
7.91,
7.94,
7.92,
8.05,
8.02,
null,
8.1
],
[
null,
7.75,
7.78,
7.77,
7.91,
7.95,
7.92,
8.0,
8.03,
null,
8.11
],
[
null,
7.8,
7.8,
7.77,
7.91,
7.95,
7.94,
8.01,
8.04,
null,
8.11
],
[
null,
7.74,
7.81,
7.76,
7.93,
7.98,
7.99,
8.07,
8.1,
null,
8.17
],
[
null,
7.89,
7.99,
7.92,
8.1,
8.13,
8.11,
8.18,
8.2,
null,
8.25
],
[
null,
7.97,
7.97,
7.91,
8.09,
8.11,
8.11,
8.17,
8.19,
null,
8.25
],
[
null,
8.04,
8.08,
8.05,
8.25,
8.28,
8.27,
8.31,
8.32,
null,
8.35
],
[
null,
8.0,
8.01,
8.0,
8.2,
8.23,
8.2,
8.24,
8.26,
null,
8.29
],
[
null,
7.99,
7.99,
7.98,
8.18,
8.2,
8.19,
8.25,
8.27,
null,
8.31
],
[
null,
7.93,
7.97,
7.97,
8.18,
8.2,
8.18,
8.23,
8.26,
null,
8.29
],
[
null,
7.93,
7.99,
8.0,
8.2,
8.29,
8.28,
8.34,
8.38,
null,
8.41
],
[
null,
7.95,
8.01,
8.03,
8.24,
8.32,
8.31,
8.39,
8.42,
null,
8.46
],
[
null,
7.93,
8.04,
8.07,
8.28,
8.38,
8.38,
8.45,
8.49,
null,
8.55
],
[
null,
8.0,
8.09,
8.08,
8.3,
8.39,
8.39,
8.45,
8.5,
null,
8.54
],
[
null,
8.0,
8.14,
8.09,
8.3,
8.39,
8.43,
8.47,
8.51,
null,
8.55
],
[
null,
8.0,
8.13,
8.08,
8.28,
8.36,
8.35,
8.39,
8.43,
null,
8.46
],
[
null,
8.02,
8.13,
8.09,
8.28,
8.35,
8.35,
8.38,
8.42,
null,
8.44
],
[
null,
8.07,
8.17,
8.13,
8.37,
8.43,
8.42,
8.46,
8.5,
null,
8.51
],
[
null,
8.08,
8.18,
8.15,
8.37,
8.43,
8.44,
8.48,
8.53,
null,
8.53
],
[
null,
8.09,
8.17,
8.15,
8.42,
8.43,
8.49,
8.52,
8.57,
null,
8.58
],
[
null,
8.08,
8.19,
8.17,
8.42,
8.43,
8.51,
8.53,
8.52,
null,
8.57
],
[
null,
8.08,
8.18,
8.13,
8.37,
8.39,
8.45,
8.48,
8.49,
null,
8.5
],
[
null,
8.02,
8.09,
8.03,
8.25,
8.24,
8.29,
8.34,
8.31,
null,
8.36
],
[
null,
7.99,
8.11,
8.06,
8.32,
8.32,
8.37,
8.41,
8.4,
null,
8.43
],
[
null,
7.84,
7.97,
7.95,
8.21,
8.21,
8.29,
8.36,
8.35,
null,
8.39
],
[
null,
7.87,
8.0,
8.03,
8.27,
8.27,
8.34,
8.36,
8.36,
null,
8.41
],
[
null,
7.97,
8.08,
8.11,
8.35,
8.35,
8.4,
8.44,
8.43,
null,
8.47
],
[
null,
7.94,
8.07,
8.09,
8.36,
8.34,
8.41,
8.43,
8.42,
null,
8.46
],
[
null,
8.06,
8.2,
8.24,
8.52,
8.52,
8.58,
8.63,
8.62,
null,
8.66
],
[
null,
8.01,
8.19,
8.22,
8.5,
8.52,
8.6,
8.63,
8.62,
null,
8.66
],
[
null,
7.99,
8.15,
8.17,
8.45,
8.48,
8.48,
8.57,
8.54,
null,
8.56
],
[
null,
7.93,
8.09,
8.11,
8.43,
8.45,
8.47,
8.56,
8.53,
null,
8.56
],
[
null,
7.97,
8.09,
8.1,
8.38,
8.4,
8.4,
8.49,
8.46,
null,
8.49
],
[
null,
7.99,
8.1,
8.06,
8.34,
8.34,
8.34,
8.43,
8.41,
null,
8.45
],
[
null,
8.04,
8.14,
8.12,
8.43,
8.45,
8.44,
8.54,
8.51,
null,
8.54
],
[
null,
8.08,
8.19,
8.21,
8.53,
8.53,
8.53,
8.62,
8.59,
null,
8.61
],
[
null,
8.02,
8.17,
8.22,
8.48,
8.5,
8.5,
8.57,
8.54,
null,
8.55
],
[
null,
8.09,
8.27,
8.31,
8.55,
8.59,
8.58,
8.69,
8.65,
null,
8.66
],
[
null,
8.17,
8.24,
8.31,
8.54,
8.56,
8.57,
8.64,
8.59,
null,
8.59
],
[
null,
8.18,
8.22,
8.29,
8.54,
8.55,
8.56,
8.63,
8.58,
null,
8.58
],
[
null,
8.18,
8.24,
8.35,
8.59,
8.58,
8.57,
8.62,
8.57,
null,
8.56
],
[
null,
8.26,
8.33,
8.46,
8.73,
8.71,
8.68,
8.71,
8.65,
null,
8.63
],
[
null,
8.26,
8.33,
8.44,
8.71,
8.7,
8.67,
8.7,
8.63,
null,
8.62
],
[
null,
8.26,
8.34,
8.48,
8.77,
8.77,
8.75,
8.78,
8.73,
null,
8.72
],
[
null,
8.23,
8.31,
8.41,
8.69,
8.7,
8.67,
8.71,
8.65,
null,
8.61
],
[
null,
8.21,
8.32,
8.41,
8.71,
8.7,
8.69,
8.73,
8.66,
null,
8.63
],
[
null,
8.19,
8.29,
8.36,
8.64,
8.62,
8.61,
8.64,
8.59,
null,
8.55
],
[
null,
8.22,
8.32,
8.38,
8.68,
8.66,
8.65,
8.66,
8.59,
null,
8.54
],
[
null,
8.25,
8.35,
8.38,
8.68,
8.65,
8.61,
8.62,
8.54,
null,
8.47
],
[
null,
8.23,
8.34,
8.39,
8.69,
8.66,
8.62,
8.63,
8.55,
null,
8.47
],
[
null,
8.17,
8.27,
8.32,
8.62,
8.6,
8.56,
8.61,
8.53,
null,
8.49
],
[
null,
8.15,
8.26,
8.29,
8.61,
8.59,
8.54,
8.59,
8.52,
null,
8.48
],
[
null,
8.13,
8.28,
8.3,
8.61,
8.59,
8.52,
8.58,
8.51,
null,
8.47
],
[
null,
8.17,
8.3,
8.35,
8.59,
8.6,
8.55,
8.59,
8.52,
null,
8.48
],
[
null,
8.12,
8.27,
8.33,
8.57,
8.6,
8.53,
8.58,
8.51,
null,
8.47
],
[
null,
8.1,
8.28,
8.36,
8.62,
8.65,
8.6,
8.66,
8.6,
null,
8.58
],
[
null,
8.07,
8.24,
8.35,
8.64,
8.69,
8.65,
8.7,
8.65,
null,
8.63
],
[
null,
8.05,
8.23,
8.34,
8.62,
8.67,
8.65,
8.69,
8.65,
null,
8.63
],
[
null,
8.09,
8.25,
8.32,
8.61,
8.65,
8.64,
8.69,
8.63,
null,
8.61
],
[
null,
8.01,
8.17,
8.27,
8.54,
8.59,
8.56,
8.62,
8.55,
null,
8.52
],
[
null,
8.02,
8.18,
8.28,
8.54,
8.6,
8.57,
8.63,
8.57,
null,
8.52
],
[
null,
8.02,
8.16,
8.26,
8.52,
8.58,
8.55,
8.61,
8.56,
null,
8.52
],
[
null,
8.09,
8.23,
8.29,
8.54,
8.6,
8.58,
8.65,
8.59,
null,
8.55
],
[
null,
8.05,
8.21,
8.29,
8.54,
8.59,
8.58,
8.65,
8.6,
null,
8.57
],
[
null,
8.03,
8.2,
8.28,
8.56,
8.62,
8.6,
8.63,
8.63,
null,
8.58
],
[
null,
8.02,
8.2,
8.29,
8.57,
8.63,
8.62,
8.65,
8.64,
null,
8.6
],
[
null,
8.01,
8.18,
8.29,
8.61,
8.66,
8.65,
8.69,
8.68,
null,
8.64
],
[
null,
8.03,
8.23,
8.38,
8.7,
8.75,
8.73,
8.78,
8.77,
null,
8.74
],
[
null,
8.08,
8.3,
8.49,
8.79,
8.84,
8.84,
8.88,
8.86,
null,
8.85
],
[
null,
8.06,
8.28,
8.46,
8.81,
8.86,
8.84,
8.88,
8.87,
null,
8.86
],
[
null,
7.95,
8.24,
8.44,
8.82,
8.88,
8.88,
8.95,
8.95,
null,
8.93
],
[
null,
8.0,
8.31,
8.5,
8.87,
8.91,
8.92,
8.97,
8.98,
null,
8.96
],
[
null,
8.03,
8.36,
8.55,
8.92,
8.98,
8.96,
9.01,
9.0,
null,
8.98
],
[
null,
8.06,
8.4,
8.57,
8.95,
9.01,
9.0,
9.03,
9.01,
null,
8.98
],
[
null,
8.09,
8.45,
8.64,
9.03,
9.11,
9.09,
9.1,
9.07,
null,
9.04
],
[
null,
8.05,
8.38,
8.57,
8.98,
9.07,
9.06,
9.09,
9.06,
null,
9.04
],
[
null,
8.07,
8.44,
8.58,
8.96,
9.05,
9.04,
9.06,
9.04,
null,
9.0
],
[
null,
8.19,
8.49,
8.56,
9.02,
9.09,
9.08,
9.09,
9.08,
null,
9.04
],
[
null,
8.17,
8.49,
8.63,
9.05,
9.11,
9.1,
9.12,
9.09,
null,
9.05
],
[
null,
8.15,
8.45,
8.62,
8.98,
9.05,
9.04,
9.05,
9.04,
null,
8.99
],
[
null,
8.02,
8.25,
8.43,
8.7,
8.77,
8.8,
8.83,
8.84,
null,
8.83
],
[
null,
8.09,
8.26,
8.44,
8.74,
8.82,
8.83,
8.86,
8.87,
null,
8.85
],
[
null,
8.06,
8.22,
8.4,
8.68,
8.73,
8.79,
8.83,
8.84,
null,
8.81
],
[
null,
8.01,
8.2,
8.4,
8.75,
8.79,
8.87,
8.92,
8.88,
null,
8.9
],
[
null,
7.97,
8.15,
8.33,
8.69,
8.73,
8.8,
8.86,
8.82,
null,
8.81
],
[
null,
7.88,
8.04,
8.21,
8.55,
8.58,
8.64,
8.68,
8.64,
null,
8.64
],
[
null,
7.89,
8.06,
8.2,
8.51,
8.54,
8.6,
8.64,
8.61,
null,
8.58
],
[
null,
7.91,
8.09,
8.23,
8.54,
8.58,
8.64,
8.68,
8.65,
null,
8.62
],
[
null,
7.93,
8.09,
8.23,
8.54,
8.59,
8.66,
8.71,
8.68,
null,
8.64
],
[
null,
7.93,
8.1,
8.24,
8.56,
8.6,
8.69,
8.73,
8.69,
null,
8.65
],
[
null,
8.01,
8.16,
8.31,
8.63,
8.69,
8.74,
8.79,
8.75,
null,
8.7
],
[
null,
8.02,
8.18,
8.3,
8.61,
8.66,
8.74,
8.77,
8.74,
null,
8.69
],
[
null,
7.99,
8.18,
8.22,
8.54,
8.58,
8.66,
8.69,
8.65,
null,
8.61
],
[
null,
7.91,
8.11,
8.17,
8.51,
8.55,
8.61,
8.65,
8.61,
null,
8.59
],
[
null,
7.95,
8.12,
8.16,
8.5,
8.54,
8.58,
8.66,
8.63,
null,
8.6
],
[
null,
8.01,
8.18,
8.23,
8.53,
8.59,
8.61,
8.71,
8.69,
null,
8.67
],
[
null,
8.02,
8.17,
8.23,
8.52,
8.57,
8.59,
8.68,
8.66,
null,
8.64
],
[
null,
8.03,
8.09,
8.2,
8.48,
8.54,
8.56,
8.65,
8.62,
null,
8.6
],
[
null,
8.01,
8.12,
8.22,
8.5,
8.53,
8.56,
8.64,
8.6,
null,
8.58
],
[
null,
7.94,
8.01,
8.06,
8.33,
8.36,
8.38,
8.47,
8.44,
null,
8.43
],
[
null,
7.96,
8.03,
8.07,
8.31,
8.36,
8.39,
8.47,
8.44,
null,
8.43
],
[
null,
7.96,
8.03,
8.09,
8.34,
8.38,
8.42,
8.51,
8.47,
null,
8.46
],
[
null,
7.96,
8.02,
8.09,
8.34,
8.4,
8.43,
8.51,
8.46,
null,
8.44
],
[
null,
7.96,
8.01,
8.07,
8.34,
8.38,
8.41,
8.49,
8.46,
null,
8.43
],
[
null,
7.96,
8.03,
8.07,
8.33,
8.38,
8.42,
8.51,
8.46,
null,
8.44
],
[
null,
7.99,
8.07,
8.09,
8.36,
8.41,
8.43,
8.52,
8.48,
null,
8.45
],
[
null,
7.99,
8.05,
8.09,
8.36,
8.42,
8.44,
8.52,
8.48,
null,
8.45
],
[
null,
7.93,
7.99,
8.02,
8.27,
8.32,
8.35,
8.44,
8.4,
null,
8.39
],
[
null,
7.92,
7.98,
8.0,
8.24,
8.29,
8.32,
8.41,
8.38,
null,
8.36
],
[
null,
7.95,
8.04,
8.05,
8.33,
8.37,
8.41,
8.49,
8.46,
null,
8.43
],
[
null,
7.93,
8.06,
8.11,
8.39,
8.42,
8.45,
8.53,
8.5,
null,
8.47
],
[
null,
8.0,
8.07,
8.15,
8.41,
8.45,
8.47,
8.55,
8.51,
null,
8.48
],
[
null,
8.03,
8.07,
8.16,
8.43,
8.46,
8.51,
8.59,
8.55,
null,
8.52
],
[
null,
8.03,
8.08,
8.14,
8.41,
8.44,
8.48,
8.57,
8.52,
null,
8.5
],
[
null,
8.04,
8.05,
8.12,
8.4,
8.43,
8.46,
8.55,
8.51,
null,
8.49
],
[
null,
8.05,
8.09,
8.19,
8.45,
8.48,
8.53,
8.62,
8.58,
null,
8.56
],
[
null,
8.07,
8.12,
8.19,
8.41,
8.49,
8.51,
8.59,
8.56,
null,
8.53
],
[
null,
8.05,
8.1,
8.14,
8.37,
8.43,
8.47,
8.56,
8.52,
null,
8.49
],
[
null,
8.0,
8.03,
8.07,
8.31,
8.37,
8.41,
8.51,
8.47,
null,
8.45
],
[
null,
8.0,
8.02,
8.05,
8.24,
8.32,
8.35,
8.46,
8.43,
null,
8.41
],
[
null,
8.0,
8.03,
8.06,
8.25,
8.32,
8.35,
8.46,
8.43,
null,
8.41
],
[
null,
7.96,
8.0,
8.01,
8.2,
8.28,
8.32,
8.44,
8.4,
null,
8.4
],
[
null,
7.92,
7.98,
8.02,
8.22,
8.31,
8.34,
8.45,
8.42,
null,
8.42
],
[
null,
8.01,
8.08,
8.14,
8.32,
8.41,
8.44,
8.56,
8.51,
null,
8.51
],
[
null,
8.06,
8.14,
8.19,
8.39,
8.46,
8.49,
8.6,
8.57,
null,
8.55
],
[
null,
8.07,
8.17,
8.21,
8.4,
8.48,
8.5,
8.61,
8.57,
null,
8.56
],
[
null,
8.05,
8.15,
8.18,
8.4,
8.46,
8.49,
8.58,
8.57,
null,
8.56
],
[
null,
7.94,
7.98,
7.98,
8.2,
8.31,
8.37,
8.49,
8.5,
null,
8.5
],
[
null,
7.85,
7.91,
7.89,
8.13,
8.25,
8.32,
8.43,
8.45,
null,
8.46
],
[
null,
7.86,
7.91,
7.89,
8.15,
8.26,
8.31,
8.43,
8.44,
null,
8.46
],
[
null,
7.87,
7.91,
7.88,
8.13,
8.23,
8.3,
8.42,
8.44,
null,
8.46
],
[
null,
7.8,
7.88,
7.87,
8.13,
8.24,
8.34,
8.47,
8.5,
null,
8.55
],
[
null,
7.79,
7.85,
7.87,
8.13,
8.23,
8.33,
8.47,
8.51,
null,
8.56
],
[
null,
7.79,
7.84,
7.84,
8.08,
8.18,
8.28,
8.43,
8.48,
null,
8.54
],
[
null,
7.73,
7.78,
7.81,
8.05,
8.17,
8.28,
8.43,
8.48,
null,
8.54
],
[
null,
7.78,
7.82,
7.88,
8.12,
8.25,
8.35,
8.48,
8.53,
null,
8.59
],
[
null,
7.81,
7.85,
7.87,
8.08,
8.24,
8.31,
8.44,
8.49,
null,
8.55
],
[
null,
7.83,
7.86,
7.9,
8.08,
8.24,
8.31,
8.45,
8.49,
null,
8.54
],
[
null,
7.77,
7.79,
7.8,
8.0,
8.15,
8.25,
8.36,
8.42,
null,
8.48
],
[
null,
7.74,
7.74,
7.75,
7.93,
8.05,
8.14,
8.28,
8.34,
null,
8.4
],
[
null,
7.74,
7.72,
7.72,
7.91,
8.04,
8.13,
8.28,
8.36,
null,
8.42
],
[
null,
7.67,
7.65,
7.63,
7.85,
7.96,
8.06,
8.2,
8.29,
null,
8.36
],
[
null,
7.68,
7.67,
7.7,
7.9,
8.03,
8.15,
8.3,
8.41,
null,
8.46
],
[
null,
7.52,
7.55,
7.56,
7.79,
7.98,
8.11,
8.32,
8.43,
null,
8.55
],
[
null,
7.54,
7.59,
7.63,
7.9,
8.11,
8.29,
8.55,
8.71,
null,
8.82
],
[
null,
7.61,
7.73,
7.75,
8.04,
8.19,
8.41,
8.65,
8.78,
null,
8.86
],
[
null,
7.62,
7.69,
7.73,
8.02,
8.19,
8.43,
8.65,
8.77,
null,
8.87
],
[
null,
7.66,
7.69,
7.72,
7.99,
8.13,
8.33,
8.55,
8.66,
null,
8.75
],
[
null,
7.64,
7.68,
7.67,
7.95,
8.12,
8.35,
8.58,
8.68,
null,
8.79
],
[
null,
7.66,
7.7,
7.65,
7.94,
8.08,
8.36,
8.59,
8.71,
null,
8.83
],
[
null,
7.68,
7.72,
7.69,
7.94,
8.08,
8.34,
8.55,
8.66,
null,
8.78
],
[
null,
7.7,
7.73,
7.68,
7.94,
8.08,
8.33,
8.54,
8.64,
null,
8.76
],
[
null,
7.73,
7.83,
7.81,
8.09,
8.23,
8.45,
8.65,
8.76,
null,
8.91
],
[
null,
7.72,
7.82,
7.8,
8.11,
8.27,
8.49,
8.68,
8.8,
null,
8.94
],
[
null,
7.77,
7.85,
7.84,
8.13,
8.28,
8.5,
8.7,
8.81,
null,
8.92
],
[
null,
7.83,
7.88,
7.9,
8.19,
8.32,
8.56,
8.74,
8.84,
null,
8.94
],
[
null,
7.85,
7.91,
7.94,
8.26,
8.38,
8.62,
8.8,
8.91,
null,
9.03
],
[
null,
7.79,
7.91,
7.99,
8.26,
8.44,
8.69,
8.88,
9.0,
null,
9.11
],
[
null,
7.74,
7.88,
7.96,
8.32,
8.5,
8.75,
8.94,
9.05,
null,
9.17
],
[
null,
7.78,
7.89,
7.89,
8.21,
8.34,
8.61,
8.8,
8.9,
null,
9.02
],
[
null,
7.73,
7.87,
7.94,
8.23,
8.42,
8.67,
8.85,
8.94,
null,
9.07
],
[
null,
7.72,
7.84,
7.85,
8.16,
8.33,
8.52,
8.75,
8.84,
null,
8.95
],
[
null,
7.7,
7.8,
7.83,
8.12,
8.31,
8.52,
8.77,
8.86,
null,
8.98
],
[
null,
7.63,
7.74,
7.76,
8.07,
8.26,
8.5,
8.77,
8.86,
null,
8.99
],
[
null,
7.64,
7.75,
7.76,
8.09,
8.28,
8.53,
8.8,
8.9,
null,
9.03
],
[
null,
7.61,
7.71,
7.74,
8.04,
8.23,
8.47,
8.75,
8.86,
null,
8.98
],
[
null,
7.62,
7.71,
7.74,
8.06,
8.24,
8.47,
8.75,
8.84,
null,
8.96
],
[
null,
7.63,
7.73,
7.73,
8.04,
8.22,
8.45,
8.72,
8.81,
null,
8.92
],
[
null,
7.68,
7.76,
7.79,
8.09,
8.26,
8.5,
8.75,
8.85,
null,
8.98
],
[
null,
7.67,
7.76,
7.81,
8.1,
8.27,
8.48,
8.73,
8.83,
null,
8.96
],
[
null,
7.61,
7.7,
7.75,
8.05,
8.26,
8.45,
8.72,
8.82,
null,
8.96
],
[
null,
7.59,
7.65,
7.7,
8.01,
8.19,
8.44,
8.71,
8.82,
null,
8.96
],
[
null,
7.59,
7.63,
7.72,
8.03,
8.23,
8.48,
8.75,
8.87,
null,
9.01
],
[
null,
7.61,
7.66,
7.73,
8.05,
8.23,
8.49,
8.78,
8.9,
null,
9.06
],
[
null,
7.61,
7.66,
7.73,
8.03,
8.22,
8.48,
8.77,
8.9,
null,
9.05
],
[
null,
7.64,
7.69,
7.79,
8.08,
8.24,
8.51,
8.78,
8.88,
null,
9.02
],
[
null,
7.63,
7.73,
7.81,
8.1,
8.27,
8.53,
8.8,
8.91,
null,
9.05
],
[
null,
7.6,
7.71,
7.77,
8.12,
8.31,
8.58,
8.87,
8.99,
null,
9.13
],
[
null,
7.63,
7.75,
7.83,
8.21,
8.38,
8.64,
8.92,
9.04,
null,
9.18
],
[
null,
7.59,
7.78,
7.85,
8.18,
8.4,
8.64,
8.91,
9.02,
null,
9.15
],
[
null,
7.57,
7.74,
7.84,
8.16,
8.38,
8.63,
8.9,
9.0,
null,
9.14
],
[
null,
7.47,
7.61,
7.72,
8.05,
8.28,
8.52,
8.81,
8.91,
null,
9.05
],
[
null,
7.37,
7.54,
7.69,
8.02,
8.19,
8.47,
8.73,
8.82,
null,
8.96
],
[
null,
7.37,
7.53,
7.63,
7.94,
8.12,
8.38,
8.63,
8.71,
null,
8.84
],
[
null,
7.41,
7.55,
7.61,
7.92,
8.1,
8.35,
8.6,
8.69,
null,
8.84
],
[
null,
7.38,
7.53,
7.57,
7.88,
8.09,
8.33,
8.6,
8.71,
null,
8.85
],
[
null,
7.36,
7.51,
7.56,
7.87,
8.04,
8.3,
8.58,
8.67,
null,
8.81
],
[
null,
7.27,
7.44,
7.51,
7.81,
8.0,
8.27,
8.54,
8.65,
null,
8.79
],
[
null,
7.41,
7.58,
7.64,
7.94,
8.14,
8.43,
8.72,
8.83,
null,
8.98
],
[
null,
7.44,
7.6,
7.64,
7.99,
8.19,
8.49,
8.78,
8.89,
null,
9.03
],
[
null,
7.35,
7.51,
7.6,
7.99,
8.22,
8.51,
8.79,
8.92,
null,
9.08
],
[
null,
7.37,
7.52,
7.59,
7.94,
8.16,
8.44,
8.7,
8.84,
null,
8.98
],
[
null,
7.4,
7.56,
7.58,
7.92,
8.13,
8.39,
8.67,
8.8,
null,
8.95
],
[
null,
7.39,
7.58,
7.58,
7.92,
8.13,
8.39,
8.66,
8.79,
null,
8.94
],
[
null,
7.44,
7.59,
7.6,
7.92,
8.12,
8.37,
8.63,
8.76,
null,
8.89
],
[
null,
7.49,
7.57,
7.59,
7.91,
8.08,
8.32,
8.59,
8.71,
null,
8.85
],
[
null,
7.48,
7.56,
7.55,
7.85,
8.02,
8.25,
8.49,
8.62,
null,
8.75
],
[
null,
7.47,
7.55,
7.53,
7.85,
8.03,
8.25,
8.5,
8.63,
null,
8.76
],
[
null,
7.45,
7.53,
7.52,
7.84,
8.0,
8.25,
8.51,
8.65,
null,
8.79
],
[
null,
7.46,
7.53,
7.52,
7.84,
8.0,
8.26,
8.52,
8.66,
null,
8.79
],
[
null,
7.41,
7.51,
7.46,
7.8,
7.97,
8.21,
8.47,
8.62,
null,
8.74
],
[
null,
7.36,
7.45,
7.46,
7.8,
7.97,
8.23,
8.48,
8.63,
null,
8.76
],
[
null,
7.38,
7.48,
7.48,
7.82,
8.01,
8.27,
8.54,
8.7,
null,
8.84
],
[
null,
7.37,
7.51,
7.48,
7.79,
8.02,
8.28,
8.56,
8.7,
null,
8.83
],
[
null,
7.34,
7.46,
7.43,
7.77,
7.97,
8.24,
8.5,
8.65,
null,
8.78
],
[
null,
7.28,
7.38,
7.32,
7.68,
7.88,
8.15,
8.42,
8.57,
null,
8.7
],
[
null,
7.31,
7.4,
7.35,
7.68,
7.88,
8.16,
8.42,
8.57,
null,
8.7
],
[
null,
7.31,
7.39,
7.33,
7.63,
7.84,
8.1,
8.36,
8.5,
null,
8.63
],
[
null,
7.31,
7.42,
7.36,
7.65,
7.8,
8.11,
8.37,
8.52,
null,
8.64
],
[
null,
7.32,
7.43,
7.36,
7.67,
7.82,
8.16,
8.44,
8.57,
null,
8.71
],
[
null,
7.32,
7.42,
7.35,
7.67,
7.82,
8.18,
8.44,
8.58,
null,
8.73
],
[
null,
7.27,
7.39,
7.33,
7.61,
7.75,
8.1,
8.36,
8.49,
null,
8.63
],
[
null,
7.27,
7.39,
7.3,
7.6,
7.7,
8.01,
8.26,
8.37,
null,
8.52
],
[
null,
7.3,
7.38,
7.31,
7.58,
7.7,
8.01,
8.25,
8.36,
null,
8.51
],
[
null,
7.32,
7.4,
7.32,
7.6,
7.71,
8.01,
8.26,
8.37,
null,
8.53
],
[
null,
7.31,
7.37,
7.27,
7.58,
7.69,
7.96,
8.2,
8.3,
null,
8.46
],
[
null,
7.33,
7.43,
7.33,
7.62,
7.73,
8.01,
8.24,
8.35,
null,
8.51
],
[
null,
7.32,
7.42,
7.34,
7.62,
7.72,
7.98,
8.21,
8.31,
null,
8.47
],
[
null,
7.27,
7.37,
7.26,
7.55,
7.66,
7.92,
8.16,
8.27,
null,
8.44
],
[
null,
7.25,
7.32,
7.23,
7.53,
7.63,
7.92,
8.16,
8.28,
null,
8.44
],
[
null,
7.26,
7.33,
7.24,
7.55,
7.65,
7.92,
8.17,
8.27,
null,
8.42
],
[
null,
7.27,
7.34,
7.28,
7.5,
7.66,
7.94,
8.18,
8.28,
null,
8.44
],
[
null,
7.29,
7.38,
7.34,
7.56,
7.71,
7.94,
8.22,
8.3,
null,
8.46
],
[
null,
7.26,
7.38,
7.34,
7.58,
7.72,
7.96,
8.23,
8.32,
null,
8.47
],
[
null,
7.24,
7.36,
7.31,
7.53,
7.67,
7.91,
8.18,
8.26,
null,
8.4
],
[
null,
7.28,
7.37,
7.31,
7.51,
7.65,
7.88,
8.14,
8.22,
null,
8.36
],
[
null,
7.24,
7.23,
7.25,
7.46,
7.58,
7.83,
8.11,
8.2,
null,
8.37
],
[
null,
7.23,
7.21,
7.24,
7.46,
7.58,
7.82,
8.09,
8.16,
null,
8.32
],
[
null,
7.22,
7.23,
7.27,
7.48,
7.6,
7.82,
8.11,
8.18,
null,
8.35
],
[
null,
7.1,
7.08,
7.12,
7.33,
7.45,
7.67,
7.96,
8.03,
null,
8.19
],
[
null,
7.07,
7.04,
7.1,
7.28,
7.4,
7.63,
7.91,
7.98,
null,
8.14
],
[
null,
7.06,
7.06,
7.07,
7.26,
7.38,
7.6,
7.87,
7.94,
null,
8.1
],
[
null,
7.0,
7.0,
7.03,
7.22,
7.33,
7.59,
7.84,
7.91,
null,
8.07
],
[
null,
7.05,
7.04,
7.11,
7.31,
7.42,
7.68,
7.91,
7.98,
null,
8.14
],
[
null,
7.06,
7.08,
7.09,
7.35,
7.47,
7.74,
7.97,
8.05,
null,
8.2
],
[
null,
7.02,
7.07,
7.06,
7.31,
7.45,
7.71,
7.96,
8.02,
null,
8.18
],
[
null,
6.94,
7.05,
7.02,
7.28,
7.4,
7.67,
7.93,
7.99,
null,
8.15
],
[
null,
6.83,
6.91,
6.89,
7.21,
7.37,
7.64,
7.92,
8.0,
null,
8.19
],
[
null,
6.75,
6.87,
6.9,
7.25,
7.41,
7.67,
7.96,
8.05,
null,
8.22
],
[
null,
6.79,
6.94,
6.95,
7.3,
7.46,
7.75,
8.03,
8.11,
null,
8.28
],
[
null,
6.73,
6.95,
6.99,
7.35,
7.53,
7.84,
8.12,
8.2,
null,
8.36
],
[
null,
6.68,
6.91,
6.94,
7.27,
7.5,
7.78,
8.07,
8.15,
null,
8.3
],
[
null,
6.67,
6.91,
6.94,
7.25,
7.46,
7.75,
8.03,
8.11,
null,
8.25
],
[
null,
6.64,
6.85,
6.91,
7.25,
7.48,
7.78,
8.08,
8.14,
null,
8.31
],
[
null,
6.63,
6.73,
6.82,
7.15,
7.4,
7.68,
8.0,
8.08,
null,
8.26
],
[
null,
6.66,
6.73,
6.74,
7.08,
7.3,
7.59,
7.9,
7.97,
null,
8.14
],
[
null,
6.64,
6.71,
6.72,
7.08,
7.27,
7.56,
7.86,
7.93,
null,
8.11
],
[
null,
6.73,
6.82,
6.83,
7.17,
7.37,
7.65,
7.94,
8.02,
null,
8.2
],
[
null,
6.71,
6.84,
6.84,
7.2,
7.43,
7.75,
8.04,
8.13,
null,
8.32
],
[
null,
6.64,
6.74,
6.75,
7.15,
7.39,
7.74,
8.06,
8.16,
null,
8.37
],
[
null,
6.44,
6.61,
6.68,
7.1,
7.46,
7.81,
8.12,
8.25,
null,
8.46
],
[
null,
6.4,
6.57,
6.64,
7.14,
7.39,
7.76,
8.02,
8.16,
null,
8.37
],
[
null,
6.34,
6.55,
6.62,
7.14,
7.4,
7.79,
8.06,
8.2,
null,
8.39
],
[
null,
6.24,
6.47,
6.6,
7.18,
7.44,
7.82,
8.09,
8.23,
null,
8.41
],
[
null,
6.23,
6.44,
6.6,
7.16,
7.43,
7.79,
8.07,
8.22,
null,
8.41
],
[
null,
6.22,
6.46,
6.61,
7.21,
7.47,
7.83,
8.09,
8.24,
null,
8.4
],
[
null,
6.3,
6.56,
6.66,
7.19,
7.42,
7.71,
7.93,
8.05,
null,
8.18
],
[
null,
6.24,
6.51,
6.61,
7.14,
7.38,
7.68,
7.92,
8.03,
null,
8.17
],
[
null,
6.24,
6.48,
6.59,
7.13,
7.37,
7.7,
7.94,
8.07,
null,
8.23
],
[
null,
6.32,
6.49,
6.59,
7.08,
7.36,
7.67,
7.91,
8.04,
null,
8.21
],
[
null,
6.31,
6.47,
6.54,
7.04,
7.32,
7.61,
7.88,
8.0,
null,
8.18
],
[
null,
6.35,
6.52,
6.61,
7.1,
7.36,
7.67,
7.93,
8.06,
null,
8.24
],
[
null,
6.44,
6.55,
6.64,
7.12,
7.38,
7.67,
7.93,
8.06,
null,
8.23
],
[
null,
6.41,
6.55,
6.59,
7.1,
7.35,
7.64,
7.9,
8.03,
null,
8.2
],
[
null,
6.39,
6.53,
6.56,
7.07,
7.34,
7.64,
7.9,
8.05,
null,
8.23
],
[
null,
6.37,
6.49,
6.51,
7.05,
7.3,
7.62,
7.89,
8.03,
null,
8.21
],
[
null,
6.17,
6.24,
6.27,
6.83,
7.1,
7.45,
7.75,
7.91,
null,
8.09
],
[
null,
6.15,
6.23,
6.24,
6.82,
7.07,
7.43,
7.72,
7.88,
null,
8.05
],
[
null,
6.15,
6.2,
6.23,
6.8,
6.98,
7.4,
7.68,
7.85,
null,
8.02
],
[
null,
6.08,
6.14,
6.22,
6.82,
6.99,
7.4,
7.68,
7.79,
null,
8.02
],
[
null,
6.11,
6.15,
6.23,
6.8,
7.0,
7.42,
7.7,
7.82,
null,
8.01
],
[
null,
6.09,
6.15,
6.21,
6.8,
6.99,
7.4,
7.66,
7.77,
null,
7.95
],
[
null,
6.05,
6.13,
6.18,
6.78,
6.95,
7.39,
7.65,
7.78,
null,
7.97
],
[
null,
6.02,
6.13,
6.18,
6.78,
6.97,
7.39,
7.66,
7.78,
null,
7.96
],
[
null,
6.03,
6.13,
6.21,
6.78,
6.98,
7.39,
7.66,
7.78,
null,
7.97
],
[
null,
6.02,
6.1,
6.19,
6.77,
6.98,
7.38,
7.67,
7.8,
null,
7.99
],
[
null,
6.08,
6.16,
6.24,
6.82,
7.02,
7.41,
7.67,
7.78,
null,
7.97
],
[
null,
6.13,
6.2,
6.3,
6.87,
7.07,
7.46,
7.7,
7.8,
null,
7.99
],
[
null,
6.11,
6.19,
6.28,
6.87,
7.08,
7.49,
7.73,
7.84,
null,
8.02
],
[
null,
6.09,
6.17,
6.29,
6.9,
7.13,
7.51,
7.77,
7.88,
null,
8.04
],
[
null,
6.12,
6.23,
6.33,
6.98,
7.21,
7.57,
7.82,
7.91,
null,
8.07
],
[
null,
6.16,
6.25,
6.33,
6.99,
7.2,
7.57,
7.79,
7.91,
null,
8.05
],
[
null,
6.22,
6.3,
6.37,
7.0,
7.24,
7.62,
7.85,
7.96,
null,
8.14
],
[
null,
6.21,
6.28,
6.36,
7.02,
7.25,
7.64,
7.87,
7.98,
null,
8.15
],
[
null,
6.22,
6.32,
6.41,
7.04,
7.26,
7.66,
7.89,
8.02,
null,
8.19
],
[
null,
6.27,
6.38,
6.52,
7.18,
7.41,
7.78,
8.0,
8.12,
null,
8.28
],
[
null,
6.24,
6.36,
6.51,
7.16,
7.4,
7.77,
8.01,
8.12,
null,
8.29
],
[
null,
6.25,
6.32,
6.48,
7.13,
7.35,
7.73,
7.98,
8.08,
null,
8.25
],
[
null,
6.28,
6.35,
6.5,
7.15,
7.38,
7.77,
8.01,
8.11,
null,
8.29
],
[
null,
6.27,
6.36,
6.5,
7.12,
7.34,
7.73,
7.97,
8.07,
null,
8.23
],
[
null,
6.16,
6.25,
6.41,
7.08,
7.35,
7.77,
8.01,
8.13,
null,
8.3
],
[
null,
6.08,
6.21,
6.37,
7.05,
7.3,
7.71,
7.94,
8.06,
null,
8.23
],
[
null,
6.05,
6.19,
6.38,
7.07,
7.33,
7.74,
7.98,
8.09,
null,
8.26
],
[
null,
6.02,
6.12,
6.3,
7.0,
7.23,
7.67,
7.91,
8.02,
null,
8.2
],
[
null,
5.94,
6.04,
6.26,
6.95,
7.19,
7.64,
7.9,
8.02,
null,
8.2
],
[
null,
5.98,
6.1,
6.3,
7.01,
7.26,
7.73,
7.98,
8.1,
null,
8.3
],
[
null,
6.03,
6.13,
6.36,
7.09,
7.35,
7.79,
8.04,
8.15,
null,
8.34
],
[
null,
6.08,
6.23,
6.48,
7.22,
7.48,
7.93,
8.14,
8.25,
null,
8.42
],
[
null,
6.07,
6.18,
6.44,
7.2,
7.46,
7.88,
8.09,
8.2,
null,
8.37
],
[
null,
6.06,
6.15,
6.39,
7.13,
7.4,
7.82,
8.04,
8.16,
null,
8.34
],
[
null,
6.06,
6.16,
6.37,
7.13,
7.39,
7.82,
8.03,
8.13,
null,
8.33
],
[
null,
6.07,
6.17,
6.35,
7.14,
7.39,
7.83,
8.03,
8.13,
null,
8.32
],
[
null,
6.05,
6.14,
6.39,
7.16,
7.4,
7.84,
8.04,
8.13,
null,
8.31
],
[
null,
5.99,
6.08,
6.33,
7.07,
7.36,
7.76,
7.99,
8.08,
null,
8.26
],
[
null,
5.92,
6.05,
6.28,
7.02,
7.3,
7.73,
7.96,
8.05,
null,
8.24
],
[
null,
5.94,
6.04,
6.27,
7.01,
7.3,
7.74,
7.97,
8.07,
null,
8.25
],
[
null,
5.95,
6.05,
6.26,
6.97,
7.24,
7.68,
7.92,
8.03,
null,
8.22
],
[
null,
5.95,
6.06,
6.28,
6.99,
7.27,
7.71,
7.94,
8.05,
null,
8.24
],
[
null,
5.92,
6.03,
6.24,
6.94,
7.22,
7.67,
7.9,
8.0,
null,
8.19
],
[
null,
5.89,
6.01,
6.24,
6.92,
7.2,
7.65,
7.89,
7.99,
null,
8.18
],
[
null,
5.83,
5.97,
6.21,
6.91,
7.21,
7.63,
7.88,
7.98,
null,
8.16
],
[
null,
5.79,
5.95,
6.23,
6.94,
7.23,
7.68,
7.93,
8.03,
null,
8.2
],
[
null,
5.79,
5.97,
6.28,
7.02,
7.31,
7.75,
7.98,
8.1,
null,
8.27
],
[
null,
5.74,
5.91,
6.23,
6.95,
7.25,
7.74,
7.97,
8.09,
null,
8.27
],
[
null,
5.68,
5.89,
6.14,
6.88,
7.18,
7.64,
7.86,
7.98,
null,
8.16
],
[
null,
5.77,
5.96,
6.22,
6.9,
7.17,
7.64,
7.84,
7.95,
null,
8.12
],
[
null,
5.79,
5.95,
6.23,
6.92,
7.2,
7.66,
7.85,
7.97,
null,
8.13
],
[
null,
5.73,
5.89,
6.2,
6.9,
7.17,
7.64,
7.83,
7.95,
null,
8.11
],
[
null,
5.84,
5.98,
6.34,
6.99,
7.24,
7.74,
7.92,
8.02,
null,
8.18
],
[
null,
5.93,
6.04,
6.31,
7.03,
7.27,
7.8,
7.99,
8.1,
null,
8.24
],
[
null,
5.87,
6.01,
6.32,
7.07,
7.29,
7.83,
8.02,
8.15,
null,
8.3
],
[
null,
5.89,
6.03,
6.28,
7.05,
7.28,
7.78,
7.99,
8.12,
null,
8.28
],
[
null,
5.84,
5.99,
6.23,
6.95,
7.25,
7.73,
7.93,
8.06,
null,
8.22
],
[
null,
5.78,
5.96,
6.19,
6.93,
7.22,
7.7,
7.95,
8.07,
null,
8.24
],
[
null,
5.79,
5.99,
6.21,
6.89,
7.23,
7.68,
7.93,
8.06,
null,
8.22
],
[
null,
5.77,
5.98,
6.22,
6.9,
7.22,
7.7,
7.93,
8.07,
null,
8.23
],
[
null,
5.68,
5.83,
6.06,
6.8,
7.15,
7.63,
7.88,
8.02,
null,
8.2
],
[
null,
5.71,
5.84,
6.09,
6.8,
7.14,
7.63,
7.87,
8.01,
null,
8.18
],
[
null,
5.63,
5.82,
6.06,
6.76,
7.11,
7.59,
7.84,
7.97,
null,
8.14
],
[
null,
5.64,
5.83,
6.1,
6.8,
7.16,
7.67,
7.91,
8.04,
null,
8.22
],
[
null,
5.64,
5.85,
6.11,
6.82,
7.16,
7.67,
7.91,
8.05,
null,
8.23
],
[
null,
5.67,
5.91,
6.15,
6.82,
7.1,
7.67,
7.92,
8.06,
null,
8.24
],
[
null,
5.67,
5.9,
6.14,
6.84,
7.12,
7.68,
7.92,
8.04,
null,
8.24
],
[
null,
5.65,
5.89,
6.13,
6.84,
7.12,
7.68,
7.92,
8.02,
null,
8.21
],
[
null,
5.65,
5.88,
6.13,
6.87,
7.17,
7.76,
8.0,
8.12,
null,
8.33
],
[
null,
5.65,
5.86,
6.11,
6.84,
7.13,
7.72,
7.96,
8.07,
null,
8.27
],
[
null,
5.66,
5.88,
6.12,
6.86,
7.13,
7.78,
8.02,
8.14,
null,
8.36
],
[
null,
5.62,
5.86,
6.13,
6.84,
7.12,
7.77,
8.02,
8.13,
null,
8.34
],
[
null,
5.57,
5.84,
6.15,
6.84,
7.12,
7.77,
7.99,
8.12,
null,
8.33
],
[
null,
5.57,
5.83,
6.16,
6.86,
7.14,
7.77,
7.98,
8.08,
null,
8.28
],
[
null,
5.63,
5.88,
6.2,
6.86,
7.16,
7.78,
7.98,
8.1,
null,
8.3
],
[
null,
5.67,
5.92,
6.18,
6.84,
7.13,
7.74,
7.95,
8.06,
null,
8.26
],
[
null,
5.63,
5.91,
6.15,
6.77,
7.1,
7.72,
7.95,
8.06,
null,
8.28
],
[
null,
5.57,
5.88,
6.13,
6.74,
7.1,
7.71,
7.96,
8.1,
null,
8.31
],
[
null,
5.57,
5.88,
6.11,
6.69,
7.1,
7.68,
7.97,
8.1,
null,
8.31
],
[
null,
5.59,
5.87,
6.12,
6.66,
7.07,
7.66,
7.93,
8.07,
null,
8.28
],
[
null,
5.62,
5.87,
6.11,
6.61,
7.06,
7.66,
7.92,
8.07,
null,
8.29
],
[
null,
5.62,
5.87,
6.13,
6.6,
7.03,
7.63,
7.89,
8.02,
null,
8.22
],
[
null,
5.71,
5.94,
6.16,
6.68,
7.1,
7.69,
7.92,
8.06,
null,
8.26
],
[
null,
5.79,
6.0,
6.27,
6.79,
7.21,
7.8,
8.01,
8.14,
null,
8.34
],
[
null,
5.74,
5.98,
6.26,
6.79,
7.22,
7.8,
8.02,
8.14,
null,
8.34
],
[
null,
5.76,
6.0,
6.28,
6.83,
7.26,
7.84,
8.07,
8.19,
null,
8.39
],
[
null,
5.74,
5.98,
6.29,
6.86,
7.31,
7.89,
8.12,
8.23,
null,
8.42
],
[
null,
5.74,
6.01,
6.39,
6.98,
7.43,
7.96,
8.18,
8.29,
null,
8.48
],
[
null,
5.77,
6.04,
6.4,
7.01,
7.42,
7.95,
8.19,
8.29,
null,
8.48
],
[
null,
5.74,
6.05,
6.39,
6.99,
7.42,
7.96,
8.19,
8.29,
null,
8.48
],
[
null,
5.73,
6.07,
6.43,
7.08,
7.48,
8.02,
8.25,
8.36,
null,
8.55
],
[
null,
5.76,
6.08,
6.4,
7.08,
7.47,
8.0,
8.24,
8.34,
null,
8.53
],
[
null,
5.77,
6.05,
6.37,
7.02,
7.43,
7.94,
8.17,
8.29,
null,
8.47
],
[
null,
5.78,
6.08,
6.38,
7.02,
7.43,
7.96,
8.19,
8.3,
null,
8.49
],
[
null,
5.8,
6.06,
6.41,
7.0,
7.45,
7.97,
8.2,
8.32,
null,
8.52
],
[
null,
5.74,
6.02,
6.37,
6.95,
7.41,
7.97,
8.21,
8.33,
null,
8.52
],
[
null,
5.74,
6.0,
6.34,
6.87,
7.36,
7.91,
8.17,
8.3,
null,
8.48
],
[
null,
5.75,
6.02,
6.37,
6.94,
7.41,
7.95,
8.2,
8.32,
null,
8.51
],
[
null,
5.75,
6.04,
6.38,
6.96,
7.45,
7.98,
8.21,
8.33,
null,
8.51
],
[
null,
5.75,
6.03,
6.39,
7.04,
7.45,
7.99,
8.22,
8.33,
null,
8.51
],
[
null,
5.73,
6.02,
6.38,
7.01,
7.46,
7.98,
8.23,
8.33,
null,
8.51
],
[
null,
5.73,
6.0,
6.35,
7.0,
7.43,
7.97,
8.21,
8.32,
null,
8.49
],
[
null,
5.71,
5.95,
6.32,
6.9,
7.33,
7.9,
8.14,
8.24,
null,
8.42
],
[
null,
5.76,
5.99,
6.38,
6.97,
7.39,
7.93,
8.17,
8.26,
null,
8.44
],
[
null,
5.75,
5.99,
6.41,
7.0,
7.41,
7.95,
8.18,
8.27,
null,
8.44
],
[
null,
5.73,
5.96,
6.39,
6.97,
7.4,
7.92,
8.15,
8.26,
null,
8.42
],
[
null,
5.76,
5.97,
6.4,
7.04,
7.48,
8.01,
8.23,
8.34,
null,
8.49
],
[
null,
5.75,
5.94,
6.36,
7.0,
7.48,
8.0,
8.25,
8.34,
null,
8.51
],
[
null,
5.76,
5.97,
6.31,
7.0,
7.46,
8.02,
8.27,
8.36,
null,
8.53
],
[
null,
5.75,
5.96,
6.28,
6.97,
7.47,
8.0,
8.23,
8.35,
null,
8.53
],
[
null,
5.74,
5.96,
6.27,
6.92,
7.42,
7.95,
8.17,
8.3,
null,
8.47
],
[
null,
5.72,
5.94,
6.26,
6.88,
7.36,
7.9,
8.13,
8.26,
null,
8.44
],
[
null,
5.75,
5.96,
6.29,
6.88,
7.37,
7.9,
8.13,
8.26,
null,
8.44
],
[
null,
5.76,
5.99,
6.32,
6.9,
7.35,
7.91,
8.14,
8.27,
null,
8.46
],
[
null,
5.79,
6.03,
6.35,
6.94,
7.39,
7.94,
8.17,
8.3,
null,
8.49
],
[
null,
5.77,
6.01,
6.34,
6.91,
7.42,
7.95,
8.17,
8.31,
null,
8.5
],
[
null,
5.76,
5.99,
6.28,
6.89,
7.37,
7.91,
8.15,
8.28,
null,
8.48
],
[
null,
5.76,
6.02,
6.31,
6.91,
7.39,
7.92,
8.15,
8.28,
null,
8.48
],
[
null,
5.76,
6.01,
6.33,
6.94,
7.41,
7.96,
8.17,
8.31,
null,
8.5
],
[
null,
5.75,
5.97,
6.28,
6.88,
7.33,
7.86,
8.1,
8.24,
null,
8.42
],
[
null,
5.76,
5.98,
6.29,
6.87,
7.31,
7.81,
8.06,
8.2,
null,
8.38
],
[
null,
5.76,
5.96,
6.24,
6.85,
7.3,
7.82,
8.06,
8.2,
null,
8.39
],
[
null,
5.75,
5.96,
6.21,
6.82,
7.28,
7.81,
8.06,
8.2,
null,
8.39
],
[
null,
5.73,
5.95,
6.23,
6.84,
7.27,
7.81,
8.06,
8.21,
null,
8.39
],
[
null,
5.7,
5.93,
6.19,
6.81,
7.21,
7.77,
8.03,
8.2,
null,
8.36
],
[
null,
5.72,
5.94,
6.23,
6.84,
7.22,
7.78,
8.05,
8.2,
null,
8.38
],
[
null,
5.63,
5.82,
6.04,
6.69,
7.06,
7.62,
7.9,
8.06,
null,
8.25
],
[
null,
5.68,
5.84,
6.04,
6.69,
7.05,
7.62,
7.89,
8.04,
null,
8.24
],
[
null,
5.58,
5.72,
5.91,
6.57,
6.91,
7.54,
7.82,
7.97,
null,
8.18
],
[
null,
5.55,
5.69,
5.85,
6.54,
6.9,
7.51,
7.8,
7.93,
null,
8.17
],
[
null,
5.54,
5.66,
5.82,
6.52,
6.9,
7.53,
7.84,
7.98,
null,
8.22
],
[
null,
5.48,
5.62,
5.8,
6.49,
6.86,
7.51,
7.82,
7.98,
null,
8.23
],
[
null,
5.48,
5.62,
5.8,
6.49,
6.85,
7.49,
7.8,
7.95,
null,
8.21
],
[
null,
5.45,
5.64,
5.8,
6.48,
6.84,
7.46,
7.76,
7.91,
null,
8.17
],
[
null,
5.45,
5.6,
5.7,
6.37,
6.75,
7.37,
7.66,
7.82,
null,
8.08
],
[
null,
5.46,
5.59,
5.67,
6.33,
6.73,
7.37,
7.68,
7.84,
null,
8.09
],
[
null,
5.42,
5.54,
5.65,
6.31,
6.69,
7.33,
7.66,
7.84,
null,
8.09
],
[
null,
5.27,
5.43,
5.52,
6.24,
6.63,
7.31,
7.65,
7.83,
null,
8.11
],
[
null,
5.26,
5.35,
5.48,
6.17,
6.58,
7.24,
7.61,
7.81,
null,
8.09
],
[
null,
5.44,
5.52,
5.63,
6.27,
6.65,
7.27,
7.63,
7.8,
null,
8.07
],
[
null,
5.47,
5.56,
5.66,
6.27,
6.65,
7.25,
7.61,
7.78,
null,
8.05
],
[
null,
5.56,
5.71,
5.82,
6.46,
6.78,
7.39,
7.71,
7.88,
null,
8.13
],
[
null,
5.58,
5.72,
5.85,
6.48,
6.81,
7.44,
7.75,
7.91,
null,
8.15
],
[
null,
5.55,
5.68,
5.8,
6.41,
6.76,
7.42,
7.74,
7.89,
null,
8.14
],
[
null,
5.46,
5.56,
5.68,
6.3,
6.65,
7.32,
7.65,
7.82,
null,
8.06
],
[
null,
5.43,
5.53,
5.65,
6.25,
6.59,
7.24,
7.58,
7.74,
null,
7.99
],
[
null,
5.49,
5.6,
5.72,
6.36,
6.68,
7.34,
7.67,
7.82,
null,
8.06
],
[
null,
5.51,
5.61,
5.72,
6.33,
6.67,
7.32,
7.66,
7.81,
null,
8.05
],
[
null,
5.49,
5.61,
5.71,
6.31,
6.67,
7.31,
7.66,
7.81,
null,
8.06
],
[
null,
5.48,
5.61,
5.71,
6.31,
6.67,
7.32,
7.67,
7.83,
null,
8.09
],
[
null,
5.45,
5.56,
5.65,
6.26,
6.62,
7.24,
7.6,
7.76,
null,
8.02
],
[
null,
5.44,
5.53,
5.61,
6.23,
6.58,
7.2,
7.56,
7.73,
null,
8.0
],
[
null,
5.4,
5.49,
5.61,
6.21,
6.58,
7.2,
7.55,
7.73,
null,
8.01
],
[
null,
5.42,
5.5,
5.61,
6.23,
6.58,
7.21,
7.56,
7.74,
null,
8.02
],
[
null,
5.38,
5.47,
5.56,
6.2,
6.53,
7.15,
7.52,
7.67,
null,
7.96
],
[
null,
5.31,
5.42,
5.53,
6.18,
6.51,
7.13,
7.48,
7.66,
null,
7.95
],
[
null,
5.34,
5.44,
5.55,
6.17,
6.5,
7.11,
7.44,
7.63,
null,
7.93
],
[
null,
5.35,
5.46,
5.56,
6.18,
6.5,
7.1,
7.43,
7.62,
null,
7.92
],
[
null,
5.34,
5.45,
5.56,
6.18,
6.48,
7.1,
7.43,
7.62,
null,
7.92
],
[
null,
5.36,
5.48,
5.59,
6.2,
6.47,
7.1,
7.43,
7.61,
null,
7.92
],
[
null,
5.35,
5.47,
5.55,
6.18,
6.44,
7.09,
7.4,
7.57,
null,
7.89
],
[
null,
5.37,
5.47,
5.54,
6.17,
6.42,
7.09,
7.38,
7.55,
null,
7.88
],
[
null,
5.33,
5.46,
5.54,
6.11,
6.42,
7.09,
7.38,
7.56,
null,
7.89
],
[
null,
5.33,
5.45,
5.53,
6.12,
6.42,
7.06,
7.4,
7.58,
null,
7.91
],
[
null,
5.28,
5.4,
5.47,
6.05,
6.35,
7.03,
7.38,
7.56,
null,
7.89
],
[
null,
5.28,
5.36,
5.43,
6.02,
6.31,
6.95,
7.31,
7.49,
null,
7.83
],
[
null,
5.26,
5.34,
5.42,
5.99,
6.28,
6.92,
7.29,
7.47,
null,
7.82
],
[
null,
5.25,
5.35,
5.42,
5.99,
6.26,
6.9,
7.27,
7.45,
null,
7.81
],
[
null,
5.24,
5.37,
5.43,
5.99,
6.29,
6.9,
7.28,
7.47,
null,
7.83
],
[
null,
5.19,
5.33,
5.39,
5.98,
6.25,
6.88,
7.26,
7.47,
null,
7.84
],
[
null,
5.17,
5.29,
5.35,
5.91,
6.2,
6.81,
7.18,
7.39,
null,
7.79
],
[
null,
5.18,
5.3,
5.35,
5.93,
6.2,
6.81,
7.18,
7.4,
null,
7.79
],
[
null,
5.17,
5.29,
5.35,
5.89,
6.19,
6.82,
7.2,
7.43,
null,
7.82
],
[
null,
5.16,
5.28,
5.36,
5.93,
6.23,
6.87,
7.24,
7.51,
null,
7.91
],
[
null,
5.18,
5.29,
5.4,
5.98,
6.3,
6.93,
7.3,
7.58,
null,
7.98
],
[
null,
5.14,
5.23,
5.33,
5.91,
6.22,
6.84,
7.19,
7.49,
null,
7.9
],
[
null,
5.13,
5.24,
5.28,
5.85,
6.17,
6.81,
7.16,
7.46,
null,
7.87
],
[
null,
5.12,
5.22,
5.27,
5.86,
6.17,
6.79,
7.15,
7.45,
null,
7.88
],
[
null,
5.18,
5.28,
5.38,
5.93,
6.25,
6.9,
7.24,
7.55,
null,
8.0
],
[
null,
5.18,
5.28,
5.39,
5.95,
6.24,
6.88,
7.22,
7.53,
null,
7.97
],
[
null,
5.19,
5.34,
5.43,
5.99,
6.3,
6.95,
7.3,
7.62,
null,
8.06
],
[
null,
5.21,
5.35,
5.44,
6.02,
6.33,
6.99,
7.35,
7.67,
null,
8.1
],
[
null,
5.19,
5.33,
5.42,
6.01,
6.35,
7.0,
7.37,
7.69,
null,
8.09
],
[
null,
5.12,
5.25,
5.32,
5.93,
6.25,
6.91,
7.33,
7.65,
null,
8.03
],
[
null,
5.11,
5.25,
5.32,
5.93,
6.28,
6.96,
7.36,
7.68,
null,
8.05
],
[
null,
5.09,
5.2,
5.29,
5.88,
6.24,
6.91,
7.32,
7.65,
null,
8.03
],
[
null,
5.03,
5.13,
5.19,
5.78,
6.14,
6.8,
7.19,
7.51,
null,
7.91
],
[
null,
4.98,
5.07,
5.13,
5.73,
6.12,
6.77,
7.18,
7.48,
null,
7.9
],
[
null,
4.96,
5.03,
5.1,
5.7,
6.06,
6.74,
7.15,
7.47,
null,
7.91
],
[
null,
4.89,
4.98,
5.03,
5.65,
6.02,
6.71,
7.16,
7.48,
null,
7.93
],
[
null,
4.88,
4.99,
5.02,
5.63,
6.03,
6.74,
7.18,
7.5,
null,
7.95
],
[
null,
4.9,
5.01,
5.07,
5.7,
6.04,
6.79,
7.21,
7.56,
null,
8.02
],
[
null,
4.76,
4.89,
4.98,
5.63,
5.97,
6.72,
7.16,
7.51,
null,
8.01
],
[
null,
4.76,
4.88,
4.96,
5.62,
5.95,
6.65,
7.08,
7.43,
null,
7.92
],
[
null,
4.75,
4.88,
4.96,
5.63,
5.96,
6.66,
7.08,
7.41,
null,
7.88
],
[
null,
4.77,
4.89,
4.98,
5.65,
5.97,
6.65,
7.05,
7.37,
null,
7.8
],
[
null,
4.76,
4.89,
5.02,
5.65,
6.0,
6.69,
7.08,
7.41,
null,
7.88
],
[
null,
4.76,
4.86,
4.95,
5.6,
5.93,
6.62,
7.02,
7.35,
null,
7.82
],
[
null,
4.72,
4.81,
4.89,
5.54,
5.88,
6.58,
6.99,
7.33,
null,
7.84
],
[
null,
4.71,
4.82,
4.89,
5.55,
5.88,
6.57,
6.98,
7.33,
null,
7.84
],
[
null,
4.66,
4.74,
4.84,
5.5,
5.83,
6.55,
6.99,
7.37,
null,
7.9
],
[
null,
4.62,
4.73,
4.83,
5.52,
5.84,
6.56,
7.01,
7.38,
null,
7.92
],
[
null,
4.56,
4.68,
4.77,
5.5,
5.82,
6.54,
6.99,
7.39,
null,
7.96
],
[
null,
4.55,
4.67,
4.75,
5.49,
5.82,
6.56,
7.02,
7.44,
null,
7.99
],
[
null,
4.55,
4.68,
4.78,
5.5,
5.86,
6.61,
7.06,
7.45,
null,
7.99
],
[
null,
4.52,
4.63,
4.75,
5.45,
5.81,
6.53,
7.04,
7.42,
null,
7.95
],
[
null,
4.51,
4.62,
4.74,
5.43,
5.8,
6.53,
7.03,
7.42,
null,
7.97
],
[
null,
4.47,
4.57,
4.69,
5.38,
5.76,
6.48,
6.99,
7.38,
null,
7.94
],
[
null,
4.51,
4.56,
4.68,
5.33,
5.71,
6.43,
6.91,
7.32,
null,
7.92
],
[
null,
4.48,
4.53,
4.64,
5.29,
5.67,
6.39,
6.86,
7.28,
null,
7.9
],
[
null,
4.43,
4.47,
4.59,
5.22,
5.59,
6.27,
6.74,
7.17,
null,
7.84
],
[
null,
4.43,
4.48,
4.6,
5.22,
5.6,
6.3,
6.78,
7.21,
null,
7.86
],
[
null,
4.36,
4.38,
4.53,
5.19,
5.58,
6.31,
6.81,
7.26,
null,
7.78
],
[
null,
4.28,
4.33,
4.44,
5.09,
5.48,
6.23,
6.75,
7.22,
null,
7.78
],
[
null,
4.32,
4.36,
4.47,
5.07,
5.48,
6.25,
6.75,
7.21,
null,
7.79
],
[
null,
4.26,
4.32,
4.46,
5.04,
5.44,
6.26,
6.76,
7.22,
null,
7.81
],
[
null,
4.26,
4.32,
4.42,
5.06,
5.43,
6.23,
6.74,
7.19,
null,
7.77
],
[
null,
4.26,
4.33,
4.43,
5.09,
5.46,
6.3,
6.79,
7.22,
null,
7.79
],
[
null,
4.25,
4.34,
4.42,
5.06,
5.44,
6.28,
6.78,
7.21,
null,
7.77
],
[
null,
4.22,
4.32,
4.38,
5.02,
5.39,
6.24,
6.75,
7.18,
null,
7.75
],
[
null,
4.23,
4.35,
4.44,
5.11,
5.46,
6.3,
6.78,
7.19,
null,
7.76
],
[
null,
4.15,
4.29,
4.39,
5.05,
5.4,
6.19,
6.73,
7.11,
null,
7.68
],
[
null,
3.84,
3.98,
4.11,
4.8,
5.2,
6.02,
6.59,
6.97,
null,
7.59
],
[
null,
3.87,
4.01,
4.13,
4.79,
5.17,
6.0,
6.51,
6.88,
null,
7.53
],
[
null,
3.91,
4.02,
4.18,
4.84,
5.18,
6.01,
6.53,
6.88,
null,
7.53
],
[
null,
3.92,
4.06,
4.19,
4.85,
5.17,
6.0,
6.51,
6.85,
null,
7.51
],
[
null,
3.96,
4.02,
4.18,
4.85,
5.15,
6.0,
6.5,
6.82,
null,
7.52
],
[
null,
3.97,
4.02,
4.14,
4.8,
5.14,
5.97,
6.44,
6.76,
null,
7.45
],
[
null,
3.96,
4.0,
4.12,
4.77,
5.11,
5.93,
6.38,
6.71,
null,
7.41
],
[
null,
3.96,
4.01,
4.13,
4.77,
5.13,
5.98,
6.46,
6.78,
null,
7.46
],
[
null,
3.95,
4.02,
4.16,
4.8,
5.19,
6.05,
6.54,
6.85,
null,
7.48
],
[
null,
3.92,
3.96,
4.12,
4.76,
5.14,
6.02,
6.51,
6.82,
null,
7.44
],
[
null,
3.85,
3.93,
4.03,
4.67,
5.06,
5.94,
6.44,
6.76,
null,
7.39
],
[
null,
3.82,
3.9,
4.0,
4.66,
5.05,
5.96,
6.42,
6.77,
null,
7.41
],
[
null,
3.87,
3.96,
4.05,
4.77,
5.13,
6.02,
6.47,
6.79,
null,
7.42
],
[
null,
3.92,
4.0,
4.11,
4.85,
5.22,
6.1,
6.54,
6.85,
null,
7.47
],
[
null,
3.92,
4.02,
4.17,
4.93,
5.34,
6.21,
6.62,
6.92,
null,
7.49
],
[
null,
3.92,
4.01,
4.16,
5.0,
5.44,
6.34,
6.77,
7.03,
null,
7.54
],
[
null,
3.94,
4.05,
4.22,
5.07,
5.48,
6.37,
6.78,
7.05,
null,
7.57
],
[
null,
3.89,
4.02,
4.18,
5.07,
5.51,
6.41,
6.84,
7.13,
null,
7.65
],
[
null,
3.89,
4.02,
4.14,
5.02,
5.46,
6.36,
6.81,
7.09,
null,
7.61
],
[
null,
3.86,
3.97,
4.1,
4.97,
5.36,
6.27,
6.71,
7.03,
null,
7.57
],
[
null,
3.85,
3.97,
4.1,
4.95,
5.4,
6.28,
6.74,
7.09,
null,
7.62
],
[
null,
3.87,
3.98,
4.15,
5.02,
5.51,
6.32,
6.84,
7.2,
null,
7.71
],
[
null,
3.91,
4.06,
4.22,
5.13,
5.62,
6.4,
6.89,
7.25,
null,
7.71
],
[
null,
3.93,
4.07,
4.24,
5.15,
5.66,
6.41,
6.88,
7.24,
null,
7.71
],
[
null,
3.93,
4.05,
4.2,
5.1,
5.58,
6.32,
6.8,
7.16,
null,
7.66
],
[
null,
3.96,
4.07,
4.22,
5.15,
5.67,
6.42,
6.89,
7.25,
null,
7.75
],
[
null,
3.93,
4.07,
4.24,
5.17,
5.71,
6.48,
6.93,
7.31,
null,
7.79
],
[
null,
3.94,
4.07,
4.23,
5.11,
5.65,
6.44,
6.92,
7.31,
null,
7.77
],
[
null,
3.96,
4.06,
4.23,
5.15,
5.72,
6.52,
6.98,
7.36,
null,
7.82
],
[
null,
3.94,
4.04,
4.21,
5.12,
5.67,
6.46,
6.91,
7.29,
null,
7.76
],
[
null,
3.94,
4.03,
4.21,
5.07,
5.59,
6.4,
6.83,
7.21,
null,
7.74
],
[
null,
3.91,
4.02,
4.2,
5.05,
5.56,
6.4,
6.81,
7.2,
null,
7.75
],
[
null,
3.84,
3.92,
4.1,
4.97,
5.51,
6.4,
6.8,
7.2,
null,
7.77
],
[
null,
3.83,
3.93,
4.08,
4.94,
5.52,
6.38,
6.79,
7.21,
null,
7.79
],
[
null,
3.85,
3.97,
4.14,
5.01,
5.51,
6.4,
6.82,
7.23,
null,
7.79
],
[
null,
3.85,
3.97,
4.16,
5.08,
5.55,
6.46,
6.88,
7.3,
null,
7.81
],
[
null,
3.89,
4.03,
4.26,
5.22,
5.72,
6.61,
7.0,
7.4,
null,
7.92
],
[
null,
3.89,
4.04,
4.32,
5.27,
5.76,
6.65,
7.02,
7.41,
null,
7.91
],
[
null,
3.93,
4.08,
4.31,
5.24,
5.77,
6.69,
7.07,
7.47,
null,
7.97
],
[
null,
3.95,
4.11,
4.33,
5.28,
5.78,
6.67,
7.05,
7.42,
null,
7.93
],
[
null,
3.98,
4.14,
4.38,
5.3,
5.78,
6.67,
7.03,
7.41,
null,
7.91
],
[
null,
4.03,
4.2,
4.47,
5.46,
5.93,
6.77,
7.1,
7.45,
null,
7.95
],
[
null,
4.07,
4.23,
4.48,
5.46,
5.96,
6.81,
7.12,
7.47,
null,
7.97
],
[
null,
4.07,
4.22,
4.47,
5.43,
5.92,
6.78,
7.09,
7.44,
null,
7.94
],
[
null,
4.05,
4.18,
4.4,
5.37,
5.84,
6.66,
7.01,
7.33,
null,
7.85
],
[
null,
4.04,
4.14,
4.36,
5.34,
5.84,
6.67,
7.02,
7.35,
null,
7.86
],
[
null,
4.03,
4.14,
4.35,
5.27,
5.75,
6.58,
6.95,
7.27,
null,
7.8
],
[
null,
4.14,
4.28,
4.5,
5.45,
5.94,
6.73,
7.07,
7.38,
null,
7.9
],
[
null,
4.14,
4.28,
4.51,
5.48,
5.94,
6.76,
7.11,
7.43,
null,
7.93
],
[
null,
4.13,
4.27,
4.52,
5.5,
5.98,
6.76,
7.1,
7.43,
null,
7.9
],
[
null,
4.14,
4.3,
4.63,
5.62,
6.1,
6.87,
7.21,
7.51,
null,
7.95
],
[
null,
4.14,
4.29,
4.6,
5.6,
6.05,
6.85,
7.18,
7.48,
null,
7.93
],
[
null,
4.1,
4.27,
4.55,
5.54,
6.01,
6.77,
7.1,
7.42,
null,
7.88
],
[
null,
4.11,
4.29,
4.58,
5.56,
6.02,
6.78,
7.11,
7.43,
null,
7.89
],
[
null,
4.11,
4.31,
4.6,
5.58,
6.07,
6.86,
7.21,
7.51,
null,
7.96
],
[
null,
4.12,
4.33,
4.69,
5.74,
6.22,
7.01,
7.33,
7.62,
null,
8.04
],
[
null,
4.16,
4.38,
4.79,
5.86,
6.37,
7.14,
7.44,
7.71,
null,
8.06
],
[
null,
4.18,
4.41,
4.78,
5.87,
6.37,
7.12,
7.43,
7.69,
null,
8.07
],
[
null,
4.16,
4.39,
4.72,
5.83,
6.32,
7.06,
7.37,
7.62,
null,
8.02
],
[
null,
4.15,
4.4,
4.74,
5.84,
6.33,
7.06,
7.36,
7.62,
null,
8.01
],
[
null,
4.15,
4.38,
4.69,
5.79,
6.29,
7.03,
7.31,
7.57,
null,
7.98
],
[
null,
4.16,
4.4,
4.74,
5.86,
6.36,
7.12,
7.38,
7.64,
null,
8.05
],
[
null,
4.17,
4.41,
4.74,
5.87,
6.37,
7.1,
7.37,
7.62,
null,
8.04
],
[
null,
4.15,
4.34,
4.66,
5.78,
6.26,
7.0,
7.27,
7.53,
null,
7.94
],
[
null,
4.11,
4.31,
4.62,
5.72,
6.22,
6.96,
7.25,
7.53,
null,
7.94
],
[
null,
4.11,
4.3,
4.6,
5.69,
6.23,
6.98,
7.29,
7.57,
null,
7.99
],
[
null,
4.11,
4.29,
4.6,
5.68,
6.22,
6.97,
7.27,
7.54,
null,
7.94
],
[
null,
4.16,
4.33,
4.56,
5.61,
6.19,
6.93,
7.25,
7.54,
null,
7.95
],
[
null,
4.15,
4.32,
4.54,
5.6,
6.17,
6.94,
7.25,
7.54,
null,
7.96
],
[
null,
4.11,
4.26,
4.48,
5.53,
6.07,
6.82,
7.17,
7.46,
null,
7.9
],
[
null,
4.12,
4.27,
4.53,
5.55,
6.1,
6.85,
7.2,
7.47,
null,
7.92
],
[
null,
4.06,
4.17,
4.4,
5.37,
5.93,
6.76,
7.13,
7.42,
null,
7.88
],
[
null,
4.03,
4.17,
4.39,
5.36,
5.91,
6.74,
7.12,
7.41,
null,
7.88
],
[
null,
3.96,
4.12,
4.35,
5.34,
5.89,
6.73,
7.12,
7.41,
null,
7.9
],
[
null,
3.96,
4.1,
4.32,
5.33,
5.87,
6.76,
7.14,
7.44,
null,
7.94
],
[
null,
3.75,
3.87,
4.08,
5.09,
5.65,
6.59,
7.02,
7.35,
null,
7.85
],
[
null,
3.74,
3.88,
4.12,
5.16,
5.72,
6.62,
7.03,
7.37,
null,
7.89
],
[
null,
3.7,
3.85,
4.08,
5.11,
5.69,
6.58,
6.98,
7.33,
null,
7.86
],
[
null,
3.7,
3.85,
4.1,
5.15,
5.71,
6.6,
6.99,
7.35,
null,
7.88
],
[
null,
3.7,
3.84,
4.14,
5.22,
5.77,
6.66,
7.02,
7.37,
null,
7.87
],
[
null,
3.73,
3.9,
4.23,
5.34,
5.9,
6.76,
7.11,
7.45,
null,
7.93
],
[
null,
3.79,
4.01,
4.34,
5.45,
6.03,
6.9,
7.25,
7.59,
null,
8.02
],
[
null,
3.77,
3.98,
4.33,
5.41,
6.01,
6.89,
7.24,
7.58,
null,
8.03
],
[
null,
3.77,
3.98,
4.33,
5.41,
6.01,
6.89,
7.23,
7.57,
null,
8.04
],
[
null,
3.76,
3.97,
4.35,
5.41,
6.05,
6.91,
7.25,
7.59,
null,
8.06
],
[
null,
3.76,
3.94,
4.27,
5.33,
5.99,
6.85,
7.21,
7.55,
null,
8.06
],
[
null,
3.82,
4.0,
4.36,
5.42,
6.04,
6.9,
7.25,
7.6,
null,
8.1
],
[
null,
3.8,
3.97,
4.34,
5.4,
6.03,
6.87,
7.23,
7.57,
null,
8.06
],
[
null,
3.8,
3.96,
4.34,
5.39,
6.01,
6.88,
7.26,
7.6,
null,
8.08
],
[
null,
3.79,
3.97,
4.4,
5.46,
6.05,
6.91,
7.26,
7.61,
null,
8.06
],
[
null,
3.72,
3.89,
4.28,
5.33,
5.97,
6.82,
7.2,
7.56,
null,
8.01
],
[
null,
3.71,
3.91,
4.28,
5.32,
5.95,
6.82,
7.21,
7.58,
null,
8.03
],
[
null,
3.72,
3.92,
4.27,
5.3,
5.92,
6.8,
7.18,
7.56,
null,
8.01
],
[
null,
3.7,
3.88,
4.22,
5.25,
5.9,
6.76,
7.15,
7.46,
null,
7.97
],
[
null,
3.71,
3.9,
4.26,
5.34,
5.96,
6.8,
7.16,
7.49,
null,
8.0
],
[
null,
3.72,
3.88,
4.22,
5.29,
5.88,
6.73,
7.09,
7.41,
null,
7.9
],
[
null,
3.74,
3.87,
4.18,
5.24,
5.82,
6.71,
7.07,
7.4,
null,
7.9
],
[
null,
3.7,
3.84,
4.15,
5.19,
5.78,
6.66,
7.02,
7.36,
null,
7.86
],
[
null,
3.67,
3.81,
4.09,
5.14,
5.72,
6.64,
7.0,
7.34,
null,
7.85
],
[
null,
3.65,
3.82,
4.09,
5.13,
5.72,
6.63,
7.0,
7.34,
null,
7.87
],
[
null,
3.66,
3.8,
4.08,
5.11,
5.7,
6.6,
6.96,
7.28,
null,
7.81
],
[
null,
3.69,
3.83,
4.08,
5.12,
5.69,
6.59,
6.96,
7.28,
null,
7.82
],
[
null,
3.62,
3.74,
4.0,
5.0,
5.59,
6.47,
6.86,
7.2,
null,
7.77
],
[
null,
3.65,
3.79,
4.08,
5.13,
5.66,
6.55,
6.93,
7.25,
null,
7.79
],
[
null,
3.76,
3.93,
4.25,
5.34,
5.89,
6.77,
7.1,
7.39,
null,
7.86
],
[
null,
3.77,
3.91,
4.19,
5.24,
5.81,
6.69,
7.05,
7.35,
null,
7.83
],
[
null,
3.84,
4.02,
4.32,
5.35,
5.91,
6.79,
7.14,
7.46,
null,
7.92
],
[
null,
3.79,
3.98,
4.27,
5.28,
5.86,
6.74,
7.11,
7.44,
null,
7.91
],
[
null,
3.77,
3.95,
4.24,
5.22,
5.79,
6.67,
7.04,
7.36,
null,
7.87
],
[
null,
3.79,
3.96,
4.24,
5.19,
5.75,
6.61,
7.0,
7.33,
null,
7.84
],
[
null,
3.82,
4.01,
4.32,
5.29,
5.84,
6.69,
7.06,
7.39,
null,
7.9
],
[
null,
3.83,
4.0,
4.3,
5.23,
5.78,
6.61,
7.02,
7.35,
null,
7.87
],
[
null,
3.8,
3.99,
4.27,
5.2,
5.76,
6.6,
7.01,
7.34,
null,
7.88
],
[
null,
3.78,
3.98,
4.26,
5.22,
5.76,
6.6,
7.01,
7.34,
null,
7.88
],
[
null,
3.77,
3.94,
4.21,
5.13,
5.7,
6.55,
6.96,
7.31,
null,
7.84
],
[
null,
3.78,
3.95,
4.2,
5.11,
5.69,
6.56,
6.97,
7.31,
null,
7.84
],
[
null,
3.77,
3.94,
4.2,
5.11,
5.69,
6.59,
6.99,
7.33,
null,
7.88
],
[
null,
3.77,
3.95,
4.2,
5.13,
5.69,
6.59,
7.01,
7.35,
null,
7.9
],
[
null,
3.75,
3.92,
4.18,
5.09,
5.67,
6.56,
6.98,
7.33,
null,
7.88
],
[
null,
3.75,
3.88,
4.14,
5.06,
5.61,
6.49,
6.94,
7.29,
null,
7.85
],
[
null,
3.75,
3.88,
4.13,
5.05,
5.6,
6.49,
6.93,
7.28,
null,
7.85
],
[
null,
3.72,
3.86,
4.12,
5.02,
5.56,
6.44,
6.88,
7.24,
null,
7.84
],
[
null,
3.7,
3.83,
4.1,
5.0,
5.55,
6.44,
6.86,
7.23,
null,
7.82
],
[
null,
3.69,
3.82,
4.08,
4.94,
5.5,
6.39,
6.81,
7.19,
null,
7.8
],
[
null,
3.74,
3.89,
4.17,
5.0,
5.54,
6.45,
6.87,
7.24,
null,
7.83
],
[
null,
3.75,
3.88,
4.15,
4.99,
5.55,
6.45,
6.86,
7.24,
null,
7.84
],
[
null,
3.77,
3.93,
4.22,
5.1,
5.58,
6.5,
6.88,
7.25,
null,
7.85
],
[
null,
3.72,
3.85,
4.11,
4.96,
5.47,
6.39,
6.83,
7.2,
null,
7.83
],
[
null,
3.71,
3.82,
4.09,
4.89,
5.41,
6.32,
6.75,
7.14,
null,
7.78
],
[
null,
3.71,
3.83,
4.11,
4.88,
5.42,
6.33,
6.78,
7.15,
null,
7.79
],
[
null,
3.66,
3.77,
4.04,
4.83,
5.38,
6.29,
6.74,
7.12,
null,
7.78
],
[
null,
3.65,
3.77,
4.05,
4.83,
5.39,
6.29,
6.76,
7.14,
null,
7.79
],
[
null,
3.63,
3.75,
4.04,
4.82,
5.38,
6.27,
6.73,
7.1,
null,
7.76
],
[
null,
3.31,
3.45,
3.7,
4.55,
5.15,
6.02,
6.53,
6.93,
null,
7.63
],
[
null,
3.29,
3.41,
3.67,
4.46,
5.06,
5.97,
6.49,
6.9,
null,
7.62
],
[
null,
3.28,
3.38,
3.63,
4.4,
4.98,
5.91,
6.45,
6.87,
null,
7.61
],
[
null,
3.29,
3.39,
3.63,
4.4,
4.98,
5.93,
6.45,
6.91,
null,
7.61
],
[
null,
3.28,
3.37,
3.63,
4.4,
4.97,
5.93,
6.45,
6.91,
null,
7.61
],
[
null,
3.29,
3.37,
3.62,
4.38,
4.95,
5.92,
6.43,
6.93,
null,
7.64
],
[
null,
3.29,
3.4,
3.62,
4.4,
4.97,
5.94,
6.46,
6.97,
null,
7.67
],
[
null,
3.28,
3.38,
3.57,
4.32,
4.91,
5.9,
6.45,
6.97,
null,
7.69
],
[
null,
3.25,
3.33,
3.48,
4.25,
4.82,
5.8,
6.37,
6.9,
null,
7.64
],
[
null,
3.24,
3.32,
3.49,
4.25,
4.8,
5.8,
6.35,
6.87,
null,
7.62
],
[
null,
3.23,
3.32,
3.5,
4.27,
4.83,
5.82,
6.38,
6.9,
null,
7.68
],
[
null,
3.26,
3.35,
3.51,
4.3,
4.84,
5.82,
6.38,
6.9,
null,
7.66
],
[
null,
3.26,
3.36,
3.55,
4.34,
4.87,
5.82,
6.37,
6.89,
null,
7.67
],
[
null,
3.24,
3.34,
3.53,
4.29,
4.81,
5.77,
6.32,
6.85,
null,
7.62
],
[
null,
3.23,
3.33,
3.52,
4.2,
4.71,
5.62,
6.18,
6.72,
null,
7.54
],
[
null,
3.23,
3.34,
3.55,
4.25,
4.77,
5.66,
6.2,
6.73,
null,
7.57
],
[
null,
3.26,
3.38,
3.58,
4.27,
4.78,
5.66,
6.16,
6.69,
null,
7.53
],
[
null,
3.26,
3.36,
3.55,
4.27,
4.75,
5.63,
6.11,
6.63,
null,
7.44
],
[
null,
3.25,
3.36,
3.54,
4.25,
4.76,
5.62,
6.09,
6.6,
null,
7.43
],
[
null,
3.25,
3.36,
3.58,
4.33,
4.88,
5.76,
6.24,
6.69,
null,
7.46
],
[
null,
3.25,
3.38,
3.62,
4.42,
4.97,
5.84,
6.27,
6.72,
null,
7.46
],
[
null,
3.25,
3.38,
3.61,
4.4,
4.97,
5.82,
6.28,
6.72,
null,
7.46
],
[
null,
3.24,
3.36,
3.57,
4.31,
4.88,
5.72,
6.2,
6.66,
null,
7.43
],
[
null,
3.24,
3.36,
3.55,
4.29,
4.83,
5.69,
6.17,
6.64,
null,
7.43
],
[
null,
3.23,
3.35,
3.54,
4.29,
4.82,
5.67,
6.18,
6.65,
null,
7.45
],
[
null,
3.21,
3.29,
3.44,
4.18,
4.71,
5.56,
6.08,
6.57,
null,
7.4
],
[
null,
3.2,
3.3,
3.42,
4.12,
4.67,
5.5,
6.01,
6.52,
null,
7.37
],
[
null,
3.2,
3.3,
3.43,
4.15,
4.66,
5.5,
5.99,
6.5,
null,
7.33
],
[
null,
3.19,
3.3,
3.45,
4.19,
4.71,
5.54,
6.02,
6.48,
null,
7.33
],
[
null,
3.16,
3.28,
3.43,
4.19,
4.72,
5.57,
6.09,
6.55,
null,
7.36
],
[
null,
3.13,
3.26,
3.4,
4.14,
4.67,
5.54,
6.06,
6.53,
null,
7.33
],
[
null,
3.16,
3.27,
3.41,
4.13,
4.66,
5.55,
6.09,
6.56,
null,
7.37
],
[
null,
3.14,
3.22,
3.36,
4.04,
4.56,
5.44,
6.0,
6.48,
null,
7.33
],
[
null,
3.15,
3.24,
3.38,
4.06,
4.55,
5.43,
5.99,
6.47,
null,
7.33
],
[
null,
3.15,
3.25,
3.4,
4.04,
4.54,
5.42,
5.98,
6.46,
null,
7.32
],
[
null,
3.14,
3.28,
3.46,
4.13,
4.63,
5.54,
6.08,
6.53,
null,
7.36
],
[
null,
3.23,
3.36,
3.57,
4.27,
4.8,
5.72,
6.25,
6.68,
null,
7.44
],
[
null,
3.24,
3.36,
3.57,
4.32,
4.86,
5.76,
6.29,
6.73,
null,
7.47
],
[
null,
3.23,
3.34,
3.5,
4.26,
4.81,
5.7,
6.25,
6.68,
null,
7.43
],
[
null,
3.23,
3.34,
3.48,
4.23,
4.76,
5.65,
6.2,
6.64,
null,
7.42
],
[
null,
3.23,
3.34,
3.47,
4.16,
4.72,
5.6,
6.18,
6.63,
null,
7.42
],
[
null,
3.23,
3.35,
3.47,
4.15,
4.69,
5.6,
6.17,
6.62,
null,
7.42
],
[
null,
3.22,
3.32,
3.45,
4.12,
4.64,
5.52,
6.11,
6.56,
null,
7.38
],
[
null,
3.21,
3.31,
3.43,
4.1,
4.59,
5.5,
6.07,
6.54,
null,
7.37
],
[
null,
3.21,
3.29,
3.43,
4.09,
4.59,
5.5,
6.07,
6.54,
null,
7.37
],
[
null,
2.98,
3.05,
3.18,
3.89,
4.38,
5.3,
5.9,
6.4,
null,
7.29
],
[
null,
2.96,
3.01,
3.14,
3.83,
4.31,
5.21,
5.8,
6.29,
null,
7.23
],
[
null,
2.97,
3.02,
3.17,
3.85,
4.34,
5.25,
5.83,
6.31,
null,
7.25
],
[
null,
2.97,
3.02,
3.17,
3.83,
4.34,
5.26,
5.84,
6.31,
null,
7.24
],
[
null,
2.98,
3.04,
3.19,
3.87,
4.39,
5.33,
5.91,
6.37,
null,
7.3
],
[
null,
2.95,
2.99,
3.13,
3.8,
4.33,
5.28,
5.86,
6.32,
null,
7.26
],
[
null,
2.98,
3.02,
3.2,
3.89,
4.43,
5.37,
5.94,
6.4,
null,
7.33
],
[
null,
2.96,
3.01,
3.17,
3.87,
4.42,
5.4,
5.95,
6.41,
null,
7.35
],
[
null,
2.94,
3.0,
3.14,
3.86,
4.4,
5.41,
5.95,
6.4,
null,
7.34
],
[
null,
2.94,
2.99,
3.13,
3.86,
4.4,
5.41,
5.97,
6.41,
null,
7.32
],
[
null,
2.97,
3.0,
3.16,
3.91,
4.45,
5.46,
5.99,
6.42,
null,
7.35
],
[
null,
2.98,
3.04,
3.2,
3.98,
4.49,
5.52,
6.07,
6.5,
null,
7.45
],
[
null,
2.98,
3.06,
3.21,
3.97,
4.52,
5.54,
6.13,
6.54,
null,
7.48
],
[
null,
2.95,
3.01,
3.17,
3.91,
4.45,
5.47,
6.06,
6.48,
null,
7.42
],
[
null,
2.86,
2.92,
3.04,
3.78,
4.31,
5.33,
5.96,
6.41,
null,
7.35
],
[
null,
2.79,
2.93,
3.04,
3.77,
4.29,
5.28,
5.91,
6.37,
null,
7.34
],
[
null,
2.79,
2.93,
3.06,
3.8,
4.31,
5.31,
5.92,
6.37,
null,
7.36
],
[
null,
2.75,
2.92,
3.06,
3.8,
4.34,
5.33,
5.94,
6.37,
null,
7.38
],
[
null,
2.67,
2.83,
2.96,
3.67,
4.18,
5.18,
5.8,
6.23,
null,
7.3
],
[
null,
2.69,
2.87,
2.98,
3.71,
4.2,
5.22,
5.84,
6.26,
null,
7.33
],
[
null,
2.75,
2.87,
2.98,
3.68,
4.18,
5.18,
5.81,
6.24,
null,
7.34
],
[
null,
2.79,
2.92,
3.05,
3.74,
4.24,
5.25,
5.89,
6.3,
null,
7.41
],
[
null,
2.89,
3.0,
3.15,
3.88,
4.42,
5.43,
6.03,
6.46,
null,
7.48
],
[
null,
2.85,
2.97,
3.08,
3.83,
4.36,
5.37,
5.99,
6.41,
null,
7.45
],
[
null,
2.89,
3.03,
3.19,
4.0,
4.5,
5.5,
6.08,
6.52,
null,
7.52
],
[
null,
2.95,
3.06,
3.22,
3.99,
4.52,
5.49,
6.07,
6.51,
null,
7.53
],
[
null,
2.99,
3.1,
3.26,
4.02,
4.54,
5.51,
6.07,
6.51,
null,
7.5
],
[
null,
2.98,
3.11,
3.27,
4.02,
4.56,
5.52,
6.08,
6.53,
null,
7.51
],
[
null,
2.97,
3.13,
3.3,
4.04,
4.6,
5.57,
6.12,
6.6,
null,
7.54
],
[
null,
3.04,
3.23,
3.41,
4.15,
4.74,
5.71,
6.23,
6.69,
null,
7.57
],
[
null,
3.09,
3.34,
3.56,
4.34,
4.97,
5.9,
6.44,
6.86,
null,
7.65
],
[
null,
2.99,
3.25,
3.47,
4.29,
4.91,
5.82,
6.35,
6.8,
null,
7.63
],
[
null,
2.98,
3.25,
3.45,
4.24,
4.86,
5.79,
6.32,
6.74,
null,
7.61
],
[
null,
3.0,
3.3,
3.52,
4.37,
4.98,
5.91,
6.41,
6.83,
null,
7.65
],
[
null,
3.02,
3.3,
3.55,
4.39,
5.0,
5.92,
6.42,
6.83,
null,
7.66
],
[
null,
3.0,
3.29,
3.48,
4.32,
4.9,
5.82,
6.34,
6.78,
null,
7.62
],
[
null,
3.0,
3.27,
3.45,
4.33,
4.89,
5.83,
6.33,
6.76,
null,
7.64
],
[
null,
3.02,
3.27,
3.48,
4.33,
4.87,
5.79,
6.27,
6.71,
null,
7.6
],
[
null,
3.03,
3.29,
3.54,
4.4,
4.98,
5.9,
6.36,
6.8,
null,
7.63
],
[
null,
3.08,
3.35,
3.62,
4.47,
5.07,
5.96,
6.46,
6.88,
null,
7.66
],
[
null,
3.1,
3.32,
3.57,
4.44,
5.03,
5.94,
6.45,
6.87,
null,
7.65
],
[
null,
3.09,
3.32,
3.56,
4.44,
5.01,
5.94,
6.46,
6.89,
null,
7.69
],
[
null,
3.08,
3.3,
3.54,
4.39,
4.96,
5.93,
6.44,
6.87,
null,
7.69
],
[
null,
3.13,
3.37,
3.6,
4.48,
5.07,
6.02,
6.54,
6.97,
null,
7.76
],
[
null,
3.17,
3.4,
3.66,
4.57,
5.16,
6.09,
6.59,
7.0,
null,
7.75
],
[
null,
3.15,
3.38,
3.62,
4.5,
5.1,
6.01,
6.5,
6.91,
null,
7.68
],
[
null,
3.13,
3.38,
3.59,
4.44,
5.0,
5.89,
6.38,
6.79,
null,
7.57
],
[
null,
3.15,
3.42,
3.68,
4.54,
5.09,
5.99,
6.44,
6.82,
null,
7.57
],
[
null,
3.22,
3.47,
3.77,
4.68,
5.21,
6.11,
6.54,
6.9,
null,
7.56
],
[
null,
3.24,
3.48,
3.73,
4.67,
5.21,
6.08,
6.51,
6.86,
null,
7.55
],
[
null,
3.22,
3.45,
3.68,
4.58,
5.11,
5.97,
6.41,
6.78,
null,
7.51
],
[
null,
3.22,
3.46,
3.72,
4.59,
5.12,
6.0,
6.44,
6.81,
null,
7.54
],
[
null,
3.28,
3.51,
3.77,
4.66,
5.2,
6.08,
6.48,
6.84,
null,
7.54
],
[
null,
3.34,
3.55,
3.77,
4.69,
5.22,
6.1,
6.51,
6.86,
null,
7.56
],
[
null,
3.29,
3.51,
3.69,
4.61,
5.16,
6.04,
6.45,
6.82,
null,
7.53
],
[
null,
3.31,
3.54,
3.75,
4.7,
5.23,
6.12,
6.5,
6.84,
null,
7.54
],
[
null,
3.33,
3.56,
3.81,
4.77,
5.36,
6.22,
6.6,
6.93,
null,
7.59
],
[
null,
3.38,
3.58,
3.83,
4.79,
5.36,
6.23,
6.61,
6.95,
null,
7.59
],
[
null,
3.4,
3.59,
3.86,
4.81,
5.39,
6.24,
6.61,
6.94,
null,
7.57
],
[
null,
3.42,
3.58,
3.84,
4.81,
5.39,
6.23,
6.61,
6.93,
null,
7.57
],
[
null,
3.37,
3.56,
3.83,
4.78,
5.36,
6.2,
6.59,
6.91,
null,
7.57
],
[
null,
3.32,
3.48,
3.73,
4.7,
5.27,
6.11,
6.51,
6.84,
null,
7.5
],
[
null,
3.35,
3.47,
3.69,
4.62,
5.19,
6.05,
6.45,
6.78,
null,
7.45
],
[
null,
3.33,
3.44,
3.66,
4.59,
5.13,
5.99,
6.39,
6.73,
null,
7.44
],
[
null,
3.3,
3.44,
3.69,
4.61,
5.16,
6.01,
6.41,
6.76,
null,
7.44
],
[
null,
3.29,
3.47,
3.72,
4.67,
5.19,
6.04,
6.42,
6.77,
null,
7.42
],
[
null,
3.32,
3.51,
3.82,
4.78,
5.29,
6.1,
6.48,
6.8,
null,
7.44
],
[
null,
3.33,
3.54,
3.85,
4.8,
5.34,
6.15,
6.52,
6.83,
null,
7.45
],
[
null,
3.29,
3.5,
3.78,
4.77,
5.29,
6.12,
6.5,
6.83,
null,
7.45
],
[
null,
3.28,
3.46,
3.73,
4.67,
5.21,
6.06,
6.44,
6.77,
null,
7.44
],
[
null,
3.27,
3.48,
3.73,
4.69,
5.21,
6.08,
6.45,
6.77,
null,
7.43
],
[
null,
3.23,
3.43,
3.69,
4.66,
5.2,
6.07,
6.44,
6.76,
null,
7.43
],
[
null,
3.25,
3.43,
3.68,
4.64,
5.18,
6.05,
6.41,
6.71,
null,
7.38
],
[
null,
3.27,
3.41,
3.63,
4.64,
5.12,
6.02,
6.36,
6.65,
null,
7.34
],
[
null,
3.25,
3.41,
3.63,
4.63,
5.14,
6.01,
6.39,
6.68,
null,
7.36
],
[
null,
3.23,
3.41,
3.63,
4.6,
5.13,
6.02,
6.4,
6.69,
null,
7.36
],
[
null,
3.3,
3.48,
3.64,
4.64,
5.17,
6.06,
6.43,
6.72,
null,
7.4
],
[
null,
3.27,
3.45,
3.64,
4.61,
5.15,
6.04,
6.42,
6.69,
null,
7.37
],
[
null,
3.19,
3.39,
3.57,
4.54,
5.07,
5.98,
6.39,
6.68,
null,
7.39
],
[
null,
3.15,
3.38,
3.61,
4.56,
5.12,
6.04,
6.43,
6.7,
null,
7.4
],
[
null,
3.19,
3.37,
3.56,
4.48,
5.03,
5.9,
6.33,
6.6,
null,
7.33
],
[
null,
3.18,
3.36,
3.58,
4.48,
5.0,
5.9,
6.32,
6.61,
null,
7.33
],
[
null,
3.17,
3.35,
3.62,
4.52,
5.06,
5.94,
6.36,
6.63,
null,
7.34
],
[
null,
3.19,
3.38,
3.7,
4.64,
5.17,
6.05,
6.49,
6.76,
null,
7.45
],
[
null,
3.13,
3.3,
3.56,
4.5,
5.06,
5.97,
6.44,
6.75,
null,
7.47
],
[
null,
3.12,
3.28,
3.54,
4.48,
5.01,
5.93,
6.4,
6.71,
null,
7.47
],
[
null,
3.09,
3.24,
3.54,
4.48,
5.03,
5.95,
6.41,
6.72,
null,
7.48
],
[
null,
3.06,
3.24,
3.51,
4.46,
5.02,
5.93,
6.36,
6.71,
null,
7.45
],
[
null,
3.04,
3.23,
3.48,
4.4,
4.96,
5.88,
6.3,
6.65,
null,
7.41
],
[
null,
3.0,
3.17,
3.42,
4.31,
4.88,
5.8,
6.24,
6.6,
null,
7.35
],
[
null,
3.1,
3.23,
3.48,
4.39,
4.91,
5.82,
6.23,
6.59,
null,
7.31
],
[
null,
3.08,
3.22,
3.51,
4.41,
4.95,
5.85,
6.26,
6.61,
null,
7.32
],
[
null,
3.05,
3.2,
3.48,
4.36,
4.91,
5.83,
6.23,
6.6,
null,
7.31
],
[
null,
3.03,
3.15,
3.41,
4.3,
4.85,
5.77,
6.18,
6.57,
null,
7.3
],
[
null,
3.02,
3.17,
3.41,
4.26,
4.8,
5.71,
6.11,
6.48,
null,
7.22
],
[
null,
3.01,
3.18,
3.45,
4.3,
4.83,
5.75,
6.13,
6.5,
null,
7.26
],
[
null,
2.97,
3.15,
3.41,
4.24,
4.8,
5.68,
6.1,
6.48,
null,
7.25
],
[
null,
2.96,
3.14,
3.38,
4.2,
4.73,
5.61,
6.05,
6.44,
null,
7.23
],
[
null,
2.96,
3.16,
3.39,
4.2,
4.72,
5.57,
6.0,
6.39,
null,
7.21
],
[
null,
3.01,
3.17,
3.4,
4.19,
4.69,
5.55,
5.97,
6.38,
null,
7.21
],
[
null,
3.02,
3.21,
3.43,
4.25,
4.76,
5.63,
6.04,
6.46,
null,
7.25
],
[
null,
2.99,
3.21,
3.44,
4.27,
4.77,
5.62,
6.04,
6.45,
null,
7.23
],
[
null,
2.96,
3.18,
3.44,
4.19,
4.68,
5.53,
5.98,
6.39,
null,
7.19
],
[
null,
2.96,
3.15,
3.36,
4.07,
4.58,
5.42,
5.88,
6.32,
null,
7.17
],
[
null,
3.0,
3.18,
3.43,
4.16,
4.64,
5.49,
5.93,
6.37,
null,
7.18
],
[
null,
2.99,
3.19,
3.47,
4.2,
4.72,
5.55,
5.98,
6.41,
null,
7.2
],
[
null,
3.0,
3.22,
3.5,
4.27,
4.79,
5.63,
6.06,
6.4,
null,
7.26
],
[
null,
2.98,
3.18,
3.44,
4.2,
4.72,
5.58,
6.02,
6.37,
null,
7.15
],
[
null,
2.99,
3.18,
3.43,
4.2,
4.7,
5.57,
6.0,
6.35,
null,
7.13
],
[
null,
3.0,
3.18,
3.44,
4.14,
4.64,
5.52,
5.98,
6.34,
null,
7.14
],
[
null,
2.97,
3.14,
3.39,
4.06,
4.54,
5.43,
5.9,
6.28,
null,
7.11
],
[
null,
2.95,
3.09,
3.3,
3.95,
4.43,
5.29,
5.75,
6.17,
null,
7.02
],
[
null,
2.99,
3.11,
3.3,
3.99,
4.44,
5.3,
5.76,
6.15,
null,
7.01
],
[
null,
3.01,
3.14,
3.32,
3.99,
4.44,
5.28,
5.7,
6.09,
null,
6.95
],
[
null,
3.0,
3.11,
3.27,
3.9,
4.33,
5.12,
5.53,
5.92,
null,
6.83
],
[
null,
3.02,
3.14,
3.32,
3.97,
4.4,
5.2,
5.64,
6.01,
null,
6.88
],
[
null,
3.01,
3.13,
3.33,
3.95,
4.36,
5.23,
5.68,
6.03,
null,
6.89
],
[
null,
3.01,
3.14,
3.32,
3.92,
4.37,
5.21,
5.67,
6.03,
null,
6.9
],
[
null,
3.03,
3.14,
3.3,
3.88,
4.31,
5.12,
5.58,
5.94,
null,
6.83
],
[
null,
3.03,
3.14,
3.31,
3.88,
4.31,
5.13,
5.58,
5.95,
null,
6.84
],
[
null,
3.0,
3.11,
3.28,
3.81,
4.24,
5.05,
5.51,
5.88,
null,
6.78
],
[
null,
2.97,
3.09,
3.24,
3.75,
4.19,
5.0,
5.46,
5.83,
null,
6.73
],
[
null,
3.07,
3.2,
3.37,
3.91,
4.37,
5.14,
5.56,
5.9,
null,
6.76
],
[
null,
3.05,
3.19,
3.39,
3.97,
4.37,
5.15,
5.54,
5.85,
null,
6.72
],
[
null,
3.05,
3.19,
3.41,
4.02,
4.46,
5.21,
5.6,
5.91,
null,
6.73
],
[
null,
3.04,
3.19,
3.4,
4.05,
4.49,
5.24,
5.65,
5.97,
null,
6.75
],
[
null,
3.03,
3.16,
3.35,
4.01,
4.47,
5.23,
5.65,
5.96,
null,
6.75
],
[
null,
3.04,
3.19,
3.39,
4.11,
4.56,
5.35,
5.8,
6.11,
null,
6.86
],
[
null,
3.06,
3.21,
3.42,
4.1,
4.61,
5.39,
5.87,
6.17,
null,
6.91
],
[
null,
3.04,
3.19,
3.38,
4.02,
4.5,
5.27,
5.76,
6.06,
null,
6.87
],
[
null,
3.04,
3.18,
3.36,
3.98,
4.44,
5.21,
5.72,
6.02,
null,
6.86
],
[
null,
3.01,
3.13,
3.3,
3.91,
4.35,
5.11,
5.63,
5.93,
null,
6.8
],
[
null,
3.03,
3.16,
3.32,
3.95,
4.38,
5.17,
5.65,
5.95,
null,
6.81
],
[
null,
2.99,
3.13,
3.29,
3.92,
4.37,
5.18,
5.65,
5.96,
null,
6.81
],
[
null,
2.98,
3.12,
3.28,
3.88,
4.31,
5.14,
5.6,
5.91,
null,
6.77
],
[
null,
2.98,
3.11,
3.31,
3.93,
4.38,
5.19,
5.64,
5.95,
null,
6.81
],
[
null,
2.97,
3.09,
3.29,
3.92,
4.38,
5.19,
5.67,
5.98,
null,
6.83
],
[
null,
3.0,
3.13,
3.33,
4.02,
4.5,
5.32,
5.78,
6.09,
null,
6.94
],
[
null,
3.0,
3.12,
3.33,
3.95,
4.44,
5.25,
5.75,
6.06,
null,
6.9
],
[
null,
2.97,
3.09,
3.29,
3.91,
4.38,
5.2,
5.71,
6.02,
null,
6.91
],
[
null,
2.95,
3.09,
3.32,
3.96,
4.42,
5.24,
5.72,
6.03,
null,
6.93
],
[
null,
2.96,
3.09,
3.32,
3.94,
4.41,
5.24,
5.74,
6.06,
null,
6.97
],
[
null,
2.97,
3.09,
3.32,
3.99,
4.48,
5.31,
5.83,
6.16,
null,
7.06
],
[
null,
2.97,
3.09,
3.3,
3.96,
4.45,
5.27,
5.79,
6.13,
null,
7.04
],
[
null,
2.98,
3.09,
3.35,
3.93,
4.39,
5.22,
5.73,
6.08,
null,
6.97
],
[
null,
2.98,
3.13,
3.33,
3.93,
4.39,
5.23,
5.72,
6.07,
null,
6.96
],
[
null,
2.96,
3.1,
3.25,
3.85,
4.3,
5.13,
5.62,
5.97,
null,
6.85
],
[
null,
2.94,
3.09,
3.23,
3.82,
4.27,
5.09,
5.57,
5.92,
null,
6.79
],
[
null,
2.91,
3.07,
3.22,
3.82,
4.27,
5.1,
5.55,
5.93,
null,
6.8
],
[
null,
2.88,
3.04,
3.19,
3.78,
4.24,
5.07,
5.51,
5.9,
null,
6.76
],
[
null,
2.9,
3.05,
3.22,
3.79,
4.24,
5.06,
5.49,
5.88,
null,
6.73
],
[
null,
2.9,
3.05,
3.21,
3.8,
4.26,
5.08,
5.51,
5.89,
null,
6.76
],
[
null,
2.87,
3.03,
3.21,
3.78,
4.25,
5.07,
5.49,
5.87,
null,
6.73
],
[
null,
2.85,
3.0,
3.19,
3.78,
4.24,
5.07,
5.49,
5.87,
null,
6.76
],
[
null,
2.86,
3.0,
3.17,
3.77,
4.23,
5.05,
5.48,
5.86,
null,
6.75
],
[
null,
2.88,
3.01,
3.17,
3.75,
4.21,
5.04,
5.46,
5.85,
null,
6.75
],
[
null,
2.9,
3.03,
3.18,
3.75,
4.21,
5.06,
5.49,
5.89,
null,
6.79
],
[
null,
2.95,
3.05,
3.23,
3.79,
4.25,
5.09,
5.53,
5.94,
null,
6.83
],
[
null,
2.97,
3.09,
3.27,
3.88,
4.33,
5.19,
5.62,
6.02,
null,
6.9
],
[
null,
2.98,
3.08,
3.27,
3.86,
4.35,
5.18,
5.64,
6.03,
null,
6.91
],
[
null,
2.96,
3.07,
3.24,
3.79,
4.28,
5.1,
5.58,
5.99,
null,
6.88
],
[
null,
2.97,
3.07,
3.26,
3.83,
4.3,
5.14,
5.63,
6.05,
null,
6.95
],
[
null,
2.93,
3.06,
3.22,
3.75,
4.23,
5.06,
5.54,
5.96,
null,
6.86
],
[
null,
2.93,
3.06,
3.23,
3.75,
4.23,
5.04,
5.49,
5.92,
null,
6.81
],
[
null,
2.95,
3.08,
3.26,
3.8,
4.27,
5.07,
5.51,
5.93,
null,
6.82
],
[
null,
2.92,
3.05,
3.22,
3.8,
4.24,
5.03,
5.52,
5.89,
null,
6.8
],
[
null,
2.93,
3.06,
3.23,
3.79,
4.25,
5.04,
5.57,
5.92,
null,
6.85
],
[
null,
2.95,
3.08,
3.22,
3.79,
4.24,
5.02,
5.53,
5.89,
null,
6.81
],
[
null,
2.95,
3.09,
3.23,
3.79,
4.25,
5.03,
5.51,
5.89,
null,
6.82
],
[
null,
2.96,
3.09,
3.26,
3.82,
4.28,
5.07,
5.57,
5.96,
null,
6.86
],
[
null,
2.99,
3.11,
3.3,
3.91,
4.35,
5.15,
5.63,
6.02,
null,
6.96
],
[
null,
3.03,
3.15,
3.33,
3.97,
4.38,
5.21,
5.67,
6.03,
null,
6.95
],
[
null,
3.08,
3.21,
3.41,
4.05,
4.47,
5.27,
5.72,
6.07,
null,
6.97
],
[
null,
3.08,
3.2,
3.4,
4.08,
4.49,
5.3,
5.78,
6.15,
null,
7.02
],
[
null,
3.03,
3.17,
3.37,
4.03,
4.45,
5.26,
5.73,
6.11,
null,
6.98
],
[
null,
3.03,
3.16,
3.39,
4.03,
4.45,
5.25,
5.71,
6.09,
null,
6.99
],
[
null,
3.07,
3.21,
3.45,
4.14,
4.53,
5.34,
5.78,
6.16,
null,
7.03
],
[
null,
3.15,
3.31,
3.52,
4.19,
4.59,
5.37,
5.79,
6.16,
null,
6.99
],
[
null,
3.14,
3.3,
3.52,
4.19,
4.59,
5.38,
5.81,
6.17,
null,
7.01
],
[
null,
3.12,
3.28,
3.51,
4.2,
4.57,
5.35,
5.76,
6.12,
null,
6.94
],
[
null,
3.13,
3.32,
3.58,
4.22,
4.6,
5.35,
5.76,
6.11,
null,
6.93
],
[
null,
3.13,
3.32,
3.62,
4.24,
4.63,
5.37,
5.8,
6.16,
null,
6.98
],
[
null,
3.14,
3.3,
3.55,
4.16,
4.54,
5.28,
5.71,
6.07,
null,
6.88
],
[
null,
3.14,
3.3,
3.56,
4.18,
4.57,
5.27,
5.69,
6.06,
null,
6.88
],
[
null,
3.1,
3.27,
3.53,
4.14,
4.52,
5.23,
5.64,
6.02,
null,
6.86
],
[
null,
3.18,
3.39,
3.67,
4.31,
4.67,
5.36,
5.75,
6.11,
null,
6.91
],
[
null,
3.2,
3.4,
3.65,
4.3,
4.66,
5.34,
5.73,
6.08,
null,
6.88
],
[
null,
3.2,
3.4,
3.66,
4.33,
4.7,
5.35,
5.74,
6.09,
null,
6.91
],
[
null,
3.18,
3.37,
3.62,
4.29,
4.67,
5.33,
5.72,
6.07,
null,
6.87
],
[
null,
3.18,
3.36,
3.62,
4.29,
4.67,
5.34,
5.72,
6.07,
null,
6.88
],
[
null,
3.12,
3.28,
3.51,
4.15,
4.53,
5.22,
5.61,
5.97,
null,
6.8
],
[
null,
3.13,
3.28,
3.5,
4.13,
4.52,
5.2,
5.6,
5.97,
null,
6.81
],
[
null,
3.12,
3.25,
3.48,
4.11,
4.49,
5.19,
5.59,
5.96,
null,
6.83
],
[
null,
3.11,
3.25,
3.47,
4.09,
4.47,
5.18,
5.59,
5.96,
null,
6.82
],
[
null,
3.1,
3.24,
3.46,
4.08,
4.47,
5.17,
5.57,
5.93,
null,
6.81
],
[
null,
3.13,
3.28,
3.52,
4.16,
4.53,
5.23,
5.62,
5.97,
null,
6.82
],
[
null,
3.17,
3.28,
3.52,
4.16,
4.51,
5.2,
5.57,
5.92,
null,
6.78
],
[
null,
3.16,
3.27,
3.51,
4.15,
4.51,
5.21,
5.58,
5.91,
null,
6.78
],
[
null,
3.19,
3.32,
3.56,
4.2,
4.54,
5.2,
5.59,
5.91,
null,
6.77
],
[
null,
3.17,
3.3,
3.54,
4.15,
4.49,
5.16,
5.55,
5.88,
null,
6.74
],
[
null,
3.15,
3.28,
3.5,
4.1,
4.45,
5.13,
5.51,
5.84,
null,
6.71
],
[
null,
3.11,
3.23,
3.47,
4.06,
4.41,
5.08,
5.47,
5.8,
null,
6.67
],
[
null,
3.1,
3.21,
3.45,
4.03,
4.37,
5.05,
5.45,
5.79,
null,
6.67
],
[
null,
3.1,
3.22,
3.45,
4.03,
4.39,
5.05,
5.46,
5.8,
null,
6.68
],
[
null,
3.06,
3.19,
3.41,
3.99,
4.37,
5.04,
5.46,
5.8,
null,
6.69
],
[
null,
3.02,
3.15,
3.34,
3.93,
4.31,
4.98,
5.42,
5.76,
null,
6.67
],
[
null,
3.12,
3.22,
3.42,
4.0,
4.38,
5.04,
5.47,
5.8,
null,
6.68
],
[
null,
3.11,
3.2,
3.43,
4.0,
4.38,
5.04,
5.47,
5.8,
null,
6.68
],
[
null,
3.09,
3.21,
3.42,
4.0,
4.35,
5.02,
5.45,
5.78,
null,
6.66
],
[
null,
3.09,
3.21,
3.41,
3.98,
4.34,
5.0,
5.42,
5.76,
null,
6.64
],
[
null,
3.1,
3.22,
3.4,
3.99,
4.33,
5.0,
5.41,
5.75,
null,
6.62
],
[
null,
3.11,
3.25,
3.44,
4.04,
4.39,
5.03,
5.43,
5.78,
null,
6.62
],
[
null,
3.08,
3.22,
3.4,
3.97,
4.32,
4.98,
5.37,
5.72,
null,
6.56
],
[
null,
3.08,
3.23,
3.41,
3.99,
4.34,
4.99,
5.37,
5.72,
null,
6.55
],
[
null,
3.08,
3.23,
3.41,
3.99,
4.34,
4.99,
5.36,
5.71,
null,
6.54
],
[
null,
3.12,
3.24,
3.42,
3.99,
4.35,
5.0,
5.37,
5.71,
null,
6.54
],
[
null,
3.13,
3.28,
3.48,
4.09,
4.42,
5.08,
5.42,
5.75,
null,
6.55
],
[
null,
3.14,
3.29,
3.52,
4.15,
4.49,
5.17,
5.53,
5.83,
null,
6.62
],
[
null,
3.16,
3.34,
3.61,
4.22,
4.59,
5.24,
5.6,
5.9,
null,
6.65
],
[
null,
3.16,
3.34,
3.62,
4.25,
4.62,
5.28,
5.66,
5.95,
null,
6.71
],
[
null,
3.17,
3.33,
3.59,
4.22,
4.58,
5.25,
5.62,
5.93,
null,
6.68
],
[
null,
3.17,
3.36,
3.61,
4.25,
4.59,
5.26,
5.62,
5.92,
null,
6.68
],
[
null,
3.15,
3.34,
3.59,
4.21,
4.57,
5.23,
5.58,
5.9,
null,
6.66
],
[
null,
3.09,
3.28,
3.51,
4.12,
4.46,
5.13,
5.47,
5.81,
null,
6.57
],
[
null,
3.1,
3.28,
3.53,
4.13,
4.5,
5.16,
5.5,
5.83,
null,
6.57
],
[
null,
3.17,
3.35,
3.58,
4.19,
4.55,
5.2,
5.55,
5.85,
null,
6.56
],
[
null,
3.15,
3.32,
3.56,
4.17,
4.55,
5.19,
5.51,
5.83,
null,
6.53
],
[
null,
3.15,
3.32,
3.57,
4.16,
4.55,
5.2,
5.54,
5.87,
null,
6.54
],
[
null,
3.12,
3.3,
3.54,
4.12,
4.5,
5.18,
5.52,
5.86,
null,
6.53
],
[
null,
3.11,
3.28,
3.52,
4.09,
4.48,
5.16,
5.52,
5.86,
null,
6.53
],
[
null,
3.11,
3.26,
3.48,
4.06,
4.45,
5.12,
5.48,
5.82,
null,
6.47
],
[
null,
3.1,
3.27,
3.51,
4.1,
4.48,
5.14,
5.49,
5.82,
null,
6.45
],
[
null,
3.09,
3.25,
3.5,
4.1,
4.47,
5.13,
5.46,
5.75,
null,
6.44
],
[
null,
3.08,
3.23,
3.47,
4.06,
4.43,
5.13,
5.47,
5.77,
null,
6.37
],
[
null,
3.09,
3.22,
3.43,
4.0,
4.38,
5.08,
5.41,
5.72,
null,
6.35
],
[
null,
3.1,
3.21,
3.42,
3.98,
4.35,
5.05,
5.36,
5.68,
null,
6.31
],
[
null,
3.08,
3.21,
3.43,
4.02,
4.39,
5.07,
5.39,
5.7,
null,
6.31
],
[
null,
3.05,
3.19,
3.41,
3.98,
4.36,
5.04,
5.37,
5.69,
null,
6.26
],
[
null,
3.05,
3.2,
3.39,
3.93,
4.29,
4.97,
5.32,
5.64,
null,
6.21
],
[
null,
3.06,
3.2,
3.39,
3.93,
4.29,
4.96,
5.28,
5.61,
null,
6.22
],
[
null,
3.08,
3.21,
3.4,
3.97,
4.3,
4.98,
5.28,
5.6,
null,
6.22
],
[
null,
3.05,
3.18,
3.36,
3.89,
4.24,
4.9,
5.21,
5.54,
null,
6.2
],
[
null,
3.04,
3.18,
3.35,
3.85,
4.2,
4.86,
5.17,
5.51,
null,
6.18
],
[
null,
3.06,
3.19,
3.34,
3.82,
4.16,
4.78,
5.1,
5.42,
null,
6.09
],
[
null,
3.09,
3.21,
3.38,
3.87,
4.2,
4.83,
5.13,
5.48,
null,
6.13
],
[
null,
3.08,
3.19,
3.35,
3.86,
4.18,
4.78,
5.1,
5.44,
null,
6.12
],
[
null,
3.08,
3.21,
3.38,
3.88,
4.2,
4.8,
5.11,
5.45,
null,
6.09
],
[
null,
3.08,
3.19,
3.36,
3.88,
4.21,
4.81,
5.12,
5.46,
null,
6.09
],
[
null,
3.05,
3.18,
3.34,
3.83,
4.16,
4.76,
5.09,
5.41,
null,
6.04
],
[
null,
3.0,
3.12,
3.25,
3.71,
4.04,
4.65,
5.01,
5.31,
null,
5.95
],
[
null,
3.01,
3.12,
3.26,
3.7,
4.01,
4.6,
4.96,
5.23,
null,
5.88
],
[
null,
3.02,
3.15,
3.32,
3.78,
4.07,
4.63,
4.96,
5.23,
null,
5.86
],
[
null,
3.04,
3.18,
3.37,
3.88,
4.18,
4.74,
5.06,
5.35,
null,
5.96
],
[
null,
3.02,
3.15,
3.32,
3.8,
4.11,
4.67,
5.01,
5.29,
null,
5.89
],
[
null,
3.04,
3.16,
3.33,
3.82,
4.13,
4.66,
4.99,
5.26,
null,
5.86
],
[
null,
3.05,
3.18,
3.41,
3.91,
4.23,
4.77,
5.12,
5.37,
null,
5.97
],
[
null,
3.02,
3.16,
3.39,
3.89,
4.19,
4.75,
5.14,
5.39,
null,
6.0
],
[
null,
3.01,
3.16,
3.39,
3.88,
4.19,
4.74,
5.12,
5.37,
null,
6.01
],
[
null,
3.01,
3.17,
3.39,
3.89,
4.19,
4.75,
5.11,
5.38,
null,
6.04
],
[
null,
3.0,
3.16,
3.41,
3.92,
4.23,
4.79,
5.13,
5.42,
null,
6.08
],
[
null,
2.98,
3.14,
3.38,
3.9,
4.21,
4.8,
5.19,
5.47,
null,
6.14
],
[
null,
2.98,
3.15,
3.39,
3.9,
4.22,
4.81,
5.17,
5.45,
null,
6.1
],
[
null,
2.99,
3.15,
3.39,
3.87,
4.22,
4.8,
5.15,
5.42,
null,
6.06
],
[
null,
2.99,
3.15,
3.39,
3.9,
4.22,
4.81,
5.14,
5.42,
null,
6.06
],
[
null,
2.96,
3.1,
3.32,
3.81,
4.12,
4.69,
5.01,
5.3,
null,
5.97
],
[
null,
2.96,
3.12,
3.32,
3.79,
4.11,
4.67,
4.98,
5.28,
null,
5.94
],
[
null,
2.99,
3.15,
3.36,
3.84,
4.19,
4.74,
5.03,
5.35,
null,
6.0
],
[
null,
2.98,
3.13,
3.39,
3.89,
4.24,
4.79,
5.11,
5.4,
null,
6.04
],
[
null,
2.98,
3.11,
3.35,
3.84,
4.18,
4.72,
5.03,
5.34,
6.12,
5.98
],
[
null,
3.02,
3.17,
3.35,
3.85,
4.16,
4.71,
5.04,
5.34,
6.1,
5.99
],
[
null,
3.06,
3.2,
3.38,
3.86,
4.18,
4.72,
5.05,
5.35,
6.12,
6.01
],
[
null,
3.04,
3.19,
3.36,
3.85,
4.16,
4.7,
5.05,
5.35,
6.12,
6.01
],
[
null,
3.05,
3.17,
3.35,
3.83,
4.15,
4.69,
5.05,
5.33,
6.11,
6.01
],
[
null,
3.05,
3.16,
3.33,
3.78,
4.09,
4.61,
4.96,
5.26,
6.02,
5.92
],
[
null,
3.12,
3.21,
3.36,
3.82,
4.11,
4.64,
4.97,
5.27,
6.02,
5.92
],
[
null,
3.1,
3.2,
3.36,
3.84,
4.11,
4.64,
4.98,
5.27,
6.03,
5.92
],
[
null,
3.08,
3.18,
3.36,
3.82,
4.09,
4.61,
4.93,
5.23,
5.98,
5.86
],
[
null,
3.08,
3.18,
3.35,
3.81,
4.06,
4.57,
4.9,
5.19,
5.91,
5.78
],
[
null,
3.13,
3.23,
3.39,
3.84,
4.14,
4.66,
4.99,
5.27,
5.99,
5.85
],
[
null,
3.13,
3.24,
3.39,
3.86,
4.14,
4.66,
5.0,
5.27,
5.98,
5.85
],
[
null,
3.11,
3.22,
3.38,
3.86,
4.13,
4.64,
4.98,
5.26,
5.97,
5.83
],
[
null,
3.12,
3.25,
3.4,
3.89,
4.19,
4.72,
5.07,
5.35,
6.06,
5.92
],
[
null,
3.11,
3.25,
3.42,
3.91,
4.23,
4.76,
5.15,
5.42,
6.13,
5.98
],
[
null,
3.14,
3.28,
3.45,
3.95,
4.26,
4.82,
5.21,
5.47,
6.17,
6.02
],
[
null,
3.16,
3.29,
3.45,
3.93,
4.25,
4.79,
5.17,
5.43,
6.14,
6.0
],
[
null,
3.15,
3.29,
3.47,
3.99,
4.28,
4.82,
5.19,
5.44,
6.15,
6.0
],
[
null,
3.11,
3.28,
3.47,
3.97,
4.29,
4.83,
5.17,
5.41,
6.11,
5.97
],
[
null,
3.1,
3.28,
3.47,
3.99,
4.3,
4.83,
5.19,
5.43,
6.12,
5.96
],
[
null,
3.18,
3.36,
3.53,
4.11,
4.42,
4.96,
5.32,
5.56,
6.19,
6.02
],
[
null,
3.19,
3.38,
3.59,
4.16,
4.49,
5.02,
5.41,
5.63,
6.28,
6.07
],
[
null,
3.16,
3.35,
3.56,
4.13,
4.46,
5.01,
5.39,
5.67,
6.32,
6.11
],
[
null,
3.15,
3.34,
3.55,
4.13,
4.47,
5.03,
5.42,
5.67,
6.34,
6.19
],
[
null,
3.13,
3.36,
3.58,
4.2,
4.53,
5.11,
5.5,
5.75,
6.4,
6.22
],
[
null,
3.17,
3.35,
3.55,
4.13,
4.47,
5.04,
5.44,
5.7,
6.38,
6.22
],
[
null,
3.18,
3.36,
3.54,
4.12,
4.47,
5.02,
5.41,
5.64,
6.31,
6.16
],
[
null,
3.19,
3.36,
3.56,
4.17,
4.51,
5.08,
5.45,
5.72,
6.38,
6.21
],
[
null,
3.18,
3.35,
3.54,
4.11,
4.45,
5.02,
5.39,
5.66,
6.33,
6.15
],
[
null,
3.18,
3.36,
3.56,
4.11,
4.49,
5.02,
5.4,
5.69,
6.36,
6.17
],
[
null,
3.16,
3.34,
3.56,
4.1,
4.45,
4.98,
5.35,
5.66,
6.35,
6.17
],
[
null,
3.16,
3.33,
3.55,
4.09,
4.42,
4.99,
5.35,
5.65,
6.35,
6.19
],
[
null,
3.18,
3.35,
3.59,
4.15,
4.49,
5.06,
5.43,
5.72,
6.4,
6.23
],
[
null,
3.2,
3.38,
3.64,
4.22,
4.58,
5.16,
5.54,
5.84,
6.5,
6.34
],
[
null,
3.21,
3.4,
3.65,
4.26,
4.61,
5.2,
5.6,
5.89,
6.53,
6.36
],
[
null,
3.19,
3.37,
3.6,
4.19,
4.55,
5.14,
5.52,
5.82,
6.46,
6.3
],
[
null,
3.19,
3.36,
3.6,
4.18,
4.54,
5.11,
5.54,
5.84,
6.47,
6.31
],
[
null,
3.18,
3.36,
3.58,
4.16,
4.52,
5.08,
5.49,
5.78,
6.43,
6.26
],
[
null,
3.2,
3.37,
3.6,
4.17,
4.49,
5.08,
5.46,
5.76,
6.4,
6.23
],
[
null,
3.21,
3.4,
3.65,
4.22,
4.55,
5.15,
5.53,
5.83,
6.46,
6.29
],
[
null,
3.19,
3.37,
3.62,
4.2,
4.54,
5.14,
5.52,
5.82,
6.44,
6.28
],
[
null,
3.18,
3.36,
3.62,
4.22,
4.55,
5.16,
5.52,
5.81,
6.42,
6.27
],
[
null,
3.18,
3.37,
3.62,
4.24,
4.59,
5.16,
5.52,
5.8,
6.39,
6.25
],
[
null,
3.18,
3.36,
3.57,
4.19,
4.5,
5.09,
5.43,
5.72,
6.31,
6.17
],
[
null,
3.16,
3.36,
3.6,
4.17,
4.52,
5.1,
5.43,
5.71,
6.31,
6.17
],
[
null,
3.15,
3.35,
3.6,
4.18,
4.5,
5.09,
5.41,
5.71,
6.31,
6.17
],
[
null,
3.13,
3.34,
3.6,
4.18,
4.49,
5.07,
5.38,
5.68,
6.29,
6.15
],
[
null,
3.12,
3.34,
3.62,
4.21,
4.53,
5.13,
5.45,
5.73,
6.34,
6.19
],
[
null,
3.12,
3.36,
3.62,
4.23,
4.56,
5.16,
5.5,
5.78,
6.4,
6.24
],
[
null,
3.11,
3.35,
3.63,
4.25,
4.59,
5.2,
5.54,
5.82,
6.46,
6.29
],
[
null,
3.1,
3.34,
3.61,
4.22,
4.58,
5.19,
5.55,
5.83,
6.46,
6.29
],
[
null,
3.1,
3.33,
3.6,
4.23,
4.58,
5.2,
5.56,
5.84,
6.47,
6.31
],
[
null,
3.09,
3.32,
3.58,
4.2,
4.54,
5.17,
5.52,
5.81,
6.44,
6.29
],
[
null,
3.15,
3.36,
3.61,
4.22,
4.58,
5.2,
5.54,
5.83,
6.45,
6.3
],
[
null,
3.14,
3.34,
3.62,
4.26,
4.58,
5.22,
5.56,
5.85,
6.47,
6.32
],
[
null,
3.13,
3.3,
3.59,
4.19,
4.5,
5.13,
5.46,
5.74,
6.37,
6.22
],
[
null,
3.13,
3.29,
3.59,
4.18,
4.49,
5.1,
5.42,
5.72,
6.36,
6.22
],
[
null,
3.13,
3.31,
3.61,
4.2,
4.5,
5.09,
5.42,
5.72,
6.36,
6.23
],
[
null,
3.13,
3.32,
3.6,
4.2,
4.49,
5.1,
5.42,
5.72,
6.36,
6.24
],
[
null,
3.08,
3.3,
3.6,
4.2,
4.51,
5.12,
5.44,
5.74,
6.38,
6.25
],
[
null,
3.04,
3.31,
3.62,
4.25,
4.58,
5.2,
5.53,
5.82,
6.47,
6.34
],
[
null,
3.07,
3.3,
3.63,
4.25,
4.58,
5.21,
5.53,
5.83,
6.48,
6.35
],
[
null,
3.16,
3.39,
3.67,
4.3,
4.66,
5.29,
5.66,
5.92,
6.54,
6.41
],
[
null,
3.15,
3.37,
3.65,
4.29,
4.63,
5.26,
5.62,
5.88,
6.51,
6.37
],
[
null,
3.14,
3.36,
3.66,
4.31,
4.66,
5.27,
5.64,
5.9,
6.54,
6.4
],
[
null,
3.12,
3.33,
3.65,
4.24,
4.59,
5.21,
5.57,
5.84,
6.48,
6.36
],
[
null,
3.07,
3.25,
3.54,
4.09,
4.43,
5.03,
5.39,
5.7,
6.35,
6.24
],
[
null,
3.06,
3.25,
3.53,
4.08,
4.41,
5.01,
5.36,
5.67,
6.35,
6.24
],
[
null,
3.04,
3.25,
3.51,
4.08,
4.41,
5.0,
5.34,
5.67,
6.34,
6.25
],
[
null,
3.02,
3.21,
3.47,
4.05,
4.36,
4.95,
5.29,
5.6,
6.26,
6.17
],
[
null,
3.01,
3.22,
3.52,
4.13,
4.47,
5.08,
5.41,
5.71,
6.36,
6.26
],
[
null,
3.03,
3.23,
3.55,
4.17,
4.51,
5.12,
5.46,
5.78,
6.41,
6.3
],
[
null,
3.04,
3.23,
3.53,
4.14,
4.48,
5.09,
5.43,
5.74,
6.38,
6.28
],
[
null,
3.03,
3.22,
3.52,
4.12,
4.47,
5.08,
5.43,
5.76,
6.4,
6.3
],
[
null,
3.01,
3.19,
3.47,
4.07,
4.41,
5.02,
5.38,
5.71,
6.36,
6.27
],
[
null,
3.01,
3.21,
3.5,
4.09,
4.44,
5.05,
5.39,
5.73,
6.36,
6.29
],
[
null,
3.01,
3.23,
3.5,
4.09,
4.44,
5.06,
5.4,
5.74,
6.38,
6.3
],
[
null,
2.99,
3.23,
3.51,
4.11,
4.46,
5.08,
5.43,
5.78,
6.4,
6.34
],
[
null,
2.98,
3.22,
3.53,
4.13,
4.46,
5.09,
5.41,
5.77,
6.39,
6.33
],
[
null,
2.98,
3.22,
3.52,
4.11,
4.45,
5.04,
5.37,
5.73,
6.33,
6.27
],
[
null,
2.99,
3.2,
3.49,
4.08,
4.4,
4.99,
5.3,
5.68,
6.27,
6.21
],
[
null,
3.05,
3.25,
3.53,
4.12,
4.44,
5.02,
5.34,
5.7,
6.29,
6.23
],
[
null,
3.1,
3.29,
3.6,
4.2,
4.53,
5.1,
5.43,
5.77,
6.37,
6.31
],
[
null,
3.13,
3.3,
3.61,
4.2,
4.53,
5.11,
5.43,
5.77,
6.36,
6.29
],
[
null,
3.2,
3.37,
3.73,
4.28,
4.6,
5.17,
5.48,
5.81,
6.38,
6.31
],
[
null,
3.3,
3.49,
3.84,
4.42,
4.75,
5.32,
5.62,
5.94,
6.49,
6.37
],
[
null,
3.31,
3.49,
3.83,
4.41,
4.78,
5.36,
5.65,
5.96,
6.5,
6.38
],
[
null,
3.32,
3.51,
3.86,
4.44,
4.82,
5.38,
5.7,
6.01,
6.55,
6.44
],
[
null,
3.32,
3.49,
3.85,
4.43,
4.8,
5.35,
5.67,
5.92,
6.52,
6.43
],
[
null,
3.33,
3.52,
3.86,
4.45,
4.83,
5.36,
5.68,
5.91,
6.53,
6.45
],
[
null,
3.33,
3.51,
3.84,
4.44,
4.8,
5.34,
5.66,
5.88,
6.5,
6.41
],
[
null,
3.34,
3.52,
3.85,
4.44,
4.81,
5.36,
5.67,
5.9,
6.53,
6.45
],
[
null,
3.34,
3.51,
3.85,
4.44,
4.8,
5.34,
5.66,
5.88,
6.53,
6.45
],
[
null,
3.34,
3.52,
3.86,
4.44,
4.8,
5.35,
5.67,
5.89,
6.53,
6.46
],
[
null,
3.35,
3.55,
3.89,
4.5,
4.88,
5.45,
5.77,
6.0,
6.62,
6.54
],
[
null,
3.36,
3.59,
3.93,
4.57,
4.94,
5.52,
5.87,
6.09,
6.7,
6.63
],
[
null,
3.4,
3.64,
3.93,
4.57,
4.93,
5.5,
5.84,
6.05,
6.67,
6.6
],
[
null,
3.46,
3.7,
4.01,
4.67,
5.02,
5.59,
5.92,
6.13,
6.73,
6.65
],
[
null,
3.44,
3.72,
4.03,
4.72,
5.07,
5.66,
6.01,
6.22,
6.82,
6.75
],
[
null,
3.44,
3.72,
4.05,
4.72,
5.08,
5.65,
6.0,
6.21,
6.8,
6.73
],
[
null,
3.47,
3.72,
4.03,
4.67,
5.04,
5.6,
5.94,
6.15,
6.75,
6.67
],
[
null,
3.58,
3.82,
4.16,
4.81,
5.19,
5.74,
6.08,
6.28,
6.86,
6.79
],
[
null,
3.55,
3.8,
4.15,
4.79,
5.2,
5.74,
6.09,
6.3,
6.87,
6.79
],
[
null,
3.56,
3.83,
4.21,
4.83,
5.21,
5.79,
6.14,
6.35,
6.92,
6.84
],
[
null,
3.62,
3.87,
4.26,
4.88,
5.29,
5.82,
6.16,
6.38,
6.92,
6.85
],
[
null,
3.61,
3.88,
4.23,
4.87,
5.25,
5.77,
6.12,
6.32,
6.87,
6.8
],
[
null,
3.63,
3.9,
4.28,
4.92,
5.31,
5.84,
6.17,
6.38,
6.92,
6.85
],
[
null,
3.61,
3.9,
4.29,
4.96,
5.33,
5.84,
6.17,
6.38,
6.93,
6.85
],
[
null,
3.57,
3.9,
4.3,
4.96,
5.36,
5.9,
6.28,
6.48,
7.02,
6.94
],
[
null,
3.58,
3.91,
4.28,
4.95,
5.34,
5.89,
6.25,
6.46,
6.99,
6.91
],
[
null,
3.66,
3.97,
4.32,
4.99,
5.39,
5.94,
6.3,
6.5,
7.01,
6.93
],
[
null,
3.66,
3.95,
4.32,
4.99,
5.38,
5.91,
6.25,
6.47,
6.99,
6.9
],
[
null,
3.61,
3.92,
4.28,
4.96,
5.34,
5.86,
6.18,
6.4,
6.9,
6.82
],
[
null,
3.55,
3.92,
4.28,
4.94,
5.34,
5.88,
6.19,
6.4,
6.91,
6.82
],
[
null,
3.57,
3.97,
4.35,
5.03,
5.42,
5.97,
6.3,
6.49,
6.99,
6.9
],
[
null,
3.7,
4.02,
4.41,
5.09,
5.49,
6.03,
6.36,
6.55,
7.03,
6.94
],
[
null,
3.6,
3.94,
4.33,
5.03,
5.38,
5.92,
6.24,
6.44,
6.94,
6.85
],
[
null,
3.54,
3.9,
4.32,
5.0,
5.38,
5.92,
6.22,
6.44,
6.95,
6.85
],
[
null,
3.53,
3.92,
4.37,
5.08,
5.5,
6.05,
6.39,
6.58,
7.09,
6.98
],
[
null,
3.57,
3.92,
4.38,
5.1,
5.52,
6.08,
6.42,
6.61,
7.1,
6.99
],
[
null,
3.57,
3.97,
4.41,
5.12,
5.55,
6.1,
6.43,
6.63,
7.09,
6.98
],
[
null,
3.59,
3.98,
4.46,
5.19,
5.62,
6.19,
6.52,
6.71,
7.17,
7.06
],
[
null,
3.57,
3.93,
4.45,
5.19,
5.65,
6.24,
6.59,
6.78,
7.23,
7.1
],
[
null,
3.56,
3.92,
4.5,
5.21,
5.66,
6.23,
6.59,
6.77,
7.23,
7.11
],
[
null,
3.82,
4.19,
4.83,
5.57,
6.06,
6.64,
7.01,
7.16,
7.55,
7.43
],
[
null,
3.75,
4.14,
4.72,
5.45,
5.93,
6.47,
6.79,
6.97,
7.41,
7.28
],
[
null,
3.67,
4.09,
4.67,
5.4,
5.88,
6.42,
6.76,
6.93,
7.38,
7.25
],
[
null,
3.61,
4.07,
4.64,
5.37,
5.84,
6.38,
6.72,
6.86,
7.33,
7.21
],
[
null,
3.65,
4.1,
4.68,
5.43,
5.91,
6.46,
6.79,
6.94,
7.4,
7.26
],
[
null,
3.68,
4.14,
4.69,
5.43,
5.9,
6.46,
6.78,
6.92,
7.37,
7.24
],
[
null,
3.64,
4.11,
4.66,
5.4,
5.84,
6.4,
6.72,
6.87,
7.32,
7.2
],
[
null,
3.64,
4.13,
4.69,
5.43,
5.91,
6.47,
6.79,
6.93,
7.39,
7.26
],
[
null,
3.66,
4.14,
4.72,
5.49,
5.94,
6.51,
6.82,
6.97,
7.43,
7.29
],
[
null,
3.68,
4.15,
4.73,
5.51,
5.95,
6.5,
6.79,
6.97,
7.42,
7.29
],
[
null,
3.84,
4.34,
4.91,
5.7,
6.15,
6.7,
6.99,
7.14,
7.55,
7.41
],
[
null,
3.83,
4.36,
4.92,
5.7,
6.14,
6.68,
6.92,
7.1,
7.5,
7.37
],
[
null,
3.83,
4.34,
4.91,
5.67,
6.1,
6.62,
6.88,
7.05,
7.46,
7.33
],
[
null,
3.83,
4.33,
4.87,
5.59,
6.0,
6.49,
6.71,
6.91,
7.33,
7.22
],
[
null,
3.84,
4.36,
4.9,
5.62,
6.04,
6.53,
6.73,
6.93,
7.34,
7.21
],
[
null,
3.94,
4.4,
4.91,
5.61,
6.01,
6.48,
6.68,
6.86,
7.26,
7.14
],
[
null,
3.97,
4.41,
4.93,
5.59,
5.99,
6.46,
6.66,
6.86,
7.24,
7.12
],
[
null,
3.98,
4.45,
5.05,
5.75,
6.14,
6.65,
6.86,
7.04,
7.41,
7.29
],
[
null,
3.97,
4.45,
5.07,
5.73,
6.16,
6.64,
6.88,
7.06,
7.44,
7.31
],
[
null,
4.1,
4.57,
5.12,
5.81,
6.2,
6.69,
6.93,
7.09,
7.45,
7.33
],
[
null,
4.12,
4.62,
5.19,
5.86,
6.26,
6.73,
6.96,
7.13,
7.48,
7.35
],
[
null,
4.15,
4.63,
5.22,
5.89,
6.28,
6.74,
6.97,
7.14,
7.49,
7.35
],
[
null,
4.13,
4.62,
5.21,
5.88,
6.25,
6.7,
6.94,
7.11,
7.46,
7.33
],
[
null,
4.3,
4.82,
5.4,
6.12,
6.5,
6.95,
7.19,
7.35,
7.67,
7.53
],
[
null,
4.44,
5.02,
5.55,
6.26,
6.64,
7.
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment