Skip to content

Instantly share code, notes, and snippets.

@Jverma
Created May 21, 2016 01:39
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 Jverma/bdf5fa7d4c70590a36d12d14234e6f02 to your computer and use it in GitHub Desktop.
Save Jverma/bdf5fa7d4c70590a36d12d14234e6f02 to your computer and use it in GitHub Desktop.
Visa Refused

Visa Refused

d3.hive={},d3.hive.link=function(){function t(t,s){var u,h=a(r,this,t,s),i=a(n,this,t,s);h.a>i.a&&(u=i,i=h,h=u),i.a-h.a>Math.PI&&(h.a+=2*Math.PI);var e=h.a+(i.a-h.a)/3,c=i.a-(i.a-h.a)/3;return h.r0-h.r1||i.r0-i.r1?"M"+Math.cos(h.a)*h.r0+","+Math.sin(h.a)*h.r0+"L"+Math.cos(h.a)*h.r1+","+Math.sin(h.a)*h.r1+"C"+Math.cos(e)*h.r1+","+Math.sin(e)*h.r1+" "+Math.cos(c)*i.r1+","+Math.sin(c)*i.r1+" "+Math.cos(i.a)*i.r1+","+Math.sin(i.a)*i.r1+"L"+Math.cos(i.a)*i.r0+","+Math.sin(i.a)*i.r0+"C"+Math.cos(c)*i.r0+","+Math.sin(c)*i.r0+" "+Math.cos(e)*h.r0+","+Math.sin(e)*h.r0+" "+Math.cos(h.a)*h.r0+","+Math.sin(h.a)*h.r0:"M"+Math.cos(h.a)*h.r0+","+Math.sin(h.a)*h.r0+"C"+Math.cos(e)*h.r1+","+Math.sin(e)*h.r1+" "+Math.cos(c)*i.r1+","+Math.sin(c)*i.r1+" "+Math.cos(i.a)*i.r1+","+Math.sin(i.a)*i.r1}function a(t,a,r,n){var e=t.call(a,r,n),c=+("function"==typeof s?s.call(a,e,n):s)+i,o=+("function"==typeof u?u.call(a,e,n):u),M=u===h?o:+("function"==typeof h?h.call(a,e,n):h);return{r0:o,r1:M,a:c}}var r=function(t){return t.source},n=function(t){return t.target},s=function(t){return t.angle},u=function(t){return t.radius},h=u,i=-Math.PI/2;return t.source=function(a){return arguments.length?(r=a,t):r},t.target=function(a){return arguments.length?(n=a,t):n},t.angle=function(a){return arguments.length?(s=a,t):s},t.radius=function(a){return arguments.length?(u=h=a,t):u},t.startRadius=function(a){return arguments.length?(u=a,t):u},t.endRadius=function(a){return arguments.length?(h=a,t):h},t};
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hive Link Plot</title>
<style type="text/css">
.link{
fill: none;
stroke: #000;
stroke-width: 1.5px;
stroke-opacity: .2;
}
.axis {
stroke: #000;
stroke-width: 1.5px;
}
.link.active {
stroke-width: 3px;
stroke-opacity: 1;
}
.node {
stroke: #000;
}
.node.active {
stroke: red;
stroke-width: 3px;
stroke-opacity: 1;
}
</style>
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3-legend/1.10.0/d3-legend.js"></script>
<script type="text/javascript" src="d3.hive.min.js"></script>
<script type="text/javascript">
var width = 1260;
var height = 1000;
var outerRadius = 400;
var innerRadius = 10;
var continents = {'Asia': 0, 'Africa': 1, 'Europe': 2, 'North America': 3, 'South America': 4, "Central America and the Antilles": 5, "Oceania": 6};
var cont_lengths = [{'cont': 'Asia', 'count': 52}, {'cont':'Africa', 'count': 54}, {'cont':'Europe', 'count': 50}, {'cont':'North America', 'count' : 13}, {'cont':'South America', 'count': 13}, {'cont':"Central America and the Antilles", 'count': 22}, {'cont': "Oceania", 'count': 19}];
var angle = d3.scale.ordinal()
.domain(d3.range(8))
.rangePoints([0,2 * Math.PI]);
var radius = d3.scale.linear()
.range([innerRadius, outerRadius]);
var color = d3.scale.category20()
.domain(["Asia", "Africa", "North America", "Europe", "South America", "Central America and the Antilles", "Oceania"]);
var svg = d3.select("body").append("svg")
.attr("class", "svg")
.attr("width", width)
.attr("height", height)
.append("g")
.attr("transform", "translate(" + width/2 + "," + height/2 + ")");
svg.selectAll(".axis")
.data(d3.range(7))
.enter().append("line")
.attr("class", "axis")
.attr("transform", function(d){ return "rotate(" + degrees(angle(d)) + ")";})
.attr("x1", radius.range()[0])
.attr("x2", radius.range()[1]);
svg.append("g")
.attr("class", "legendOrdinal")
.attr("transform", "translate(500, -200)");
var legendOrdinal = d3.legend.color()
.scale(color);
svg.select(".legendOrdinal")
.call(legendOrdinal);
d3.json("visa_refused1.json", function(error, graph){
nodes = graph.nodes;
links = graph.links;
svg.selectAll(".link")
.data(links)
.enter().append("path")
.attr("class", "link")
.attr("d", d3.hive.link()
.angle(function(d) { return angle(continents[d.continent]); })
.radius(function(d) { return radius(d.y); }))
.style("stroke", function(d) { return color(d.source.continent); })
.on("mouseover", linkMouseover)
.on("mouseout", mouseout)
.append("title")
.text(function(d){ return d.source.name + ' --> ' + d.target.name})
;
svg.selectAll(".node")
.data(nodes)
.enter().append("circle")
.attr("class", "node")
.attr("transform", function(d) { return "rotate(" + degrees(angle(continents[d.continent])) + ")"; })
.attr("cx", function(d) { return radius(d.y); })
.attr("r", 5)
.style("fill", function(d) { return color(d.continent); })
.on("mouseover", nodeMouseover)
.on("mouseout", mouseout)
.append("title")
.text(function(d){ return d.name; })
;
function linkMouseover(d) {
svg.selectAll(".link").classed("active", function(p) { return p === d; });
svg.selectAll(".node").classed("active", function(x) { return x.name === d.source.name || x.name === d.target.name; });
}
// Highlight the node and connected links on mouseover.
function nodeMouseover(d) {
svg.selectAll(".link").classed("active", function(p) { return p.source.name === d.name || p.target.name === d.name; });
d3.select(this).classed("active", true);
}
// Clear any highlighted nodes or links.
function mouseout() {
svg.selectAll(".active").classed("active", false);
}
});
function degrees(radians) {
return radians / Math.PI * 180 - 90;
}
</script>
</body>
</html>
{"nodes": [{"y": 0.17307692307692307, "name": "East Timor", "continent": "Asia"}, {"y": 0.38461538461538464, "name": "Canada", "continent": "North America"}, {"y": 0.7407407407407407, "name": "Sao Tome and Principe", "continent": "Africa"}, {"y": 0.9230769230769231, "name": "Turkmenistan", "continent": "Asia"}, {"y": 0.52, "name": "Lithuania", "continent": "Europe"}, {"y": 0.15384615384615385, "name": "Cambodia", "continent": "Asia"}, {"y": 0.8181818181818182, "name": "Saint Kitts and Nevis", "continent": "Central America and the Antilles"}, {"y": 0.3333333333333333, "name": "Ethiopia", "continent": "Africa"}, {"y": 0.15384615384615385, "name": "Aruba", "continent": "North America"}, {"y": 0.8888888888888888, "name": "Swaziland", "continent": "Africa"}, {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}, {"y": 0.18181818181818182, "name": "Belize", "continent": "Central America and the Antilles"}, {"y": 0.07692307692307693, "name": "Argentina", "continent": "South America"}, {"y": 0.15384615384615385, "name": "Bolivia", "continent": "South America"}, {"y": 0.12962962962962962, "name": "Cameroon", "continent": "Africa"}, {"y": 0.09259259259259259, "name": "Burkina Faso", "continent": "Africa"}, {"y": 0.3888888888888889, "name": "Ghana", "continent": "Africa"}, {"y": 0.7884615384615384, "name": "Saudi Arabia", "continent": "Asia"}, {"y": 0.05263157894736842, "name": "American Samoa", "continent": "Oceania"}, {"y": 0.6153846153846154, "name": "Northern Mariana Islands", "continent": "Asia"}, {"y": 0.86, "name": "Slovenia", "continent": "Europe"}, {"y": 0.5, "name": "Guatemala", "continent": "Central America and the Antilles"}, {"y": 0.12, "name": "Bosnia and Herzegovina", "continent": "Europe"}, {"y": 0.40384615384615385, "name": "Kuwait", "continent": "Asia"}, {"y": 0.36538461538461536, "name": "Jordan", "continent": "Asia"}, {"y": 0.88, "name": "Spain", "continent": "Europe"}, {"y": 0.48148148148148145, "name": "Liberia", "continent": "Africa"}, {"y": 0.68, "name": "Netherlands", "continent": "Europe"}, {"y": 0.6363636363636364, "name": "Jamaica", "continent": "Central America and the Antilles"}, {"y": 0.6346153846153846, "name": "Oman", "continent": "Asia"}, {"y": 0.9074074074074074, "name": "Tanzania", "continent": "Africa"}, {"y": 0.22727272727272727, "name": "Costa Rica", "continent": "Central America and the Antilles"}, {"y": 0.9230769230769231, "name": "United States Virgin Islands", "continent": "North America"}, {"y": 0.35185185185185186, "name": "Gabon", "continent": "Africa"}, {"y": 0.5789473684210527, "name": "Niue", "continent": "Oceania"}, {"y": 0.64, "name": "Monaco", "continent": "Europe"}, {"y": 0.09090909090909091, "name": "Bahamas", "continent": "Central America and the Antilles"}, {"y": 0.5263157894736842, "name": "New Zealand", "continent": "Oceania"}, {"y": 1.0, "name": "Yemen", "continent": "Asia"}, {"y": 0.6538461538461539, "name": "Pakistan", "continent": "Asia"}, {"y": 0.02, "name": "Albania", "continent": "Europe"}, {"y": 0.7894736842105263, "name": "Samoa", "continent": "Oceania"}, {"y": 0.4807692307692308, "name": "Macau", "continent": "Asia"}, {"y": 0.631578947368421, "name": "Norfolk Island", "continent": "Oceania"}, {"y": 0.9423076923076923, "name": "United Arab Emirates", "continent": "Asia"}, {"y": 0.21153846153846154, "name": "Guam", "continent": "Asia"}, {"y": 0.9230769230769231, "name": "Uruguay", "continent": "South America"}, {"y": 0.25, "name": "India", "continent": "Asia"}, {"y": 0.057692307692307696, "name": "Azerbaijan", "continent": "Asia"}, {"y": 0.46296296296296297, "name": "Lesotho", "continent": "Africa"}, {"y": 0.9090909090909091, "name": "Saint Vincent and the Grenadines", "continent": "Central America and the Antilles"}, {"y": 0.4444444444444444, "name": "Kenya", "continent": "Africa"}, {"y": 0.8269230769230769, "name": "South Korea", "continent": "Asia"}, {"y": 0.8846153846153846, "name": "Tajikistan", "continent": "Asia"}, {"y": 0.94, "name": "Turkey", "continent": "Europe"}, {"y": 0.019230769230769232, "name": "Afghanistan", "continent": "Asia"}, {"y": 0.2, "name": "Czech Republic", "continent": "Europe"}, {"y": 0.5740740740740741, "name": "Mauritania", "continent": "Africa"}, {"y": 0.8421052631578947, "name": "Solomon Islands", "continent": "Oceania"}, {"y": 1.0, "name": "Turks and Caicos Islands", "continent": "Central America and the Antilles"}, {"y": 0.8636363636363636, "name": "Saint Lucia", "continent": "Central America and the Antilles"}, {"y": 0.8, "name": "San Marino", "continent": "Europe"}, {"y": 0.19230769230769232, "name": "French Polynesia", "continent": "Asia"}, {"y": 0.28, "name": "France", "continent": "Europe"}, {"y": 0.7222222222222222, "name": "Rwanda", "continent": "Africa"}, {"y": 0.84, "name": "Slovakia", "continent": "Europe"}, {"y": 0.8148148148148148, "name": "Somalia", "continent": "Africa"}, {"y": 0.7692307692307693, "name": "Peru", "continent": "South America"}, {"y": 1.0, "name": "Vanuatu", "continent": "Oceania"}, {"y": 0.42105263157894735, "name": "Nauru", "continent": "Oceania"}, {"y": 0.7, "name": "Norway", "continent": "Europe"}, {"y": 0.5370370370370371, "name": "Malawi", "continent": "Africa"}, {"y": 0.15789473684210525, "name": "Cook Islands", "continent": "Oceania"}, {"y": 0.05555555555555555, "name": "Benin", "continent": "Africa"}, {"y": 0.8076923076923077, "name": "Singapore", "continent": "Asia"}, {"y": 0.66, "name": "Montenegro", "continent": "Europe"}, {"y": 0.7037037037037037, "name": "Republic of the Congo", "continent": "Africa"}, {"y": 0.9259259259259259, "name": "Togo", "continent": "Africa"}, {"y": 0.038461538461538464, "name": "Armenia", "continent": "Asia"}, {"y": 0.36363636363636365, "name": "Dominican Republic", "continent": "Central America and the Antilles"}, {"y": 0.5384615384615384, "name": "Mongolia", "continent": "Asia"}, {"y": 0.96, "name": "Ukraine", "continent": "Europe"}, {"y": 0.07692307692307693, "name": "Bahrain", "continent": "Asia"}, {"y": 0.8947368421052632, "name": "Tonga", "continent": "Oceania"}, {"y": 0.2692307692307692, "name": "Indonesia", "continent": "Asia"}, {"y": 0.5, "name": "Libya", "continent": "Africa"}, {"y": 0.2222222222222222, "name": "Cote dIvoire", "continent": "Africa"}, {"y": 0.26, "name": "Finland", "continent": "Europe"}, {"y": 0.16666666666666666, "name": "Central African Republic", "continent": "Africa"}, {"y": 0.5925925925925926, "name": "Mauritius", "continent": "Africa"}, {"y": 0.5, "name": "Liechtenstein", "continent": "Europe"}, {"y": 0.10526315789473684, "name": "Australia", "continent": "Oceania"}, {"y": 0.3076923076923077, "name": "British Virgin Islands", "continent": "North America"}, {"y": 0.5555555555555556, "name": "Mali", "continent": "Africa"}, {"y": 1.0, "name": "Vatican City", "continent": "Europe"}, {"y": 0.7692307692307693, "name": "Russia", "continent": "Asia"}, {"y": 0.14, "name": "Bulgaria", "continent": "Europe"}, {"y": 1.0, "name": "United States", "continent": "North America"}, {"y": 0.78, "name": "Romania", "continent": "Europe"}, {"y": 0.037037037037037035, "name": "Angola", "continent": "Africa"}, {"y": 0.18518518518518517, "name": "Chad", "continent": "Africa"}, {"y": 0.8333333333333334, "name": "South Africa", "continent": "Africa"}, {"y": 0.18, "name": "Cyprus", "continent": "Europe"}, {"y": 0.9, "name": "Sweden", "continent": "Europe"}, {"y": 0.5, "name": "Malaysia", "continent": "Asia"}, {"y": 0.06, "name": "Austria", "continent": "Europe"}, {"y": 0.9807692307692307, "name": "Vietnam", "continent": "Asia"}, {"y": 0.6296296296296297, "name": "Mozambique", "continent": "Africa"}, {"y": 0.9629629629629629, "name": "Uganda", "continent": "Africa"}, {"y": 0.38, "name": "Hungary", "continent": "Europe"}, {"y": 0.6666666666666666, "name": "Niger", "continent": "Africa"}, {"y": 0.6923076923076923, "name": "Peoples Republic of China", "continent": "Asia"}, {"y": 0.23076923076923078, "name": "Brazil", "continent": "South America"}, {"y": 0.4074074074074074, "name": "Guinea", "continent": "Africa"}, {"y": 0.7272727272727273, "name": "Panama", "continent": "Central America and the Antilles"}, {"y": 0.6153846153846154, "name": "Guyana", "continent": "South America"}, {"y": 0.7307692307692307, "name": "Qatar", "continent": "Asia"}, {"y": 0.54, "name": "Luxembourg", "continent": "Europe"}, {"y": 0.14814814814814814, "name": "Cape Verde", "continent": "Africa"}, {"y": 0.04, "name": "Andorra", "continent": "Europe"}, {"y": 0.34, "name": "Gibraltar", "continent": "Europe"}, {"y": 0.42, "name": "Ireland", "continent": "Europe"}, {"y": 0.6842105263157895, "name": "Palau", "continent": "Oceania"}, {"y": 0.6851851851851852, "name": "Nigeria", "continent": "Africa"}, {"y": 0.46153846153846156, "name": "Ecuador", "continent": "South America"}, {"y": 0.09615384615384616, "name": "Bangladesh", "continent": "Asia"}, {"y": 0.1346153846153846, "name": "Brunei", "continent": "Asia"}, {"y": 0.08, "name": "Belarus", "continent": "Europe"}, {"y": 0.28846153846153844, "name": "Iran", "continent": "Asia"}, {"y": 0.018518518518518517, "name": "Algeria", "continent": "Africa"}, {"y": 0.4090909090909091, "name": "El Salvador", "continent": "Central America and the Antilles"}, {"y": 0.9473684210526315, "name": "Tuvalu", "continent": "Oceania"}, {"y": 0.3157894736842105, "name": "Marshall Islands", "continent": "Oceania"}, {"y": 0.3076923076923077, "name": "Chile", "continent": "South America"}, {"y": 0.7727272727272727, "name": "Puerto Rico", "continent": "Central America and the Antilles"}, {"y": 0.1, "name": "Belgium", "continent": "Europe"}, {"y": 0.2631578947368421, "name": "Kiribati", "continent": "Oceania"}, {"y": 0.5454545454545454, "name": "Haiti", "continent": "Central America and the Antilles"}, {"y": 0.3076923076923077, "name": "Iraq", "continent": "Asia"}, {"y": 0.23076923076923078, "name": "Hong Kong", "continent": "Asia"}, {"y": 0.7962962962962963, "name": "Sierra Leone", "continent": "Africa"}, {"y": 0.3, "name": "Georgia", "continent": "Europe"}, {"y": 0.22, "name": "Denmark", "continent": "Europe"}, {"y": 0.72, "name": "Poland", "continent": "Europe"}, {"y": 0.62, "name": "Moldova", "continent": "Europe"}, {"y": 0.5384615384615384, "name": "French Guiana", "continent": "South America"}, {"y": 0.6111111111111112, "name": "Morocco", "continent": "Africa"}, {"y": 0.16, "name": "Croatia", "continent": "Europe"}, {"y": 0.58, "name": "Malta", "continent": "Europe"}, {"y": 0.42592592592592593, "name": "Guinea-Bissau", "continent": "Africa"}, {"y": 0.9038461538461539, "name": "Thailand", "continent": "Asia"}, {"y": 0.92, "name": "Switzerland", "continent": "Europe"}, {"y": 0.45454545454545453, "name": "Grenada", "continent": "Central America and the Antilles"}, {"y": 0.7777777777777778, "name": "Seychelles", "continent": "Africa"}, {"y": 0.74, "name": "Portugal", "continent": "Europe"}, {"y": 0.24, "name": "Estonia", "continent": "Europe"}, {"y": 0.46, "name": "Kosovo", "continent": "Europe"}, {"y": 0.6923076923076923, "name": "Mexico", "continent": "North America"}, {"y": 0.46153846153846156, "name": "Lebanon", "continent": "Asia"}, {"y": 0.9615384615384616, "name": "Uzbekistan", "continent": "Asia"}, {"y": 0.9444444444444444, "name": "Tunisia", "continent": "Africa"}, {"y": 0.25925925925925924, "name": "Djibouti", "continent": "Africa"}, {"y": 0.23076923076923078, "name": "Bermuda", "continent": "North America"}, {"y": 0.045454545454545456, "name": "Antigua and Barbuda", "continent": "Central America and the Antilles"}, {"y": 0.3181818181818182, "name": "Dominica", "continent": "Central America and the Antilles"}, {"y": 0.38461538461538464, "name": "Colombia", "continent": "South America"}, {"y": 0.76, "name": "Reunion", "continent": "Europe"}, {"y": 0.1111111111111111, "name": "Burundi", "continent": "Africa"}, {"y": 0.21052631578947367, "name": "Fiji", "continent": "Oceania"}, {"y": 0.13636363636363635, "name": "Barbados", "continent": "Central America and the Antilles"}, {"y": 0.5185185185185185, "name": "Madagascar", "continent": "Africa"}, {"y": 0.44, "name": "Italy", "continent": "Europe"}, {"y": 0.5384615384615384, "name": "Curacao", "continent": "North America"}, {"y": 0.11538461538461539, "name": "Bhutan", "continent": "Asia"}, {"y": 0.8703703703703703, "name": "Sudan", "continent": "Africa"}, {"y": 0.4423076923076923, "name": "Laos", "continent": "Asia"}, {"y": 0.3684210526315789, "name": "Micronesia", "continent": "Oceania"}, {"y": 0.24074074074074073, "name": "Democratic Republic of the Congo", "continent": "Africa"}, {"y": 0.5192307692307693, "name": "Maldives", "continent": "Asia"}, {"y": 0.8461538461538461, "name": "Suriname", "continent": "South America"}, {"y": 0.46153846153846156, "name": "Cayman Islands", "continent": "North America"}, {"y": 0.07692307692307693, "name": "Anguilla", "continent": "North America"}, {"y": 1.0, "name": "Venezuela", "continent": "South America"}, {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, {"y": 0.4, "name": "Iceland", "continent": "Europe"}, {"y": 0.9814814814814815, "name": "Zambia", "continent": "Africa"}, {"y": 0.7592592592592593, "name": "Senegal", "continent": "Africa"}, {"y": 0.7368421052631579, "name": "Papua New Guinea", "continent": "Oceania"}, {"y": 0.9545454545454546, "name": "Trinidad and Tobago", "continent": "Central America and the Antilles"}, {"y": 1.0, "name": "Zimbabwe", "continent": "Africa"}, {"y": 0.32, "name": "Germany", "continent": "Europe"}, {"y": 0.37037037037037035, "name": "Gambia", "continent": "Africa"}, {"y": 0.6153846153846154, "name": "French West Indies", "continent": "North America"}, {"y": 0.38461538461538464, "name": "Kazakhstan", "continent": "Asia"}, {"y": 0.7115384615384616, "name": "Philippines", "continent": "Asia"}, {"y": 0.3148148148148148, "name": "Eritrea", "continent": "Africa"}, {"y": 0.4230769230769231, "name": "Kyrgyzstan", "continent": "Asia"}, {"y": 0.6, "name": "Mayotte", "continent": "Europe"}, {"y": 0.7692307692307693, "name": "Montserrat", "continent": "North America"}, {"y": 0.47368421052631576, "name": "New Caledonia", "continent": "Oceania"}, {"y": 0.56, "name": "Macedonia", "continent": "Europe"}, {"y": 0.5961538461538461, "name": "North Korea", "continent": "Asia"}, {"y": 0.6923076923076923, "name": "Paraguay", "continent": "South America"}, {"y": 0.48, "name": "Latvia", "continent": "Europe"}, {"y": 0.8518518518518519, "name": "South Sudan", "continent": "Africa"}, {"y": 0.34615384615384615, "name": "Japan", "continent": "Asia"}, {"y": 0.8653846153846154, "name": "Syria", "continent": "Asia"}, {"y": 0.5769230769230769, "name": "Nepal", "continent": "Asia"}, {"y": 0.5909090909090909, "name": "Honduras", "continent": "Central America and the Antilles"}, {"y": 0.5576923076923077, "name": "Myanmar", "continent": "Asia"}, {"y": 0.2962962962962963, "name": "Equatorial Guinea", "continent": "Africa"}, {"y": 0.2777777777777778, "name": "Egypt", "continent": "Africa"}, {"y": 0.6818181818181818, "name": "Nicaragua", "continent": "Central America and the Antilles"}, {"y": 0.2727272727272727, "name": "Cuba", "continent": "Central America and the Antilles"}, {"y": 0.82, "name": "Serbia", "continent": "Europe"}, {"y": 0.07407407407407407, "name": "Botswana", "continent": "Africa"}, {"y": 0.98, "name": "United Kingdom", "continent": "Europe"}, {"y": 0.36, "name": "Greece", "continent": "Europe"}, {"y": 0.8461538461538461, "name": "Sri Lanka", "continent": "Asia"}, {"y": 0.6481481481481481, "name": "Namibia", "continent": "Africa"}, {"y": 0.75, "name": "Republic of China Taiwan", "continent": "Asia"}, {"y": 0.2037037037037037, "name": "Comoros", "continent": "Africa"}], "links": [{"notes": "", "source": {"y": 0.019230769230769232, "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.02, "name": "Albania", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.018518518518518517, "name": "Algeria", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.05263157894736842, "name": "American Samoa", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.04, "name": "Andorra", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.037037037037037035, "name": "Angola", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.07692307692307693, "name": "Anguilla", "continent": "North America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.045454545454545456, "name": "Antigua and Barbuda", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.07692307692307693, "name": "Argentina", "continent": "South America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.038461538461538464, "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.038461538461538464, "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.057692307692307696, "name": "Azerbaijan", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.15384615384615385, "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.10526315789473684, "name": "Australia", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.06, "name": "Austria", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.057692307692307696, "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.09090909090909091, "name": "Bahamas", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.07692307692307693, "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.09615384615384616, "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.13636363636363635, "name": "Barbados", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.08, "name": "Belarus", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.1, "name": "Belgium", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.18181818181818182, "name": "Belize", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.05555555555555555, "name": "Benin", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.23076923076923078, "name": "Bermuda", "continent": "North America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.11538461538461539, "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.15384615384615385, "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.12, "name": "Bosnia and Herzegovina", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.07407407407407407, "name": "Botswana", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.23076923076923078, "name": "Brazil", "continent": "South America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3076923076923077, "name": "British Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.1346153846153846, "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.14, "name": "Bulgaria", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.09259259259259259, "name": "Burkina Faso", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.1111111111111111, "name": "Burundi", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.15384615384615385, "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.12962962962962962, "name": "Cameroon", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.38461538461538464, "name": "Canada", "continent": "North America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.14814814814814814, "name": "Cape Verde", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.46153846153846156, "name": "Cayman Islands", "continent": "North America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.16666666666666666, "name": "Central African Republic", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.18518518518518517, "name": "Chad", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3076923076923077, "name": "Chile", "continent": "South America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.38461538461538464, "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.2037037037037037, "name": "Comoros", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.15789473684210525, "name": "Cook Islands", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.22727272727272727, "name": "Costa Rica", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.2222222222222222, "name": "Cote dIvoire", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.16, "name": "Croatia", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.2727272727272727, "name": "Cuba", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5384615384615384, "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.18, "name": "Cyprus", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.2, "name": "Czech Republic", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.24074074074074073, "name": "Democratic Republic of the Congo", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.22, "name": "Denmark", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.25925925925925924, "name": "Djibouti", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3181818181818182, "name": "Dominica", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.36363636363636365, "name": "Dominican Republic", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.17307692307692307, "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.46153846153846156, "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.2777777777777778, "name": "Egypt", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.4090909090909091, "name": "El Salvador", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.2962962962962963, "name": "Equatorial Guinea", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3148148148148148, "name": "Eritrea", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3148148148148148, "name": "Eritrea", "continent": "Africa"}, "term": "", "target": {"y": 0.25925925925925924, "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.24, "name": "Estonia", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3333333333333333, "name": "Ethiopia", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.21052631578947367, "name": "Fiji", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.26, "name": "Finland", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.28, "name": "France", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5384615384615384, "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.19230769230769232, "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6153846153846154, "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.35185185185185186, "name": "Gabon", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.37037037037037035, "name": "Gambia", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3, "name": "Georgia", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.32, "name": "Germany", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3888888888888889, "name": "Ghana", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.34, "name": "Gibraltar", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.36, "name": "Greece", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.45454545454545453, "name": "Grenada", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.21153846153846154, "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5, "name": "Guatemala", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.4074074074074074, "name": "Guinea", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.42592592592592593, "name": "Guinea-Bissau", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6153846153846154, "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5454545454545454, "name": "Haiti", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5909090909090909, "name": "Honduras", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.23076923076923078, "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.38, "name": "Hungary", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.4, "name": "Iceland", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.25, "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.2692307692307692, "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.28846153846153844, "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.28846153846153844, "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "name": "Libya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.42, "name": "Ireland", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.9423076923076923, "name": "United Arab Emirates", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.6538461538461539, "name": "Pakistan", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.09615384615384616, "name": "Bangladesh", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.1346153846153846, "name": "Brunei", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.28846153846153844, "name": "Iran", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.8703703703703703, "name": "Sudan", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.018518518518518517, "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.40384615384615385, "name": "Kuwait", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.46153846153846156, "name": "Lebanon", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "name": "Libya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "name": "Malaysia", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.6346153846153846, "name": "Oman", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.7884615384615384, "name": "Saudi Arabia", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.8653846153846154, "name": "Syria", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3269230769230769, "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 1.0, "name": "Yemen", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.44, "name": "Italy", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6363636363636364, "name": "Jamaica", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.34615384615384615, "name": "Japan", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.36538461538461536, "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.38461538461538464, "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.4444444444444444, "name": "Kenya", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.2631578947368421, "name": "Kiribati", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.46, "name": "Kosovo", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.46, "name": "Kosovo", "continent": "Europe"}, "term": "", "target": {"y": 0.038461538461538464, "name": "Armenia", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.46, "name": "Kosovo", "continent": "Europe"}, "term": "", "target": {"y": 0.23076923076923078, "name": "Brazil", "continent": "South America"}}, {"notes": "", "source": {"y": 0.46, "name": "Kosovo", "continent": "Europe"}, "term": "", "target": {"y": 0.2727272727272727, "name": "Cuba", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.40384615384615385, "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.4230769230769231, "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.4423076923076923, "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.48, "name": "Latvia", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.46153846153846156, "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.46296296296296297, "name": "Lesotho", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.48148148148148145, "name": "Liberia", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5, "name": "Libya", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5, "name": "Liechtenstein", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.52, "name": "Lithuania", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.54, "name": "Luxembourg", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.4807692307692308, "name": "Macau", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.56, "name": "Macedonia", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5185185185185185, "name": "Madagascar", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5370370370370371, "name": "Malawi", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5, "name": "Malaysia", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5192307692307693, "name": "Maldives", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5555555555555556, "name": "Mali", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.58, "name": "Malta", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3157894736842105, "name": "Marshall Islands", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5740740740740741, "name": "Mauritania", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5925925925925926, "name": "Mauritius", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6, "name": "Mayotte", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6923076923076923, "name": "Mexico", "continent": "North America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.3684210526315789, "name": "Micronesia", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.62, "name": "Moldova", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.64, "name": "Monaco", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5384615384615384, "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.66, "name": "Montenegro", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.7692307692307693, "name": "Montserrat", "continent": "North America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6111111111111112, "name": "Morocco", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6296296296296297, "name": "Mozambique", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5576923076923077, "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6481481481481481, "name": "Namibia", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.42105263157894735, "name": "Nauru", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5769230769230769, "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.68, "name": "Netherlands", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.47368421052631576, "name": "New Caledonia", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5263157894736842, "name": "New Zealand", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6818181818181818, "name": "Nicaragua", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6666666666666666, "name": "Niger", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6851851851851852, "name": "Nigeria", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5789473684210527, "name": "Niue", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.631578947368421, "name": "Norfolk Island", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.5961538461538461, "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6153846153846154, "name": "Northern Mariana Islands", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.7, "name": "Norway", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6346153846153846, "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6538461538461539, "name": "Pakistan", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6842105263157895, "name": "Palau", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.46153846153846156, "name": "Lebanon", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.5185185185185185, "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7272727272727273, "name": "Panama", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.7368421052631579, "name": "Papua New Guinea", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6923076923076923, "name": "Paraguay", "continent": "South America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.6923076923076923, "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.7692307692307693, "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.7115384615384616, "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.72, "name": "Poland", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.74, "name": "Portugal", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.7727272727272727, "name": "Puerto Rico", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.7307692307692307, "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.75, "name": "Republic of China Taiwan", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.75, "name": "Republic of China Taiwan", "continent": "Asia"}, "term": "", "target": {"y": 0.23076923076923078, "name": "Brazil", "continent": "South America"}}, {"notes": "", "source": {"y": 0.7037037037037037, "name": "Republic of the Congo", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.76, "name": "Reunion", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.78, "name": "Romania", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.7692307692307693, "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.7222222222222222, "name": "Rwanda", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.8181818181818182, "name": "Saint Kitts and Nevis", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.8636363636363636, "name": "Saint Lucia", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.9090909090909091, "name": "Saint Vincent and the Grenadines", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.7894736842105263, "name": "Samoa", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.8, "name": "San Marino", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.7407407407407407, "name": "Sao Tome and Principe", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.7884615384615384, "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.7592592592592593, "name": "Senegal", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.82, "name": "Serbia", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.7777777777777778, "name": "Seychelles", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.7962962962962963, "name": "Sierra Leone", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.8076923076923077, "name": "Singapore", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.84, "name": "Slovakia", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.86, "name": "Slovenia", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.8421052631578947, "name": "Solomon Islands", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.8148148148148148, "name": "Somalia", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.8148148148148148, "name": "Somalia", "continent": "Africa"}, "term": "", "target": {"y": 0.44, "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8148148148148148, "name": "Somalia", "continent": "Africa"}, "term": "", "target": {"y": 0.8, "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8148148148148148, "name": "Somalia", "continent": "Africa"}, "term": "", "target": {"y": 1.0, "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8148148148148148, "name": "Somalia", "continent": "Africa"}, "term": "", "target": {"y": 0.98, "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8148148148148148, "name": "Somalia", "continent": "Africa"}, "term": "", "target": {"y": 0.38, "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8333333333333334, "name": "South Africa", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.8269230769230769, "name": "South Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.8518518518518519, "name": "South Sudan", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.88, "name": "Spain", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.8461538461538461, "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.8703703703703703, "name": "Sudan", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.8461538461538461, "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.8888888888888888, "name": "Swaziland", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.9, "name": "Sweden", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.92, "name": "Switzerland", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.8653846153846154, "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.8653846153846154, "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "name": "Libya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8846153846153846, "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.9074074074074074, "name": "Tanzania", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.9038461538461539, "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.9259259259259259, "name": "Togo", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.8947368421052632, "name": "Tonga", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.9545454545454546, "name": "Trinidad and Tobago", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.9444444444444444, "name": "Tunisia", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.94, "name": "Turkey", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.9230769230769231, "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 1.0, "name": "Turks and Caicos Islands", "continent": "Central America and the Antilles"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.9473684210526315, "name": "Tuvalu", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.9629629629629629, "name": "Uganda", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.96, "name": "Ukraine", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.9423076923076923, "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.98, "name": "United Kingdom", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 1.0, "name": "United States", "continent": "North America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.9230769230769231, "name": "United States Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.9230769230769231, "name": "Uruguay", "continent": "South America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.9615384615384616, "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 1.0, "name": "Vanuatu", "continent": "Oceania"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 1.0, "name": "Vatican City", "continent": "Europe"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 1.0, "name": "Venezuela", "continent": "South America"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.9807692307692307, "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 1.0, "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 0.9814814814814815, "name": "Zambia", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}, {"notes": "", "source": {"y": 1.0, "name": "Zimbabwe", "continent": "Africa"}, "term": "", "target": {"y": 0.6730769230769231, "name": "Palestine", "continent": "Asia"}}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment