Skip to content

Instantly share code, notes, and snippets.

@mickeykedia
Last active May 2, 2016 05:21
Show Gist options
  • Save mickeykedia/9d9144072c5f637c26995569dd347614 to your computer and use it in GitHub Desktop.
Save mickeykedia/9d9144072c5f637c26995569dd347614 to your computer and use it in GitHub Desktop.
Mumbai Population Density Map

Mumbai Population Data Map

Github repo: https://github.com/mickeykedia/Mumbai-Population-Map

Understanding Wards

Read Wikipedia page here https://en.wikipedia.org/wiki/Administrative_divisions_of_Mumbai

Data Source

Census 2011: http://censusindia.gov.in/pca/pcadata/pca.html

There is sub-ward level data available on the census website for Mumbai and Mumbai Suburban. These two datasets were collated and then the data was grouped by wards. The original dataset does not have Ward Names ('A', 'B', 'F/S' etc.) as used everywhere by the BMC.

This information was extracted by following the directions here: https://groups.google.com/forum/?hl=en#!searchin/datameet/ward$20mumbai/datameet/AG3hO7cn3VU/4lmdFlNxCAAJ

Incase the above link is not up, this is the conversation on the thread

On Monday, 14 December 2015 00:33:20 UTC+5:30, rithik...@idfcinstitute.org wrote:
Hello, 

I work with a Mumbai based research institute and we are interested in doing some ward level analysis based on Mumbai. 

I've downloaded the Primary census abstract which has ward level info on household amenities. 
However I see that the wards are identified as nos. eg. 1048 or 0835 etc. 
Wards as I understand, in the BMC are identified as A / B/ M west etc. 
Any idea if there is a one to one mapping of the census ward numbers to the BMC ward alphabets? 

Any help will be appreciated! Thank you! :) 

Rithika 

On Monday, December 14, 2015 at 2:44:16 PM UTC+5:30, Sumit wrote:
The first two digits of the ward number given in the Census dataset will match with the BMC's alphabetical list. 

Regards,
Sumit

On Monday, 14 December 2015 19:58:19 UTC+5:30, rithik...@idfcinstitute.org wrote:
Hey Sumit!

Just a quick qn, what do we do in case of wards such as M ward, where there is an M East and M West and similar such cases. 
So will we take the M E before M W because of the alphabetical order. thanks!!


Rithika,

You can take a look at the sequence given in the Census Handbook [page 10].
http://www.censusindia.gov.in/2011census/dchb/2722_PART_B_DCHB_%20MUMBAI%20(SUBURBAN).pdf

Regards,
Sumit

forked from rogerfischer's block: Prop F with SF Precincts

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
<title>Mumbai Ward Level Population</title>
<style>
body {
height: 100%;
margin: 0;
padding: 0;
font-family: 'Lato', sans-serif;
color: #272a2f;
}
#mapcanvas {
width: 960px;
height: 600px;
margin: 10px 10px 10px 10px;
/*padding: 5px 5px 5px 5px;*/
border: 0.2px solid #555;
}
.mumbai {
fill: #f6f6f6;
/*fill: #eee;*/
}
.ward:hover {
opacity: 0.4;
}
.hidden {
display: none;
}
.mumbai-boundary {
fill: none;
stroke: #fff;
stroke-width: none;
}
div.tooltip {
color: #222;
background-color: #fff;
padding: .5em;
text-shadow: #f5f5f5 0 1px 0;
border-radius: 2px;
opacity: 0.9;
position: absolute;
}
.axis text {
font: 10px;
}
.axis line, .axis path {
fill:none;
stroke:#000;
shape-rendering:crispEdges;
}
/*
Fill ranges for Quantized scale
ref: https://bl.ocks.org/mbostock/4060606
.q0-9 { fill:rgb(247,251,255); }
.q1-9 { fill:rgb(222,235,247); }
.q2-9 { fill:rgb(198,219,239); }
.q3-9 { fill:rgb(158,202,225); }
.q4-9 { fill:rgb(107,174,214); }
.q5-9 { fill:rgb(66,146,198); }
.q6-9 { fill:rgb(33,113,181); }
.q7-9 { fill:rgb(8,81,156); }
.q8-9 { fill:rgb(8,48,107); }
*/
</style>
<link href='https://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
</head>
<body>
<!--<div id="mapcanvas" ></div> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.min.js"></script>
<script src="https://d3js.org/queue.v1.min.js"></script>
<!-- Legend Library http://d3-legend.susielu.com/ -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-legend/1.10.0/d3-legend.js"></script>
<script>
var width = 1060,
height = 800;
// PROJECTION
/*
A Different projection which doesn't work very well for Mumbai
var projection = d3.geo.conicConformal()
.rotate([0, 0, 0])
.center([72.8777, 19.089]) // Approximately the coordinates of Mumbai (slightly North)
.scale(90000)
.parallels([37.06666666666667, 38.43333333333333])
.translate([width / 2, height / 2])
.precision(.1);
*/
// MERCATOR
var projection = d3.geo.mercator()
.center([72.8777, 19.089]) // Approximately the coordinates of Mumbai (slightly North)
.scale(90000)
.translate([width / 2, 310]);
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
// Title inside the Map
svg.append("text")
.attr("x", "50")
.attr("y", "29")
.attr("text-anchor", "start")
.style("font-size", "16px")
.style("text-decoration", "none")
.text("Mumbai Ward Level Map");
// Div for the tooltip
var tooltip = d3.select('body').append('div')
.attr('class', 'hidden tooltip');
// Defining the scale
var linear = d3.scale.linear()
.range(["beige", "red"]);
/*
// Linear 2
// Excluding outliers (but please check the data first)
var quantize = d3.scale.quantize()
.range(d3.range(9).map(function(i) { return "q" + i +"-9";}))
var linear2 = d3.scale.linear()
.range(["red", "white", "green"]);
// A scale to try with different thresholds. May be interesting to do this
var threshold = d3.scale.threshold()
.domain([0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1])
.range(["#8e0152", "#c51b7d", "#de77ae", "#f1b6da", "#fde0ef", "#f7f7f7", "#e6f5d0", "#b8e186", "#7fbc41", "#4d9221", "#276419"]);
*/
// Using the queue library. We may be able to replace this with something that d3js
// do on its own
queue()
.defer(d3.json, 'Mumbai_Topojson.topojson')
.defer(d3.csv, 'ward_level_collated.csv') // REPLACE REF WITH DATA
.await(ready);
// The default property to be mapped
var property = 'TOT_P_DEN';
/**
*
* Finds the min and max for the property in the data.
* Also assumes that the property has integer values.
* @param data
* @param property
* @return
*/
function calculate_domain(data, property){
var d_prop = data.map(function(d){ return parseInt(d[property]);});
var ret_value = {};
ret_value['min'] = d3.min(d_prop);
ret_value['max'] = d3.max(d_prop);
return ret_value;
};
/**
*
* The ready function which after the data is loaded creates all the elements
* etc.
*
*/
function ready(error, MAP, DATA) { // REPLACE REF WITH DATA
if (error) throw error;
//console.log(MAP) // CHECK YOUR MAP
//console.log(DATA) // CHECK YOUR DATA
// Set domain for the scales
var dom = calculate_domain(DATA, property);
linear.domain([dom['min'], dom['max']]);
// Mumbai data
var mumbai = topojson.feature(MAP, MAP.objects.Mumbai);
var ward_id = {};
DATA.forEach(function(d) { ward_id[d.Ward_Alphabet] = d.Ward_Alphabet})
var ward_names = {};
DATA.forEach(function(d) { ward_names[d.Ward_Alphabet] = d.Ward_Names})
var prop_value = {};
DATA.forEach(function(d) { prop_value[d.Ward_Alphabet] = +parseInt(d[property]); });
//console.log(prop_value);
svg.append("g")
.attr("class", "mumbai")
.selectAll("path")
.data(mumbai.features)
.enter()
.append("path")
.attr("class", "ward")
.attr("d", path)
// Try out the different scales.
.style("fill", function(d) {
return linear(prop_value[d.properties.name]);
}) // population
.on('mousemove', function(d) {
// Gets coordinates for the Mouse pointer
var mouse = d3.mouse(svg.node()).map(function(d) {
return parseInt(d);
});
// Un hides the div for the tooltip and the positions it
// Also adds the html content
// @TODO: Format the population values to put commas
tooltip.classed('hidden', false)
.attr('style', 'left:' + (mouse[0] + 15) +
'px; top:' + (mouse[1] - 35) + 'px')
.html(ward_names[d.properties.name] + ": "+ prop_value[d.properties.name].toLocaleString());
})
.on('mouseout', function() {
tooltip.classed('hidden', true);
});
//Borders
svg.append("path")
.datum(topojson.mesh(MAP, MAP.objects.Mumbai, function(a, b) { return a !== b; }))
.attr("class", "mumbai-boundary")
.attr("d", path);
// Legend
svg.append("g")
.attr("class", "legendLinear")
.attr("transform", "translate(50, 100)");
var legendLinear = d3.legend.color()
.scale(linear)
.title("Population Density / Sq. KM (2011)")
.labelFormat(d3.format(",.0f"));
svg.select(".legendLinear")
.call(legendLinear);
};
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.0000028198101468480327,0.0000030195936694542698],"translate":[72.77633295153348,18.89395643371942]},"arcs":[[[24993,17907],[-28,-140],[-258,-971],[-59,-188],[-29,-50],[-1,-9],[-4,-21],[-14,-50],[0,0],[-27,-98],[-35,-128],[-22,-81],[-13,-49],[-26,-95],[-40,-143],[-6,-16],[-8,-30],[-6,-25],[-4,-14],[-13,-79],[-9,-33],[0,0],[0,0],[-7,-28],[-18,-65],[-23,-83],[-24,-90],[-11,-40],[0,0],[-9,-34],[-17,-62],[-17,-66],[-16,-59],[-14,-48],[-5,-22],[-12,-42],[0,0],[0,0],[-2,-6],[-8,-29],[0,-1],[-6,-22],[-22,-79],[-2,-6],[-17,-65],[-6,-21],[-5,-19],[-21,-80],[0,0],[-15,-54],[-24,-94],[-7,-32],[0,0],[0,-3],[-39,-147],[-23,-86],[-29,-114],[-3,-10],[-3,-12],[0,-1],[0,-2],[-5,-18],[-9,-28],[-8,-32],[-1,-4],[-10,-36],[-9,-32],[0,-2],[0,0],[-1,-2],[-5,-20],[-5,-17],[-15,-59],[-4,-13],[-5,-18],[-5,-18],[-3,-9],[-9,-33],[-2,-8],[-1,-3],[0,0],[0,-1],[-5,-18],[-6,-20],[0,-4],[-2,-5],[-2,-5],[-1,-2],[0,-1],[-2,-5],[-2,-2],[-3,-4],[-2,-3],[-6,-5],[-1,-1],[-5,-3],[-10,-6],[-10,-4],[-5,-1],[-5,-2],[-9,-1],[-10,0],[-9,1],[-12,3],[-4,2],[-8,4],[-15,11],[-4,4],[-3,4],[-1,1],[-8,14],[-2,5],[0,2],[-2,12],[-1,5],[0,2],[-2,0],[0,2],[0,1],[-108,-10],[5,0],[1,-6],[0,-3],[-1,0],[0,0],[0,-2],[0,-2],[2,0],[6,-28],[3,-12],[2,-9],[1,-6],[3,-21],[2,-8],[4,-25],[0,0],[2,-10],[3,-14],[0,0],[0,0],[3,-12],[6,-36],[5,-22],[4,-19],[1,-5],[2,-8],[0,0],[2,-14],[3,-14],[0,0],[2,-10],[7,-34],[5,-27],[4,-20],[1,-5],[5,-19],[7,-39],[0,0],[9,-51],[4,-22],[0,0],[6,-33],[6,-30],[1,-8],[8,-40],[2,-10],[8,-38],[1,-1],[0,-1],[0,-1],[7,-39],[0,0],[1,-4],[1,-6],[0,0],[0,0],[0,0],[3,-15],[22,-55],[3,-14],[9,-48],[1,-4],[1,-5],[0,0],[8,-38],[3,-19],[3,-15],[5,-24],[9,-45],[5,-26],[9,-44],[6,-33],[4,-18],[7,-40],[2,-10],[4,-24],[21,-108],[12,-67],[178,-810],[-73,-14],[-9,57],[-362,-66],[-140,794],[-5,23],[-32,158],[0,0],[-7,35],[0,0],[0,1],[0,0],[-7,26],[-14,73],[-8,45],[0,0],[-1,2],[0,0],[-12,66],[-8,41],[0,0],[-2,7],[-7,37],[-6,33],[0,0],[-1,6],[-5,27],[-1,4],[-1,5],[-4,7],[-2,2],[0,0],[-1,1],[-3,2],[0,0],[0,0],[-4,3],[-6,3],[-7,2],[-4,1],[-2,-1],[-2,0],[-1,0],[-5,1],[-4,2],[-3,1],[-2,1],[-3,0],[-27,6],[-39,8],[-47,10],[-21,4],[-73,15],[-32,7],[-2,0],[-63,12],[-99,-16],[-59,-12],[-86,-27],[-63,-33],[-48,-24],[-58,-54],[-29,-37],[-5,-72],[36,-164],[75,-326],[-15,-43],[-151,-106],[-457,-301],[-364,-241],[-208,137],[73,-156],[11,-25],[0,0],[0,-4],[1,0],[0,0],[1,0],[2,0],[2,-9],[3,-9],[0,0],[0,0],[3,-8],[0,0],[0,-2],[0,-3],[-1,-5],[-1,-2],[0,0],[-2,-2],[0,-1],[-2,-2],[-2,-1],[-1,0],[-3,-1],[-6,-2],[-25,-8],[-114,-70],[-1,-2],[0,0],[-2,-2],[-4,-2],[-9,-5],[-1,-1],[-11,-6],[-18,-10],[-17,-10],[-18,-10],[-19,-10],[-23,-13],[-34,-19],[-15,-9],[-12,-6],[0,0],[0,0],[0,-1],[0,-1],[-3,-1],[0,-1],[0,0],[-1,1],[-1,-1],[25,-56],[3,3],[0,0],[0,0],[-2,2],[0,0],[0,0],[0,0],[4,2],[9,5],[3,-3],[1,-2],[2,1],[0,0],[0,0],[1,1],[0,0],[6,2],[7,5],[1,0],[9,4],[1,0],[1,1],[0,0],[3,-1],[3,0],[1,-1],[2,-1],[2,-1],[2,-2],[1,-1],[1,-1],[0,0],[0,-2],[0,0],[1,-1],[0,-3],[0,0],[0,-1],[-1,-3],[-1,-3],[-1,0],[-2,-3],[-2,-1],[-2,-1],[-1,0],[-4,5],[-9,-5],[-3,-3],[-7,-5],[0,0],[1,-1],[0,-1],[-1,-1],[-1,-2],[-2,-1],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-1],[7,-4],[23,-36],[0,0],[0,0],[0,0],[0,0],[3,0],[2,0],[2,0],[0,0],[0,0],[1,0],[5,2],[0,0],[1,0],[3,2],[1,0],[1,1],[1,0],[1,1],[0,0],[0,0],[7,4],[0,0],[0,0],[0,0],[0,0],[-2,3],[-1,1],[0,0],[1,0],[28,16],[10,6],[0,0],[2,1],[0,0],[0,0],[2,0],[1,0],[2,0],[2,-1],[1,0],[3,-2],[3,-3],[3,-4],[0,-1],[6,-9],[-3,-1],[56,-173],[85,37],[25,2],[57,12],[213,87],[115,-219],[48,-91],[74,32],[82,35],[96,41],[0,0],[57,24],[14,6],[0,1],[67,30],[183,81],[52,23],[28,13],[24,10],[3,2],[2,0],[8,4],[6,1],[0,0],[0,0],[5,-1],[2,-1],[3,-1],[3,-3],[1,-4],[0,-1],[0,-4],[-1,-2],[-1,-2],[-3,-3],[-123,-57],[-137,-60],[-113,-50],[-45,-20],[-236,-101],[-207,-88],[-24,-10],[332,-720],[433,-849],[85,-60],[-33,-55],[82,-44],[426,400],[956,928],[43,55],[23,70],[-22,148],[88,16],[28,-57],[-5,-127],[-43,-97],[-775,-761],[-687,-674],[-70,-89],[-94,-76],[-189,-66],[-214,-2],[-140,14],[-150,43],[-209,143],[-935,911],[-131,-89],[-41,-29],[-44,-32],[46,-56],[12,-13],[77,1],[3,0],[93,1],[1,0],[3,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[0,0],[1,-1],[2,-2],[1,-2],[1,-5],[-2,-4],[-2,-4],[-73,-148],[-17,-35],[-10,-20],[0,0],[84,-91],[1,-3],[1,-1],[1,-2],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-3,-2],[-134,-95],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-2,0],[0,0],[-1,0],[-1,0],[-2,1],[-1,1],[-1,1],[-2,2],[-80,90],[-1,1],[-1,0],[-3,0],[-3,4],[0,0],[-2,-1],[-3,0],[0,0],[-25,-4],[-78,-13],[-44,-4],[-15,-3],[0,0],[-9,-2],[-5,-3],[-5,-4],[-5,-5],[-4,-8],[-22,-44],[-48,-100],[-20,-41],[-35,-76],[-159,-296],[-10,-22],[-29,-60],[1,-1],[2,-5],[-48,-99],[-96,-198],[-1,-2],[-50,-106],[-21,-44],[0,-1],[-20,-40],[0,0],[1,0],[0,0],[1,0],[89,-17],[0,0],[0,0],[0,0],[0,0],[39,-7],[25,-5],[2,0],[0,0],[1,0],[1,0],[0,0],[1,-1],[1,0],[1,0],[4,-1],[15,-2],[16,-4],[8,-1],[11,-1],[1,-1],[16,-2],[18,-3],[2,-1],[1,-1],[2,-1],[1,-1],[0,0],[2,-1],[1,-2],[2,-1],[2,-4],[3,-4],[1,-5],[0,-4],[0,-3],[0,-1],[0,-2],[0,-2],[0,0],[0,0],[0,-1],[-1,-5],[0,-1],[-1,-2],[0,0],[-1,-1],[-1,-1],[0,-1],[0,0],[0,0],[0,0],[-1,-1],[0,0],[-2,-2],[-2,-1],[-2,-2],[-1,-1],[-1,-1],[0,0],[-1,-1],[-1,0],[0,0],[-4,-2],[-2,-1],[-1,0],[0,0],[-1,0],[0,0],[-2,-1],[0,0],[-2,0],[0,0],[-5,0],[-5,1],[-1,0],[-1,0],[-1,0],[-1,0],[-24,2],[-4,1],[-4,0],[0,0],[-1,0],[0,0],[0,0],[-2,0],[-24,2],[-4,1],[-12,1],[-6,0],[-19,3],[-75,7],[-2,0],[-2,0],[-5,1],[-35,3],[-1,0],[-4,1],[-2,0],[0,0],[-2,0],[0,-1],[0,0],[0,0],[-1,0],[-2,0],[-1,-1],[-3,-1],[-1,-1],[0,0],[0,0],[0,0],[0,0],[-2,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-2],[0,-2],[-1,-3],[-1,-3],[-1,-3],[-1,-5],[-1,-3],[-1,-5],[0,-1],[-21,-81],[0,0],[0,-1],[0,0],[0,0],[-16,-64],[-12,-46],[-4,-17],[-1,-4],[0,0],[-2,-2],[-2,-3],[-1,0],[-3,-2],[-3,-1],[-2,-1],[-7,-1],[-9,1],[-28,6],[-35,7],[-14,4],[-1,0],[-7,1],[-5,2],[-1,0],[-3,0],[-6,0],[-3,-1],[-1,-1],[-5,-3],[-7,-5],[-31,-24],[-87,-68],[-61,-49],[-76,-60],[-15,-12],[-6,-4],[-38,-28],[-32,-26],[0,0],[0,0],[-50,-41],[-43,-30],[-109,-87],[-26,-21],[31,-53],[52,-74],[46,-82],[25,-5],[11,-3],[3,0],[10,-1],[8,-1],[10,0],[6,1],[3,0],[9,1],[8,0],[12,3],[3,1],[20,7],[4,2],[16,6],[14,5],[0,0],[0,0],[12,3],[8,3],[6,0],[6,-1],[6,-2],[6,-4],[11,-8],[13,-9],[0,0],[0,0],[0,0],[0,0],[0,0],[136,-98],[5,-6],[0,0],[3,-3],[0,-1],[1,-2],[1,-2],[-1,-4],[0,0],[-2,-2],[-7,-6],[-12,-13],[-58,-61],[-52,-57],[-51,-54],[-18,-19],[-302,-368],[-127,-101],[-6,-6],[-2,-3],[0,0],[0,0],[0,0],[-4,-3],[-3,-4],[-1,-1],[-3,-3],[-1,-1],[0,0],[-6,-5],[-7,-5],[0,0],[-30,-20],[-4,-3],[-1,0],[-7,-5],[-9,-6],[-22,-15],[-1,0],[-47,-31],[-5,-3],[0,0],[-20,-12],[0,-1],[-7,-4],[-1,0],[-1,-1],[-13,-8],[0,-1],[-1,0],[-8,-6],[-26,-15],[-8,-5],[-45,-28],[-33,-21],[-15,-10],[-48,-32],[0,0],[0,0],[0,0],[-1,0],[-49,-32],[-13,-8],[0,0],[0,0],[0,0],[0,0],[-43,-27],[0,0],[-34,-20],[-26,-17],[0,-1],[-8,-4],[0,0],[0,0],[-34,-22],[-17,-11],[-37,-25],[-27,-18],[0,0],[-27,-18],[-1,0],[-1,-1],[-45,-28],[-20,-12],[-18,-11],[-49,-31],[0,0],[-56,-34],[-1,0],[-6,-4],[-1,-1],[-2,-1],[-1,0],[0,0],[-1,-1],[0,0],[-2,0],[-4,-4],[-30,-81],[-1,-5],[-8,-25],[-12,-50],[-26,-89],[43,-21],[0,0],[-41,-70],[-49,-83],[-227,-352],[-12,-17],[-5,-7],[-11,-7],[-74,-156],[-220,-316],[-35,17],[-422,434],[-7,7],[0,0],[0,0],[0,0],[-45,45],[0,0],[-228,229],[-205,206],[-22,22],[-5,5],[-23,-22],[-5,-5],[-226,-216],[-47,-46],[-253,-252],[-14,-14],[-61,-58],[0,0],[0,0],[16,-15],[0,0],[0,0],[0,0],[0,0],[29,-24],[14,-11],[-369,-362],[-70,49],[-54,-54],[-29,-29],[-41,-37],[-160,-148],[-17,-17],[-39,32],[-19,15],[-85,66],[-115,91],[-137,-174],[-9,-61],[74,-101],[12,-44],[-6,-15],[-13,-12],[-23,-13],[-3,-17],[7,-22],[-50,-65],[-23,-34],[-7,-41],[12,-43],[29,-68],[17,-86],[25,-39],[48,-41],[25,-22],[11,-11],[-114,-359],[-25,-77],[144,-3],[28,2],[1,-22],[0,0],[1,-10],[0,-1],[1,-21],[1,-17],[0,-1],[2,-12],[-7,0],[-72,-1],[2,-73],[-111,-6],[1,-60],[62,2],[56,1],[1,0],[54,1],[42,1],[0,0],[1,0],[1,-1],[1,-1],[1,-1],[0,0],[0,0],[1,-1],[7,1],[0,0],[94,0],[1,0],[0,0],[8,0],[1,0],[37,1],[21,0],[21,0],[8,0],[46,0],[1,0],[12,0],[2,-1],[0,0],[0,-1],[1,0],[0,0],[1,-1],[0,0],[0,0],[0,0],[1,-1],[0,0],[0,0],[1,-3],[0,0],[0,-2],[-1,-1],[-1,-2],[-2,-1],[0,0],[-1,-1],[-2,0],[-1,-1],[-4,0],[0,0],[0,0],[-17,0],[-39,0],[-101,-1],[-37,-1],[-19,0],[-1,0],[0,0],[0,0],[-1,0],[-28,0],[-7,-5],[0,0],[0,0],[0,-1],[0,0],[-5,-4],[-4,0],[-7,0],[-28,0],[0,0],[0,0],[-1,0],[-44,1],[0,0],[-22,0],[-35,0],[-34,0],[-25,1],[-26,-38],[-17,-25],[-11,-19],[0,-18],[-5,-16],[-8,-10],[25,-8],[6,-23],[-8,-21],[-12,-13],[-24,-21],[-2,-25],[-9,-22],[1,-2],[2,-5],[0,0],[0,0],[0,0],[0,-1],[0,-2],[0,-2],[-1,-7],[0,-1],[-2,-4],[0,0],[0,-1],[-5,-5],[0,0],[-9,-11],[-7,-9],[-1,-2],[0,0],[-1,0],[43,-86],[10,-96],[-11,-53],[-43,-47],[-52,-88],[-45,-59],[-81,-110],[-62,-89],[-87,-81],[-78,-64],[-119,-112],[-151,-148],[-186,-218],[-91,-118],[-78,-96],[-46,-56],[-29,-42],[-37,-43],[-18,-35],[-28,-36],[-51,-98],[-16,-74],[-37,-66],[-46,-54],[-39,-32],[-12,-9],[-21,-4],[-18,-11],[-16,-17],[-50,-23],[-50,-9],[-35,-13],[-25,-9],[-24,-10],[-31,-13],[-37,0],[-23,8],[-28,6],[-108,28],[-95,43],[-15,-3],[-2,1],[0,0],[0,0],[0,0],[-1,0],[0,1],[0,0],[0,0],[-2,0],[-48,7],[-47,5],[0,0],[-2,0],[-22,-1],[-67,-3],[-29,-1],[0,-1],[0,0],[1,-2],[-1,0],[0,-1],[-2,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,1],[0,0],[0,0],[-1,2],[-2,-1],[0,0],[-23,-9],[-1,0],[0,0],[-20,-7],[0,0],[0,-1],[2,-3],[0,0],[-4,-2],[-1,1],[0,0],[0,2],[0,0],[-1,1],[-1,0],[0,0],[0,-1],[0,0],[-1,0],[0,0],[0,0],[-1,-1],[0,0],[-2,-1],[-8,-8],[0,0],[-3,-3],[-12,-13],[-1,0],[-20,-12],[-9,-6],[0,0],[-1,-1],[0,0],[-15,-10],[-16,-10],[0,0],[-16,-9],[0,0],[18,-23],[5,-5],[0,0],[-1,-1],[-11,-7],[-1,0],[0,0],[-21,28],[0,0],[-1,-1],[-1,0],[-4,-4],[0,0],[0,0],[-1,0],[-6,-5],[1,-1],[0,0],[0,-1],[0,-1],[0,0],[0,-1],[0,0],[-1,-2],[0,0],[-1,0],[-2,0],[0,0],[-4,1],[0,0],[0,0],[-4,-3],[0,0],[1,-2],[1,-1],[0,0],[-2,-2],[-1,1],[-2,1],[0,0],[-1,0],[-3,-2],[-21,-13],[-4,-3],[-1,0],[0,0],[-23,-14],[-16,-10],[-12,-8],[-1,-1],[0,0],[-9,-5],[-5,-34],[0,0],[-2,-15],[3,-9],[1,0],[0,-1],[0,0],[11,-35],[-31,-37],[-24,-27],[-23,-28],[-1,-1],[-1,-1],[0,0],[-19,-21],[-10,-6],[-6,-3],[-8,-4],[-11,-3],[-4,-2],[-4,-1],[-1,0],[-9,-1],[-11,0],[0,0],[0,0],[-34,5],[-40,6],[-19,13],[-8,6],[-1,2],[-1,2],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1,2],[0,0],[0,0],[-6,2],[0,0],[-8,2],[0,0],[0,0],[-6,1],[0,0],[-10,2],[-20,5],[0,1],[-1,0],[-9,2],[0,0],[-12,3],[-16,8],[0,0],[-4,-4],[-3,-4],[-3,-2],[-2,0],[0,0],[0,0],[0,0],[-1,0],[-2,1],[-6,5],[0,0],[-2,1],[-11,7],[-65,44],[0,0],[-3,2],[-56,39],[-18,12],[-76,51],[-80,53],[-90,65],[-71,59],[-96,78],[-53,46],[0,0],[-18,16],[-27,24],[-99,88],[-34,34],[-7,8],[-2,2],[-62,62],[-71,64],[-76,84],[-87,102],[-38,41],[-50,54],[-77,96],[-21,27],[0,0],[-38,50],[-56,77],[-24,33],[-35,55],[0,0],[-28,45],[-43,62],[-23,35],[0,0],[-5,7],[-3,6],[-46,84],[-40,86],[-45,129],[-25,87],[-52,172],[-48,185],[-68,294],[-33,157],[0,0],[-6,28],[-19,110],[-6,32],[-9,55],[-2,17],[0,0],[-5,43],[-2,27],[0,0],[-3,29],[-15,66],[-1,55],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,6],[-10,111],[1,142],[-2,45],[0,48],[0,10],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-2,56],[0,26],[0,0],[0,0],[0,21],[1,35],[2,14],[5,77],[-1,27],[0,12],[0,0],[16,183],[36,171],[32,162],[10,56],[58,234],[39,109],[30,72],[12,28],[0,0],[12,28],[29,76],[0,0],[2,7],[34,72],[20,57],[15,30],[3,6],[0,1],[23,45],[0,0],[6,13],[80,160],[216,306],[245,330],[117,170],[106,136],[118,151],[145,171],[115,131],[116,130],[434,494],[81,93],[45,52],[73,84],[115,127],[267,275],[1102,1078],[1279,1232],[105,107],[0,0],[0,0],[0,0],[22,24],[35,38],[0,0],[47,49],[100,108],[3,3],[19,20],[35,36],[76,83],[16,18],[151,147],[36,42],[6,6],[1,1],[5,5],[13,14],[20,21],[27,33],[46,55],[0,1],[5,5],[57,63],[61,69],[73,77],[84,92],[82,91],[35,39],[173,206],[32,40],[5,7],[14,17],[107,160],[16,29],[18,31],[15,24],[31,55],[60,109],[17,31],[16,30],[0,0],[0,0],[37,71],[30,62],[48,102],[11,24],[18,43],[0,0],[0,0],[21,49],[49,123],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[40,102],[86,223],[40,135],[5,16],[3,9],[13,60],[0,0],[0,0],[0,0],[0,0],[9,39],[8,31],[1,6],[1,4],[1,3],[1,2],[0,0],[0,0],[0,0],[4,16],[12,53],[5,23],[0,0],[0,0],[0,0],[0,0],[8,35],[9,47],[11,55],[1,1],[0,0],[0,0],[8,46],[3,18],[3,14],[2,11],[0,0],[0,0],[1,4],[2,14],[4,21],[0,0],[2,10],[10,61],[7,51],[5,34],[0,1],[3,18],[3,36],[1,13],[5,38],[0,0],[3,39],[4,56],[3,36],[0,0],[0,5],[0,1],[0,0],[0,5],[1,8],[0,0],[0,0],[0,0],[0,0],[2,32],[4,90],[3,107],[0,61],[-1,54],[-1,83],[-2,77],[0,1],[0,0],[0,0],[0,0],[0,21],[-6,90],[-6,75],[-2,21],[-5,43],[0,3],[-1,11],[-1,9],[-1,3],[-1,11],[0,0],[-12,47],[-2,46],[-12,70],[0,2],[-5,32],[-9,57],[-1,7],[-3,17],[-3,25],[-2,13],[-4,17],[-7,39],[-4,20],[-6,27],[-16,75],[-7,30],[-18,77],[-18,137],[0,0]],[[16745,15733],[31,7],[1,1],[74,17],[27,6],[2,0],[14,4],[186,43],[216,54],[0,0],[64,17],[111,28],[7,2],[2,0],[15,13],[5,4],[6,6],[8,7],[2,5],[6,11],[7,15],[4,4],[1,2],[0,0],[0,0],[9,11],[1,1],[5,1],[33,12],[7,3],[0,0],[0,0],[4,1],[7,3],[3,1],[3,1],[1,0],[3,1],[0,0],[9,3],[13,5],[41,15],[11,4],[3,1],[1,0],[0,0],[13,5],[0,0],[5,2],[50,17],[21,8],[37,13],[17,6],[0,0],[14,5],[8,3],[3,1],[64,23],[11,3],[2,23],[6,4],[0,0],[0,0],[2,0],[0,1],[1,0],[0,0],[58,16],[55,16],[60,12],[19,5],[0,0],[15,3],[11,3],[0,0],[36,10],[24,6],[14,3],[16,2],[76,11],[60,9],[6,3],[1,0],[1,1],[1,0],[0,0],[1,0],[24,10],[14,4],[13,4],[29,10],[50,16],[5,2],[44,17],[23,12],[6,3],[10,5],[7,5],[5,3],[5,5],[2,1],[8,8],[8,8],[0,0],[0,0],[12,14],[3,3],[4,5],[0,0],[1,1],[11,12],[1,1],[48,53],[27,29],[2,2],[0,0],[0,0],[0,0],[1,1],[0,0],[1,1],[34,38],[26,28],[6,7],[19,26],[15,19],[9,8],[6,5],[50,45],[92,82],[71,64],[0,0],[16,15],[105,89],[56,47],[76,63],[7,6],[98,70],[116,83],[57,40],[35,29],[30,22],[20,14],[8,5],[0,0],[15,10],[23,17],[17,11],[12,8],[27,18],[31,20],[42,28],[16,11],[23,15],[23,15],[126,82],[50,36],[15,10],[0,1],[64,44],[23,17],[24,18],[68,51],[20,14]],[[20331,17722],[139,103],[51,37],[105,78],[81,62],[24,17],[31,18],[29,11],[17,5],[6,1],[28,5],[37,8],[39,8],[106,19],[141,28],[148,29],[55,9],[44,8],[26,5],[62,11],[33,8],[15,4],[22,5],[29,9],[1,0],[3,1],[103,22],[39,9],[23,5],[16,3],[8,0],[59,-6],[0,0],[30,-4],[137,-14],[0,0],[102,-10],[56,-6],[129,-13],[322,-26],[26,-2],[2,-3],[14,-1],[17,-1],[40,9],[4,1],[43,9],[15,3],[22,5],[4,1],[13,2],[46,7],[49,7],[98,14],[38,4],[9,1],[45,-1],[27,-18],[19,0],[0,0],[19,0],[19,0],[28,0],[76,0],[14,-1],[82,0],[0,0],[898,-176],[263,-56],[5,-1],[9,-1],[13,-2],[409,-64]],[[25903,22996],[-85,-215],[-22,-87],[-19,-71],[-7,-28],[-27,-105],[-14,-51],[-35,-136],[0,-2],[-6,-22],[-18,-66],[-29,-108],[-10,-40],[-30,-115],[-47,-190],[-74,-324],[-1,-2],[-63,-238],[569,-192],[346,175],[71,296],[99,-13],[-84,-340],[-81,17],[-280,-173],[-102,-462],[-147,31],[118,443],[-525,156],[-33,-120],[-12,-48],[-16,-60],[-18,-70],[-15,-57],[-12,-44],[-11,-45],[-11,-39],[-12,-48],[-62,-228],[-49,-187],[-18,-68],[-7,-15],[-9,-13],[-19,-20],[-20,-15],[-25,-15],[-18,-9],[-6,-3],[-10,-2],[-8,0],[-11,0],[-10,2],[-15,-57],[81,-18],[34,-7],[8,-3],[7,-7],[5,-6],[0,-5],[1,-7],[-1,-6],[-2,-6],[-5,-6],[-9,-5],[-6,-3],[-7,-1],[-11,2],[-90,19],[-19,4],[-14,-49],[12,-3],[9,-5],[6,-4],[7,-7],[14,-20],[7,-11],[9,-17],[15,-31],[6,-26],[0,-5],[-12,-44],[-20,-74],[-17,-65],[-14,-52],[-16,-63],[-19,-77],[-3,-5],[-13,-17],[-16,-17],[-15,-14],[-18,-13],[-19,-7],[-9,-1],[-16,-67],[5,-8],[29,5],[38,6],[26,3],[10,-1],[8,-4],[6,-5],[4,-7],[3,-7],[-1,-7],[-3,-8],[-2,-4],[-5,-7],[-7,-3],[-17,-3],[-22,-3],[-7,-2],[-4,-4],[-4,-3],[-8,-32],[-11,-42],[-14,-54],[-7,-35],[-50,-184],[-18,-66],[113,-43],[13,-107],[100,-632],[-5,-60]],[[20331,17722],[1,19],[-1,15],[-3,16],[-3,16],[-12,53],[-13,57],[-10,44],[-13,41],[-3,12],[-22,66],[-19,61],[-13,40],[-16,49],[-21,60],[-25,75],[0,1],[-85,254],[-14,42],[-21,67],[-19,75],[0,0],[-6,18],[0,1],[-76,236],[-8,24],[-58,184],[-20,62],[-18,59],[-1,2],[-10,29],[-134,376],[-8,23],[-8,24],[-1,2],[-6,19],[-3,7],[-3,9],[-1,13],[2,12],[0,1],[1,7],[1,7],[2,9],[3,5],[0,1],[3,7],[2,3],[4,5],[43,60],[40,71],[5,10],[19,32],[8,36],[3,27],[-1,16],[14,52],[-26,267],[0,4],[-11,138],[0,14],[-1,18],[-14,47],[-1,8],[0,6],[-3,55],[-2,33],[0,4],[0,25],[1,25],[2,10],[0,3],[4,17],[5,29],[3,32],[1,23],[-1,9],[-3,35],[-3,51],[-4,50],[-3,30],[-1,10],[-2,23],[-3,20],[-2,17],[-7,30],[-4,19],[-4,15],[-14,42],[-43,116],[-20,227],[2,53],[4,129],[1,47],[1,22],[2,21],[1,9],[5,37],[9,29],[10,31],[16,40],[12,41],[4,18],[4,23],[5,41],[2,65],[1,37],[1,57],[1,30],[1,33],[1,18],[4,25]],[[19738,22492],[44,2],[28,5],[33,8],[41,10],[66,15],[11,1],[77,15],[55,11],[28,3],[43,5],[40,4],[52,3],[86,2],[85,0],[92,0],[57,0],[5,1],[6,1],[5,2],[23,7],[26,9],[27,11],[33,14],[14,7],[31,16],[15,9],[7,4],[24,11],[22,11],[22,10],[13,5],[19,6],[14,5],[16,2],[32,4],[36,3],[32,3],[17,1],[31,0],[25,0],[30,-1],[30,0],[15,0],[8,0],[9,-1],[14,-1],[23,-2],[41,-3],[27,-3],[35,-3],[46,-2],[11,-1],[37,1],[70,2],[63,6],[39,4],[33,4],[10,2],[16,3],[6,2],[14,6],[10,5],[9,5],[8,7],[6,6],[11,14],[9,16],[17,37],[29,69],[18,45],[8,24],[15,38],[9,26],[4,9],[61,168],[16,29],[21,36],[9,15],[5,6],[48,53],[1,1],[0,0],[10,11],[33,35],[0,0],[57,62],[44,52],[18,22],[12,15],[23,26],[34,-44],[28,-37],[24,-31],[36,-47],[5,-6],[6,-6],[4,-4],[5,-5],[4,-3],[7,-4],[10,-5],[26,-10],[32,-9],[35,-8],[88,-15],[35,-7],[188,-36],[1,-1],[249,-35],[126,-18],[87,-12],[32,-5],[32,-5],[46,-7],[51,-8],[47,-13],[16,-4],[12,-4],[17,-5],[25,-5],[38,-7],[53,-11],[10,-2],[179,-34],[70,-14],[150,-30],[49,-10],[20,-20],[17,-9],[47,-8],[4,-1],[11,-2],[30,-4],[52,-7],[16,0],[26,15],[63,39],[38,-25],[118,-77],[48,11],[46,10],[20,5],[6,1],[85,20],[15,3],[6,2],[7,1],[171,36],[8,4],[4,1],[0,0],[10,7],[17,11],[3,3],[24,10],[10,-2],[34,-6],[256,-50],[48,-10],[5,26],[18,74],[239,-44],[98,-19],[267,-55]],[[16745,15733],[-21,64],[-14,50],[-16,50],[-18,58],[-19,54],[-21,57],[-20,56],[-22,59],[-26,64],[-12,29],[-8,21],[-9,20],[-12,26],[-19,45],[-10,22],[-11,27],[-39,65],[-12,25],[-7,13],[-14,30],[-13,28],[2,0],[-40,79],[-40,78],[-43,78],[-68,121],[-86,138],[-32,54],[-38,55],[-47,69],[-53,74],[-42,56],[-33,44],[-74,100],[-81,106],[-83,102],[-115,138],[-93,110],[-39,45],[-32,37],[-60,69],[-49,55],[0,0],[-152,176]],[[15104,18380],[9,6],[68,51],[17,12],[17,15],[0,1],[12,9],[49,43],[29,24],[12,12],[25,22],[14,12],[54,45],[7,6],[34,27],[20,17],[14,11],[0,0],[42,35],[4,4],[3,2],[20,19],[24,23],[34,10],[4,1],[102,30],[75,23],[65,19],[16,5],[21,4],[13,7],[42,20],[4,2],[7,4],[16,11],[11,8],[12,9],[24,13],[72,34],[48,26],[23,8],[1,0],[47,25],[63,32],[6,3],[52,26],[64,33],[28,13],[10,6],[11,1],[7,1],[5,0],[1,0],[5,0],[4,0],[7,0],[5,1],[3,2],[8,6],[31,23],[2,1],[7,4],[5,3],[44,30],[37,22],[41,24],[48,29],[29,12],[38,17],[61,25],[44,16],[39,17],[49,20],[38,16],[33,15],[32,12],[51,22],[37,18],[23,11],[11,6],[11,5],[19,11],[25,13],[54,26],[0,0],[65,31],[8,3],[20,6],[4,1],[6,2],[-15,74],[0,1],[-9,13],[-2,8],[-3,20],[-6,31],[-9,56],[-4,28],[-6,18],[-2,6],[-11,48],[-9,24],[-25,65],[-1,2],[-7,16],[-4,15],[0,11],[3,15],[0,0],[5,14],[14,19],[52,51],[16,16],[60,45],[37,29],[-4,4],[-37,37],[-24,25],[-34,33],[-14,15],[-33,33],[-33,32],[-27,26],[-4,4],[9,17],[1,3],[13,27],[8,16],[18,36],[2,5],[26,55],[27,58],[31,64],[32,65],[8,16],[1,4],[2,4],[0,2],[4,12],[0,0],[3,9],[2,6],[13,26],[24,40],[12,20],[16,35],[23,46],[28,54],[13,28],[12,26],[18,36],[12,30],[15,36],[6,12],[15,31],[6,13],[0,18],[1,18],[0,4],[1,46],[1,27],[1,29],[0,5],[3,142],[4,149],[1,66],[4,116],[0,17],[2,47],[1,27],[1,60],[2,37],[0,29],[1,13],[1,31],[1,17],[0,10],[0,27],[1,33],[1,47],[1,23],[1,36],[1,47],[1,40],[0,4]],[[17701,22431],[6,0],[112,-2],[163,-3],[17,0],[14,0],[31,-1],[12,0],[239,9],[0,0],[0,0],[32,1],[162,3],[125,3],[59,3],[43,2],[72,4],[27,1],[50,2],[35,2],[9,1],[60,3],[2,0],[31,2],[28,1],[18,1],[27,1],[28,2],[4,0],[28,1],[22,1],[47,3],[50,2],[10,0],[104,4],[53,3],[70,3],[14,0],[68,3],[2,0],[62,2],[43,2],[44,1],[14,1]],[[15104,18380],[-70,81],[-362,375],[-6,-4],[-46,23],[-114,63],[-26,28],[-583,335],[-284,276],[-304,150],[-423,165],[-429,155],[-310,90],[-385,78],[-284,-3],[-219,10],[-69,-58],[-21,-40],[-9,4],[-9,5],[-21,10],[-6,-4],[-16,-12],[-7,-14],[-7,-17],[-7,-16],[-2,-5],[0,-1],[-9,-21],[-10,-23],[-10,-24],[-11,-23],[-16,-37],[-5,-14],[-3,-4],[-2,-4],[-3,-5],[-3,-4],[-3,-4],[-4,-5],[-13,-11],[-18,-15],[-44,-48],[-78,-68],[0,-2],[1,-5],[0,-4],[1,-3],[-1,-3],[0,-3],[-2,-3],[0,-1],[-6,-7],[-15,-5],[-16,0],[-15,-11],[-28,-16],[-1,-1],[-1,-1],[163,-14],[90,-9],[5,-26],[-250,-189],[-162,16],[-17,-51],[-34,-30],[-12,-10],[-40,-45],[-9,-7],[-83,-17],[-11,-2],[-57,1],[2,-10],[5,-22],[0,-5],[-6,-36],[-3,-7],[-2,-3],[-3,-2],[-14,-12],[-70,-36],[-14,-1],[-28,-2],[-16,0],[-19,2],[9,-75],[-46,-32],[-21,-42],[-62,-47],[-24,23],[-41,14],[-4,10],[-26,29],[-24,-29],[0,0],[-30,-62],[-14,-15],[-89,-48],[61,-81],[-69,-67],[-13,-14],[-97,-36],[-10,1],[-7,1],[-23,-45],[-122,-79],[-44,4],[-57,-93],[-51,-46],[1,-36],[-44,-61],[-134,-138],[-10,-9],[-17,-8],[-8,-1],[-8,2],[-5,1],[-21,-13],[-132,-79],[-23,-14],[-8,-6],[-4,-6],[-2,-7],[-4,-8],[-7,-7],[-5,-4],[-11,-8],[-12,-6],[-24,-11],[-21,-6],[-41,-16],[-19,-3],[-48,-7],[-22,-2],[-18,-2],[-7,-6],[-6,-4],[-10,-5],[-14,-4],[-14,-4],[-29,-7],[-10,-3],[-8,0],[-33,-4],[-13,2],[-51,63],[-25,-8],[4,-5],[2,-4],[-13,-13],[-14,-14],[-3,-7],[-5,-8],[-32,-27],[-14,-8],[-13,-11],[-18,-16],[-6,-2],[-3,-2],[-7,-2],[-10,0],[-28,2],[-16,-7],[-6,1],[-30,-9],[-15,-1],[-22,-1],[-3,-1],[-25,-7],[-52,-11],[-8,-25],[-16,-19],[-5,-10],[-10,-17],[-8,-6],[-6,-8],[-10,-14],[-36,-46],[-23,1],[-39,1],[-40,1],[-10,-1],[-21,-4],[-22,-2],[-4,-1],[-11,-2],[-8,0],[-14,-2],[-11,0],[-4,-1],[-71,28],[-45,26],[-10,5],[-31,-22],[-8,-7],[-14,-13],[-22,-22],[-14,-14],[-2,-7],[-1,-3],[-5,-15],[-6,-26],[-7,-24],[-12,-47],[-6,-22],[-3,-8],[-5,-16],[-2,-6],[-3,-6],[-7,-10],[-9,-13],[2,-16],[7,-4],[6,-5],[5,-7],[11,-11],[3,-5],[1,-8],[-7,-30],[-8,-35],[-48,-63],[3,-7],[-19,-16],[-28,-24],[-63,-43],[-49,-39],[-40,-34],[-46,-32],[-36,-24],[-2,-2],[-6,-10],[-5,-7],[-2,-3],[-4,-6],[-3,-6],[-3,-9],[-7,-28],[-30,-62],[-7,-2],[-37,-11],[-7,-3],[-3,-3],[-11,-13],[-6,-7],[-1,-3],[0,0],[-1,-3],[-3,-18],[-6,-6],[-9,-3],[-94,-35],[-14,-13],[-29,-26],[-11,-10],[-6,-9],[-9,-11],[-52,-67],[-2,-2],[-11,-14],[-89,-164],[-39,-135],[-38,-174],[-5,-31],[-7,-56],[-6,-40],[1,-41],[-1,-33],[-16,-80],[-8,-29],[-3,-3],[-13,-43],[-6,-16],[-2,-6],[0,-3],[2,-2],[3,-2],[1,-3],[2,0],[4,0],[0,0],[1,-3],[-11,-20],[-10,-15],[-14,-24],[-7,-12],[-3,-3],[-1,-1],[-4,1],[-4,2],[-2,0],[-5,-10],[-20,-31],[-20,-32],[-15,-25],[-14,-25],[-6,-22],[-6,-24],[3,0],[0,-7],[5,-10],[-1,-3],[-2,-24],[-39,-97],[-46,-99],[-1,-15],[-5,-11],[-35,-39],[-5,-21],[-12,-62],[-6,-21],[-7,-3],[-5,1],[-20,0],[-16,-5],[-12,-17],[7,-8],[21,7],[90,2],[78,17],[1,-5],[-72,-16],[-16,-2],[-82,-1],[-36,-17],[-79,-54],[-25,-14],[-20,-3],[-13,-7],[-4,-4],[-3,-4],[-54,-15],[-9,0],[-4,1],[-11,0],[-14,-5],[-27,1],[-18,-4],[-2,-2],[-8,-5],[-26,-10],[-20,1],[-4,2],[-28,7],[-80,58],[-1,2],[1,2],[7,9],[2,3],[1,3],[-26,19],[-20,-15],[-19,8],[-39,24],[-24,24],[-14,31],[-1,4],[1,2],[18,11],[4,3],[1,2],[-1,10],[-3,5],[-53,56],[-7,6],[-1,6],[6,5],[30,48],[13,30],[45,46],[7,21],[-2,16],[5,5],[17,17],[4,9],[2,11],[1,11],[-1,9],[-1,5],[7,7],[11,9],[8,4],[18,27],[30,49],[20,42],[8,20],[20,39],[57,111],[3,24],[27,58],[-49,262],[46,118],[41,126],[-21,130],[-5,1],[3,9],[-9,60],[-1,1],[0,2],[-12,53],[-74,98],[-54,76],[-67,87],[-41,40],[-161,99],[-70,82],[-29,223],[-24,172],[-19,162],[-32,282],[-32,-5],[-35,207],[-3,12],[50,8],[68,0],[0,13],[4,125],[0,6],[129,291],[253,502],[109,216],[10,9],[154,294],[234,385],[3,5],[382,559],[342,544],[55,91],[241,397],[141,204],[347,482],[101,128],[31,38],[30,51],[23,34],[25,39],[23,41],[28,51],[23,52],[36,91],[24,64],[12,32],[31,84],[25,74],[26,100],[22,75],[4,16],[28,98],[30,107],[32,128],[24,105],[17,97],[58,286],[50,258],[5,25],[43,217],[47,239],[43,257],[56,277],[9,44],[16,80],[21,85],[7,19],[152,409],[0,1],[1,2],[76,180],[1,2],[53,116],[1,3],[90,174],[1,1],[0,0],[29,51],[34,62],[63,97],[92,124],[102,154],[2,3],[108,149],[126,177],[158,225],[499,717]],[[10459,28260],[122,-63],[136,-65],[179,-91],[117,-54],[138,-52],[82,-16],[112,-18],[72,-3],[65,18],[26,25],[22,39],[12,20],[26,22],[16,11],[16,0],[26,27],[25,24],[0,0],[20,21],[4,1],[1,0],[0,0],[7,-2],[6,-4],[1,-4],[1,-13],[-1,-18],[-3,-15],[-3,-6],[3,-11],[4,0],[5,-1],[2,-4],[-4,-15],[-2,-6],[4,-7],[9,-9],[13,-10],[16,-10],[27,-14],[19,-8],[10,-3],[5,-4],[1,-7],[-1,-9],[6,-2],[29,-1],[20,0],[19,-1],[42,0],[90,-1],[2,0],[45,0],[23,-1],[14,0],[69,-1],[34,0],[16,0],[40,-1],[42,-13],[12,-3],[54,-7],[25,-1],[12,6],[17,-15],[23,-13],[25,-14],[4,-2],[50,-5],[22,1],[18,1],[795,147],[106,20],[576,108],[243,45],[1,0],[126,23],[647,117],[67,12],[50,9],[31,6],[34,6],[24,5],[15,3],[19,3],[35,6],[46,9],[138,27],[5,1],[96,18],[55,11],[21,4],[239,47],[69,13],[59,12],[34,6],[17,4],[131,25],[31,6],[359,72]],[[16617,28618],[-310,-700],[-380,-835],[-302,-659],[-182,-451],[-359,-851],[-101,-256],[0,-6],[4,-5],[47,-1],[19,-1],[87,-7],[56,-4],[110,-8],[69,-7],[788,-74],[238,-26],[755,-181],[162,-38],[13,-8],[6,-11],[0,-2],[1,-7],[-3,-23],[0,0],[-1,-6],[-21,-161],[-8,-53],[-8,-53],[-4,-24],[-7,-45],[-7,-56],[-8,-74],[-2,-19],[-8,-64],[-5,-41],[-5,-42],[-17,-124],[-22,-164],[-7,-56],[-17,-128],[-9,-26],[-7,-43],[-3,-19],[-15,-104],[-1,-5],[1,-20],[0,-14],[0,-3],[-3,-33],[-1,-13],[-23,-125],[-2,-16],[-6,-31],[-6,-28],[-4,-26],[-6,-32],[-6,-32],[-1,0],[-3,-20],[-2,-11],[-1,-5],[-1,-9],[-2,-40],[-1,-21],[-6,-162],[-1,-8],[-1,-46],[354,-14],[269,-10]],[[26134,28500],[32,-10],[9,-3],[12,-2],[1,0],[22,-4],[3,-2],[0,0],[-39,-179],[-10,-1],[-3,-3],[-1,-3],[-14,-66],[12,-2],[0,0],[-1,-4],[-2,-9],[-13,-63],[0,0],[117,-22],[42,-8],[88,-16],[165,-32],[166,-31],[98,-18],[444,-77],[3,0],[189,-34],[423,-76],[63,-13],[68,-14],[18,-3],[55,-12],[33,-7],[6,-1],[4,-2],[3,-2],[3,-3],[3,-4],[1,-3],[0,0],[0,-3],[0,0],[-1,-4],[-4,-17],[-9,-38],[-10,-42],[-8,-33],[-13,-50],[-12,-48],[-9,-37],[-10,-39],[-9,-33],[-5,-20],[-2,-3],[-5,-6],[-4,-2],[-3,-1],[-6,-1],[-4,0],[-5,0],[-15,3],[-36,7],[-51,10],[-81,17],[-61,12],[-88,18],[-3,0],[-82,16],[-55,10],[-42,9],[-45,9],[-50,10],[-62,12],[-56,11],[-31,6],[-44,9],[-1,0],[-20,4],[-6,1],[-15,3],[-33,6],[-80,15],[-53,10],[-55,11],[-19,4],[-51,9],[-37,8],[-15,2],[-10,2],[-44,7],[-31,6],[-42,9],[-59,10],[-59,13],[-57,11],[-52,10],[-64,12],[-1,1],[-55,11],[-54,10],[-71,14],[-44,9],[-70,14],[-48,9],[-8,-18],[-20,-42],[-13,-27],[-10,2],[-49,-7],[-2,-7],[-8,-32],[-4,-20],[-8,-30],[-7,-30],[-7,-26],[-7,-24],[-5,-21],[-2,-13],[-2,-8],[-1,-10],[0,-23],[0,0],[-1,-21],[0,0],[-1,-23],[0,0],[0,-16],[0,0],[0,-13],[0,0],[0,-1],[0,0],[0,-7],[5,-12],[4,-5],[3,-4],[7,-6],[5,-3],[6,-2],[6,-2],[25,-5],[40,-8],[36,-6],[43,-9],[43,-8],[46,-9],[48,-9],[48,-10],[33,-6],[44,-8],[30,-6],[53,-10],[44,-8],[33,-6],[25,-5],[4,-1],[4,0],[2,0],[2,0],[2,0],[2,2],[1,1],[0,3],[1,4],[8,32],[3,16],[3,14],[3,13],[4,17],[4,14],[2,9],[2,9],[1,5],[1,6],[2,4],[0,1],[1,1],[2,1],[2,0],[3,0],[25,-4],[19,-3],[2,-1],[1,4],[23,-4],[20,-4],[41,-8],[31,-6],[25,-4],[38,-8],[28,-5],[23,-4],[30,-6],[22,-4],[19,-4],[34,-6],[38,-7],[24,-5],[27,-5],[23,-4],[45,-8],[44,-8],[32,-7],[38,-7],[27,-5],[24,-4],[27,-5],[36,-7],[46,-9],[37,-6],[86,-20],[37,-7],[27,-5],[4,-1],[33,-7],[42,-8],[45,-8],[37,-7],[40,-8],[41,-8],[46,-9],[40,-8],[28,-5],[43,-9],[44,-8],[43,-8],[28,-6],[34,-6],[14,-2],[7,-1],[39,-8],[0,2],[12,-2],[0,0],[2,-94],[-32,-52],[-7,-10],[-124,-204],[-3,-3],[-1,-2],[-3,-1],[-2,-1],[-5,0],[0,0],[0,0],[-5,1],[-47,12],[0,0],[1,2],[0,0],[-118,23],[-427,85],[-61,12],[-128,26],[-244,47],[-155,28],[-30,6],[-24,4],[-162,29],[-24,4],[-63,12],[0,0],[1,5],[0,0],[-64,16],[-18,-69],[-9,-36],[-10,-38],[-4,-14],[-1,-3],[-3,-2],[-2,-1],[-4,0],[-5,2],[-148,30],[-6,-4],[-5,-3],[-5,-2],[-3,-1],[-105,22],[-19,5],[-147,31],[-25,5],[-40,8],[-3,1],[-1,0],[-2,-1],[-2,-1],[-1,-2],[-1,-3],[-1,-3],[-33,-128],[-1,-6],[-1,-5],[0,0],[-1,-5],[0,0],[0,0],[1,-2],[1,-2],[4,-1],[21,-4],[87,-17],[149,-29],[51,-11],[30,-5],[103,-20],[89,-18],[57,-11],[113,-23],[90,-16],[84,-17],[52,-9],[279,-53],[61,-12],[107,-20],[100,-19],[207,-40],[9,-2],[1,-1],[33,-10],[-43,-173],[3,-1],[-15,-58],[-2,0],[-38,-151],[-90,-200],[-136,27],[-107,11],[-103,1],[-266,33],[-221,23],[-103,39],[-70,70],[-76,56],[-64,21],[-256,55],[-19,-89],[70,-27],[27,-25],[39,-72],[13,-47],[1,-60],[-22,-42],[-52,-33],[-18,-62],[11,-58],[42,-46],[117,-117],[24,-54],[48,-107],[35,-25],[64,-21],[-15,-115],[4,0],[191,-24],[194,-25],[175,-22],[232,-29],[-8,-142],[-108,6],[-116,7],[-125,8],[-166,10],[-146,8],[-139,8],[-3,-48],[150,-9],[7,-122],[70,1],[2,-45],[281,-15],[6,-161],[46,-12],[-1,-128],[-314,9],[4,-70],[7,-109],[-73,-3],[-18,-88],[-285,47],[0,0],[2,-32],[2,-31],[1,-51],[3,-59],[4,-98],[-50,5],[-6,1],[0,-40],[-152,32],[-18,-99],[98,-17],[-67,-232],[-49,-95],[1,-1],[2,-5],[-1,-5],[-3,-6],[-3,-3],[-2,-1],[-5,0],[0,0],[-67,-334],[-47,-176]],[[16617,28618],[194,39],[82,18],[39,7],[124,23],[96,17],[275,48],[102,18],[31,7],[95,17],[24,5],[0,0],[3,0],[58,11],[-2,23],[4,23],[3,21],[9,24],[14,15],[20,20],[24,14],[26,11],[20,6],[23,1],[26,1],[21,-2],[25,-8],[35,-11],[15,16],[126,133],[119,126],[218,229],[43,46],[125,128],[57,59],[127,128],[65,69],[67,64],[75,75],[64,61],[154,150],[63,67],[137,134],[64,68],[23,25],[22,27],[59,67],[70,77],[83,82],[90,94],[40,42],[70,74],[25,27],[50,52],[9,9],[42,38],[49,51],[4,1]],[[20143,31185],[14,2],[86,14],[16,3],[182,30],[43,6],[126,19],[132,24],[24,4],[119,19],[24,4],[141,-1],[40,-3],[142,-9],[105,-9],[96,-7],[101,-8],[194,-10],[31,-1],[78,-5],[13,0],[68,-4],[174,-11],[156,-9],[133,-7],[163,-9],[87,-5],[52,-7],[163,-11],[173,-3],[38,-1],[1,0],[2,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[2,-1],[1,-1],[2,-1],[2,-1],[1,-1],[1,-1],[0,-1],[2,-1],[1,-1],[1,-1],[0,-1],[2,-2],[0,-1],[1,-1],[0,-1],[2,-10],[18,-83],[7,-24],[6,-21],[-1,-60],[7,-26],[3,-7],[57,-202],[51,-184],[58,-208],[28,-102],[14,-44],[32,-118],[5,-18],[24,-88],[29,-115],[28,-105],[30,-111],[14,-51],[0,-1],[2,-7],[4,-13],[-6,-4],[2,-6],[4,-15],[40,-6],[19,-2],[24,-4],[6,-1],[4,0],[79,-12],[15,-2],[65,-9],[92,-14],[177,-25],[20,-1],[107,-39],[122,-48],[208,-82],[248,-102],[10,-4],[55,-21],[36,-14],[108,-42],[25,-10],[10,-5],[7,-2],[-69,-135],[23,-9],[1,0],[25,-10],[421,-169],[5,-2],[55,-20],[43,-17],[5,-1],[6,-3],[65,-25],[71,-28],[83,-32],[11,-5],[15,-6],[28,-11],[11,-4],[21,-8],[99,-37],[60,-24],[51,-18],[29,-11],[15,-4],[42,-11],[38,-13]],[[33145,37657],[-928,-529],[-1489,-702],[-330,-148],[-182,-139],[291,-2],[0,0],[0,-17],[-1,0],[-309,5],[-27,0],[-3,-23],[-26,-166],[7,-1],[7,-1],[5,-1],[8,-1],[36,-6],[68,-10],[2,0],[3,0],[6,-2],[21,-2],[7,-1],[10,-1],[50,-5],[0,0],[-1,-17],[0,0],[75,-5],[0,0],[15,-1],[62,-4],[0,0],[-14,-79],[-7,-38],[0,0],[-42,5],[-13,1],[-53,7],[0,0],[0,0],[-1,0],[0,0],[0,-2],[-1,-4],[0,0],[-35,7],[-63,12],[1,7],[0,-1],[-1,0],[0,0],[1,2],[-2,1],[-2,0],[-4,0],[-250,40],[-79,-539],[-62,10],[0,-1],[-7,2],[0,0],[-9,-43],[-4,-25],[-2,-10],[-1,-6],[-13,-61],[-3,-16],[-7,-33],[-4,-21],[-3,-10],[-11,-29],[-3,-6],[-6,-14],[-3,-7],[-3,-7],[-2,-4],[-1,-3],[-1,-4],[-1,-4],[0,-12],[-2,-15],[-2,-6],[-1,-5],[-2,-4],[-3,-4],[-16,-16],[-19,-20],[-10,-10],[-6,-6],[-7,-6],[-3,-3],[-2,-3],[-8,-16],[-7,-14],[-2,-3],[-1,-2],[-5,-3],[-11,-6],[-13,-8],[-5,-4],[-1,-3],[-1,-8],[0,-8],[2,-7],[6,-11],[4,-10],[1,-2],[0,-1],[0,-2],[0,-6],[0,-8],[-2,-7],[0,-3],[2,-4],[6,-13],[2,-4],[1,-3],[-1,-7],[0,-4],[-2,-3],[-2,-3],[8,-18],[18,-39],[2,-3],[17,-38],[-50,-18],[-42,-15],[-4,-2],[0,0],[6,-16],[26,-57],[31,-70],[19,-42],[21,-47],[23,-51],[25,-55],[10,-31],[26,-59],[32,-70],[23,-50],[22,-49],[24,-54],[26,-58],[24,-53],[16,-36],[0,0],[0,0],[7,-16],[6,-4],[5,-3],[164,-54],[208,-75],[2,-3],[0,-3],[-15,-34],[-4,-3],[-5,1],[-232,85],[-106,38],[211,-489],[-721,-250],[128,-261],[-1081,-327],[6,-13],[35,-79],[17,-38],[24,-54],[10,-20],[29,-63],[6,-14],[5,-12],[6,-12],[17,-39],[32,-70],[21,-45],[38,-85],[15,-31],[48,-107],[38,-81],[55,-123],[30,-67],[37,-84],[36,-78],[48,-108],[30,-65],[16,-33],[14,-29],[8,-17],[21,-47],[22,-49],[15,-34],[38,-82],[18,-44],[32,-69],[11,-27],[0,0],[2,-3],[133,-303],[48,-101],[1,-1],[0,0],[5,-11],[77,-171],[0,-2],[67,-145],[26,-56],[37,-81],[29,-66],[35,-76],[48,-107],[53,-115],[29,-65],[42,-91],[41,-91],[46,-100],[15,-33],[9,-19],[0,-2],[0,-1],[-1,-1],[-56,-49],[-58,-51],[-45,-39],[-34,-29],[-79,-69],[-57,-50],[-61,-53],[-60,-52],[-25,-23],[-76,-67],[-33,-28],[-31,-26],[-56,-49],[-35,-30],[-55,-47],[-23,-20],[-48,-40],[-39,-35],[-81,-69],[-21,-18],[-20,-18],[-68,-57],[-9,-9],[-10,-9],[-63,-54],[-58,-50],[-38,-34],[-3,-2],[-2,-1],[0,0],[0,0],[-1,0],[0,0],[-25,5],[-60,12],[-165,33],[-443,95],[-53,12],[-300,65],[-26,5],[-622,133],[-664,143],[-164,35],[-143,31],[-47,-24]],[[20143,31185],[-40,453],[0,3],[1,0],[1,0],[1,0],[0,45],[1,96],[4,401],[-5,482],[18,752],[-4,75],[-16,435],[29,642],[84,518],[77,312],[11,51],[6,22],[14,64],[118,318],[40,118],[37,109],[53,133],[57,145],[69,162],[13,30],[48,107],[72,151],[8,15],[77,151],[67,126],[39,66],[59,96],[61,94],[70,104],[25,36],[25,35],[0,1],[24,35]],[[21287,37568],[77,96],[71,103],[16,22],[39,55],[66,92],[101,143],[41,57],[29,44],[58,81],[31,41],[23,30],[101,143],[92,129],[101,142],[118,160],[46,64],[35,49],[36,48],[265,360],[45,61],[65,87],[70,95],[79,110],[86,121],[88,125],[55,83],[66,92],[155,221],[37,49],[58,75],[149,191]],[[23586,40737],[57,-52],[0,0],[72,-61],[102,-86],[19,-16],[159,-128],[36,-29],[73,-60],[53,-44],[11,-8],[83,-61],[67,-48],[91,-72],[42,-30],[14,-11],[67,-50],[41,-27],[127,-80],[116,-62],[50,-30],[52,-29],[31,-19],[44,-52],[15,-18],[11,-9],[8,-8],[41,-33],[82,-66],[35,-32],[19,-15],[17,-14],[11,-5],[28,-8],[71,-20],[93,-25],[167,-46],[36,-10],[22,-4],[31,-6],[70,-14],[57,-9],[15,-2],[25,-22],[-5,-13],[31,-9],[77,-21],[134,-35],[8,-2],[26,-4],[10,-2],[14,-4],[12,-3],[88,-22],[569,-135],[118,-28],[331,-79],[35,-7],[4,-1],[104,-25],[136,-32],[24,-6],[17,-3],[21,-5],[76,-18],[52,-14],[56,-12],[56,-15],[-3,-21],[-5,-34],[-2,-11],[50,-10],[93,-18],[97,-19],[79,-17],[5,-1],[32,-5],[3,-1],[6,-1],[18,-3],[3,-1],[33,-6],[101,-21],[-8,-27],[18,-19],[71,65],[1388,871],[87,57],[719,468],[139,91],[25,17],[13,8],[-33,-122],[1,0],[24,9],[37,13],[115,34],[0,0],[69,21],[-3,-38],[-4,-25],[-2,-18],[-2,-12],[24,-14],[7,-2],[19,4],[14,0],[6,-3],[7,-4],[6,-7],[3,-8],[-1,-16],[-6,-26],[-1,-15],[0,-7],[2,-5],[7,-9],[9,-9],[33,-17],[31,-17],[8,-6],[7,-8],[7,-10],[11,-19],[19,-43],[4,-13],[11,-13],[31,-32],[23,-30],[93,-130],[33,-35],[41,-27],[14,-12],[20,-34],[25,-34],[42,-44],[42,-36],[23,-18],[34,-21],[24,-11],[19,-3],[30,-4],[80,4],[12,-1],[21,-5],[9,-5],[19,-12],[26,-29],[28,-45],[43,-69],[45,-75],[33,-38],[10,-9],[11,-10],[44,-21],[76,-29],[30,-18],[20,-19],[46,-61],[15,-22],[12,-11],[53,-38],[43,-21],[20,-14],[12,-14],[11,-12],[6,-13],[5,-16],[11,-54],[1,-19],[6,-22],[4,-17],[5,-11],[7,-10],[9,-8],[13,-5],[23,-7],[63,1],[27,-3],[18,-5],[29,-18],[23,-20],[36,-36],[41,-45],[31,-42],[20,-30],[19,-34],[10,-23],[7,-29],[3,-122],[0,-19],[-13,-74],[-1,-17],[2,-16],[20,-76],[82,27],[42,20],[0,0],[9,0],[9,1],[60,-151],[73,-183]],[[17931,41548],[4,-6],[33,-52],[5,-7],[17,-27],[7,-11],[7,-11],[16,-30],[22,-39],[46,-84],[9,-17],[10,-19],[48,-74],[161,-270],[27,-40],[177,-263],[35,-54],[0,0],[3,-3],[4,-5],[1,-1],[3,-2],[12,-11],[2,-3],[13,-18],[6,-7],[72,29],[107,1],[15,-23],[142,-223],[37,-54],[132,-200],[39,-61],[1,-2],[58,-93],[38,-62],[23,-36],[37,-59],[9,-17],[47,-73],[82,-134],[56,-154],[57,-157],[5,-10],[0,0],[27,-61],[102,-228],[8,-17],[4,-9],[0,-1],[5,-10],[0,0],[4,-11],[0,0],[0,0],[16,-34],[7,-10],[26,-34],[0,-1],[4,-6],[58,-78],[82,-111],[138,-187],[65,-88],[26,-35],[12,-17],[5,-7],[9,-11],[30,-17],[37,-25],[22,-14],[37,-20],[13,-6],[14,-8],[197,-106],[53,-29],[145,-81],[86,-48],[72,-40],[115,-68],[30,-18],[54,-32],[19,-12],[60,-39],[81,-49],[68,-30]],[[10459,28260],[246,374],[214,336],[243,392],[205,330],[68,111],[140,228],[156,273],[63,142],[226,546],[106,280],[31,82],[156,409],[126,437],[158,660],[6,461],[-13,123],[13,317],[-1,49],[-39,126],[-33,106],[-60,198],[-16,58],[-18,61],[-47,155],[36,9],[3,0],[-7,23],[-2,28],[-1,26],[0,37],[0,7],[1,93],[0,24],[0,227],[0,0],[-9,76],[0,14],[2,109],[0,12],[-1,69],[0,79],[0,71],[0,6],[0,49],[1,26],[3,42],[4,33],[7,36],[3,11],[4,14],[19,51],[26,56],[24,39],[27,43],[21,36],[96,155],[22,35],[122,199],[80,132],[52,82],[21,33],[104,167],[11,17],[9,16],[7,13],[6,11],[10,20],[14,28],[2,5],[9,18],[11,22],[20,42],[9,23],[20,51],[17,52],[14,41],[13,40],[15,43],[13,43],[15,45],[18,56],[20,61],[21,64],[15,48],[17,51],[0,0],[23,71],[24,69],[31,92],[19,58],[10,33],[19,56],[18,47],[12,32],[20,44],[15,33],[14,28],[22,45],[27,48],[25,44],[28,44],[24,40],[12,18],[187,287],[176,272],[120,189],[29,54],[19,39],[19,50],[22,57],[8,21],[13,44],[9,37],[13,67],[8,51],[3,41],[4,69],[0,43],[-2,53],[-2,19],[-3,22],[-8,45],[-13,53],[-10,25],[-6,27],[-5,11],[-9,27],[-13,46],[-8,29],[-6,23],[-7,24],[-5,22],[-5,18],[-3,11],[-2,4],[-1,2],[-1,3],[-1,3],[-4,7],[-3,4],[-14,28],[-12,20],[-15,30],[-13,26],[-36,55],[-13,16],[-18,26],[-13,20],[-17,32],[-10,19],[-7,16],[-7,17],[-6,17],[-8,26],[-8,32],[-6,30],[-2,20],[-41,634],[-64,973],[-25,395],[-34,512],[-3,18],[-2,15],[-4,21],[-5,22],[-4,16],[-6,21],[-4,17],[-7,22],[-4,11],[-4,11],[-2,7],[-2,5],[-1,4],[-6,15],[-5,12],[-2,6],[-4,10],[-3,5],[-3,7],[-3,7],[-6,12],[-3,8],[-6,11],[-3,8],[-5,8],[-3,7],[-4,6],[-4,7],[-3,6],[-7,12],[-2,5],[-4,6],[-4,7],[-16,25],[-185,307],[-141,248],[128,58],[87,9],[146,-96],[165,-129],[111,-100],[204,-178],[180,-256],[163,-199],[537,-368],[38,41],[24,25],[4,4],[5,3],[5,3],[5,2],[5,1],[3,0],[6,1],[5,-1],[6,-1],[5,-2],[3,-1],[4,-2],[4,-2],[3,-3],[3,-4],[3,-3],[1,-3],[2,-2],[0,-2],[1,-2],[0,-2],[1,-3],[0,-3],[0,-4],[0,-2],[0,-4],[-2,-6],[-3,-5],[-5,-6],[-148,-170],[-87,-103],[17,-35],[9,-17],[11,-46],[18,-152],[-1,-87],[22,-140],[44,-269],[3,-83],[10,-32],[13,-25],[98,-125],[109,-128],[8,10],[8,-3],[14,-7],[19,-7],[11,-4],[41,-12],[69,-17],[14,-3],[3,0],[14,-2],[5,-1],[15,-1],[27,-2],[34,-3],[10,0],[7,-2],[8,-3],[1,0],[21,-10],[8,-3],[15,-9],[3,-2],[1,0],[4,-4],[1,0],[3,-3],[0,0],[0,0],[11,-9],[18,-17],[14,-16],[12,-13],[3,-4],[2,-2],[4,-6],[0,-1],[1,-1],[10,-19],[5,-8],[18,-34],[2,-3],[3,-10],[3,-16],[0,-2],[0,-1],[2,-18],[0,-12],[218,-34],[205,-12],[29,-6],[26,-18],[17,-5],[154,-7],[37,7],[61,13],[45,10],[55,12],[55,9],[47,10],[53,11],[58,14],[27,8],[31,10],[39,14],[56,24],[71,34],[67,29],[67,33],[75,39],[66,37],[86,46],[74,39],[64,34],[66,35],[12,6],[57,32],[56,30],[50,27],[100,48]],[[36137,50956],[0,0],[22,-6],[12,-4],[0,0],[7,-1],[6,1],[6,2],[14,10],[14,8],[23,9],[38,5],[28,1],[27,1],[19,-1],[12,-1],[15,-2],[11,-2],[0,0],[3,0],[16,-4],[14,-4],[26,-8],[24,-7],[12,-4],[26,-10],[11,-4],[11,-7],[16,-11],[0,0],[5,-3],[24,-19],[14,-12],[0,0],[5,-4],[6,-5],[8,-8],[11,-14],[58,-80],[78,-117],[11,-43],[-52,-229],[-30,-149],[0,-3],[1,-3],[1,-5],[0,-4],[4,-7],[3,-11],[4,-12],[4,-12],[0,0],[0,0],[0,0],[0,-2],[1,-3],[0,0],[2,-10],[0,0],[2,-11],[5,-24],[3,-16],[2,-5],[4,-9],[0,0],[0,0],[1,-1],[7,-12],[0,0],[2,-3],[1,-4],[1,-13],[3,-9],[1,-3],[4,-8],[1,-6],[1,-6],[1,-7],[-1,-3],[0,-3],[-1,-1],[-2,-5],[-2,-3],[0,-2],[0,-1],[1,-3],[3,-6],[13,-18],[1,-2],[0,0],[9,-15],[3,-6],[3,-4],[2,-6],[2,-8],[2,-1],[1,-2],[7,-14],[4,-7],[2,-7],[1,-3],[1,-8],[1,-4],[-1,-9],[0,0],[0,0],[0,-3],[0,-8],[-1,-3],[-3,-7],[-1,-3],[-5,-9],[0,-3],[0,-3],[0,-3],[0,-2],[2,-7],[4,-7],[5,-6],[0,-1],[0,0],[6,-7],[4,-3],[1,-1],[5,-5],[5,-3],[7,-4],[1,0],[2,-1],[5,-3],[5,-7],[0,0],[0,-1],[6,-11],[9,-27],[5,-15],[0,0],[6,-19],[4,-11],[0,0],[4,-10],[7,-17],[0,0],[0,0],[3,-7],[8,-19],[8,-16],[3,-9],[12,-48],[0,0],[4,-47],[0,0],[2,-18],[0,0],[0,0],[-7,-10],[1,-9],[0,-4],[0,0],[4,-2],[4,-3],[0,0],[2,-1],[4,-5],[1,-3],[2,-5],[3,-10],[4,-15],[0,-5],[1,-5],[1,-5],[2,-5],[2,-5],[2,-9],[4,-16],[6,-24],[2,-12],[0,0],[7,-32],[1,-4],[7,-35],[5,-22],[0,-1],[1,-2],[1,-9],[1,-4],[1,-7],[0,-1],[1,-2],[0,-1],[1,-3],[10,-41],[1,-12],[0,0],[0,-1],[2,-11],[3,-7],[1,-5],[1,-6],[0,-4],[0,-2],[0,-2],[0,-3],[0,-1],[0,-1],[1,-1],[1,-4],[5,-11],[4,-8],[2,-5],[1,-4],[0,0],[0,-2],[0,0],[0,-2],[1,-2],[0,-2],[0,-2],[0,-1],[0,-1],[2,-8],[4,-13],[2,-4],[0,-1],[-1,-64],[0,-3],[0,-2],[0,-3],[1,-32],[0,-3],[0,0],[0,0],[0,-10],[-1,-1],[-2,-5],[-3,-3],[-3,-3],[0,-1],[0,0],[-1,-2],[0,-1],[0,-1],[0,0],[0,0],[1,-7],[3,-11],[-6,-31],[-5,-20],[0,0],[1,-1],[-1,0],[21,-23],[12,-19],[0,-2],[1,-1],[2,-9],[7,-42],[5,-28],[5,-28],[3,-17],[2,-7],[2,-13],[7,-40],[2,-13],[2,-12],[1,0],[0,-2],[0,-4],[0,0],[0,0],[0,0],[2,-14],[2,-20],[0,-3],[10,-57],[5,-41],[12,-93],[4,-24],[4,-23],[3,-20],[1,-11],[3,-17],[1,-13],[0,0],[0,0],[0,-2],[0,0],[0,-1],[-1,-4],[1,-3],[1,-4],[12,-28],[9,-27],[2,-8],[0,-1],[0,-2],[8,-60],[3,-23],[-1,-3],[-1,-3],[13,-56],[2,-6],[7,-27],[3,-15],[0,-5],[3,-25],[0,-2],[5,-27],[0,0],[3,-13],[10,-48],[5,-22],[15,-65],[0,0],[0,0],[12,-58],[9,-78],[5,-49],[3,-60],[-8,-102],[-1,-16],[-1,-15],[-2,-14],[-1,-13],[-2,-12],[-1,-12],[-3,-26],[-1,-4],[0,-1],[-5,-32],[-3,-20],[-4,-22],[-4,-18],[0,-13],[0,0],[-1,-5],[0,-4],[0,0],[0,-5],[0,-1],[0,-3],[-20,-95],[0,0],[0,0],[-2,-9],[0,-1],[-7,-25],[-3,-9],[-2,-6],[-2,-6],[-1,-6],[-5,-23],[-1,-7],[-2,-14],[-6,-25],[-3,-12],[-3,-10],[-7,-25],[-9,-31],[-4,-14],[-5,-19],[-1,-3],[-1,-2],[-1,-6],[0,0],[-4,-7],[-5,-6],[0,0],[0,0],[-2,-13],[-3,-14],[-2,-10],[-3,-18],[-1,-11],[-1,-1],[0,-1],[0,0],[-1,-1],[-7,0],[-4,-14],[-5,-14],[-11,-45],[-3,-9],[-7,-24],[-7,-27],[-1,-3],[-2,-6],[0,-1],[-1,-5],[-1,-2],[-19,-47],[-10,-22],[-55,-116],[-181,-339],[-6,-9],[-1,-1],[-5,-7],[-6,-8],[-23,-33],[-2,-8],[-15,-23],[0,0],[-7,-6],[-1,-3],[-2,-3],[-24,-40],[-1,-1],[-17,-28],[0,0],[-1,-2],[-2,-2],[-51,-96],[-34,-62],[0,-1],[-9,-14],[-22,-39],[-13,-20],[-17,-29],[-23,-41],[-10,-18],[-25,-47],[-31,-61],[-4,-8],[-2,-4],[-4,-8],[-4,-8],[-8,-18],[-8,-17],[-17,-38],[-5,-11],[-8,-19],[0,0],[-6,-14],[-16,-34],[-1,-1],[-20,-23],[0,0],[-12,-14],[-1,-13],[0,0],[0,-3],[-1,-20],[-3,-27],[0,-6],[-1,-3],[-7,-24],[-3,-8],[0,0],[-7,-20],[-5,-13],[-6,-10],[0,0],[-10,-16],[-17,-49],[-14,-37],[-10,-28],[-4,-9],[-24,-68],[-13,-38],[-6,-17],[-9,-26],[-5,-12],[-7,-19],[-26,-76],[-8,-21],[-12,-31],[-12,-31],[-15,-30],[-6,-15],[-7,-26],[-12,-39],[-13,-47],[-16,-56],[-6,-22],[-33,-118],[-6,-24],[-13,-52],[-5,-21],[0,-2],[-14,-52],[-19,-78],[-16,-69],[-5,-20],[-8,-28],[-16,-51],[-30,-132],[-15,-50],[-18,-69],[-10,-40],[-5,-26],[-3,-20],[0,-5],[0,-5],[0,0],[0,-5],[-2,-12],[0,-4],[0,-4],[-1,-5],[-6,-45],[-4,-24],[0,0],[-2,-10],[-4,-27],[-1,-24],[0,-1],[0,0],[-5,-35],[-2,-36],[0,0],[0,0],[-1,-11],[-3,-21],[0,-1],[-1,-14],[1,-11],[1,-10],[1,-3],[-1,-10],[5,-133],[0,-1],[0,-6],[-1,-63],[0,-19],[0,-1],[1,-2],[2,-8],[7,-30],[2,-10],[8,-24],[20,-72],[2,-7],[3,-38],[1,-16],[9,-37],[37,-88],[3,-7],[10,-24],[12,-31],[20,-39],[15,-31],[20,-42],[15,-34],[15,-28],[1,-2],[16,-26],[32,-52],[0,0],[26,-48],[15,-23],[38,-55],[9,-19],[16,-21],[24,-31],[24,-27],[57,-65],[74,-89],[66,-82],[94,-110],[61,-76],[43,-56],[26,-28],[9,-11],[11,-12],[7,-8],[4,-5],[5,-5],[4,-4],[11,-14],[6,-8],[4,-5],[6,-7],[8,-10],[4,-3],[3,-4],[2,-4],[2,-3],[4,-4],[5,-6],[8,-7],[5,-6],[4,-4],[4,-5],[7,-6],[31,-31],[162,-136],[7,-7],[39,-39],[24,-22],[22,-21],[33,-30],[26,-25],[26,-25],[68,-58],[30,-25],[32,-25],[37,-31],[61,-44],[39,-28],[16,-14],[50,-39],[32,-24],[2,-1],[16,-9],[11,-6],[44,-29],[91,-59],[10,-8],[7,-5],[1,-1],[90,-76],[177,-128],[96,-84],[62,-69],[40,-55],[31,-59],[34,-85],[88,-279],[11,-100],[11,-126],[2,-22],[4,-38],[5,-62],[0,-5],[56,-582],[102,-478],[8,-25],[14,-42],[52,-164],[25,-79],[7,-23],[22,-67],[24,-75],[11,-36],[10,-32],[5,-49],[16,-173]],[[38672,37749],[-248,177],[-1000,731],[-347,280],[-281,46],[-257,-3],[-319,-17],[-295,-86],[-318,-128],[-394,-205],[-557,-290],[-255,-169],[-294,-134],[-373,-67],[-155,-77],[-101,-57],[-333,-93]],[[23586,40737],[8,12],[4,5],[0,0],[11,15],[0,0],[6,9],[5,6],[12,17],[1,2],[0,0],[12,17],[25,33],[32,44],[1,2],[49,66],[51,69],[25,33],[25,33],[18,25],[0,0],[4,5],[35,49],[9,12],[0,0],[0,0],[50,68],[29,37],[34,46],[62,80],[37,49],[1,1],[14,20],[12,17],[45,55],[10,15],[10,12],[5,7],[3,4],[12,14],[22,30],[20,26],[65,87],[88,118],[11,15],[11,15],[0,0],[29,37],[6,8],[0,0],[3,6],[33,43],[0,1],[32,42],[61,81],[18,25],[0,0],[41,55],[26,36],[0,0],[76,106],[61,87],[4,6],[42,57],[31,42],[1,0],[2,3],[18,25],[103,134],[49,67],[52,69],[109,149],[70,94],[94,126],[18,25],[0,0],[5,8],[44,59],[10,12],[0,0],[43,51],[100,115],[49,57],[63,84],[0,0],[59,77],[140,191],[21,28],[0,0],[27,37],[83,114],[1,0],[1,1],[0,1],[0,0],[0,0],[1,1],[0,0],[5,6],[102,138],[23,32],[50,71],[25,34],[0,0],[74,100],[105,143],[22,30],[20,27],[298,395],[11,23],[44,64],[88,120],[104,139],[0,0],[2,2],[0,0],[0,0],[0,0],[0,0],[0,0],[70,94],[29,40],[67,93],[0,0],[8,11],[9,11],[33,46],[29,38],[37,53],[27,35],[69,92],[73,100],[0,0],[16,22],[42,58],[39,54],[35,48],[26,37],[10,13],[0,0],[3,5],[0,0],[0,0],[6,8],[0,0],[30,41],[12,17],[10,14],[7,9],[0,0],[19,27],[519,733],[12,20],[82,115],[6,8],[45,64],[7,9],[780,1021],[56,73],[121,159],[102,140],[32,43],[49,65],[39,52],[51,70],[49,66],[62,82],[62,83],[57,76],[70,92],[32,43],[93,134],[30,35],[36,52],[20,26],[50,69],[56,76],[47,63],[45,63],[8,13],[33,45],[24,35],[32,44],[46,62],[43,59],[53,71],[26,36],[52,68],[80,108],[1,0],[18,26],[5,6],[9,11],[3,5],[2,2],[0,0],[0,0],[0,1],[69,91],[51,70],[27,37],[53,73],[257,344],[36,49],[51,71],[43,60],[26,35],[47,65],[57,77],[32,43],[26,36],[43,57],[49,64],[30,40],[39,54],[42,57],[48,63],[35,48],[65,86],[39,51],[7,10],[46,55],[0,0],[50,66],[6,9],[0,0],[0,0],[80,105],[87,118],[36,48]],[[32287,52463],[19,26],[0,0],[34,44],[34,-16],[0,0],[8,-4],[14,-6],[2,-2],[0,0],[12,-5],[6,-4],[33,-15],[14,-6],[44,-14],[63,-51],[40,-47],[42,-72],[65,-69],[100,1],[7,-78],[25,-9],[52,4],[12,-5],[11,-4],[48,-16],[47,-3],[46,-2],[8,0],[60,-3],[55,1],[30,3],[35,3],[61,6],[8,1],[54,-10],[166,-39],[42,-22],[17,-13],[3,-2],[46,-28],[18,-22],[29,-18],[28,-45],[71,-97],[29,-39],[0,0],[16,-22],[28,-35],[2,-3],[19,-24],[34,-43],[20,7],[68,11],[110,3],[47,-2],[136,-6],[3,0],[114,-8],[20,-4],[10,-2],[79,-15],[139,-40],[34,-11],[19,-5],[64,-22],[45,-15],[150,-63],[0,0],[138,-86],[32,-21],[72,-47],[11,-5],[0,0],[24,-12],[38,-12],[27,-5],[5,-1],[17,0],[22,2],[14,2],[9,2],[6,2],[26,7],[37,13],[16,8],[17,7],[6,2],[8,3],[9,4],[0,0],[3,0],[6,2],[16,4],[10,1],[5,-1],[9,0],[0,0],[2,0],[3,-1],[7,-1],[9,-1],[5,-2],[1,0],[10,-6],[0,0],[17,-19],[16,-20],[0,0],[21,-26],[16,-20],[73,-80],[52,-37],[93,-67],[138,-68],[0,0],[3,-1],[34,-21],[32,-18],[40,-12]],[[17931,41548],[103,65],[104,55],[180,96],[62,40],[23,14],[27,14],[47,38],[66,51],[90,69],[33,26],[69,55],[61,41],[106,75],[49,43],[49,42],[63,50],[109,80],[121,94],[30,26],[56,49],[108,97],[38,39],[86,83],[85,84],[60,58],[75,74],[58,56],[55,50],[115,103],[126,126],[64,72],[40,50],[207,290],[39,58],[22,36],[11,14],[32,46],[97,136],[85,136],[59,114],[61,120],[49,93],[67,126],[48,99],[33,92],[36,132],[61,161],[57,127],[66,126],[51,104],[16,30],[1,2],[31,109],[32,72],[39,79],[61,108],[66,123],[33,108],[29,114],[13,85],[4,62],[14,134],[27,193],[31,128],[34,163],[31,132],[22,142],[24,207],[-14,132],[-1,4],[-12,151],[-9,192],[-11,103],[-20,127],[-26,118],[-32,129],[-33,137],[-28,111],[-12,92],[-17,113],[-14,124],[-4,46],[-2,20],[-1,14],[0,12],[0,20],[3,26],[3,17],[2,11],[4,14],[0,1],[-6,215],[-38,315],[-299,709],[-69,235],[6,176],[105,155],[165,54],[219,-18],[1,47],[0,6],[1,1],[9,7],[108,-3],[27,7]],[[21883,51084],[4,0],[22,14],[5,4],[5,0],[100,16],[10,3],[26,18],[13,8],[16,12],[37,27],[36,26],[1,0],[22,16],[55,39],[50,35],[45,31],[25,17],[12,9],[11,8],[44,30],[9,6],[8,5],[11,7],[35,24],[37,24],[24,16],[52,34],[10,6],[30,20],[45,30],[3,2],[0,0],[0,0],[0,0],[19,12],[13,10],[24,16],[39,25],[22,13],[9,6],[22,14],[34,22],[20,13],[75,48],[13,8],[121,75],[69,45],[4,2],[34,22],[6,4],[35,22],[3,2],[74,47],[16,10],[7,5],[0,0],[29,3],[233,15],[113,7]],[[23720,52017],[459,31],[619,42],[371,25],[890,62],[927,64],[622,43],[1067,74],[376,26],[56,4],[314,23],[271,20],[396,6],[370,6],[353,5],[122,2]],[[30933,52450],[815,12],[123,0],[58,0],[86,1],[135,0],[137,0]],[[59079,73123],[873,-1626],[267,-514],[111,-358],[74,-207],[114,-311],[66,-178],[0,0],[40,-100],[44,-103],[58,-140],[53,-126],[16,-244],[2,-84],[2,-67],[14,-401],[2,-50],[2,-66],[-3,1],[-4,-229],[-3,-33],[-2,-24],[0,-1],[-1,-90],[-1,-85],[-1,-151],[-1,-7],[-2,-28],[1,-14],[-1,-23],[1,-37],[0,-1],[1,-30],[2,-45],[1,-34],[2,-83],[3,-65],[0,0],[1,-24],[3,-50],[7,-216],[1,-53],[2,-49],[13,-686],[2,-104],[0,-1],[0,0],[0,-1],[-1,-75],[1,-44],[1,-138],[0,-62],[0,-1],[2,-118],[0,-101],[0,-1],[0,-2],[0,-43],[-2,1],[-1,0],[5,-82],[7,-93],[1,-11],[0,-12],[38,-103],[51,-140],[50,-139],[40,-113],[141,-428],[16,-51],[1,-1],[0,-1],[68,-207],[0,0],[-2,-1],[14,-76],[6,-96],[13,-307],[7,-166],[1,-19],[1,-24],[6,-75],[3,-43],[0,0],[5,-62],[32,-225],[-55,-381],[220,-345],[117,-217],[71,-221],[101,-312],[47,-146],[34,-101],[12,-36],[28,-88],[36,-113],[1,-3],[1,-2],[18,-58],[21,-62],[1,-4],[379,-424],[87,-103],[104,-95],[34,-66],[207,-458],[47,-111],[18,-38],[0,-5],[0,-2],[15,-38],[58,-155],[61,-165],[120,-325],[32,-60],[21,-41],[-8,-269],[-13,-326],[-3,-133],[-3,-120],[-6,-149],[-3,-87],[-2,-53],[0,-1],[0,0],[0,-1],[342,-571],[119,-199],[230,-383],[23,-38],[6,-22],[2,-23],[0,-31],[-5,-44],[-9,-72],[-5,-73],[3,-70],[4,-73],[24,-194],[-39,-71]],[[63835,56148],[-47,8],[-106,10],[-23,1],[-18,0],[-3,0],[-43,-1],[-44,-2],[-45,-1],[-13,0],[-31,-1],[-44,0],[-2,0],[-41,-2],[-46,-1],[-44,-2],[-45,-1],[-31,-1],[-12,0],[-39,-1],[-30,-6],[-13,-3],[-44,-6],[-15,-2],[-28,-6],[-34,-5],[-10,-2],[-23,-4],[-18,-3],[-30,-5],[-8,-2],[-37,-22],[-23,-14],[-14,-8],[-15,-9],[-21,-14],[-26,-15],[-12,-7],[-30,-19],[-8,-4],[-8,-6],[-28,-19],[-80,-59],[-62,-43],[-47,-31],[-75,-55],[-92,-62],[-2,-1],[-55,-37],[-11,-13],[-16,-18],[-14,-17],[-16,-17],[-26,-31],[-36,-40],[-48,-55],[-41,-48],[-42,-47],[-27,-31],[-2,-2],[-32,-39],[-38,-42],[-32,-37],[-40,-46],[-6,-7],[-48,-56],[-19,-22],[-32,-36],[-36,-41],[-21,-24],[-67,-78],[-18,-20],[-50,-56],[-56,-64],[-20,-22],[-37,-42],[-48,-53],[-40,-47],[-29,-33],[-43,-16],[-37,-16],[-43,-16],[-40,-16],[-45,-19],[-37,-14],[-8,-3],[-27,-9],[-5,-2],[-69,-26],[-77,-32],[-258,-104],[-128,-50],[-110,-43],[-253,-103],[-217,-87],[-41,-17],[-206,-82],[-166,-66],[-131,-53],[-23,-7],[-29,-12],[-324,13],[-14,8],[-1,1],[-56,32],[-32,18],[-46,27],[-153,695],[-18,89],[-168,767],[-305,310],[-27,35],[-115,148],[-72,92],[-130,164],[-49,63],[-97,124],[-54,69],[-49,63],[-379,694],[-323,589],[-127,203],[-250,325],[-302,349],[-256,198],[-338,299],[-285,221],[-280,171],[-373,247],[-237,126],[-275,170],[-372,111],[-352,49],[-509,11],[-438,-41],[-466,-128],[-322,-143],[-247,-167],[-182,-260],[-7,-26],[-4,-17],[-24,-95],[-30,-113],[-17,-62],[-8,-30],[-26,-98],[-4,-17],[-17,-60],[-32,-115],[-7,-24],[-13,-44],[-11,-40],[-23,-84],[-13,-48],[-10,-35],[-11,-46],[-7,-30],[-26,-110],[-31,-126],[-21,-92],[-18,-73],[-49,-36],[-12,-104],[-4,-43],[-4,-30],[-4,-46],[-3,-20],[-1,-15],[-4,-31],[-2,-15],[-7,-7],[-11,-9],[-100,-89],[-3,-4],[-85,-102],[-264,-149],[-90,-51],[-86,-36],[-30,-11],[-72,-30],[-52,-22],[-47,-19],[-89,-37],[-72,-30],[-5,-2],[-69,-28],[-44,-18],[-61,-25],[-434,-149],[-140,-48],[-41,-16],[-22,-8],[-103,-34],[-180,-62],[-88,-26],[-126,-36],[-43,-21],[-22,-5],[-21,-2],[-107,1],[-47,-2],[-35,-2],[-111,-23],[-61,-12],[-76,-33]],[[48019,56678],[-384,681],[-16,129],[-122,122],[-54,55],[-86,478],[-1,13],[-128,-17],[-91,294],[-273,0],[-83,0],[-201,-16],[-29,131],[-63,326],[-22,40],[-4,6],[-16,29],[-82,-16],[-43,-8],[-81,-16],[-17,-2],[-105,-17],[-12,-2],[-52,-7],[-41,-6],[-45,-7],[-20,-2],[-78,-14],[-59,-10],[-56,-9],[-49,-9],[-158,191],[-32,47],[-8,6],[-74,49],[-102,68],[-88,58],[-60,42],[-64,45],[-122,84],[-16,11],[-60,46],[-20,15],[-6,4],[-11,9],[0,0],[-15,8],[-31,-3],[-32,-31],[-146,-255],[-15,9],[-4,2],[-99,57],[-106,-41],[-12,-4],[-12,-5],[-24,-8],[-42,-15],[-90,-32],[-13,-5],[-40,-14],[-120,-60],[-16,-8],[-67,-33],[-174,-61],[-36,-13],[-18,-6],[-10,-4],[-116,-40],[0,0],[-64,-23],[-174,-1],[-82,68],[-52,-3],[-24,-2],[-73,-1],[0,0],[-65,-3],[-47,-5],[-26,-3],[-54,-12],[-40,-9],[-177,-24],[-24,-3],[-58,-12],[-102,-21],[-54,-19],[-219,-33],[-11,-1],[-11,-1],[-116,-6],[-26,-13],[-217,-276],[-308,-394],[-330,-421],[-21,-25]],[[41272,57694],[-60,10],[-4,1],[-21,3],[-21,4],[-6,1],[-22,3],[-451,64],[0,0],[32,353],[4,58],[3,36],[12,160],[5,48],[9,53],[1,7],[34,257],[16,136],[12,119],[9,92],[15,53],[17,60],[60,85],[6,20],[1,3],[6,19],[38,125],[75,247],[43,183],[38,168],[14,43],[28,97],[57,194],[23,76],[31,102],[15,46],[32,103],[69,220],[18,202],[26,88],[28,88],[2,8],[4,12],[7,21],[15,49],[3,9],[7,19],[97,256],[4,10],[7,17],[4,9],[3,8],[3,7],[3,8],[2,4],[2,4],[1,2],[4,10],[0,1],[3,7],[0,1],[3,8],[1,3],[2,3],[1,5],[4,9],[2,8],[23,65],[2,5],[1,2],[1,4],[3,9],[2,11],[4,23],[0,3],[-1,3],[0,8],[-1,4],[0,3],[-1,8],[-2,14],[-1,9],[-1,11],[-2,14],[-6,78],[4,7],[24,71],[4,12],[7,19],[-2,2],[-31,45],[-10,19],[-1,1],[-31,46],[-6,29],[-11,64],[4,40],[20,274],[-89,44],[-74,213],[-50,78],[-15,20],[-30,62],[-17,32],[-53,58],[-20,21],[-6,8],[-9,10],[-19,28],[619,209],[-12,39],[-4,14],[-12,39],[-7,22],[-30,102],[-6,21],[-5,18],[-3,14],[-3,13],[-2,9],[-3,15],[0,9],[1,4],[0,6],[2,13],[8,50],[10,52],[40,125],[51,119],[32,113],[8,40],[2,10],[3,18],[1,6],[0,7],[1,17],[1,19],[-1,17],[-2,28],[-61,507],[-4,28],[-8,68],[-2,14],[-4,34],[-15,131],[-3,19],[23,8],[53,23],[5,2],[16,6],[25,8],[36,8],[2,0],[35,7],[-3,40],[-20,200],[52,113],[130,-31],[41,-6],[88,-12],[54,-52],[31,-132],[103,3],[95,3],[85,9],[166,134],[26,20],[161,71],[32,23],[69,47],[130,24],[16,53],[92,81],[0,0],[16,15],[30,20],[40,27],[35,24],[2,1],[46,31],[27,47],[69,87],[20,23],[28,0],[14,42],[11,35],[8,35],[4,16],[5,44],[0,16],[3,53],[-7,37],[-32,2],[-14,46],[-5,19],[-8,83],[-31,70],[-12,56],[-3,13],[-2,11],[-14,65],[-118,48],[-15,6],[-72,30],[10,24],[1,2],[17,39],[9,22],[10,24],[14,31],[37,80],[22,66],[25,73],[22,63],[26,80],[25,73],[2,10],[42,223],[12,62],[18,51],[36,62],[33,24],[28,20],[35,24],[11,8],[119,31],[21,5],[60,33],[11,6],[40,40],[2,2],[25,70],[51,119],[5,16],[5,17],[15,46],[37,39],[33,35],[54,36],[79,75],[31,25],[21,25],[17,19],[82,81],[146,78],[223,160],[98,32],[64,20],[40,13],[16,5],[6,13],[3,4],[23,44],[28,47],[28,46],[32,26],[216,133],[3,2],[145,437],[72,93],[137,179],[56,73],[87,114],[49,63],[58,75],[149,222],[26,32],[66,51],[123,95],[242,175]],[[46697,70930],[122,90],[245,-36],[261,110],[64,29],[56,25],[98,47],[116,55],[81,42],[61,28],[23,11],[37,17],[50,27],[47,22],[45,21],[1,1],[67,42],[76,47],[41,26],[232,140],[154,89],[40,46],[97,116],[67,77],[75,145],[161,476],[47,120],[141,352],[26,83],[23,77],[61,17],[66,17],[36,10],[68,20],[59,16],[26,7],[32,9],[35,11],[22,7],[87,62],[45,41],[57,49],[74,65],[99,88],[95,70],[136,79],[26,16],[73,42],[-8,-131],[6,-91],[5,-86],[7,-57],[2,-19],[12,-94],[9,-83],[0,-1],[-10,-67],[-19,-118],[-7,-43],[-9,-52],[4,-97],[3,-58],[3,-83],[3,-60],[2,-23],[8,-66],[1,-4],[4,-24],[1,-77],[2,-92],[0,-35],[5,-100],[0,-17],[0,0],[4,-11],[8,-66],[6,-49],[3,-25],[7,-61],[3,-27],[0,0],[3,-71],[3,-91],[0,-25],[-6,-61],[-94,-24],[-98,-26],[-106,-27],[-37,-43],[-44,-67],[-38,-57],[-45,-70],[-84,-128],[-51,-78],[-27,-43],[-39,-61],[-24,10],[-45,3],[-33,2],[-71,-110],[-71,-110],[-78,-116],[-29,-43],[-10,-14],[-1,-2],[-6,-12],[-5,-13],[-5,-16],[-4,-15],[-3,-17],[-1,-17],[-1,-15],[2,-21],[2,-13],[3,-16],[4,-13],[5,-16],[0,0],[34,-87],[8,-15],[10,-17],[14,-25],[15,-23],[19,-28],[22,-28],[23,-25],[19,-18],[22,-22],[10,-9],[2,-5],[-68,-425],[32,-3],[52,-10],[145,-43],[67,-45],[111,-79],[39,-32],[154,-104],[403,-267],[428,-280],[197,239],[262,354],[105,139],[304,366],[292,397],[200,276],[288,444],[186,296],[71,118],[49,99],[15,30],[219,52],[190,43],[41,10],[12,-43],[5,-19],[8,-13],[8,-6],[10,-6],[10,-2],[15,-2],[52,5],[28,-9],[41,-11],[151,-37],[109,-21],[66,-9],[1,4],[4,24],[65,-24],[19,-7],[19,-7],[7,-2],[1,0],[0,-1],[8,-3],[32,-11],[6,-2],[5,-2],[20,-8],[1,0],[361,-126],[25,-9],[237,-82],[222,-78],[64,-23],[584,-206],[51,-13],[12,-1],[12,1],[12,3],[12,4],[11,6],[10,8],[8,9],[249,582],[17,40],[194,30],[435,512],[4,6],[15,19],[12,15],[78,98],[66,84],[42,19],[41,12],[155,53],[63,11],[73,16],[39,7],[144,26],[94,13],[149,29],[36,4],[139,24],[105,21],[64,9],[179,25],[165,18],[177,35],[89,18],[185,69],[157,60],[240,86]],[[20793,117752],[1372,-1127],[1093,-904],[799,-594],[429,-294],[74,-51],[62,-42],[12,-8],[62,-43],[91,-55],[95,-59],[122,-72],[39,-24],[22,-13],[46,-29],[106,-63],[271,-162],[77,-45],[36,-22],[151,-81],[23,-11],[58,-25],[86,-35],[33,-8],[48,-8],[70,-9],[323,-9],[56,-3],[52,-2],[90,-3],[29,-1],[65,-2],[36,0],[63,-2],[43,-1],[44,-2],[47,-3],[15,-1],[54,-3],[52,-4],[55,-5],[39,-5],[527,-55],[174,-12],[125,7],[117,-15],[219,-37],[284,-74],[277,-83],[70,-13],[32,-1],[127,28],[111,31],[-9,67],[19,63],[24,75],[0,2],[14,53],[27,117],[12,69],[11,46],[98,170],[54,26],[18,7],[57,-13],[77,23],[89,-33],[56,-22],[91,-31],[6,-1],[139,-61],[52,-23],[8,-37],[95,-80],[106,-90],[23,-20],[21,-14],[56,-26],[10,-6],[113,-68],[32,-19],[0,2],[0,0],[2,-4],[16,-8],[95,-48],[29,-15],[2,-1],[0,0],[24,-19],[14,-11],[29,-13],[7,-15],[433,-53],[10,60],[35,209],[9,56],[15,89],[183,-1],[775,-10],[37,-5],[61,-14],[120,-42],[100,-33],[14,-4],[72,-15],[158,-28],[66,-9],[98,-7],[164,0],[111,9],[76,-8],[66,-9],[126,18],[644,102],[148,15],[39,2],[1662,198],[0,0],[139,80],[114,67],[0,0],[0,0],[25,15],[233,156],[193,130],[12,7],[0,0],[227,134],[114,67],[0,0],[1,0],[2,1],[0,0],[0,0],[79,47],[103,61],[96,57],[198,117],[0,0],[61,36],[113,65],[0,0],[0,0],[0,0],[126,73],[131,74],[0,0],[19,11],[1,1],[124,70],[74,42],[0,1],[0,0],[0,0],[0,0],[0,0],[51,30],[0,0],[0,0],[138,82],[145,88],[3,1],[23,14],[0,0],[55,34],[18,11],[8,5],[2,1],[44,27],[309,187],[646,394],[0,0],[127,79],[160,101],[121,74],[130,80],[137,83],[131,80],[98,60],[13,8],[135,90],[0,0],[75,50],[149,98],[0,0],[54,36],[63,42],[0,0],[6,4],[3,2],[0,0],[87,55],[3,2],[69,45],[222,141],[149,95],[32,20],[0,0],[55,36]],[[41581,117727],[197,-53],[908,-247],[709,-197],[826,-2150],[0,0],[0,0],[71,-73],[2,-2],[0,0],[298,-307],[400,-417],[0,0],[151,-159],[335,-353],[0,0],[195,-206],[129,-133],[1,-1],[1171,-1213],[204,-981],[0,0],[41,-199],[0,0],[0,0],[217,-178],[159,-349],[154,-532],[-66,-412],[0,0],[-7,-46],[-15,-93],[0,0],[-104,-637],[-22,-150],[0,0],[0,-1],[-8,-56],[-50,-367],[-37,-244],[-69,-495],[-590,-536],[-1,0],[-281,-2121],[964,-951]],[[47463,103868],[-88,-364],[-110,-426],[-52,-210],[-43,-165],[-16,-62],[-2,-7],[-56,-232],[-53,-232],[0,0],[-65,-13],[-26,-2],[-32,-4],[-39,-10],[-335,-83],[-69,-9],[-240,-32],[-800,-108],[-194,-26],[-451,-61],[-70,-10]],[[44722,101812],[-43,-9],[0,0],[-68,-16],[-361,-74],[-44,-9],[0,0],[0,0],[-239,598],[-98,246],[-86,216],[-9,53],[-7,49],[-74,100],[-82,36],[-70,44],[-628,390],[-386,239],[-329,204],[2,86],[4,173],[-13,-2],[-58,-5],[-86,-3],[-65,4],[-68,3],[-33,5],[-26,10],[-4,3],[0,0],[-4,2],[-9,5],[-13,1],[-13,1],[-18,8],[-13,9],[-8,5],[-5,1],[-12,-3],[-3,-8],[0,-14],[0,-61],[-23,10],[-115,51],[-348,165],[-32,15],[0,0],[-213,101],[-6,73],[0,0],[-10,131],[-7,81],[-4,34],[-9,75],[-43,12],[-93,31],[-65,20],[-39,5],[-66,-74],[-26,-29],[-122,-45],[-6,-3],[0,0],[-133,-49],[-117,49],[-136,56],[0,0],[-30,13],[-883,379],[-90,577],[-23,141],[-8,59],[-15,107],[-19,119],[-15,93],[-49,316],[-253,78],[-78,25],[-152,47],[0,0],[-152,47],[-212,67],[0,1],[-565,180],[-103,32],[-325,-262],[-64,-52],[-103,-81],[-394,-310],[-66,-72],[-26,-28],[-55,-42],[0,-1],[-109,-68],[-18,-11],[-103,-66],[-105,-69],[-1,-1],[0,0],[0,0],[-1,0],[-168,22],[-16,2],[-3,22],[-5,17],[-11,24],[-14,24],[-265,3],[-597,8],[-316,2],[-569,3],[-171,7],[-186,9],[-426,-4],[-442,7],[-91,-6],[-17,-3],[-470,-137],[0,-1],[-546,-130],[-524,-128],[-381,-86],[-146,27],[-332,-20],[-534,-30],[-610,-9],[-43,-1],[-477,-26],[-214,6],[-156,13],[-52,12],[-182,55],[-582,201],[-110,32],[-67,17],[-62,3],[-197,-11],[-154,-19],[-208,-27],[-77,-36],[-50,-32],[-117,105],[-255,-147],[-130,-59],[-203,-92],[-211,-85],[-235,-85],[-207,-47],[-149,-20],[-199,-19],[-144,-10],[-103,1],[-188,15],[-235,40],[-360,88],[-248,74],[-235,43],[-181,59],[-266,95],[-175,88],[-309,170],[-542,304],[-173,2],[-64,4],[-72,10],[-100,12],[-147,22],[-105,16],[-131,20],[-87,7],[-898,-17],[-97,-1],[-114,-1],[-139,0],[-66,-1],[-125,0],[-218,0],[-124,0],[-59,0],[-156,-1],[-63,0],[-136,-1],[-211,-3],[-18,-1],[-25,0],[-124,1],[-161,3],[-159,7],[-56,2],[-61,3],[-98,4],[-124,5],[-120,5],[-64,3],[-66,3],[-93,4],[-23,1],[-128,4],[-52,1],[-52,3],[-143,6],[-156,6],[-79,3],[-182,7],[-97,5],[-222,8],[-88,4],[-107,6],[-107,5],[-110,3],[-128,-2],[-158,-9],[-159,-17],[-128,-12],[-166,-15],[-227,-20],[-243,-22],[-198,-22],[-174,-16],[-159,-13],[-36,-3],[-140,-11],[-151,-16],[-168,-17],[-159,-15],[-698,-81],[-551,-41],[-2645,-154]],[[9672,106037],[34,91],[3,11],[8,25],[138,422],[8,46],[21,123],[68,153],[55,80],[248,33],[277,28],[9,10],[30,30],[45,47],[258,500],[62,120],[4,111],[-68,238],[-4,7],[-137,222],[-173,104],[-7,4],[-29,18],[-345,206],[-148,91],[-192,118],[-488,77],[-132,35],[-627,167],[-767,300],[-307,-12],[-241,-10],[-81,-3],[-118,-5],[-116,45],[-257,123],[-19,32],[-17,28],[-19,31],[-29,49],[-61,102],[0,0],[-1,0],[-147,-14],[-742,-31],[-582,-41],[-9,-1],[-12,-1],[-942,-67],[-538,-10],[-112,-5],[-404,-18],[-239,-25],[-144,-34],[-15,-5],[-5,-1],[-128,-36],[-103,-7],[-2,-11],[-32,-2],[-20,-1],[-38,-1],[0,0],[-2,-1],[-18,-7],[-2,-2],[-20,-23],[-1,-2],[0,0],[-12,-13],[-1,-2],[-19,-21],[-8,-12],[-11,-15],[-14,-20],[-35,-15],[-15,4],[-39,1],[-53,-1],[-22,-15],[-10,-38],[-13,-9],[2,-39],[-2,-55],[-3,-5],[-31,-72],[-38,-90],[-264,-121],[-36,-17],[-4,-6],[-14,-19],[0,-21],[-4,-58],[20,-25],[4,-5],[0,0],[3,-14],[22,-115],[9,-45],[23,-128],[4,-24],[5,-29],[31,-190],[31,-185],[0,0],[3,-27],[0,0],[0,0],[-45,-9],[-29,-5],[-29,5],[-20,-2],[-78,-6],[-21,-63],[-4,-35],[-31,0],[-30,0],[-1,0],[-128,0],[-16,0],[-1,0],[-16,-27],[-21,-33],[9,-46],[1,-5],[1,-2],[2,-11],[20,-93],[10,-37],[22,-25],[53,-30],[21,-11],[14,-8],[81,-65],[29,12],[0,-1],[12,-27],[10,-14],[21,-2],[14,3],[8,-16],[1,-8],[1,-12],[-53,-31],[-37,-28],[-40,-30],[-14,-12],[-1,-1],[-7,-7],[0,0],[-113,-70]],[[1404,107290],[-110,2],[-77,53],[-50,53],[-31,50],[-54,64],[-46,60],[-16,69],[-50,55],[0,69],[0,50],[0,19],[2,200],[-2,90],[-95,-2],[-177,-3],[-95,180],[-38,74],[-83,160],[-81,38],[-244,117],[0,0],[-1,278],[-136,189],[-8,160],[-1,14],[0,22],[-2,45],[-2,45],[-7,173],[24,90],[30,115],[34,127],[0,0],[138,84],[113,49],[102,31],[85,27],[14,19],[20,27],[23,31],[126,192],[89,136],[90,136],[51,76],[37,56],[11,17],[2,3],[114,169],[17,22],[11,16],[37,56],[30,44],[4,4],[2,3],[96,139],[228,340],[6,75],[-5,67],[-51,121],[-58,110],[-51,118],[-21,114],[-1,91],[-63,134],[-26,225],[-46,299],[-25,124],[-32,115],[-38,122],[-23,30],[-99,149],[-10,41],[-10,41],[91,282],[26,61],[22,27],[60,35],[103,28],[28,4],[92,88],[70,142],[89,129],[37,71],[37,75],[22,64],[58,149],[14,87],[-5,74],[-1,98],[-12,64],[-36,67],[-31,100],[-13,81],[-1,77],[32,142],[1,65],[23,90],[14,55],[14,54],[13,49],[17,65],[22,90],[10,40],[41,65],[39,60],[58,103],[16,25],[62,182],[2,3],[1,4],[184,588],[6,21],[0,0],[0,0],[8,25],[16,52],[0,0],[2,7],[21,71],[12,37],[0,0],[3,12],[0,0],[13,45],[9,27],[11,36],[0,0],[20,67],[0,0],[17,55],[32,109],[52,361],[8,212],[-2,128],[-10,120],[-9,120],[-2,24],[0,0],[0,5],[0,0],[-14,210],[38,167],[0,0],[-15,87],[-13,84],[-13,74],[-23,124],[-33,106],[-5,64],[0,8],[-11,140],[0,0],[4,32],[-33,142],[-36,110],[-32,135],[-15,26],[-32,64],[-39,90],[-39,74],[-54,286],[-1,87],[-17,128],[-31,53],[-47,91],[-27,63],[-1,51],[7,34],[38,37],[68,11],[61,-13],[83,-2],[53,-3],[80,28],[79,44],[96,156],[3,74],[104,130],[105,125],[74,99],[64,85],[47,131],[48,115],[2,98],[-20,87],[-35,71],[-39,53],[-27,34],[-16,53],[-35,91],[-2,74],[4,44],[41,37],[68,4],[54,-10],[109,-42],[106,-41],[215,-83],[78,-30],[77,-30],[95,-37],[61,-23],[167,-63],[151,-57],[292,-108],[486,-508],[63,-66],[26,-10],[43,12],[9,2],[89,2],[351,6],[213,63],[52,2],[72,22],[8,-8],[1,-1],[16,10],[21,-10],[0,0],[0,0],[33,3],[40,8],[5,-3],[0,0],[159,17],[207,23],[92,10],[106,10],[78,9],[29,5],[52,8],[138,19],[32,5],[52,7],[227,30],[63,8],[-1,-2],[0,0],[13,0],[75,-1],[307,-1],[233,-1],[144,-1],[71,0],[1,0],[122,0],[15,1],[39,1],[28,0],[5,0],[52,-2],[30,0],[35,-1],[18,4],[0,0],[36,7],[25,4],[36,6],[42,-105],[1,0],[24,7],[53,-16],[0,0],[57,-17],[125,-197],[0,0],[61,-22],[19,-7],[20,-7],[12,-29],[-160,-148],[-13,-11],[-17,-66],[0,0],[0,0],[0,0],[8,-28],[13,-43],[11,-36],[27,-16],[0,0],[7,-5],[15,-21],[0,0],[17,-25],[78,-112],[2,-69],[-18,-168],[1,0],[1,0],[79,17],[223,62],[173,-35],[95,-19],[66,-25],[81,-41],[109,-60],[72,-48],[68,-42],[45,-34],[52,-41],[88,-65],[75,-46],[60,-34],[72,-50],[86,-68],[100,-72],[161,-114],[96,-59],[163,-97],[110,-72],[88,-60],[85,-67],[111,-92],[136,-107],[140,-127],[110,-103],[101,-86],[170,-153],[100,-92],[144,-129],[192,-158],[142,-118],[87,-78],[83,-81],[77,-80],[66,-78],[97,-117],[98,-100],[126,-115],[224,-173],[215,-174],[142,-107],[165,-123],[174,-115],[138,-97],[105,-66],[84,-52],[96,-51],[59,-26],[244,-75],[303,-75],[118,-23],[122,-25],[43,-3],[261,-43],[190,-35],[122,-23],[150,-33],[193,-19],[168,-17],[82,-12],[75,-16],[85,-18],[127,-33],[142,-41],[233,-58],[157,-34],[143,-27],[160,-31],[145,-27],[138,-13],[135,-11],[110,-13],[84,-14],[83,83],[83,88],[70,89],[196,246],[105,109],[45,43],[46,35],[72,41],[205,97],[112,59],[134,65],[88,34],[178,62],[69,20],[95,32],[101,32],[479,147],[391,146],[201,78]],[[65600,79670],[-19,-18],[-740,-673],[-24,-21],[-24,-23],[2,-3],[20,-35],[85,-151],[25,-36],[15,-22],[1,-10],[233,-357],[224,-353],[73,-116],[92,-145],[0,0],[-14,-88],[-31,-182],[-13,-65],[-25,-123],[-3,-2],[-52,-266],[-28,-145],[-85,-134],[-36,-58],[-78,-111],[-6,-2],[-82,-119],[-81,-121],[-123,-186],[2,-5],[-78,-111],[-116,-167],[-4,0],[-30,-43],[-60,-86],[-41,-57],[-12,-17],[-14,-20],[-115,-169],[-97,-149],[-73,-100],[-117,-157],[-63,-86],[-104,-140],[-115,-155],[-89,-105],[-11,-18],[-18,-19],[-2,-2],[-40,-50],[-52,-61],[0,-1],[0,1],[-2,0],[0,0],[-91,-112],[-186,-235],[-166,-204],[-47,-153],[-6,-11],[-30,-134],[-130,-374],[-64,-238],[-3,-2],[-17,-61],[-1,-8],[-17,-27],[-95,-153],[-116,-174],[-7,-12],[-101,-152],[-22,-36],[-14,-26],[-43,-64],[-264,-389],[-310,33],[-190,23],[-111,12],[-72,14],[-124,22],[-39,7],[-14,4],[-10,5],[-16,8],[-93,43],[-89,54],[-103,62],[-90,79],[-43,39],[1,4],[-140,119],[-191,171],[-49,45],[-227,171],[-27,21],[-31,20],[-27,14],[-38,30],[-36,29],[0,0],[-134,106],[1,11],[-88,99],[-458,72],[0,2],[-23,-3],[-177,-22],[-45,-21],[-163,27]],[[46697,70930],[-91,324],[-44,92],[-125,170],[-95,132],[-38,78],[-67,139],[-100,87],[-52,44],[-479,161],[-137,48],[-11,110],[-15,129],[-18,150],[-38,311],[7,78],[26,191],[28,119],[-63,90],[-43,58],[-19,26],[-14,19],[-2,1],[-8,11],[-62,81],[-12,17],[-106,132],[-25,30],[-14,18],[-16,20],[-10,14],[-7,9],[-14,17],[-11,88],[-5,1],[1,7],[1,10],[1,9],[0,2],[0,0],[-2,31],[-1,23],[-2,25],[-35,16],[-84,47],[-33,21],[-29,16],[-12,7],[-128,77],[-62,37],[-39,21],[-112,56],[-55,27],[-59,29],[-171,80],[-35,17],[-53,26],[-11,5],[-166,71],[-52,20],[-49,20],[-49,19],[-14,6],[-31,15],[-10,4],[-24,11],[-52,24],[-72,34],[-48,25],[-50,23],[-75,37],[-9,4],[-14,7],[-114,59],[-52,22],[-54,23],[-66,29],[-55,22],[-155,61],[-44,18],[-64,25],[-121,24],[-100,32],[-88,28],[-5,15],[-17,54],[-5,21],[-20,31],[-8,13],[-20,34],[-4,62],[-13,195],[-2,33],[0,1],[-10,202],[-9,180],[-2,47],[-9,241],[-2,50],[0,9],[-219,43],[-65,10],[-657,106],[-214,65],[-43,17],[-50,19],[-49,20],[-74,34],[-210,107],[-285,142],[-42,23],[-151,89],[-231,159],[-400,281],[-114,84],[-142,104],[-361,231],[-537,-165]],[[38499,77734],[19,28],[-7,23],[-6,40],[-6,42],[-6,16],[-37,135],[18,2],[21,2],[24,1],[17,1],[19,1],[22,1],[21,1],[24,0],[29,-1],[27,0],[28,-2],[37,-3],[25,-2],[27,-3],[34,-5],[21,-4],[20,-3],[24,-4],[18,-4],[15,-4],[2,0],[14,-5],[19,-5],[0,0],[24,0],[46,-1],[50,60],[95,117],[29,38],[90,40],[22,8],[65,24],[68,26],[42,42],[35,37],[45,48],[57,21],[52,20],[31,14],[59,24],[36,30],[46,40],[-68,36],[12,19],[14,21],[-2,134],[-2,123],[58,54],[55,1],[94,140],[16,36],[1,3],[15,42],[19,45],[-1,31],[42,110],[13,21],[10,18],[8,12],[-3,89],[7,3],[5,13],[63,85],[14,23],[16,26],[6,10],[17,27],[19,35],[9,13],[9,8],[0,0],[6,5],[7,5],[23,19],[23,18],[88,69],[38,28],[9,8],[7,14],[12,35],[11,26],[25,58]],[[40549,80033],[8,-3],[7,9],[0,0],[45,59],[40,55],[-11,53],[24,14],[45,24],[49,-22],[119,20],[88,30],[23,8],[22,12],[108,104],[11,5],[168,68],[15,146],[104,57],[84,54],[153,90],[41,97],[24,46],[4,5],[11,21],[3,8],[1,6],[5,17],[5,10],[101,237],[53,50],[-47,100],[-30,50],[-83,136],[-42,71],[-155,374],[-52,136],[47,-5],[241,-29]],[[41778,82146],[101,29],[22,172],[51,0],[200,4],[73,4],[36,-19],[49,-39],[22,-22],[63,-58],[45,-41],[30,-23],[47,-21],[51,-24],[97,-41],[53,-23],[69,-26],[90,-31],[495,-159],[6,-1],[98,-31],[15,-9],[14,-8],[9,-6],[7,-8],[3,-4],[20,-28],[4,-6],[4,-8],[5,-8],[17,-26],[20,-32],[10,-16],[13,-21],[53,-81],[30,-88],[80,-180],[147,153],[152,-35],[81,123],[70,114],[44,73],[149,-76],[65,20],[63,18],[24,104],[-15,140],[32,0],[0,0],[196,-2],[158,-3],[10,0],[0,0],[0,0],[134,-2],[0,0],[112,-2],[171,-44],[103,-25],[88,-19],[-13,-133],[1,-74],[64,-32],[106,-47],[24,-13],[74,-32],[150,-69],[72,-29],[13,17],[85,74],[3,33],[34,45],[30,39],[118,-14],[43,-71],[99,-239],[101,23],[106,26],[60,15],[22,4],[35,9],[72,19],[75,19],[50,11],[132,33],[108,27],[78,19],[45,11],[31,9],[17,2],[15,5],[40,30],[65,47],[143,111],[221,-66],[118,-34],[52,-16],[138,32],[58,11],[119,25],[16,63],[16,75],[23,100],[74,11],[160,23],[136,174],[126,-15],[32,-4],[63,-9],[214,-27],[37,-9],[14,-3],[91,-24],[16,-5],[10,-3],[108,-29],[118,-33],[195,8],[113,2],[198,23],[12,0],[146,-1],[112,-178],[152,211],[113,149],[158,212],[365,486],[68,2],[278,180],[182,230],[79,74],[83,73],[50,91],[75,90],[51,142],[19,50],[29,58],[33,94],[21,85],[15,44],[39,139],[21,62],[25,113],[0,1],[0,0],[11,24],[36,100],[5,34],[0,0],[38,62],[40,63],[-5,134],[-1,19],[0,166],[3,71],[6,47],[13,28],[13,19],[10,24],[36,59],[94,129],[93,134],[114,-7],[116,220],[20,27],[96,60],[20,11],[72,44],[72,9],[129,-22],[31,-1],[18,-1],[82,90],[99,106],[37,39],[36,48],[8,73],[-12,101],[-12,56],[-12,76],[-4,23],[-13,39],[-11,33],[-4,9],[-16,40],[-12,39],[4,20],[1,1],[11,15],[18,14],[30,28],[23,20],[23,20],[18,15],[33,28],[47,40],[52,45],[38,33],[9,22],[12,31],[16,37],[16,40],[3,24],[1,18],[13,22],[25,40],[19,32],[20,26],[16,20],[8,10],[30,42],[22,30],[14,90],[0,0],[8,55],[-17,70],[-10,26],[-1,3],[-7,38],[-10,75],[-3,12],[-8,37],[-9,41],[-4,18],[0,143],[4,44],[2,24],[3,15],[3,21],[9,54],[12,65],[8,42],[8,45],[0,4],[-10,89],[12,71],[8,44],[7,39],[6,32],[19,101],[40,239],[8,47],[34,206],[-86,96],[-24,25],[-2,4],[-3,4],[0,2],[0,6],[2,6],[0,0],[26,95],[25,85],[5,16],[3,11],[4,25],[14,82],[-1,70],[-4,102],[-2,32],[-36,82],[-16,34],[-7,14],[0,0],[-15,34],[27,-3],[103,-15],[-47,67],[-20,28],[-19,143],[-1,3],[0,0],[0,1],[0,0],[-3,25],[-3,26],[-7,55],[0,0],[0,0],[0,0],[0,0],[-2,9],[0,1],[0,0],[0,0],[0,1],[-1,6],[-3,13],[-4,18],[-4,16],[283,13],[18,1],[10,3],[10,4],[11,8],[67,45],[50,32],[31,16],[16,7],[73,28],[116,42],[126,35],[69,-3],[18,-2],[21,-2],[19,-3],[28,-6],[28,-8],[31,-8],[17,-8],[131,-71],[332,-209],[206,-131],[171,-100],[134,-65],[329,-163],[360,-189],[234,-118],[28,-11],[29,-9],[29,-8],[30,-5],[31,-4],[30,-2],[31,1],[265,-15],[58,-3],[58,-6],[57,-8],[56,-10],[57,-12],[55,-14],[151,-53],[541,-188],[445,-158],[477,-174],[29,-12],[39,-16],[76,-31],[236,-107],[480,-220],[30,-14],[28,-16],[27,-17],[25,-18],[25,-21],[22,-21],[22,-22],[19,-24],[16,-28],[13,-28],[11,-29],[8,-30],[6,-30],[4,-31],[1,-31],[-1,-30],[-3,-31],[-6,-30],[-114,-388],[-4,-31],[-1,-31],[1,-31],[4,-32],[7,-30],[9,-30],[12,-30],[15,-28],[16,-28],[17,-21],[18,-21],[20,-19],[22,-18],[24,-18],[26,-16],[28,-15],[28,-13],[30,-11],[98,-25],[1573,-346],[828,-181],[881,-188],[-460,-640],[-337,-480],[213,-140],[46,-33],[44,-42],[68,-51],[82,-49],[101,-36],[76,-22],[43,-7],[46,-1],[63,7],[72,10],[50,7],[192,10],[180,-29],[196,-57],[41,-11],[360,-162],[92,-51],[336,-145],[77,-47],[22,-25],[7,-15],[13,-27],[8,-41],[4,-32],[11,-58],[13,-47],[50,-123],[13,-27],[11,-28],[9,-28],[7,-29],[4,-29],[-5,-32],[-8,-31],[-11,-31],[-13,-30],[-15,-29],[-17,-27],[-20,-27],[-21,-26],[-24,-24],[-25,-23],[-27,-21],[-136,-67],[-348,-146],[-458,-248],[-107,-65],[-58,-44],[-65,-64],[-259,-283],[-53,-66],[-53,-88],[-71,-192],[-30,-129],[-23,-109],[-3,-229],[16,-254],[30,-191],[21,-80],[17,-42],[133,-168],[136,-116],[117,-136],[120,-179],[205,-262],[174,-205],[107,-112],[149,-118],[427,-302]],[[41778,82146],[30,251],[68,131],[116,218],[61,116],[32,58],[99,186],[19,100],[-10,23],[-21,46],[-18,46],[-12,67],[0,2],[-3,19],[-2,46],[-9,179],[-37,110],[-11,154],[-234,366],[-248,391],[-73,114],[-89,142],[-67,107],[26,344],[19,203],[21,42],[149,233],[-25,137],[-7,45],[-16,7],[-280,129],[0,0],[-242,215],[-15,13],[-291,258],[-118,104],[-222,202],[-266,112],[195,137],[126,88],[49,35],[0,0],[0,75],[1,133],[-3,69],[5,305],[1,165],[198,122],[186,3],[149,377],[57,162],[122,425],[-17,82],[-20,101],[-10,50]],[[41141,89391],[-8,30],[55,107],[404,785],[400,779],[99,194],[442,813],[277,510],[9,10],[467,478],[47,48],[130,133],[156,156],[56,206],[30,113],[4,20],[35,121],[33,124],[53,214],[113,442],[8,31],[-74,387],[-14,68],[-5,403],[-4,247],[69,609]],[[43923,96419],[-2,197],[-12,1205],[2,7],[0,1],[1,8],[2,52],[4,27],[4,45],[0,0],[3,31],[-1,50],[2,48],[4,0],[4,0],[1,22],[2,23],[0,14],[1,19],[3,20],[3,15],[2,44],[1,27],[2,40],[16,101],[4,78],[2,57],[6,28],[1,3],[10,32],[7,22],[4,14],[7,29],[5,39],[3,11],[0,0],[6,24],[10,40],[18,68],[0,0],[16,65],[9,35],[10,41],[13,35],[3,5],[4,25],[75,310],[11,44],[76,296],[38,145],[26,100],[0,0],[48,189],[0,0],[239,221],[77,71],[0,198],[5,203],[3,116],[3,125],[0,0],[1,17],[0,19],[1,64],[1,11],[6,64],[0,6],[0,32],[1,49],[0,22],[3,147],[0,0],[5,297]],[[47463,103868],[0,0],[336,69],[181,26],[216,21],[195,25],[182,19],[58,61],[231,293],[0,0],[193,247],[0,0],[72,92],[310,807],[80,188],[131,331],[137,400],[175,259],[0,0],[247,66],[324,78],[193,46],[257,64],[0,0],[532,-122],[249,-56],[673,-467],[698,-484],[499,-606],[308,-43],[570,-71],[335,-40],[228,-445],[354,-690],[119,-229],[470,-281],[433,-252],[0,-265],[6,-684],[9,-365],[-24,-511],[-55,-1092],[1,-892],[0,0],[600,-718],[887,-776],[78,-48],[62,-41],[114,-73],[144,-93],[36,-23],[16,-14],[22,-17],[84,-74],[86,-57],[42,-48],[21,-22],[50,-56],[102,-130],[0,0],[109,89],[56,17],[167,49],[0,0],[80,-34],[120,-51],[0,0],[121,53],[168,73],[0,0],[152,-3],[1,0],[18,0],[82,37],[19,9],[0,0],[322,11],[80,-57],[49,-25],[0,0],[34,20],[0,0],[42,-20],[0,0],[78,42],[0,0],[48,-16],[-17,-69],[38,-4],[28,-3],[39,-13],[5,-2],[5,-2],[53,-18],[0,0],[89,59],[0,0],[61,-25],[72,-31],[71,-28],[8,-19],[51,-15],[32,-5],[16,-7],[56,-20],[49,-8],[0,0],[9,-1],[37,-10],[117,-52],[153,-24],[49,-65],[2,-2],[59,-35],[59,-37],[-14,-108],[-6,-38],[7,-73],[10,-15],[14,-10],[33,-3],[26,-16],[103,-94],[89,-46],[65,-34],[17,-18],[20,-11],[26,-31],[32,-31],[12,-3],[18,-4],[312,-54],[0,0],[85,-3],[21,-5],[63,-16],[52,-5],[71,-7],[34,-4],[53,-5],[48,34],[3,3],[101,21],[0,0],[52,-11],[61,-7],[34,-8],[94,-19],[0,0],[16,8],[0,0],[0,11],[1,110],[0,0],[19,-2],[0,0],[132,12],[0,0],[34,-7],[19,-26],[16,-69],[1,-7],[12,-13],[21,-23],[50,-21],[2,-1],[0,0],[35,-14],[0,-1],[38,-93],[116,-50],[5,-33],[6,-106],[0,0],[0,0],[0,0],[-69,-76],[0,0],[33,-79],[225,-107],[13,-36],[36,-44],[37,-19],[0,0],[118,-4],[68,1],[0,0],[27,0],[1,0],[27,1],[57,-37],[0,0],[59,22],[10,3],[0,0],[115,-38],[51,-127],[64,-5],[18,-44],[20,-30],[72,-80],[-42,-211],[30,-80],[17,-17],[0,0],[26,12],[23,21],[0,0],[75,-14],[43,-38],[86,-94],[63,-69],[14,-48],[0,0],[-74,-117],[0,0],[1,-96],[125,-35],[1,-84],[17,-42],[133,-11],[115,71],[0,0],[99,-71],[0,0],[32,32],[3,4],[0,0],[66,-46],[0,0],[133,146],[52,56],[0,0],[30,-12],[23,-18],[29,-61],[15,-64],[105,-105],[141,-89],[0,0],[13,-59],[12,-46],[1,-1],[-12,-51],[-3,-31],[-8,-80],[0,-1],[0,0],[24,-16],[5,-3],[46,-42],[97,-90],[119,-110],[143,-52],[0,0],[0,0],[1,1],[16,5],[0,0],[6,25],[36,33],[0,0],[8,12],[0,0],[33,0],[0,0],[0,0],[72,-11],[0,0],[78,5],[34,13],[56,5],[28,7],[172,34],[156,28],[29,25],[134,69],[14,15],[15,16],[15,7],[61,13],[9,8],[85,17],[72,97],[0,0],[100,-17],[19,-3],[130,-24],[33,-8],[0,0],[5,2],[0,0],[88,38],[0,0],[-24,-126],[10,-26],[24,-58],[5,-21],[6,-21],[6,-14],[4,-7],[15,-63],[17,-33],[2,-5],[5,-15],[28,-51],[16,-33],[3,-5],[16,-28],[9,-21],[21,-63],[5,-26],[3,-14],[0,0],[59,-32],[48,-17],[45,-15],[20,-6],[44,-15],[63,-18],[121,-19],[44,-8],[55,-8],[108,-13],[0,0],[0,0],[99,71],[33,23],[115,83],[82,172],[62,145],[39,89],[9,23],[7,20],[6,15],[0,0],[17,46],[0,0],[14,41],[0,0],[20,60],[0,0],[23,73],[0,0],[22,65],[0,0],[19,59],[0,0],[15,44],[0,14],[0,0],[289,-56],[98,-61],[0,0],[-77,-140],[-21,-36],[0,0],[1,-67],[4,-49],[4,-54],[62,-7],[66,-7],[179,-22],[0,0],[-35,-69],[0,-1],[30,-58],[33,-33],[36,-64],[51,-58],[104,-133],[18,-23],[12,-14],[169,-211],[126,-160],[108,-137],[163,-208],[26,-38],[19,-22],[50,-45],[41,-43],[21,-17],[63,-66],[17,-21],[16,-17],[127,-141],[42,-50],[264,-310],[122,-144],[221,-267],[174,-207],[136,-162],[32,-37],[-15,-36],[-155,-529],[-42,-146],[0,0],[-17,-42],[0,0],[-41,-126],[0,0],[-70,-240],[0,0],[-80,-197],[-63,-152],[-37,-95],[-243,-621],[-55,-138],[-14,-45],[-120,-379],[0,0],[-49,-155],[0,0],[-29,-86],[-5,-18],[-86,-336],[0,0],[-72,-277],[0,0],[-26,-96],[-43,-159],[0,0],[46,-303],[-16,-160],[-12,-50],[0,0],[-46,-234],[-90,-433],[-8,-30],[0,0],[-18,-105],[-11,-62],[-27,-122],[0,0],[-41,-60],[-74,-51],[-38,-47],[-74,-94],[0,0],[0,0],[-48,-59],[-18,-22],[-50,-64],[-15,-18],[-9,-11],[-317,-396],[-61,-58],[-2,-3],[0,0],[-43,-53],[0,-1],[-135,-167],[-6,-7],[-36,-55],[-100,-157],[-7,-11],[-133,-211],[-71,-111],[-65,-101],[-34,-70],[-28,-45],[-50,-80],[-12,-19],[-228,-368],[-125,-204],[-83,-149],[-129,-209],[-228,-357],[-92,-140],[-117,-197],[-139,-238],[-82,-141],[-369,-305],[-481,-217],[-95,-94],[-132,-129],[-182,-176],[0,0],[0,0],[-138,-138],[-595,-582],[0,0],[0,0],[-81,-81],[-281,-265],[0,0],[0,0],[-44,-42]],[[2076,78993],[-173,-2],[-112,44],[-103,89],[-154,124],[-83,143],[-1,100],[18,171],[100,73],[60,37],[212,137],[193,-42],[378,-194],[104,-116],[53,-198],[-39,-100],[-120,-145],[-100,-91],[-91,-1],[-142,-29]],[[26116,82660],[-2,-15],[-28,-165],[-19,-111],[-72,-448],[-47,-280],[-55,-422],[-4,-36],[-4,-41],[-3,-36],[-50,-385],[-17,-126]],[[25815,80595],[-61,-359],[0,0],[-75,-420],[0,0],[-1,-9]],[[25678,79807],[-3,-18],[-1,-5],[-47,-334]],[[25627,79450],[-87,-613],[-173,-1256]],[[25367,77581],[-1,-6],[-14,-91],[-6,-39],[-65,-485],[-11,-115],[-67,-604],[-4,-35],[-25,-202],[-16,-136],[-27,-226],[-6,-49],[-23,-187],[-10,-71],[-3,-17],[-133,-1027],[-64,-386],[-60,-433],[-10,-63],[-4,-22],[0,-5],[-37,-253],[-85,-594],[-26,-150],[-130,-767],[-135,-771],[-50,-413],[-18,-213],[-96,-587],[-19,-120],[-78,-464],[-39,-172],[-34,-271],[-3,-118],[-74,-629],[-5,-43],[-2,-17],[-8,-87],[-1,-7],[0,-3],[-88,-587],[-60,-546],[-19,-84],[-1,-6],[-74,-424],[-8,-63],[-17,-197],[-113,-613],[-12,-64],[-7,-39],[-3,-16]],[[23576,65064],[-40,5],[-336,41],[-44,1],[-27,1],[-21,-4],[-41,-9],[-639,-203],[-12,-3],[-36,-9],[-21,-4],[-22,-5],[-21,-4],[-22,-4],[-21,-4],[-22,-4],[-22,-3],[-22,-4],[-21,-3],[-22,-3],[-22,-3],[-22,-2],[-22,-3],[-22,-2],[-22,-2],[-22,-2],[-23,-1],[-19,0],[-23,0],[-2,-18],[0,-8],[0,-4],[-1,-10],[-3,-41],[-3,-42],[-3,-52],[-3,-34],[-3,-43],[-4,-62],[-1,-22],[-4,-55],[-2,-36],[-2,-17],[-1,-39],[-1,-17],[-1,-20],[-1,-18],[-2,-61],[-3,-69],[-4,-76],[0,-9],[-3,-73],[-7,-181],[-89,-1],[-427,-24],[-392,-24],[-248,-16],[-123,3],[0,-1],[-56,-4],[-16,5],[-2,0],[-4,1],[-80,22],[-9,-6],[-1,-1],[-3,-2],[-16,-10],[-2,0],[-6,-1],[-65,-5],[-161,-14],[-6,0],[-121,-7],[-59,-6],[-36,-6],[-4,-1],[-2,-1],[-7,-1],[-52,-2],[-16,-73],[-94,-426],[-5,-10],[-635,173],[-11,-27],[-1,-2],[-9,-24],[-11,-31],[-20,-52],[-19,-51],[-38,-101],[-30,-71],[-5,-12],[-9,-13],[-15,-40],[-20,-49],[-4,-7],[-8,-17],[-17,-48],[-423,-341],[-27,-69],[-61,-38],[0,-3],[-34,-53],[-14,-21],[-43,-100],[-3,-8],[-55,-129],[-10,-25],[-35,-84],[-45,-39],[-9,-8],[-19,-18],[-8,-8],[0,0],[-23,-22],[-2,-2],[-3,-2],[-55,-9],[-23,-20],[-46,-38],[-22,-13],[-76,-46],[-29,-10],[0,0],[-96,-34],[-225,-121],[-175,98],[-165,92],[-331,185],[-184,310],[-91,102],[-42,49]],[[16585,62416],[-2,3],[52,76],[57,82],[-103,60],[52,45],[26,31],[8,16],[10,42],[3,62],[181,0],[51,75],[33,42],[39,76],[16,30],[0,0],[0,1],[0,0],[0,0],[0,0],[1,0],[0,0],[0,0],[0,1],[22,42],[47,92],[36,70],[41,78],[38,72],[45,88],[44,83],[20,39],[18,34],[38,74],[41,82],[53,105],[30,61],[67,159],[3,5],[14,29],[56,118],[46,99],[8,34],[23,103],[26,119],[28,128],[23,105],[26,120],[4,16],[-3,119],[-1,67],[-2,69],[-1,75],[-1,60],[-1,31],[-2,102],[-1,77],[-3,91],[-2,98],[0,40],[-7,62],[-13,121],[-4,64],[-4,72],[-3,78],[-5,101],[-8,137],[-8,110],[-4,86],[-9,132],[-8,117],[-6,86],[-1,17],[0,15],[-3,13],[-18,43],[-14,45],[-41,90],[-15,46],[-56,165],[-4,9],[-12,36],[-14,44],[-35,105],[-97,244],[-15,49],[-270,750],[-156,516],[-49,307],[-55,407],[-59,351],[-131,551],[-90,399],[-78,293],[-182,643],[-135,420],[-201,577],[-280,629],[-530,1061],[-390,643],[-449,573],[-717,1127],[-418,725],[-30,39],[-142,185],[-22,24],[-57,56],[-29,32],[-33,33],[-43,44],[-141,144],[-137,142],[-128,130],[-119,160],[-83,113],[-50,65],[-53,47],[-38,69],[-43,75],[-29,57],[-30,54],[-33,31],[-77,77],[-39,37],[-134,135],[-14,14],[-18,20],[-18,16],[-42,43],[-73,73],[-62,62],[-83,82],[-108,102],[-40,39],[-173,161],[-119,115],[-104,105],[-119,115],[-57,58],[-42,36],[-155,164],[-180,186],[-62,54],[-3074,-1645],[-63,-23],[-249,-135],[-165,-91],[-118,-64],[8,-31],[3,7],[4,5],[4,3],[6,3],[5,1],[7,0],[8,-2],[6,-4],[5,-4],[3,-6],[1,-6],[-1,-8],[-2,-6],[-5,-6],[-6,-3],[-6,-2],[-5,-1],[-5,1],[5,-25],[12,-73],[11,-63],[4,7],[4,5],[5,3],[7,2],[8,1],[6,-2],[9,-4],[6,-7],[3,-8],[-2,-10],[-4,-7],[-4,-4],[-7,-4],[-6,-1],[-6,0],[-7,1],[-6,-16],[43,-167],[-164,-62],[-123,-46],[-111,-66],[-75,-27],[-83,-28],[-215,-74],[-77,39],[-55,28],[-136,71],[-66,35],[-4,-3],[-79,41],[-101,-10],[-398,-36],[-278,-23],[-140,-121],[-92,-81],[-28,-20],[-5,-4],[-11,-8],[-16,-11],[-10,-8],[-16,-11],[-207,-151],[-60,14],[-65,15],[-99,16],[-109,17],[-5,70],[69,10],[229,40],[-3,116],[-25,92],[0,1],[-56,207],[-32,204],[-16,121],[9,91],[26,207],[64,85],[27,57],[22,95],[38,78],[2,14],[0,1],[1,1],[7,29],[0,0],[1,2],[0,1],[8,20],[1,1],[0,1],[1,1],[12,21],[0,1],[1,0],[8,15],[-11,126],[11,145],[26,296],[50,200],[1,85],[8,345],[1,56],[0,57],[3,159],[-20,41],[-7,16],[-3,8],[-119,262],[17,56],[0,54],[7,338],[-185,167],[106,326],[69,106],[2,91],[14,75],[65,108],[54,48],[33,87]],[[4366,83026],[236,9],[1,1],[15,6],[13,5],[27,9],[14,4],[47,13],[36,11],[4,1],[44,14],[37,12],[23,8],[26,8],[16,5],[8,1],[0,0],[0,0],[40,2],[63,-6],[50,-5],[37,-4],[14,-1],[17,-1],[11,-1],[3,0],[25,-3],[21,-1],[21,-2],[79,-5],[1,-1],[6,0],[20,-3],[38,-2],[1,0],[18,-7],[16,-8],[8,-4],[31,-14],[4,-2],[36,-14],[3,-2],[14,-6],[42,-15],[31,-11],[60,-22],[2,-1],[23,-10],[246,-103],[2,-1],[45,-22],[157,-96],[42,-27],[14,-17],[14,-16],[1,-1],[3,-4],[39,-42],[11,-12],[4,-4],[9,-11],[6,-14],[2,-4],[1,-3],[4,-7],[7,-5],[29,-22],[4,-2],[84,-52],[80,-49],[1,-2],[2,-5],[3,-7],[23,-48],[3,0],[44,-1],[21,-1],[2,0],[13,-1],[38,-4],[17,-2],[4,0],[3,0],[2,0],[4,-7],[30,-40],[-1,-2],[-7,-19],[-16,-40],[39,-15],[52,-8],[4,0],[44,-41],[40,-38],[104,-24],[13,-3],[44,-10],[1,0],[11,-3],[8,-2],[1,0],[3,0],[15,1],[24,1],[29,5],[27,5],[11,2],[90,15],[50,17],[14,8],[42,25],[85,50],[1,0],[44,33],[14,10],[69,35],[88,25],[37,14],[29,11],[15,5],[21,7],[7,3],[20,6],[-2,-19],[-2,-27],[-19,-12],[-4,-1],[-7,-2],[2,-7],[2,-11],[6,-22],[1,-4],[-1,-5],[-2,-10],[4,-25],[6,-6],[13,-315],[11,-170],[4,-130],[10,-251],[2,-14],[1088,-366],[806,1632],[167,334],[41,136],[1,4],[23,75],[186,616],[174,390],[285,561],[270,300],[349,329],[37,43],[104,132],[159,179],[174,186],[127,184],[248,321],[264,286],[48,44]],[[12309,86780],[960,-905],[155,101],[589,375],[718,499],[125,108],[231,-71],[142,-42],[136,-42],[31,-9],[36,-12],[63,-32],[117,-67],[32,-65],[38,-78],[44,-88],[102,-206],[128,-445],[15,-52],[180,-625],[46,-160],[298,163],[319,169],[1507,808],[89,-10],[37,-2],[22,-4],[7,-4],[115,-53],[132,-66],[150,-75],[138,-68],[35,-17],[12,-6],[11,-7],[3,-2],[71,-43],[280,-172],[31,-24],[19,-13],[81,-55],[40,-26],[42,-27],[62,-46],[84,-48],[70,-43],[101,-42],[109,-29],[35,-7],[56,-11],[175,-16],[149,-9],[351,-10],[167,-1],[33,1],[0,0],[13,0],[18,0],[65,1],[103,-3],[5,0],[213,-9],[442,-31],[164,-14],[35,-5],[149,-15],[83,-8],[67,-1],[0,0],[22,-7],[13,-8],[10,-10],[14,-23],[21,-45],[51,-107],[42,-28],[2,-2],[49,-36],[96,-72],[9,1],[85,11],[142,19],[80,11],[69,9],[55,7],[17,2],[14,2],[125,16],[17,3],[27,4],[11,2],[60,10],[14,2],[22,2],[14,2],[7,1],[15,2],[28,3],[32,4],[37,5],[31,4],[30,4],[12,1],[24,3],[2,1],[38,-1],[8,0],[25,-6],[12,-4],[16,-5],[16,-11],[52,-35],[31,-19],[56,-11],[18,-7],[95,-68],[92,-79],[14,-18],[29,-30],[53,-62],[47,-54],[9,-9],[14,-16],[1,-1],[0,0],[8,-9],[14,-13],[16,-15],[29,-33],[6,-8],[37,-53],[13,-16],[7,-10],[13,-33],[14,-36],[16,-37],[9,-28],[2,-8],[17,-71],[10,-43],[5,-18],[3,-2],[21,-12],[18,-10],[18,-9],[52,-36],[25,-18],[20,-15],[7,-7],[43,-27],[6,-5],[71,-46],[-59,-75],[-18,-22],[-18,-23],[-33,-41],[52,-26],[84,-43],[51,-55],[0,0],[0,0],[0,0],[27,-29],[49,2],[33,10],[19,8],[36,15],[20,9],[6,2],[7,3],[13,6],[2,1],[36,3],[3,0],[75,-11],[28,-8],[3,-1],[1,0],[2,-1],[30,-15],[65,-32],[79,-89],[17,-16],[56,-69],[8,-10],[27,-36],[11,-14],[0,-1],[6,-36],[0,0],[8,-24],[10,-43],[7,-32],[17,-58],[9,-33],[5,-20],[-29,-53],[-5,-77],[-1,-28],[-7,-106],[141,-31],[18,-4],[11,-2],[77,-18],[0,0],[0,0],[0,0],[0,0],[54,-17],[15,-2],[60,-11],[198,-10]],[[20793,117752],[90,35],[258,132],[244,160],[43,28],[358,238],[188,134],[108,107],[-27,30],[-253,293],[-347,401],[-179,212],[-55,65],[-46,406],[-23,195],[-70,580],[2,11],[232,1068],[1,6],[2,9],[3,10],[1,4],[14,41],[29,101],[8,26],[12,41],[35,81],[37,87],[41,94],[25,41],[60,93],[18,28],[52,84],[20,27],[36,50],[96,114],[110,151],[107,136],[75,95],[30,35],[66,53],[40,31],[23,5],[122,89],[131,76],[97,49],[106,61],[31,16],[105,28],[73,17],[76,19],[124,34],[49,3],[134,3],[155,5],[126,-25],[146,-28],[239,-30],[79,-9],[46,-8],[80,-13],[53,-9],[89,-13],[117,-19],[116,-17],[103,27],[89,24],[34,7],[158,41],[44,11],[109,25],[80,69],[118,101],[78,53],[277,182],[135,82],[62,38],[20,11],[70,44],[101,61],[54,33],[59,33],[74,38],[65,33],[23,12],[107,56],[1,0],[24,5],[40,4],[79,2],[44,2],[59,-1],[88,3],[99,2],[84,-3],[68,-8],[43,-5],[34,5],[72,14],[82,12],[68,7],[56,20],[49,12],[32,6],[36,9],[33,7],[29,0],[45,-4],[34,-4],[47,-3],[52,-9],[39,-9],[48,-11],[41,-17],[36,-19],[37,-20],[77,-41],[43,-21],[57,-23],[45,-15],[26,-3],[48,-2],[38,3],[92,11],[36,8],[63,17],[39,10],[18,2],[18,1],[19,-1],[11,-3],[8,-4],[3,-3],[5,-7],[1,-6],[1,-9],[14,-326],[0,0],[1,0],[193,9],[21,2],[2,0],[7,0],[37,3],[8,0],[48,-14],[1,-1],[108,-32],[61,-18],[79,-23],[76,-46],[170,-26],[41,-23],[90,-51],[71,-40],[64,-36],[15,-10],[12,-8],[59,-51],[60,-51],[32,-27],[4,-3],[60,-50],[123,-103],[73,-49],[0,0],[0,0],[1,-1],[85,6],[86,6],[33,2],[83,6],[178,99],[4,2],[25,128],[7,32],[17,84],[139,-28],[0,-1],[19,-145],[38,-27],[54,-39],[134,-95],[7,-5],[0,0],[1,0],[1,-1],[55,-16],[136,-41],[2,-3],[81,-117],[45,-63],[0,0],[0,0],[1,-1],[73,25],[472,158],[50,-88],[-47,-208],[-8,-30],[-1,-4],[0,0],[-15,-54],[-17,-70],[-18,-62],[-15,-60],[-18,-59],[0,-1],[0,0],[47,-62],[43,-58],[46,-61],[43,-59],[61,-81],[40,-54],[34,-46],[36,-48],[37,-49],[21,-28],[0,0],[15,-18],[127,-110],[145,-132],[80,-70],[0,0],[1,-1],[0,-1],[80,-87],[0,0],[98,-109],[78,-88],[1,-2],[2,-1],[0,0],[13,31],[-3,17],[-7,44],[0,1],[-9,67],[2,11],[4,17],[0,0],[19,80],[5,17],[60,34],[1,0],[94,-4],[11,-8],[6,-5],[64,-41],[90,-52],[26,-15],[-2,-11],[-5,-25],[-3,-34],[-9,-19],[-4,-25],[0,-4],[-24,-18],[-18,-27],[0,0],[6,-2],[6,-2],[2,-18],[1,-11],[-17,-21],[35,-46],[-25,-44],[-22,-39],[44,-24],[13,2],[21,16],[12,51],[7,31],[0,0],[0,1],[5,24],[45,30],[187,31],[59,11],[103,-13],[1,0],[-1,-22],[1,0],[0,0],[131,21],[72,15],[36,7],[37,7],[8,-2],[58,-10],[35,-7],[3,1],[36,-10],[5,1],[45,7],[23,4],[1,0],[59,-23],[20,-22],[1,0],[0,0],[181,-73],[1,0],[5,-1],[36,-13],[86,-19],[67,-15],[15,-3],[16,-36],[69,8],[0,0],[76,1],[83,1],[129,22],[51,11],[0,0],[22,4],[52,-15],[41,-19],[7,-3],[0,0],[112,-44],[30,-12],[30,19],[21,12],[34,-14],[14,-6],[30,-12],[12,-12],[21,-19],[5,-5],[159,-151],[54,-51],[0,-1],[1,0],[35,-32],[137,-127],[125,-150],[1,-3],[9,-22],[4,-8],[52,-122],[17,-41],[11,-23],[3,-9],[57,-87],[37,-56],[14,-22],[0,-1],[0,0],[11,-24],[22,-50],[62,-100],[55,-88],[42,-26],[98,-58],[80,-47],[85,-49],[66,-35],[39,-21],[3,-2],[0,0],[11,-8],[66,-49],[42,-31],[39,-28],[181,-170],[123,-116],[35,-38],[7,-7],[15,-15],[41,-41],[81,-65],[0,0],[60,-48],[135,-29],[126,-28],[29,-9],[133,-35],[66,-19],[53,-13],[35,-9],[54,-13],[30,-7],[19,-4],[64,-16],[28,-10],[114,-45],[132,-52],[24,-9],[40,-16],[48,-40],[27,-22],[64,-53],[87,-73],[1,-1],[95,-77],[184,-152],[96,-81],[134,-113],[131,-111],[104,-85],[116,-99],[148,-122],[15,-13],[105,-87],[0,-1],[2,-1],[0,0],[1,0],[42,-3],[45,-4],[188,-13],[58,-4],[71,-5],[179,-12],[12,-1],[9,0],[65,-5],[12,-1],[19,0],[60,-1],[28,-1],[133,-2],[69,-1],[15,0],[81,-1],[56,-7],[53,-7],[22,-3],[77,-10],[23,-3],[40,-5],[16,-2],[52,-6],[81,-12],[58,-7],[66,-9],[108,-14],[2,0]],[[63835,56148],[10,-2],[27,-4],[85,-26],[155,-48],[58,-23],[37,-12],[63,-24],[30,-14],[32,-22],[56,-43],[64,-51],[44,-33],[47,-36],[60,-47],[59,-47],[141,-106],[144,-109],[72,-97],[63,-86],[49,-67],[24,-53],[21,-48],[19,-44],[24,-52],[8,-48],[14,-115],[35,-170],[12,-58],[19,-100],[10,-59],[3,-64],[3,-44],[2,-49],[3,-62],[0,-31],[3,-54],[0,-16],[2,-63],[0,-15],[5,-112],[9,-38],[-67,-402],[-23,-129],[0,-3],[-37,-213],[-111,-647],[-42,-401],[-24,-198],[-8,-59],[-10,-74],[-16,-115],[-13,-84],[-12,-81],[-12,-78],[-13,-90],[36,-54],[9,-16],[20,-32],[7,-38],[5,-29],[13,-84],[14,-88],[-8,-25],[-39,-115],[-48,-133],[-53,-150],[-67,-181],[-30,-67],[-98,-218],[-1,0],[-70,-163],[-33,-77],[-70,-158],[-154,-215],[-107,-145],[0,-11],[-86,-105],[-140,-195],[-95,-133],[-188,-199],[-125,-129],[-201,-208],[-239,-248],[-28,-28],[-254,-260],[-92,-62],[472,-274],[-316,-383],[-34,-13],[-27,-7],[-36,-1],[-46,0],[-50,-16],[-62,-44],[-76,-62],[-58,-70],[-16,-44],[1,-66],[1,-84],[-2,-71],[-29,-85],[-144,-418],[-164,-481],[-110,-323],[-13,-30],[-144,-128],[-1036,-569],[-41,-22],[-270,-97],[-113,-47],[-145,-54],[-596,-226],[-895,-401],[-171,-75],[-208,-52],[-209,-38],[-100,-20],[-133,-31],[-117,-42],[-156,-67],[-167,-95],[-113,-50],[-88,0],[-389,564],[-39,-10],[-130,-25],[-343,-39],[-142,-33],[-118,-58],[-523,-230],[-82,-60],[-54,-67],[-112,-503],[-108,-188],[-132,-169],[-185,-111],[-121,-54],[-99,-43],[-1437,-1724],[39,-339],[-1954,-2339],[-330,-418],[-328,-581],[-594,-825],[-871,-869],[-619,-595],[-34,-79],[-271,-278],[-218,-154],[-188,-88],[-422,-143],[-148,-52],[-114,-27],[-202,-18],[-463,-17],[-224,-41],[-223,-84],[-251,-126],[-286,-168],[-197,-176],[-53,-29],[-28,-6]],[[45433,33128],[-52,154],[-14,50],[-1,56],[15,775],[0,0],[6,73],[21,295],[8,97],[7,96],[2,43],[7,104],[-5,140],[-10,291],[-10,285],[-6,180],[-9,249],[-3,85],[155,41],[14,4],[40,10],[58,426],[72,474],[42,289],[-3,16],[-8,12],[-8,10],[-18,12],[-31,12],[-486,109],[-695,158],[-278,63],[-16,4],[-11,7],[-11,8],[-221,175],[-133,98],[-17,8],[-29,12],[-309,72],[-21,8],[-162,81],[-6,73],[-18,316],[-5,90],[1,33],[-1,41],[-2,32],[-4,70],[-10,248],[-4,18],[-8,133],[-22,368],[-12,254],[-6,133],[-9,181],[-6,128],[-2,42],[-13,320],[0,0],[-1,156],[-1,45],[-9,253],[-6,144],[-9,20],[1,131],[0,18],[-17,220],[-7,24],[-4,113],[-5,107],[-1,27],[-3,93],[0,1],[-7,124],[-1,17],[-1,44],[-3,99],[-1,10],[-4,113],[-7,170],[-1,27],[-5,130],[-2,39],[0,0],[-4,68],[0,5],[-4,81],[-2,44],[-1,8],[-8,173],[-8,147],[-8,167],[-2,34],[0,62],[-1,7],[0,59],[2,56],[2,80],[-2,33],[-4,79],[-1,8],[-3,67],[-3,71],[-3,32],[-2,48],[-2,26],[-3,42],[0,2],[-1,9],[-19,86],[-4,17],[-1,5],[-1,13],[0,5],[-1,13],[-1,9],[-7,16],[-9,23],[-18,49],[-28,73],[-6,16],[-23,70],[-68,117],[-69,118],[-16,31],[4,98],[-2,20],[-1,20],[-1,33],[-1,28],[-2,17],[-1,24],[-2,28],[-3,30],[-2,36],[-5,66],[-11,154],[-2,15],[-4,15],[-20,65],[-5,11],[-13,21],[-15,25],[-13,28],[-13,29],[-4,13],[-11,41],[-15,115],[-4,26],[-7,24],[-21,68],[-137,343],[-83,213],[-86,234],[-112,288],[-14,40],[-10,29],[-11,36],[-8,29],[-12,51],[-6,29],[-4,30],[-4,22],[-5,37],[-5,30],[-5,30],[-4,24],[-1,14],[-7,51],[-4,38],[-5,38],[-3,29],[-4,43],[-3,30],[-4,30],[-3,30],[-5,39],[-2,15],[-4,39],[-6,56],[-5,59],[-7,60],[-4,33],[-10,56],[-2,10],[-4,19],[-10,38],[-8,31],[-29,92],[-9,24],[-26,55],[-82,121],[-35,51],[-32,50],[-81,127],[143,73],[17,6],[18,4],[111,19],[107,17],[16,4],[23,14],[29,21],[12,13],[5,11],[6,10],[10,228],[-1,145],[95,-68],[24,-12],[20,-5],[62,-12],[22,0],[25,1],[13,7],[10,7],[11,10],[24,118],[9,24],[32,63],[35,74],[51,149],[21,23],[258,88],[341,120],[102,36],[46,18],[28,25],[21,34],[50,89],[2,21],[1,10],[-3,37],[-43,282],[9,1],[19,2],[96,11],[67,6],[101,2],[181,0],[27,-4],[59,-8],[69,-9],[12,-2],[11,-1],[27,-3],[84,-9],[49,-6],[237,-26],[55,-6],[86,-10],[192,-15],[81,-7],[32,-2],[193,-16],[45,-3],[486,12],[133,0],[94,0],[120,0],[195,-3],[177,-3],[170,-5],[80,-2],[124,-4],[96,-3],[52,-1],[64,-2],[74,-3],[26,-1],[72,-2],[33,-2],[1,15],[11,40],[14,65],[5,20],[21,96],[9,50],[37,203],[176,592],[2,10],[21,87],[8,32],[4,18],[11,51],[20,87],[16,66],[7,30],[46,193],[3,27],[4,37],[1,12],[7,77],[93,760],[30,185],[71,380],[11,36],[10,29],[7,14],[4,10],[15,31],[15,26],[17,26],[12,17],[24,34],[14,19],[16,20],[20,27],[15,20],[14,20],[25,32],[17,23],[28,38],[25,34],[30,41],[38,50],[38,50],[27,36],[29,38],[6,9],[-78,46],[-134,79],[-48,28],[-56,32],[-47,27],[-74,42],[-75,39],[-81,41],[-125,64],[-138,71],[-125,64],[-158,78],[-92,41],[-44,18],[-53,22],[-94,40],[-96,42],[-89,38],[-41,18],[27,24],[34,32],[37,38],[-81,36],[-34,27],[-16,13],[-22,18],[32,34],[85,90],[24,25],[19,20],[68,71],[17,17],[1,1],[25,23],[0,0],[41,37],[1,1],[52,55],[65,74],[40,44],[93,95],[96,101],[119,128],[4,4],[42,46],[17,18],[62,65],[19,19],[38,35],[58,52],[10,10],[108,110],[87,88],[136,137],[23,23],[71,72],[42,42],[-4,2],[-75,24],[57,25],[5,2]],[[45433,33128],[-82,12],[-222,60],[-836,264],[-314,69],[-157,8],[-381,11],[-776,8],[-291,-28],[-139,-30],[-340,-105],[-237,-72],[-221,-21],[-156,14],[-210,-6],[-112,-27],[-152,-34],[-42,-10],[-255,-132],[-126,-56],[-135,-83],[-244,-171],[-239,-229],[-199,-193],[-109,-24],[-67,26],[-53,58],[-46,105],[-27,74],[-15,148],[-10,113],[-3,199],[-49,354],[-39,304],[42,500],[-22,261],[-114,990],[-113,482],[-15,135],[-23,226],[-8,72],[-5,31],[-32,258],[-12,106],[-9,75],[-102,202],[-49,518],[-14,155],[-1,4]],[[36137,50956],[38,43],[5,6],[9,27],[525,712],[92,123],[38,42],[44,53],[43,65],[190,249],[88,116],[78,105],[22,26],[89,110],[7,10],[24,35],[9,12],[10,19],[0,0],[6,12],[18,23],[56,77],[0,1],[7,7],[69,85],[24,30],[13,17],[61,74],[127,157],[358,438],[410,537],[243,318],[10,12],[67,88],[16,20],[219,287],[1046,1344],[363,477],[17,23],[29,39],[64,84],[59,78],[8,10],[95,125],[439,622]],[[29500,62785],[12,21],[13,21],[15,19],[16,18],[17,18]],[[29573,62882],[14,6],[15,4],[15,3],[16,2]],[[29633,62897],[39,-10],[87,-18],[55,-14],[50,-64],[9,-20],[8,-15],[7,-73],[3,-40],[5,-14],[-6,-15],[12,-38],[13,-39],[18,-24],[29,-36],[11,-11],[17,-24],[42,-49],[31,-36],[38,-35],[25,-43],[11,-9],[23,-18],[54,-28],[56,-29],[71,-8],[19,-5],[38,-7],[39,-6],[52,6],[55,4],[87,17],[83,16],[67,22],[51,24],[43,26],[44,31],[31,28],[31,13],[34,5],[22,2],[15,9],[18,13],[47,22],[42,9],[29,34],[37,47],[37,52],[19,51],[7,60],[7,65],[-2,25],[16,16],[21,10],[32,20],[31,13],[24,10],[36,-17],[44,-25],[44,-43],[66,-63],[192,-150],[80,-52],[72,-46],[52,-12],[71,-3],[93,1],[162,12],[172,16],[77,8],[42,-1],[68,-19],[43,-15],[530,-226]],[[33261,62184],[-4,-4],[0,-4],[0,-2],[120,-67],[9,-12],[18,-8],[62,-25],[101,-42],[329,-138],[150,-64],[32,-14],[41,-18],[441,-193],[82,-36],[41,-18],[57,-25],[46,-20],[53,-24],[25,-11],[13,-6],[307,-136],[20,-8],[118,-53],[-11,-17],[0,0],[-22,-41],[-91,-146],[-26,-21],[-67,-55],[-16,-69],[-34,-34],[-90,-90],[-69,-31],[-27,-12],[-73,-32],[-39,-18],[-88,-39],[-36,-18],[-79,-37],[-29,-7],[-23,-7],[-317,-93],[-48,-12],[-75,-36],[-53,-24],[-130,-55],[-75,-29],[-39,-13],[-36,-14],[-49,-19],[-4,-1],[-9,-4],[0,-16],[-19,-33],[-30,-52],[19,-72],[18,-73],[26,-105],[13,-52],[4,-22],[1,-11],[4,-28],[1,-9],[0,-4],[-1,-57],[0,0],[24,-62],[13,-35],[1,-3],[3,-8],[35,-68],[79,-151],[16,-44],[39,-105],[15,-41],[43,-119],[29,-48],[17,-25],[67,-112],[39,-66],[0,0],[54,-26],[37,-6],[34,-5],[41,-13],[54,-18],[51,-25],[17,-24],[-3,-26],[-10,-20],[-2,-3],[-4,-8],[-6,-12],[-1,-3],[-9,-17],[-7,-22],[-5,-13],[-1,-2],[-2,-7],[-9,-24],[-3,-8],[-1,-3],[-2,-5],[-7,-21],[-10,-27],[-15,-45],[-13,-34],[-14,-39],[-7,-21],[-2,-32],[-2,-47],[-6,-81],[-16,-114],[-12,-61],[-13,-93],[-19,-140],[-6,-43],[-10,-66],[-3,-17],[-14,-104],[-11,-46],[-16,-82],[-5,-24],[-2,-11],[-4,-16],[-6,-30],[-3,-17],[-6,-28],[-10,-45],[-6,-26],[-1,-6],[0,-19],[0,-104],[0,-35],[-10,-40],[1,-15],[5,-41],[4,-24],[-2,-71],[6,1],[11,0],[39,-50],[54,-61],[1,-1],[23,-49],[34,-88],[15,-121],[3,-24],[7,-57],[-1,-6],[0,-64],[-36,-123],[-6,-23],[-47,-59],[-111,-139],[-233,-297],[-153,-244],[-19,-42],[-6,-22],[0,0],[-6,-62],[-8,-76],[-2,-60],[2,-80],[-46,-85],[-125,-223],[-54,-79],[-65,-96],[-112,-187],[-156,-270],[-68,-91],[-115,-107],[-53,-49],[0,0],[-88,-84],[-70,-65],[-739,-567],[-277,-212],[-200,-153],[-571,-441]],[[23720,52017],[-5,12],[-31,73],[-16,37],[-5,13],[-11,25],[-48,112],[-33,78],[-11,25],[-12,29],[-29,69],[-14,35],[-36,83],[-32,72],[-45,116],[-33,85],[-30,75],[-15,41],[-15,36],[-11,23],[-17,0],[-21,56],[-13,29],[-24,62],[-55,164],[-10,41],[0,1],[-41,162],[-6,42],[-3,15],[-21,130],[-4,24],[-2,39],[-6,93],[-14,224],[0,4],[-10,305],[0,84],[0,191],[0,145],[0,131],[0,514],[1,85],[0,235],[-11,286],[-8,208],[-13,327],[-16,390],[-6,164],[-23,543],[0,8],[-6,241],[-16,199],[-8,100],[-8,93],[-3,39],[-7,84],[-23,280],[0,81],[0,369],[0,198],[0,293],[18,238],[2,21],[32,416],[24,292],[2,14],[29,347],[5,60],[24,258],[4,50],[30,329],[30,245],[0,3],[22,153],[23,167],[33,204],[57,350],[38,303],[41,326],[11,67],[10,89],[1,11],[6,57],[7,57],[1,10],[174,934],[58,328]],[[23576,65064],[98,-10],[86,-8],[15,2],[15,3],[53,35],[37,33],[0,0],[17,15],[16,15],[179,-67],[1,0],[4,-2],[366,-167],[200,-71],[19,-15],[14,-33],[76,-19],[7,-108],[271,56],[71,13],[58,6],[56,1],[64,0],[81,-10],[57,-12],[49,-18],[35,-17],[24,-26],[17,-23],[18,-17],[22,-14],[37,-5],[33,1],[34,17],[17,9],[17,11],[16,10],[21,14],[23,-23],[108,-108],[200,191],[12,15],[7,20],[7,21],[8,11],[12,6],[18,3],[19,3],[18,10],[13,19],[13,22],[12,15],[27,14],[55,32],[35,22],[40,32],[33,30],[53,47],[40,32],[34,26],[29,21],[73,49],[77,51],[38,25],[34,19],[91,55],[87,-3],[14,7],[27,19],[26,20],[18,19],[37,37],[92,-1],[64,19],[43,19],[39,6],[34,10],[51,17],[28,-1],[29,6],[33,15],[29,3],[21,-1],[30,14],[34,16],[38,15],[55,38],[54,36],[33,20],[48,27],[59,26],[42,14],[32,8],[34,6],[35,7],[47,7],[38,6],[31,8],[35,12],[28,9],[24,10],[17,11],[16,10],[15,11],[49,44],[41,33],[92,83],[132,118],[280,286],[43,-31],[74,-33],[101,-27],[97,-33],[106,-50],[101,-51],[47,-47],[58,-37],[83,-65],[117,-58],[47,-24],[-68,-103],[-223,-346],[-406,-615],[-239,-361],[135,-35],[198,-66],[90,-27],[23,1],[81,24],[-3,-48],[-7,-51],[1,-72],[35,-45],[43,-37],[101,-50],[32,-48],[3,-78],[0,-19],[1,-55],[-9,-53],[-12,-42],[-25,-51],[-42,-75],[-23,-61],[-9,-64],[-2,-56],[5,-51],[15,-84],[1,-67],[-3,-34],[-12,-23],[-21,-51],[-29,-83],[-7,-60],[5,-80],[9,-29],[0,-10],[-3,-14],[-1,-1],[-8,-25],[-11,-20],[-3,-6],[-17,-34],[-14,-30],[-10,-20],[-6,-12],[0,0],[-6,-13],[-5,-9],[-6,-17],[-5,-15],[-15,-24],[-7,-10],[-8,-12],[-14,-14],[-12,-17],[-10,-13],[-6,-6],[-17,-23],[-16,-23],[-6,-8],[-17,-25],[-20,-33],[-16,-38],[-2,-6],[-2,-5],[-5,-15],[-3,-10],[-5,-14],[-9,-25],[-6,-16],[-11,-27],[0,-8],[-1,-8],[-1,-21],[0,-8],[1,-15],[128,14],[0,12],[0,3],[0,2],[1,12],[3,28],[5,27],[2,5],[2,7],[6,14],[6,13],[9,16],[11,18],[6,11],[8,13],[15,22],[20,28],[15,20],[16,20],[9,12],[0,0],[7,11],[8,14],[7,14],[36,56],[2,3],[4,5],[2,4],[3,6],[4,7],[2,4],[6,13],[6,12],[10,21],[0,0],[15,30]],[[38499,77734],[-45,-69],[-13,-19],[5,-26],[12,-10],[39,-31],[9,-11],[14,-17],[5,-7],[20,-31],[2,-5],[19,-41],[15,-23],[12,-11],[33,-24],[80,-56],[38,-21],[60,-13],[207,-72],[51,-29],[11,-31],[56,-143],[7,-17],[-10,-209],[29,-117],[35,-150],[76,-177],[5,-37],[2,-4],[36,-93],[43,-95],[37,-81],[11,-23],[6,-15],[1,-5],[2,-16],[1,-6],[14,-130],[10,-85],[58,-78],[32,-37],[87,-43],[12,-20],[138,-83],[46,-28],[3,-1],[-6,-34],[-9,-55],[-1,-7],[-7,-45],[-51,-18],[-184,-65],[-199,-47],[-11,-2],[-136,-79],[-30,-18],[-60,-44],[-73,-131],[-6,-17],[-30,-87],[-3,-7],[-15,-121],[-9,-71],[-33,-97],[-7,-20],[-86,-105],[-16,-19],[0,-3],[-1,-15],[-6,-61],[0,-18],[24,-76],[18,-133],[23,-120],[39,-146],[1,-34],[4,-107],[3,-55],[5,-80],[53,-97],[64,-29],[34,-66],[40,-36],[0,-8],[3,-9],[58,-99],[64,-112],[34,-66],[62,-144],[-21,-67],[-7,-15],[-36,-93],[-102,-42],[-53,-37],[-11,-81],[-144,-57],[-139,-59],[-14,-56],[54,-11],[-65,-42],[-8,-5],[-85,-55],[-29,-54],[-68,-130],[32,-203],[75,-43],[46,-36],[28,-11],[75,-53],[14,-9],[59,-61],[24,-25],[155,-94],[91,-57],[5,-11],[17,-31],[12,-30],[1,-2],[6,-20],[-6,-103],[-13,-53],[-39,-55],[-6,-10],[-5,-16],[-6,-39],[-13,-79],[0,-10],[-6,-17],[-50,-82],[-15,-49],[-32,-88],[1,-10],[-1,-1],[-3,-9],[-6,-6],[-59,-141],[-17,-16],[-10,-12],[-52,-59],[-38,-45],[-23,-26],[-39,-19],[-50,-7],[-211,-97],[-14,-6],[-56,-23],[-26,-70],[-63,-2],[-42,-18],[-36,-25],[-12,-16],[-103,-121],[6,-39],[-2,-41],[-6,-58],[-10,-34],[-9,-38],[21,-87],[-79,-132],[-23,-65],[-65,-76],[-35,-9],[-121,-13],[-24,-12],[-29,-17],[-122,-85],[2,-10],[-59,-29],[-115,-55],[-78,-33],[-23,-46],[-164,-42],[-103,-13],[-71,-25],[-122,-43],[-98,-34],[-47,-73],[-19,-32],[-4,-7],[-20,-41],[-9,-20],[-9,-22],[-12,-29],[-2,-4],[-79,-123],[-47,-101],[-22,-46],[-21,-47],[-3,-5],[-21,-47],[-7,-19],[-61,-140],[-28,-67],[-25,-59],[-15,-146],[-11,-36],[-38,-89],[22,-75],[29,-50],[41,-21],[64,0],[148,7],[55,-11],[129,-82],[82,-36],[42,-28],[19,-42],[7,-48],[-10,-47],[6,-65],[32,-85],[20,-81],[23,-91],[-6,-34],[-5,-32],[-18,-58],[-39,-66],[-56,-51],[-108,-87],[-51,-44],[-20,-34],[-22,-36],[-19,-32],[-39,-59],[-30,-55],[-17,-30],[-91,-80],[-50,-23],[-74,9],[-96,-32],[-58,-49],[-65,-91],[-53,-133],[-25,-95],[-1,-75],[15,-102],[0,0],[19,-128],[9,-55],[13,-82],[88,-219],[72,-74],[-66,-65],[39,-39],[147,-138],[-72,-118],[68,-63],[-108,-146],[-59,-302],[35,-226],[10,-60],[88,-266],[-1,-8],[0,-5],[0,-5],[0,-28],[0,-11],[4,-66],[3,-51],[0,-1],[1,-15],[4,-75],[-300,18],[-55,3],[-84,5],[-77,5],[-68,4],[-22,2],[-13,0],[-283,18],[-128,8],[-12,-109],[-26,-236],[-3,-20],[-1,-13],[-2,-12],[-2,-19],[-19,-44],[-25,-18],[-53,-29],[-100,-70],[-55,-39],[-264,-117],[-777,-324],[-198,-82],[-639,-339]],[[29633,62897],[-16,-2],[-15,-3],[-15,-4],[-14,-6]],[[29573,62882],[-17,-18],[-16,-18],[-15,-19],[-13,-21],[-12,-21]],[[25367,77581],[173,1256],[87,613]],[[25678,79807],[1,9],[75,420],[61,359]],[[26116,82660],[105,-9],[0,0],[389,-37],[153,-14],[36,-4],[0,0],[5,0],[4,0],[16,-2],[17,-2],[37,-5],[24,-2],[21,-2],[52,-11],[13,-3],[22,-4],[7,-1],[8,-25],[5,-12],[0,-2],[0,0],[0,0],[12,-33],[13,-38],[12,-36],[11,-29],[-5,-21],[18,-51],[5,-13],[36,2],[11,0],[33,1],[46,2],[43,2],[43,2],[7,0],[10,0],[74,3],[33,2],[60,3],[28,-3],[47,-3],[44,-2],[43,-2],[19,-12],[7,-4],[16,-10],[35,-22],[5,-3],[4,-2],[1,0],[2,-2],[2,-1],[9,-6],[4,-2],[32,-20],[14,-8],[0,0],[0,0],[1,0],[60,-31],[2,-1],[26,-13],[97,-48],[23,-6],[37,-8],[86,-21],[29,-7],[143,-22],[197,-29],[120,-19],[85,4],[46,1],[33,1],[30,1],[66,4],[5,0],[36,1],[95,4],[53,3],[32,7],[83,19],[12,3],[72,18],[6,0],[12,1],[11,0],[10,1],[12,0],[76,3],[7,0],[16,1],[10,1],[11,0],[11,0],[41,2],[24,3],[86,15],[88,10],[25,4],[34,4],[45,6],[43,6],[45,5],[9,0],[3,0],[89,5],[107,5],[43,-7],[-16,-6],[155,-24],[7,0],[25,1],[76,4],[97,6],[80,4],[262,-103],[45,-18],[34,-18],[144,-79],[97,5],[135,-1],[18,-3],[97,-12],[75,-10],[111,-22],[79,-17],[98,-20],[19,-21],[20,-6],[94,-27],[60,-10],[71,-17],[248,-62],[73,-17],[159,-31],[214,-73],[83,-18],[70,-14],[31,-7],[1,-1],[29,-20],[41,-20],[34,-10],[27,-8],[26,-10],[477,-126],[4,-1],[72,-18],[65,-15],[8,-2],[59,-12],[55,-11],[160,-31],[35,-6],[53,-9],[16,-3],[34,-6],[15,-3],[18,-4],[17,-5],[52,-13],[0,0],[1,0],[0,0],[302,-77],[206,-53],[421,-68],[-19,-3],[-92,-18],[-62,-1],[-17,0],[-17,11],[-39,25],[-83,-62],[-26,-73],[120,-194],[67,17],[131,36],[103,32],[39,-23],[30,-14],[69,27],[57,37],[54,67],[9,48],[19,62],[36,58],[39,32],[155,-18],[69,-14],[60,-22],[133,63],[25,11],[19,50],[48,125],[22,55],[7,19],[12,13],[31,-1],[25,-1],[23,-1],[5,-4],[0,-1],[5,-4],[3,-12],[2,-35],[-1,-7],[107,-198],[30,-159],[25,-112],[87,-16],[28,-5],[248,-35],[446,-62],[5,-1],[28,-2],[30,-5],[10,-2],[303,-53],[57,-10],[247,-42],[85,-17],[1,0],[11,-3],[33,-5],[78,-13],[85,-14],[381,-65],[112,-17],[31,61],[9,18],[10,19],[70,141],[151,-54],[167,-60],[15,-6],[40,-14],[2,-1],[14,-5],[0,0],[55,-23],[190,-41],[4,-2],[20,-7],[30,-11],[17,-5],[54,-20],[52,-18],[33,-12],[44,-16],[9,-3],[66,-23],[73,-26],[70,-26],[1,0],[0,0],[9,-3],[19,-7],[39,-15],[20,-7],[17,-6],[38,-13],[63,-23],[47,-17],[58,-21],[18,-6],[13,-5],[24,-14],[25,-11],[67,-21],[74,-30],[171,-66],[-4,-9]],[[12309,86780],[1820,1668],[1920,1758],[255,225],[427,413],[539,451],[69,182],[47,223],[67,333],[1,7],[73,259],[524,578],[257,105],[264,228],[213,334],[86,345],[33,340],[44,2],[357,25],[86,-3],[4,0],[26,-2],[22,-1],[49,-2],[0,0],[4,0],[45,-2],[28,-1],[0,0],[61,-2],[61,1],[30,1],[127,3],[128,5],[129,7],[178,7],[55,4],[134,7],[3,1],[117,9],[1,0],[95,7],[46,6],[41,6],[9,1],[5,2],[7,1],[30,8],[11,6],[22,9],[23,15],[22,14],[31,17],[18,12],[44,32],[29,22],[30,25],[37,33],[45,40],[56,48],[67,49],[6,2],[3,2],[3,1],[5,2],[49,2],[23,2],[40,-2],[1,0],[43,-1],[3,0],[41,-18],[41,-28],[55,-39],[11,-6],[4,-2],[36,-13],[49,-20],[28,-11],[36,-4],[26,-1],[66,-2],[21,1],[77,3],[31,-2],[39,0],[54,-2],[84,0],[47,0],[49,0],[54,-1],[52,-1],[55,0],[58,1],[47,0],[44,-1],[43,-1],[45,-3],[43,-2],[31,-1],[9,0],[3,0],[2,0],[80,-11],[32,-2],[1,0],[4,0],[48,-6],[1,0],[51,-7],[3,0],[91,1],[2,0],[128,5],[21,1],[16,-1],[1,0],[3,0],[4,-1],[7,-1],[33,-3],[0,0],[87,-9],[88,-13],[13,-2],[1,0],[6,-1],[0,0],[7,-2],[14,-3],[4,0],[6,-2],[21,-5],[54,-12],[3,-1],[43,-3],[4,-2],[18,-10],[56,-1],[88,1],[29,-1],[19,-1],[19,-1],[17,-1],[34,-8],[25,-8],[2,-1],[7,-3],[10,-3],[24,-6],[31,-7],[31,-7],[18,-4],[57,-6],[40,-2],[30,1],[28,0],[31,1],[8,1],[2,0],[22,3],[7,3],[5,1],[4,1],[13,2],[2,0],[2,0],[8,-1],[15,-6],[41,-21],[12,-7],[13,-6],[46,-35],[14,-9],[12,-7],[62,-38],[32,-13],[12,-4],[11,-5],[30,-12],[2,-1],[21,-7],[15,-5],[32,-11],[60,-30],[60,-24],[12,-5],[11,-5],[3,-1],[8,-3],[15,0],[1,0],[80,2],[136,-9],[101,-6],[205,-34],[88,-18],[69,-21],[12,-3],[0,0],[67,-20],[30,-10],[0,0],[3,-2],[23,-11],[25,-17],[15,-9],[32,-18],[21,-16],[58,-53],[15,-27],[6,-10],[51,-52],[65,-39],[0,0],[12,-8],[58,-26],[14,-7],[27,-4],[49,-7],[57,-3],[20,0],[4,-6],[22,-32],[63,-55],[51,-39],[210,-29],[117,-18],[16,0],[60,-2],[33,7],[28,8],[75,24],[194,66],[70,19],[2,1],[9,2],[89,22],[102,-3],[165,-6],[106,25],[101,24],[281,68],[1,0],[122,28],[37,8],[26,6],[62,14],[8,2],[16,4],[31,8],[71,28],[13,5],[13,6],[80,33],[16,2],[19,2],[26,-2],[24,-4],[1,-1],[5,-3],[6,-4],[27,-16],[27,-18],[17,-12],[17,-20],[2,-6],[2,-17],[3,-51],[1,-21],[-1,-69],[-2,-112],[0,-104],[7,-31],[6,-15],[19,-32],[11,-12],[9,-10],[80,-66],[48,-32],[47,-25],[21,-10],[37,-11],[40,0],[148,4],[349,8],[12,-119],[6,-50],[2,-13],[2,-22],[0,-1],[1,-9],[1,0],[9,-113],[0,-19],[556,92],[847,159],[714,154],[252,44],[112,25],[40,8],[38,8],[29,3],[34,0],[29,-4],[94,-19],[164,-41],[58,-14],[64,-8],[12,-1],[7,-1],[27,-2],[244,-3],[59,-1],[526,13],[32,1],[110,3],[46,7],[11,2],[44,7],[44,8],[4,1],[49,10],[14,1],[79,7],[51,5],[86,8],[49,4],[7,1],[294,26],[123,11],[0,0],[54,5],[73,6],[20,2],[68,6],[9,-109],[0,-4],[9,-100],[15,-183],[31,-367],[12,-139],[5,-51],[24,-240],[3,-33],[2,-19],[15,-142],[8,-44],[51,-280],[20,-109],[54,-95],[65,-107],[11,-18],[29,-48],[0,-1],[14,-23],[92,-152],[165,-255],[25,-38],[16,-24],[11,-17],[27,-41],[29,-41],[31,-41],[32,-39],[34,-39],[10,-10],[25,-27],[36,-37],[38,-35],[39,-34],[41,-33],[41,-32],[28,-20],[7,-5],[8,-5],[44,-30],[1,0],[44,-28],[46,-26],[44,-24],[54,-26],[218,-102],[245,-108],[274,-113],[240,-98],[138,-52],[108,-41],[273,-98],[581,-190],[251,-75],[410,-110],[21,-6],[21,-6],[119,-32],[49,-12],[22,-6],[422,-95],[161,-36],[30,-9],[51,-16],[45,-14],[177,-35],[111,-7],[99,-5],[105,7],[5,9],[164,40],[109,35],[69,22],[49,27],[60,34],[36,38],[86,73],[81,63],[227,62],[91,25]],[[9672,106037],[-78,-213],[302,-151],[462,-117],[205,-92],[14,-6],[17,-8],[607,-143],[1,1],[0,0],[1,-1],[47,-60],[52,-66],[28,-34],[14,-19],[13,-15],[78,-79],[45,-44],[45,-46],[16,-15],[3,-3],[0,0],[7,-7],[-65,-212],[-15,-49],[-6,-17],[-23,-78],[199,-247],[80,-99],[8,-10],[1,-1],[18,-19],[1,-1],[2,-2],[46,-47],[0,0],[148,101],[1,0],[59,-15],[90,-23],[-2,-25],[-2,-33],[-13,-119],[0,-2],[238,66],[2,0],[-58,-102],[41,-115],[18,-49],[-8,-49],[-45,-266],[172,-87],[51,-26],[65,-32],[25,-11],[107,-45],[95,-40],[97,-42],[595,-282],[72,-14],[59,-13],[36,-7],[88,-18],[334,-69],[1,0],[10,-1],[88,-6],[0,0],[1,0],[10,-1],[14,-1],[7,0],[3,0],[22,-2],[5,0],[32,-3],[0,0],[36,-4],[1,0],[211,18],[18,2],[2,0],[20,2],[278,17],[75,9],[0,0],[8,1],[3,1],[1,0],[18,3],[40,3],[26,2],[6,1],[21,2],[44,4],[20,1],[25,3],[29,3],[2,0],[9,1],[12,1],[8,1],[6,0],[267,24],[82,8],[37,5],[9,2],[56,4],[48,3],[71,7],[6,0],[60,5],[118,11],[60,6],[1,0],[62,4],[2,1],[82,7],[106,12],[250,28],[19,-49],[8,-19],[34,-82],[3,-7],[0,0],[285,-179],[86,-54],[188,-118],[213,-131],[65,-41],[214,-132],[70,-43],[194,-118],[239,-144],[10,-7],[0,0],[153,-184],[9,-11],[28,-33],[0,-1],[-32,-30],[-11,-10],[-20,-20],[-8,-8],[0,0],[4,-4],[5,-4],[20,-24],[1,0],[43,-41],[7,-7],[6,-6],[0,0],[1,-1],[4,-2],[0,0],[50,-50],[20,-20],[28,-27],[21,-20],[7,-7],[0,0],[7,-7],[13,-27],[9,-20],[5,-9],[0,0],[2,-4],[14,-30],[3,-6],[1,-2],[9,-19],[9,-19],[34,-23],[8,-5],[67,-45],[40,-27],[8,-1],[7,-1],[110,-18],[13,-2],[0,-1],[1,-2],[0,-1],[7,-34],[2,-8],[0,-2],[10,-52],[-64,-219],[-12,-42],[-5,-17],[-37,-135],[92,-79],[144,-121],[140,-125],[171,-152],[47,107],[75,116],[23,36],[29,45],[1,2],[13,20],[82,114],[7,10],[65,91],[39,44],[27,38],[20,25],[-17,49],[-18,78],[-24,102],[-1,5],[33,41],[39,47],[336,76],[15,-82],[23,12],[98,46],[41,20],[137,65],[9,5],[52,25],[3,116],[0,0],[1,1],[63,13],[9,1],[42,9],[96,46],[106,49],[45,21],[57,26],[50,33],[60,39],[73,47],[34,9],[83,21],[51,-15],[6,-3],[93,-52],[0,0],[42,-7],[15,-2],[61,-10],[28,-5],[6,0],[12,-2],[12,-2],[26,-4],[10,-2],[11,-2],[2,-2],[10,0],[104,-4],[28,-1],[22,-2],[57,-3],[41,5],[64,8],[25,-2],[16,-1],[24,-2],[37,-26],[89,-20],[77,-7],[15,-1],[11,0],[43,-2],[45,-1],[5,-1],[13,-4],[5,-2],[25,-7],[5,-2],[11,-3],[7,-2],[21,-6],[9,-2],[31,-4],[4,-1],[6,1],[45,5],[86,6],[40,-17],[6,-3],[9,-4],[5,-2],[33,-11],[7,-2],[27,-9],[3,-1],[108,-22],[7,-1],[17,0],[23,-1],[13,-6],[32,-15],[6,-3],[3,-1],[5,-3],[29,-21],[28,-19],[4,-3],[5,-2],[17,-10],[1,0],[0,0],[9,-4],[8,-6],[54,-39],[37,-35],[123,-18],[45,-6],[60,-5],[90,-21],[86,-27],[66,-25],[104,-127],[35,-44],[43,-51],[22,-30],[33,-59],[22,-43],[9,-11],[6,-13],[5,-12],[25,-44],[8,-22],[5,-28],[12,-36],[24,-40],[13,-11],[43,-40],[2,-3],[48,-72],[14,-17],[71,-83],[7,-11],[55,-90],[4,-6],[36,-55],[2,-4],[27,-40],[3,-7],[85,9],[125,12],[7,-43],[11,-71],[11,-86],[14,-108],[6,-44],[62,7],[119,9],[90,8],[96,8],[58,4],[54,-1],[50,-7],[78,-18],[48,-11],[39,-9],[-13,-121],[18,-2],[35,-5],[79,-14],[122,-11],[62,0],[98,8],[178,1],[89,-6],[138,-5],[20,10],[148,-10],[112,-9],[0,0],[87,-7],[13,-2],[5,-1],[3,16],[0,0],[0,0],[0,0],[0,0],[11,43],[1,6],[12,49],[13,52],[7,29],[0,0],[9,64],[10,134],[10,126],[20,190],[13,142],[18,100],[11,62],[1,5],[11,64],[8,47],[10,37],[16,67],[19,78],[13,49],[40,-1],[23,0],[17,-1],[5,0],[18,-1],[5,0],[21,-25],[0,-1],[13,-15],[0,0],[10,0],[14,1],[173,8],[126,5],[6,1],[62,2],[52,3],[35,1],[6,1],[49,2],[132,6],[33,1],[45,2],[5,1],[4,0],[0,0],[0,-2],[6,-11],[4,-12],[1,-3],[8,-53],[3,-24],[21,-151],[1,-3],[15,-105],[4,-33],[32,-237],[0,-2],[-3,-11],[20,-156],[3,-24],[36,-168],[-22,-18],[-57,-28],[-12,-6],[-50,0],[-1,0],[-38,0],[3,-93],[2,-82],[2,-57],[0,-5],[1,-52],[2,-36],[5,-184],[3,-97],[11,-5],[12,-5],[6,-2],[44,-8],[93,-17],[27,-5],[0,0],[22,-4],[6,-1],[19,-4],[85,-12],[75,-11],[115,4],[49,25],[5,3],[8,3],[0,1],[49,24],[8,4],[20,13],[0,0],[0,1],[11,7],[6,1],[7,1],[0,0],[0,0],[34,8],[33,12],[11,6],[81,49],[1,1],[0,0],[13,8],[88,47],[0,0],[0,0],[45,1],[1,0],[0,0],[75,2],[31,4],[3,1],[30,4],[122,17],[31,1],[0,0],[43,1],[0,0],[6,0],[18,1],[66,19],[82,25],[110,27],[8,-7],[13,-6],[28,-12],[2,-1],[9,-3],[0,-1],[60,-22],[73,12],[45,8],[2,1],[10,2],[6,2],[49,12],[8,2],[3,1],[9,6],[3,1],[8,2],[25,5],[14,3],[14,5],[1,0],[8,2],[6,3],[0,0],[7,4],[3,0],[0,0],[6,2],[13,-1],[1,0],[2,0],[19,-13],[2,-1],[5,-4],[7,-4],[3,-2],[5,-3],[4,-3],[7,-4],[25,5],[2,1],[47,9],[60,16],[51,6],[99,-15],[-53,-113],[-50,-110],[-15,-35],[-72,-128],[0,0],[-3,-8],[7,-26],[8,-13],[44,-70],[15,-14],[25,-24],[13,-12],[6,-6],[31,-38],[15,-14],[10,-9],[13,-10],[2,-3],[14,-15],[36,-39],[33,-36],[10,-10],[19,-21],[18,-21],[4,-5],[1,-1],[4,-3],[25,-27],[35,-37],[34,-36],[20,-21],[4,-3],[12,-13],[15,-14],[29,-30],[23,-24],[9,-5],[54,-33],[3,-1],[0,0],[22,-6],[31,-7],[35,-9],[0,0],[51,-12],[81,-20],[12,0],[24,0],[44,-12],[71,-20],[39,-6],[16,-2],[19,-3],[10,-1],[14,-3],[10,-2],[25,-6],[2,-1],[22,-5],[3,0],[35,-9],[52,-12],[15,-3],[6,-2],[7,-2],[7,-2],[1,0],[1,0],[18,-4],[23,-4],[0,0],[9,-2],[9,-1],[25,-5],[37,-8],[3,0],[15,-3],[2,0],[12,-3],[9,-1],[5,-1],[20,-4],[72,-14],[14,17],[7,8],[4,6],[7,9],[18,-1],[30,-2],[-1,26],[-1,28],[-2,26],[-1,29],[1,2],[12,34],[3,7],[6,15],[0,0],[2,6],[3,8],[2,18],[1,4],[0,2],[0,2],[3,24],[2,15],[1,7],[3,30],[24,25],[6,7],[3,2],[13,14],[13,14],[3,3],[1,2],[7,6],[2,16],[2,10],[1,8],[0,0],[3,24],[3,17],[5,36],[12,78],[34,182],[0,0],[9,46],[45,-4],[33,1],[42,0],[1,0],[7,0],[8,0],[34,1],[8,-1],[5,1],[5,0],[0,0],[5,1],[7,0],[122,2],[58,6],[0,0],[5,1],[62,6],[26,3],[11,2],[77,0],[22,3],[103,8],[11,1],[35,1],[47,2],[15,4],[73,20],[77,22],[0,1],[9,2],[44,7],[14,2],[22,4],[4,0],[7,0],[48,-2],[79,-2],[8,-1],[13,17],[-13,15],[-11,12],[-4,30],[0,3],[20,-3],[17,-2],[13,-1],[37,-4],[22,-3],[24,-3],[4,-1],[90,-20],[25,-5],[0,0],[2,-1],[17,-3],[32,-5],[4,-1],[105,-1],[8,-1],[12,-2],[27,-4],[27,-6],[40,-9],[4,-1],[14,-3],[26,2],[19,2],[129,13],[81,26],[69,0],[2,0],[12,1],[69,0],[26,0],[17,1],[40,0],[9,0],[6,1],[0,0],[1,0],[22,1],[67,2],[22,1],[7,0],[73,7],[109,-3],[47,-1],[69,-1],[5,0],[19,2],[3,0],[36,3],[12,1],[5,2],[25,10],[1,0],[14,6],[3,1],[21,2],[0,0],[2,0],[21,-1],[2,0],[16,-2],[5,-1],[25,1],[2,2],[9,8],[17,6],[9,3],[8,2],[14,3],[0,0],[13,2],[37,-3],[0,0],[0,0],[1,0],[0,0],[0,0],[0,0],[0,0],[0,0],[20,-3],[8,-1],[15,-3],[2,0],[6,-1],[44,-3],[20,-1],[13,-1],[50,-4],[40,-3],[12,-1],[3,0],[12,1],[20,0],[5,1],[4,1],[44,4],[10,1],[11,1],[36,-6],[10,-1],[12,-2],[18,-3],[6,-1],[3,0],[1,-1],[1,-1],[0,0],[6,-8],[0,0],[11,-15],[29,-40],[0,-1],[42,-57],[8,-12],[9,-12],[5,-1],[25,-7],[30,-9],[3,-1],[31,-9],[13,-4],[12,-3],[9,-3],[39,-11],[12,-4],[20,-6],[39,-11],[5,-2],[53,-15],[6,-2],[97,-27],[15,-4],[24,-7],[28,-8],[39,-10],[16,-5],[17,-3],[30,-7],[34,-7],[32,-7],[48,-9],[9,-2],[7,-3],[50,-17],[2,-1],[5,0],[28,-2],[59,-4],[160,-10],[354,37],[14,2],[136,14],[1,0],[668,-82],[718,-87],[12,-2],[695,3],[295,1],[26,0],[75,1],[417,2],[16,0],[11,-3],[10,-3],[0,0],[41,-12],[0,0],[114,-34],[32,-10],[22,-6],[33,-10],[6,-2],[1150,-345],[328,-29],[151,-13],[569,-127],[0,0],[45,-6],[48,-6],[70,-5],[415,-30],[3,0],[0,0],[0,0],[0,0],[0,0],[152,-113],[27,-19],[304,-222],[5,-3],[101,-72],[0,0],[10,-7],[0,0],[0,0],[1,0],[8,-7],[0,0],[992,-1358]],[[4366,83026],[68,75],[52,225],[24,183],[32,330],[1,257],[-29,263],[-119,352],[-104,238],[-65,125],[-59,109],[-81,107],[-115,169],[-140,156],[-173,175],[-155,120],[-175,115],[-176,94],[-90,50],[-111,39],[-64,41],[-22,56],[-22,75],[0,37],[-3,86],[-1,0],[-1,23],[-8,97],[-17,222],[-33,100],[-44,144],[-27,44],[-27,37],[-43,63],[-48,39],[-114,60],[-138,45],[-98,48],[-74,-6],[-105,-5],[-87,-4],[-66,-1],[-22,45],[13,40],[39,42],[62,83],[65,84],[62,74],[91,47],[102,48],[76,41],[76,24],[91,-4],[82,105],[-17,290],[-22,68],[-32,131],[-22,63],[-83,144],[-38,61],[-107,122],[-152,141],[-104,90],[-173,111],[-24,27],[-73,86],[-51,81],[-33,84],[-27,79],[-7,77],[12,78],[5,58],[50,61],[68,148],[11,103],[43,126],[12,79],[11,86],[64,35],[148,-21],[128,-16],[263,3],[116,13],[109,-28],[130,-106],[58,-57],[22,-32],[102,-24],[145,26],[295,48],[437,380],[117,236],[147,121],[93,176],[98,179],[8,4],[59,35],[11,7],[45,27],[286,170],[123,68],[56,31],[77,45],[76,15],[119,21],[173,30],[150,28],[184,33],[6,2],[10,1],[218,149],[39,125],[63,212],[55,205],[185,243],[459,1260],[152,345],[78,315],[-41,569],[-74,517],[100,527],[73,643],[-3,233],[-71,350],[-196,465],[-28,240],[71,227],[127,330],[103,235],[113,169],[-11,197],[13,219],[-45,277],[-11,149],[-617,-59],[-606,-133],[-77,-80],[-77,-31],[-39,-48],[-23,-54],[-30,-84],[-2,-37],[-38,-50],[-61,-44],[-45,-43],[-41,-55],[-31,-35],[-45,-60],[-84,-66],[-109,-49],[-86,-35],[-78,-27],[-80,-14],[-60,-5],[-134,-3],[-99,-1],[-293,111],[-74,55],[-49,42],[-66,43],[-105,35],[-64,10],[-94,-1],[-27,-9],[-94,-40],[-107,-1],[-46,-7],[-31,-28],[-140,-47],[-71,8],[-29,14],[-54,6],[-12,0],[-46,-5],[-84,-50],[-90,-38],[-91,-35],[-80,-6],[-114,-14],[-97,-1],[-79,34],[-68,55],[-72,66],[-73,38],[-168,-13],[-104,29],[-47,36],[-20,39],[-40,64],[-80,51],[-23,3],[-31,32],[-1,1],[-33,72],[1,88],[1,3],[28,74],[194,498],[73,188],[7,257],[-2,151],[-1,111],[9,112],[44,148],[29,68],[74,136],[95,70],[69,69],[109,12],[192,8],[160,-4],[120,-7],[8,9],[157,229],[113,177],[5,91],[29,199],[-49,301],[-99,220],[-138,203],[-175,163],[-97,79],[-182,140],[-501,161],[-8,0],[-1,0],[-102,20],[-116,5],[-173,-55],[-124,-55],[-72,-38],[-52,-51],[-72,-8],[-81,87],[2,84],[10,135],[17,145],[28,132],[17,131],[14,121],[44,112],[5,131],[7,64],[3,64],[-44,145],[25,114],[108,113],[97,125],[22,95],[66,122],[21,111],[44,129],[11,262],[17,159],[-2,181],[-3,155],[-16,101],[-60,168],[-70,161],[-87,251],[-20,77],[-55,94],[-50,63],[-77,67]],[[21883,51084],[-1,28],[-11,207],[-111,102],[-93,30],[-121,-54],[-107,-38],[-124,-1],[-370,150],[-13,0],[-243,-35],[-311,14],[-9,-2],[-18,-9],[-92,-46],[-91,-49],[-305,-168],[-214,-241],[-703,-603],[3,-176],[-73,-118],[-90,-82],[-206,-39],[-419,-195],[-591,-345],[-361,-209],[-272,-55],[-157,-1],[-156,-112],[-23,-125],[2,-103],[-32,-89],[-50,0],[-100,50],[-25,22],[-32,-52],[1,-88],[26,-103],[-15,-88],[-91,14],[-93,116],[15,169],[-1,59],[-81,103],[-22,-12],[-48,-25],[-48,-24],[-27,-13],[-29,-14],[-26,-11],[-40,-18],[-37,-15],[-42,-16],[-41,-15],[-31,-11],[-36,-12],[-35,-12],[-34,-9],[-45,-12],[-33,-8],[-26,-6],[-6,-1],[-36,-8],[-23,-5],[-28,-7],[-29,-8],[-23,-6],[-24,-8],[-34,1],[-105,3],[-55,32],[-38,32],[-17,3],[-17,4],[-33,66],[-32,26],[-21,22],[-15,29],[-22,54],[-16,14],[-30,25],[-2,2],[-116,-36],[-18,47],[50,21],[12,5],[-26,65],[-9,73],[-143,145],[6,30],[-44,7],[-101,17],[-6,1],[-6,2],[-6,3],[-6,3],[-2,1],[-2,1],[-4,3],[-2,2],[-2,2],[-1,2],[-2,3],[-1,2],[-1,3],[-1,2],[-1,3],[0,2],[0,3],[0,2],[0,3],[12,62],[3,14],[25,124],[37,163],[187,266],[31,16],[25,-4],[48,-7],[149,199],[461,893],[9,17],[10,19],[6,13],[7,14],[6,11],[6,12],[6,12],[5,10],[7,14],[5,10],[3,6],[9,16],[6,12],[6,11],[6,11],[9,17],[11,21],[13,22],[8,16],[8,13],[9,16],[6,11],[9,17],[10,17],[11,19],[8,13],[6,12],[10,16],[9,16],[10,17],[10,16],[9,15],[8,13],[13,21],[5,9],[8,12],[8,13],[10,15],[27,40],[8,13],[8,11],[9,15],[8,12],[8,14],[8,14],[5,10],[7,11],[13,27],[9,19],[7,14],[5,12],[4,9],[11,33],[7,23],[6,25],[4,19],[2,12],[4,21],[5,21],[4,18],[3,14],[3,18],[3,15],[7,43],[5,22],[3,16],[4,22],[5,22],[4,18],[4,19],[2,12],[4,18],[4,21],[5,21],[2,11],[4,17],[4,13],[3,12],[3,11],[4,15],[5,19],[4,16],[5,18],[5,15],[5,17],[5,17],[6,20],[5,15],[3,10],[8,23],[5,15],[8,25],[7,20],[7,18],[6,17],[4,11],[3,8],[1,2],[5,14],[9,23],[7,17],[8,20],[7,15],[5,12],[7,14],[5,11],[8,15],[9,15],[9,16],[6,10],[11,17],[7,12],[6,8],[7,10],[9,12],[7,9],[9,12],[9,11],[6,7],[9,11],[6,7],[7,8],[8,9],[12,12],[15,17],[9,12],[1,1],[8,7],[8,8],[10,8],[9,8],[10,9],[10,8],[8,6],[20,16],[16,12],[16,11],[17,11],[22,14],[21,13],[18,10],[19,11],[15,9],[24,15],[20,13],[20,14],[27,18],[10,8],[15,10],[19,15],[15,11],[7,5],[12,10],[11,9],[2,2],[-46,0],[2,8],[15,76],[1,5],[10,68],[1,48],[-3,82],[17,16],[75,4],[-2,16],[-4,20],[0,1],[-191,-9],[-8,41],[-9,28],[-7,20],[-20,34],[-25,45],[-20,34],[-17,32],[119,39],[-100,99],[-147,63],[-47,18],[-30,-26],[-372,273],[-28,171],[-230,111],[247,422],[19,171],[19,64],[25,108],[73,357],[122,-17],[3,12],[60,143],[54,185],[106,255],[55,153],[7,258],[-39,185],[-87,257],[-70,179],[-28,147],[-2,111],[50,148],[45,181],[2,170],[-4,20],[-117,230],[-95,266],[-71,273],[-30,172],[-20,257],[1,10],[-46,-2],[-14,0],[-5,209],[19,0],[16,1],[42,81],[18,28],[107,144],[14,72],[-2,110],[-76,244],[-91,188],[-2,129],[45,144],[163,94],[6,20],[15,42],[18,44],[20,49],[20,41],[25,43],[29,44],[26,36],[31,38],[34,36],[40,36],[43,32],[39,26],[56,29],[51,22],[45,17],[15,5],[-7,9],[-4,6],[-4,4],[-25,23],[-24,28],[-2,3],[-11,45],[0,26],[0,8],[1,8],[2,29],[-8,45],[-17,96],[-15,80],[-19,106],[-14,79],[-3,16],[-15,91],[-3,14],[-14,95],[0,2],[-8,33],[-14,14],[-13,9],[-14,6],[-15,5],[-20,14],[-4,12],[0,2],[3,13],[15,17],[72,52],[1,1],[45,17],[14,11],[3,8],[3,6],[0,13]]],"objects":{"Mumbai":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2]],"type":"Polygon","properties":{"gid":1,"objectid_1":1,"name":"A","shape_leng":23100.4186067,"shape_area":11209114.7619}},{"arcs":[[3,-3,4,5]],"type":"Polygon","properties":{"gid":2,"objectid_1":2,"name":"B","shape_leng":8322.58946644,"shape_area":2658217.07774}},{"arcs":[[-2,6,7,8,-5]],"type":"Polygon","properties":{"gid":3,"objectid_1":3,"name":"C","shape_leng":6389.30474946,"shape_area":1913026.14329}},{"arcs":[[-8,9,10,11]],"type":"Polygon","properties":{"gid":4,"objectid_1":4,"name":"D","shape_leng":16048.7896239,"shape_area":8223427.20681}},{"arcs":[[12,-6,-9,-12,13,14]],"type":"Polygon","properties":{"gid":5,"objectid_1":5,"name":"E","shape_leng":15964.5218689,"shape_area":7273881.83758}},{"arcs":[[15,-15,16,17,18]],"type":"Polygon","properties":{"gid":6,"objectid_1":6,"name":"F/S","shape_leng":15653.5152704,"shape_area":9787938.7737}},{"arcs":[[19,-17,-14,-11,20]],"type":"Polygon","properties":{"gid":7,"objectid_1":7,"name":"G/S","shape_leng":15086.0567731,"shape_area":9293758.5956}},{"arcs":[[21,22,-19,23,24]],"type":"Polygon","properties":{"gid":8,"objectid_1":8,"name":"F/N","shape_leng":16769.6996928,"shape_area":12283639.7882}},{"arcs":[[-24,-18,-20,25,26,27,28]],"type":"Polygon","properties":{"gid":9,"objectid_1":9,"name":"G/N","shape_leng":14668.9797258,"shape_area":8764140.69623}},{"arcs":[[29,30,31,32,33]],"type":"Polygon","properties":{"gid":10,"objectid_1":11,"name":"N","shape_leng":28452.0394634,"shape_area":25689756.6046}},{"arcs":[[34,35,36,37,38,39]],"type":"Polygon","properties":{"gid":11,"objectid_1":14,"name":"R/C","shape_leng":43385.5793415,"shape_area":48028032.2039}},{"arcs":[[40,-34,41,42,43,44]],"type":"Polygon","properties":{"gid":12,"objectid_1":15,"name":"S","shape_leng":30591.6043859,"shape_area":29752275.9552}},{"arcs":[[-45,45,46,47,-37,48]],"type":"Polygon","properties":{"gid":13,"objectid_1":16,"name":"T","shape_leng":38834.0034876,"shape_area":42875337.9208}},{"arcs":[[[49]],[[50,51,52,53,54,55,56,57,58]]],"type":"MultiPolygon","properties":{"gid":14,"objectid_1":18,"name":"K/W","shape_leng":30737.4433733,"shape_area":24552824.5139}},{"arcs":[[-35,59]],"type":"Polygon","properties":{"gid":15,"objectid_1":20,"name":"R/N","shape_leng":17168.336182,"shape_area":14178813.4585}},{"arcs":[[60,61,-31]],"type":"Polygon","properties":{"gid":16,"objectid_1":22,"name":"M/E","shape_leng":28740.3821489,"shape_area":33082486.4777}},{"arcs":[[-62,62,-22,63,-32]],"type":"Polygon","properties":{"gid":17,"objectid_1":24,"name":"M/W","shape_leng":25020.0376679,"shape_area":17403621.4019}},{"arcs":[[64,65,66,67,-28,68,69]],"type":"Polygon","properties":{"gid":18,"objectid_1":27,"name":"H/E","shape_leng":16389.0621545,"shape_area":12419258.6935}},{"arcs":[[-43,70,-67,71,72,-70,-55,73,-53,74,-51,75]],"type":"Polygon","properties":{"gid":19,"objectid_1":29,"name":"K/E","shape_leng":24873.4726262,"shape_area":23963952.3853}},{"arcs":[[-46,-44,-76,-59,76]],"type":"Polygon","properties":{"gid":20,"objectid_1":116,"name":"P/S","shape_leng":25861.5660403,"shape_area":25191002.8334}},{"arcs":[[77,-47,-77,-58,78,-39]],"type":"Polygon","properties":{"gid":21,"objectid_1":159,"name":"P/N","shape_leng":49364.675964,"shape_area":46716722.7591}},{"arcs":[[-48,-78,-38]],"type":"Polygon","properties":{"gid":22,"objectid_1":183,"name":"R/S","shape_leng":28015.1269618,"shape_area":18313098.6808}},{"arcs":[[-69,-27,79,-56]],"type":"Polygon","properties":{"gid":23,"objectid_1":215,"name":"H/W","shape_leng":16392.9680336,"shape_area":9029150.7318}},{"arcs":[[-33,-64,-25,-29,-68,-71,-42]],"type":"Polygon","properties":{"gid":24,"objectid_1":258,"name":"L","shape_leng":25719.1651689,"shape_area":15681413.1205}}]}}}
id Ward_Alphabet No_HH TOT_P TOT_M TOT_F P_06 M_06 F_06 P_SC M_SC F_SC P_ST M_ST F_ST P_LIT M_LIT F_LIT P_ILL M_ILL F_ILL TOT_WORK_P TOT_WORK_M TOT_WORK_F MAINWORK_P MAINWORK_M MAINWORK_F MAIN_CL_P MAIN_CL_M MAIN_CL_F MAIN_AL_P MAIN_AL_M MAIN_AL_F MAIN_HH_P MAIN_HH_M MAIN_HH_F MAIN_OT_P MAIN_OT_M MAIN_OT_F MARGWORK_P MARGWORK_M MARGWORK_F MARG_CL_P MARG_CL_M MARG_CL_F MARG_AL_P MARG_AL_M MARG_AL_F MARG_HH_P MARG_HH_M MARG_HH_F MARG_OT_P MARG_OT_M MARG_OT_F MARGWORK_3_6_P MARGWORK_3_6_M MARGWORK_3_6_F MARG_CL_3_6_P MARG_CL_3_6_M MARG_CL_3_6_F MARG_AL_3_6_P MARG_AL_3_6_M MARG_AL_3_6_F MARG_HH_3_6_P MARG_HH_3_6_M MARG_HH_3_6_F MARG_OT_3_6_P MARG_OT_3_6_M MARG_OT_3_6_F MARGWORK_0_3_P MARGWORK_0_3_M MARGWORK_0_3_F MARG_CL_0_3_P MARG_CL_0_3_M MARG_CL_0_3_F MARG_AL_0_3_P MARG_AL_0_3_M MARG_AL_0_3_F MARG_HH_0_3_P MARG_HH_0_3_M MARG_HH_0_3_F MARG_OT_0_3_P MARG_OT_0_3_M MARG_OT_0_3_F NON_WORK_P NON_WORK_M NON_WORK_F Ward_Names Land_Area TOT_P_DEN
0 A 43866 185014 101227 83787 18283 9609 8674 13634 6837 6797 3193 1675 1518 146235 83091 63144 38779 18136 20643 83760 63456 20304 78408 60212 18196 307 225 82 195 147 48 965 633 332 76941 59207 17734 5352 3244 2108 87 42 45 23 16 7 156 65 91 5086 3121 1965 4798 2894 1904 85 41 44 22 16 6 133 56 77 4558 2781 1777 554 350 204 2 1 1 1 0 1 23 9 14 528 340 188 101254 37771 63483 Colaba 12.5 14801.12
1 B 27140 127290 70445 56845 12271 6434 5837 5338 2648 2690 1089 660 429 101448 57077 44371 25842 13368 12474 50218 42982 7236 47597 41316 6281 77 53 24 88 62 26 1488 1080 408 45944 40121 5823 2621 1666 955 29 20 9 23 15 8 160 63 97 2409 1568 841 2083 1290 793 26 18 8 18 11 7 117 46 71 1922 1215 707 538 376 162 3 2 1 5 4 1 43 17 26 487 353 134 77072 27463 49609 Sandhurst Road 2.5 50916.0
2 C 36479 166161 98027 68134 11454 5993 5461 2308 1147 1161 378 207 171 140863 83782 57081 25298 14245 11053 79238 67166 12072 76027 65082 10945 182 134 48 166 133 33 3410 2798 612 72269 62017 10252 3211 2084 1127 117 62 55 15 5 10 191 92 99 2888 1925 963 2809 1815 994 114 61 53 13 3 10 154 78 76 2528 1673 855 402 269 133 3 1 2 2 2 0 37 14 23 360 252 108 86923 30861 56062 Marine Lines 1.8 92311.67
3 D 77556 346866 182988 163878 23423 12264 11159 16844 8217 8627 1629 877 752 294478 157395 137083 52388 25593 26795 153093 114418 38675 142913 108771 34142 539 329 210 559 397 162 4847 3531 1316 136968 104514 32454 10180 5647 4533 306 154 152 90 55 35 495 251 244 9289 5187 4102 9090 4976 4114 299 150 149 88 54 34 372 179 193 8331 4593 3738 1090 671 419 7 4 3 2 1 1 123 72 51 958 594 364 193773 68570 125203 Grant Road 6.6 52555.45
4 E 78346 393286 216067 177219 37199 19370 17829 22214 11302 10912 2607 1393 1214 312208 174941 137267 81078 41126 39952 159659 130886 28773 148452 124117 24335 421 274 147 589 466 123 5746 4710 1036 141696 118667 23029 11207 6769 4438 234 129 105 102 52 50 751 446 305 10120 6142 3978 9328 5563 3765 227 125 102 82 40 42 594 350 244 8425 5048 3377 1879 1206 673 7 4 3 20 12 8 157 96 61 1695 1094 601 233627 85181 148446 Byculla 7.4 53146.76
5 F/N 119624 529034 285184 243850 52586 27421 25165 37217 19086 18131 5833 3186 2647 420492 236068 184424 108542 49116 59426 207964 165991 41973 194579 157837 36742 633 428 205 1094 891 203 5726 4060 1666 187126 152458 34668 13385 8154 5231 445 214 231 136 88 48 906 321 585 11898 7531 4367 11143 6679 4464 438 211 227 116 72 44 652 241 411 9937 6155 3782 2242 1475 767 7 3 4 20 16 4 254 80 174 1961 1376 585 321070 119193 201877 Matunga 13.0 40694.92
6 F/S 79733 360972 190739 170233 30517 16178 14339 26181 13157 13024 2530 1324 1206 303043 164725 138318 57929 26014 31915 141211 109107 32104 133431 104307 29124 370 227 143 777 648 129 3856 2488 1368 128428 100944 27484 7780 4800 2980 329 172 157 80 58 22 513 227 286 6858 4343 2515 6504 4002 2502 320 168 152 74 53 21 408 186 222 5702 3595 2107 1276 798 478 9 4 5 6 5 1 105 41 64 1156 748 408 219761 81632 138129 Parel 14.0 25783.71
7 G/N 83457 377749 208762 168987 30133 15869 14264 37699 19308 18391 4055 2101 1954 312304 179301 133003 65445 29461 35984 159221 125621 33600 152156 121457 30699 753 615 138 650 508 142 4637 3309 1328 146116 117025 29091 7065 4164 2901 224 110 114 71 39 32 545 229 316 6225 3786 2439 5600 3206 2394 220 106 114 60 33 27 401 166 235 4919 2901 2018 1465 958 507 4 4 0 11 6 5 144 63 81 1306 885 421 218528 83141 135387 Dadar/Plaza 9.1 41510.88
8 G/S 128138 599039 331169 267870 57020 29428 27592 58499 29862 28637 3779 2065 1714 477951 274300 203651 121088 56869 64219 250032 201382 48650 235771 192409 43362 625 415 210 968 775 193 10164 7776 2388 224014 183443 40571 14261 8973 5288 373 192 181 119 71 48 982 457 525 12787 8253 4534 12309 7698 4611 370 191 179 100 61 39 664 285 379 11175 7161 4014 1952 1275 677 3 1 2 19 10 9 318 172 146 1612 1092 520 349007 129787 219220 Elphinstone 10.0 59903.9
9 H/E 72943 307581 161697 145884 24008 12438 11570 9711 4846 4865 2864 1500 1364 259776 139592 120184 47805 22105 25700 132501 98665 33836 125379 94328 31051 253 160 93 420 293 127 3191 2291 900 121515 91584 29931 7122 4337 2785 165 86 79 71 36 35 272 119 153 6614 4096 2518 6161 3722 2439 159 84 75 63 32 31 208 87 121 5731 3519 2212 961 615 346 6 2 4 8 4 4 64 32 32 883 577 306 175080 63032 112048 Khar/Santacruz 13.5 22783.78
10 H/W 120266 557239 305866 251373 54981 28671 26310 34495 17779 16716 4180 2447 1733 449176 255882 193294 108063 49984 58079 230883 182210 48673 213248 171670 41578 929 599 330 1372 1078 294 6153 4422 1731 204794 165571 39223 17635 10540 7095 518 279 239 560 448 112 813 345 468 15744 9468 6276 15158 8883 6275 478 257 221 506 411 95 608 266 342 13566 7949 5617 2477 1657 820 40 22 18 54 37 17 205 79 126 2178 1519 659 326356 123656 202700 Bandra 11.6 48037.84
11 K/E 190845 823885 440655 383230 74083 38632 35451 33764 17287 16477 7617 3957 3660 687037 380529 306508 136848 60126 76722 339860 263931 75929 321741 252630 69111 867 566 301 1463 1081 382 7290 4981 2309 312121 246002 66119 18119 11301 6818 409 198 211 229 132 97 946 358 588 16535 10613 5922 15115 9317 5798 400 194 206 193 112 81 611 271 340 13911 8740 5171 3004 1984 1020 9 4 5 36 20 16 335 87 248 2624 1873 751 484025 176724 307301 Andheri (East) 24.8 33221.17
12 K/W 168076 748688 401462 347226 67498 35237 32261 20633 10580 10053 6780 3531 3249 612139 336971 275168 136549 64491 72058 313562 239667 73895 295092 229114 65978 1567 882 685 1411 1058 353 7337 5060 2277 284777 222114 62663 18470 10553 7917 577 312 265 186 95 91 1173 548 625 16534 9598 6936 15509 8654 6855 563 302 261 171 83 88 959 431 528 13816 7838 5978 2961 1899 1062 14 10 4 15 12 3 214 117 97 2718 1760 958 435126 161795 273331 Andheri (West) 23.4 31995.21
13 L 186833 902225 500613 401612 103641 54117 49524 58884 30325 28559 5676 3070 2606 709306 411859 297447 192919 88754 104165 343869 291260 52609 326566 279501 47065 609 421 188 1564 1240 324 7260 5187 2073 317133 272653 44480 17303 11759 5544 378 219 159 150 89 61 732 303 429 16043 11148 4895 14168 9442 4726 372 213 159 129 74 55 544 235 309 13123 8920 4203 3135 2317 818 6 6 0 21 15 6 188 68 120 2920 2228 692 558356 209353 349003 Kurla 15.9 56743.71
14 M/E 166400 807720 436557 371163 105741 55071 50670 78104 40340 37764 9874 5220 4654 585336 334953 250383 222384 101604 120780 285029 238744 46285 263033 224040 38993 759 529 230 1306 1063 243 8145 6141 2004 252823 216307 36516 21996 14704 7292 562 313 249 266 186 80 1480 760 720 19688 13445 6243 18001 11866 6135 532 292 240 221 151 70 1096 589 507 16152 10834 5318 3995 2838 1157 30 21 9 45 35 10 384 171 213 3536 2611 925 522691 197813 324878 Chembur 32.5 24852.92
15 M/W 93607 411893 217631 194262 41321 21640 19681 73874 37971 35903 3975 2121 1854 329472 182092 147380 82421 35539 46882 168040 126724 41316 154859 119287 35572 521 344 177 1060 825 235 14395 10242 4153 138883 107876 31007 13181 7437 5744 284 137 147 151 96 55 1670 724 946 11076 6480 4596 11058 6162 4896 275 131 144 133 81 52 1022 400 622 9628 5550 4078 2123 1275 848 9 6 3 18 15 3 648 324 324 1448 930 518 243853 90907 152946 Chembur (West) 19.5 21122.72
16 N 137885 622853 332627 290226 61073 31939 29134 50998 26266 24732 6814 3676 3138 509013 281795 227218 113840 50832 63008 241779 195481 46298 231158 188818 42340 391 259 132 918 720 198 5626 3670 1956 224223 184169 40054 10621 6663 3958 277 142 135 83 53 30 635 178 457 9626 6290 3336 8615 5427 3188 267 135 132 75 46 29 408 125 283 7865 5121 2744 2006 1236 770 10 7 3 8 7 1 227 53 174 1761 1169 592 381074 137146 243928 Ghatkopar 26.0 23955.88
17 P/N 211642 941366 507517 433849 100079 52413 47666 38590 20128 18462 10467 5444 5023 750036 421647 328389 191330 85870 105460 371650 297622 74028 348928 284213 64715 1048 698 350 2239 1800 439 12714 8962 3752 332927 272753 60174 22722 13409 9313 608 306 302 379 230 149 1865 699 1166 19870 12174 7696 19483 11464 8019 591 299 292 328 193 135 1431 560 871 17133 10412 6721 3239 1945 1294 17 7 10 51 37 14 434 139 295 2737 1762 975 569716 209895 359821 Malad 19.1 49286.18
18 P/S 106922 463507 249502 214005 44172 22953 21219 27651 14269 13382 7554 3880 3674 378848 211917 166931 84659 37585 47074 192818 148823 43995 180374 141358 39016 662 444 218 652 481 171 4897 3363 1534 174163 137070 37093 12444 7465 4979 341 169 172 118 64 54 591 244 347 11394 6988 4406 10510 6266 4244 332 161 171 104 56 48 429 167 262 9645 5882 3763 1934 1199 735 9 8 1 14 8 6 162 77 85 1749 1106 643 270689 100679 170010 Goregaon 24.4 18996.19
19 R/C 134795 562162 289153 273009 44881 23560 21321 27325 13913 13412 8245 4199 4046 480279 250592 229687 81883 38561 43322 226167 165831 60336 214241 159702 54539 722 451 271 1209 884 325 5597 3689 1908 206713 154678 52035 11926 6129 5797 442 206 236 198 98 100 623 226 397 10663 5599 5064 10432 5357 5075 434 199 235 184 90 94 512 183 329 9302 4885 4417 1494 772 722 8 7 1 14 8 6 111 43 68 1361 714 647 335995 123322 212673 Borivali 50.0 11243.24
20 R/N 104091 431368 233710 197658 40719 21508 19211 14060 7367 6693 5597 2906 2691 356166 200011 156155 75202 33699 41503 177401 138856 38545 170045 134703 35342 378 274 104 726 569 157 4082 2756 1326 164859 131104 33755 7356 4153 3203 177 85 92 121 58 63 585 173 412 6473 3837 2636 6126 3369 2757 176 85 91 116 55 61 455 133 322 5379 3096 2283 1230 784 446 1 0 1 5 3 2 130 40 90 1094 741 353 253967 94854 159113 Dahisar 18.0 23964.89
21 R/S 159639 691229 379319 311910 65716 34577 31139 31166 16424 14742 8424 4553 3871 565695 320657 245038 125534 58662 66872 281884 226288 55596 267183 217366 49817 581 364 217 1228 901 327 8869 6270 2599 256505 209831 46674 14701 8922 5779 358 175 183 243 139 104 1218 417 801 12882 8191 4691 11850 7178 4672 340 171 169 227 131 96 930 334 596 10353 6542 3811 2851 1744 1107 18 4 14 16 8 8 288 83 205 2529 1649 880 409345 153031 256314 Kandivali 17.8 38833.09
22 S 169962 743783 398858 344925 75168 39367 35801 60833 31110 29723 9609 5080 4529 611024 340453 270571 132759 58405 74354 292474 228944 63530 273338 216955 56383 768 527 241 1442 1094 348 6709 4434 2275 264419 210900 53519 19136 11989 7147 415 217 198 189 108 81 1134 379 755 17398 11285 6113 15621 9653 5968 391 201 190 171 97 74 730 236 494 14329 9119 5210 3515 2336 1179 24 16 8 18 11 7 404 143 261 3069 2166 903 451309 169914 281395 Bhandup 64.0 11621.61
23 T 81698 341463 176156 165307 27803 14573 13230 23214 11686 11528 6884 3449 3435 292182 154079 138103 49281 22077 27204 137104 101276 35828 130737 97796 32941 341 212 129 611 424 187 2531 1280 1251 127254 95880 31374 6367 3480 2887 179 80 99 157 46 111 283 79 204 5748 3275 2473 5476 2917 2559 174 76 98 154 44 110 216 60 156 4932 2737 2195 891 563 328 5 4 1 3 2 1 67 19 48 816 538 278 204359 74880 129479 Mulund 45.4 7521.21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment