Skip to content

Instantly share code, notes, and snippets.

@BBischof
Created May 24, 2016 03:06
Show Gist options
  • Save BBischof/5abb6da630b3d2a086012153a29865f4 to your computer and use it in GitHub Desktop.
Save BBischof/5abb6da630b3d2a086012153a29865f4 to your computer and use it in GitHub Desktop.
International Travel Visa Topology -- Hive Plot Visualization
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>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<style type="text/css">
.link{
fill: none;
stroke: #000;
stroke-width: 1px;
stroke-opacity: .1;
}
.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;
}
.container1{
padding-top: 10px;
position: relative;
left: 0%;
top: 20%;
}
.container2{
position: absolute;
left: 0%;
top: 27%
}
.container3{
z-index: 2000000;
position: absolute;
left: 85%;
top: 20%;
font: 15px;
}
.source{
padding-bottom: 5px;
}
.container3 .parentP{
color: red;
}
.container3 .childP{
color: steelblue;
line-height: 70%;
}
.header{
width: 1400px;
height: 100px;
margin-left: auto;
margin-right: auto;
background-color: #5d6d7e;
color: white;
font: 30px palatino;
}
.head-txt{
position: absolute;
left: 20%;
top: 5%;
}
.plain-text{
padding-top: 6px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</head>
<body>
<header class="header">
<p class="head-txt">International Travel Visa Topology — Hive Plot Visualization</p>
</header>
<div class="container1 container">
<div class="source row">
<div class="col-md-2 plain-text">Source Continent:</div>
<div class="col-md-3">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown" id="source">Europe<span class="caret"></span></button>
<ul class="dropdown-menu" id="source">
<li><a href="#">Asia</a></li>
<li><a href="#">Africa</a></li>
<li><a href="#">Europe</a></li>
<li><a href="#">North America</a></li>
<li><a href="#">South America</a></li>
<li><a href="#">Central America and the Antilles</a></li>
<li><a href="#">Oceania</a></li>
</ul>
</div>
<div class="col-md-2 plain-text">Target Continent:</div>
<div class="col-md-3">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown" id="target">North America<span class="caret"></span></button>
<ul class="dropdown-menu" id="target">
<li><a href="#">Asia</a></li>
<li><a href="#">Africa</a></li>
<li><a href="#">Europe</a></li>
<li><a href="#">North America</a></li>
<li><a href="#">South America</a></li>
<li><a href="#">Central America and the Antilles</a></li>
<li><a href="#">Oceania</a></li>
</ul>
</div>
</div>
</div>
<div class="container3">
</div>
<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="../static/d3.hive.min.js"></script>
<script type="text/javascript">
var source_cont = "Europe";
var target_cont = "North America";
$("#source li a").click(function(){
var sidePane = d3.select(".container3")
sidePane.html("")
sidePane.selectAll("p")
.remove()
source_cont = $(this).text();
$("#source:first-child").text(source_cont);
plot(source_cont, target_cont);
});
$("#target li a").click(function(){
var sidePane = d3.select(".container3")
sidePane.html("")
sidePane.selectAll("p")
.remove()
target_cont = $(this).text();
$("#target:first-child").text(target_cont);
plot(source_cont, target_cont);
});
plot(source_cont, target_cont);
function plot(source_cont, target_cont){
d3.select("svg")
.remove();
var width = 1200;
var height = 1200;
var outerRadius = 500;
var innerRadius = 50;
var minLength = 5;
if ((source_cont == 'Asia') && (target_cont == 'Asia')){
innerRadius = 160;
} else if (target_cont == 'Africa'){
innerRadius = 70;
}
var visa_types = {'free': 1, 'required': 4, 'refused': 2, 'onarrival': 3, 'origin': 0};
var angle = d3.scale.ordinal()
.domain(["origin", "free", "refused", "onarrival", "required"])
.range([0, Math.PI/2, 11 * Math.PI / 12, 13 * Math.PI / 12, 3 * Math.PI / 2]);
var radius = d3.scale.linear()
.range([innerRadius, outerRadius]);
var color = d3.scale.ordinal()
.domain(["origin", "free", "refused", "onarrival", "required"])
.range(["yellow", "blue", "red", "orange", "green"]);
var svg = d3.select("body").append("svg")
.attr("class", "svg")
.attr("width", width)
.attr("height", height)
.append("g")
.attr("transform", "translate(" + width/2.35 + "," + height/2.3 + ")");
svg.append("g")
.attr("class", "legendOrdinal")
.attr("transform", "translate(-410, -500)");
var legendOrdinal = d3.legend.color()
.scale(color);
d3.json("reduced_pairwise_datasets.json", function(error, graph){
nodes = graph.pairwise_nodes[source_cont + "-" + target_cont];
links = graph.pairwise_links[source_cont + "-" + target_cont];
var free_links = new Set(links.filter(function(p){ return p.target.type == 'free';}).map(function(d){return d.target.name}));
var onarrival_links = new Set(links.filter(function(p){ return p.target.type == 'onarrival';}).map(function(d){return d.target.name}));
var required_links = new Set(links.filter(function(p){ return p.target.type == 'required';}).map(function(d){return d.target.name}));
var refused_links = new Set(links.filter(function(p){ return p.target.type == 'refused';}).map(function(d){return d.target.name}));
var visa_lengths = [{'name': 'origin', 'length': 55}, {'name': 'free', 'length': free_links.size}, {'name': 'refused', 'length': refused_links.size}, {'name': 'onarrival', 'length': onarrival_links.size}, {'name': 'required', 'length': required_links.size}];
var visa_obj = {'origin': 55, 'free': free_links.size, 'required': required_links.size, 'onarrival': onarrival_links.size, 'refused': refused_links.size};
radius.domain(d3.extent(visa_lengths, function(d){ return d.length; }));
svg.selectAll(".axis")
.data(visa_lengths)
.enter().append("line")
.attr("class", "axis")
.attr("transform", function(d, i){ return "rotate(" + degrees(angle(i)) + ")";})
.attr("x1", radius.range()[0])
.attr("x2", function(d){return radius(d.length);})
;
svg.selectAll(".link")
.data(links)
.enter().append("path")
.attr("class", "link")
.attr("d", d3.hive.link()
.angle(function(d) { return angle(visa_types[d.type]); })
.radius(function(d) { return radius(visa_obj[d.type] * d.y); }))
.style("stroke", function(d) { return color(d.target.type);})
.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(visa_types[d.type])) + ")"; })
.attr("cx", function(d) { return radius(visa_obj[d.type] * d.y); })
.attr("r", 5)
.style("fill", function(d) { return color(d.type);})
.on("click", nodeClick)
.on("mouseover", nodeMouseover)
.on("mouseout", mouseout)
.append("title")
.text(function(d){ return d.name; })
;
var legendOrdinal = d3.legend.color()
.scale(color);
svg.select(".legendOrdinal")
.call(legendOrdinal);
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; });
}
function nodeMouseover(d) {
svg.selectAll(".link").classed("active", function(p) { return (p.source.name === d.name && p.source.type == d.type) || (p.target.name === d.name && p.target.type == d.type); });
d3.select(this).classed("active", true);
}
function nodeClick(d){
var relavant_nodes = {'free': [], 'onarrival':[], 'required': [], 'refused':[]};
links.forEach(function(p){
if (p.source.name == d.name){
relavant_nodes[p.target.type].push(p.target.name)
}
})
var side_panel = d3.select('.container3');
side_panel.html("");
side_panel.html('<strong>Country: </strong>' + d.name + '<br></br>');
for (key in relavant_nodes){
if (relavant_nodes[key].length != 0){
var key_item = side_panel.append("p")
.attr("class", "parentP")
.html('<strong>Visa ' + key.toUpperCase() + ":" + '</strong>');
relavant_nodes[key].forEach(function(d){
side_panel.append("p")
.attr("class", "childP")
.html(d);
})
}
}
}
function mouseout() {
svg.selectAll(".active").classed("active", false);
}
});
}
function degrees(radians) {
return radians / Math.PI * 180 - 90;
}
</script>
</body>
</html>
This file has been truncated, but you can view the full file.
{"pairwise_links": {"South America-Central America and the Antilles": [{"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": " 6 Weeks", "target": {"y": 0.5, "type": "onarrival", "name": "Saint Lucia", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": " 90 Days", "target": {"y": 1.0, "type": "onarrival", "name": "Nicaragua", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": " 90 Days", "target": {"y": 1.0, "type": "onarrival", "name": "Nicaragua", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 6 Weeks", "target": {"y": 0.5, "type": "onarrival", "name": "Saint Lucia", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 90 Days", "target": {"y": 1.0, "type": "onarrival", "name": "Nicaragua", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 6 Weeks", "target": {"y": 0.5, "type": "onarrival", "name": "Saint Lucia", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 6 Weeks", "target": {"y": 0.5, "type": "onarrival", "name": "Saint Lucia", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 90 Days", "target": {"y": 1.0, "type": "onarrival", "name": "Nicaragua", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": " 90 Days", "target": {"y": 1.0, "type": "onarrival", "name": "Nicaragua", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": "", "target": {"y": 0.0625, "type": "required", "name": "Cuba", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": "", "target": {"y": 0.125, "type": "required", "name": "Puerto Rico", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required if holding valid visa issued by Canada, USA, a Schengen Member or United Kingdom", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.1875, "type": "required", "name": "Antigua and Barbuda", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Barbados", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.3125, "type": "required", "name": "Belize", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.0625, "type": "required", "name": "Cuba", "continent": "Central America and the Antilles"}}, {"notes": " Holders of an Acceptance Letter or a Letter of Good Standing issued to new or returning students of St George's University can obtain a visa on arrival.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.375, "type": "required", "name": "Grenada", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.4375, "type": "required", "name": "Guatemala", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "Honduras", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.5625, "type": "required", "name": "Jamaica", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.125, "type": "required", "name": "Puerto Rico", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required if holding Canda, USA or Schengen Visa", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.625, "type": "required", "name": "El Salvador", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.6875, "type": "required", "name": "Trinidad and Tobago", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": "", "target": {"y": 0.0625, "type": "required", "name": "Cuba", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": "", "target": {"y": 0.125, "type": "required", "name": "Puerto Rico", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": "", "target": {"y": 0.0625, "type": "required", "name": "Cuba", "continent": "Central America and the Antilles"}}, {"notes": " Holders of an Acceptance Letter or a Letter of Good Standing issued to new or returning students of St George's University can obtain a visa on arrival.", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": "", "target": {"y": 0.375, "type": "required", "name": "Grenada", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required if holding valid visa issued by Canada, USA, a Schengen Member or United Kingdom", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.1875, "type": "required", "name": "Antigua and Barbuda", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.3125, "type": "required", "name": "Belize", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Costa Rica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.0625, "type": "required", "name": "Cuba", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.8125, "type": "required", "name": "Dominican Republic", "continent": "Central America and the Antilles"}}, {"notes": " Holders of an Acceptance Letter or a Letter of Good Standing issued to new or returning students of St George's University can obtain a visa on arrival.", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.375, "type": "required", "name": "Grenada", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.875, "type": "required", "name": "Saint Lucia", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.125, "type": "required", "name": "Puerto Rico", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required if holding a valid visa for Canada, UK or USA", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.9375, "type": "required", "name": "Turks and Caicos Islands", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required if holding valid visa issued by Canada, USA, a Schengen Member or United Kingdom", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.1875, "type": "required", "name": "Antigua and Barbuda", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Barbados", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.3125, "type": "required", "name": "Belize", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Costa Rica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.0625, "type": "required", "name": "Cuba", "continent": "Central America and the Antilles"}}, {"notes": " Holders of an Acceptance Letter or a Letter of Good Standing issued to new or returning students of St George's University can obtain a visa on arrival.", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.375, "type": "required", "name": "Grenada", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.4375, "type": "required", "name": "Guatemala", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.125, "type": "required", "name": "Puerto Rico", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.0625, "type": "required", "name": "Cuba", "continent": "Central America and the Antilles"}}, {"notes": " Visa is not required for Those born in Panama together with a National ID Card or a Birth Certificate issued by Panama.", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 1.0, "type": "required", "name": "Panama", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.0625, "type": "required", "name": "Cuba", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.4375, "type": "required", "name": "Guatemala", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "Honduras", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.125, "type": "required", "name": "Puerto Rico", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required if holding Canda, USA or Schengen Visa", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.625, "type": "required", "name": "El Salvador", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required if holding valid visa issued by Canada, USA, a Schengen Member or United Kingdom", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": "", "target": {"y": 0.1875, "type": "required", "name": "Antigua and Barbuda", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Barbados", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": "", "target": {"y": 0.3125, "type": "required", "name": "Belize", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": "", "target": {"y": 0.0625, "type": "required", "name": "Cuba", "continent": "Central America and the Antilles"}}, {"notes": " Holders of an Acceptance Letter or a Letter of Good Standing issued to new or returning students of St George's University can obtain a visa on arrival.", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": "", "target": {"y": 0.375, "type": "required", "name": "Grenada", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": "", "target": {"y": 0.5625, "type": "required", "name": "Jamaica", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": "", "target": {"y": 0.125, "type": "required", "name": "Puerto Rico", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": "", "target": {"y": 0.6875, "type": "required", "name": "Trinidad and Tobago", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.3125, "type": "required", "name": "Belize", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Costa Rica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.0625, "type": "required", "name": "Cuba", "continent": "Central America and the Antilles"}}, {"notes": " Holders of an Acceptance Letter or a Letter of Good Standing issued to new or returning students of St George's University can obtain a visa on arrival.", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.375, "type": "required", "name": "Grenada", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "Honduras", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.5625, "type": "required", "name": "Jamaica", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.125, "type": "required", "name": "Puerto Rico", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required if holding Canda, USA or Schengen Visa", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.625, "type": "required", "name": "El Salvador", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.0625, "type": "required", "name": "Cuba", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.4375, "type": "required", "name": "Guatemala", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "Honduras", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required for those born in Panama<br/>- Visa not required if holding valid visa issued by ", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 1.0, "type": "required", "name": "Panama", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.125, "type": "required", "name": "Puerto Rico", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required if holding Canda, USA or Schengen Visa", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.625, "type": "required", "name": "El Salvador", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required if holding valid visa issued by Canada, USA, a Schengen Member or United Kingdom", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": "", "target": {"y": 0.1875, "type": "required", "name": "Antigua and Barbuda", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": "", "target": {"y": 0.0625, "type": "required", "name": "Cuba", "continent": "Central America and the Antilles"}}, {"notes": " Holders of an Acceptance Letter or a Letter of Good Standing issued to new or returning students of St George's University can obtain a visa on arrival.", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": "", "target": {"y": 0.375, "type": "required", "name": "Grenada", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": "", "target": {"y": 0.125, "type": "required", "name": "Puerto Rico", "continent": "Central America and the Antilles"}}, {"notes": " Visa is not required for Holders of normal passports and traveling under the Coperative Integration Agreement (CIC).", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": "", "target": {"y": 0.0625, "type": "required", "name": "Cuba", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": "", "target": {"y": 0.125, "type": "required", "name": "Puerto Rico", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required if holding Canda, USA or Schengen Visa", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": "", "target": {"y": 0.625, "type": "required", "name": "El Salvador", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.047619047619047616, "type": "free", "name": "Antigua and Barbuda", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.09523809523809523, "type": "free", "name": "Barbados", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.14285714285714285, "type": "free", "name": "Bahamas", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.19047619047619047, "type": "free", "name": "Belize", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.23809523809523808, "type": "free", "name": "Costa Rica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.2857142857142857, "type": "free", "name": "Dominica", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required only if traveling as tourist", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "Dominican Republic", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.38095238095238093, "type": "free", "name": "Grenada", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Guatemala", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.47619047619047616, "type": "free", "name": "Honduras", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.5238095238095238, "type": "free", "name": "Haiti", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Jamaica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.6190476190476191, "type": "free", "name": "Saint Kitts and Nevis", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 6 Weeks", "target": {"y": 0.6666666666666666, "type": "free", "name": "Saint Lucia", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Nicaragua", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 180 Days", "target": {"y": 0.7619047619047619, "type": "free", "name": "Panama", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.8095238095238095, "type": "free", "name": "El Salvador", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Turks and Caicos Islands", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.9047619047619048, "type": "free", "name": "Trinidad and Tobago", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.9523809523809523, "type": "free", "name": "Saint Vincent and the Grenadines", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.14285714285714285, "type": "free", "name": "Bahamas", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.23809523809523808, "type": "free", "name": "Costa Rica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": " 21 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Dominica", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required only if traveling as tourist", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.3333333333333333, "type": "free", "name": "Dominican Republic", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.5238095238095238, "type": "free", "name": "Haiti", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.6190476190476191, "type": "free", "name": "Saint Kitts and Nevis", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": " 180 Days", "target": {"y": 0.7619047619047619, "type": "free", "name": "Panama", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Turks and Caicos Islands", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.9523809523809523, "type": "free", "name": "Saint Vincent and the Grenadines", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.047619047619047616, "type": "free", "name": "Antigua and Barbuda", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 6 Months", "target": {"y": 0.09523809523809523, "type": "free", "name": "Barbados", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.14285714285714285, "type": "free", "name": "Bahamas", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.19047619047619047, "type": "free", "name": "Belize", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.23809523809523808, "type": "free", "name": "Costa Rica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 21 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Dominica", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required only if traveling as tourist", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.3333333333333333, "type": "free", "name": "Dominican Republic", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.38095238095238093, "type": "free", "name": "Grenada", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Guatemala", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.47619047619047616, "type": "free", "name": "Honduras", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.5238095238095238, "type": "free", "name": "Haiti", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Jamaica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.6190476190476191, "type": "free", "name": "Saint Kitts and Nevis", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 6 Weeks", "target": {"y": 0.6666666666666666, "type": "free", "name": "Saint Lucia", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Nicaragua", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 180 Days", "target": {"y": 0.7619047619047619, "type": "free", "name": "Panama", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.8095238095238095, "type": "free", "name": "El Salvador", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Turks and Caicos Islands", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.9047619047619048, "type": "free", "name": "Trinidad and Tobago", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.9523809523809523, "type": "free", "name": "Saint Vincent and the Grenadines", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.047619047619047616, "type": "free", "name": "Antigua and Barbuda", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.09523809523809523, "type": "free", "name": "Barbados", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.14285714285714285, "type": "free", "name": "Bahamas", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.19047619047619047, "type": "free", "name": "Belize", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.23809523809523808, "type": "free", "name": "Costa Rica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 21 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Dominica", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required only if traveling as tourist", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "Dominican Republic", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Guatemala", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.47619047619047616, "type": "free", "name": "Honduras", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.5238095238095238, "type": "free", "name": "Haiti", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Jamaica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.6190476190476191, "type": "free", "name": "Saint Kitts and Nevis", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 6 Weeks", "target": {"y": 0.6666666666666666, "type": "free", "name": "Saint Lucia", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Nicaragua", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 180 Days", "target": {"y": 0.7619047619047619, "type": "free", "name": "Panama", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required only if holding biometric passport<br/>- ESTA authorization must be obtained prior to travel. <br/>- Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 1.0, "type": "free", "name": "Puerto Rico", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.8095238095238095, "type": "free", "name": "El Salvador", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Turks and Caicos Islands", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.9047619047619048, "type": "free", "name": "Trinidad and Tobago", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.9523809523809523, "type": "free", "name": "Saint Vincent and the Grenadines", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.09523809523809523, "type": "free", "name": "Barbados", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.14285714285714285, "type": "free", "name": "Bahamas", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": " 21 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Dominica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Guatemala", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.47619047619047616, "type": "free", "name": "Honduras", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.5238095238095238, "type": "free", "name": "Haiti", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Jamaica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.6190476190476191, "type": "free", "name": "Saint Kitts and Nevis", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": " 180 Days", "target": {"y": 0.7619047619047619, "type": "free", "name": "Panama", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.8095238095238095, "type": "free", "name": "El Salvador", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.9047619047619048, "type": "free", "name": "Trinidad and Tobago", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.9523809523809523, "type": "free", "name": "Saint Vincent and the Grenadines", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.14285714285714285, "type": "free", "name": "Bahamas", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 21 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Dominica", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required only if traveling as tourist", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "Dominican Republic", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.47619047619047616, "type": "free", "name": "Honduras", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.5238095238095238, "type": "free", "name": "Haiti", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Jamaica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.6190476190476191, "type": "free", "name": "Saint Kitts and Nevis", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Nicaragua", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 180 Days", "target": {"y": 0.7619047619047619, "type": "free", "name": "Panama", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.8095238095238095, "type": "free", "name": "El Salvador", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Turks and Caicos Islands", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.9047619047619048, "type": "free", "name": "Trinidad and Tobago", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.9523809523809523, "type": "free", "name": "Saint Vincent and the Grenadines", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.047619047619047616, "type": "free", "name": "Antigua and Barbuda", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.09523809523809523, "type": "free", "name": "Barbados", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.14285714285714285, "type": "free", "name": "Bahamas", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.19047619047619047, "type": "free", "name": "Belize", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.23809523809523808, "type": "free", "name": "Costa Rica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.2857142857142857, "type": "free", "name": "Dominica", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required only if traveling as tourist", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.3333333333333333, "type": "free", "name": "Dominican Republic", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.38095238095238093, "type": "free", "name": "Grenada", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Guatemala", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.47619047619047616, "type": "free", "name": "Honduras", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.5238095238095238, "type": "free", "name": "Haiti", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Jamaica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.6190476190476191, "type": "free", "name": "Saint Kitts and Nevis", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 6 Weeks", "target": {"y": 0.6666666666666666, "type": "free", "name": "Saint Lucia", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Nicaragua", "continent": "Central America and the Antilles"}}, {"notes": " ESTA authorization (via https", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 90 Days", "target": {"y": 1.0, "type": "free", "name": "Puerto Rico", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.8095238095238095, "type": "free", "name": "El Salvador", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Turks and Caicos Islands", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.9047619047619048, "type": "free", "name": "Trinidad and Tobago", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.9523809523809523, "type": "free", "name": "Saint Vincent and the Grenadines", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 6 Months", "target": {"y": 0.047619047619047616, "type": "free", "name": "Antigua and Barbuda", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.09523809523809523, "type": "free", "name": "Barbados", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.14285714285714285, "type": "free", "name": "Bahamas", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.19047619047619047, "type": "free", "name": "Belize", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.23809523809523808, "type": "free", "name": "Costa Rica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 6 Months", "target": {"y": 0.2857142857142857, "type": "free", "name": "Dominica", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required only if traveling as tourist", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.3333333333333333, "type": "free", "name": "Dominican Republic", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.38095238095238093, "type": "free", "name": "Grenada", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.5238095238095238, "type": "free", "name": "Haiti", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.5714285714285714, "type": "free", "name": "Jamaica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 6 Months", "target": {"y": 0.6190476190476191, "type": "free", "name": "Saint Kitts and Nevis", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 6 Weeks", "target": {"y": 0.6666666666666666, "type": "free", "name": "Saint Lucia", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 180 Days", "target": {"y": 0.7619047619047619, "type": "free", "name": "Panama", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Turks and Caicos Islands", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.9047619047619048, "type": "free", "name": "Trinidad and Tobago", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.9523809523809523, "type": "free", "name": "Saint Vincent and the Grenadines", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.14285714285714285, "type": "free", "name": "Bahamas", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.23809523809523808, "type": "free", "name": "Costa Rica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 21 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Dominica", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required only if traveling as tourist", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.3333333333333333, "type": "free", "name": "Dominican Republic", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Guatemala", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.47619047619047616, "type": "free", "name": "Honduras", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.5238095238095238, "type": "free", "name": "Haiti", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.6190476190476191, "type": "free", "name": "Saint Kitts and Nevis", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Nicaragua", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 180 Days", "target": {"y": 0.7619047619047619, "type": "free", "name": "Panama", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.8095238095238095, "type": "free", "name": "El Salvador", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Turks and Caicos Islands", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.9523809523809523, "type": "free", "name": "Saint Vincent and the Grenadines", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.047619047619047616, "type": "free", "name": "Antigua and Barbuda", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 28 Days", "target": {"y": 0.09523809523809523, "type": "free", "name": "Barbados", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.14285714285714285, "type": "free", "name": "Bahamas", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 21 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Dominica", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required only if traveling as tourist", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "Dominican Republic", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Guatemala", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.5238095238095238, "type": "free", "name": "Haiti", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.6190476190476191, "type": "free", "name": "Saint Kitts and Nevis", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 180 Days", "target": {"y": 0.7619047619047619, "type": "free", "name": "Panama", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Turks and Caicos Islands", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.9047619047619048, "type": "free", "name": "Trinidad and Tobago", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.9523809523809523, "type": "free", "name": "Saint Vincent and the Grenadines", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": " 6 Months", "target": {"y": 0.047619047619047616, "type": "free", "name": "Antigua and Barbuda", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": " 28 Days", "target": {"y": 0.09523809523809523, "type": "free", "name": "Barbados", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.14285714285714285, "type": "free", "name": "Bahamas", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.19047619047619047, "type": "free", "name": "Belize", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.23809523809523808, "type": "free", "name": "Costa Rica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": " 6 Months", "target": {"y": 0.2857142857142857, "type": "free", "name": "Dominica", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required only if traveling as tourist", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.3333333333333333, "type": "free", "name": "Dominican Republic", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.38095238095238093, "type": "free", "name": "Grenada", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.5238095238095238, "type": "free", "name": "Haiti", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.5714285714285714, "type": "free", "name": "Jamaica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": " 6 Months", "target": {"y": 0.6190476190476191, "type": "free", "name": "Saint Kitts and Nevis", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": " 6 Weeks", "target": {"y": 0.6666666666666666, "type": "free", "name": "Saint Lucia", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Turks and Caicos Islands", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.9047619047619048, "type": "free", "name": "Trinidad and Tobago", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.9523809523809523, "type": "free", "name": "Saint Vincent and the Grenadines", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.09523809523809523, "type": "free", "name": "Barbados", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.14285714285714285, "type": "free", "name": "Bahamas", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.19047619047619047, "type": "free", "name": "Belize", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.23809523809523808, "type": "free", "name": "Costa Rica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 21 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Dominica", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required only if traveling as tourist", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "Dominican Republic", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Guatemala", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.47619047619047616, "type": "free", "name": "Honduras", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.5238095238095238, "type": "free", "name": "Haiti", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Jamaica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.6190476190476191, "type": "free", "name": "Saint Kitts and Nevis", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 6 Weeks", "target": {"y": 0.6666666666666666, "type": "free", "name": "Saint Lucia", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Nicaragua", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 180 Days", "target": {"y": 0.7619047619047619, "type": "free", "name": "Panama", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.8095238095238095, "type": "free", "name": "El Salvador", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Turks and Caicos Islands", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.9047619047619048, "type": "free", "name": "Trinidad and Tobago", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.9523809523809523, "type": "free", "name": "Saint Vincent and the Grenadines", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.047619047619047616, "type": "free", "name": "Antigua and Barbuda", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 28 Days", "target": {"y": 0.09523809523809523, "type": "free", "name": "Barbados", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.14285714285714285, "type": "free", "name": "Bahamas", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.19047619047619047, "type": "free", "name": "Belize", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.23809523809523808, "type": "free", "name": "Costa Rica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.2857142857142857, "type": "free", "name": "Dominica", "continent": "Central America and the Antilles"}}, {"notes": " Visa not required only if traveling as tourist", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.3333333333333333, "type": "free", "name": "Dominican Republic", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.38095238095238093, "type": "free", "name": "Grenada", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Guatemala", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.47619047619047616, "type": "free", "name": "Honduras", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.5238095238095238, "type": "free", "name": "Haiti", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Jamaica", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.6190476190476191, "type": "free", "name": "Saint Kitts and Nevis", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 6 Weeks", "target": {"y": 0.6666666666666666, "type": "free", "name": "Saint Lucia", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Nicaragua", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 180 Days", "target": {"y": 0.7619047619047619, "type": "free", "name": "Panama", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Turks and Caicos Islands", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.9047619047619048, "type": "free", "name": "Trinidad and Tobago", "continent": "Central America and the Antilles"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 1 Month", "target": {"y": 0.9523809523809523, "type": "free", "name": "Saint Vincent and the Grenadines", "continent": "Central America and the Antilles"}}], "South America-Europe": [{"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 360 Days", "target": {"y": 1.0, "type": "onarrival", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 1.0, "type": "onarrival", "name": "Georgia", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": "", "target": {"y": 0.02040816326530612, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": "", "target": {"y": 0.04081632653061224, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": "", "target": {"y": 0.061224489795918366, "type": "required", "name": "Moldova", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.02040816326530612, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visa is not required for Holders of a valid multiple entry C visa issued by a Schengen Member State.<br/>-Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.08163265306122448, "type": "required", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.10204081632653061, "type": "required", "name": "Austria", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 7 days for holders of a multiple entry visa issued by Bulgaria, Croatia, Cyprus, Ireland (Rep.), Monaco, Romania, United Kingdom or a Schengen Member State.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.12244897959183673, "type": "required", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.14285714285714285, "type": "required", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.16326530612244897, "type": "required", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.1836734693877551, "type": "required", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.20408163265306123, "type": "required", "name": "Vatican City", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"C\" visa issued by a Schengen Member State.<br/>-Visa is not required for Holders of a valid long stay visa issued by Croatia, Cyprus or Romania in transit through Bulgaria and continuing their journey to a third country for a max. period of 36 hours. <br/>-Visa is not required for Holders of a valid short visit visa issued by Croatia, Cyprus or Romania in transit through Bulgaria and continuing their journey to a third country for a max. period of 36 hours. <br/>", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.22448979591836735, "type": "required", "name": "Bulgaria", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.04081632653061224, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.24489795918367346, "type": "required", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.2653061224489796, "type": "required", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": " Visa is not required for Holders of a valid \"C\" visa issued by a Schengen Member State.<br/>-Visa is not required for a max. stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.2857142857142857, "type": "required", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.30612244897959184, "type": "required", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.32653061224489793, "type": "required", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.3469387755102041, "type": "required", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.3673469387755102, "type": "required", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "required", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.40816326530612246, "type": "required", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.42857142857142855, "type": "required", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.4489795918367347, "type": "required", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "required", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.4897959183673469, "type": "required", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.5102040816326531, "type": "required", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.5306122448979592, "type": "required", "name": "Greece", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C visa issued by a Schengen Member State valid for all Schengen Member States.<br/>-Visa is not required or a maximum stay of 90 days for holders of a D visa .", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.5510204081632653, "type": "required", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.5714285714285714, "type": "required", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.5918367346938775, "type": "required", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.6122448979591837, "type": "required", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.6326530612244898, "type": "required", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.6530612244897959, "type": "required", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.061224489795918366, "type": "required", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.673469387755102, "type": "required", "name": "Montenegro", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 15 days, totaling 90 days within a six month period, for holders of a \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.6938775510204082, "type": "required", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.7142857142857143, "type": "required", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.7346938775510204, "type": "required", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.7551020408163265, "type": "required", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.7755102040816326, "type": "required", "name": "Poland", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 15 days for holders of a valid multiple entry Schengen visa.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.7959183673469388, "type": "required", "name": "Kosovo", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a valid double/multiple entry C visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.8163265306122449, "type": "required", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.8367346938775511, "type": "required", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.8571428571428571, "type": "required", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.8775510204081632, "type": "required", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.8979591836734694, "type": "required", "name": "Ukraine", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": "", "target": {"y": 0.02040816326530612, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": "", "target": {"y": 0.04081632653061224, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": "", "target": {"y": 0.061224489795918366, "type": "required", "name": "Moldova", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": "", "target": {"y": 0.02040816326530612, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": "", "target": {"y": 0.04081632653061224, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": "", "target": {"y": 0.8979591836734694, "type": "required", "name": "Ukraine", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.02040816326530612, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visa is not required for Holders of a valid multiple entry C visa issued by a Schengen Member State.<br/>-Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.08163265306122448, "type": "required", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.9183673469387755, "type": "required", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.10204081632653061, "type": "required", "name": "Austria", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 7 days for holders of a multiple entry visa issued by Bulgaria, Croatia, Cyprus, Ireland (Rep.), Monaco, Romania, United Kingdom or a Schengen Member State.", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.12244897959183673, "type": "required", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.14285714285714285, "type": "required", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.16326530612244897, "type": "required", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.1836734693877551, "type": "required", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.20408163265306123, "type": "required", "name": "Vatican City", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"C\" visa issued by a Schengen Member State.<br/>-Visa is not required for Holders of a valid long stay visa issued by Croatia, Cyprus or Romania in transit through Bulgaria and continuing their journey to a third country for a max. period of 36 hours. <br/>-Visa is not required for Holders of a valid short visit visa issued by Croatia, Cyprus or Romania in transit through Bulgaria and continuing their journey to a third country for a max. period of 36 hours. <br/>", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.22448979591836735, "type": "required", "name": "Bulgaria", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.04081632653061224, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.24489795918367346, "type": "required", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.2653061224489796, "type": "required", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": " Visa is not required for Holders of a valid \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.2857142857142857, "type": "required", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.30612244897959184, "type": "required", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.32653061224489793, "type": "required", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.3469387755102041, "type": "required", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.3673469387755102, "type": "required", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "required", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.40816326530612246, "type": "required", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.42857142857142855, "type": "required", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.4489795918367347, "type": "required", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "required", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.4897959183673469, "type": "required", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.5102040816326531, "type": "required", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.5306122448979592, "type": "required", "name": "Greece", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.9387755102040817, "type": "required", "name": "Serbia", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C visa issued by a Schengen Member State valid for all Schengen Member States.<br/>-Visa is not required or a maximum stay of 90 days for holders of a D visa .", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.5510204081632653, "type": "required", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.5714285714285714, "type": "required", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.9591836734693877, "type": "required", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.5918367346938775, "type": "required", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.6122448979591837, "type": "required", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.6326530612244898, "type": "required", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.7142857142857143, "type": "required", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.6530612244897959, "type": "required", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.061224489795918366, "type": "required", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.673469387755102, "type": "required", "name": "Montenegro", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 15 days, totaling 90 days within a six month period, for holders of a \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.6938775510204082, "type": "required", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.7346938775510204, "type": "required", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.7551020408163265, "type": "required", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.7755102040816326, "type": "required", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.9795918367346939, "type": "required", "name": "Reunion", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a valid double/multiple entry C visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.8163265306122449, "type": "required", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.8367346938775511, "type": "required", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.8571428571428571, "type": "required", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.8775510204081632, "type": "required", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": "", "target": {"y": 0.8979591836734694, "type": "required", "name": "Ukraine", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.02040816326530612, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visa is not required for Holders of a valid multiple entry C visa issued by a Schengen Member State.<br/>-Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.08163265306122448, "type": "required", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.9183673469387755, "type": "required", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.10204081632653061, "type": "required", "name": "Austria", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 7 days for holders of a multiple entry visa issued by Bulgaria, Croatia, Cyprus, Ireland (Rep.), Monaco, Romania, United Kingdom or a Schengen Member State.", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.12244897959183673, "type": "required", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.14285714285714285, "type": "required", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.16326530612244897, "type": "required", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.1836734693877551, "type": "required", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.20408163265306123, "type": "required", "name": "Vatican City", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"C\" visa issued by a Schengen Member State.<br/>-Visa is not required for Holders of a valid long stay visa issued by Croatia, Cyprus or Romania in transit through Bulgaria and continuing their journey to a third country for a max. period of 36 hours. <br/>-Visa is not required for Holders of a valid short visit visa issued by Croatia, Cyprus or Romania in transit through Bulgaria and continuing their journey to a third country for a max. period of 36 hours. <br/>", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.22448979591836735, "type": "required", "name": "Bulgaria", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.04081632653061224, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.24489795918367346, "type": "required", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.2653061224489796, "type": "required", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": " Visa is not required for Holders of a valid \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.2857142857142857, "type": "required", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.30612244897959184, "type": "required", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.32653061224489793, "type": "required", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.3469387755102041, "type": "required", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.3673469387755102, "type": "required", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "required", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.40816326530612246, "type": "required", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.42857142857142855, "type": "required", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.4489795918367347, "type": "required", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "required", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.4897959183673469, "type": "required", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.5102040816326531, "type": "required", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.5306122448979592, "type": "required", "name": "Greece", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C visa issued by a Schengen Member State valid for all Schengen Member States.<br/>-Visa is not required or a maximum stay of 90 days for holders of a D visa .", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.5510204081632653, "type": "required", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.5714285714285714, "type": "required", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.9591836734693877, "type": "required", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.5918367346938775, "type": "required", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.6122448979591837, "type": "required", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.6326530612244898, "type": "required", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.7142857142857143, "type": "required", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.6530612244897959, "type": "required", "name": "Latvia", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 15 days, totaling 90 days within a six month period, for holders of a \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.6938775510204082, "type": "required", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.7346938775510204, "type": "required", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.7551020408163265, "type": "required", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.7755102040816326, "type": "required", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.9795918367346939, "type": "required", "name": "Reunion", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 15 days for holders of a valid multiple entry Schengen visa.", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.7959183673469388, "type": "required", "name": "Kosovo", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a valid double/multiple entry C visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.8163265306122449, "type": "required", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.9387755102040817, "type": "required", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.8367346938775511, "type": "required", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.8571428571428571, "type": "required", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.8775510204081632, "type": "required", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": "", "target": {"y": 0.8979591836734694, "type": "required", "name": "Ukraine", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.22448979591836735, "type": "required", "name": "Bulgaria", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.04081632653061224, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.673469387755102, "type": "required", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.7346938775510204, "type": "required", "name": "Netherlands", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.02040816326530612, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visa is not required for Holders of a valid multiple entry C visa issued by a Schengen Member State.<br/>-Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.08163265306122448, "type": "required", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.9183673469387755, "type": "required", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.10204081632653061, "type": "required", "name": "Austria", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 7 days for holders of a multiple entry visa issued by Bulgaria, Croatia, Cyprus, Ireland (Rep.), Monaco, Romania, United Kingdom or a Schengen Member State.", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.12244897959183673, "type": "required", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.14285714285714285, "type": "required", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.16326530612244897, "type": "required", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.1836734693877551, "type": "required", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.20408163265306123, "type": "required", "name": "Vatican City", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"C\" visa issued by a Schengen Member State.<br/>-Visa is not required for Holders of a valid long stay visa issued by Croatia, Cyprus or Romania in transit through Bulgaria and continuing their journey to a third country for a max. period of 36 hours. <br/>-Visa is not required for Holders of a valid short visit visa issued by Croatia, Cyprus or Romania in transit through Bulgaria and continuing their journey to a third country for a max. period of 36 hours. <br/>", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.22448979591836735, "type": "required", "name": "Bulgaria", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.04081632653061224, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.24489795918367346, "type": "required", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.2653061224489796, "type": "required", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": " Visa is not required for Holders of a valid \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.2857142857142857, "type": "required", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.30612244897959184, "type": "required", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.32653061224489793, "type": "required", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.3469387755102041, "type": "required", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.3673469387755102, "type": "required", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "required", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.40816326530612246, "type": "required", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.42857142857142855, "type": "required", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.4489795918367347, "type": "required", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "required", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.4897959183673469, "type": "required", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.5102040816326531, "type": "required", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.5306122448979592, "type": "required", "name": "Greece", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.9387755102040817, "type": "required", "name": "Serbia", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C visa issued by a Schengen Member State valid for all Schengen Member States.<br/>-Visa is not required or a maximum stay of 90 days for holders of a D visa .", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.5510204081632653, "type": "required", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.5714285714285714, "type": "required", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.5918367346938775, "type": "required", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.6122448979591837, "type": "required", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.6326530612244898, "type": "required", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.7142857142857143, "type": "required", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.6530612244897959, "type": "required", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.061224489795918366, "type": "required", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.673469387755102, "type": "required", "name": "Montenegro", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 15 days, totaling 90 days within a six month period, for holders of a \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.6938775510204082, "type": "required", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.7346938775510204, "type": "required", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.7551020408163265, "type": "required", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.7755102040816326, "type": "required", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.9795918367346939, "type": "required", "name": "Reunion", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a valid double/multiple entry C visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.8163265306122449, "type": "required", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.8367346938775511, "type": "required", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.8571428571428571, "type": "required", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.8775510204081632, "type": "required", "name": "Slovakia", "continent": "Europe"}}, {"notes": " Visa not required for Those of Turkish origin holding foreign passport and a National ID Card issued by Turkey.", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 1.0, "type": "required", "name": "Turkey", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.8979591836734694, "type": "required", "name": "Ukraine", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": "", "target": {"y": 0.02040816326530612, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visa is not required for Holders of a valid multiple entry C visa issued by a Schengen Member State.<br/>-Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": "", "target": {"y": 0.08163265306122448, "type": "required", "name": "Albania", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": "", "target": {"y": 0.04081632653061224, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": "", "target": {"y": 0.9387755102040817, "type": "required", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": "", "target": {"y": 0.061224489795918366, "type": "required", "name": "Moldova", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.02040816326530612, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visa is not required for Holders of a valid multiple entry C visa issued by a Schengen Member State.<br/>-Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.08163265306122448, "type": "required", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.9183673469387755, "type": "required", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.10204081632653061, "type": "required", "name": "Austria", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 7 days for holders of a multiple entry visa issued by Bulgaria, Croatia, Cyprus, Ireland (Rep.), Monaco, Romania, United Kingdom or a Schengen Member State.", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.12244897959183673, "type": "required", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.14285714285714285, "type": "required", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.16326530612244897, "type": "required", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.1836734693877551, "type": "required", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.20408163265306123, "type": "required", "name": "Vatican City", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"C\" visa issued by a Schengen Member State.<br/>-Visa is not required for Holders of a valid long stay visa issued by Croatia, Cyprus or Romania in transit through Bulgaria and continuing their journey to a third country for a max. period of 36 hours. <br/>-Visa is not required for Holders of a valid short visit visa issued by Croatia, Cyprus or Romania in transit through Bulgaria and continuing their journey to a third country for a max. period of 36 hours. <br/>", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.22448979591836735, "type": "required", "name": "Bulgaria", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.04081632653061224, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.24489795918367346, "type": "required", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.2653061224489796, "type": "required", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": " Visa is not required for Holders of a valid \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.2857142857142857, "type": "required", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.30612244897959184, "type": "required", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.32653061224489793, "type": "required", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.3469387755102041, "type": "required", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.3673469387755102, "type": "required", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "required", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.40816326530612246, "type": "required", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.42857142857142855, "type": "required", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.4489795918367347, "type": "required", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "required", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.4897959183673469, "type": "required", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.5102040816326531, "type": "required", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.5306122448979592, "type": "required", "name": "Greece", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.9387755102040817, "type": "required", "name": "Serbia", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C visa issued by a Schengen Member State valid for all Schengen Member States.<br/>-Visa is not required or a maximum stay of 90 days for holders of a D visa .", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.5510204081632653, "type": "required", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.5714285714285714, "type": "required", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.9591836734693877, "type": "required", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.5918367346938775, "type": "required", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.6122448979591837, "type": "required", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.6326530612244898, "type": "required", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.7142857142857143, "type": "required", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.6530612244897959, "type": "required", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.061224489795918366, "type": "required", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.7346938775510204, "type": "required", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.7551020408163265, "type": "required", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.7755102040816326, "type": "required", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.9795918367346939, "type": "required", "name": "Reunion", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 15 days for holders of a valid multiple entry Schengen visa.", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.7959183673469388, "type": "required", "name": "Kosovo", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a valid double/multiple entry C visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.8163265306122449, "type": "required", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.8367346938775511, "type": "required", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.8571428571428571, "type": "required", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.8775510204081632, "type": "required", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": "", "target": {"y": 0.8979591836734694, "type": "required", "name": "Ukraine", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.02040816326530612, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visa is not required for Holders of a valid multiple entry C visa issued by a Schengen Member State.<br/>-Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.08163265306122448, "type": "required", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.9183673469387755, "type": "required", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.10204081632653061, "type": "required", "name": "Austria", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 7 days for holders of a multiple entry visa issued by Bulgaria, Croatia, Cyprus, Ireland (Rep.), Monaco, Romania, United Kingdom or a Schengen Member State.", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.12244897959183673, "type": "required", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.14285714285714285, "type": "required", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.16326530612244897, "type": "required", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.1836734693877551, "type": "required", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.20408163265306123, "type": "required", "name": "Vatican City", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"C\" visa issued by a Schengen Member State.<br/>-Visa is not required for Holders of a valid long stay visa issued by Croatia, Cyprus or Romania in transit through Bulgaria and continuing their journey to a third country for a max. period of 36 hours. <br/>-Visa is not required for Holders of a valid short visit visa issued by Croatia, Cyprus or Romania in transit through Bulgaria and continuing their journey to a third country for a max. period of 36 hours. <br/>", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.22448979591836735, "type": "required", "name": "Bulgaria", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.04081632653061224, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.24489795918367346, "type": "required", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.2653061224489796, "type": "required", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": " Visa is not required for Holders of a valid \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.2857142857142857, "type": "required", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.30612244897959184, "type": "required", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.32653061224489793, "type": "required", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.3469387755102041, "type": "required", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.3673469387755102, "type": "required", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "required", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.40816326530612246, "type": "required", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.42857142857142855, "type": "required", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.4489795918367347, "type": "required", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "required", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.4897959183673469, "type": "required", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.5102040816326531, "type": "required", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.5306122448979592, "type": "required", "name": "Greece", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.9387755102040817, "type": "required", "name": "Serbia", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C visa issued by a Schengen Member State valid for all Schengen Member States.<br/>-Visa is not required or a maximum stay of 90 days for holders of a D visa .", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.5510204081632653, "type": "required", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.5714285714285714, "type": "required", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.9591836734693877, "type": "required", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.5918367346938775, "type": "required", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.6122448979591837, "type": "required", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.6326530612244898, "type": "required", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.7142857142857143, "type": "required", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.6530612244897959, "type": "required", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.061224489795918366, "type": "required", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.673469387755102, "type": "required", "name": "Montenegro", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 15 days, totaling 90 days within a six month period, for holders of a \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.6938775510204082, "type": "required", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.7346938775510204, "type": "required", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.7551020408163265, "type": "required", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.7755102040816326, "type": "required", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.9795918367346939, "type": "required", "name": "Reunion", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 15 days for holders of a valid multiple entry Schengen visa.", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.7959183673469388, "type": "required", "name": "Kosovo", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 90 days for holders of a valid double/multiple entry C visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.8163265306122449, "type": "required", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.8367346938775511, "type": "required", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.8571428571428571, "type": "required", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.8775510204081632, "type": "required", "name": "Slovakia", "continent": "Europe"}}, {"notes": " Visa not required for Those of Turkish origin holding foreign passport and a National ID Card issued by Turkey.", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 1.0, "type": "required", "name": "Turkey", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": "", "target": {"y": 0.8979591836734694, "type": "required", "name": "Ukraine", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": "", "target": {"y": 0.02040816326530612, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visa is not required for Holders of a valid multiple entry C visa issued by a Schengen Member State.<br/>-Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": "", "target": {"y": 0.08163265306122448, "type": "required", "name": "Albania", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": "", "target": {"y": 0.04081632653061224, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": "", "target": {"y": 0.061224489795918366, "type": "required", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": "", "target": {"y": 0.8979591836734694, "type": "required", "name": "Ukraine", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": "", "target": {"y": 0.02040816326530612, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visa is not required for Holders of a valid multiple entry C visa issued by a Schengen Member State.<br/>-Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": "", "target": {"y": 0.08163265306122448, "type": "required", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": "", "target": {"y": 0.9387755102040817, "type": "required", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": "", "target": {"y": 0.061224489795918366, "type": "required", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": "", "target": {"y": 0.6938775510204082, "type": "required", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": "", "target": {"y": 0.8979591836734694, "type": "required", "name": "Ukraine", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": "", "target": {"y": 0.02, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.04, "type": "free", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.06, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.08, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": " <br/>", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.1, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.12, "type": "free", "name": "Bulgaria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.14, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.16, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.18, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.2, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.22, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.24, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.26, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90Days", "target": {"y": 0.28, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.3, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.32, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.34, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 6 Months", "target": {"y": 0.36, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 360 Days", "target": {"y": 0.38, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.4, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.42, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C limited territorial validity visa issued by a Schengen Member State.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.44, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.46, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": "", "target": {"y": 0.48, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.5, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.52, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.54, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.56, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.58, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.6, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.62, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.64, "type": "free", "name": "Montenegro", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 15 days, totaling 90 days within a six month period, for holders of a \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.66, "type": "free", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.68, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.7, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.72, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.74, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.76, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.78, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.8, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.82, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.84, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.86, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.88, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.9, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.92, "type": "free", "name": "Turkey", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Argentina", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.94, "type": "free", "name": "Ukraine", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": " 360 Days", "target": {"y": 0.38, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.4, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": "", "target": {"y": 0.48, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.78, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.84, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Bolivia", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.92, "type": "free", "name": "Turkey", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": "", "target": {"y": 0.02, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.04, "type": "free", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.06, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.08, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": " <br/>", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.1, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.12, "type": "free", "name": "Bulgaria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.14, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.16, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.18, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.2, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.22, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.24, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.26, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90Days", "target": {"y": 0.28, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.3, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.32, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.34, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 6 Months", "target": {"y": 0.36, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 360 Days", "target": {"y": 0.38, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.4, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.42, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C limited territorial validity visa issued by a Schengen Member State.", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.44, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.46, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": "", "target": {"y": 0.48, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.5, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.52, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.54, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.56, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.58, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.6, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.62, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.64, "type": "free", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.66, "type": "free", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.68, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.7, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.72, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.74, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.76, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.78, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.8, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.82, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.84, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.86, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.88, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.9, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.92, "type": "free", "name": "Turkey", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Brazil", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.94, "type": "free", "name": "Ukraine", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": "", "target": {"y": 0.02, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.04, "type": "free", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.06, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.08, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": " <br/>", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.1, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.12, "type": "free", "name": "Bulgaria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.14, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.16, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.18, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.2, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.22, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.24, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.26, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90Days", "target": {"y": 0.28, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.3, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.32, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.34, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 6 Months", "target": {"y": 0.36, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 360 Days", "target": {"y": 0.38, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.4, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.42, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C limited territorial validity visa issued by a Schengen Member State.", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.44, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.46, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": "", "target": {"y": 0.48, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.5, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.52, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.54, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.56, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.58, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.6, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.62, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.96, "type": "free", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.64, "type": "free", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.66, "type": "free", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.68, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.7, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.72, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.74, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.76, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.78, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.8, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.82, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.84, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.86, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.88, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.9, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Chile", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.92, "type": "free", "name": "Turkey", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": " 360 Days", "target": {"y": 0.38, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.8, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Colombia", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.92, "type": "free", "name": "Turkey", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 360 Days", "target": {"y": 0.38, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.96, "type": "free", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.64, "type": "free", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Ecuador", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.92, "type": "free", "name": "Turkey", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.98, "type": "free", "name": "Andorra", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.26, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.32, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.36, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.62, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.34, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.74, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.82, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.4, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.02, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.04, "type": "free", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.06, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.08, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.1, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.42, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.52, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.54, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.56, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.86, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.5, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.14, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.16, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.18, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.2, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.6, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.76, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.22, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.24, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.28, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.3, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 360 Days", "target": {"y": 0.38, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.44, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.46, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.48, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.58, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.96, "type": "free", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.66, "type": "free", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.68, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.72, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.78, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.8, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.84, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.88, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": "", "target": {"y": 0.9, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.92, "type": "free", "name": "Turkey", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "French Guiana", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.94, "type": "free", "name": "Ukraine", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": "", "target": {"y": 0.48, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Guyana", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.8, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": "", "target": {"y": 0.02, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.06, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.08, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": " <br/>", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.1, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.12, "type": "free", "name": "Bulgaria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.14, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.16, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.18, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.2, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.22, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.24, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.26, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90Days", "target": {"y": 0.28, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.3, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.32, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.34, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 6 Months", "target": {"y": 0.36, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 360 Days", "target": {"y": 0.38, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.4, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.42, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C limited territorial validity visa issued by a Schengen Member State.", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.44, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.46, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": "", "target": {"y": 0.48, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.5, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.52, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.54, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.56, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.58, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.6, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.62, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.64, "type": "free", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.66, "type": "free", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.68, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.7, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.72, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.74, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.76, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.78, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.8, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.82, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.86, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.88, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.9, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.92, "type": "free", "name": "Turkey", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Paraguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.94, "type": "free", "name": "Ukraine", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 360 Days", "target": {"y": 0.38, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 30 Days", "target": {"y": 0.64, "type": "free", "name": "Montenegro", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 15 days, totaling 90 days within a six month period, for holders of a \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.66, "type": "free", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Peru", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.92, "type": "free", "name": "Turkey", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Suriname", "continent": "South America"}, "term": " 360 Days", "target": {"y": 0.38, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": "", "target": {"y": 0.02, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.06, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.08, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": " <br/>", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.1, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.12, "type": "free", "name": "Bulgaria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.14, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.16, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.18, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.2, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.22, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.24, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.26, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90Days", "target": {"y": 0.28, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.3, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.32, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.34, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 6 Months", "target": {"y": 0.36, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 360 Days", "target": {"y": 0.38, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.4, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.42, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C limited territorial validity visa issued by a Schengen Member State.", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.44, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.46, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": "", "target": {"y": 0.48, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.5, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.52, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.54, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.56, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.58, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.6, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.62, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.64, "type": "free", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.66, "type": "free", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.68, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.7, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.72, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.74, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.76, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.78, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.8, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.82, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.84, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.86, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.88, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.9, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Uruguay", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.92, "type": "free", "name": "Turkey", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.06, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.08, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.1, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.12, "type": "free", "name": "Bulgaria", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 1.0, "type": "free", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.14, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.16, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.18, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.2, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.22, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.24, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.26, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.28, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.3, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.32, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.34, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": " Passport must be biometric", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 6 Months", "target": {"y": 0.36, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.4, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": "", "target": {"y": 0.02, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.42, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C limited territorial validity visa issued by a Schengen Member State.", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.44, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.46, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": "", "target": {"y": 0.48, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.5, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.52, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.54, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.56, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.58, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.6, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.62, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.64, "type": "free", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.68, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.7, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.72, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.74, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.76, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 3 Months", "target": {"y": 0.78, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.8, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.82, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.86, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.88, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.9, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Venezuela", "continent": "South America"}, "term": " 90 Days", "target": {"y": 0.92, "type": "free", "name": "Turkey", "continent": "Europe"}}], "Asia-North America": [{"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": " Visa not required if holding a multiple entry Schengen visa issued by a French consulate", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": " Visa is not required for for Holders of an APEC Business Travel Card (ABTC).", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": " Visa not required if holding a multiple entry Schengen visa issued by a French consulate", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": " Visa is not required for for Holders of an APEC Business Travel Card (ABTC).", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": "For inhabitants of Iraq, only G and H series passports are accepted for admission to the USA. <br/>-Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States). <br/>", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": "For inhabitants of Iraq, only G and H series passports are accepted for admission to the USA. <br/>-Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States). <br/>", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": " Visa not required if holding a multiple entry Schengen visa issued by a French consulate", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": " Visa not required if holding a multiple entry Schengen visa issued by a French consulate", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 1.0, "type": "required", "name": "Anguilla", "continent": "North America"}}, {"notes": " Visa not required if holding valid D visa issued by a chengen State<br/>- Visa must be endorsed \"valid for Curacao\" or Kingdom of the Netherlands in the Caribbean <br/>", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": " Visa not required if holding a multiple entry Schengen visa issued by a French consulate", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": " Visa is not required for for Holders of an APEC Business Travel Card (ABTC).", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": " Visa not required if holding a multiple entry Schengen visa issued by a French consulate", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": " Visa is not required for for Holders of an APEC Business Travel Card (ABTC).", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": " Visa not required if holding a multiple entry Schengen visa issued by a French consulate", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": " Visa is not required for for Holders of an APEC Business Travel Card (ABTC).", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": " Visa not required if holding a multiple entry Schengen visa issued by a French consulate", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": " Visa is not required for for Holders of an APEC Business Travel Card (ABTC).", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "required", "name": "Curacao", "continent": "North America"}}, {"notes": " Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.<br/>", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "required", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a valid multiple entry visa for Canda, USA or UK", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "required", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "required", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.5833333333333334, "type": "required", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " Visa not required if holding a visa issued by EU Member, Canada or USA<br/>- eVisa can be obtained here ", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.6666666666666666, "type": "required", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "required", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required for Holders of a Form I-512 ( Authorization for Parole of an Alien into the United States).", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "required", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.16666666666666666, "type": "free", "name": "Cayman Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.5, "type": "free", "name": "Curacao", "continent": "North America"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.5833333333333334, "type": "free", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.6666666666666666, "type": "free", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.75, "type": "free", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.16666666666666666, "type": "free", "name": "Cayman Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": " ESTA authorization (via https", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.8333333333333334, "type": "free", "name": "United States", "continent": "North America"}}, {"notes": " ESTA authorization (via https", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.9166666666666666, "type": "free", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "free", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.5, "type": "free", "name": "Curacao", "continent": "North America"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.5833333333333334, "type": "free", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.6666666666666666, "type": "free", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.16666666666666666, "type": "free", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " eVisa can be obtained here ", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 180 Days", "target": {"y": 1.0, "type": "free", "name": "Mexico", "continent": "North America"}}, {"notes": " ESTA authorization (via https", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.8333333333333334, "type": "free", "name": "United States", "continent": "North America"}}, {"notes": " ESTA authorization (via https", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.9166666666666666, "type": "free", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "free", "name": "United States", "continent": "North America"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "free", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.5, "type": "free", "name": "Curacao", "continent": "North America"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.5833333333333334, "type": "free", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.6666666666666666, "type": "free", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.75, "type": "free", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.16666666666666666, "type": "free", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " eVisa can be obtained here ", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 180 Days", "target": {"y": 1.0, "type": "free", "name": "Mexico", "continent": "North America"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 3 MOnths", "target": {"y": 0.5, "type": "free", "name": "Curacao", "continent": "North America"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.5833333333333334, "type": "free", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.6666666666666666, "type": "free", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.75, "type": "free", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.16666666666666666, "type": "free", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " eVisa can be obtained here ", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 180 Days", "target": {"y": 1.0, "type": "free", "name": "Mexico", "continent": "North America"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.5, "type": "free", "name": "Curacao", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.5833333333333334, "type": "free", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.6666666666666666, "type": "free", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "free", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.16666666666666666, "type": "free", "name": "Cayman Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 180 Days", "target": {"y": 1.0, "type": "free", "name": "Mexico", "continent": "North America"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.5, "type": "free", "name": "Curacao", "continent": "North America"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.5833333333333334, "type": "free", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.6666666666666666, "type": "free", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.75, "type": "free", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.16666666666666666, "type": "free", "name": "Cayman Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "Visa is not required for for Holders of an APEC Business Travel Card (ABTC).", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 180 Days", "target": {"y": 1.0, "type": "free", "name": "Mexico", "continent": "North America"}}, {"notes": " ESTA authorization (via https", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.8333333333333334, "type": "free", "name": "United States", "continent": "North America"}}, {"notes": " ESTA authorization (via https", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.9166666666666666, "type": "free", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.16666666666666666, "type": "free", "name": "Cayman Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": " 3 MOnths", "target": {"y": 0.5, "type": "free", "name": "Curacao", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.5833333333333334, "type": "free", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.75, "type": "free", "name": "French West Indies", "continent": "North America"}}, {"notes": " eVisa can be obtained here ", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": " 1801 Days", "target": {"y": 1.0, "type": "free", "name": "Mexico", "continent": "North America"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.5, "type": "free", "name": "Curacao", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.5833333333333334, "type": "free", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.75, "type": "free", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.16666666666666666, "type": "free", "name": "Cayman Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "Visa is not required for for Holders of an APEC Business Travel Card (ABTC).", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 180 Days", "target": {"y": 1.0, "type": "free", "name": "Mexico", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.16666666666666666, "type": "free", "name": "Cayman Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": "", "target": {"y": 0.8333333333333334, "type": "free", "name": "United States", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": "", "target": {"y": 0.9166666666666666, "type": "free", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.5, "type": "free", "name": "Curacao", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.5833333333333334, "type": "free", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.6666666666666666, "type": "free", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.75, "type": "free", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.16666666666666666, "type": "free", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " eVisa can be obtained here ", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 180 Days", "target": {"y": 1.0, "type": "free", "name": "Mexico", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.16666666666666666, "type": "free", "name": "Cayman Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": " Passport must include ID number", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.5, "type": "free", "name": "Curacao", "continent": "North America"}}, {"notes": " Passport must include personal ID number", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.5833333333333334, "type": "free", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.6666666666666666, "type": "free", "name": "Canada", "continent": "North America"}}, {"notes": " Passport must include ID number", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.75, "type": "free", "name": "French West Indies", "continent": "North America"}}, {"notes": " Visa not required only if travelling as tourist.", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.16666666666666666, "type": "free", "name": "Cayman Islands", "continent": "North America"}}, {"notes": " eVisa can be obtained here ", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "Visa not required only if holding biometric passport and ESTA authorization (via https", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.8333333333333334, "type": "free", "name": "United States", "continent": "North America"}}, {"notes": "Visa not required only if holding biometric passport and ESTA authorization (via https", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.9166666666666666, "type": "free", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.3333333333333333, "type": "free", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "Visa is not required for Holders of an APEC Business Travel Card (ABTC).", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": " 180 Days", "target": {"y": 1.0, "type": "free", "name": "Mexico", "continent": "North America"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.5, "type": "free", "name": "Curacao", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.5833333333333334, "type": "free", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.6666666666666666, "type": "free", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.75, "type": "free", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.16666666666666666, "type": "free", "name": "Cayman Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "Visa is not required for for Holders of an APEC Business Travel Card (ABTC).", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 180 Days", "target": {"y": 1.0, "type": "free", "name": "Mexico", "continent": "North America"}}, {"notes": " ESTA authorization (via https", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.8333333333333334, "type": "free", "name": "United States", "continent": "North America"}}, {"notes": " ESTA authorization (via https", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.9166666666666666, "type": "free", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.5, "type": "free", "name": "Curacao", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.5833333333333334, "type": "free", "name": "Aruba", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.6666666666666666, "type": "free", "name": "Canada", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.75, "type": "free", "name": "French West Indies", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "Visa is not required for for Holders of an APEC Business Travel Card (ABTC).", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 180 Days", "target": {"y": 1.0, "type": "free", "name": "Mexico", "continent": "North America"}}, {"notes": " Visa not required only if holding biometric passport and ESTA authorization (via https", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.8333333333333334, "type": "free", "name": "United States", "continent": "North America"}}, {"notes": " Visa not required only if holding biometric passport and ESTA authorization (via https", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.9166666666666666, "type": "free", "name": "United States Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": " 6 Months", "target": {"y": 0.25, "type": "free", "name": "Montserrat", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "free", "name": "British Virgin Islands", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.4166666666666667, "type": "free", "name": "Bermuda", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "free", "name": "Anguilla", "continent": "North America"}}], "North America-Europe": [{"notes": " Visa not required for Those of Turkish origin holding foreign passport and a National ID Card issued by Turkey.<br/>-E-visas can be applied for, prior to departure, through http", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.5, "type": "onarrival", "name": "Turkey", "continent": "Europe"}}, {"notes": " Visa on arrival at minsk airport", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 1.0, "type": "onarrival", "name": "Belarus", "continent": "Europe"}}, {"notes": " Visa not required for Those of Turkish origin holding foreign passport and a National ID Card issued by Turkey.<br/>", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Turkey", "continent": "Europe"}}, {"notes": " Visa not required for Those of Turkish origin holding foreign passport and a National ID Card issued by Turkey.<br/>-E-visas can be applied for, prior to departure, through http", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.5, "type": "onarrival", "name": "Turkey", "continent": "Europe"}}, {"notes": " Visa not required for Those of Turkish origin holding foreign passport and a National ID Card issued by Turkey.<br/>-E-visas can be applied for, prior to departure, through http", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.5, "type": "onarrival", "name": "Turkey", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 15 days, totaling 90 days within a six month period, for holders of a \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Macedonia", "continent": "Europe"}}, {"notes": " Visa not required for Those of Turkish origin holding foreign passport and a National ID Card issued by Turkey.<br/>- E-visas can be obtained prior to departure through www.evisa.gov.tr provided holding a valid visa or residence permit issued by Latvia, Liechtenstein, Lithuania or an OECD Member State.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Turkey", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Bulgaria", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.5454545454545454, "type": "required", "name": "Montenegro", "continent": "Europe"}}, {"notes": " Visa not required for Those of Turkish origin holding foreign passport and a National ID Card issued by Turkey.<br/>- E-visas can be applied for, prior to departure, through http", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Turkey", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 15 days, totaling 90 days within a six month period, for holders of a \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Macedonia", "continent": "Europe"}}, {"notes": " Visa not required for Those of Turkish origin holding foreign passport and a National ID Card issued by Turkey.<br/>- E-visas can be obtained prior to departure through www.evisa.gov.tr provided holding a valid visa or residence permit issued by Latvia, Liechtenstein, Lithuania or an OECD Member State.", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Turkey", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 15 days, totaling 90 days within a six month period, for holders of a \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Macedonia", "continent": "Europe"}}, {"notes": " Visa not required for Those of Turkish origin holding foreign passport and a National ID Card issued by Turkey.<br/>- E-visas can be obtained prior to departure through www.evisa.gov.tr provided holding a valid visa or residence permit issued by Latvia, Liechtenstein, Lithuania or an OECD Member State.", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Turkey", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 15 days, totaling 90 days within a six month period, for holders of a \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Macedonia", "continent": "Europe"}}, {"notes": " Visa not required for Those of Turkish origin holding foreign passport and a National ID Card issued by Turkey.<br/>- E-visas can be obtained prior to departure through www.evisa.gov.tr provided holding a valid visa or residence permit issued by Latvia, Liechtenstein, Lithuania or an OECD Member State.", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Turkey", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Bulgaria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.5454545454545454, "type": "required", "name": "Montenegro", "continent": "Europe"}}, {"notes": " Visa not required for Those of Turkish origin holding foreign passport and a National ID Card issued by Turkey. <br/><br/>- E-visas can be applied for, prior to departure, through http", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Turkey", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Bulgaria", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.5454545454545454, "type": "required", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.6363636363636364, "type": "required", "name": "Netherlands", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visa is not required for Holders of a valid multiple entry C visa issued by a Schengen Member State.<br/>-Visa is not required for Holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": "", "target": {"y": 0.7272727272727273, "type": "required", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": "", "target": {"y": 0.8181818181818182, "type": "required", "name": "Ukraine", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": "", "target": {"y": 0.9090909090909091, "type": "required", "name": "Moldova", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": " Visa is not required for a maximum stay of 15 days, totaling 90 days within a six month period, for holders of a \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Macedonia", "continent": "Europe"}}, {"notes": " Visa not required for Those of Turkish origin holding foreign passport and a National ID Card issued by Turkey.<br/>- E-visas can be obtained prior to departure through www.evisa.gov.tr provided holding a valid visa or residence permit issued by Latvia, Liechtenstein, Lithuania or an OECD Member State.", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Turkey", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": " Although no visa requirements exist, apply the relevant regulations of France or Spain, whichever must be transited to reach Andorra", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Andorra", "continent": "Europe"}}, {"notes": " Visitors can obtain a visa on arrival at Minsk (MSQ)", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Belarus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 1.0, "type": "required", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 0.5454545454545454, "type": "required", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.02040816326530612, "type": "free", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.04081632653061224, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.061224489795918366, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.08163265306122448, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a valid \"C\" visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.10204081632653061, "type": "free", "name": "Bulgaria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.12244897959183673, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.14285714285714285, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "Visa is not required for Holders of a valid \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.16326530612244897, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.1836734693877551, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.20408163265306123, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.22448979591836735, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "Visa not required for Holders of British passports endorsed British Citizen.<br/>", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.24489795918367346, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.2653061224489796, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.30612244897959184, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.32653061224489793, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": "", "target": {"y": 0.3469387755102041, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 360 Days", "target": {"y": 0.3673469387755102, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": "", "target": {"y": 0.40816326530612246, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C visa issued by a Schengen Member State valid for all Schengen Member States.<br/>-Visa is not required or a maximum stay of 90 days for holders of a D visa.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4489795918367347, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4897959183673469, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5102040816326531, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5306122448979592, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5510204081632653, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5918367346938775, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6122448979591837, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6326530612244898, "type": "free", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6530612244897959, "type": "free", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.673469387755102, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6938775510204082, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7346938775510204, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7551020408163265, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.7755102040816326, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7959183673469388, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a valid double/multiple entry C visa issued by a Schengen Member State.<br/>", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8163265306122449, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8367346938775511, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8775510204081632, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8979591836734694, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9183673469387755, "type": "free", "name": "Ukraine", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Anguilla", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.9387755102040817, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.24489795918367346, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.3469387755102041, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.6122448979591837, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.7346938775510204, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.8163265306122449, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.02040816326530612, "type": "free", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.04081632653061224, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.061224489795918366, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.08163265306122448, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.40816326530612246, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.5102040816326531, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.5306122448979592, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.5510204081632653, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.8571428571428571, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.4897959183673469, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.12244897959183673, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.14285714285714285, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.16326530612244897, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.1836734693877551, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.30612244897959184, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.5918367346938775, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.32653061224489793, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.7551020408163265, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.20408163265306123, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.22448979591836735, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.2653061224489796, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.2857142857142857, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": " 360 Days", "target": {"y": 0.3673469387755102, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.42857142857142855, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.4489795918367347, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.5714285714285714, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6326530612244898, "type": "free", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9591836734693877, "type": "free", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.673469387755102, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.6938775510204082, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.7142857142857143, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.7755102040816326, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7959183673469388, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8367346938775511, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.8775510204081632, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.8979591836734694, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9183673469387755, "type": "free", "name": "Ukraine", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Aruba", "continent": "North America"}, "term": "", "target": {"y": 0.9387755102040817, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.02040816326530612, "type": "free", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.04081632653061224, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.061224489795918366, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.08163265306122448, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a valid \"C\" visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.10204081632653061, "type": "free", "name": "Bulgaria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.12244897959183673, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.14285714285714285, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.16326530612244897, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.1836734693877551, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.20408163265306123, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.22448979591836735, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "Visa not required for Holders of British passports endorsed British Citizen.<br/>", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.24489795918367346, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.2653061224489796, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.30612244897959184, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.32653061224489793, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": "", "target": {"y": 0.3469387755102041, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 360 Days", "target": {"y": 0.3673469387755102, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": "", "target": {"y": 0.40816326530612246, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C visa issued by a Schengen Member State valid for all Schengen Member States.<br/>-Visa is not required or a maximum stay of 90 days for holders of a D visa.", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4489795918367347, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4897959183673469, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5102040816326531, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5306122448979592, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5510204081632653, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5918367346938775, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6122448979591837, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6326530612244898, "type": "free", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6530612244897959, "type": "free", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.673469387755102, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6938775510204082, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7346938775510204, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7551020408163265, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.7755102040816326, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7959183673469388, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a valid double/multiple entry C visa issued by a Schengen Member State.<br/>", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8163265306122449, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8367346938775511, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8775510204081632, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8979591836734694, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9183673469387755, "type": "free", "name": "Ukraine", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Bermuda", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.9387755102040817, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.02040816326530612, "type": "free", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.04081632653061224, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.061224489795918366, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.08163265306122448, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a valid \"C\" visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.10204081632653061, "type": "free", "name": "Bulgaria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.12244897959183673, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.14285714285714285, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "Visa is not required for Holders of a valid \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.16326530612244897, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.1836734693877551, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.20408163265306123, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.22448979591836735, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "Visa not required for Holders of British passports endorsed British Citizen.<br/>", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.24489795918367346, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.2653061224489796, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.30612244897959184, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.32653061224489793, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 0.3469387755102041, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 360 Days", "target": {"y": 0.3673469387755102, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 0.40816326530612246, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C visa issued by a Schengen Member State valid for all Schengen Member States.<br/>-Visa is not required or a maximum stay of 90 days for holders of a D visa.", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4489795918367347, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4897959183673469, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5102040816326531, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5306122448979592, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5510204081632653, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5918367346938775, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6122448979591837, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6326530612244898, "type": "free", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6530612244897959, "type": "free", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.673469387755102, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6938775510204082, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7346938775510204, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7551020408163265, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.7755102040816326, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7959183673469388, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a valid double/multiple entry C visa issued by a Schengen Member State.<br/>", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8163265306122449, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8367346938775511, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8775510204081632, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8979591836734694, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9183673469387755, "type": "free", "name": "Ukraine", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "British Virgin Islands", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.9387755102040817, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.02040816326530612, "type": "free", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.04081632653061224, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.061224489795918366, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": " <br/>", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.08163265306122448, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.10204081632653061, "type": "free", "name": "Bulgaria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.12244897959183673, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.14285714285714285, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.16326530612244897, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.1836734693877551, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": "", "target": {"y": 0.20408163265306123, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.22448979591836735, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.24489795918367346, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90Days", "target": {"y": 0.2653061224489796, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.30612244897959184, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.32653061224489793, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 6 Months", "target": {"y": 0.3469387755102041, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 360 Days", "target": {"y": 0.3673469387755102, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.9387755102040817, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.40816326530612246, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C limited territorial validity visa issued by a Schengen Member State.", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4489795918367347, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4897959183673469, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5102040816326531, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5306122448979592, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5510204081632653, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5918367346938775, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6122448979591837, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6326530612244898, "type": "free", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6530612244897959, "type": "free", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9591836734693877, "type": "free", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.673469387755102, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6938775510204082, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7346938775510204, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7551020408163265, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.7755102040816326, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7959183673469388, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8163265306122449, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8367346938775511, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8775510204081632, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8979591836734694, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Canada", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9183673469387755, "type": "free", "name": "Ukraine", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.02040816326530612, "type": "free", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.04081632653061224, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.061224489795918366, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.08163265306122448, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a valid \"C\" visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.10204081632653061, "type": "free", "name": "Bulgaria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.12244897959183673, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.14285714285714285, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "Visa is not required for Holders of a valid \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.16326530612244897, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.1836734693877551, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.20408163265306123, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.22448979591836735, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "Visa not required for Holders of British passports endorsed British Citizen.<br/>", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.24489795918367346, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.2653061224489796, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.30612244897959184, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.32653061224489793, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": "", "target": {"y": 0.3469387755102041, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 360 Days", "target": {"y": 0.3673469387755102, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": "", "target": {"y": 0.40816326530612246, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C visa issued by a Schengen Member State valid for all Schengen Member States.<br/>-Visa is not required or a maximum stay of 90 days for holders of a D visa.", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4489795918367347, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4897959183673469, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5102040816326531, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5306122448979592, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5510204081632653, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5918367346938775, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6122448979591837, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6326530612244898, "type": "free", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6530612244897959, "type": "free", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.673469387755102, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6938775510204082, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7346938775510204, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7551020408163265, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.7755102040816326, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7959183673469388, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a valid double/multiple entry C visa issued by a Schengen Member State.<br/>", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8163265306122449, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8367346938775511, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8775510204081632, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8979591836734694, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9183673469387755, "type": "free", "name": "Ukraine", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Cayman Islands", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.9387755102040817, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": " Must hold return ticket", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.02040816326530612, "type": "free", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.04081632653061224, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": " Must hold return ticket", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.061224489795918366, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.08163265306122448, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.12244897959183673, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.16326530612244897, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.1836734693877551, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.20408163265306123, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.22448979591836735, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.24489795918367346, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.2653061224489796, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.2857142857142857, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.30612244897959184, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.3469387755102041, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": " 360 Days", "target": {"y": 0.3673469387755102, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.40816326530612246, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.42857142857142855, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.4489795918367347, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.4897959183673469, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.5102040816326531, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.14285714285714285, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.5714285714285714, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.5918367346938775, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.6122448979591837, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.32653061224489793, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6326530612244898, "type": "free", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9591836734693877, "type": "free", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.673469387755102, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.6938775510204082, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.7142857142857143, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.7346938775510204, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.7551020408163265, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.7755102040816326, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7959183673469388, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.8163265306122449, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8367346938775511, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.8571428571428571, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.8775510204081632, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.8979591836734694, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.5306122448979592, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9183673469387755, "type": "free", "name": "Ukraine", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.5510204081632653, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Curacao", "continent": "North America"}, "term": "", "target": {"y": 0.9387755102040817, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.9795918367346939, "type": "free", "name": "Andorra", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.24489795918367346, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.30612244897959184, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.3469387755102041, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.6122448979591837, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.32653061224489793, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.7346938775510204, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.8163265306122449, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.9387755102040817, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.02040816326530612, "type": "free", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.04081632653061224, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.061224489795918366, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.08163265306122448, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.40816326530612246, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.5102040816326531, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.5306122448979592, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.5510204081632653, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.8571428571428571, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.4897959183673469, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.12244897959183673, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.14285714285714285, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.16326530612244897, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.1836734693877551, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.5918367346938775, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.7551020408163265, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.20408163265306123, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.22448979591836735, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.2653061224489796, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.2857142857142857, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": " 360 Days", "target": {"y": 0.3673469387755102, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.42857142857142855, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.4489795918367347, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.5714285714285714, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6326530612244898, "type": "free", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9591836734693877, "type": "free", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.673469387755102, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.7142857142857143, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.7755102040816326, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7959183673469388, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8367346938775511, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.8775510204081632, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": "", "target": {"y": 0.8979591836734694, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": " 90 Days", "target": {"y": 1.0, "type": "free", "name": "Turkey", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "French West Indies", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9183673469387755, "type": "free", "name": "Ukraine", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.04081632653061224, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.061224489795918366, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": " <br/>", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.08163265306122448, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.10204081632653061, "type": "free", "name": "Bulgaria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.12244897959183673, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.14285714285714285, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.16326530612244897, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.1836734693877551, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.20408163265306123, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.22448979591836735, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.24489795918367346, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90Days", "target": {"y": 0.2653061224489796, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.30612244897959184, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.32653061224489793, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 6 Months", "target": {"y": 0.3469387755102041, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 360 Days", "target": {"y": 0.3673469387755102, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.9387755102040817, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.40816326530612246, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C limited territorial validity visa issued by a Schengen Member State.", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4489795918367347, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4897959183673469, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5102040816326531, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5306122448979592, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5510204081632653, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5918367346938775, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6122448979591837, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6530612244897959, "type": "free", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9591836734693877, "type": "free", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.673469387755102, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6938775510204082, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7346938775510204, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7551020408163265, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.7755102040816326, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7959183673469388, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8163265306122449, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8367346938775511, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8775510204081632, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Mexico", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8979591836734694, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.02040816326530612, "type": "free", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.04081632653061224, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.061224489795918366, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.08163265306122448, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a valid \"C\" visa issued by a Schengen Member State.<br/>-Visa is not required for a maximum stay of 90 days for holders of a valid \"D\" visa issued by a Schengen Member State.", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.10204081632653061, "type": "free", "name": "Bulgaria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.12244897959183673, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.14285714285714285, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "Visa is not required for Holders of a valid \"C\" visa issued by a Schengen Member State.", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.16326530612244897, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.1836734693877551, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.20408163265306123, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.22448979591836735, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "Visa not required for Holders of British passports endorsed British Citizen.<br/>", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.24489795918367346, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.2653061224489796, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.30612244897959184, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.32653061224489793, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": "", "target": {"y": 0.3469387755102041, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 360 Days", "target": {"y": 0.3673469387755102, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": "", "target": {"y": 0.40816326530612246, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C visa issued by a Schengen Member State valid for all Schengen Member States.<br/>-Visa is not required or a maximum stay of 90 days for holders of a D visa.", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4489795918367347, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4897959183673469, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5102040816326531, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5306122448979592, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5510204081632653, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5918367346938775, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6122448979591837, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6326530612244898, "type": "free", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6530612244897959, "type": "free", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.673469387755102, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6938775510204082, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7346938775510204, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7551020408163265, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.7755102040816326, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7959183673469388, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a valid double/multiple entry C visa issued by a Schengen Member State.<br/>", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8163265306122449, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8367346938775511, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8775510204081632, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8979591836734694, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9183673469387755, "type": "free", "name": "Ukraine", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Montserrat", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.9387755102040817, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.02040816326530612, "type": "free", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.04081632653061224, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.061224489795918366, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": " <br/>", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.08163265306122448, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.10204081632653061, "type": "free", "name": "Bulgaria", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.12244897959183673, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.14285714285714285, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.16326530612244897, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.1836734693877551, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": "", "target": {"y": 0.20408163265306123, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.22448979591836735, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.24489795918367346, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90Days", "target": {"y": 0.2653061224489796, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.30612244897959184, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.32653061224489793, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 6 Months", "target": {"y": 0.3469387755102041, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 360 Days", "target": {"y": 0.3673469387755102, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.9387755102040817, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.40816326530612246, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C limited territorial validity visa issued by a Schengen Member State.", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4489795918367347, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4897959183673469, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5102040816326531, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5306122448979592, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5510204081632653, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5918367346938775, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6122448979591837, "type": "free", "name": "Latvia", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6326530612244898, "type": "free", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6530612244897959, "type": "free", "name": "Montenegro", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9591836734693877, "type": "free", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.673469387755102, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6938775510204082, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7346938775510204, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7551020408163265, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.7755102040816326, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7959183673469388, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8163265306122449, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8367346938775511, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8775510204081632, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8979591836734694, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "United States", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9183673469387755, "type": "free", "name": "Ukraine", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 0.3877551020408163, "type": "free", "name": "Gibraltar", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.02040816326530612, "type": "free", "name": "Albania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.04081632653061224, "type": "free", "name": "Austria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.061224489795918366, "type": "free", "name": "Bosnia and Herzegovina", "continent": "Europe"}}, {"notes": " <br/>", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.08163265306122448, "type": "free", "name": "Belgium", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.10204081632653061, "type": "free", "name": "Bulgaria", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.12244897959183673, "type": "free", "name": "Switzerland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.14285714285714285, "type": "free", "name": "Liechtenstein", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.16326530612244897, "type": "free", "name": "Cyprus", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.1836734693877551, "type": "free", "name": "Czech Republic", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 0.20408163265306123, "type": "free", "name": "Germany", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.22448979591836735, "type": "free", "name": "Denmark", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.24489795918367346, "type": "free", "name": "Estonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90Days", "target": {"y": 0.2653061224489796, "type": "free", "name": "Spain", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.2857142857142857, "type": "free", "name": "Finland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.30612244897959184, "type": "free", "name": "France", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.32653061224489793, "type": "free", "name": "Monaco", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 6 Months", "target": {"y": 0.3469387755102041, "type": "free", "name": "United Kingdom", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 360 Days", "target": {"y": 0.3673469387755102, "type": "free", "name": "Georgia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.9387755102040817, "type": "free", "name": "Mayotte", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.40816326530612246, "type": "free", "name": "Greece", "continent": "Europe"}}, {"notes": "Visa is not required for a maximum stay of 90 days for holders of a double or multiple entry C limited territorial validity visa issued by a Schengen Member State.", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.42857142857142855, "type": "free", "name": "Croatia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4489795918367347, "type": "free", "name": "Hungary", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": "", "target": {"y": 0.46938775510204084, "type": "free", "name": "Ireland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.4897959183673469, "type": "free", "name": "Iceland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5102040816326531, "type": "free", "name": "Italy", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5306122448979592, "type": "free", "name": "San Marino", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5510204081632653, "type": "free", "name": "Vatican City", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5714285714285714, "type": "free", "name": "Lithuania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.5918367346938775, "type": "free", "name": "Luxembourg", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6326530612244898, "type": "free", "name": "Moldova", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9591836734693877, "type": "free", "name": "Macedonia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.673469387755102, "type": "free", "name": "Malta", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.6938775510204082, "type": "free", "name": "Netherlands", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7142857142857143, "type": "free", "name": "Norway", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7346938775510204, "type": "free", "name": "Poland", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7551020408163265, "type": "free", "name": "Portugal", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 3 Months", "target": {"y": 0.7755102040816326, "type": "free", "name": "Reunion", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.7959183673469388, "type": "free", "name": "Kosovo", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8163265306122449, "type": "free", "name": "Romania", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8367346938775511, "type": "free", "name": "Serbia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8571428571428571, "type": "free", "name": "Sweden", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8775510204081632, "type": "free", "name": "Slovenia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.8979591836734694, "type": "free", "name": "Slovakia", "continent": "Europe"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "United States Virgin Islands", "continent": "North America"}, "term": " 90 Days", "target": {"y": 0.9183673469387755, "type": "free", "name": "Ukraine", "continent": "Europe"}}], "Asia-Africa": [{"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": " 60 Days", "target": {"y": 0.5833333333333334, "type": "onarrival", "name": "Mauritius", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": " 60 Days", "target": {"y": 0.5833333333333334, "type": "onarrival", "name": "Mauritius", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": " 60 Days", "target": {"y": 0.5833333333333334, "type": "onarrival", "name": "Mauritius", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.7916666666666666, "type": "onarrival", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": " 60 Days", "target": {"y": 0.5833333333333334, "type": "onarrival", "name": "Mauritius", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": " 60 Days", "target": {"y": 0.5833333333333334, "type": "onarrival", "name": "Mauritius", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.8333333333333334, "type": "onarrival", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": " Visa not required for maximum stay of 15 Days if traveling as tourists to the Sinai and remaining in the Sinai <br/>- Visa not required for sons and daughters of Egyptian father and mother (provided born after 25 July 2004)<br/>- Visa not required for wives of Egyptian nationals", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": " Visa is not required for Those traveling as a tourist on a charter flight.", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.875, "type": "onarrival", "name": "Gambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.9166666666666666, "type": "onarrival", "name": "Senegal", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.7916666666666666, "type": "onarrival", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.8333333333333334, "type": "onarrival", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": " Visa is not required for Those traveling as a tourist on a charter flight.", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.875, "type": "onarrival", "name": "Gambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.9166666666666666, "type": "onarrival", "name": "Senegal", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.7916666666666666, "type": "onarrival", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.8333333333333334, "type": "onarrival", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.7916666666666666, "type": "onarrival", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.9166666666666666, "type": "onarrival", "name": "Senegal", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3269230769230769, "type": "origin", "name": "Israel", "continent": "Asia"}, "term": "", "target": {"y": 0.7916666666666666, "type": "onarrival", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.9166666666666666, "type": "onarrival", "name": "Senegal", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.34615384615384615, "type": "origin", "name": "Japan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.7916666666666666, "type": "onarrival", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": " Visa not required if holding normal 5-year passports not containing a stamp from the Jordanian Registration Office on the reverse side cover of the passport (on page 60)<br/>- Visa not required for maximum stay of 15 Days if traveling as tourists to the Sinai and remaining in the Sinai <br/>- Visa not required if traveling as part of group of tourists and holding a signed guarantee letter from a travel agency<br/>- Visa not required for sons and daughters of Egyptian father and mother (provided born after 25 July 2004)<br/>- Visa not required for wives of Egyptian nationals", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": " 60 Days", "target": {"y": 0.5833333333333334, "type": "onarrival", "name": "Mauritius", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.36538461538461536, "type": "origin", "name": "Jordan", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": " Visa not required for maximum stay of 15 Days if traveling as tourists to the Sinai and remaining in the Sinai <br/>- Visa not required for 30 days if traveling as part of group of tourists and holding a signed guarantee letter from a travel agency<br/>- A prior approval from the Egyptian State of Security Authorities may be required<br/>- Visa not required for sons and daughters of Egyptian father and mother (provided born after 25 July 2004)<br/>- Visa not required for wives of Egyptian nationals", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": " 60 Days", "target": {"y": 0.5833333333333334, "type": "onarrival", "name": "Mauritius", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.38461538461538464, "type": "origin", "name": "Kazakhstan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.40384615384615385, "type": "origin", "name": "Kuwait", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.7916666666666666, "type": "onarrival", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": " 60 Days", "target": {"y": 0.5833333333333334, "type": "onarrival", "name": "Mauritius", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4230769230769231, "type": "origin", "name": "Kyrgyzstan", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4423076923076923, "type": "origin", "name": "Laos", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": " 60 Days", "target": {"y": 0.5833333333333334, "type": "onarrival", "name": "Mauritius", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.46153846153846156, "type": "origin", "name": "Lebanon", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.4807692307692308, "type": "origin", "name": "Macau", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": " Visa not required for sons and daughters of Egyptian father and mother (provided born after 25 July 2004)<br/>- Visa not required for wives of Egyptian nationals", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 15 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a max. stay of 60 days.<br/>- Admission refused to holders of passports or travel documents containing a visa or entry stamp issued by Israel.", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": "", "target": {"y": 0.9583333333333334, "type": "onarrival", "name": "Sudan", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.9166666666666666, "type": "onarrival", "name": "Senegal", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5, "type": "origin", "name": "Malaysia", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5192307692307693, "type": "origin", "name": "Maldives", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": " 60 Days", "target": {"y": 0.5833333333333334, "type": "onarrival", "name": "Mauritius", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5384615384615384, "type": "origin", "name": "Mongolia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": " 2 Weeks", "target": {"y": 0.5833333333333334, "type": "onarrival", "name": "Mauritius", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5576923076923077, "type": "origin", "name": "Myanmar", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": " 60 Days", "target": {"y": 0.5833333333333334, "type": "onarrival", "name": "Mauritius", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5769230769230769, "type": "origin", "name": "Nepal", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.5961538461538461, "type": "origin", "name": "North Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.8333333333333334, "type": "onarrival", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": " Visa is not required for Those traveling as a tourist on a charter flight.", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": "", "target": {"y": 0.875, "type": "onarrival", "name": "Gambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.9166666666666666, "type": "onarrival", "name": "Senegal", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6153846153846154, "type": "origin", "name": "Northern Mariana Islands", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.7916666666666666, "type": "onarrival", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6346153846153846, "type": "origin", "name": "Oman", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6538461538461539, "type": "origin", "name": "Pakistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6730769230769231, "type": "origin", "name": "Palestine", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.7916666666666666, "type": "onarrival", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.6923076923076923, "type": "origin", "name": "Peoples Republic of China", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7115384615384616, "type": "origin", "name": "Philippines", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7307692307692307, "type": "origin", "name": "Qatar", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.8333333333333334, "type": "onarrival", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.9166666666666666, "type": "onarrival", "name": "Senegal", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": "", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.75, "type": "origin", "name": "Republic of China Taiwan", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7692307692307693, "type": "origin", "name": "Russia", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.7916666666666666, "type": "onarrival", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.7884615384615384, "type": "origin", "name": "Saudi Arabia", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8076923076923077, "type": "origin", "name": "Singapore", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.7083333333333334, "type": "onarrival", "name": "Egypt", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": "", "target": {"y": 1.0, "type": "onarrival", "name": "Malawi", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8269230769230769, "type": "origin", "name": "South Korea", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.7916666666666666, "type": "onarrival", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8461538461538461, "type": "origin", "name": "Sri Lanka", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8653846153846154, "type": "origin", "name": "Syria", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": " 60 Days", "target": {"y": 0.5833333333333334, "type": "onarrival", "name": "Mauritius", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.8846153846153846, "type": "origin", "name": "Tajikistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": " 60 Days", "target": {"y": 0.5833333333333334, "type": "onarrival", "name": "Mauritius", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9038461538461539, "type": "origin", "name": "Thailand", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": " 60 Days", "target": {"y": 0.5833333333333334, "type": "onarrival", "name": "Mauritius", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9230769230769231, "type": "origin", "name": "Turkmenistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": "Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a maximum stay of 60 days.", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.9583333333333334, "type": "onarrival", "name": "Sudan", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9423076923076923, "type": "origin", "name": "United Arab Emirates", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.7916666666666666, "type": "onarrival", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": " 60 Days", "target": {"y": 0.5833333333333334, "type": "onarrival", "name": "Mauritius", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9615384615384616, "type": "origin", "name": "Uzbekistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.9807692307692307, "type": "origin", "name": "Vietnam", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.75, "type": "onarrival", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.041666666666666664, "type": "onarrival", "name": "Mali", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Cape Verde including their spouses and children.", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.08333333333333333, "type": "onarrival", "name": "Cape Verde", "continent": "Africa"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.125, "type": "onarrival", "name": "Djibouti", "continent": "Africa"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.16666666666666666, "type": "onarrival", "name": "Ethiopia", "continent": "Africa"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.20833333333333334, "type": "onarrival", "name": "Guinea-Bissau", "continent": "Africa"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": " 3 Months", "target": {"y": 0.6666666666666666, "type": "onarrival", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "onarrival", "name": "Comoros", "continent": "Africa"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": " 90 Days", "target": {"y": 0.2916666666666667, "type": "onarrival", "name": "Madagascar", "continent": "Africa"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.3333333333333333, "type": "onarrival", "name": "Mauritania", "continent": "Africa"}}, {"notes": " Visa on arrival only available in these airports ", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.375, "type": "onarrival", "name": "Mozambique", "continent": "Africa"}}, {"notes": " Visitor's permit can be obtained on arrival for a maximum stay of 1 month.", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.4166666666666667, "type": "onarrival", "name": "Seychelles", "continent": "Africa"}}, {"notes": " Those of Somali origin can obtain a visa on arrival for a maximum stay of 90 days.", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": " 30 Days", "target": {"y": 0.4583333333333333, "type": "onarrival", "name": "Somalia", "continent": "Africa"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": " 7 Days", "target": {"y": 0.5, "type": "onarrival", "name": "Togo", "continent": "Africa"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": " 1 Month", "target": {"y": 0.625, "type": "onarrival", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 1.0, "type": "origin", "name": "Yemen", "continent": "Asia"}, "term": "", "target": {"y": 0.5416666666666666, "type": "onarrival", "name": "Uganda", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.022727272727272728, "type": "required", "name": "Benin", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.045454545454545456, "type": "required", "name": "Niger", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.06818181818181818, "type": "required", "name": "Angola", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.11363636363636363, "type": "required", "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.13636363636363635, "type": "required", "name": "Chad", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.1590909090909091, "type": "required", "name": "Burundi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Botswana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.20454545454545456, "type": "required", "name": "Democratic Republic of the Congo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.22727272727272727, "type": "required", "name": "Central African Republic", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a V.I.P invitation letter.<br/>", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Republic of the Congo", "continent": "Africa"}}, {"notes": " Holders of an invitation letter issued by the authorities of Cote d'Ivoire prior to travel can obtain a visa on arrival.", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Cote dIvoire", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.29545454545454547, "type": "required", "name": "Swaziland", "continent": "Africa"}}, {"notes": " Holders of a pre-arranged approval issued by \"Le Delegue General de a la Surete\" can obtain a visa on arrival.", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.3181818181818182, "type": "required", "name": "Cameroon", "continent": "Africa"}}, {"notes": " Visa not required if not aged between 16 and 50", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.3409090909090909, "type": "required", "name": "Egypt", "continent": "Africa"}}, {"notes": " Visa not required for Minors under 18 years of age, accompanied by parents holding a National ID Card issued by Eritrea.", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Eritrea", "continent": "Africa"}}, {"notes": " Visa is not required except for Holders of a Travel Order and a transportation request issued by Government of Gabon. <br/>-Visa not required for Children under 16 years of age are not required to hold a visa.", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.38636363636363635, "type": "required", "name": "Gabon", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a Dual Nationality Card issued by Ghana. <br/>- Holders of an Emergency Visa on arrival Letter (EV) issued by Ghana Immigrations Service can obtain a visa on arrival.", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.4090909090909091, "type": "required", "name": "Ghana", "continent": "Africa"}}, {"notes": " Visa is not required for Those traveling as a tourist on a charter flight.<br/>", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.4318181818181818, "type": "required", "name": "Gambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.4772727272727273, "type": "required", "name": "Equatorial Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "Lesotho", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5227272727272727, "type": "required", "name": "Malawi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5454545454545454, "type": "required", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5681818181818182, "type": "required", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.5909090909090909, "type": "required", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.6136363636363636, "type": "required", "name": "Liberia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.6363636363636364, "type": "required", "name": "Libya", "continent": "Africa"}}, {"notes": " Visa is not required for Children under 17 years of age of any nationality , providing having Moroccan parent(s) and being registered in parent(s)'s passport.", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.6590909090909091, "type": "required", "name": "Morocco", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.6818181818181818, "type": "required", "name": "Mauritius", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.7045454545454546, "type": "required", "name": "Namibia", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Nigeria holding valid foreign passport together with expired Nigerian passports.<br/>- Holders of written e-visa approval issued by Immigration Authority Headquarters in Abuja, can obtain a visa on arrival.<br/><br/>", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.7272727272727273, "type": "required", "name": "Nigeria", "continent": "Africa"}}, {"notes": " Online visa can be obtained here ", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Rwanda", "continent": "Africa"}}, {"notes": "Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a maximum stay of 60 days.", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.7727272727272727, "type": "required", "name": "Sudan", "continent": "Africa"}}, {"notes": " Holders of a copy of a pre-arranged visa can obtain a visa on arrival.", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.7954545454545454, "type": "required", "name": "Sierra Leone", "continent": "Africa"}}, {"notes": "Holders of a pre-enrolment can obtain a visa on arrival for a maximum stay of 3 months at Dakar (DKR).", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.8181818181818182, "type": "required", "name": "Senegal", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.8409090909090909, "type": "required", "name": "South Sudan", "continent": "Africa"}}, {"notes": " E-Visas can be applied for here ", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.8636363636363636, "type": "required", "name": "Sao Tome and Principe", "continent": "Africa"}}, {"notes": " Visa may not be required if traveling on an organized tour", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.8863636363636364, "type": "required", "name": "Tunisia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.9090909090909091, "type": "required", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.019230769230769232, "type": "origin", "name": "Afghanistan", "continent": "Asia"}, "term": "", "target": {"y": 0.9318181818181818, "type": "required", "name": "South Africa", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.022727272727272728, "type": "required", "name": "Benin", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.045454545454545456, "type": "required", "name": "Niger", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.06818181818181818, "type": "required", "name": "Angola", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.11363636363636363, "type": "required", "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.13636363636363635, "type": "required", "name": "Chad", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.1590909090909091, "type": "required", "name": "Burundi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Botswana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.20454545454545456, "type": "required", "name": "Democratic Republic of the Congo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.22727272727272727, "type": "required", "name": "Central African Republic", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a V.I.P invitation letter.<br/>", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Republic of the Congo", "continent": "Africa"}}, {"notes": " Holders of an invitation letter issued by the authorities of Cote d'Ivoire prior to travel can obtain a visa on arrival.", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Cote dIvoire", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.29545454545454547, "type": "required", "name": "Swaziland", "continent": "Africa"}}, {"notes": " Holders of a pre-arranged approval issued by \"Le Delegue General de a la Surete\" can obtain a visa on arrival.", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.3181818181818182, "type": "required", "name": "Cameroon", "continent": "Africa"}}, {"notes": " Visa not required for sons and daughters of Egyptian father and mother (provided born after 25 July 2004)<br/>- Visa not required for wives of Egyptian nationals", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.3409090909090909, "type": "required", "name": "Egypt", "continent": "Africa"}}, {"notes": " Visa not required for Minors under 18 years of age, accompanied by parents holding a National ID Card issued by Eritrea.", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Eritrea", "continent": "Africa"}}, {"notes": " Visa is not required except for Holders of a Travel Order and a transportation request issued by Government of Gabon. <br/>-Visa not required for Children under 16 years of age are not required to hold a visa.", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.38636363636363635, "type": "required", "name": "Gabon", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a Dual Nationality Card issued by Ghana. <br/>- Holders of an Emergency Visa on arrival Letter (EV) issued by Ghana Immigrations Service can obtain a visa on arrival.", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.4090909090909091, "type": "required", "name": "Ghana", "continent": "Africa"}}, {"notes": " Visa is not required for Those traveling as a tourist on a charter flight.<br/>", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.4318181818181818, "type": "required", "name": "Gambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.4772727272727273, "type": "required", "name": "Equatorial Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "Lesotho", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.5227272727272727, "type": "required", "name": "Malawi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.5454545454545454, "type": "required", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.5681818181818182, "type": "required", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.5909090909090909, "type": "required", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.6136363636363636, "type": "required", "name": "Liberia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.6363636363636364, "type": "required", "name": "Libya", "continent": "Africa"}}, {"notes": " Visa is not required for Children under 17 years of age of any nationality , providing having Moroccan parent(s) and being registered in parent(s)'s passport.", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.6590909090909091, "type": "required", "name": "Morocco", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Nigeria holding valid foreign passport together with expired Nigerian passports.<br/>- Holders of written e-visa approval issued by Immigration Authority Headquarters in Abuja, can obtain a visa on arrival.<br/><br/>", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.7272727272727273, "type": "required", "name": "Nigeria", "continent": "Africa"}}, {"notes": " Online visa can be obtained here ", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Rwanda", "continent": "Africa"}}, {"notes": "Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a maximum stay of 60 days.", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.7727272727272727, "type": "required", "name": "Sudan", "continent": "Africa"}}, {"notes": " Holders of a copy of a pre-arranged visa can obtain a visa on arrival.", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.7954545454545454, "type": "required", "name": "Sierra Leone", "continent": "Africa"}}, {"notes": "Holders of a pre-enrolment can obtain a visa on arrival for a maximum stay of 3 months at Dakar (DKR).", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.8181818181818182, "type": "required", "name": "Senegal", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.8409090909090909, "type": "required", "name": "South Sudan", "continent": "Africa"}}, {"notes": " E-Visas can be applied for here ", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.8636363636363636, "type": "required", "name": "Sao Tome and Principe", "continent": "Africa"}}, {"notes": " Visa may not be required if traveling on an organized tour", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.8863636363636364, "type": "required", "name": "Tunisia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.038461538461538464, "type": "origin", "name": "Armenia", "continent": "Asia"}, "term": "", "target": {"y": 0.9318181818181818, "type": "required", "name": "South Africa", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.022727272727272728, "type": "required", "name": "Benin", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.045454545454545456, "type": "required", "name": "Niger", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.06818181818181818, "type": "required", "name": "Angola", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.11363636363636363, "type": "required", "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.13636363636363635, "type": "required", "name": "Chad", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.1590909090909091, "type": "required", "name": "Burundi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Botswana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.20454545454545456, "type": "required", "name": "Democratic Republic of the Congo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.22727272727272727, "type": "required", "name": "Central African Republic", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a V.I.P invitation letter.<br/>", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Republic of the Congo", "continent": "Africa"}}, {"notes": " Holders of an invitation letter issued by the authorities of Cote d'Ivoire prior to travel can obtain a visa on arrival.", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Cote dIvoire", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.29545454545454547, "type": "required", "name": "Swaziland", "continent": "Africa"}}, {"notes": " Holders of a pre-arranged approval issued by \"Le Delegue General de a la Surete\" can obtain a visa on arrival.", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.3181818181818182, "type": "required", "name": "Cameroon", "continent": "Africa"}}, {"notes": " Visa not required only if traveling as part of tourist group and holding a signed letter from travel agency <br/>- Visa not required for sons and daughters of Egyptian father and mother (provided born after 25 July 2004)<br/>- Visa not required for wives of Egyptian nationals", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.3409090909090909, "type": "required", "name": "Egypt", "continent": "Africa"}}, {"notes": " Visa not required for Minors under 18 years of age, accompanied by parents holding a National ID Card issued by Eritrea.", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Eritrea", "continent": "Africa"}}, {"notes": " Visa is not required except for Holders of a Travel Order and a transportation request issued by Government of Gabon. <br/>-Visa not required for Children under 16 years of age are not required to hold a visa.", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.38636363636363635, "type": "required", "name": "Gabon", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a Dual Nationality Card issued by Ghana. <br/>- Holders of an Emergency Visa on arrival Letter (EV) issued by Ghana Immigrations Service can obtain a visa on arrival.", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.4090909090909091, "type": "required", "name": "Ghana", "continent": "Africa"}}, {"notes": " Visa is not required for Those traveling as a tourist on a charter flight.<br/>", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.4318181818181818, "type": "required", "name": "Gambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.4772727272727273, "type": "required", "name": "Equatorial Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "Lesotho", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.5227272727272727, "type": "required", "name": "Malawi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.5454545454545454, "type": "required", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.5681818181818182, "type": "required", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.5909090909090909, "type": "required", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.6136363636363636, "type": "required", "name": "Liberia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.6363636363636364, "type": "required", "name": "Libya", "continent": "Africa"}}, {"notes": " Visa is not required for Children under 17 years of age of any nationality , providing having Moroccan parent(s) and being registered in parent(s)'s passport.", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.6590909090909091, "type": "required", "name": "Morocco", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Nigeria holding valid foreign passport together with expired Nigerian passports.<br/>- Holders of written e-visa approval issued by Immigration Authority Headquarters in Abuja, can obtain a visa on arrival.<br/><br/>", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.7272727272727273, "type": "required", "name": "Nigeria", "continent": "Africa"}}, {"notes": " Online visa can be obtained here ", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Rwanda", "continent": "Africa"}}, {"notes": "Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a maximum stay of 60 days.", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.7727272727272727, "type": "required", "name": "Sudan", "continent": "Africa"}}, {"notes": " Holders of a copy of a pre-arranged visa can obtain a visa on arrival.", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.7954545454545454, "type": "required", "name": "Sierra Leone", "continent": "Africa"}}, {"notes": "Holders of a pre-enrolment can obtain a visa on arrival for a maximum stay of 3 months at Dakar (DKR).", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.8181818181818182, "type": "required", "name": "Senegal", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.8409090909090909, "type": "required", "name": "South Sudan", "continent": "Africa"}}, {"notes": " E-Visas can be applied for here ", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.8636363636363636, "type": "required", "name": "Sao Tome and Principe", "continent": "Africa"}}, {"notes": " Visa is not required, provided travelling on a tour organised by a travel agency and holding hotel voucher.", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.8863636363636364, "type": "required", "name": "Tunisia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.057692307692307696, "type": "origin", "name": "Azerbaijan", "continent": "Asia"}, "term": "", "target": {"y": 0.9318181818181818, "type": "required", "name": "South Africa", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.022727272727272728, "type": "required", "name": "Benin", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.045454545454545456, "type": "required", "name": "Niger", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.06818181818181818, "type": "required", "name": "Angola", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.11363636363636363, "type": "required", "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.13636363636363635, "type": "required", "name": "Chad", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.1590909090909091, "type": "required", "name": "Burundi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Botswana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.20454545454545456, "type": "required", "name": "Democratic Republic of the Congo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.22727272727272727, "type": "required", "name": "Central African Republic", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a V.I.P invitation letter.<br/>", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Republic of the Congo", "continent": "Africa"}}, {"notes": " Holders of an invitation letter issued by the authorities of Cote d'Ivoire prior to travel can obtain a visa on arrival.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Cote dIvoire", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.29545454545454547, "type": "required", "name": "Swaziland", "continent": "Africa"}}, {"notes": " Holders of a pre-arranged approval issued by \"Le Delegue General de a la Surete\" can obtain a visa on arrival.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.3181818181818182, "type": "required", "name": "Cameroon", "continent": "Africa"}}, {"notes": " Visa not required for Minors under 18 years of age, accompanied by parents holding a National ID Card issued by Eritrea.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Eritrea", "continent": "Africa"}}, {"notes": " Visa is not required except for Holders of a Travel Order and a transportation request issued by Government of Gabon. <br/>-Visa not required for Children under 16 years of age are not required to hold a visa.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.38636363636363635, "type": "required", "name": "Gabon", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a Dual Nationality Card issued by Ghana. <br/>- Holders of an Emergency Visa on arrival Letter (EV) issued by Ghana Immigrations Service can obtain a visa on arrival.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.4090909090909091, "type": "required", "name": "Ghana", "continent": "Africa"}}, {"notes": " Visa is not required for Those traveling as a tourist on a charter flight.<br/>", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.4318181818181818, "type": "required", "name": "Gambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.4772727272727273, "type": "required", "name": "Equatorial Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "Lesotho", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.5227272727272727, "type": "required", "name": "Malawi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.5454545454545454, "type": "required", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.5681818181818182, "type": "required", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.6136363636363636, "type": "required", "name": "Liberia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.6363636363636364, "type": "required", "name": "Libya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.7045454545454546, "type": "required", "name": "Namibia", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Nigeria holding valid foreign passport together with expired Nigerian passports.<br/>- Holders of written e-visa approval issued by Immigration Authority Headquarters in Abuja, can obtain a visa on arrival.<br/><br/>", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.7272727272727273, "type": "required", "name": "Nigeria", "continent": "Africa"}}, {"notes": " Online visa can be obtained here ", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Rwanda", "continent": "Africa"}}, {"notes": "Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a maximum stay of 60 days.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.7727272727272727, "type": "required", "name": "Sudan", "continent": "Africa"}}, {"notes": " Holders of a copy of a pre-arranged visa can obtain a visa on arrival.", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.7954545454545454, "type": "required", "name": "Sierra Leone", "continent": "Africa"}}, {"notes": "Holders of a pre-enrolment can obtain a visa on arrival for a maximum stay of 3 months at Dakar (DKR).", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.8181818181818182, "type": "required", "name": "Senegal", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.8409090909090909, "type": "required", "name": "South Sudan", "continent": "Africa"}}, {"notes": " E-Visas can be applied for here ", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.8636363636363636, "type": "required", "name": "Sao Tome and Principe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.07692307692307693, "type": "origin", "name": "Bahrain", "continent": "Asia"}, "term": "", "target": {"y": 0.9318181818181818, "type": "required", "name": "South Africa", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.022727272727272728, "type": "required", "name": "Benin", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.045454545454545456, "type": "required", "name": "Niger", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.06818181818181818, "type": "required", "name": "Angola", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.11363636363636363, "type": "required", "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.13636363636363635, "type": "required", "name": "Chad", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.1590909090909091, "type": "required", "name": "Burundi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Botswana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.20454545454545456, "type": "required", "name": "Democratic Republic of the Congo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.22727272727272727, "type": "required", "name": "Central African Republic", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a V.I.P invitation letter.<br/>", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Republic of the Congo", "continent": "Africa"}}, {"notes": " Holders of an invitation letter issued by the authorities of Cote d'Ivoire prior to travel can obtain a visa on arrival.", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Cote dIvoire", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.29545454545454547, "type": "required", "name": "Swaziland", "continent": "Africa"}}, {"notes": " Holders of a pre-arranged approval issued by \"Le Delegue General de a la Surete\" can obtain a visa on arrival.", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.3181818181818182, "type": "required", "name": "Cameroon", "continent": "Africa"}}, {"notes": " Visa not required for sons and daughters of Egyptian father and mother (provided born after 25 July 2004)<br/>- Visa not required for wives of Egyptian nationals", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.3409090909090909, "type": "required", "name": "Egypt", "continent": "Africa"}}, {"notes": " Visa not required for Minors under 18 years of age, accompanied by parents holding a National ID Card issued by Eritrea.", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Eritrea", "continent": "Africa"}}, {"notes": " Visa is not required except for Holders of a Travel Order and a transportation request issued by Government of Gabon. <br/>-Visa not required for Children under 16 years of age are not required to hold a visa.", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.38636363636363635, "type": "required", "name": "Gabon", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a Dual Nationality Card issued by Ghana. <br/>- Holders of an Emergency Visa on arrival Letter (EV) issued by Ghana Immigrations Service can obtain a visa on arrival.", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.4090909090909091, "type": "required", "name": "Ghana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.4772727272727273, "type": "required", "name": "Equatorial Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.5227272727272727, "type": "required", "name": "Malawi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.5454545454545454, "type": "required", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.5681818181818182, "type": "required", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.6136363636363636, "type": "required", "name": "Liberia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.6363636363636364, "type": "required", "name": "Libya", "continent": "Africa"}}, {"notes": " Visa is not required for Children under 17 years of age of any nationality , providing having Moroccan parent(s) and being registered in parent(s)'s passport.", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.6590909090909091, "type": "required", "name": "Morocco", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.6818181818181818, "type": "required", "name": "Mauritius", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.7045454545454546, "type": "required", "name": "Namibia", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Nigeria holding valid foreign passport together with expired Nigerian passports.<br/>- Holders of written e-visa approval issued by Immigration Authority Headquarters in Abuja, can obtain a visa on arrival.<br/><br/>", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.7272727272727273, "type": "required", "name": "Nigeria", "continent": "Africa"}}, {"notes": " Online visa can be obtained here ", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Rwanda", "continent": "Africa"}}, {"notes": " Admission and transit refused to holders of normal passports, issued to inhabitants of Bangladesh. <br/>- Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a maximum stay of 60 days.", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.7727272727272727, "type": "required", "name": "Sudan", "continent": "Africa"}}, {"notes": " Holders of a copy of a pre-arranged visa can obtain a visa on arrival.", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.7954545454545454, "type": "required", "name": "Sierra Leone", "continent": "Africa"}}, {"notes": "Holders of a pre-enrolment can obtain a visa on arrival for a maximum stay of 3 months at Dakar (DKR).", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.8181818181818182, "type": "required", "name": "Senegal", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.8409090909090909, "type": "required", "name": "South Sudan", "continent": "Africa"}}, {"notes": " E-Visas can be applied for here ", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.8636363636363636, "type": "required", "name": "Sao Tome and Principe", "continent": "Africa"}}, {"notes": " Visa may not be required if traveling on an organized tour", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.8863636363636364, "type": "required", "name": "Tunisia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.9090909090909091, "type": "required", "name": "Tanzania", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.09615384615384616, "type": "origin", "name": "Bangladesh", "continent": "Asia"}, "term": "", "target": {"y": 0.9318181818181818, "type": "required", "name": "South Africa", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.022727272727272728, "type": "required", "name": "Benin", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.045454545454545456, "type": "required", "name": "Niger", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.06818181818181818, "type": "required", "name": "Angola", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.11363636363636363, "type": "required", "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.13636363636363635, "type": "required", "name": "Chad", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.1590909090909091, "type": "required", "name": "Burundi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Botswana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.20454545454545456, "type": "required", "name": "Democratic Republic of the Congo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.22727272727272727, "type": "required", "name": "Central African Republic", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a V.I.P invitation letter.<br/>", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Republic of the Congo", "continent": "Africa"}}, {"notes": " Holders of an invitation letter issued by the authorities of Cote d'Ivoire prior to travel can obtain a visa on arrival.", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Cote dIvoire", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.29545454545454547, "type": "required", "name": "Swaziland", "continent": "Africa"}}, {"notes": " Holders of a pre-arranged approval issued by \"Le Delegue General de a la Surete\" can obtain a visa on arrival.", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.3181818181818182, "type": "required", "name": "Cameroon", "continent": "Africa"}}, {"notes": " Visa not required for Minors under 18 years of age, accompanied by parents holding a National ID Card issued by Eritrea.", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Eritrea", "continent": "Africa"}}, {"notes": " Visa is not required except for Holders of a Travel Order and a transportation request issued by Government of Gabon. <br/>-Visa not required for Children under 16 years of age are not required to hold a visa.", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.38636363636363635, "type": "required", "name": "Gabon", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a Dual Nationality Card issued by Ghana. <br/>- Holders of an Emergency Visa on arrival Letter (EV) issued by Ghana Immigrations Service can obtain a visa on arrival.", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.4090909090909091, "type": "required", "name": "Ghana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.4772727272727273, "type": "required", "name": "Equatorial Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "Lesotho", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.5227272727272727, "type": "required", "name": "Malawi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.5681818181818182, "type": "required", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.6136363636363636, "type": "required", "name": "Liberia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.6363636363636364, "type": "required", "name": "Libya", "continent": "Africa"}}, {"notes": " Visa is not required for Children under 17 years of age of any nationality , providing having Moroccan parent(s) and being registered in parent(s)'s passport.", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.6590909090909091, "type": "required", "name": "Morocco", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.7045454545454546, "type": "required", "name": "Namibia", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Nigeria holding valid foreign passport together with expired Nigerian passports.<br/>- Holders of written e-visa approval issued by Immigration Authority Headquarters in Abuja, can obtain a visa on arrival.<br/><br/>", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.7272727272727273, "type": "required", "name": "Nigeria", "continent": "Africa"}}, {"notes": " Online visa can be obtained here ", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Rwanda", "continent": "Africa"}}, {"notes": "Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a maximum stay of 60 days.", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.7727272727272727, "type": "required", "name": "Sudan", "continent": "Africa"}}, {"notes": " Holders of a copy of a pre-arranged visa can obtain a visa on arrival.", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.7954545454545454, "type": "required", "name": "Sierra Leone", "continent": "Africa"}}, {"notes": "Holders of a pre-enrolment can obtain a visa on arrival for a maximum stay of 3 months at Dakar (DKR).", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.8181818181818182, "type": "required", "name": "Senegal", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.8409090909090909, "type": "required", "name": "South Sudan", "continent": "Africa"}}, {"notes": " E-Visas can be applied for here ", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.8636363636363636, "type": "required", "name": "Sao Tome and Principe", "continent": "Africa"}}, {"notes": " Visa may not be required if traveling on an organized tour", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.8863636363636364, "type": "required", "name": "Tunisia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.11538461538461539, "type": "origin", "name": "Bhutan", "continent": "Asia"}, "term": "", "target": {"y": 0.9318181818181818, "type": "required", "name": "South Africa", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.022727272727272728, "type": "required", "name": "Benin", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.045454545454545456, "type": "required", "name": "Niger", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.06818181818181818, "type": "required", "name": "Angola", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.11363636363636363, "type": "required", "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.13636363636363635, "type": "required", "name": "Chad", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.1590909090909091, "type": "required", "name": "Burundi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.20454545454545456, "type": "required", "name": "Democratic Republic of the Congo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.22727272727272727, "type": "required", "name": "Central African Republic", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a V.I.P invitation letter.<br/>", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Republic of the Congo", "continent": "Africa"}}, {"notes": " Holders of an invitation letter issued by the authorities of Cote d'Ivoire prior to travel can obtain a visa on arrival.", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Cote dIvoire", "continent": "Africa"}}, {"notes": " Holders of a pre-arranged approval issued by \"Le Delegue General de a la Surete\" can obtain a visa on arrival.", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.3181818181818182, "type": "required", "name": "Cameroon", "continent": "Africa"}}, {"notes": " Visa not required for Minors under 18 years of age, accompanied by parents holding a National ID Card issued by Eritrea.", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Eritrea", "continent": "Africa"}}, {"notes": " Visa is not required except for Holders of a Travel Order and a transportation request issued by Government of Gabon. <br/>-Visa not required for Children under 16 years of age are not required to hold a visa.", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.38636363636363635, "type": "required", "name": "Gabon", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a Dual Nationality Card issued by Ghana. <br/>- Holders of an Emergency Visa on arrival Letter (EV) issued by Ghana Immigrations Service can obtain a visa on arrival.", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.4090909090909091, "type": "required", "name": "Ghana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.4772727272727273, "type": "required", "name": "Equatorial Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.6136363636363636, "type": "required", "name": "Liberia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.6363636363636364, "type": "required", "name": "Libya", "continent": "Africa"}}, {"notes": " Visa is not required for Children under 17 years of age of any nationality , providing having Moroccan parent(s) and being registered in parent(s)'s passport.", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.6590909090909091, "type": "required", "name": "Morocco", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.7045454545454546, "type": "required", "name": "Namibia", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Nigeria holding valid foreign passport together with expired Nigerian passports.<br/>- Holders of written e-visa approval issued by Immigration Authority Headquarters in Abuja, can obtain a visa on arrival.<br/><br/>", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.7272727272727273, "type": "required", "name": "Nigeria", "continent": "Africa"}}, {"notes": " Online visa can be obtained here ", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Rwanda", "continent": "Africa"}}, {"notes": "Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a maximum stay of 60 days.", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.7727272727272727, "type": "required", "name": "Sudan", "continent": "Africa"}}, {"notes": " Holders of a copy of a pre-arranged visa can obtain a visa on arrival.", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.7954545454545454, "type": "required", "name": "Sierra Leone", "continent": "Africa"}}, {"notes": "Holders of a pre-enrolment can obtain a visa on arrival for a maximum stay of 3 months at Dakar (DKR).", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.8181818181818182, "type": "required", "name": "Senegal", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.8409090909090909, "type": "required", "name": "South Sudan", "continent": "Africa"}}, {"notes": " E-Visas can be applied for here ", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.8636363636363636, "type": "required", "name": "Sao Tome and Principe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.1346153846153846, "type": "origin", "name": "Brunei", "continent": "Asia"}, "term": "", "target": {"y": 0.9318181818181818, "type": "required", "name": "South Africa", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.022727272727272728, "type": "required", "name": "Benin", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.045454545454545456, "type": "required", "name": "Niger", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.06818181818181818, "type": "required", "name": "Angola", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.11363636363636363, "type": "required", "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.13636363636363635, "type": "required", "name": "Chad", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.1590909090909091, "type": "required", "name": "Burundi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Botswana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.20454545454545456, "type": "required", "name": "Democratic Republic of the Congo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.22727272727272727, "type": "required", "name": "Central African Republic", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a V.I.P invitation letter.<br/>", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Republic of the Congo", "continent": "Africa"}}, {"notes": " Holders of an invitation letter issued by the authorities of Cote d'Ivoire prior to travel can obtain a visa on arrival.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Cote dIvoire", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.29545454545454547, "type": "required", "name": "Swaziland", "continent": "Africa"}}, {"notes": " Holders of a pre-arranged approval issued by \"Le Delegue General de a la Surete\" can obtain a visa on arrival.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.3181818181818182, "type": "required", "name": "Cameroon", "continent": "Africa"}}, {"notes": " Visa not required for Minors under 18 years of age, accompanied by parents holding a National ID Card issued by Eritrea.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Eritrea", "continent": "Africa"}}, {"notes": " Visa is not required except for Holders of a Travel Order and a transportation request issued by Government of Gabon. <br/>-Visa not required for Children under 16 years of age are not required to hold a visa.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.38636363636363635, "type": "required", "name": "Gabon", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a Dual Nationality Card issued by Ghana. <br/>- Holders of an Emergency Visa on arrival Letter (EV) issued by Ghana Immigrations Service can obtain a visa on arrival.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.4090909090909091, "type": "required", "name": "Ghana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.4772727272727273, "type": "required", "name": "Equatorial Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "Lesotho", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.5227272727272727, "type": "required", "name": "Malawi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.5681818181818182, "type": "required", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.6136363636363636, "type": "required", "name": "Liberia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.6363636363636364, "type": "required", "name": "Libya", "continent": "Africa"}}, {"notes": " Visa is not required for Children under 17 years of age of any nationality , providing having Moroccan parent(s) and being registered in parent(s)'s passport.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.6590909090909091, "type": "required", "name": "Morocco", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.7045454545454546, "type": "required", "name": "Namibia", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Nigeria holding valid foreign passport together with expired Nigerian passports.<br/>- Holders of written e-visa approval issued by Immigration Authority Headquarters in Abuja, can obtain a visa on arrival.<br/><br/>", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.7272727272727273, "type": "required", "name": "Nigeria", "continent": "Africa"}}, {"notes": " Online visa can be obtained here ", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Rwanda", "continent": "Africa"}}, {"notes": "Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a maximum stay of 60 days.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.7727272727272727, "type": "required", "name": "Sudan", "continent": "Africa"}}, {"notes": " Holders of a copy of a pre-arranged visa can obtain a visa on arrival.", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.7954545454545454, "type": "required", "name": "Sierra Leone", "continent": "Africa"}}, {"notes": "Holders of a pre-enrolment can obtain a visa on arrival for a maximum stay of 3 months at Dakar (DKR).", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.8181818181818182, "type": "required", "name": "Senegal", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.8409090909090909, "type": "required", "name": "South Sudan", "continent": "Africa"}}, {"notes": " E-Visas can be applied for here ", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.8636363636363636, "type": "required", "name": "Sao Tome and Principe", "continent": "Africa"}}, {"notes": " Visa may not be required if traveling on an organized tour", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.8863636363636364, "type": "required", "name": "Tunisia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.15384615384615385, "type": "origin", "name": "Cambodia", "continent": "Asia"}, "term": "", "target": {"y": 0.9318181818181818, "type": "required", "name": "South Africa", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.022727272727272728, "type": "required", "name": "Benin", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.045454545454545456, "type": "required", "name": "Niger", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.06818181818181818, "type": "required", "name": "Angola", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.11363636363636363, "type": "required", "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.13636363636363635, "type": "required", "name": "Chad", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.1590909090909091, "type": "required", "name": "Burundi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Botswana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.20454545454545456, "type": "required", "name": "Democratic Republic of the Congo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.22727272727272727, "type": "required", "name": "Central African Republic", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a V.I.P invitation letter.<br/>", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Republic of the Congo", "continent": "Africa"}}, {"notes": " Holders of an invitation letter issued by the authorities of Cote d'Ivoire prior to travel can obtain a visa on arrival.", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Cote dIvoire", "continent": "Africa"}}, {"notes": " Holders of a pre-arranged approval issued by \"Le Delegue General de a la Surete\" can obtain a visa on arrival.", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.3181818181818182, "type": "required", "name": "Cameroon", "continent": "Africa"}}, {"notes": " Visa not required for Minors under 18 years of age, accompanied by parents holding a National ID Card issued by Eritrea.", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Eritrea", "continent": "Africa"}}, {"notes": " Visa is not required except for Holders of a Travel Order and a transportation request issued by Government of Gabon. <br/>-Visa not required for Children under 16 years of age are not required to hold a visa.", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.38636363636363635, "type": "required", "name": "Gabon", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a Dual Nationality Card issued by Ghana. <br/>- Holders of an Emergency Visa on arrival Letter (EV) issued by Ghana Immigrations Service can obtain a visa on arrival.", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.4090909090909091, "type": "required", "name": "Ghana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.4772727272727273, "type": "required", "name": "Equatorial Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "Lesotho", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.5227272727272727, "type": "required", "name": "Malawi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.5454545454545454, "type": "required", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.5681818181818182, "type": "required", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.6136363636363636, "type": "required", "name": "Liberia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.6363636363636364, "type": "required", "name": "Libya", "continent": "Africa"}}, {"notes": " Visa is not required for Children under 17 years of age of any nationality , providing having Moroccan parent(s) and being registered in parent(s)'s passport.", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.6590909090909091, "type": "required", "name": "Morocco", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.7045454545454546, "type": "required", "name": "Namibia", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Nigeria holding valid foreign passport together with expired Nigerian passports.<br/>- Holders of written e-visa approval issued by Immigration Authority Headquarters in Abuja, can obtain a visa on arrival.<br/><br/>", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.7272727272727273, "type": "required", "name": "Nigeria", "continent": "Africa"}}, {"notes": " Online visa can be obtained here ", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Rwanda", "continent": "Africa"}}, {"notes": "Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a maximum stay of 60 days.", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.7727272727272727, "type": "required", "name": "Sudan", "continent": "Africa"}}, {"notes": " Holders of a copy of a pre-arranged visa can obtain a visa on arrival.", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.7954545454545454, "type": "required", "name": "Sierra Leone", "continent": "Africa"}}, {"notes": "Holders of a pre-enrolment can obtain a visa on arrival for a maximum stay of 3 months at Dakar (DKR).", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.8181818181818182, "type": "required", "name": "Senegal", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.8409090909090909, "type": "required", "name": "South Sudan", "continent": "Africa"}}, {"notes": " E-Visas can be applied for here ", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.8636363636363636, "type": "required", "name": "Sao Tome and Principe", "continent": "Africa"}}, {"notes": " Visa may not be required if traveling on an organized tour", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.8863636363636364, "type": "required", "name": "Tunisia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.17307692307692307, "type": "origin", "name": "East Timor", "continent": "Asia"}, "term": "", "target": {"y": 0.9318181818181818, "type": "required", "name": "South Africa", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.022727272727272728, "type": "required", "name": "Benin", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.06818181818181818, "type": "required", "name": "Angola", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.11363636363636363, "type": "required", "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.13636363636363635, "type": "required", "name": "Chad", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.1590909090909091, "type": "required", "name": "Burundi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.20454545454545456, "type": "required", "name": "Democratic Republic of the Congo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.22727272727272727, "type": "required", "name": "Central African Republic", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a V.I.P invitation letter.<br/>", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Republic of the Congo", "continent": "Africa"}}, {"notes": " Holders of an invitation letter issued by the authorities of Cote d'Ivoire prior to travel can obtain a visa on arrival.", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Cote dIvoire", "continent": "Africa"}}, {"notes": " Holders of a pre-arranged approval issued by \"Le Delegue General de a la Surete\" can obtain a visa on arrival.", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.3181818181818182, "type": "required", "name": "Cameroon", "continent": "Africa"}}, {"notes": " Visa not required for Minors under 18 years of age, accompanied by parents holding a National ID Card issued by Eritrea.", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Eritrea", "continent": "Africa"}}, {"notes": " Visa is not required except for Holders of a Travel Order and a transportation request issued by Government of Gabon. <br/>-Visa not required for Children under 16 years of age are not required to hold a visa.", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.38636363636363635, "type": "required", "name": "Gabon", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a Dual Nationality Card issued by Ghana. <br/>- Holders of an Emergency Visa on arrival Letter (EV) issued by Ghana Immigrations Service can obtain a visa on arrival.", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.4090909090909091, "type": "required", "name": "Ghana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.4772727272727273, "type": "required", "name": "Equatorial Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.6136363636363636, "type": "required", "name": "Liberia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.6363636363636364, "type": "required", "name": "Libya", "continent": "Africa"}}, {"notes": " Visa is not required for holders of a valid \"Sojourn document\" issued by the government of Niger.", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.045454545454545456, "type": "required", "name": "Niger", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Nigeria holding valid foreign passport together with expired Nigerian passports.<br/>- Holders of written e-visa approval issued by Immigration Authority Headquarters in Abuja, can obtain a visa on arrival.<br/><br/>", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.7272727272727273, "type": "required", "name": "Nigeria", "continent": "Africa"}}, {"notes": " Online visa can be obtained here ", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Rwanda", "continent": "Africa"}}, {"notes": "Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a maximum stay of 60 days.", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.7727272727272727, "type": "required", "name": "Sudan", "continent": "Africa"}}, {"notes": " Holders of a copy of a pre-arranged visa can obtain a visa on arrival.", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.7954545454545454, "type": "required", "name": "Sierra Leone", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.8409090909090909, "type": "required", "name": "South Sudan", "continent": "Africa"}}, {"notes": " E-Visas can be applied for here ", "source": {"y": 0.19230769230769232, "type": "origin", "name": "French Polynesia", "continent": "Asia"}, "term": "", "target": {"y": 0.8636363636363636, "type": "required", "name": "Sao Tome and Principe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.022727272727272728, "type": "required", "name": "Benin", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.045454545454545456, "type": "required", "name": "Niger", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.06818181818181818, "type": "required", "name": "Angola", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.11363636363636363, "type": "required", "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.13636363636363635, "type": "required", "name": "Chad", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.1590909090909091, "type": "required", "name": "Burundi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.20454545454545456, "type": "required", "name": "Democratic Republic of the Congo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.22727272727272727, "type": "required", "name": "Central African Republic", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a V.I.P invitation letter.<br/>", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Republic of the Congo", "continent": "Africa"}}, {"notes": " Holders of an invitation letter issued by the authorities of Cote d'Ivoire prior to travel can obtain a visa on arrival.", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Cote dIvoire", "continent": "Africa"}}, {"notes": " Holders of a pre-arranged approval issued by \"Le Delegue General de a la Surete\" can obtain a visa on arrival.", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.3181818181818182, "type": "required", "name": "Cameroon", "continent": "Africa"}}, {"notes": " Visa not required for Minors under 18 years of age, accompanied by parents holding a National ID Card issued by Eritrea.", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Eritrea", "continent": "Africa"}}, {"notes": " Visa is not required except for Holders of a Travel Order and a transportation request issued by Government of Gabon. <br/>-Visa not required for Children under 16 years of age are not required to hold a visa.", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.38636363636363635, "type": "required", "name": "Gabon", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a Dual Nationality Card issued by Ghana. <br/>- Holders of an Emergency Visa on arrival Letter (EV) issued by Ghana Immigrations Service can obtain a visa on arrival.", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.4090909090909091, "type": "required", "name": "Ghana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.6136363636363636, "type": "required", "name": "Liberia", "continent": "Africa"}}, {"notes": " Visa is not required for inhabitants of the USA, including their family members even if of another nationality, provided travelling together and holding a letter from an established company in Libya sponsoring their visit.", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.6363636363636364, "type": "required", "name": "Libya", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Nigeria holding valid foreign passport together with expired Nigerian passports.<br/>- Holders of written e-visa approval issued by Immigration Authority Headquarters in Abuja, can obtain a visa on arrival.<br/><br/>", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.7272727272727273, "type": "required", "name": "Nigeria", "continent": "Africa"}}, {"notes": " Online visa can be obtained here ", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Rwanda", "continent": "Africa"}}, {"notes": "Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a maximum stay of 60 days.", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.7727272727272727, "type": "required", "name": "Sudan", "continent": "Africa"}}, {"notes": " Holders of a copy of a pre-arranged visa can obtain a visa on arrival.", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.7954545454545454, "type": "required", "name": "Sierra Leone", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.8409090909090909, "type": "required", "name": "South Sudan", "continent": "Africa"}}, {"notes": " E-Visas can be applied for here ", "source": {"y": 0.21153846153846154, "type": "origin", "name": "Guam", "continent": "Asia"}, "term": "", "target": {"y": 0.8636363636363636, "type": "required", "name": "Sao Tome and Principe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.06818181818181818, "type": "required", "name": "Angola", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.11363636363636363, "type": "required", "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.13636363636363635, "type": "required", "name": "Chad", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.1590909090909091, "type": "required", "name": "Burundi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.20454545454545456, "type": "required", "name": "Democratic Republic of the Congo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.22727272727272727, "type": "required", "name": "Central African Republic", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a V.I.P invitation letter.<br/>", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Republic of the Congo", "continent": "Africa"}}, {"notes": " Holders of an invitation letter issued by the authorities of Cote d'Ivoire prior to travel can obtain a visa on arrival.", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Cote dIvoire", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.29545454545454547, "type": "required", "name": "Swaziland", "continent": "Africa"}}, {"notes": " Holders of a pre-arranged approval issued by \"Le Delegue General de a la Surete\" can obtain a visa on arrival.", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.3181818181818182, "type": "required", "name": "Cameroon", "continent": "Africa"}}, {"notes": " Visa not required for Minors under 18 years of age, accompanied by parents holding a National ID Card issued by Eritrea.", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Eritrea", "continent": "Africa"}}, {"notes": " Visa is not required except for Holders of a Travel Order and a transportation request issued by Government of Gabon. <br/>-Visa not required for Children under 16 years of age are not required to hold a visa.", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.38636363636363635, "type": "required", "name": "Gabon", "continent": "Africa"}}, {"notes": " Visa is not required for Those traveling as a tourist on a charter flight.", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.4318181818181818, "type": "required", "name": "Gambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.4772727272727273, "type": "required", "name": "Equatorial Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.6136363636363636, "type": "required", "name": "Liberia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.6363636363636364, "type": "required", "name": "Libya", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Nigeria holding valid foreign passport together with expired Nigerian passports.<br/>- Holders of written e-visa approval issued by Immigration Authority Headquarters in Abuja, can obtain a visa on arrival.<br/><br/>", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.7272727272727273, "type": "required", "name": "Nigeria", "continent": "Africa"}}, {"notes": "Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a maximum stay of 60 days.", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.7727272727272727, "type": "required", "name": "Sudan", "continent": "Africa"}}, {"notes": " Holders of a copy of a pre-arranged visa can obtain a visa on arrival.", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.7954545454545454, "type": "required", "name": "Sierra Leone", "continent": "Africa"}}, {"notes": "Holders of a pre-enrolment can obtain a visa on arrival for a maximum stay of 3 months at Dakar (DKR).", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.8181818181818182, "type": "required", "name": "Senegal", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.8409090909090909, "type": "required", "name": "South Sudan", "continent": "Africa"}}, {"notes": " E-Visas can be applied for here ", "source": {"y": 0.23076923076923078, "type": "origin", "name": "Hong Kong", "continent": "Asia"}, "term": "", "target": {"y": 0.8636363636363636, "type": "required", "name": "Sao Tome and Principe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.022727272727272728, "type": "required", "name": "Benin", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.045454545454545456, "type": "required", "name": "Niger", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.06818181818181818, "type": "required", "name": "Angola", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.11363636363636363, "type": "required", "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.13636363636363635, "type": "required", "name": "Chad", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.1590909090909091, "type": "required", "name": "Burundi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Botswana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.20454545454545456, "type": "required", "name": "Democratic Republic of the Congo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.22727272727272727, "type": "required", "name": "Central African Republic", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a V.I.P invitation letter.<br/>", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Republic of the Congo", "continent": "Africa"}}, {"notes": " Holders of an invitation letter issued by the authorities of Cote d'Ivoire prior to travel can obtain a visa on arrival.", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Cote dIvoire", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.29545454545454547, "type": "required", "name": "Swaziland", "continent": "Africa"}}, {"notes": " Holders of a pre-arranged approval issued by \"Le Delegue General de a la Surete\" can obtain a visa on arrival.", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.3181818181818182, "type": "required", "name": "Cameroon", "continent": "Africa"}}, {"notes": " Visa not required for 30 days if traveling as part of group of tourists and holding a signed guarantee letter from a travel agency<br/>- A prior approval from the Egyptian State of Security Authorities may be required<br/>- Visa not required for sons and daughters of Egyptian father and mother (provided born after 25 July 2004)<br/>- Visa not required for wives of Egyptian nationals", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.3409090909090909, "type": "required", "name": "Egypt", "continent": "Africa"}}, {"notes": " Visa not required for Minors under 18 years of age, accompanied by parents holding a National ID Card issued by Eritrea.", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Eritrea", "continent": "Africa"}}, {"notes": " Visa is not required except for Holders of a Travel Order and a transportation request issued by Government of Gabon. <br/>-Visa not required for Children under 16 years of age are not required to hold a visa.", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.38636363636363635, "type": "required", "name": "Gabon", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a Dual Nationality Card issued by Ghana. <br/>- Holders of an Emergency Visa on arrival Letter (EV) issued by Ghana Immigrations Service can obtain a visa on arrival.", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.4090909090909091, "type": "required", "name": "Ghana", "continent": "Africa"}}, {"notes": " Visa is not required for Those traveling as a tourist on a charter flight.<br/>", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.4318181818181818, "type": "required", "name": "Gambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.4772727272727273, "type": "required", "name": "Equatorial Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "Lesotho", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.5227272727272727, "type": "required", "name": "Malawi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.5454545454545454, "type": "required", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.5681818181818182, "type": "required", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.6136363636363636, "type": "required", "name": "Liberia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.6363636363636364, "type": "required", "name": "Libya", "continent": "Africa"}}, {"notes": " Visa is not required for Children under 17 years of age of any nationality , providing having Moroccan parent(s) and being registered in parent(s)'s passport.", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.6590909090909091, "type": "required", "name": "Morocco", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.9545454545454546, "type": "required", "name": "Mali", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.7045454545454546, "type": "required", "name": "Namibia", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Nigeria holding valid foreign passport together with expired Nigerian passports.<br/>- Holders of written e-visa approval issued by Immigration Authority Headquarters in Abuja, can obtain a visa on arrival.<br/><br/>", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.7272727272727273, "type": "required", "name": "Nigeria", "continent": "Africa"}}, {"notes": " Online visa can be obtained here ", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Rwanda", "continent": "Africa"}}, {"notes": "Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a maximum stay of 60 days.", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.7727272727272727, "type": "required", "name": "Sudan", "continent": "Africa"}}, {"notes": " Holders of a copy of a pre-arranged visa can obtain a visa on arrival.", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.7954545454545454, "type": "required", "name": "Sierra Leone", "continent": "Africa"}}, {"notes": "Holders of a pre-enrolment can obtain a visa on arrival for a maximum stay of 3 months at Dakar (DKR).", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.8181818181818182, "type": "required", "name": "Senegal", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.8409090909090909, "type": "required", "name": "South Sudan", "continent": "Africa"}}, {"notes": " E-Visas can be applied for here ", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.8636363636363636, "type": "required", "name": "Sao Tome and Principe", "continent": "Africa"}}, {"notes": " Visa may not be required if traveling on an organized tour", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.8863636363636364, "type": "required", "name": "Tunisia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.25, "type": "origin", "name": "India", "continent": "Asia"}, "term": "", "target": {"y": 0.9318181818181818, "type": "required", "name": "South Africa", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.022727272727272728, "type": "required", "name": "Benin", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.045454545454545456, "type": "required", "name": "Niger", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.06818181818181818, "type": "required", "name": "Angola", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.11363636363636363, "type": "required", "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.13636363636363635, "type": "required", "name": "Chad", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.1590909090909091, "type": "required", "name": "Burundi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Botswana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.20454545454545456, "type": "required", "name": "Democratic Republic of the Congo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.22727272727272727, "type": "required", "name": "Central African Republic", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a V.I.P invitation letter.<br/>", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Republic of the Congo", "continent": "Africa"}}, {"notes": " Holders of an invitation letter issued by the authorities of Cote d'Ivoire prior to travel can obtain a visa on arrival.", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Cote dIvoire", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.29545454545454547, "type": "required", "name": "Swaziland", "continent": "Africa"}}, {"notes": " Holders of a pre-arranged approval issued by \"Le Delegue General de a la Surete\" can obtain a visa on arrival.", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.3181818181818182, "type": "required", "name": "Cameroon", "continent": "Africa"}}, {"notes": " Visa not required for sons and daughters of Egyptian father and mother (provided born after 25 July 2004)<br/>- Visa not required for wives of Egyptian nationals", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.3409090909090909, "type": "required", "name": "Egypt", "continent": "Africa"}}, {"notes": " Visa not required for Minors under 18 years of age, accompanied by parents holding a National ID Card issued by Eritrea.", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Eritrea", "continent": "Africa"}}, {"notes": " Visa is not required except for Holders of a Travel Order and a transportation request issued by Government of Gabon. <br/>-Visa not required for Children under 16 years of age are not required to hold a visa.", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.38636363636363635, "type": "required", "name": "Gabon", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a Dual Nationality Card issued by Ghana. <br/>- Holders of an Emergency Visa on arrival Letter (EV) issued by Ghana Immigrations Service can obtain a visa on arrival.", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.4090909090909091, "type": "required", "name": "Ghana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.4772727272727273, "type": "required", "name": "Equatorial Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "Lesotho", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.5227272727272727, "type": "required", "name": "Malawi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.5454545454545454, "type": "required", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.6136363636363636, "type": "required", "name": "Liberia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.6363636363636364, "type": "required", "name": "Libya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.6818181818181818, "type": "required", "name": "Mauritius", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.7045454545454546, "type": "required", "name": "Namibia", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Nigeria holding valid foreign passport together with expired Nigerian passports.<br/>- Holders of written e-visa approval issued by Immigration Authority Headquarters in Abuja, can obtain a visa on arrival.<br/><br/>", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.7272727272727273, "type": "required", "name": "Nigeria", "continent": "Africa"}}, {"notes": " Online visa can be obtained here ", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Rwanda", "continent": "Africa"}}, {"notes": "Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a maximum stay of 60 days.", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.7727272727272727, "type": "required", "name": "Sudan", "continent": "Africa"}}, {"notes": " Holders of a copy of a pre-arranged visa can obtain a visa on arrival.", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.7954545454545454, "type": "required", "name": "Sierra Leone", "continent": "Africa"}}, {"notes": "Holders of a pre-enrolment can obtain a visa on arrival for a maximum stay of 3 months at Dakar (DKR).", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.8181818181818182, "type": "required", "name": "Senegal", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.8409090909090909, "type": "required", "name": "South Sudan", "continent": "Africa"}}, {"notes": " E-Visas can be applied for here ", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.8636363636363636, "type": "required", "name": "Sao Tome and Principe", "continent": "Africa"}}, {"notes": " Visa may not be required if traveling on an organized tour", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.8863636363636364, "type": "required", "name": "Tunisia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.2692307692307692, "type": "origin", "name": "Indonesia", "continent": "Asia"}, "term": "", "target": {"y": 0.9318181818181818, "type": "required", "name": "South Africa", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.022727272727272728, "type": "required", "name": "Benin", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.045454545454545456, "type": "required", "name": "Niger", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.06818181818181818, "type": "required", "name": "Angola", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.11363636363636363, "type": "required", "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.13636363636363635, "type": "required", "name": "Chad", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.1590909090909091, "type": "required", "name": "Burundi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Botswana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.20454545454545456, "type": "required", "name": "Democratic Republic of the Congo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.22727272727272727, "type": "required", "name": "Central African Republic", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a V.I.P invitation letter.<br/>", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Republic of the Congo", "continent": "Africa"}}, {"notes": " Holders of an invitation letter issued by the authorities of Cote d'Ivoire prior to travel can obtain a visa on arrival.", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Cote dIvoire", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.29545454545454547, "type": "required", "name": "Swaziland", "continent": "Africa"}}, {"notes": " Holders of a pre-arranged approval issued by \"Le Delegue General de a la Surete\" can obtain a visa on arrival.", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.3181818181818182, "type": "required", "name": "Cameroon", "continent": "Africa"}}, {"notes": " Visa not required for sons and daughters of Egyptian father and mother (provided born after 25 July 2004)<br/>- Visa not required for wives of Egyptian nationals", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.3409090909090909, "type": "required", "name": "Egypt", "continent": "Africa"}}, {"notes": " Visa not required for Minors under 18 years of age, accompanied by parents holding a National ID Card issued by Eritrea.", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Eritrea", "continent": "Africa"}}, {"notes": " Visa is not required except for Holders of a Travel Order and a transportation request issued by Government of Gabon. <br/>-Visa not required for Children under 16 years of age are not required to hold a visa.", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.38636363636363635, "type": "required", "name": "Gabon", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a Dual Nationality Card issued by Ghana. <br/>- Holders of an Emergency Visa on arrival Letter (EV) issued by Ghana Immigrations Service can obtain a visa on arrival.", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.4090909090909091, "type": "required", "name": "Ghana", "continent": "Africa"}}, {"notes": " Visa is not required for Those traveling as a tourist on a charter flight.<br/>", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.4318181818181818, "type": "required", "name": "Gambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.4772727272727273, "type": "required", "name": "Equatorial Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "Lesotho", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.5227272727272727, "type": "required", "name": "Malawi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.5454545454545454, "type": "required", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.5681818181818182, "type": "required", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.6136363636363636, "type": "required", "name": "Liberia", "continent": "Africa"}}, {"notes": " Visa is not required for Children under 17 years of age of any nationality , providing having Moroccan parent(s) and being registered in parent(s)'s passport.", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.6590909090909091, "type": "required", "name": "Morocco", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.6818181818181818, "type": "required", "name": "Mauritius", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.7045454545454546, "type": "required", "name": "Namibia", "continent": "Africa"}}, {"notes": " Visa is not required for Former inhabitants of Nigeria holding valid foreign passport together with expired Nigerian passports.<br/>- Holders of written e-visa approval issued by Immigration Authority Headquarters in Abuja, can obtain a visa on arrival.<br/><br/>", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.7272727272727273, "type": "required", "name": "Nigeria", "continent": "Africa"}}, {"notes": " Online visa can be obtained here ", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.75, "type": "required", "name": "Rwanda", "continent": "Africa"}}, {"notes": "Holders of an \"Entry Permit\" issued by the Sudanese Ministry of interior can obtain a visa on arrival, for a maximum stay of 60 days.", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.7727272727272727, "type": "required", "name": "Sudan", "continent": "Africa"}}, {"notes": " Holders of a copy of a pre-arranged visa can obtain a visa on arrival.", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.7954545454545454, "type": "required", "name": "Sierra Leone", "continent": "Africa"}}, {"notes": "Holders of a pre-enrolment can obtain a visa on arrival for a maximum stay of 3 months at Dakar (DKR).", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.8181818181818182, "type": "required", "name": "Senegal", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.8409090909090909, "type": "required", "name": "South Sudan", "continent": "Africa"}}, {"notes": " E-Visas can be applied for here ", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.8636363636363636, "type": "required", "name": "Sao Tome and Principe", "continent": "Africa"}}, {"notes": " Visa may not be required if traveling on an organized tour", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.8863636363636364, "type": "required", "name": "Tunisia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.28846153846153844, "type": "origin", "name": "Iran", "continent": "Asia"}, "term": "", "target": {"y": 0.9318181818181818, "type": "required", "name": "South Africa", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.022727272727272728, "type": "required", "name": "Benin", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.045454545454545456, "type": "required", "name": "Niger", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.06818181818181818, "type": "required", "name": "Angola", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.09090909090909091, "type": "required", "name": "Burkina Faso", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.11363636363636363, "type": "required", "name": "Algeria", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.13636363636363635, "type": "required", "name": "Chad", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.1590909090909091, "type": "required", "name": "Burundi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.18181818181818182, "type": "required", "name": "Botswana", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.20454545454545456, "type": "required", "name": "Democratic Republic of the Congo", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.22727272727272727, "type": "required", "name": "Central African Republic", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a V.I.P invitation letter.<br/>", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.25, "type": "required", "name": "Republic of the Congo", "continent": "Africa"}}, {"notes": " Holders of an invitation letter issued by the authorities of Cote d'Ivoire prior to travel can obtain a visa on arrival.", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.2727272727272727, "type": "required", "name": "Cote dIvoire", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.29545454545454547, "type": "required", "name": "Swaziland", "continent": "Africa"}}, {"notes": " Holders of a pre-arranged approval issued by \"Le Delegue General de a la Surete\" can obtain a visa on arrival.", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.3181818181818182, "type": "required", "name": "Cameroon", "continent": "Africa"}}, {"notes": " A prior approval from the Egyptian State of Security Authorities may be required<br/>- Visa not required for sons and daughters of Egyptian father and mother (provided born after 25 July 2004)<br/>- Visa not required for wives of Egyptian nationals", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.3409090909090909, "type": "required", "name": "Egypt", "continent": "Africa"}}, {"notes": " Visa not required for Minors under 18 years of age, accompanied by parents holding a National ID Card issued by Eritrea.", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.36363636363636365, "type": "required", "name": "Eritrea", "continent": "Africa"}}, {"notes": " Visa is not required except for Holders of a Travel Order and a transportation request issued by Government of Gabon. <br/>-Visa not required for Children under 16 years of age are not required to hold a visa.", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.38636363636363635, "type": "required", "name": "Gabon", "continent": "Africa"}}, {"notes": " Visa is not required for Holders of a Dual Nationality Card issued by Ghana. <br/>- Holders of an Emergency Visa on arrival Letter (EV) issued by Ghana Immigrations Service can obtain a visa on arrival.", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.4090909090909091, "type": "required", "name": "Ghana", "continent": "Africa"}}, {"notes": " Visa is not required for Those traveling as a tourist on a charter flight.<br/>", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.4318181818181818, "type": "required", "name": "Gambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.45454545454545453, "type": "required", "name": "Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.4772727272727273, "type": "required", "name": "Equatorial Guinea", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.5, "type": "required", "name": "Lesotho", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.5227272727272727, "type": "required", "name": "Malawi", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.5454545454545454, "type": "required", "name": "Zambia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.5681818181818182, "type": "required", "name": "Zimbabwe", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.5909090909090909, "type": "required", "name": "Kenya", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.6136363636363636, "type": "required", "name": "Liberia", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.6363636363636364, "type": "required", "name": "Libya", "continent": "Africa"}}, {"notes": " Visa is not required for Children under 17 years of age of any nationality , providing having Moroccan parent(s) and being registered in parent(s)'s passport.", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.6590909090909091, "type": "required", "name": "Morocco", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.6818181818181818, "type": "required", "name": "Mauritius", "continent": "Africa"}}, {"notes": "", "source": {"y": 0.3076923076923077, "type": "origin", "name": "Iraq", "continent": "Asia"}, "term": "", "target": {"y": 0.7045454545454546, "type": "required", "name": "Namibia", "co
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment