Skip to content

Instantly share code, notes, and snippets.

@HarryStevens
Last active September 20, 2017 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HarryStevens/088792f5f9cb444bfaf7d6fc3e0e8445 to your computer and use it in GitHub Desktop.
Save HarryStevens/088792f5f9cb444bfaf7d6fc3e0e8445 to your computer and use it in GitHub Desktop.
Map Tiles Playground
license: gpl-3.0
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
}
#select {
position: absolute;
width: 100%;
text-align: center;
}
.subunit {
fill: none;
stroke: steelblue;
stroke-width: 3px;
}
</style>
</head>
<body>
<div id="select">
<select>
<option value="osm" selected>Open Street Map</option>
<option value="toner">Stamen Toner</option>
<option value="terrain">Stamen Terrain</option>
<option value="terrain_labels">Stamen Terrain Only Labels</option>
<option value="terrain_nolabels">Stamen Terrain No Labels</option>
<option value="watercolor">Stamen Watercolor</option>
<option value="mapbox_earth">Mapbox Natural Earth</option>
<option value="light_all">Carto Light All</option>
<option value="dark_all">Carto Dark All</option>
<option value="light_nolabels">Carto Light No Labels</option>
<option value="light_only_labels">Carto Light Only Labels</option>
<option value="dark_nolabel">Carto Dark No Labels</option>
<option value="dark_only_labels">Carto Dark Only Labels</option>
</select>
</div>
<div id="map"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.20/topojson.min.js"></script>
<script src="https://unpkg.com/d3-marcon@2.0.1/build/d3-marcon.min.js"></script>
<script src="https://d3js.org/d3-tile.v0.0.min.js"></script>
<script>
var m = d3.marcon().width(window.innerWidth).height(window.innerHeight);
m.render();
var width = m.innerWidth(), height = m.innerHeight(), svg = m.svg();
var projection = d3.geoMercator();
var path = d3.geoPath()
.projection(projection);
d3.queue()
.defer(d3.json, "india.json")
.await(ready);
function ready(error, map){
centerZoom(map);
tiles($("select").val());
$("select").change(function(){
tiles($(this).val());
});
drawSubUnits(map);
}
// This function "centers" and "zooms" a map by setting its projection's scale and translate according to its outer boundary
// It also returns the boundary itself in case you want to draw it to the map
function centerZoom(data){
var o = topojson.mesh(data, data.objects.polygons, function(a, b) { return a === b; });
projection
.scale(1)
.translate([0, 0]);
var b = path.bounds(o),
s = 1 / Math.max((b[1][0] - b[0][0]) / width, (b[1][1] - b[0][1]) / height),
t = [(width - s * (b[1][0] + b[0][0])) / 2, (height - s * (b[1][1] + b[0][1])) / 2];
projection
.scale(s)
.translate(t);
return o;
}
function drawSubUnits(data){
svg.selectAll(".subunit")
.data(topojson.feature(data, data.objects.polygons).features)
.enter().append("path")
.attr("class", "subunit")
.attr("d", path);
}
function tiles(type){
var types = {
osm: function(d){ return "http://" + "abc"[d[1] % 3] + ".tile.openstreetmap.org/" + d[2] + "/" + d[0] + "/" + d[1] + ".png"; },
toner: function(d){ return "http://tile.stamen.com/toner/" + d[2] + "/" + d[0] + "/" + d[1] + ".png"; },
terrain: function(d){ return "http://tile.stamen.com/terrain/" + d[2] + "/" + d[0] + "/" + d[1] + ".png"; },
terrain_labels: function(d){ return "http://tile.stamen.com/terrain-labels/" + d[2] + "/" + d[0] + "/" + d[1] + ".png"; },
terrain_nolabels: function(d){ return "http://tile.stamen.com/terrain-background/" + d[2] + "/" + d[0] + "/" + d[1] + ".png"; },
watercolor: function(d){ return "http://tile.stamen.com/watercolor/" + d[2] + "/" + d[0] + "/" + d[1] + ".png"; },
mapbox_earth: function(d){return "https://a.tiles.mapbox.com/v3/mapbox.natural-earth-2/" + d[2] + "/" + d[0] + "/" + d[1] + ".png"; },
light_all: function(d){ return "https://cartodb-basemaps-" + "abcd"[d[1] % 4] + ".global.ssl.fastly.net/light_all/" + d[2] + "/" + d[0] + "/" + d[1] + ".png"; },
dark_all: function(d){ return "https://cartodb-basemaps-" + "abcd"[d[1] % 4] + ".global.ssl.fastly.net/dark_all/" + d[2] + "/" + d[0] + "/" + d[1] + ".png"; },
light_nolabels: function(d){ return "https://cartodb-basemaps-" + "abcd"[d[1] % 4] + ".global.ssl.fastly.net/light_nolabels/" + d[2] + "/" + d[0] + "/" + d[1] + ".png"; },
light_only_labels: function(d){ return "https://cartodb-basemaps-" + "abcd"[d[1] % 4] + ".global.ssl.fastly.net/light_only_labels/" + d[2] + "/" + d[0] + "/" + d[1] + ".png"; },
dark_nolabels: function(d){ return "https://cartodb-basemaps-" + "abcd"[d[1] % 4] + ".global.ssl.fastly.net/dark_nolabels/" + d[2] + "/" + d[0] + "/" + d[1] + ".png"; },
dark_only_labels: function(d){ return "https://cartodb-basemaps-" + "abcd"[d[1] % 4] + ".global.ssl.fastly.net/dark_only_labels/" + d[2] + "/" + d[0] + "/" + d[1] + ".png"; }
}
var pi = Math.PI,
tau = 2 * pi;
var tiles = d3.tile()
.size([width, height])
.scale(projection.scale() * tau)
.translate(projection([0, 0]))
();
var image = svg.selectAll("image")
.data(tiles, function(i){ return i });
image
.attr("xlink:href", types[type])
image.enter().append("image")
.attr("xlink:href", types[type])
.attr("x", function(d) { return (d[0] + tiles.translate[0]) * tiles.scale; })
.attr("y", function(d) { return (d[1] + tiles.translate[1]) * tiles.scale; })
.attr("width", tiles.scale)
.attr("height", tiles.scale);
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","arcs":[[[57158,1038],[22,-30],[26,-82],[8,-43],[6,-88],[9,-34],[35,-63],[22,-57],[35,-50],[3,-118],[-20,-56],[-61,-126],[-9,-78],[33,-50],[-3,-24],[-29,-16],[-68,7],[-25,-42],[-31,-88],[-48,19],[-7,33],[8,42],[2,45],[-48,39],[-18,23],[20,29],[-39,40],[-6,23],[15,27],[-30,25],[-2,51],[-38,-2],[-24,44],[-19,60],[-25,49],[-74,63],[-44,12],[-34,-30],[1,236],[9,27],[50,111],[69,6],[22,7],[29,32],[78,38],[15,-17],[57,51],[36,16],[38,-13],[54,-48]],[[56689,1134],[-36,-9],[-23,14],[-1,36],[-14,41],[-38,45],[29,25],[22,91],[48,20],[64,14],[24,37],[13,49],[29,52],[0,-60],[6,-42],[49,-39],[21,-26],[7,-42],[-13,-30],[-70,-49],[-39,-37],[-78,-90]],[[56219,2677],[60,-96],[1,-25],[-13,-67],[-39,31],[-35,18],[-42,-3],[-77,-26],[-30,11],[-31,39],[2,26],[16,27],[-17,15],[-18,-15],[-42,9],[-19,46],[18,88],[21,28],[48,22],[58,11],[47,-3],[10,-41],[0,-46],[12,-19],[70,-30]],[[56515,2777],[18,-68],[0,-97],[-124,90],[-17,32],[2,34],[20,20],[42,-11],[2,37],[18,9],[22,-15],[17,-31]],[[56424,2989],[28,-84],[-13,-50],[-38,-16],[-44,-69],[-24,-10],[-11,25],[-4,62],[7,21],[33,19],[5,28],[43,3],[-12,26],[-31,17],[-12,-42],[-28,-1],[-30,25],[-20,34],[-24,143],[0,22],[42,42],[27,57],[19,25],[41,15],[42,-3],[19,-28],[-2,-43],[-45,-60],[-12,-43],[7,-41],[37,-74]],[[10922,3354],[-53,-23],[-8,23],[43,17],[33,26],[6,-20],[-21,-23]],[[55649,3250],[-20,-19],[-31,2],[-64,17],[-49,19],[-47,46],[-35,57],[-14,51],[4,65],[19,58],[31,20],[25,-1],[14,-21],[-1,-103],[7,-53],[22,-42],[46,-36],[85,-42],[8,-18]],[[56612,3749],[-21,26],[15,90],[2,36],[-27,77],[-2,36],[29,25],[0,-47],[42,-94],[3,-42],[-22,-73],[-19,-34]],[[54883,5314],[-72,-77],[-152,46],[-24,36],[-19,62],[-7,58],[12,26],[34,10],[35,25],[21,34],[-8,37],[27,7],[107,-73],[50,-64],[-4,-127]],[[12212,7346],[-11,12],[12,42],[20,-5],[-21,-49]],[[8992,9059],[-35,-59],[0,45],[14,42],[47,65],[0,-30],[-26,-63]],[[54328,8958],[6,-43],[5,-77],[24,-60],[-5,-68],[-47,-51],[-52,-46],[-25,-31],[4,-64],[72,-25],[-61,-72],[-25,-51],[-50,-38],[-74,18],[-79,65],[-50,2],[-34,-37],[-49,0],[-14,26],[55,75],[25,69],[7,51],[-18,39],[-66,56],[-2,172],[-6,56],[22,15],[48,18],[18,20],[30,115],[120,77],[99,22],[48,-47],[36,-56],[6,-75],[32,-55]],[[10297,9836],[-11,37],[8,43],[33,55],[-9,-70],[-21,-65]],[[54470,10217],[-59,4],[-58,39],[16,62],[17,11],[51,11],[13,31],[-4,37],[-17,67],[18,68],[41,0],[46,-39],[48,-80],[-37,-55],[-7,-37],[51,-63],[-38,-28],[-81,-28]],[[53641,10598],[-47,-4],[-39,25],[-10,82],[-28,30],[0,16],[83,-10],[52,-22],[19,-46],[-4,-42],[-26,-29]],[[55404,11413],[-38,-6],[-31,35],[-23,62],[-76,32],[-52,53],[-32,6],[-13,19],[23,42],[52,61],[75,2],[24,-12],[-15,-35],[67,-140],[39,-119]],[[55486,11863],[-20,-25],[-19,11],[-25,32],[-33,63],[4,74],[11,39],[35,33],[37,-12],[10,-43],[-18,-62],[16,-72],[2,-38]],[[57197,12232],[-42,-18],[-5,24],[20,21],[27,-27]],[[54578,13417],[-27,-15],[-27,156],[16,50],[16,122],[-5,37],[57,59],[32,-6],[18,-19],[15,-34],[-12,-36],[-5,-112],[-12,-50],[-61,-76],[-5,-76]],[[58126,14788],[-35,-6],[-29,20],[42,32],[22,-46]],[[55293,15108],[58,8],[17,-10],[36,-65],[-25,-76],[-3,-70],[13,-143],[46,14],[-4,-35],[-46,-32],[-24,-56],[-95,-59],[-1,39],[-19,20],[-24,-2],[-16,-25],[5,-34],[24,-27],[32,-13],[46,9],[23,-20],[38,-51],[51,-33],[8,-20],[-50,-78],[-9,-62],[0,-141],[-10,-65],[-26,-92],[-38,-63],[-48,22],[-16,0],[-25,-31],[-34,16],[-17,60],[-43,7],[-18,-38],[-2,-50],[10,-32],[40,-43],[12,-26],[-29,-61],[-16,0],[-2,42],[-17,17],[-49,3],[-55,-115],[-8,-42],[43,-26],[43,44],[20,-11],[18,-48],[18,-8],[52,-54],[-8,-39],[17,-98],[-26,-44],[37,-42],[25,-42],[13,-46],[1,-52],[-31,-102],[-9,-59],[36,-80],[6,-55],[-2,-106],[-20,-30],[-37,-33],[-20,-30],[31,-20],[-17,-31],[-53,-36],[-6,-40],[-66,64],[-10,-34],[-63,-5],[-59,5],[37,-107],[68,-38],[19,-24],[-2,-28],[25,-24],[-75,-46],[15,-39],[32,-27],[3,-32],[-48,-56],[28,-64],[-2,-31],[-43,2],[5,-39],[-24,-27],[-46,-34],[-35,-36],[14,-49],[-61,-30],[6,-19],[-21,-14],[-68,-11],[-25,-16],[21,-36],[57,-55],[-48,0],[-13,-32],[-44,-56],[-11,-29],[-7,-49],[0,-183],[17,0],[9,74],[10,43],[18,19],[58,-12],[18,-28],[8,-51],[-6,-75],[-82,-347],[-12,-16],[-44,-4],[-26,-13],[-74,-74],[-13,-23],[-3,-77],[32,-8],[31,23],[0,84],[45,-15],[-2,41],[13,24],[22,3],[28,-23],[6,-21],[9,-100],[-40,-46],[-5,-23],[0,-67],[-22,-74],[-19,-39],[-30,3],[-52,18],[-69,68],[-9,21],[0,40],[-47,19],[-18,29],[-9,51],[15,14],[39,11],[-6,34],[-52,13],[-11,26],[-24,124],[-53,-10],[-37,25],[-7,35],[14,99],[0,91],[-7,15],[-65,29],[-20,23],[15,17],[17,65],[52,79],[32,-6],[51,-71],[32,8],[-16,-36],[8,-27],[23,10],[7,122],[11,30],[-18,98],[8,34],[37,73],[-3,221],[11,44],[51,100],[30,41],[18,-26],[16,0],[15,38],[21,17],[17,-14],[8,-49],[-11,-62],[19,-8],[29,17],[54,0],[42,20],[19,41],[-23,90],[-53,39],[13,18],[66,20],[-3,29],[-32,30],[-53,0],[-46,18],[-26,44],[-10,54],[9,525],[11,30],[74,85],[42,3],[10,27],[-64,27],[-15,35],[-6,154],[-17,99],[8,28],[54,56],[45,-11],[33,39],[20,59],[8,49],[0,114],[34,60],[14,38],[-10,16],[-49,24],[3,54],[45,130],[54,95],[-45,62],[24,28],[-4,89],[47,19],[0,20],[-31,98],[9,48],[-28,32],[13,44],[88,108],[18,43],[0,92],[15,30],[31,17],[50,57],[16,40],[0,38],[29,30],[58,16],[29,-24],[32,9],[-16,25],[26,12]],[[55352,15317],[22,-48],[-74,20],[-42,19],[-22,21],[64,28],[30,1],[22,-41]],[[28517,19943],[-64,-21],[-55,31],[-110,126],[24,62],[20,15],[109,-62],[69,-52],[33,-32],[12,-23],[-8,-19],[-30,-25]],[[46160,32744],[-63,-2],[-38,-14],[-53,18],[-18,101],[24,81],[135,-75],[20,-29],[6,-41],[-13,-39]],[[44451,32964],[-20,-10],[-86,24],[-62,0],[-26,11],[-20,36],[2,51],[15,54],[88,229],[65,113],[61,23],[45,-232],[-8,-132],[-69,-46],[27,-60],[3,-31],[-15,-30]],[[45585,33434],[-7,-121],[-22,11],[-99,26],[-15,49],[3,36],[27,60],[40,62],[44,52],[31,13],[29,-13],[16,-31],[-8,-38],[-26,-53],[-13,-53]],[[44375,33475],[-54,-26],[-19,17],[-2,37],[13,69],[38,73],[26,22],[29,-6],[30,-54],[-17,-71],[-44,-61]],[[21936,64276],[189,128],[233,-30],[140,133],[98,0],[171,-34],[445,138],[190,275],[287,-147],[97,123],[580,-10],[306,167],[372,-88],[43,-330],[177,-79],[281,104],[-37,-163],[116,-113],[37,-99],[18,-64],[31,-64],[164,74],[177,-104],[239,69],[73,-89],[-80,-74],[135,-247],[171,104],[0,123],[201,-59],[122,-99],[86,-99],[-37,-159],[-73,-138],[-49,-139],[-24,-119],[-147,-159],[-159,-179],[-61,-90],[-49,-80],[-85,-99],[-12,-80],[-159,-160],[0,-79],[-12,0],[134,-120],[86,-130],[-86,-200],[-171,-161],[-73,-180],[-208,-140],[-195,-20],[-232,90],[-305,0],[-208,-110],[-134,-121],[110,-241],[-86,-191],[-195,-121],[-318,-40],[-158,-91],[-49,-151],[24,-414],[-134,-243],[-73,-101],[-135,-82],[-77,-106],[44,-130],[52,-73],[207,-166],[124,-170],[35,-17],[82,-20],[76,-35],[28,-29],[14,-94],[19,-13],[77,30],[70,-5],[169,-77],[77,-22],[179,-6],[75,-33],[7,-82],[-19,-34],[-49,-60],[-15,-42],[-10,-117],[-14,-42],[1,-83],[45,-58],[130,-98],[43,-69],[15,-68],[22,-64],[114,-108],[11,-72],[-21,-80],[-43,-73],[-92,-95],[-218,-148],[-94,-91],[-41,-9],[-90,31],[-45,8],[-54,-8],[-66,-17],[-63,-25],[-45,-29],[-22,-50],[-25,-131],[-36,-44],[-20,-1],[-85,15],[-85,-29],[-31,-5],[-72,-34],[-72,19],[-66,47],[-57,54],[-188,136],[-37,71],[-39,115],[-5,33],[32,78],[4,37],[-32,38],[-52,17],[-42,-17],[-66,-68],[-38,-29],[-39,-18],[-89,-18],[-317,-8],[-87,-17],[-52,-24],[-9,-43],[63,-114],[88,-111],[8,-22],[-36,-46],[6,-50],[53,-203],[-3,-48],[-11,-40],[3,-27],[42,-12],[81,-37],[49,-58],[37,-69],[217,-252],[64,-44],[98,-49],[26,-22],[24,-45],[-6,-42],[-49,-94],[-13,-44],[-17,-93],[-14,-43],[-58,-77],[-7,-36],[55,-53],[-6,-62],[39,-45],[17,-39],[29,-28],[60,-3],[82,-73],[53,-58],[-11,-28],[-38,-36],[-217,-152],[-9,-49],[84,-45],[66,-50],[-6,-73],[-32,-85],[-16,-86],[5,-38],[28,-35],[69,-30],[84,12],[89,-5],[34,15],[53,56],[37,68],[37,-15],[55,-50],[37,-11],[29,52],[15,96],[42,86],[108,18],[32,-14],[62,-47],[75,-39],[23,-65],[23,-33],[59,-11],[26,-32],[-9,-65],[9,-18],[34,-23],[14,-36],[-9,-38],[9,-22],[34,-23],[69,-24],[13,-47],[7,-82],[16,-35],[30,-32],[56,-26],[61,-15],[53,-25],[36,-55],[14,-72],[15,-29],[29,-7],[71,7],[66,-21],[48,-73],[71,-61],[107,-34],[26,4],[91,49],[39,8],[90,3],[112,27],[48,-5],[162,-35],[38,-15],[28,-29],[39,-64],[50,-50],[71,-39],[157,-56],[51,-36],[35,-54],[40,-48],[66,-23],[38,8],[70,34],[37,-1],[27,-17],[59,-82],[64,-31],[15,-21],[-54,-86],[-16,-12],[-60,-3],[-14,-38],[74,-80],[7,-43],[-12,-33],[-40,-71],[81,16],[81,-4],[163,-41],[220,-108],[112,-38],[73,-40],[38,-9],[111,17],[47,-14],[219,-106],[63,-44],[27,-31],[44,-71],[27,-32],[32,-23],[190,-72],[170,-41],[72,-33],[45,-63],[16,-31],[-16,-35],[-18,-1],[-150,-44],[-39,8],[-43,67],[-35,-23],[-70,-67],[29,-59],[-44,-58],[-134,-88],[-31,-28],[-66,-93],[-22,-21],[-80,-47],[-57,-47],[-71,-28],[-80,-9],[-33,-16],[-19,-38],[-30,-80],[-49,-69],[-114,-124],[-47,-35],[-133,-31],[-58,-41],[-33,-61],[0,-57],[21,-55],[31,-60],[20,-58],[-3,-48],[-27,-46],[-50,-49],[-52,-30],[-8,-15],[8,-37],[-35,-37],[-45,-30],[-56,-50],[-19,-49],[-65,-19],[-24,-15],[-8,-40],[16,-37],[47,-72],[16,-90],[12,-23],[40,-2],[16,-12],[6,-42],[-9,-51],[-46,-145],[-49,23],[-38,-4],[-11,-32],[37,-93],[6,-34],[-28,-30],[-43,-10],[-84,4],[-69,-29],[-43,-84],[-19,-99],[7,-73],[-19,-38],[-103,-62],[-28,-37],[-14,-37],[-8,-85],[13,-90],[41,-28],[60,-11],[72,-37],[75,-87],[32,-22],[42,-13],[79,-12],[37,-21],[53,-66],[58,-16],[17,-13],[61,-110],[25,-28],[45,-16],[86,16],[44,-2],[41,-21],[94,-100],[43,-21],[11,29],[-19,141],[6,38],[22,31],[45,22],[85,-3],[2,-53],[15,-17],[78,-30],[82,-13],[29,-18],[44,-74],[23,-26],[38,-16],[70,-17],[36,-21],[85,-78],[37,-20],[42,-7],[91,-1],[31,-12],[18,-33],[14,-65],[42,-26],[80,-18],[43,-1],[34,10],[26,-13],[12,-51],[16,-24],[325,-55],[52,-24],[46,-52],[45,-131],[30,-62],[129,-131],[30,-54],[-33,-12],[5,-35],[36,-8],[-7,-31],[24,-10],[69,20],[44,73],[34,4],[51,-16],[47,-30],[40,-38],[29,-41],[22,-75],[34,-24],[197,-90],[45,-28],[28,-41],[45,-30],[112,-23],[52,-17],[48,-35],[88,-83],[111,-57],[62,-41],[62,-33],[61,-4],[51,31],[89,94],[66,26],[114,-10],[54,-16],[86,-73],[38,-20],[97,-33],[266,-195],[172,-76],[120,-108],[86,-24],[190,19],[280,64],[61,-21],[39,-56],[27,-85],[21,-165],[25,-84],[49,-52],[276,-16],[56,-16],[102,-51],[141,-31],[272,2],[82,-29],[110,-83],[27,-28],[40,-73],[22,-22],[51,-16],[50,2],[44,22],[37,33],[48,64],[18,54],[-34,41],[-4,26],[16,49],[58,18],[209,-2],[243,-29],[162,-54],[308,-147],[103,-33],[65,24],[-14,61],[-63,64],[-19,35],[43,16],[103,6],[51,13],[118,-22],[71,2],[47,29],[112,123],[45,17],[39,-8],[10,-41],[45,-31],[53,-19],[21,-21],[24,-54],[21,-5],[67,9],[30,-20],[22,-42],[42,-52],[48,-28],[639,-104],[66,-41],[56,-74],[36,-81],[21,-83],[5,-84],[-12,-88],[-22,-48],[-31,-51],[-20,-51],[13,-47],[29,-18],[268,-65],[25,0],[30,21],[36,11],[35,-7],[23,-34],[53,-29],[111,-33],[50,-25],[32,-42],[31,-87],[52,-24],[55,-10],[39,-17],[1,-64],[56,-4],[125,44],[51,5],[87,-33],[7,-67],[1,-76],[65,-61],[205,-49],[34,1],[77,21],[36,24],[35,39],[37,29],[80,-12],[40,11],[177,86],[176,61],[24,-7],[174,-87],[32,-33],[17,-76],[-16,-164],[23,-78],[32,-35],[120,-85],[20,-4],[44,13],[17,-14],[9,-56],[15,-12],[36,5],[48,26],[152,117],[39,20],[53,5],[79,23],[67,-20],[179,-100],[50,3],[52,-11],[39,-27],[39,0],[49,28],[84,26],[48,7],[37,-7],[17,-15],[0,-31],[32,-18],[68,6],[66,-22],[136,-66],[69,-25],[43,-9],[35,-17],[60,-56],[45,-24],[150,-61],[155,-84],[41,-9],[23,17],[32,48],[30,4],[99,-31],[57,15],[54,32],[43,44],[23,49],[69,37],[145,45],[29,20],[67,62],[32,24],[25,1],[9,-79],[25,-110],[23,-64],[37,-75],[51,-60],[64,-24],[118,12],[69,19],[23,-21],[35,-63],[29,-16],[94,-37],[30,-5],[27,21],[41,80],[26,31],[62,34],[71,18],[74,4],[68,-12],[160,-81],[77,-19],[83,33],[79,54],[48,15],[66,-41],[37,-4],[33,14],[31,81],[28,10],[79,-31],[38,0],[68,52],[41,0],[70,-57],[28,-59],[32,-27],[71,-38],[32,-28],[69,7],[84,80],[66,107],[18,90],[-5,51],[49,142],[100,176],[37,97],[12,86],[-2,42],[-20,88],[-8,95],[-9,38],[-19,35],[-50,67],[-52,112],[-45,72],[-46,58],[-29,24],[-74,37],[-41,79],[-46,48],[1,36],[32,65],[9,155],[88,176],[14,54],[-6,25],[-28,44],[-12,54],[25,76],[30,38],[1,29],[-26,28],[-13,64],[2,24],[57,112],[138,208],[53,186],[33,56],[22,56],[-11,91],[27,41],[-4,26],[-19,13],[-85,22],[-29,41],[-17,54],[6,54],[35,42],[24,7],[81,-8],[77,25],[403,54],[47,27],[124,81],[43,11],[60,-16],[33,23],[31,43],[48,42],[92,64],[37,-2],[47,-50],[45,-31],[129,-16],[57,-15],[99,-60],[50,-38],[33,-36],[5,-39],[-22,-72],[2,-37],[18,-28],[53,-51],[20,-33],[7,-40],[-2,-35],[-107,-417],[-51,-73],[-35,-80],[-42,-58],[-16,-31],[1,-32],[36,-44],[-8,-105],[13,-64],[30,-59],[49,-50],[79,-42],[47,-55],[89,-59],[-17,-65],[-51,-35],[-134,-31],[-57,-35],[-48,-62],[-35,-73],[-18,-64],[27,-18],[140,-66],[49,-33],[30,-50],[10,-57],[0,-121],[14,-110],[34,42],[43,32],[45,5],[40,-43],[2,-71],[15,-23],[50,-15],[46,21],[47,2],[56,-22],[51,-35],[35,-35],[31,-55],[18,-45],[31,-33],[70,-17],[126,-7],[63,6],[62,15],[73,53],[59,1],[92,22],[146,-90],[79,-37],[139,15],[91,-13],[88,-30],[57,-40],[4,-39],[-35,-61],[27,-19],[41,0],[78,29],[49,-2],[119,-47],[48,-7],[88,1],[30,-10],[19,11],[17,59],[135,-29],[48,5],[141,33],[253,22],[84,21],[56,46],[56,133],[74,43],[41,3],[82,-3],[41,12],[98,75],[45,13],[75,-11],[206,-131],[250,-116],[288,-29],[645,34],[122,49],[66,1],[78,-9],[158,3],[76,-16],[66,-35],[31,-11],[46,1],[74,24],[63,46],[67,116],[40,24],[31,4],[90,-4],[32,-9],[21,-28],[51,-99],[29,-23],[42,2],[80,26],[40,1],[99,-26],[35,-2],[107,12],[66,28],[141,83],[67,11],[42,-21],[19,-68],[23,-30],[35,-4],[18,25],[-2,36],[-26,30],[47,21],[-5,61],[34,9],[38,-15],[71,-54],[39,-17],[135,19],[82,72],[25,110],[-38,128],[-38,70],[-111,99],[-27,72],[1,41],[17,79],[16,32],[41,43],[19,37],[15,62],[31,33],[70,52],[15,38],[-9,27],[-194,320],[-50,52],[-26,-8],[-66,-43],[-28,-9],[-81,4],[-60,-9],[-173,-53],[-66,-6],[-14,51],[-37,46],[-49,19],[-106,23],[-35,35],[-19,37],[-64,45],[-21,32],[-48,162],[15,85],[104,130],[14,95],[313,10],[91,-21],[77,-43],[34,-11],[98,4],[96,-16],[51,4],[83,33],[127,116],[82,38],[44,4],[186,-14],[43,9],[13,24],[-13,62],[23,35],[22,-6],[20,-32],[37,-80],[31,-42],[33,-15],[30,39],[26,65],[47,-68],[40,3],[29,86],[26,30],[26,-5],[28,-55],[23,-17],[26,4],[80,52],[107,30],[33,20],[58,58],[27,12],[54,9],[62,24],[75,52],[57,63],[7,61],[23,67],[0,27],[-27,24],[-78,8],[-34,12],[-4,32],[39,75],[53,60],[65,50],[139,81],[20,8],[24,-37],[66,1],[68,28],[33,29],[54,68],[32,31],[40,19],[85,26],[90,85],[206,129],[52,53],[44,75],[29,82],[13,74],[144,103],[98,46],[118,91],[287,152],[234,15],[123,-15],[41,1],[40,17],[70,50],[68,-24],[38,10],[153,121],[35,18],[130,36],[26,38],[70,12],[7,18],[-11,42],[26,18],[44,8],[81,-4],[81,40],[34,24],[117,42],[125,33],[85,72],[170,6],[91,98],[125,104],[-85,78],[-85,85],[37,111],[80,-4],[51,29],[36,58],[23,24],[52,24],[58,7],[117,1],[88,23],[31,22],[120,159],[38,30],[68,7],[85,-29],[79,-48],[116,-120],[25,-37],[-14,-87],[34,-18],[172,8],[83,-21],[166,-67],[50,-13],[-53,57],[-22,42],[76,-34],[131,-29],[114,-60],[40,-12],[165,-25],[37,-16],[19,-55],[19,-12],[126,-15],[-16,133],[72,52],[144,6],[85,-19],[32,104],[46,20],[7,-85],[40,-56],[19,31],[81,-11],[23,14],[3,51],[-24,81],[7,26],[78,7],[8,59],[23,14],[62,9],[121,-47],[157,-22],[67,122],[-6,148],[71,11],[43,17],[149,-64],[202,78],[268,22],[150,-2],[20,-32],[34,-112],[23,-37],[64,-66],[67,-35],[72,2],[81,43],[42,30],[31,11],[29,-12],[36,-38],[1,-29],[-54,-74],[-33,-67],[-25,-19],[-236,-58],[-37,-20],[-42,-62],[46,-181],[190,112],[157,44],[34,-135],[202,-93],[-14,-29],[19,-40],[33,-3],[39,-31],[18,-41],[23,-97],[29,-47],[118,-124],[35,-112],[12,-106],[-213,-145],[-149,-74],[71,-104],[-89,-101],[78,-67],[74,-148],[38,16],[11,132],[22,101],[68,111],[123,56],[190,-45],[157,-156],[156,-89],[101,-111],[29,-163],[80,-40],[71,-14],[70,15],[79,44],[101,40],[83,-19],[149,-114],[62,-15],[22,-55],[20,-19],[124,-86],[85,-41],[11,-61],[-66,-134],[-13,-76],[30,-56],[108,-103],[16,-63],[-12,-31],[-37,-64],[-10,-36],[5,-75],[-10,-17],[-41,-21],[-49,-16],[-11,45],[-26,28],[-35,4],[-43,-9],[-41,-18],[-26,-23],[-64,-71],[-112,-90],[-58,-25],[-30,-44],[-60,-26],[-11,-52],[-125,-36],[-30,-17],[-75,-85],[-39,-31],[-88,-55],[-36,-29],[-30,-38],[-18,-44],[0,-46],[34,-56],[29,-134],[-30,-65],[10,-42],[53,-80],[362,-423],[74,-75],[7,-60],[55,-41],[12,-23],[-34,-89],[-30,-10],[-64,31],[-65,-20],[-47,9],[-53,51],[-306,126],[-50,37],[-2,36],[40,80],[-13,18],[-72,54],[-26,28],[-46,71],[-28,28],[-39,25],[-78,32],[-82,12],[-25,-9],[-37,-36],[-51,-13],[-49,29],[-61,11],[-24,-18],[-19,-38],[-45,-48],[-80,-31],[-47,-4],[-34,10],[-149,6],[-589,-90],[-152,-61],[-136,-86],[-85,-107],[-81,-139],[-49,-63],[-61,-54],[-61,-29],[-126,-20],[-60,-22],[-95,-106],[-58,-88],[-22,-25],[-29,-11],[-103,-11],[-35,-12],[-24,-29],[-22,-52],[-27,-45],[-37,-17],[-96,9],[-92,-21],[-61,-74],[-50,-93],[-65,-75],[-40,-22],[-171,-50],[-82,-36],[-41,-11],[-48,4],[-35,46],[-41,-6],[-21,-15],[-31,-43],[-40,-26],[-69,-20],[-30,-37],[-9,-92],[-35,-58],[-65,-67],[-34,-25],[-31,-42],[4,-36],[43,-73],[10,-42],[-5,-33],[-30,-74],[-15,-70],[-4,-89],[10,-88],[27,-67],[17,-14],[54,-19],[9,-17],[-36,-52],[22,-149],[30,-24],[79,-23],[28,-26],[3,-47],[-26,-44],[-70,-77],[-94,-92],[-36,-22],[-84,-27],[-25,-21],[-15,-48],[-1,-43],[45,-229],[4,-50],[-15,-40],[-20,-12],[-47,-6],[-38,-24],[-200,-266],[-40,-26],[17,-33],[-23,-19],[-63,-8],[-32,-37],[-57,-84],[-40,-28],[-41,-12],[-77,-8],[-43,-14],[-72,-46],[-65,-63],[-50,-72],[-128,-331],[7,-91],[52,-68],[80,-27],[90,-16],[80,-34],[39,-64],[16,-92],[-12,-94],[-42,-68],[-36,-45],[-42,-190],[-35,-58],[-89,-109],[-13,-66],[-8,-81],[-18,-38],[-26,-30],[-31,-17],[-88,-9],[-18,-35],[-47,-152],[-26,-51],[-100,-59],[-26,-23],[-17,-32],[-31,-112],[-59,-39],[-15,-26],[-5,-90],[-20,-25],[-53,-43],[7,-52],[-18,-36],[-46,-31],[-29,-53],[-7,-75],[-9,-37],[-108,-235],[-26,-83],[-9,-80],[-9,-39],[-34,-46],[-19,-117],[-101,-125],[-22,-44],[0,-93],[-7,-45],[-34,-34],[-38,3],[-63,74],[-36,26],[-127,64],[-128,27],[-62,22],[-65,14],[-177,-20],[-46,20],[-89,111],[-71,22],[-112,13],[-107,-5],[-54,-30],[-14,-35],[-24,-26],[-21,-5],[-40,34],[-37,-12],[-69,-36],[-47,-4],[-40,5],[-17,20],[-22,59],[-73,67],[-22,26],[-63,91],[-44,23],[-58,-20],[-28,-35],[-15,-51],[-4,-54],[4,-47],[29,-76],[48,-72],[41,-48],[7,-35],[-2,-79],[37,-258],[70,-44],[44,-63],[9,-23],[5,-73],[-72,-428],[-1,-62],[17,-174],[-8,-19],[-43,-57],[-14,-36],[-4,-39],[10,-93],[-18,-149],[5,-89],[-92,-172],[-34,-41],[-43,-35],[-58,-26],[-58,-4],[-47,36],[-30,43],[-35,31],[-43,10],[-55,-19],[-27,-40],[-4,-59],[11,-61],[18,-47],[44,-80],[14,-45],[-4,-40],[-32,-46],[-80,-88],[-29,-48],[-73,-60],[-19,-177],[7,-46],[18,-42],[50,-82],[13,-43],[-3,-48],[-24,-88],[2,-51],[23,-73],[19,-36],[79,-78],[27,-91],[19,-260],[-12,-49],[-87,-34],[-15,-29],[42,-69],[-50,-14],[-64,35],[-99,22],[-48,-11],[-4,-179],[6,-18],[-67,-21],[-22,-17],[-40,-73],[2,-59],[22,-44],[2,-46],[-24,-18],[-28,5],[-41,52],[-36,19],[-33,-10],[-38,-112],[-26,-21],[-23,21],[-11,64],[-18,63],[-40,50],[-143,128],[-141,97],[-54,14],[-22,-16],[-7,-30],[7,-85],[-27,-1],[-13,-43],[5,-94],[-16,-31],[-25,-12],[-55,-11],[-38,-43],[-49,-26],[-36,186],[-50,149],[27,22],[33,-1],[25,11],[3,56],[-129,724],[-3,38],[-29,69],[-8,37],[5,129],[-16,170],[-10,35],[-24,33],[-60,48],[-26,33],[-15,68],[-20,172],[-32,37],[-74,28],[-41,58],[-17,75],[1,154],[-56,313],[2,88],[9,34],[40,76],[15,40],[-1,23],[-22,58],[6,65],[-11,32],[-29,21],[-14,30],[3,31],[-16,35],[-28,26],[-23,50],[-12,108],[-85,253],[-7,74],[26,94],[-5,47],[-46,23],[-37,-20],[-28,-102],[-33,-30],[-31,38],[-22,85],[-44,62],[-94,-30],[-36,-37],[-73,-93],[-38,-31],[-52,-12],[-35,16],[-93,97],[-55,72],[-31,-1],[-14,-29],[-5,-48],[4,-85],[58,-256],[-3,-87],[-50,-78],[-29,-29],[-36,-24],[-123,-49],[-36,-29],[-58,-72],[-64,-103],[-42,-109],[12,-89],[33,-70],[33,-153],[37,-93],[-9,-21],[-34,-33],[-34,1],[-13,-39],[-37,-52],[-70,-65],[-27,-16],[-106,-25],[-47,11],[-21,-8],[-31,-56],[-37,-18],[-20,53],[-90,29],[-28,30],[-10,23],[-3,65],[-33,21],[-11,56],[-51,162],[-11,23],[-15,68],[-38,31],[0,39],[-23,0],[-50,73],[-43,31],[-49,-2],[-25,-31],[-12,-52],[1,-99],[41,-186],[-8,-72],[-74,18],[-53,66],[-29,92],[-52,356],[-26,58],[39,40],[2,31],[-29,7],[-29,20],[-22,45],[-30,94],[-16,72],[-15,20],[-57,38],[-20,36],[-19,73],[-17,39],[-64,111],[-10,39],[7,53],[60,1],[19,36],[-14,33],[-72,30],[-9,48],[21,43],[77,15],[41,19],[23,36],[44,121],[7,42],[-34,79],[7,61],[76,123],[53,54],[39,15],[79,-16],[26,17],[23,90],[4,85],[27,56],[92,8],[169,-34],[82,-6],[92,10],[51,14],[33,20],[21,30],[17,47],[24,141],[10,26],[23,-8],[40,-89],[20,-35],[39,-23],[44,-5],[39,13],[25,34],[-1,38],[-20,87],[22,30],[141,-28],[30,-16],[9,-69],[67,-62],[45,-10],[28,16],[17,39],[48,188],[2,44],[-24,88],[8,40],[49,14],[69,-48],[43,-15],[-2,30],[-50,75],[2,26],[186,-14],[65,5],[57,23],[43,54],[8,63],[-12,135],[11,42],[27,25],[67,42],[23,33],[12,33],[10,75],[21,87],[113,288],[7,69],[-4,36],[-29,71],[-10,39],[12,37],[65,26],[85,-26],[151,-83],[12,-28],[38,-10],[136,42],[80,18],[30,44],[7,25],[-7,38],[-17,36],[-21,18],[-54,22],[18,15],[-101,68],[-57,25],[-13,63],[-55,30],[-63,24],[-36,46],[-19,12],[-115,15],[-70,21],[-58,41],[-33,39],[-32,16],[-31,-9],[-27,15],[-32,1],[-31,18],[-39,44],[-60,21],[-71,16],[-71,3],[-102,-29],[-123,17],[-238,-27],[-108,9],[-33,-4],[-43,-51],[-49,19],[-25,-1],[-12,-36],[-23,-21],[-52,-7],[-56,3],[-38,8],[-36,27],[-31,42],[-38,3],[-57,-36],[-116,-25],[-87,9],[-329,91],[-107,51],[-24,-1],[-49,-23],[-27,-4],[-124,4],[-356,-52],[-70,-23],[-270,-33],[-62,7],[-89,49],[-36,4],[-35,-28],[-32,-8],[-83,12],[-73,28],[-31,0],[-90,-20],[-182,15],[-226,-44],[-78,2],[-173,67],[-348,69],[-494,189],[-84,-3],[-79,-29],[-35,6],[-26,43],[-19,79],[-8,75],[13,86],[50,169],[4,167],[20,156],[-22,87],[-51,112],[-41,198],[9,55],[96,153],[9,52],[-17,13],[-35,3],[-42,23],[44,13],[31,23],[7,31],[-33,37],[-41,-23],[-14,5],[-28,45],[-59,73],[-1,94],[-46,67],[-23,70],[-27,19],[-64,-3],[-43,14],[0,108],[-12,33],[-40,7],[-48,-15],[-15,-18],[4,-68],[13,-36],[-61,11],[-30,-19],[-23,-40],[14,-28],[37,-15],[41,-5],[-83,-48],[0,-27],[22,-10],[60,5],[17,-28],[-19,-37],[-97,-73],[-19,-61],[-4,-58],[-16,-20],[-30,-6],[-22,11],[-51,73],[-33,10],[-121,-10],[-44,0],[-33,46],[-26,-1],[-63,-41],[-36,4],[-45,18],[-40,26],[-54,56],[-78,32],[-19,20],[-14,43],[-23,28],[-33,19],[-147,58],[-27,28],[-17,40],[-19,134],[-16,35],[-45,67],[-14,36],[-1,59],[25,3],[32,-13],[20,9],[-2,30],[-16,16],[-90,28],[5,34],[-30,41],[-73,20],[-54,50],[-25,12],[-56,42],[-21,6],[-36,-17],[-28,-24],[-28,-37],[-18,-41],[1,-38],[46,-44],[64,-19],[55,-26],[21,-63],[32,-24],[40,17],[-8,-47],[16,-14],[51,-8],[12,-41],[-45,-28],[-98,-23],[-64,19],[-98,89],[-60,10],[-44,-28],[-34,-73],[-35,-12],[-37,15],[-21,32],[-33,71],[-80,28],[-188,-62],[-39,26],[17,15],[82,37],[28,22],[21,41],[-6,28],[-30,21],[-51,23],[-13,17],[3,39],[-37,12],[-5,16],[14,37],[-51,11],[-48,24],[-45,67],[-27,10],[-65,2],[-51,19],[-45,27],[-70,61],[-29,30],[-35,15],[-79,22],[-29,30],[-6,43],[-2,88],[-20,12],[-28,-26],[-44,-73],[-46,-142],[-41,-73],[3,-37],[17,-29],[39,5],[6,51],[24,17],[51,-21],[129,-22],[59,-25],[31,-49],[45,-119],[5,-57],[-50,7],[-59,-5],[-38,20],[-40,-49],[-104,-60],[-34,-27],[-33,-43],[-8,-32],[3,-80],[-18,-33],[-39,-22],[-130,-40],[-70,-18],[-49,-45],[-73,-43],[-18,-26],[-35,-96],[2,-22],[34,-31],[4,-24],[-16,-42],[-56,-40],[-43,-74],[-41,-126],[-30,-33],[17,-98],[15,-34],[-3,-39],[35,-36],[26,-61],[28,-27],[42,2],[81,37],[99,26],[72,-34],[135,-141],[161,-99],[59,-59],[10,-137],[31,-27],[83,-38],[23,-45],[60,-41],[39,-53],[46,-8],[95,-3],[44,-19],[71,-42],[47,-10],[26,7],[62,57],[59,-2],[22,9],[-1,39],[67,-24],[75,-67],[20,-29],[3,-47],[-38,-79],[25,-29],[18,-64],[52,-59],[39,-18],[46,-3],[51,-44],[52,-7],[109,5],[21,-39],[-21,-44],[-84,-55],[-19,-24],[4,-59],[-7,-22],[-40,-8],[32,-47],[-57,3],[-152,48],[-29,13],[-32,-20],[-23,-47],[-18,-13],[-133,12],[-133,46],[-67,12],[-79,1],[-20,-6],[-27,-28],[-41,-15],[-80,20],[-107,34],[-75,-12],[-22,-37],[6,-125],[-19,-145],[-26,-66],[-51,-58],[-7,-58],[-27,-52],[-78,-92],[-40,-65],[-20,-14],[-38,3],[-93,23],[-27,1],[-2,41],[-20,43],[-31,37],[-36,23],[-44,3],[-41,-13],[-110,-54],[22,-41],[29,-77],[7,-41],[-52,-57],[-22,-40],[-29,5],[-14,-16],[-10,-57],[-15,-20],[-53,-14],[-11,-97],[-29,-38],[-18,-40],[-12,-67],[79,-26],[22,-45],[39,-44],[0,-115],[31,-43],[25,-47],[64,-13],[584,-279],[164,-119],[51,-10],[144,-6],[110,-34],[49,2],[33,48],[24,50],[48,-9],[73,-41],[51,-63],[22,-133],[-2,-29],[-33,-53],[-84,-33],[-35,-46],[11,-67],[-20,-92],[11,-25],[42,-33],[7,-28],[53,-12],[1,-21],[-53,-74],[29,-69],[6,-47],[-7,-40],[-21,-25],[-85,-76],[-30,-21],[-42,-8],[-90,1],[-35,-26],[-8,-21],[7,-60],[-44,-73],[-11,-44],[19,-54],[-47,-202],[3,-25],[56,-22],[-11,-59],[44,-31],[62,1],[33,-33],[52,-86],[38,-37],[89,-51],[33,-60],[28,10],[26,37],[29,21],[30,-22],[-5,-48],[-109,-263],[-53,-79],[-21,-43],[2,-48],[22,-43],[30,-24],[146,-44],[41,8],[34,24],[29,4],[38,-6],[194,-63],[61,2],[13,-11],[-12,-41],[-20,-21],[-59,-46],[-121,-118],[-30,-56],[-6,-114],[-20,-63],[-2,-43],[9,-25],[65,-84],[48,-104],[26,-29],[62,-19],[25,-22],[2,-73],[-19,-73],[-48,-61],[-16,-31],[6,-40],[26,-64],[17,-78],[27,-46],[22,-57],[10,-60],[-14,-51],[-50,-30],[70,-25],[26,-20],[20,-82],[41,-88],[9,-51],[-23,-47],[-6,-44],[27,-118],[49,-86],[-32,-21],[21,-46],[97,-118],[19,-37],[12,-44],[4,-53],[-39,-45],[-26,-17],[-26,-83],[7,-35],[31,-57],[7,-28],[18,-142],[-10,-63],[-53,-30],[-31,13],[-33,-23],[3,-35],[-37,17],[-72,48],[-35,10],[-16,22],[-20,84],[-33,0],[-20,-38],[13,-51],[30,-44],[30,-19],[68,-29],[61,-46],[45,-68],[33,-183],[29,-83],[53,-53],[39,-77],[7,-90],[-13,-37],[-41,-18],[-24,2],[-57,32],[-17,-40],[-44,-6],[-54,27],[-93,62],[-82,14],[-35,49],[-21,170],[-13,39],[-17,0],[-6,-39],[-32,-73],[-7,-31],[10,-40],[38,-70],[-3,-35],[-32,-32],[-45,-11],[-40,13],[-18,38],[46,39],[-4,38],[-13,37],[-23,-66],[-48,-24],[-4,-39],[10,-42],[33,-66],[-13,-36],[-62,-28],[-77,9],[-46,41],[33,68],[-76,153],[-7,42],[42,251],[-21,65],[45,129],[5,120],[12,31],[80,74],[11,39],[-19,45],[-83,45],[-19,32],[14,32],[34,37],[73,60],[-43,-3],[-38,-18],[-32,-27],[-39,-61],[-4,-34],[14,-28],[43,-12],[27,-24],[-16,-53],[-49,-82],[-26,-67],[-25,-20],[-26,18],[-54,-9],[-26,10],[-11,22],[13,54],[32,45],[16,40],[-31,202],[39,92],[38,25],[20,50],[-7,44],[-42,-13],[-25,-66],[-33,-53],[-9,-43],[-20,-21],[-8,-29],[4,-55],[13,-67],[-12,-40],[-40,-52],[-9,-36],[4,-95],[-4,-40],[-70,-174],[-5,-40],[2,-136],[35,-4],[51,21],[44,-2],[19,-62],[-21,-88],[-24,-28],[-46,17],[18,-150],[-11,-56],[-37,25],[0,-115],[-13,-30],[-30,-5],[-31,14],[-19,29],[-15,-48],[32,-43],[-69,-21],[-42,23],[-14,48],[17,56],[41,42],[11,85],[24,41],[-45,121],[-10,64],[17,49],[45,71],[-4,63],[-34,59],[-45,58],[43,87],[0,47],[-43,32],[10,-40],[-42,-53],[-15,-43],[6,-41],[33,-77],[8,-41],[-4,-30],[-43,-9],[-13,-52],[-24,-41],[-12,-80],[5,-39],[31,-62],[8,-31],[-8,-43],[-27,-44],[-67,-29],[-37,-26],[-37,3],[-21,69],[-1,88],[21,60],[-62,-25],[-41,3],[-33,68],[-15,-40],[6,-22],[41,-46],[8,-21],[-8,-54],[-23,-46],[-30,-22],[-27,10],[-12,51],[-5,248],[-9,41],[-18,36],[-37,39],[-26,2],[6,-52],[69,-218],[4,-51],[-29,-72],[8,-46],[29,-25],[11,-39],[-59,-36],[-55,-1],[-11,8],[-8,48],[-19,48],[-29,25],[-35,-22],[-42,86],[-17,51],[-2,44],[50,87],[15,51],[-20,60],[19,32],[-13,37],[-111,183],[12,40],[-28,118],[7,38],[32,59],[94,111],[35,54],[-22,49],[-20,115],[-12,35],[-73,39],[-104,33],[-83,38],[-9,51],[-39,-24],[-36,-10],[-36,6],[-40,28],[-54,57],[-27,38],[-19,80],[-30,82],[-10,85],[-13,41],[-28,24],[-47,2],[0,-14],[36,-46],[29,-95],[26,-171],[12,-34],[28,-39],[59,-64],[36,-24],[38,-9],[71,-5],[85,-17],[82,-26],[63,-50],[28,-88],[-20,-60],[-53,-66],[-65,-56],[-59,-31],[-80,0],[-13,-8],[17,-71],[-40,-62],[-109,-228],[-29,-39],[-50,-25],[-87,-59],[-22,-9],[-14,-45],[-57,-52],[-73,-48],[-175,-83],[-115,-80],[-44,-12],[-93,4],[-46,-3],[-339,-87],[-283,-108],[-107,-20],[-83,19],[-47,-17],[-76,-5],[-195,-98],[-110,-73],[-325,-327],[-112,-158],[-66,-180],[15,-205],[240,-516],[30,-95],[-26,-57],[-39,16],[-44,1],[-84,-17],[24,-35],[47,-18],[103,-7],[51,5],[15,-8],[30,-53],[-3,-38],[-23,-15],[-61,19],[-28,-8],[-18,-25],[46,-6],[29,-24],[28,0],[18,-30],[55,21],[-35,-51],[-61,-43],[-118,-35],[-331,-244],[-51,-50],[-39,-60],[-21,-67],[-9,-140],[48,24],[32,32],[30,15],[42,-23],[2,54],[14,50],[31,-49],[-35,-82],[-57,-77],[-38,-34],[-70,-29],[-41,-25],[-17,-21],[17,-21],[35,5],[-198,-114],[-99,-38],[-110,-27],[-50,-19],[-37,-30],[-10,-22],[-26,-99],[-23,-44],[-3,-33],[-116,-129],[-52,-36],[28,-39],[22,-8],[-37,-35],[-109,57],[-162,130],[-98,-6],[-50,4],[-80,79],[-22,72],[-23,19],[-17,-47],[21,-71],[29,-38],[45,-20],[58,-47],[36,-16],[86,-20],[35,3],[19,-14],[6,-33],[43,-43],[59,-16],[68,-33],[-230,-121],[-349,-121],[-51,-25],[-23,-2],[-49,30],[-54,-34],[-41,-6],[-278,-80],[-94,-16],[-84,-49],[-44,-17],[-99,0],[-65,-26],[-68,-14],[-108,-47],[-48,3],[-145,-83],[-152,-53],[-53,-7],[-15,7],[-7,53],[-37,3],[15,29],[31,25],[59,17],[99,34],[8,-11],[-24,-51],[98,60],[39,17],[-29,24],[15,36],[-7,41],[7,186],[-29,14],[-94,16],[-85,26],[-29,5],[-52,-15],[-53,-37],[-93,-93],[-122,-97],[-65,-9],[-50,-22],[-47,-38],[-57,-59],[-39,-64],[7,-52],[-37,-28],[-33,-75],[-56,-52],[-22,-38],[-2,-37],[27,-27],[0,-16],[-63,-25],[-45,-43],[4,-33],[24,-16],[30,4],[0,-47],[15,-14],[35,38],[25,10],[51,5],[39,25],[-15,48],[6,34],[34,-15],[42,15],[-65,36],[64,69],[33,16],[-23,26],[-9,27],[32,45],[29,7],[108,-31],[92,79],[72,-4],[19,32],[26,-42],[4,-56],[-45,-23],[-15,-46],[-57,-34],[-35,-8],[-23,50],[-34,-18],[-4,-34],[-15,-19],[1,-28],[61,6],[547,252],[-80,-46],[-171,-85],[-185,-83],[-97,-41],[-114,-86],[-100,-41],[-133,-95],[-247,-228],[-164,-108],[-275,-229],[-180,-220],[-35,-12],[-81,72],[-17,-42],[-23,-32],[-2,-28],[46,-62],[45,62],[32,-2],[7,-21],[-61,-83],[-22,-57],[-93,-112],[-44,-70],[-32,-35],[-76,-32],[-185,-265],[-13,-45],[-208,-210],[-25,-40],[-10,-38],[-20,-20],[-118,-78],[-47,-70],[-37,-35],[-59,-23],[-54,-40],[-71,-3],[-27,-29],[26,-21],[48,-3],[38,12],[-107,-99],[-21,-32],[-94,-63],[-31,-40],[-68,-56],[-24,-69],[-20,-21],[-24,-79],[-79,-59],[-672,-292],[-359,-210],[-70,-57],[-57,-101],[-68,-69],[-88,-57],[-30,-32],[-17,0],[-30,46],[-6,-36],[8,-85],[-48,-31],[-13,-35],[-17,-72],[-34,-48],[-136,-148],[-82,-56],[-26,-3],[-23,18],[-13,31],[-18,10],[-48,-3],[-10,-22],[16,-24],[50,-16],[59,-34],[1,-19],[-68,-35],[-48,-32],[-75,2],[46,-60],[12,-33],[-66,-21],[-85,-53],[-184,-64],[-78,-54],[-74,-34],[-52,-39],[-46,-44],[-68,-23],[-108,-75],[-18,2],[-12,26],[-101,-64],[-92,-22],[-85,-53],[-88,-23],[-542,-316],[-51,-52],[-37,-64],[-28,-30],[-78,-29],[-38,-37],[-63,-82],[-68,-59],[-27,-36],[-17,-71],[-87,-153],[-4,-47],[10,-50],[28,-40],[68,-20],[35,-26],[45,17],[39,-20],[34,33],[-4,-108],[-30,-111],[-13,-122],[-18,-61],[-53,-112],[-3,-44],[-30,4],[-12,35],[-29,-11],[10,-32],[49,-59],[-108,-32],[-123,-116],[-34,-20],[-34,-7],[-111,-52],[-72,-50],[-49,-23],[-69,8],[-66,-63],[-34,-24],[-81,-3],[-18,-35],[-16,-7],[-91,-5],[-85,-24],[-174,-81],[-46,-35],[-100,-23],[-48,6],[-89,49],[-44,-10],[-34,15],[-80,6],[-38,9],[13,27],[-10,20],[-27,12],[-38,2],[20,-48],[-29,-5],[-89,24],[-46,-5],[-130,-41],[25,57],[-37,37],[-28,1],[-51,-34],[-36,15],[-94,-15],[-128,-77],[-25,-28],[25,-70],[-13,-38],[-53,-61],[-26,-98],[-63,-134],[-22,-116],[-41,-65],[-13,-42],[-1,-117],[-13,-35],[-32,-7],[-104,-100],[-100,-60],[-37,-30],[-62,-75],[-1,-27],[31,-50],[15,-62],[-32,-12],[-37,28],[-20,27],[-66,54],[-62,24],[-26,31],[-12,41],[-4,43],[17,167],[-9,75],[-22,24],[-16,-16],[15,-150],[-13,-90],[-76,-161],[-57,-166],[-23,-46],[-28,-23],[2,194],[-12,85],[-59,93],[-36,19],[-53,10],[-102,7],[-45,16],[-16,-16],[0,-25],[-99,-4],[-41,-12],[-64,-30],[-23,27],[-15,0],[-63,-53],[-75,-39],[-51,-10],[-73,-58],[-95,-25],[-75,-47],[-178,-167],[-36,-58],[-98,-237],[-4,-43],[-36,-66],[-8,-33],[30,-15],[-24,-32],[-37,-66],[-24,-31],[-73,-70],[-30,-41],[-12,-40],[-68,-144],[4,-19],[-22,-205],[-66,-246],[4,-174],[15,-88],[27,-72],[-1,-47],[71,-347],[7,-110],[5,-21],[39,-36],[53,-35],[18,-23],[14,-76],[27,-50],[-5,-28],[-34,-29],[-42,-19],[16,-14],[91,14],[15,-14],[-15,-38],[-4,-49],[-27,-126],[6,-176],[-9,-99],[-34,-44],[-50,-121],[-20,-30],[-67,-5],[-24,-9],[-38,-47],[-33,-16],[-19,-34],[9,-23],[51,13],[39,33],[34,38],[33,18],[32,-29],[-27,-79],[5,-99],[53,-268],[32,-88],[163,-328],[27,-87],[-9,-99],[-40,-78],[-14,-52],[15,-44],[23,-38],[46,-151],[113,-249],[9,-85],[-15,0],[-137,334],[-107,115],[-30,78],[-70,88],[-23,23],[0,-177],[-14,-67],[-32,18],[-8,26],[8,55],[-8,24],[-37,26],[-22,-60],[-35,-24],[-50,-65],[8,-53],[29,-46],[71,-82],[24,-57],[16,-24],[28,-10],[98,-15],[97,-4],[18,-4],[35,-30],[49,-9],[-7,-37],[27,-25],[41,-24],[31,-36],[15,31],[29,7],[16,-38],[22,-83],[9,-59],[-5,-61],[-21,-112],[-5,-62],[-32,14],[-13,-76],[45,14],[-3,-51],[-42,-75],[-15,-40],[15,-89],[-54,-65],[-8,-20],[-7,-85],[-30,-159],[-13,-270],[-26,-162],[-40,-114],[-11,-80],[-15,-33],[-40,-61],[-17,-41],[-25,-103],[-12,-77],[-53,-129],[-77,-127],[-9,-35],[-47,-86],[-20,-25],[-66,-44],[-70,-121],[-46,-45],[-118,-58],[-18,-27],[20,-9],[46,19],[70,43],[-128,-195],[-45,-53],[-68,-135],[-59,-69],[-19,-35],[0,-97],[-25,-42],[-12,-57],[-55,-121],[-38,-183],[-23,-18],[-16,-42],[-41,-211],[-8,-87],[-21,-83],[-5,-44],[12,-91],[52,-157],[12,-86],[15,0],[14,35],[23,21],[16,-19],[12,-115],[-26,-27],[-115,-1],[-41,-26],[-124,-121],[-3,-34],[29,15],[102,71],[22,11],[16,40],[38,10],[46,-9],[80,-38],[5,-173],[45,-230],[-7,-339],[-26,-125],[21,-432],[1,-361],[20,-90],[10,-383],[-16,-189],[-12,-25],[-82,-21],[-43,-7],[-37,13],[3,47],[-51,28],[-275,43],[-27,-10],[-15,-32],[36,2],[70,-8],[32,-9],[61,-30],[60,0],[63,-16],[32,-19],[-2,-26],[-29,-8],[-399,84],[-52,6],[-11,32],[49,8],[67,27],[7,16],[-45,17],[-43,-18],[-87,6],[9,-34],[-47,-14],[-115,-19],[-50,3],[-87,33],[-28,-10],[-48,-40],[-131,-75],[-41,-34],[-31,-40],[-7,-82],[-47,-19],[-18,-21],[-8,-29],[18,-180],[21,-68],[56,-41],[-85,-56],[-90,-89],[-130,-176],[-46,-90],[-45,-54],[-15,-52],[-37,-45],[-86,-77],[-129,-178],[-2,-40],[-16,-39],[-36,-31],[-41,-75],[-15,-48],[-14,-107],[-26,-87],[4,-47],[40,-81],[59,-70],[178,-155],[77,-33],[91,-19],[303,-6],[49,18],[52,35],[51,24],[47,-17],[10,-20],[-20,-36],[-2,-51],[39,-59],[32,-29],[157,-114],[34,-38],[-30,-17],[-36,17],[-140,120],[-152,82],[-134,17],[-34,21],[-36,-2],[-79,17],[-80,-40],[-68,2],[-26,-7],[-58,24],[-78,20],[-82,10],[-72,-8],[-62,-46],[-23,-5],[-51,5],[-77,-11],[-38,-11],[-63,-34],[-85,-20],[-81,-59],[-29,-12],[-114,-7],[-34,-16],[-27,-57],[-67,-24],[-296,-35],[-80,-18],[-83,-37],[-78,-50],[-306,-248],[-49,-58],[-77,-137],[-11,-36],[-8,-148],[-9,-49],[12,-18],[55,13],[22,41],[11,-51],[-24,-27],[-78,-43],[-32,-77],[-32,-41],[-9,-23],[13,-27],[-62,0],[47,-71],[15,-72],[-31,-233],[-31,-49],[-77,-75],[-38,-130],[-15,-21],[-38,-7],[-87,-35],[-431,-257],[-28,-30],[-56,-75],[-35,-17],[-241,-40],[-108,-37],[-76,-54],[9,-71],[-121,-15],[-136,26],[-298,89],[-47,43],[-70,47],[-53,15],[-31,20],[-214,194],[-296,213],[-74,81],[-183,257],[-119,109],[-29,70],[-160,184],[-23,52],[-79,71],[-79,132],[-35,43],[-191,159],[-32,48],[9,26],[24,2],[32,-46],[39,8],[42,22],[-6,17],[-57,-13],[-20,26],[3,25],[43,56],[22,11],[121,-15],[-12,24],[-40,22],[76,28],[-23,24],[-58,-18],[-25,-34],[-31,5],[-53,25],[-13,-14],[-25,-69],[-16,-24],[-17,31],[24,28],[-27,12],[-24,-26],[-24,-57],[-14,32],[-17,91],[-31,44],[-24,74],[-64,131],[36,4],[-1,32],[15,90],[-46,-45],[-42,135],[-34,73],[-30,4],[3,-24],[69,-170],[-10,-32],[-177,399],[-114,372],[-46,310],[14,56],[-44,334],[-54,165],[-14,22],[-15,101],[-8,30],[33,23],[41,-27],[33,-50],[14,-44],[-12,-9],[-52,16],[-12,-7],[9,-53],[37,-31],[26,14],[-10,-64],[34,-1],[11,19],[-17,32],[25,20],[12,-41],[56,-358],[16,0],[2,61],[-21,138],[19,59],[-49,67],[-9,34],[28,20],[10,-32],[35,-59],[18,-57],[-4,-79],[19,-117],[21,-44],[37,-37],[-3,-35],[-44,-86],[-43,-197],[9,-32],[43,-14],[109,-20],[21,5],[53,-23],[40,14],[58,70],[-42,19],[-39,28],[-41,16],[-45,-18],[-47,30],[28,56],[0,45],[-10,48],[-1,103],[-10,39],[-40,37],[4,67],[-26,60],[4,62],[28,45],[-6,44],[-18,42],[-49,83],[-10,36],[-85,84],[-21,30],[-38,-34],[-36,59],[-20,84],[10,44],[-42,26],[-22,121],[-38,16],[-28,64],[-17,-47],[13,-41],[22,-37],[12,-36],[5,-88],[9,-46],[-15,-12],[-31,55],[-71,179],[-3,35],[8,52],[-16,23],[0,34],[104,58],[27,30],[12,30],[-4,34],[-38,-10],[-37,63],[-26,12],[29,-75],[4,-41],[-17,-36],[-39,-23],[-30,9],[-39,59],[-33,91],[-40,182],[-32,91],[-80,107],[-11,38],[-4,45],[-24,97],[-17,34],[-58,53],[-24,30],[-18,85],[-135,267],[-16,55],[-22,33],[5,33],[38,35],[-67,29],[-37,89],[-32,184],[-105,366],[-200,470],[-27,48],[-4,26],[30,33],[-16,29],[-29,-9],[-25,32],[-35,84],[-40,67],[-28,28],[-32,11],[-45,2],[-30,11],[-17,25],[-18,85],[-42,59],[7,30],[-121,288],[-55,75],[-281,305],[-53,-17],[-14,32],[-55,60],[-38,73],[42,9],[164,-35],[0,14],[-30,19],[-9,23],[24,65],[-29,-14],[-42,-38],[-28,-8],[-38,4],[-35,13],[-31,23],[-26,34],[-26,49],[5,16],[75,-5],[33,10],[-10,22],[-46,45],[-89,-66],[-9,-34],[36,-67],[-69,78],[-52,42],[-33,-22],[-30,23],[-17,43],[-12,79],[-82,186],[-29,103],[20,75],[-29,9],[-47,-54],[-2,55],[-13,50],[-35,82],[-144,241],[-26,77],[-32,27],[-15,66],[-19,34],[-48,67],[-168,417],[-21,39],[-32,36],[-8,84],[-55,61],[-6,30],[59,-28],[35,10],[31,40],[81,22],[34,18],[18,27],[-103,-16],[-98,-31],[-73,10],[-105,422],[29,72],[-32,33],[-14,42],[-7,81],[-24,35],[-25,112],[-9,91],[-41,151],[-57,112],[11,26],[-15,38],[-15,128],[22,-64],[6,-53],[19,11],[-1,91],[-54,145],[1,49],[-14,122],[21,95],[35,-14],[60,11],[-24,23],[-25,39],[-30,27],[30,20],[-31,38],[-26,-24],[-34,-91],[-30,71],[-54,182],[-18,136],[-42,79],[-26,72],[-74,92],[-32,54],[-71,90],[-20,45],[2,68],[-11,42],[-37,56],[-4,124],[-13,44],[-63,85],[-22,45],[10,51],[30,-21],[53,-11],[54,-3],[11,23],[-142,48],[-19,9],[-27,39],[-6,96],[-35,62],[-6,85],[-28,45],[-17,80],[-45,83],[-4,56],[33,-39],[23,-62],[26,-48],[41,-2],[-14,39],[59,-7],[-94,106],[-29,13],[15,32],[-80,42],[0,-59],[-9,-29],[-31,-15],[-34,5],[-21,18],[7,23],[-17,60],[-2,50],[28,32],[70,9],[0,15],[-34,13],[-81,-28],[-25,9],[-18,22],[-2,25],[20,19],[-15,42],[-14,95],[-22,38],[-42,34],[-31,8],[-26,-13],[-32,-36],[-30,59],[-15,17],[-46,0],[-16,30],[-77,37],[-33,29],[-12,40],[40,-20],[11,13],[10,52],[49,15],[24,-8],[18,-21],[43,68],[26,15],[39,8],[42,-8],[18,30],[-84,32],[-69,-32],[-27,-32],[-65,-36],[-29,1],[-20,24],[-26,68],[-31,23],[-92,51],[-12,31],[12,98],[-10,35],[-79,34],[-51,102],[-19,18],[-114,31],[21,64],[32,50],[48,28],[8,20],[-18,36],[-15,-16],[-124,404],[-20,26],[-29,10],[-47,1],[-46,11],[-38,28],[-61,67],[125,-9],[46,9],[56,-22],[32,22],[75,-28],[27,-21],[19,-43],[31,16],[-18,16],[-51,67],[-21,14],[-92,39],[-47,-2],[-52,33],[-79,7],[-24,19],[12,31],[38,48],[23,11],[98,21],[-26,33],[12,26],[-154,-82],[-23,-19],[-44,12],[-34,35],[11,54],[-33,50],[-14,57],[5,28],[52,74],[60,22],[113,27],[0,16],[-83,1],[-38,-6],[-35,-27],[-78,-48],[-33,4],[-45,79],[-25,112],[31,22],[-99,16],[-22,14],[-6,27],[6,96],[-17,55],[-76,141],[-38,49],[-130,103],[-42,40],[-42,58],[-8,46],[63,7],[0,16],[-37,-1],[-34,9],[-25,18],[-10,27],[-40,23],[-7,22],[30,38],[0,130],[6,33],[55,65],[-51,-15],[-27,-35],[-28,-10],[0,89],[-11,35],[-35,-3],[-20,30],[-10,46],[-61,181],[0,54],[-45,23],[13,48],[46,28],[-73,36],[-24,31],[-16,80],[-33,92],[-30,29],[-6,23],[1,49],[25,5],[19,-28],[46,-47],[26,-10],[-11,42],[32,36],[-64,25],[-30,23],[-15,53],[24,16],[70,30],[0,-37],[29,13],[-11,40],[-27,15],[-34,-7],[-35,-24],[-25,53],[1,30],[20,28],[0,48],[-47,46],[-24,59],[13,62],[20,56],[-40,61],[-26,62],[-12,59],[23,27],[-23,92],[12,65],[33,56],[-60,29],[-18,22],[18,26],[-25,30],[17,26],[23,-27],[18,51],[-4,53],[-18,50],[-28,44],[16,31],[-16,67],[-42,75],[0,47],[-40,73],[-15,48],[-40,42],[23,10],[61,-43],[40,13],[-32,38],[-61,114],[-25,35],[-56,45],[-12,51],[44,64],[-26,35],[16,45],[-34,57],[-75,79],[-13,38],[5,18],[79,11],[82,38],[-32,13],[-71,7],[-33,11],[-25,24],[-15,33],[-2,35],[13,29],[-35,45],[-11,29],[6,24],[33,53],[0,27],[-29,50],[-8,60],[-11,24],[-49,63],[-13,72],[-19,47],[-103,162],[-4,46],[41,43],[-37,2],[-23,17],[-7,27],[8,30],[24,22],[50,29],[3,40],[-46,-21],[-31,-41],[-48,61],[-14,31],[16,34],[-27,50],[-19,171],[-28,48],[-62,14],[29,61],[-15,34],[15,43],[29,-11],[25,-58],[28,-27],[40,5],[83,-16],[42,-23],[27,-38],[-35,-20],[0,-28],[22,-7],[31,41],[6,45],[-20,74],[14,34],[-32,18],[-31,3],[-68,-7],[-39,9],[-39,26],[-21,34],[15,38],[-53,12],[-38,48],[-36,4],[-17,26],[6,38],[-5,31],[-29,40],[-17,53],[4,87],[10,49],[25,46],[39,27],[49,-8],[32,-32],[65,-106],[41,-43],[14,43],[-59,44],[-24,76],[-39,68],[-22,12],[-65,-12],[-24,9],[-10,41],[-53,129],[-39,29],[-20,72],[-8,85],[1,111],[10,37],[19,29],[31,17],[51,-17],[23,1],[32,59],[27,-21],[79,-83],[-19,-40],[8,-32],[24,-23],[32,-13],[-15,51],[8,56],[24,49],[31,27],[-63,25],[-30,52],[16,51],[-33,2],[-46,-31],[-67,27],[-43,53],[35,65],[34,-27],[15,21],[5,59],[27,9],[63,-7],[24,35],[-77,0],[86,40],[111,30],[33,43],[-38,5],[-62,-18],[-53,-24],[-10,26],[9,59],[-15,21],[24,46],[-40,25],[-14,28],[16,159],[-16,0],[-39,-78],[-32,-28],[-4,-77],[-15,-30],[36,-26],[-20,-47],[-95,-93],[-14,75],[-35,-32],[-41,-54],[-33,-62],[-19,-90],[-14,-33],[-19,-13],[-22,27],[-2,24],[12,49],[-10,33],[-61,-47],[-11,26],[12,26],[45,56],[20,57],[-5,65],[32,-17],[16,47],[-7,21],[-26,8],[27,67],[-1,49],[-21,40],[1,36],[23,23],[-10,25],[-29,-7],[-12,-34],[-33,-14],[-3,40],[42,96],[39,64],[-11,29],[-57,-81],[-31,-28],[-7,134],[8,75],[21,33],[120,12],[62,-5],[41,-46],[33,-12],[66,-9],[66,18],[29,-3],[34,-32],[50,-121],[35,-42],[52,27],[-44,22],[-2,70],[-37,29],[-55,63],[-37,14],[-121,-8],[-39,8],[-35,21],[-62,51],[-41,19],[-41,-40],[-37,4],[-32,29],[-54,78],[-8,19],[-25,123],[-3,52],[16,31],[33,19],[245,93],[-50,20],[-46,-10],[-45,-19],[-44,-3],[-33,21],[-23,66],[-64,32],[-17,0],[14,-44],[-14,-31],[33,-28],[14,-33],[-31,-7],[-43,45],[-26,113],[16,43],[-18,95],[-51,166],[16,-10],[31,-50],[41,18],[-27,89],[38,19],[7,18],[-14,69],[-85,-99],[-27,-6],[-4,39],[9,81],[-16,27],[-51,65],[-2,22],[23,32],[11,33],[4,78],[-7,56],[5,24],[43,25],[42,74],[10,34],[0,129],[5,26],[40,103],[21,122],[33,43],[7,25],[-30,22],[2,50],[12,72],[65,111],[9,49],[37,15],[42,37],[8,23],[5,68],[14,46],[24,47],[87,118],[16,43],[9,47],[0,76],[-12,71],[7,20],[32,30],[7,25],[8,101],[-3,43],[-20,31],[92,60],[10,24],[-57,38],[13,52],[-13,24],[-42,-50],[-33,18],[-12,51],[30,88],[-41,-16],[-85,-59],[20,35],[18,78],[24,23],[-63,72],[44,40],[67,31],[4,46],[-77,-17],[-47,-6],[-25,43],[-29,27],[-46,7],[-35,37],[-11,33],[38,4],[87,-15],[49,10],[11,22],[-76,162],[-14,19],[-22,-2],[-98,-43],[-30,30],[-14,-28],[-13,-50],[-66,-29],[12,70],[33,51],[18,41],[-32,36],[-17,-15],[-44,1],[-31,-27],[-4,-102],[-27,-5],[-47,-27],[-18,6],[-33,40],[2,31],[33,35],[140,94],[61,46],[6,22],[-80,25],[-32,42],[-58,32],[-3,44],[-61,-46],[-27,31],[-9,24],[-10,66],[-24,75],[36,25],[79,10],[0,31],[-34,-2],[-65,-16],[-34,9],[-25,21],[14,30],[136,39],[92,53],[115,76],[42,-29],[12,24],[-9,35],[-22,8],[-123,-38],[-40,-19],[-117,-78],[-64,-10],[14,34],[66,121],[34,26],[36,17],[86,75],[31,17],[51,10],[54,27],[49,34],[35,33],[48,88],[28,19],[24,2],[84,-18],[40,9],[102,39],[66,45],[127,44],[139,69],[52,8],[42,30],[11,24],[-30,16],[-77,-41],[-83,-29],[-54,-38],[-69,-17],[-91,-43],[-52,-9],[-98,18],[-55,4],[-40,-14],[-47,-30],[-47,-3],[-94,25],[-50,6],[-126,-21],[-92,14],[-42,2],[-102,-33],[-44,-8],[-35,14],[-14,49],[8,41],[40,85],[14,49],[14,144],[10,22],[41,21],[29,49],[44,98],[35,27],[40,8],[84,-5],[28,20],[26,78],[45,8],[0,17],[-32,5],[-43,-17],[-16,-36],[-157,-13],[-45,-51],[-46,-34],[-52,-29],[-35,-10],[-21,21],[-58,93],[-12,31],[6,40],[29,84],[10,49],[-6,76],[24,42],[13,73],[14,36],[33,44],[41,40],[33,23],[52,15],[46,-3],[39,-18],[66,-46],[58,9],[47,-18],[43,-30],[93,118],[49,37],[78,14],[39,-15],[36,-29],[36,-16],[42,22],[13,30],[1,40],[-11,37],[-26,22],[-14,-27],[-30,-15],[-37,0],[-68,31],[-46,-7],[-137,-65],[-67,11],[-149,55],[-76,-5],[-41,27],[-73,10],[-46,-13],[-71,-65],[-43,-28],[-51,-15],[-49,7],[-5,19],[27,23],[-7,18],[-33,7],[-78,-46],[-49,16],[-24,81],[-1,50],[17,22],[38,23],[6,46],[-24,29],[-57,-24],[-49,-70],[-20,-47],[-27,-94],[-43,-7],[-46,9],[-29,-3],[-27,36],[4,42],[-54,14],[-71,-3],[-17,-20],[12,-39],[-99,16],[-29,-7],[38,-39],[55,-20],[41,18],[70,64],[12,-28],[-26,-71],[11,-10],[65,-27],[85,6],[23,-99],[-21,-234],[-21,-39],[-33,-40],[-18,-35],[-39,-34],[-45,-12],[-37,9],[-14,-37],[-43,21],[-19,-38],[-51,-29],[-26,45],[-39,24],[-46,13],[-37,-8],[50,-29],[19,-23],[-7,-24],[-22,-7],[-72,9],[49,-31],[-19,-36],[-51,25],[-40,-2],[-37,-13],[-22,-20],[131,-42],[38,-4],[83,16],[23,-60],[39,-17],[-22,-54],[4,-59],[-69,15],[-43,53],[-75,54],[-44,10],[-19,-41],[27,-16],[55,-17],[41,-66],[-40,-12],[-53,9],[-130,52],[-16,-6],[-6,-35],[4,-88],[20,-15],[37,18],[0,-59],[73,25],[43,7],[65,-30],[31,3],[108,38],[12,-6],[13,-54],[42,-20],[14,-21],[27,-78],[21,-27],[37,-20],[69,-2],[15,-42],[39,-40],[7,-61],[-7,-22],[-46,-46],[-73,-254],[-50,-80],[-118,-116],[-34,-71],[-79,-83],[-25,-17],[15,-42],[-32,-19],[12,-29],[-26,-48],[31,-68],[0,-38],[-31,-30],[-54,-22],[-25,-29],[-143,-71],[-41,-9],[-103,-5],[-267,-150],[-39,-33],[-57,-33],[-43,-11],[-57,10],[-77,-45],[-96,-33],[-126,-85],[-75,-16],[28,48],[-25,2],[-31,-21],[-97,-78],[-20,-26],[-8,-37],[-41,-34],[-187,-57],[-132,-22],[-396,-186],[-53,3],[-15,-16],[-33,9],[-73,-55],[-85,12],[-37,-6],[-15,-43],[-41,-27],[-316,-18],[-46,2],[-40,14],[-60,40],[-51,-17],[-46,8],[-72,52],[-349,136],[-127,80],[-47,11],[-26,15],[-77,77],[-40,29],[-138,52],[-82,69],[-81,49],[-247,217],[-211,157],[-192,232],[-29,43],[-103,92],[-148,165],[-68,98],[-13,71],[-44,8],[-72,46],[-282,279],[-137,75],[-34,33],[-73,88],[-46,34],[-46,72],[-72,30],[-42,33],[-66,76],[-13,37],[8,65],[-10,34],[-51,-46],[-28,-6],[-42,20],[-206,185],[-70,48],[-31,27],[-106,136],[-70,46],[-36,32],[-24,51],[-98,130],[-79,61],[-41,40],[-30,70],[-61,90],[-19,42],[-1,52],[37,69],[15,83],[15,39],[42,60],[32,25],[89,46],[58,40],[26,-20],[-7,-29],[-17,-23],[-41,-17],[-18,-22],[32,-53],[21,-18],[57,-2],[56,27],[54,-14],[17,7],[53,44],[22,-3],[31,-25],[8,-36],[-53,-72],[7,-37],[-35,-48],[10,-43],[37,-36],[48,-24],[0,-17],[165,24],[110,48],[23,41],[30,10],[168,3],[75,16],[36,22],[39,54],[38,12],[13,32],[-27,88],[5,36],[33,-4],[38,13],[27,-90],[4,-44],[-16,-31],[32,-16],[71,-14],[34,-18],[8,34],[22,28],[24,-18],[38,47],[38,31],[55,-15],[21,33],[37,101],[18,34],[19,-16],[104,-110],[40,-5],[34,69],[25,26],[67,4],[47,18],[46,28],[126,108],[26,11],[64,7],[41,26],[85,8],[190,-24],[75,31],[25,35],[39,83],[61,75],[72,126],[116,160],[9,21],[-2,78],[46,45],[71,132],[66,37],[71,79],[37,26],[73,-7],[41,35],[50,98],[3,52],[-11,51],[-19,43],[-68,72],[-38,17],[-17,-35],[-19,-19],[-90,-43],[-26,-38],[5,-52],[22,-49],[-20,-53],[4,-39],[-11,-80],[-32,-15],[-47,0],[-37,-17],[-36,27],[-25,5],[-35,-17],[-26,33],[-50,13],[-44,64],[-37,28],[-2,-56],[-22,-35],[-40,-15],[-57,1],[-34,-9],[-35,38],[-41,8],[-9,14],[-34,-37],[50,-40],[7,-25],[-34,-11],[-129,-15],[-145,-54],[-125,-17],[-125,-40],[-70,-10],[-44,-11],[-58,-29],[-60,-40],[-44,-42],[-70,-118],[-28,-18],[-48,6],[-90,24],[-152,2],[-22,7],[-42,31],[-27,7],[-75,-3],[-48,10],[-38,22],[-106,21],[-41,21],[-75,12],[-76,31],[-221,19],[-82,23],[-147,80],[-213,138],[-386,154],[-389,245],[-90,69],[-3,42],[-60,24],[-30,33],[-20,41],[21,4],[24,41],[6,49],[-39,-18],[-61,-9],[-57,10],[-25,41],[44,84],[85,13],[9,24],[-25,16],[-46,14],[-23,38],[-44,-15],[-45,27],[-13,17],[0,50],[48,49],[-32,7],[-20,-14],[-26,11],[-24,-31],[-34,-10],[-28,10],[-9,23],[15,58],[-56,-26],[-37,26],[21,44],[32,48],[40,39],[45,20],[-10,24],[-75,-19],[-1,-30],[-35,-20],[-44,2],[-12,31],[10,89],[-13,108],[9,52],[42,23],[97,-28],[45,0],[2,42],[-53,7],[-7,32],[87,42],[43,3],[33,18],[35,50],[64,64],[41,30],[80,28],[37,83],[36,37],[21,5],[79,-5],[22,7],[44,31],[52,18],[118,83],[-36,13],[-57,-23],[-29,10],[-59,-55],[-50,-28],[-58,-10],[-84,-1],[-46,-7],[-23,-19],[-30,-64],[-23,-30],[-25,-14],[-74,-15],[-36,-17],[-63,-38],[-83,-14],[-51,-32],[-49,-20],[-38,-30],[-153,-170],[25,-29],[-25,-31],[-32,-22],[-74,8],[-141,-5],[-110,13],[-53,15],[-31,26],[15,42],[54,0],[22,45],[56,24],[23,-8],[28,-31],[28,31],[69,15],[10,45],[-48,-25],[-40,-2],[-36,18],[-36,31],[-25,41],[-3,42],[4,91],[-44,-45],[-32,8],[5,34],[22,55],[17,100],[53,75],[73,35],[37,-2],[-11,28],[7,54],[42,19],[27,-47],[32,-13],[30,12],[47,55],[-10,57],[27,4],[22,-26],[2,-38],[71,46],[103,15],[651,-4],[1,308],[2,410],[47,93],[116,-5],[32,-46],[13,-129],[43,-30],[22,17],[70,118],[22,49],[51,-5],[36,-33],[43,-71],[31,-29],[41,-4],[60,20],[90,46],[43,7],[53,-15],[126,-55],[41,-8],[88,12],[165,55],[628,-15],[65,-27],[174,-168],[98,-45],[121,-13],[451,6],[98,20],[80,62],[24,40],[54,138],[24,36],[26,13],[78,7],[128,39],[89,11],[82,54],[43,19],[121,6],[39,14],[102,65],[232,51],[94,-2],[27,-53],[-13,-22],[-51,-38],[-2,-24],[22,-78],[11,-88],[16,-32],[38,-33],[82,-37],[298,-21],[45,11],[84,40],[84,23],[14,15],[-29,37],[-8,38],[34,40],[136,84],[42,12],[42,-3],[48,-19],[44,-1],[23,16],[40,50],[107,35],[21,20],[-17,56],[-78,23],[-89,13],[-51,27],[-8,49],[8,62],[11,30],[-11,26],[-43,34],[-6,64],[18,69],[31,53],[148,65],[45,30],[-60,84],[-75,194],[-133,190],[-62,117],[-49,122],[-74,305],[-25,52],[-38,45],[-141,110],[-74,76],[-26,44],[-10,52],[-18,56],[-89,87],[-36,47],[-17,77],[24,448],[-8,90],[-48,60],[-89,17],[-84,-23],[-84,-33],[-88,-16],[-260,-7],[-126,25],[-87,28],[-34,23],[-33,52],[-45,122],[-41,46],[-92,72],[-87,93],[-71,107],[-41,112],[-1,33],[19,115],[3,79],[9,37],[120,179],[33,82],[10,81],[-17,89],[-3,43],[33,89],[7,39],[-8,87],[13,183],[-10,81],[-64,72],[-79,40],[-84,19],[-535,-20],[-96,33],[-160,129],[-91,54],[-345,127],[-70,70],[-17,91],[95,537],[59,167],[92,139],[201,181],[143,89],[261,222],[134,192],[190,164],[52,65],[164,427],[25,41],[216,197],[152,98],[125,123],[40,24],[39,11],[87,12],[86,30],[42,10],[47,-6],[66,-18],[62,-29],[56,-39],[73,-75],[63,-45],[27,-28],[19,-45],[-9,-82],[7,-43],[69,-141],[85,-111],[115,-69],[155,-19],[183,37],[526,231],[168,51],[190,36],[192,15],[176,-13],[186,13],[667,181],[30,21],[12,34],[26,271],[12,40],[25,45],[178,205],[273,198],[87,80],[61,96],[45,106],[130,444],[53,92],[166,178],[61,37],[319,146],[549,251],[286,131],[37,23],[27,33],[73,153],[57,84],[138,163],[174,292],[231,391],[115,325],[191,540],[33,33],[383,156],[405,79],[85,42],[370,268],[10,64],[-32,97],[-51,95],[-45,57],[-109,52],[21,43],[35,33],[44,20],[42,-4],[-14,61],[37,-11],[50,19],[113,137],[32,47],[88,21],[30,29],[9,53],[-10,80],[23,42],[63,59],[82,41],[51,9],[18,11],[14,50],[33,21],[14,45],[54,45],[45,59],[69,54],[-22,59],[52,21],[45,30],[24,39],[-16,41],[34,42],[23,14],[53,3],[58,-14],[48,-3],[52,87],[38,30],[38,16],[91,7],[44,13],[65,66],[34,27],[1,46],[33,39],[48,31],[129,60],[-60,53],[-33,17],[-45,1],[-97,-15],[-36,14],[-49,59],[-19,74],[6,45],[36,88],[0,99],[15,51],[88,191],[27,38],[63,74],[11,42],[-5,42],[-67,88],[-65,209],[-124,194],[-23,26],[31,42],[33,25],[11,37],[31,38],[9,78],[21,36],[34,30],[167,111],[65,30],[63,102],[144,-25],[45,9],[42,57],[20,77],[38,48],[99,-30],[36,38],[44,7],[50,-5],[54,5],[27,13],[41,56],[20,9],[77,-2],[-16,63],[40,7],[136,-44],[38,7],[43,27],[79,-15],[-2,51],[50,42],[69,30],[82,19],[69,-4],[31,100],[18,37],[71,69],[24,44],[-14,50],[-58,62],[-215,150],[-76,38],[-156,32],[-75,39],[-83,58],[-69,24],[-73,-7],[-94,-32],[-92,-8],[-153,66],[-87,-5],[-79,-22],[-86,-4],[-79,23],[-60,60],[-66,154],[-7,45],[16,40],[43,76],[2,44],[-15,90],[-1,49],[16,49],[56,93],[15,47],[-8,50],[-30,21],[-41,-7],[-39,-34],[-49,-115],[-46,-27],[-43,-12],[-118,-16],[-44,1],[-37,17],[-64,55],[-37,17],[-44,-3],[-73,-38],[-41,-9],[-48,7],[-38,22],[-28,32],[-22,42],[-38,-50],[-49,71],[-85,51],[-74,51],[-36,11],[-86,51],[-49,41],[-73,20],[0,31],[-110,20],[-73,41],[-98,41],[-183,81],[-183,51],[-98,92],[-73,10],[-98,82],[0,91],[25,62],[-122,81],[-13,71],[0,41],[-48,81],[0,41],[-37,51],[0,71],[61,112],[24,101],[-24,112],[12,101],[-36,71],[24,61],[-37,111],[-48,111],[0,71],[-25,111],[0,51],[-24,101],[0,50],[-61,111],[-61,142],[24,80],[-86,141],[0,71],[-48,141],[-37,181],[-61,140],[-24,91],[97,200],[61,100],[61,30],[135,41],[122,50],[61,40],[85,140],[61,90],[37,70],[183,80],[98,60],[98,40],[122,10],[85,20],[86,49],[73,70],[0,90],[12,100],[-12,60],[24,159],[-12,119],[-183,110],[-134,39],[-159,40],[-147,10],[-61,20],[-85,70],[-37,109],[0,79],[49,89],[61,60],[37,119],[-74,99],[-122,30],[-97,19],[-147,-10],[-256,30],[-110,40],[-135,29],[-85,30],[-98,69],[-24,50],[-86,79],[-110,79],[-61,59],[-12,49],[-49,129],[-122,29],[-97,50],[-62,-20],[-109,39],[-123,-10],[-97,-39],[-122,-20],[-110,0],[-147,40],[-97,0],[-123,39],[-48,59],[-25,99],[25,118],[-25,128],[0,167],[49,128],[85,127],[98,79],[110,68],[171,98],[110,79],[208,186],[146,68],[159,108],[24,214],[122,108],[208,58],[256,-19],[184,48],[256,-39],[232,-39],[159,49],[268,0],[98,107],[232,69],[232,9],[98,117],[134,49],[98,48],[134,49],[134,58],[147,68],[159,-9],[85,-29],[49,38],[61,78],[134,39],[171,-10],[86,-48],[122,0],[85,-68],[62,-39],[24,-49],[37,-39],[12,-29],[49,59],[85,87],[98,19],[171,0],[183,-29],[61,-29],[49,-39],[85,-19],[74,-10],[73,0],[85,-19],[98,-98],[37,-87],[36,-146],[49,-88],[110,-10],[86,39],[109,10],[110,0],[110,-20],[110,-39],[122,-78],[122,-97],[74,-68],[73,-59],[122,-108],[37,-58],[49,-98],[134,-29],[159,-88],[48,-108],[13,-49],[36,-59],[61,-69],[37,-29],[195,-59],[49,-19],[86,-10],[49,0],[48,-89],[0,-68],[86,-20],[98,-29],[122,-99],[49,-19],[97,-30],[147,-19],[36,-10],[61,-30],[110,10],[98,-79],[24,-69],[0,-59],[-73,-128],[12,-128],[74,-59],[97,-59],[147,-30],[134,-10],[183,-49],[61,10],[184,-40],[24,0],[86,-39],[61,-59],[24,-60],[0,-49],[61,-40],[110,40],[110,20],[55,-50],[43,-118],[67,-94],[-202,0],[-97,-85],[73,-59],[97,10],[129,-15],[85,15],[-6,49],[86,40],[61,69],[6,30],[79,79],[232,134],[92,-45],[165,-109],[30,50],[171,84],[55,281],[128,-19]]],"transform":{"scale":[0.0004498391169135078,0.00045154396840771925],"translate":[68.143403,6.745551]},"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]],[[24]],[[25]],[[26]],[[27]]],"type":"MultiPolygon","properties":{"cartodb_id":1,"cartodb_georef_status":true,"country":"India","id":"1"}}]}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment