Skip to content

Instantly share code, notes, and snippets.

@HarryStevens
Last active February 1, 2023 16:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HarryStevens/e3d9d97a404f890d7abfc6ce5afe72c0 to your computer and use it in GitHub Desktop.
Save HarryStevens/e3d9d97a404f890d7abfc6ce5afe72c0 to your computer and use it in GitHub Desktop.
Map Inset
license: gpl-3.0

Per wiki.GIS.com:

An inset map is a smaller map featured on the same page as the main map. Traditionally, inset maps are shown at a larger scale (smaller area) than the main map. Often, an inset map is used as a locator map that shows the area of the main map in a broader, more familiar geographical frame of reference.

Here, the inset changes on an interval. You can stop the interval and change the map yourself by selecting a state or union territory from the dropdown menu.

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
body {
margin: 0;
font-family: "Helvetica Neue", sans-serif;
}
#controls {
position: absolute;
}
#inset {
position: absolute;
}
#inset .subunit-boundary {
fill: #000;
stroke: #000;
}
#inset .inset-rect {
stroke-width: 2px;
stroke: tomato;
fill: none;
}
#map .subunit, #map .subunit-boundary {
vector-effect: non-scaling-stroke;
}
#map .subunit {
fill: #ddd;
stroke: #fff;
stroke-width: 1px;
}
#map .subunit.selected {
stroke: #000;
stroke-width: 2px;
}
#map .subunit-boundary {
fill: none;
stroke: #000;
}
</style>
</head>
<body>
<div id="controls">
<select><option>-- Reset --</option></select>
<button id="stop-go">Stop</button>
</div>
<div id="map-wrapper">
<div id="inset"></div>
<div id="map"></div>
</div>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://unpkg.com/d3-moveto@0.0.3/build/d3-moveto.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.20/topojson.min.js"></script>
<script src="https://unpkg.com/jeezy@1.12.13/lib/jeezy.js"></script>
<script>
var match_property = "st_nm";
var width = window.innerWidth,
height = window.innerHeight;
var projection = d3.geoMercator();
var path = d3.geoPath()
.projection(projection);
var svg = d3.select("#map").append("svg")
.attr("width", width)
.attr("height", height);
var g = svg.append("g");
// set up the inset
var inset_margin = {top: 2, bottom: 2, left: 2, right: 2};
// if the width is greater than the height, the width needs to be proportional to a fixed height
if (width > height){
var inset_height = 100 - inset_margin.top - inset_margin.bottom,
inset_width = (inset_height * width / height) - inset_margin.left - inset_margin.right;
}
// otherwise, the height needs to be proportional to a fixed width
else {
var inset_width = 100 - inset_margin.left - inset_margin.right,
inset_height = (inset_width * height / width) - inset_margin.top - inset_margin.bottom;
}
var inset_projection = d3.geoMercator();
var inset_path = d3.geoPath()
.projection(inset_projection);
var inset_svg = d3.select("#inset").append("svg")
.attr("width", inset_width + inset_margin.left + inset_margin.right)
.attr("height", inset_height + inset_margin.top + inset_margin.bottom)
// move the inset to the bottom right of the parent
d3.select("#inset")
.style("top", +jz.str.keepNumber(svg.style("height")) - +jz.str.keepNumber(inset_svg.style("height")) + "px")
.style("left", +jz.str.keepNumber(svg.style("width")) - +jz.str.keepNumber(inset_svg.style("width")) + "px");
// give the inset a background
inset_svg.append("rect")
.attr("x", 0)
.attr("y", 0)
.attr("width", inset_width)
.attr("height", inset_height)
.style("fill", "white")
.style("fill-opacity", .7);
// this is for the margin
var inset_g = inset_svg.append("g")
.attr("transform", "translate(" + inset_margin.left + ", " + inset_margin.top + ")");
d3.queue()
.defer(d3.json, "india_2000-2014_state.json")
.await(ready);
function ready(error, geo) {
if (error) throw error;
// main map
centerZoom(geo, width, height, projection);
drawSubUnits(geo, g, path);
drawOuterBoundary(geo, g, path);
// inset
centerZoom(geo, inset_width, inset_height, inset_projection);
drawOuterBoundary(geo, inset_g, inset_path);
drawInsetRect();
// set up the select dropwdown
var select = d3.select("select");
var uniques = geo.objects.polygons.geometries.map(function(d){ return d.properties[match_property]; }).sort();
select.selectAll("option")
.data(uniques)
.enter().append("option")
.attr("value", function(d){ return d; })
.text(function(d){ return d; });
// the interval, which stops if the user selects
var count = 0;
var interval_is_on = true;
function intervalFn(){
var val = jz.num.isEven(count) ? jz.arr.random(uniques) : "-- Reset --";
select.property("value", val);
zoomTo(geo, val);
++count;
}
var interval = d3.interval(intervalFn, 2000);
d3.select("#stop-go").on("click", function(){
if (interval_is_on) {
interval.stop();
d3.select(this).text("Go");
interval_is_on = false;
} else {
interval = d3.interval(intervalFn, 2000);
d3.select(this).text("Stop");
interval_is_on = true;
}
});
select.on("change", function(){
interval.stop();
d3.select("#stop-go").text("Go");
interval_is_on = false;
zoomTo(geo, select.property("value"));
});
}
function zoomTo(data, subunit){
svg.select(".subunit-boundary").moveToFront();
svg.selectAll(".subunit").classed("selected", false);
// zoom back out if the selection is reset
if (subunit == "-- Reset --"){
g.transition().duration(1500).attr("transform", "translate(0, 0)scale(1)");
inset_g.select(".inset-rect").transition().duration(1500)
.attr("width", inset_width)
.attr("height", inset_height)
.attr("x", 0)
.attr("y", 0);
return;
}
var selector = ".subunit." + jz.str.toSlugCase(subunit);
svg.select(selector).classed("selected", true).moveToFront();
// See: https://bl.ocks.org/mbostock/4699541
var bounds = path.bounds(topojson.feature(data, data.objects.polygons).features.filter(function(f){ return f.properties[match_property] == subunit; })[0]),
dx = bounds[1][0] - bounds[0][0],
dy = bounds[1][1] - bounds[0][1],
x = (bounds[0][0] + bounds[1][0]) / 2,
y = (bounds[0][1] + bounds[1][1]) / 2,
scale = 1 / Math.max(dx / width, dy / height),
translate = [width / 2 - scale * x, height / 2 - scale * y];
g.transition().duration(1500).attr("transform", "translate(" + translate + ")scale(" + scale + ")");
// My own math, which is kind of the same as the above but
// takes into account that the inset is proportionally smaller
// than the main map.
var inset_scale_width = inset_width / scale;
var inset_scale_height = inset_height / scale;
var co_h = inset_height / height;
var subunit_height = (bounds[1][1] - bounds[0][1]) * co_h;
var inset_dy = (inset_scale_height - subunit_height) / 2;
var inset_y = bounds[0][1] * co_h - inset_dy;
var co_w = inset_width / width;
var subunit_width = (bounds[1][0] - bounds[0][0]) * co_w;
var inset_dx = (inset_scale_width - subunit_width) / 2;
var inset_x = bounds[0][0] * co_w - inset_dx;
inset_g.select(".inset-rect").transition().duration(1500)
.attr("width", inset_scale_width)
.attr("height", inset_scale_height)
.attr("x", inset_x)
.attr("y", inset_y);
}
function centerZoom(data, width, height, this_projection) {
this_projection.fitSize([width, height], topojson.feature(data, data.objects.polygons));
}
function drawInsetRect(data){
inset_g.append("rect")
.attr("class", "inset-rect")
.attr("x", 0)
.attr("width", inset_width)
.attr("y", 0)
.attr("height", inset_height);
}
function drawOuterBoundary(data, parent, this_path) {
var boundary = topojson.mesh(data, data.objects.polygons, function(a, b) { return a === b; });
parent.append("path")
.datum(boundary)
.attr("d", this_path)
.attr("class", "subunit-boundary");
}
function drawSubUnits(data, parent, this_path) {
parent.selectAll(".subunit")
.data(topojson.feature(data, data.objects.polygons).features)
.enter().append("path")
.attr("class", function(d){ return "subunit " + jz.str.toSlugCase(d.properties[match_property]); })
.attr("d", this_path);
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","arcs":[[[19757,392],[77,-195],[-27,0],[25,-35],[-37,-43],[4,-72],[-39,1],[-19,-48],[-62,166],[-64,36],[-6,97],[23,51],[125,42]],[[19653,556],[34,-69],[-85,-93],[-11,103],[58,19],[4,40]],[[19398,1024],[62,-71],[0,-49],[-110,47],[8,60],[40,13]],[[19526,1027],[22,-78],[-53,45],[31,33]],[[19509,1193],[-18,-67],[36,-91],[-37,-31],[-12,38],[34,27],[-34,-21],[-25,93],[56,52]],[[19202,1293],[-1,-63],[57,-66],[-87,61],[31,68]],[[18946,2008],[27,-82],[-77,-11],[-5,75],[55,18]],[[18733,3349],[53,-89],[8,-86],[-44,-54],[21,-31],[-42,-52],[-98,16],[27,68],[-34,135],[109,93]],[[18828,3845],[34,-60],[-28,-24],[32,-29],[-72,-19],[34,132]],[[18511,3907],[31,-3],[-7,-53],[-36,9],[12,47]],[[18750,3920],[22,-12],[-30,-28],[8,40]],[[19084,4275],[55,-128],[-92,90],[37,38]],[[19097,4329],[3,-53],[-27,28],[24,25]],[[19126,4375],[13,-97],[-35,50],[22,47]],[[19161,4411],[0,-103],[-29,40],[29,63]],[[18871,4435],[5,-62],[41,11],[-17,-74],[37,-32],[-35,-4],[24,-35],[-31,-2],[-3,-117],[-34,-42],[30,22],[20,85],[30,4],[3,-29],[-26,-160],[-40,4],[-28,-43],[22,-26],[21,55],[27,-20],[-36,-152],[-72,69],[-7,47],[28,13],[-28,-2],[-16,67],[-19,-19],[-38,126],[38,79],[33,-71],[13,191],[58,117]],[[18897,4437],[25,-50],[-33,7],[8,43]],[[19053,4490],[-8,-63],[-17,46],[25,17]],[[18970,4487],[47,-15],[-4,-71],[-28,0],[-63,-109],[-19,29],[20,62],[4,45],[-21,16],[30,27],[-8,23],[42,-7]],[[19026,4981],[63,-166],[-10,-172],[-41,-74],[-45,41],[33,-33],[-70,17],[67,-94],[-48,-15],[-46,14],[-14,-19],[-27,3],[-27,250],[52,50],[23,-28],[5,31],[-43,0],[-7,124],[62,56],[21,-10],[8,6],[-1,-12],[3,-2],[10,2],[13,3],[-1,10],[18,4],[1,24],[1,-10]],[[18870,5042],[18,-94],[-39,-74],[-16,63],[37,105]],[[19109,5047],[-42,-46],[5,39],[37,7]],[[19127,5511],[-11,-112],[42,-22],[-34,-26],[23,7],[26,-37],[-19,-26],[-18,52],[-42,-32],[-29,12],[89,-58],[-23,-153],[-49,-56],[-27,60],[-10,-25],[-15,19],[26,-89],[-20,-19],[-24,29],[-21,-45],[5,-20],[12,5],[-5,-15],[3,-5],[-24,-6],[2,9],[-2,4],[-36,17],[23,81],[-28,5],[16,87],[30,11],[-30,11],[34,67],[-24,34],[15,96],[58,111],[56,-6],[-2,36],[17,-24],[16,23]],[[19117,5595],[7,-39],[-38,23],[31,16]],[[10166,7745],[-94,-44],[4,30],[90,14]],[[12765,9966],[-132,-166],[-31,-1],[-3,-73],[-215,-220],[53,25],[-159,-155],[-111,6],[98,-15],[-1,-31],[-433,-228],[-1,-46],[-84,-35],[-81,-166],[-76,-71],[-33,10],[14,-39],[-457,-239],[-245,-214],[-43,-112],[87,-59],[-20,134],[30,-85],[-19,-127],[-24,2],[37,-18],[-34,-42],[7,-57],[-33,33],[-20,-50],[38,-3],[-126,-55],[24,60],[-31,-62],[-319,-143],[-1,39],[-12,-43],[-123,71],[-16,-32],[-166,8],[-52,-46],[16,-27],[-42,-53],[-46,-186],[-53,22],[44,-32],[-101,-92],[-2,-70],[-51,36],[38,-37],[-40,-26],[-58,75],[42,-73],[-60,-20],[-64,140],[-199,-18],[-170,-142],[-42,-111],[-36,23],[-31,-12],[39,1],[21,-23],[-23,-33],[21,4],[-83,-130],[-15,-113],[-41,12],[33,-22],[-21,-107],[22,-191],[84,-181],[-69,-45],[78,24],[-51,-336],[12,-106],[79,-176],[17,-191]],[[9300,5505],[-21,-77],[-124,18],[1,49],[-62,-9],[36,-34],[-48,-14],[-37,-107],[-157,-51],[49,-40],[-31,-23],[-43,10],[-16,60],[-68,-29],[-34,53],[-83,10],[-42,-17],[39,-18],[-1,-75],[-58,-20],[-31,-54],[-69,31],[-50,-103],[-134,55],[-50,-7],[8,-40],[-33,1],[-5,54],[-134,-25],[-6,-41],[-62,-21],[25,-49],[-76,-188],[-49,39],[20,-29],[-42,-70],[-67,0],[-80,64],[-58,-8],[24,57]],[[7731,4857],[16,77],[47,0],[33,65],[70,-22],[14,-38],[1,32],[-42,32],[44,25],[-5,55],[90,101],[-10,116],[-27,-36],[-38,42],[-81,10],[24,10],[-33,18],[27,180],[-160,-17],[-21,74],[-58,-11],[25,166],[-56,37],[-75,-54],[17,106],[-42,-44],[-72,31],[7,-60],[-88,-57],[-3,-47],[-47,35],[-21,-39],[-78,13],[1,-45],[-35,-9],[-40,128],[-135,3],[-12,45],[-43,-29],[-1,47],[-41,-55],[33,-77],[-82,-13],[-26,26],[-26,-24],[-19,59],[52,90],[-81,78],[34,35],[-65,75],[99,12],[3,-97],[75,-9],[21,-40],[128,27],[31,-35],[-4,-69],[38,-13],[26,71],[-81,44],[53,65],[-39,-6],[2,23],[48,37],[70,-15],[-1,88],[-88,52],[24,-91],[-25,-16],[-19,62],[-61,6],[1,44],[-100,5],[-36,-100],[-125,18],[-47,124],[45,8],[25,63],[-80,-8],[-85,108],[15,143],[53,20],[13,108],[-79,26],[8,82],[236,-57],[65,130],[-33,49],[33,30],[-42,55],[-37,-4],[-70,136],[43,8],[2,108],[67,-7],[7,27],[-60,54],[13,79],[-33,7],[43,63],[80,32],[254,-23],[-18,266],[81,33],[0,38],[-192,34],[-84,71],[102,13],[38,27],[-19,38],[56,16],[4,51],[-41,12],[38,13],[-32,29],[11,56],[25,-4],[-13,105],[35,80],[-28,78],[-80,46],[16,47],[57,45],[-2,77],[59,1],[-14,45],[78,14],[32,47],[24,-24],[2,26],[-73,22],[-1,24],[-68,-17],[-48,32],[8,89],[86,45],[-39,44],[110,136],[-83,68],[42,37],[-28,81],[30,63],[-41,11]],[[7209,9330],[-19,109],[46,15],[-30,15],[42,8],[-3,60],[108,6],[-3,97],[19,26],[22,-19],[39,100],[81,12],[-142,166],[34,59],[36,-9],[-2,86],[46,57],[-35,28],[68,32],[79,-80],[92,-5],[9,142],[98,36],[-23,82],[25,37],[-32,48],[75,95],[-56,56],[19,53],[135,-99],[84,20],[187,-48],[10,-82],[85,-6],[-11,-78],[114,-19],[58,-55],[35,6],[16,117],[175,-93],[55,42],[43,-37],[32,58],[112,15],[145,-155],[-41,-141],[18,-45],[-65,-54],[1,-56],[58,-10],[3,-132],[-35,-23],[168,-124],[120,34]],[[9304,9677],[55,-105],[116,31],[183,-175],[48,-129],[-43,-25],[2,-38],[48,-4],[25,55],[25,-82],[86,29],[-23,-71],[68,-235],[98,51],[174,-37]],[[10166,8942],[174,8],[318,196],[187,-58],[-7,40],[55,4],[3,82],[24,-6],[-45,49],[67,90],[-45,8],[38,42],[-18,33],[87,103],[62,-80],[-15,-39],[51,-17],[-15,-79],[35,-34],[25,47],[83,36],[25,88],[65,-22],[14,-46],[116,16],[5,43],[-34,13],[57,75],[-44,8],[13,54],[120,82],[11,40],[36,-7],[111,81],[-38,78],[-32,-22],[-11,51],[80,5],[36,-40],[3,100],[55,-52],[71,120],[94,-190],[27,-9],[-32,57],[36,25],[65,-154],[121,-13],[42,-46],[193,38],[3,61],[71,38],[-11,81],[44,-27],[73,68],[16,-42],[52,32],[-49,57],[85,23],[-3,-35],[49,-30]],[[10792,8080],[43,-38],[38,27],[-81,11]],[[20827,16112],[5,81],[-46,63],[38,21],[-29,124]],[[20795,16401],[40,-11],[162,85],[45,108],[57,-32],[166,50],[67,-24],[96,85],[-31,55],[-99,-4],[25,100],[-72,57],[-22,87],[169,192],[-285,-8],[-172,-93],[-52,23],[-347,-101],[-312,-151],[-22,36],[-120,-7],[-18,38],[-32,-24],[38,-71],[-234,-185],[-114,-115],[22,-60],[-124,-86],[-505,-44],[-113,74],[-164,25],[-57,-62],[-368,-54]],[[18419,16284],[-3,92],[-53,46],[-8,79],[35,49],[-23,35],[63,17],[-48,32],[-30,124],[-286,4],[-69,120],[63,107],[-73,73],[215,-37],[73,-77],[225,117],[41,-1],[33,-64],[149,50],[41,-19],[143,139],[-59,59],[19,51],[213,110],[28,-25],[17,56],[151,27],[10,54],[-37,32],[71,53],[48,109],[118,36],[219,-13],[53,31],[63,-28],[58,83],[-5,54],[124,92],[46,104],[167,116],[97,1],[54,97],[115,-87],[16,-62],[56,16],[117,-44],[-20,35],[195,-52],[13,-49],[138,-11],[38,85],[39,-10],[-7,69],[47,39],[371,163],[125,-185],[92,40],[23,-23],[-36,-70],[-179,-75],[54,-73],[-14,-66],[139,102],[137,38],[-37,-69],[107,-175],[-24,-46],[-87,-27],[17,-41],[-130,-84],[36,-38],[-84,-60],[82,-15],[22,-41],[46,61],[158,37],[85,-75],[95,10],[75,-57],[74,43],[237,-138],[-54,-30],[-18,-70],[83,-43],[-20,-103],[-102,11],[-277,-234],[31,-73],[-20,-55],[199,-265],[-77,-22],[-150,69],[7,60],[-133,92],[-77,-9],[-69,-61],[-222,-7],[-152,-71],[-77,-116],[-99,-26],[-60,-107],[-44,18],[-47,-72],[-61,8],[-80,-106],[-97,-35],[-50,25]],[[20795,16401],[-134,-95],[-104,6],[-65,-103],[-89,-59],[-63,6],[-23,-39],[-82,-17],[-117,-168],[-31,78],[-69,-79],[-9,-95],[-52,-14],[-79,-124],[-39,-134],[19,-71],[-141,-85],[-18,123],[-65,-46],[13,-49],[-288,-244],[100,-90],[10,-102]],[[19469,15000],[-174,-235],[10,-54],[-50,-113],[-67,-1],[-26,-81],[24,-102],[-36,-7],[-17,-133],[-29,-6]],[[19104,14268],[-132,-20],[-49,115],[-58,-134],[-51,-17],[-10,-65],[-47,-5],[-53,-85],[-34,9],[-11,82],[-97,-1]],[[18562,14147],[-64,-2],[46,105],[-30,100]],[[18514,14350],[-6,144],[44,87],[-31,94],[50,10],[68,-49],[78,10],[-56,131]],[[18661,14777],[46,62],[45,-7],[-14,33],[75,-19],[35,48],[105,34],[-30,25],[15,67],[-167,109],[67,101],[-63,-26],[-144,157],[-172,-66],[-6,114],[56,76],[-53,31],[108,108],[-288,-64],[-36,80],[-43,17],[-68,-48],[-48,-125],[-45,28],[17,67],[-44,9],[-78,-131],[39,1],[-147,-27],[-85,-93],[-34,42],[13,67],[-150,-29],[22,53],[-48,-1],[-19,49],[-18,-28],[-84,32],[-25,-36],[-23,40],[-47,-5],[-48,-42],[-32,49],[-54,-51],[17,50],[-44,46],[-276,-44],[-172,-175],[95,-110],[-112,-48],[-16,-58]],[[16683,15139],[21,117],[-50,158],[53,101],[-43,4],[31,23],[-41,11],[-4,40],[-16,-17],[4,57],[-58,63]],[[16580,15696],[0,113],[32,-13],[18,51],[57,26],[-23,9],[34,52],[-10,197]],[[16688,16131],[4,27],[251,27],[20,67],[75,-2],[40,38],[276,-106],[255,10],[32,32],[185,-32],[55,45],[65,-37],[150,12],[131,88],[144,-54],[48,38]],[[15340,15998],[31,-23],[66,33],[-41,-50],[87,-110],[-171,-144],[-81,-19],[3,-57],[-97,-30],[-30,-107],[83,-49],[-10,-66],[115,-64],[-21,-84],[40,-67],[-35,-14],[-78,40],[-111,-74],[1,-91],[56,-44],[-15,-63],[-38,17]],[[15094,14932],[-159,103],[-31,-54],[-45,11],[-8,-81],[-114,23],[-25,-108],[-61,0],[-50,-53],[9,-112],[-62,-51],[-21,-174],[-93,29],[-15,-84],[-85,21],[-18,44],[-83,-47],[-51,35],[-75,-70],[-41,-121],[-133,76],[34,98],[-146,16],[-7,82],[-66,29],[9,31],[-77,-38],[-56,55],[-108,18],[-67,-110],[11,-85],[-67,17],[-45,-63],[-182,2],[-101,-52],[14,-27],[-62,-41],[-10,49],[-137,-55],[-14,74],[-35,-9],[-30,63],[-89,-60],[-16,-50],[-66,15],[-40,-29],[-21,-72],[5,36],[-64,-1],[-95,97],[25,42],[-25,51],[-28,-29],[-53,20],[-7,-36],[-26,24],[-28,-48],[-90,127],[-96,-85],[-284,-5]],[[11793,14370],[33,80],[-47,90],[-72,37],[-53,189],[25,146],[376,193],[-22,23],[83,75],[122,64],[14,67],[147,-47],[36,67],[121,-54],[36,39],[13,-34],[2,42],[58,-6],[-78,121],[-279,91],[-114,124],[-5,77],[114,5],[9,103],[-77,9],[-46,51],[-84,2],[0,55],[112,20],[26,80],[147,-35],[109,23],[-89,102],[-50,-11],[6,99],[-56,-23],[-21,43],[-69,4],[-8,123],[-39,19],[24,22],[-63,-2],[30,87],[-62,48],[15,53],[-68,-2],[21,20]],[[12070,16649],[-12,82],[138,-8],[63,69],[111,-58],[30,-53],[252,-36],[54,-94],[-35,-143],[243,-68],[74,-63],[-19,-25],[125,12],[13,-89],[95,-14],[232,106],[69,-45],[8,-134],[88,-34],[1,-33],[136,80],[148,-62],[95,21],[300,-155],[125,30],[135,101],[16,-109],[191,-84],[22,48],[72,26],[113,-47],[53,44],[68,-21],[17,47],[47,-26],[32,41],[107,-106],[52,64],[11,85]],[[12180,12750],[-20,-15],[50,-31],[-28,-78],[-111,-19],[-83,-82],[-82,-14],[-67,-98],[32,-31],[-48,-8],[-2,-74],[50,-43],[-12,-54],[-91,-49],[13,-34],[-49,-53],[50,-40],[-25,-17],[-9,36],[-46,-30],[-36,-94],[53,-119],[-103,21],[4,-72],[-43,-20],[-22,-101],[-54,-28],[-126,60],[-247,-21],[-10,-91],[-126,-172],[-87,48],[17,-210],[-34,-56],[81,-104],[-29,-295],[160,-60],[84,4],[-4,-128],[-91,-49],[7,76],[-117,30],[-79,-59],[-84,136],[-40,-16],[-93,58],[-26,-33],[-63,75],[-58,-54],[-13,-103],[85,-43],[15,-48],[62,-10],[-29,-227],[54,7],[21,-70],[49,-5],[-33,-45],[33,-34],[-18,-156],[40,-28],[22,-146],[-52,-12],[-9,-84],[-61,-29],[-2,-35],[-86,-18],[-15,-49],[-48,17],[47,-74],[-68,-37],[-87,-135],[-167,-70],[-39,-234],[-31,-76],[-33,8],[-7,-64]],[[9304,9677],[-19,33],[82,52],[-63,132],[89,204],[143,130],[32,-75],[48,15],[13,-34],[46,2],[74,60],[-44,53],[80,32],[-49,78],[-132,40],[7,65],[-97,66],[2,36],[-57,4],[7,-42],[-64,18],[79,60],[-70,51],[88,-1],[20,109],[-37,59],[-81,4],[-8,79],[181,74],[-25,50],[28,169],[-85,-16],[-23,26],[76,54],[-30,202],[-66,-2],[-17,134],[18,61],[137,62],[17,65]],[[9604,11786],[56,115],[-3,209],[66,13],[5,169],[68,127],[34,-1],[22,-52],[20,18],[-26,41],[34,9],[3,78],[73,53],[-3,118],[54,40],[30,-31],[65,24],[15,35],[43,-16],[14,-51],[94,80],[75,-1],[31,75],[82,26],[5,169],[132,68],[-2,97],[164,52],[27,148],[-67,59],[-95,12],[-46,96],[-68,-17],[-71,45],[-99,-49],[-29,66],[91,108],[-68,107],[9,43],[39,15],[93,-92],[104,49],[99,-42],[122,26],[17,-37],[223,-18],[9,32],[96,27],[3,41],[117,45]],[[11261,13914],[101,-71],[114,2],[79,35],[103,146]],[[11658,14026],[141,-59],[42,-134],[103,-34],[61,-178],[124,-30],[2,48],[53,8],[12,-71],[-44,-131],[60,-6],[21,-36],[-29,-154],[74,-46],[14,-95],[33,48],[21,-38],[118,-1],[14,-29],[-15,-60],[-111,-105],[-4,-53],[-108,-27],[-60,-93]],[[8979,3422],[-2,-130]],[[8977,3292],[-100,108],[33,-2],[-7,37],[76,-13]],[[5656,3992],[-6,10]],[[5650,4002],[6,-10]],[[8945,4105],[-10,-38]],[[8935,4067],[-64,3],[20,43],[20,-16],[34,8]],[[8813,4144],[15,-23],[-41,4],[26,19]],[[8818,4203],[22,-31],[-35,-10],[1,103],[12,-62]],[[8970,4204],[-25,-98]],[[8945,4106],[-25,3],[-2,-1],[-2,29],[-21,-20],[-37,31],[-1,-1],[3,28],[32,-11],[-36,37],[16,28],[-43,3],[28,36],[54,-27],[-26,-15],[17,-49],[48,46],[20,-19]],[[8983,4244],[13,32]],[[8996,4276],[-13,-32]],[[6616,19526],[44,-115]],[[6660,19411],[-53,29],[-53,-32],[28,-52],[72,-8]],[[6654,19348],[72,-70],[-19,-128],[29,-43],[-31,-24],[-42,61],[-83,-11],[-7,-71],[-130,-54],[-11,-31],[39,24],[45,-55],[-84,-86],[-62,15],[-33,82],[-15,-60],[-50,17],[-2,-33],[-92,41],[40,-44],[-69,-142],[58,-48],[-126,-51],[-33,-48],[-120,0],[-83,64],[-51,-14],[-7,-43],[-99,-10],[-96,53],[-84,-92],[12,-28],[-25,9],[-17,-83],[-56,-17],[-51,94],[57,72],[-37,70],[-22,-46],[-50,21],[-4,87],[-73,-47],[-57,75],[-88,36],[-85,-19],[-34,-52],[-99,31]],[[4879,18750],[-484,23],[59,182]],[[4454,18955],[-70,135],[67,57],[-32,4],[3,41],[19,-24],[41,59],[50,-5],[18,71],[143,98],[-17,31],[124,137],[94,40],[14,50],[79,1],[29,33],[-56,34],[-54,-42],[-36,43],[11,143],[96,118],[-59,32],[31,55],[-103,123],[61,27],[37,106],[162,57],[49,77],[98,-14],[127,27],[24,40],[43,-14],[87,109],[-30,87]],[[5504,20691],[114,-2],[22,-52],[22,59],[140,56],[125,128]],[[5927,20880],[-17,-56],[62,-74],[-239,-147],[31,-56],[-65,-67],[244,-108],[213,-521],[95,10],[52,99],[52,-128],[28,22],[52,-45],[28,20],[7,-51],[35,8],[-27,-36],[15,-144],[123,-80]],[[4879,18750],[27,-63],[-68,-63],[5,-35],[103,7],[-31,-153],[37,-30],[-66,-62],[52,-99],[189,61],[66,-32],[20,-67],[67,4],[29,-44],[79,29],[33,-27],[74,47],[-3,-47],[62,21],[-27,-96],[57,-102],[59,-5],[-34,-68],[68,-253],[171,-127],[-6,-40],[117,-32],[131,-173],[-50,14],[-71,-64],[38,-34],[39,18],[-87,-113],[42,-20],[-11,-36],[96,3],[65,-49],[39,27],[-53,122],[46,32],[-28,22],[127,-19],[10,31],[-44,22],[45,22],[-59,41],[75,-33],[73,13],[20,-39],[-38,-10],[38,-23],[-34,-13],[66,-8],[-1,-56],[94,39],[-6,63],[153,105],[86,-67],[-46,-392],[52,-1],[18,68],[66,-3],[-45,32],[14,34],[68,-35],[18,32],[14,-25],[19,30],[30,-30],[34,17]],[[7002,17018],[46,-89],[-1,-134],[73,-55],[2,-51],[109,-59],[31,14],[-17,-35],[62,-81],[-135,-85],[100,-65],[35,30],[24,-42],[39,18],[-256,-126],[20,-97],[34,16],[4,66],[82,-12],[115,84],[105,-39],[8,29],[82,-11],[12,-41],[69,75],[80,0],[36,-24],[-55,-28],[15,-43]],[[7721,16233],[-38,-7],[12,-29],[-59,5],[-11,-92],[-72,15],[-76,-32],[-63,-87],[-297,-120],[4,-33],[-75,-7],[-102,-97],[-61,1],[-182,-117],[-63,-113],[-165,-64],[-48,-113],[-37,-13],[63,-223],[158,-105],[95,8],[38,-38],[103,52],[100,-23],[60,91],[60,-9],[-19,-71],[63,-107],[-15,-64],[-74,-24],[-103,24],[-243,-83],[73,-112],[-114,-42],[35,-57],[81,13],[58,-44],[29,-114],[-77,-89],[-40,67],[-76,-7],[20,-158],[80,-107],[-34,-61],[-77,-9],[-77,42],[-6,91],[-81,-28],[-6,-56],[-38,-14],[-47,55],[-43,-19],[-67,37],[-86,-30],[-23,93],[-50,-109],[10,-82],[-134,-56],[12,-75],[-154,-64],[-58,41],[21,-37],[-34,-79],[-79,32],[-17,48],[-80,49],[45,104],[53,-46],[66,34],[24,-53],[103,86],[2,29],[-72,23],[65,87],[-77,128],[49,56],[44,-45],[47,30],[7,93],[-69,34],[8,94],[-61,29],[-112,-62],[-25,28],[-100,-24],[-181,24],[-24,37],[51,55],[-34,59],[75,-78],[86,41],[6,23],[-126,-2],[11,70],[30,-61],[24,115],[-144,2],[-31,-126],[-58,-24],[-76,15],[-76,78],[2,-147],[122,2],[10,-35],[-98,-78],[-72,113],[-19,-87],[32,-13],[-81,-130],[113,-35],[-82,-149],[109,-17],[-10,-39],[86,-149],[-67,-126],[26,-197],[-252,-136],[-74,-107],[27,-38],[114,-8],[-5,-40],[40,-9],[-181,-99],[-93,19],[-53,-40]],[[4719,13185],[-59,101],[-49,-29],[-43,22],[5,73],[-125,87],[-60,-32],[-48,89],[-52,9],[-30,-37],[-16,35],[-56,-2],[22,137],[-64,27],[-50,-31],[-3,70],[-113,68],[0,60],[48,56],[-39,159],[-99,-94],[-36,33],[19,38],[-108,70],[48,99],[67,46],[-113,24],[7,81],[-73,-19],[-28,-70],[21,-16],[-52,-30],[-43,32],[-105,-4],[-27,78],[-118,40],[-28,-78],[-33,-2],[-17,78],[-148,62],[79,31],[-145,-3],[-87,74],[-84,-63],[-52,39],[-14,-57],[-46,54],[-106,-30],[-134,33],[-148,-53],[-147,60]],[[2237,14500],[-124,206],[-39,169],[-170,200],[-5,249],[-206,-26],[-89,29],[-136,183],[-10,123],[68,124],[-1,250],[-84,40],[-200,-2],[-229,124],[6,209],[54,133],[339,313],[85,199],[184,166],[168,-2],[65,-69],[52,-147],[106,-28],[301,115],[297,20],[185,71],[28,137],[208,209],[75,229],[66,77],[431,211],[255,428],[93,308],[305,104],[139,103]],[[15838,16490],[-149,33],[-97,-87],[-98,38],[-118,-14],[-110,85]],[[15266,16545],[37,99],[-13,125],[117,239],[-51,131],[204,22],[115,49],[63,75],[163,-97],[41,-121],[-31,-156],[-61,-84],[32,-129],[87,-64],[-18,-41],[-75,-22],[-38,-81]],[[8575,2054],[74,-105],[-168,90],[86,38],[8,-23]],[[8945,4106],[0,-1]],[[8935,4067],[-28,-179],[31,-158],[32,-13],[9,-295]],[[8977,3292],[22,-437],[-64,-12],[-51,47],[-70,7],[-20,-16],[126,-35],[-177,26],[53,22],[-63,17],[-10,-36],[-132,-7],[-92,-127],[27,-89],[-261,-363],[-24,-87],[27,-51],[95,-94],[105,-15],[-256,-24],[-217,-100],[-117,-12],[-114,-83],[-47,30],[42,-38],[-74,-97],[-5,-99],[31,7],[-50,-60],[-6,-162],[-51,-98],[-256,-164],[-112,-22],[-26,-50],[-183,34],[-168,138]],[[6859,1242],[61,23],[-19,53],[58,48],[-18,45],[60,36],[-85,162],[46,31],[20,72],[-85,119],[92,106],[12,120],[99,167],[-43,79],[-66,-24],[-80,33],[63,148],[-23,85],[44,56],[-57,107],[56,19],[15,71],[-45,108],[-46,4],[-148,-111],[-117,70],[-12,267],[52,3],[19,114],[-62,74],[-130,50],[44,87],[67,9],[-43,4],[1,59],[-37,19],[27,52],[-211,-24],[-5,41],[72,50],[-1,48],[-99,66],[-132,21],[-11,85],[96,15],[57,62]],[[6345,3971],[62,31],[43,-71],[214,-28],[-6,56],[54,113],[47,-15],[34,31],[81,-73],[-5,41],[108,32],[137,-42],[50,147],[139,7],[80,134],[-38,53],[-196,24],[3,49],[56,17],[60,101],[4,56],[-39,-7],[24,25],[-28,47],[15,80],[109,6],[53,99],[-12,38],[103,36],[5,-52],[16,29],[44,-43],[35,38],[57,-59],[77,-14]],[[9300,5505],[59,-218],[-71,-426],[-70,-240],[-222,-345]],[[8983,4244],[-13,-40]],[[6660,19411],[-6,-63]],[[18562,14147],[31,-85],[-5,-190],[-55,-78],[8,-72]],[[18541,13722],[-34,-58],[-54,65],[-60,-71],[-93,67],[17,-199],[-100,-65],[-46,-77],[36,-171],[-84,-82],[-81,-40],[-48,30],[-39,166],[-71,77],[-24,-70],[28,-100],[-39,2],[-59,199],[18,32],[-119,195],[-1,50],[32,-14],[4,29],[-41,39],[56,13],[8,145],[53,52],[60,-11],[2,108],[187,-10],[32,110],[18,-54],[51,-22],[-9,85],[76,-15],[45,-72],[16,164],[55,-9],[-19,44],[24,8],[91,-8],[37,31],[-10,84],[58,-19]],[[8605,14856],[36,-76],[-42,5],[6,71]],[[9147,17850],[148,-62],[82,-95],[53,2],[59,-63],[-5,86],[45,19],[170,-134],[93,-24],[-2,-29],[238,-81],[81,-180],[84,28],[41,-72],[315,-181],[62,58],[79,-5],[296,-200],[197,42],[21,-184],[341,-38],[98,-100],[61,35],[9,85],[162,-7],[195,-101]],[[11793,14370],[-81,-21],[5,-75],[40,-35],[-59,-41],[20,-39],[-60,-133]],[[11261,13914],[-51,47],[19,45],[-84,46],[49,4],[33,124],[-2,65],[-41,10],[4,138],[68,-3],[-29,75],[-53,-1],[-28,45],[-99,-39],[-75,44],[-18,-88],[-89,13],[2,45],[-51,0],[11,86],[-23,-38],[-32,8],[18,69],[-64,-26],[-83,47],[-35,-16],[-48,50],[1,94],[-84,1],[-101,56],[-41,-15],[21,34],[-42,71],[-54,-5],[-18,-89],[-64,26],[23,21],[-78,32],[-11,-46],[-36,42],[-43,-189],[-40,20],[-22,-54],[-43,49],[-211,-7],[79,175],[-21,28],[-32,-2],[-7,-67],[-21,29],[-77,-7],[59,-61],[-79,-6],[-61,81],[9,-67],[-102,24],[52,-77],[-69,-16],[-20,36],[52,8],[-41,33],[-57,-20],[12,-38],[-80,9],[3,31],[49,-1],[4,70],[56,24],[-19,55],[-73,37],[5,80],[-42,33],[-102,-73],[-79,4],[-19,-60],[-115,-23],[7,-115],[-85,37],[-114,-10],[-25,37],[-58,-77],[-17,42],[-53,-17],[-12,46],[82,81],[-95,19],[-11,-23],[-5,54],[-40,6],[-27,-55],[62,1],[6,-48],[-57,28],[23,-93],[-52,22],[2,-36],[-41,28],[-43,-32],[-35,66],[-48,-40],[27,67],[-40,41],[-26,-26],[19,-39],[-37,19],[-59,-44],[4,73],[72,24],[-13,52],[-59,-4],[-27,-94],[-45,56],[71,72],[57,11],[-43,-20],[27,-19],[39,19],[-14,51],[-44,6],[21,92],[-79,-41],[5,-62],[-79,55],[18,-54],[44,-3],[-54,-14],[17,-44],[-82,24],[33,33],[-37,12],[-71,-39],[12,-35],[-40,9],[0,-46],[-75,-15],[109,-24],[22,-130],[34,-29],[-15,-78],[122,-121],[-24,-170],[102,28],[65,-115],[-41,3],[-4,-28],[59,-20],[-14,-71],[-68,-106],[-67,-34],[-24,63],[-70,-11],[-126,120],[-97,-95],[-42,43],[27,46],[-109,110],[38,117],[-80,154],[126,115],[0,72],[89,32],[-114,199],[41,65],[56,18],[7,70],[169,1],[120,48],[-44,101],[49,65],[39,-25],[-11,50],[120,179],[-46,46],[44,13],[-19,30],[35,14],[-28,27],[56,-8],[-15,27],[74,63],[-44,15],[39,66],[-60,9],[9,38],[-62,57],[10,90],[-42,-18],[7,28],[-179,83],[-115,-34],[-165,94],[-70,-43],[-39,12]],[[7002,17018],[201,122],[-52,104],[57,77],[-42,25],[41,29],[-57,18],[5,116],[-105,77]],[[7050,17586],[-34,47],[33,34],[-10,87],[-97,64],[-8,58]],[[6934,17876],[22,112],[-71,81],[25,186],[-53,160],[45,140],[-20,52],[118,225],[111,47],[7,50],[114,115],[3,59]],[[7235,19103],[-9,17]],[[7226,19120],[56,4],[228,-132],[-112,-119],[-65,-185],[69,-153],[123,19],[28,-129],[265,202],[62,-19],[58,-25],[30,-95],[60,-51],[245,-85],[-104,-103],[-57,-9],[106,-46],[37,-89],[48,13],[42,-40],[8,44],[80,-35],[21,-86],[108,-56],[47,14],[39,-93],[97,30],[11,-38],[89,2],[83,35],[26,-23],[-19,-46],[54,31],[-10,-29],[47,-5],[51,-70],[70,97]],[[7226,19120],[191,104],[-62,52],[38,53],[-70,85],[44,91],[34,-18],[5,53],[-47,29],[64,-5],[-13,88],[67,74],[98,1],[264,109],[87,-70],[97,26],[40,-34],[114,9],[58,-79],[97,6],[-69,117]],[[8263,19811],[116,172],[126,-109],[49,-136],[74,-42],[24,-65],[68,1],[68,-78],[115,52],[88,-21],[48,-72],[145,-91],[41,27],[52,-39],[-34,-76],[27,-74],[239,-101],[45,27],[175,-135],[160,-55],[7,-39],[-82,-18],[-26,32],[-122,-173],[-111,-39],[-80,-127],[-45,7],[-49,-45],[30,-123],[-85,-119],[-44,-8],[55,-95],[-12,-101],[-37,17],[15,-60],[-96,-37],[-60,-218]],[[15637,12004],[25,-47],[-38,11],[13,36]],[[15896,12010],[53,-42],[-47,-1],[-6,43]],[[15667,12035],[39,-29],[-29,-32],[5,33],[-36,-2],[21,30]],[[15850,12043],[18,-46],[-36,-12],[-17,51],[35,7]],[[15997,12037],[19,-21],[-37,20],[10,30],[5,-10],[0,-12],[3,-7]],[[15698,12078],[12,-60],[-30,19],[18,41]],[[16012,12089],[2,-42],[7,-4],[19,5],[6,-40],[-23,-2],[-5,33],[-18,-2],[-4,4],[-1,14],[-7,13],[-2,17],[26,4]],[[15875,12090],[-8,-41],[-2,7],[-27,-1],[-22,17],[8,4],[13,-6],[38,20]],[[15493,12090],[36,-48],[-33,-32],[-3,80]],[[15603,12092],[-9,-76],[-18,54],[27,22]],[[16069,12102],[28,-63],[-34,-21],[-18,14],[-2,48],[-12,9],[38,13]],[[16007,12106],[16,-9],[16,-1],[-10,-6],[13,-16],[-13,-28],[-13,2],[2,37],[-11,21]],[[15674,12114],[19,-3],[15,-34],[-36,27],[24,-24],[-20,-47],[-24,60],[22,21]],[[15933,12121],[44,-40],[-15,-51],[-29,91]],[[15571,12110],[-8,-110],[1,98],[-27,9],[21,22],[13,-19]],[[15424,12135],[39,-7],[-8,-18],[38,-48],[-26,-91],[-47,46],[4,118]],[[15967,12135],[29,-8],[3,-10],[15,4],[-14,-18],[11,-13],[-47,10],[3,35]],[[15535,12136],[0,-33],[25,-8],[-29,-21],[4,62]],[[16027,12137],[41,-33],[-31,-5],[-10,38]],[[15894,12138],[26,-6],[-15,-112],[-29,15],[5,58],[-40,-8],[53,53]],[[15702,12147],[29,-32],[-21,-15],[-8,47]],[[16023,12154],[4,-56],[-21,10],[8,14],[-28,9],[37,23]],[[15805,12171],[9,-24],[24,-14],[-5,-23],[18,-6],[-31,-4],[21,-21],[-4,-8],[-12,6],[-10,-3],[1,-4],[19,-13],[-6,-6],[-28,26],[-12,43],[13,35],[-1,15],[4,1]],[[15673,12174],[21,-61],[-23,2],[-18,-15],[20,74]],[[15578,12174],[1,-73],[-31,48],[30,25]],[[15860,12121],[-29,20],[13,14],[12,31],[4,-65]],[[15978,12204],[10,-18],[18,-4],[-29,-22],[0,-8],[15,-6],[-2,-6],[-27,-2],[-6,-8],[19,49],[-10,15],[12,10]],[[15508,12215],[17,-6],[21,-54],[-48,-63],[-5,70],[-12,-18],[-8,13],[-16,4],[-4,8],[3,5],[9,7],[25,9],[6,12],[-3,7],[15,6]],[[15913,12218],[44,-111],[-61,44],[17,67]],[[15359,12226],[26,-107],[-12,-75],[-35,-19],[-56,39],[77,162]],[[15861,12229],[2,-4],[-4,-4],[1,-4],[32,-1],[-26,-58],[-6,26],[-4,3],[-13,2],[5,20],[8,5],[-4,6],[9,9]],[[16007,12241],[40,-48],[-46,-48],[-22,10],[26,14],[2,14],[-22,15],[22,21],[0,22]],[[15732,12245],[13,-92],[-34,56],[21,36]],[[15597,12250],[34,-39],[-22,-54],[-53,35],[41,58]],[[15806,12252],[49,-39],[-10,-5],[-3,-19],[10,-6],[-15,-33],[-4,27],[-22,-16],[-4,10],[-8,3],[-4,9],[19,12],[-24,1],[16,56]],[[15898,12261],[41,-3],[19,11],[45,-24],[3,-25],[-16,-11],[-10,25],[3,-36],[-7,11],[-9,-1],[-7,6],[-2,16],[-6,-1],[5,0],[1,-14],[7,-7],[12,-2],[-13,-12],[0,-9],[-27,-10],[-39,86]],[[15811,12272],[9,-11],[49,1],[6,-29],[-13,-15],[-2,2],[4,3],[1,3],[-3,3],[-3,0],[-6,-7],[-2,0],[-40,50]],[[15827,12311],[4,-20],[20,-11],[8,9],[10,-22],[-51,0],[-7,39],[16,5]],[[15762,12343],[43,-15],[-29,-47],[-38,12],[24,50]],[[15362,12349],[-72,-94],[20,68],[52,26]],[[15879,12343],[70,-7],[1,-68],[-42,-5],[-48,28],[-9,-10],[-19,11],[2,23],[36,-12],[-30,36],[39,4]],[[15949,12364],[-8,-25],[-12,0],[-5,10],[-5,1],[-9,11],[29,4],[1,2],[-3,7],[12,-10]],[[16036,12368],[48,-52],[-35,-49],[-26,22],[26,39],[-31,-22],[-12,14],[16,12],[-23,6],[13,34],[24,-4]],[[15879,12376],[15,-27],[-40,9],[25,18]],[[15924,12391],[0,-13],[15,-12],[-30,-4],[0,-3],[6,-11],[-16,-2],[-14,33],[6,5],[4,-4],[1,-1],[2,2],[0,5],[4,-1],[7,5],[13,3],[2,-2]],[[15872,12396],[9,-4],[9,5],[3,-3],[4,-13],[-2,-1],[-3,5],[-12,-8],[-6,3],[-9,-8],[-5,14],[-5,-20],[-25,7],[27,41],[15,-18]],[[15883,12427],[38,-33],[-12,-3],[-10,-5],[-5,9],[-7,7],[-3,10],[-10,-16],[-6,21],[15,10]],[[15920,12462],[38,-62],[-65,30],[23,12],[-8,22],[12,-2]],[[15985,12480],[27,-50],[-47,-83],[17,-20],[13,47],[11,-16],[-12,-17],[8,-24],[16,-14],[16,7],[-17,-22],[17,-40],[-78,75],[22,108],[-37,31],[21,-5],[23,23]],[[16025,12488],[37,-55],[-27,-13],[18,-49],[-12,20],[2,-21],[-30,3],[-6,-14],[14,80],[-19,45],[23,4]],[[15789,12496],[28,-12],[25,-1],[19,-19],[-82,-72],[30,-61],[-45,16],[-22,66],[14,46],[22,20],[2,16],[9,1]],[[15904,12480],[11,12],[7,-26],[-13,2],[-6,-5],[9,-19],[-60,-27],[-29,-44],[-26,5],[33,58],[69,26],[-8,33],[5,0],[8,-15]],[[15971,12509],[23,-22],[-23,-17],[0,39]],[[16012,12636],[30,-69],[-23,-8],[78,-106],[-26,-22],[-33,63],[-36,3],[-19,37],[15,123],[14,-21]],[[15945,12771],[-4,-67],[22,-52],[-26,-19],[8,-9],[-17,16],[5,14],[-20,16],[9,52],[-19,15],[42,34]],[[15962,12784],[60,-109],[-26,-17],[-5,-36],[-14,45],[2,-89],[-35,56],[26,9],[-28,61],[20,80]],[[15869,15729],[-22,-61],[-2,83],[24,-22]],[[15838,16490],[91,-32],[3,-127],[34,36],[34,-58],[48,13],[81,-107],[190,47],[63,-48],[142,-21],[-9,-50],[173,-12]],[[16580,15696],[-26,2],[6,43],[-41,3],[13,-39],[-48,-13],[25,-30],[-25,-18],[43,-27],[-36,-2],[-20,-79],[-120,60],[-52,-25],[-151,104],[-54,210],[-85,6],[-10,42],[-41,-44],[64,-85],[46,-3],[-6,-44],[-110,38],[-46,-45],[-36,62],[-96,-36],[3,44],[52,27],[-32,-13],[-61,108],[-42,-10],[-104,72],[-12,65],[-29,-27],[-21,-117],[9,29],[92,-20],[31,-83],[-50,13],[-77,-66],[-7,-57],[-132,-60],[-1,-99],[-66,-87],[14,-98],[124,8],[140,-116],[-5,-50],[71,-73],[122,-30],[78,40],[36,-129],[126,-78],[-42,-14],[-29,-68],[-55,36],[-31,-29],[-281,28],[6,-145],[-41,-69],[-39,-3],[-11,-56],[-52,6],[-27,62],[-68,-21],[27,-56],[-126,-158],[92,-120],[162,-112],[305,-83],[7,-109],[-39,-21],[25,-96],[34,-7],[-31,-59],[-119,-42],[-11,-176],[15,-34],[49,6],[75,-103],[43,12],[-40,-150],[-38,-10],[18,-36],[211,-32],[-97,-95],[-17,-73],[93,-131],[-37,-65],[26,-126],[-87,-82],[7,-61],[-66,103],[1,-38],[-60,9],[-9,56],[-5,-35],[15,-22],[66,-13],[19,-51],[36,-11],[21,-60],[-42,3],[88,-47],[14,-61],[-40,-2],[-11,34],[-34,20],[34,-21],[24,-80],[-36,5],[-4,19],[13,4],[0,10],[-33,1],[1,5],[9,10],[4,9],[13,7],[-13,-6],[-4,-9],[-9,-10],[-2,-5],[1,-2],[6,-2],[25,1],[0,-9],[-20,5],[-8,-13],[-8,15],[-5,1],[-6,-11],[-3,7],[-7,3],[4,61],[-11,-47],[6,-15],[7,-2],[3,-8],[7,0],[5,-23],[-19,13],[-12,-9],[-20,18],[-16,4],[33,49],[-36,-25],[2,-21],[-5,10],[2,-12],[-7,-4],[-23,11],[-16,0],[-15,7],[-18,-4],[-2,9],[16,13],[21,44],[-14,36],[-28,-97],[7,-9],[25,-5],[-41,-75],[-36,65],[50,-117],[-26,-17],[-5,36],[9,-123],[-23,-21],[-24,68],[17,-57],[-32,-41],[-26,21],[10,20],[11,8],[3,13],[-3,11],[-21,13],[0,7],[46,55],[-48,-56],[3,-9],[19,-11],[0,-21],[-36,-16],[-11,92],[-1,-74],[-39,-27],[-25,68],[12,-137],[-31,103],[3,-56],[-22,4],[-13,-5],[1,17],[-37,-15],[6,21],[-11,-11],[4,-11],[30,1],[11,-10],[-42,-30],[-1,-7],[4,-9],[14,-23],[-23,33],[24,-36],[-13,-22],[6,20],[-43,8],[-42,92],[-7,66],[54,93],[-16,74],[-103,37],[27,74],[-43,-68],[-50,21],[-29,130],[-48,27],[44,-58],[-1,-87],[53,-48],[98,-13],[41,-70],[-98,-69],[-76,73],[69,-76],[-71,-148],[-195,-147],[-167,-34]],[[14861,12006],[-33,132],[-132,34],[-28,122],[-52,15],[-56,-91],[-50,4],[-25,34],[16,108],[-143,44],[-32,47],[-58,-8],[6,58]],[[14274,12505],[59,-2],[-7,40],[73,-9],[1,34],[-44,25],[11,58],[-63,23],[-13,41],[41,18],[-30,60],[-83,3],[-26,78],[-155,84],[36,97],[-23,21],[82,52],[-252,3],[-135,123],[-94,-12],[-64,53],[50,142],[-23,81],[139,19],[-28,46],[28,26],[75,-13],[1,-76],[72,-3],[3,-40],[44,0],[107,170],[271,46],[1,117],[60,10],[9,-24],[10,53],[176,-69],[33,20],[-28,38],[86,-33],[5,66],[17,-28],[18,21],[-43,115],[169,-48],[-19,22],[59,25],[-13,61],[64,-24],[24,35],[-29,22],[92,-5],[-41,75],[93,49],[41,83],[10,71],[-41,71],[60,-25],[48,35],[-29,13],[22,90],[-64,36],[120,105],[-151,158],[8,104]],[[15340,15998],[57,145],[-8,114],[-32,102],[-109,99],[18,87]],[[14861,12006],[-62,-47],[-55,26],[45,-36],[-134,2],[-118,-59],[-157,-194],[-9,-102],[97,-221],[-143,-63],[147,22],[16,-48],[-79,-2],[48,-17],[70,21],[-255,-190],[-10,-68],[49,-5],[6,-52],[-189,-118],[-126,-184],[-523,-162],[-278,-144],[-323,-249],[-113,-150]],[[12180,12750],[102,-40],[14,-57],[105,-51],[105,9],[78,58],[216,22],[66,-24],[130,49],[40,-151],[-103,-167],[89,12],[104,-80],[53,87],[73,41],[221,-88],[92,50],[22,-27],[-33,0],[-20,-71],[111,-18],[93,176],[-44,47],[57,51],[-39,26],[12,69],[-42,26],[65,87],[53,-64],[133,-32],[118,-116],[51,32],[172,-101]],[[3861,10809],[-23,-56],[-97,37],[-6,-25],[-28,54],[-34,-3],[-2,66]],[[3671,10882],[-35,54],[46,-6],[27,37],[19,-21],[49,56],[4,-45],[52,-13],[-80,-48],[-3,-54],[43,-5],[40,42],[38,-20],[-10,-50]],[[3550,11012],[32,82]],[[3582,11094],[38,-24],[-26,-17],[31,-4],[-3,-35],[-72,-2]],[[2104,11307],[56,-20],[-96,-3],[40,23]],[[2155,11301],[17,7]],[[2172,11308],[-17,-7]],[[2274,11322],[4,12]],[[2278,11334],[-4,-12]],[[4564,7194],[49,25],[51,-22],[24,-103],[-23,-30],[66,-159],[-65,-28],[49,-60],[-40,-175],[-135,-60]],[[4540,6582],[-35,16],[2,58],[-47,55],[-54,23],[34,49],[1,33],[-10,-32],[-52,176],[-73,36],[106,-3],[11,26],[-116,21],[37,35],[-51,-8],[-28,83],[27,28],[-26,-14],[-44,91]],[[4222,7255],[115,10],[25,48],[13,-39],[49,-6],[41,-105],[99,31]],[[3453,11644],[26,-12],[-16,-41],[-19,42],[9,11]],[[3510,12042],[-1,-3]],[[3509,12039],[1,3]],[[3133,12122],[0,-2]],[[3133,12120],[0,2]],[[3129,12130],[2,-4]],[[3131,12126],[-2,4]],[[3351,12124],[0,7]],[[3351,12131],[0,-7]],[[3363,12170],[4,7]],[[3367,12177],[-4,-7]],[[1105,12699],[7,-43],[-37,25],[30,18]],[[1329,12775],[18,-29],[-61,7],[43,22]],[[1399,12807],[14,-21],[-54,-14],[40,35]],[[282,13390],[41,-15],[-29,-41],[-28,21],[16,35]],[[216,13524],[9,-62],[-8,45],[-47,-22],[46,39]],[[128,13787],[30,-16],[22,8],[-32,-120],[4,31],[-58,-83],[-31,6],[25,33],[-84,-28],[5,42],[4,-6],[11,5],[4,-4],[21,3],[3,-5],[40,9],[-62,-6],[28,5],[38,55],[13,-5],[19,76]],[[89,13802],[12,-73],[-30,17],[-8,-43],[-5,57],[31,42]],[[235,13808],[14,-63],[-39,17],[9,-27],[-31,-1],[47,74]],[[156,13846],[23,-11],[11,-21],[-10,-23],[-36,23],[17,-39],[-36,17],[-19,-19],[10,41],[25,15],[2,14],[13,3]],[[198,13895],[-6,-55],[-17,0],[2,19],[-4,-18],[-19,7],[-12,-3],[-21,-25],[2,44],[75,31]],[[264,13901],[18,-19],[23,-5],[-56,-48],[-23,26],[30,3],[8,43]],[[235,13918],[16,-35],[-66,-58],[16,22],[6,43],[-19,20],[47,8]],[[128,13924],[58,-9],[-67,-48],[-7,-69],[-26,5],[-30,-26],[-21,-91],[-35,41],[32,36],[-16,48],[57,4],[-23,25],[46,8],[-43,5],[75,71]],[[3510,12042],[65,17],[-221,-8],[-3,73]],[[3351,12131],[12,39]],[[3367,12177],[54,114],[-43,-57],[-48,-3]],[[3330,12231],[42,250],[53,22],[90,-35],[40,58],[53,-18],[29,44],[-126,-38],[-88,43],[-74,-33],[1,30],[-44,-67],[6,41],[-18,-8],[-27,51],[-36,7],[19,39],[-39,14],[32,-18],[-24,-30],[32,-16],[2,-56],[-14,-22],[-33,58],[27,-84],[-25,20],[-11,-55],[-38,63],[22,-59],[-35,-159],[-28,94],[43,11],[2,37],[-27,-3],[10,-20],[-35,-22],[0,-29],[-46,20],[45,-28],[-8,-41],[-56,21],[81,-69],[6,-124]],[[3133,12122],[-2,4]],[[3129,12130],[-8,29],[-47,28],[44,-32],[50,-128],[-55,-139],[-109,-137],[16,-74],[-237,-128],[-225,-72],[-58,-64],[-222,-79]],[[2274,11322],[-102,-14]],[[2155,11301],[-106,19],[16,-40],[-40,-11],[-289,127],[-145,100],[-206,197],[-145,199],[-436,385],[-231,295],[101,143],[1,-68],[96,23],[-28,-90],[58,-44],[78,58],[119,7],[27,38],[-19,40],[71,-60],[-11,-33],[94,61],[-21,44],[44,19],[53,-59],[28,61],[62,-16],[48,70],[144,8],[254,423],[-71,-37],[-41,-80],[-115,50],[20,-26],[-49,-15],[-32,18],[17,39],[-23,-33],[11,-20],[-26,3],[31,-21],[-255,-60],[-74,-99],[-54,52],[-15,-29],[-47,29],[-84,-12],[-70,41],[-126,10],[-415,254],[-16,18],[38,-28],[-74,73],[35,-16],[-20,24],[52,22],[-33,20],[51,12],[-105,63],[-58,131],[32,114],[182,149],[-121,-20],[-61,-73],[-8,53],[114,74],[-33,-8],[-18,28],[-6,-15],[-22,1],[-12,35],[160,0],[14,268],[44,15],[31,-85],[58,73],[48,-64],[67,40],[77,-28],[304,43],[110,-97],[221,-1],[71,101],[358,102],[1,-137],[199,-18],[56,26],[-25,29],[58,45],[133,44],[-96,33],[-7,80],[17,72],[67,41]],[[4719,13185],[30,-105],[30,-27],[39,19],[21,-52],[-73,-174],[-92,1],[-87,-103],[-66,27],[-25,-34],[39,0],[29,-71],[52,46],[80,-67],[-67,-22],[-13,-37],[-92,31],[3,-112],[37,-7],[5,-93],[39,-9],[-64,-58],[37,-49]],[[4581,12289],[-259,-106],[67,-126],[-85,-34],[57,-104],[127,45],[120,8],[19,-27],[81,31],[13,-58],[-167,-38],[-34,27],[-14,-50],[-74,-14],[-4,-85],[-90,-24],[-7,-77],[-144,-32],[-37,29],[55,-48],[72,4],[13,-37],[37,13],[-12,-31],[80,-51],[33,-195],[-98,-39],[12,-63],[-129,-43],[-168,120],[-39,-55],[75,-83],[-84,-121],[29,-148],[-91,0],[-18,-46],[-56,-22]],[[3671,10882],[-74,11],[-30,-66],[-73,-7]],[[3494,10820],[23,161],[33,31]],[[3582,11094],[30,109],[-77,259],[48,14],[-69,-14],[-26,89],[25,9],[-47,12],[21,62],[-30,13],[-11,-3],[-27,-60],[-11,113],[27,5],[-51,39],[85,153],[-41,-23],[24,69],[52,20],[-76,-17],[-28,48],[109,48]],[[6934,17876],[-36,-21],[-49,35],[-103,-51],[-7,-148],[-43,0],[-31,-66],[32,-38],[149,9],[71,-91],[133,81]],[[6616,19526],[31,20],[32,-49],[39,22],[85,-126],[107,-42],[4,-73],[-36,-26],[71,-71],[152,-50],[39,38],[-27,-46],[72,32],[50,-52]],[[7861,20839],[104,-90],[-61,-139],[118,-23],[4,-78],[133,-99],[-62,-167],[108,-144],[-96,-79],[68,-53],[-15,-41],[101,-115]],[[5927,20880],[39,54],[-8,92],[-91,92],[10,48],[107,-36],[114,96],[110,23],[120,124],[260,-6],[38,62],[38,-8],[-19,-74],[88,-98],[168,-44],[8,-54],[21,14],[118,-90],[46,53],[53,-19],[162,100],[36,-11],[60,-54],[-22,-33],[118,-80],[-9,-59],[61,-87],[299,142],[14,-112],[-71,-37],[-15,-56],[25,-26],[56,43]],[[5504,20691],[-116,62],[-44,-14],[-19,57],[-57,16],[-64,-42],[-57,34],[-147,0],[-39,97],[45,42],[-33,35],[39,111],[-50,-17],[-4,-54],[-94,-7],[-42,37],[-64,-20],[-149,100],[-146,42],[-23,42],[-99,16],[-33,-33],[-40,81],[-82,19],[23,96],[-77,129],[58,134],[-56,71],[22,213],[-56,93],[-29,235],[-68,70],[44,159],[156,-4],[35,69],[-22,25],[64,83],[216,73],[60,114],[-33,24],[53,52],[-16,32],[-233,73],[-73,-14],[-13,108],[73,82],[-7,53],[-116,37],[-176,-6],[-103,53],[-105,72],[14,99],[-42,30],[-131,-27],[-77,34],[-107,-44],[-124,76],[51,82],[-50,38],[49,151],[76,-9],[146,111],[-3,45],[87,12],[3,46],[90,77],[-21,72],[274,37],[148,-45],[203,11],[-21,64],[-112,42],[-24,64],[143,-15],[136,-71],[67,27],[20,50],[71,-13],[130,84],[115,-34],[2,77],[87,28],[43,-53],[69,8],[63,-94],[75,57],[59,-27],[87,76],[103,13],[101,-196],[110,-40],[118,-152],[237,-80],[137,-102],[75,9],[162,-151],[63,9],[121,-110],[-61,-76],[69,-88],[95,-49],[139,11],[86,-69],[100,4],[99,-150],[-128,0],[92,-57],[218,11],[8,40],[192,-56],[-39,49],[16,74],[142,-56],[48,106],[43,-19],[14,62],[87,11],[28,40],[76,-18],[111,76],[227,29],[133,-46],[64,115],[125,14],[34,-80],[243,-77],[102,-15],[99,44],[84,-127],[141,-59],[28,-111],[-111,-245],[-88,-366],[-161,-21],[-65,-49],[14,-116],[-220,-8],[60,-186],[-61,-32],[-61,-151],[-198,44],[-45,-43],[-123,7],[-36,-42],[86,-160],[33,1],[-31,-60],[55,-15],[12,-57],[-147,13],[29,-203],[111,-70],[274,-28],[-46,-181],[-48,-20],[227,-222],[-137,-166],[-98,49],[-64,-70],[-78,-24],[-17,-75],[-62,2],[-38,-39],[-121,82],[-45,208],[-112,-79],[-68,8],[-104,-67]],[[6345,3971],[-13,76],[-56,-19],[-117,108],[-59,-11],[0,97],[-85,-38],[-94,13],[-63,108],[-60,-10],[-109,72],[-73,109],[-49,0],[2,65],[-44,33],[38,72],[-57,-33],[-46,50],[-7,33],[43,22],[-40,21],[-41,-40],[-17,51],[-45,6],[6,35],[-50,17],[-30,-30],[2,44],[-51,12],[6,49],[-99,-29]],[[5137,4854],[-130,484],[-5,78],[42,-54],[-29,38],[35,20],[-47,4],[-20,135],[75,7],[-71,60],[-2,-60],[-30,178],[-86,105],[-64,224],[73,-21],[-78,33],[-53,186],[23,-48],[38,16],[-53,71],[-45,-31],[-11,58],[104,26],[-112,-13],[-29,106],[-36,-16],[-81,63],[120,62],[-100,-29],[-25,46]],[[4564,7194],[-23,17],[26,38],[75,55],[18,-36],[88,26],[19,57],[-34,6],[23,32],[29,-31],[-16,39],[61,113],[-79,10],[51,46],[42,-19],[19,82],[-71,75],[-68,-11],[-6,90],[34,12],[-54,88],[-36,-6],[18,40],[29,-34],[12,41],[47,-21],[67,108],[58,-22],[17,-66],[90,42],[-23,27],[29,63],[174,44],[-9,70],[43,40],[-22,28],[117,7],[97,-88],[52,28],[4,65],[139,24],[19,-34],[60,17],[4,36],[77,-39],[-24,62],[27,46],[-39,62],[24,73],[-63,99],[45,76],[128,-87],[18,43],[28,-30],[20,26],[34,-76],[147,34],[42,-55],[-3,41],[56,21],[24,-35],[53,15],[29,-30],[20,46],[-57,51],[32,49],[-25,1],[-9,81],[122,53],[27,80],[38,1],[0,-47],[32,53],[58,-71],[20,83],[56,36],[-37,57],[48,-24],[88,38],[29,218],[119,-26],[-10,35],[85,67],[27,105],[59,37],[72,-53],[-40,-63],[60,-3],[22,-38],[34,38],[32,-12]],[[6859,1242],[-90,72],[-333,418],[-160,411],[-76,455],[-155,425],[19,31],[-20,27],[-6,-48],[-101,239],[-125,449],[-92,97],[-64,174]],[[5650,4002],[-161,157],[-8,34],[31,-9],[-24,35],[-24,13],[6,-30],[-46,58],[-25,-16],[-262,610]],[[4550,3597],[-77,37],[-22,76],[90,-37],[9,-76]],[[2813,4108],[-65,29],[-23,67],[32,39],[56,-135]],[[3136,2632],[-16,36],[66,68],[3,-49],[-53,-55]],[[3070,3829],[-32,42],[27,51],[5,-93]],[[3006,3588],[-32,-58],[-41,59],[76,22],[-3,-23]],[[2856,4471],[-5,95],[24,-20],[-19,-75]],[[3750,1272],[4,-39],[-44,-9],[40,48]],[[4200,2666],[-20,41],[31,42],[-11,-83]],[[9604,11786],[-49,-4],[-83,58],[-63,-17],[-26,117],[-85,80],[-55,11],[-96,-64],[-98,1],[-16,-26],[-141,63],[-151,-47],[-37,105],[-201,40],[-7,-59],[-236,-48],[14,-84],[-143,5],[-17,-24],[-166,52],[-61,-22],[-5,81],[-34,13],[-14,-32],[-139,-16],[-9,-49],[-177,-90],[-108,20],[-51,-38],[-32,26],[-83,-26],[-44,45],[-31,-35],[-54,126],[147,8],[-50,128],[-52,56],[-146,-7],[-61,-55],[-104,23],[-132,-99],[-82,-2],[-8,-106],[-123,-106],[28,-43],[-29,-72],[-102,4],[-30,-67],[-59,-31],[-157,6],[-46,65],[46,19],[-57,150],[-679,30],[-81,39],[-44,86],[-120,52],[-87,-15],[-178,58],[-37,36],[13,147],[-61,50],[-2,45],[-121,-73],[-111,15]],[[4222,7255],[-32,100],[-97,74],[-38,92],[11,82],[-9,-39],[-57,183],[26,23],[-37,11],[75,30],[-77,-17],[-39,96],[4,73],[33,17],[28,-31],[-9,33],[-52,7],[-7,204],[-25,4],[9,67],[30,-6],[-47,14],[-11,49],[42,25],[-95,180],[44,14],[-60,70],[28,29],[-49,95],[-37,225],[28,-3],[-74,85],[-21,69],[31,18],[-42,5],[-12,121],[-34,12],[23,82],[-54,116],[32,61],[-55,85],[-31,245],[-26,-3],[30,140],[-34,10],[13,166],[-34,39],[-32,255],[-34,53],[41,49],[-50,-9],[-12,34],[32,89],[69,-50],[-11,67],[-31,-2],[8,127]],[[20398,15120],[-75,-198],[124,-64],[-21,-157],[-84,-178],[-46,-5],[-173,-305],[-127,-392],[-160,79],[-106,-16],[-45,64],[-105,4],[-13,-36],[-31,16],[-37,-34],[-77,107],[-52,28],[-8,-48]],[[19362,13985],[-63,-24],[-5,50],[-24,-29],[-53,31],[-36,-35],[-17,47],[-79,10],[51,185],[-32,48]],[[19469,15000],[23,-53],[80,-34],[65,129],[89,84],[-29,60],[150,13],[38,32],[59,-51],[79,16],[16,-43],[76,-5],[82,39],[117,125],[-12,-149],[96,-43]],[[18661,14777],[-277,128],[-243,-14],[-81,-38],[-30,40],[-96,-31],[-164,58],[-410,-42],[-60,31],[-162,-40],[-256,65],[-108,62],[-105,-4],[14,147]],[[19362,13985],[83,-301],[-24,-238],[-37,-27],[21,-174],[-74,-107],[-79,44],[-47,-10],[27,-104],[-53,-88],[35,-181],[-26,-44],[61,-85],[13,-134],[-48,-16],[7,-51],[-83,16],[14,-77],[-38,2],[-5,-98],[-41,38],[-35,-68],[-33,96],[-115,71],[-26,-109],[-55,-30],[-58,526],[-67,213],[-56,33],[-14,243],[37,7],[-105,390]],[[20827,16112],[-132,-182],[53,-60],[-12,-225],[50,-24],[-126,-138],[23,-119],[-88,-76],[-25,-82],[-172,-86]]],"transform":{"scale":[0.0012985536349093493,0.0012366154567699835],"translate":[68.192642,6.7560389999999995]},"objects":{"polygons":{"type":"GeometryCollection","geometries":[{"arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]]],"type":"MultiPolygon","properties":{"cartodb_id":1,"st_nm":"Andaman & Nicobar Island"}},{"arcs":[[[24]],[[25,26,27,28,29,30],[31]]],"type":"MultiPolygon","properties":{"cartodb_id":2,"st_nm":"Andhra Pradesh"}},{"arcs":[[32,33,34]],"type":"Polygon","properties":{"cartodb_id":3,"st_nm":"Arunanchal Pradesh"}},{"arcs":[[35,36,37,38,39,40,41,42,43,-34]],"type":"Polygon","properties":{"cartodb_id":4,"st_nm":"Assam"}},{"arcs":[[44,45,46,47]],"type":"Polygon","properties":{"cartodb_id":5,"st_nm":"Bihar"}},{"arcs":[[48,-30,49,50,51,52]],"type":"Polygon","properties":{"cartodb_id":7,"st_nm":"Chhattisgarh"}},{"arcs":[[[53,54]],[[57,58]],[[59]],[[60]],[[61,62]],[[-32]]],"type":"MultiPolygon","properties":{"cartodb_id":26,"st_nm":"Puducherry"}},{"arcs":[[65,66,67,68,69,70,71]],"type":"Polygon","properties":{"cartodb_id":27,"st_nm":"Punjab"}},{"arcs":[[72,73,74,75,76,-69]],"type":"Polygon","properties":{"cartodb_id":28,"st_nm":"Rajasthan"}},{"arcs":[[77,78]],"type":"Polygon","properties":{"cartodb_id":29,"st_nm":"Sikkim"}},{"arcs":[[[79]],[[-63,80,-59,81,-55,82,83,84,-27,85,-64,86],[-60],[-61]]],"type":"MultiPolygon","properties":{"cartodb_id":30,"st_nm":"Tamil Nadu"}},{"arcs":[[87,-67]],"type":"Polygon","properties":{"cartodb_id":6,"st_nm":"Chandigarh"}},{"arcs":[[-39,88,89]],"type":"Polygon","properties":{"cartodb_id":32,"st_nm":"Tripura"}},{"arcs":[[[90]],[[91,-47,92,-52,93,-74,94,95,96,97,98]]],"type":"MultiPolygon","properties":{"cartodb_id":33,"st_nm":"Uttar Pradesh"}},{"arcs":[[-99,99,100]],"type":"Polygon","properties":{"cartodb_id":34,"st_nm":"Uttarakhand"}},{"arcs":[[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158,-43,159,160,161,-45,162,-78]]],"type":"MultiPolygon","properties":{"cartodb_id":35,"st_nm":"West Bengal"}},{"arcs":[[-161,163,-31,-49,164]],"type":"Polygon","properties":{"cartodb_id":36,"st_nm":"Odisha"}},{"arcs":[[165,166]],"type":"Polygon","properties":{"cartodb_id":8,"st_nm":"Dadara & Nagar Havelli"}},{"arcs":[[[167,168]],[[169]]],"type":"MultiPolygon","properties":{"cartodb_id":9,"st_nm":"Daman & Diu"}},{"arcs":[[174,175,176]],"type":"Polygon","properties":{"cartodb_id":10,"st_nm":"Goa"}},{"arcs":[[[177]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[-179,201,-186,202,-188,203,204,-181,205,-183,206,-173,207,-171,208,-76,209,210,-167,211,212,-169,213]]],"type":"MultiPolygon","properties":{"cartodb_id":11,"st_nm":"Gujarat"}},{"arcs":[[-97,214,-95,-73,-68,-88,-66,215]],"type":"Polygon","properties":{"cartodb_id":12,"st_nm":"Haryana"}},{"arcs":[[216,-100,-98,-216,-72,217]],"type":"Polygon","properties":{"cartodb_id":13,"st_nm":"Himachal Pradesh"}},{"arcs":[[-218,-71,218]],"type":"Polygon","properties":{"cartodb_id":14,"st_nm":"Jammu & Kashmir"}},{"arcs":[[-162,-165,-53,-93,-46]],"type":"Polygon","properties":{"cartodb_id":15,"st_nm":"Jharkhand"}},{"arcs":[[-28,-85,219,220,-175,221]],"type":"Polygon","properties":{"cartodb_id":16,"st_nm":"Karnataka"}},{"arcs":[[-84,222,-57,223,-220]],"type":"Polygon","properties":{"cartodb_id":17,"st_nm":"Kerala"}},{"arcs":[[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]]],"type":"MultiPolygon","properties":{"cartodb_id":18,"st_nm":"Lakshadweep"}},{"arcs":[[-51,232,-210,-75,-94],[-91]],"type":"Polygon","properties":{"cartodb_id":19,"st_nm":"Madhya Pradesh"}},{"arcs":[[-50,-29,-222,-177,233,-212,-166,-211,-233]],"type":"Polygon","properties":{"cartodb_id":20,"st_nm":"Maharashtra"}},{"arcs":[[234,235,-37,236]],"type":"Polygon","properties":{"cartodb_id":21,"st_nm":"Manipur"}},{"arcs":[[237,-41]],"type":"Polygon","properties":{"cartodb_id":22,"st_nm":"Meghalaya"}},{"arcs":[[-236,238,-89,-38]],"type":"Polygon","properties":{"cartodb_id":23,"st_nm":"Mizoram"}},{"arcs":[[239,-237,-36,-33]],"type":"Polygon","properties":{"cartodb_id":24,"st_nm":"Nagaland"}},{"arcs":[[-96,-215]],"type":"Polygon","properties":{"cartodb_id":25,"st_nm":"NCT of Delhi"}}]}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment