Can't figure out how to properly scale vector to fit raster.
Last active
January 4, 2016 01:08
-
-
Save mkessy/8545864 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<script src="http://d3js.org/topojson.v1.min.js"></script> | |
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
<style> | |
html { | |
min-width: 1040px; | |
} | |
.body { | |
background-color: #fcfcfc; | |
font-family: "Lora", sans-serif; | |
margin: 1em auto 4em auto; | |
position: relative; | |
width: 960px; | |
} | |
.chart { | |
border: 1px solid gray; | |
} | |
path { | |
fill: none; | |
stroke: black; | |
stroke-width: 1px; | |
} | |
</style> | |
<body> | |
<div class="chart"></div> | |
<script> | |
var width = 960, | |
height = 500; | |
var projection = d3.geo.albers() | |
.center([0, 47.3]) | |
.parallels([45.8, 49.0]) | |
.rotate([100.48, 0]) | |
.scale(9500) // how to calculate this to fit raster? | |
.translate([width/2, height/2]); | |
var path = d3.geo.path() | |
.projection(projection); | |
var svg = d3.select(".chart").append("svg") | |
.attr({width: width, height: height}); | |
d3.json("nd.json", function(error, nd) { | |
var northDakota = topojson.feature(nd, nd.objects.states); | |
svg.append("clipPath") | |
.attr("id", "clip") | |
.append("use") | |
.attr("xlink:href", "#nd"); | |
svg.append("image") | |
// .attr("clip-path", "url(#clip)") | |
.attr("xlink:href", "nd.jpg") | |
.attr("width", width) | |
.attr("height", height); | |
svg.append("path").datum(northDakota) | |
.attr("id", "nd") | |
.attr("d", path); | |
}); | |
</script> | |
</body> | |
</html> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: nd.jpg nd.json | |
nd.jpg: nd.tiff | |
convert nd.tiff nd.jpg | |
nd.json: nd.shp | |
topojson \ | |
-p \ | |
-o nd.json \ | |
-- nd.shp | |
touch nd.json | |
nd.tiff: NE2_HR_LC_SR_W_DR.tif nd.shp | |
gdalwarp \ | |
-r bilinear \ | |
-s_srs EPSG:4326 \ | |
-t_srs '+proj=aea +lat_1=45.8 +lat_2=49.0 +lat_0=47.43 +lon_0=-100.48 +x_0=0 +y_0=0' \ | |
-te -276347.294932 180591.286872 303742.906211 -165373.349713 \ | |
-ts 960 500 \ | |
NE2_HR_LC_SR_W_DR.tif \ | |
nd.tiff | |
touch nd.tiff | |
nd.shp: states.shp | |
ogr2ogr -s_srs states.prj \ | |
-t_srs '+proj=aea +lat_1=45.8 +lat_2=49.0 +lat_0=47.43 +lon_0=-100.48 +x_0=0 +y_0=0' \ | |
nd.shp states.shp | |
touch nd.shp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"type":"Topology","objects":{"states":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"AREA":21.84,"PERIMETER":24.663,"STATESP010":38,"STATE":"North Dakota","STATE_FIPS":"38","ORDER_ADM":39,"MONTH_ADM":"November","DAY_ADM":2,"YEAR_ADM":1889},"arcs":[[0]]}]}},"arcs":[[[8881,9999],[29,0],[30,0],[29,0],[29,0],[30,0],[29,0],[29,0],[3,0],[1,0],[2,0],[1,0],[6,0],[1,0],[-4,-5],[-2,-4],[0,-6],[1,-2],[3,-2],[2,1],[2,-1],[1,-2],[1,-3],[-3,-5],[-6,-6],[-3,-5],[-2,-6],[-1,-5],[-1,-6],[0,-7],[0,-6],[0,-18],[0,-4],[-1,-8],[0,-10],[2,-5],[6,-3],[2,0],[3,-2],[2,-3],[0,-3],[0,-3],[-3,-6],[-1,-5],[-5,-29],[0,-4],[2,-2],[1,-2],[6,1],[2,-3],[0,-7],[-1,-5],[0,-8],[1,-12],[2,-6],[1,-3],[3,-2],[8,1],[2,-4],[-1,-4],[-3,-10],[-3,-10],[0,-8],[1,-5],[2,-3],[5,-3],[3,-5],[1,-3],[0,-3],[0,-5],[-3,-11],[0,-8],[1,-5],[2,-5],[3,-6],[4,-3],[8,-4],[5,-5],[2,-2],[3,-4],[2,-5],[1,-6],[-1,-4],[-2,-3],[-2,-1],[-3,0],[-3,3],[-2,1],[-2,0],[-1,-2],[0,-2],[4,-8],[1,-3],[0,-5],[-3,-10],[0,-6],[2,-4],[2,-4],[6,-5],[4,-3],[5,0],[4,1],[4,0],[1,0],[2,-4],[-1,-5],[-1,-2],[-4,-8],[-4,-6],[-4,-5],[-2,-3],[-1,-6],[0,-3],[1,-3],[3,0],[2,2],[3,1],[4,-1],[2,-4],[0,-7],[0,-5],[0,-5],[0,-1],[1,-3],[0,-2],[6,-9],[1,-1],[0,-3],[0,-4],[-1,-3],[-3,-3],[-4,-1],[-3,0],[-2,-2],[0,-3],[1,-2],[6,-1],[3,-4],[1,-5],[1,-11],[0,-7],[-4,-6],[-3,-2],[-3,0],[-2,-1],[-2,-3],[-1,-3],[1,-7],[2,-5],[5,-9],[2,-5],[0,-3],[-1,-6],[-2,-6],[-2,-5],[-5,-3],[-4,-2],[-3,-4],[0,-3],[1,-2],[3,-1],[4,3],[4,0],[3,-2],[6,-8],[3,-1],[4,-1],[2,1],[7,1],[2,-1],[3,-2],[1,-3],[0,-1],[0,-6],[0,-2],[-1,-2],[-2,-3],[-9,-3],[-12,-10],[-4,-2],[-2,-2],[-1,-3],[0,-6],[2,-2],[1,0],[3,0],[6,10],[4,3],[4,1],[2,-1],[1,-1],[2,-3],[1,-2],[0,-7],[-2,-3],[-1,-1],[-3,0],[-2,1],[-1,1],[-3,0],[-2,-1],[-2,-4],[0,-6],[3,-4],[2,-1],[6,0],[3,0],[2,-1],[7,-4],[-1,-9],[-2,-9],[5,-8],[7,1],[3,-4],[0,-2],[-2,-5],[-2,-2],[-10,-5],[-1,-2],[-1,-5],[1,-1],[2,-4],[6,-2],[1,-2],[3,-10],[2,-4],[2,-3],[1,-4],[1,-3],[-1,-5],[-1,-3],[-1,-3],[-7,-5],[-1,-3],[-2,-4],[0,-7],[2,-8],[1,-3],[3,-5],[2,-1],[5,0],[3,2],[3,0],[3,-2],[1,-3],[2,-5],[0,-9],[0,-5],[-2,-8],[-2,-5],[-3,-5],[-1,-2],[0,-3],[1,-3],[2,-3],[1,-1],[11,1],[1,-2],[2,-4],[0,-6],[-2,-4],[-3,-2],[-1,0],[-4,-2],[-2,-3],[0,-2],[1,-2],[2,-4],[10,-10],[2,-3],[1,-2],[4,-14],[5,-16],[2,-2],[1,-1],[4,-2],[3,-2],[1,-1],[1,-2],[0,-1],[0,-2],[-1,-3],[-1,-2],[-1,-1],[-2,0],[-2,-1],[-3,-1],[-2,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[0,-1],[1,-4],[1,-2],[4,-6],[1,-2],[2,-5],[3,-8],[1,-6],[1,-1],[1,-2],[2,-2],[3,-3],[1,-1],[7,-4],[6,-3],[1,-1],[3,-2],[2,-3],[0,-1],[0,-1],[1,-2],[-1,-2],[0,-2],[-1,-1],[-1,0],[-1,-1],[-2,0],[-4,3],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-2],[-1,-1],[0,-2],[0,-3],[0,-2],[1,-5],[0,-5],[1,-23],[0,-3],[0,-2],[-1,-1],[-1,-2],[-1,-2],[-3,-2],[-2,-1],[-2,-2],[-1,-1],[-1,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,-1],[1,-1],[2,1],[3,1],[2,0],[1,0],[1,-1],[1,-1],[0,-2],[1,-1],[0,-1],[0,-3],[0,-2],[-1,-2],[-1,-2],[-1,-4],[-1,-2],[-2,-2],[-2,-3],[0,-2],[-2,-4],[0,-2],[-1,-2],[0,-2],[0,-2],[0,-3],[0,-3],[-1,-1],[0,-1],[-1,-3],[-1,-2],[-1,-1],[-5,-2],[-1,-1],[-1,-1],[0,-2],[0,-2],[0,-3],[4,-6],[2,-3],[0,-1],[1,-3],[0,-2],[1,-4],[1,-3],[0,-5],[0,-3],[0,-2],[-1,-2],[0,-1],[-1,-3],[-1,-2],[-2,-1],[-3,-1],[-1,0],[-2,1],[-3,3],[-2,4],[-2,3],[-2,1],[-2,1],[-7,-6],[-1,-1],[0,-3],[0,-3],[0,-3],[1,-2],[3,-4],[5,-6],[7,-12],[1,-4],[0,-7],[-2,-3],[-1,0],[-4,0],[-1,3],[-4,8],[-2,4],[-3,2],[-3,0],[-1,-1],[-1,-2],[0,-4],[7,-12],[1,-4],[0,-4],[-2,-4],[-3,-1],[-1,1],[-5,4],[-2,0],[0,1],[-2,0],[-4,0],[-4,-1],[-2,-2],[-1,-2],[-2,-3],[-1,-2],[0,-5],[1,-2],[1,-2],[0,-1],[1,-2],[3,-1],[4,0],[6,3],[4,0],[1,-1],[1,-2],[0,-4],[-1,-1],[-5,-8],[-2,-5],[-2,-8],[-3,-6],[-1,-1],[-9,1],[-1,-2],[-2,-6],[0,-4],[2,-2],[4,0],[3,1],[4,-1],[2,-3],[1,-3],[0,-15],[-1,-11],[-1,-4],[-2,-4],[-2,-1],[-4,0],[-6,5],[-4,0],[-3,-2],[-2,-3],[0,-1],[0,-4],[2,-4],[3,-1],[8,-1],[4,-8],[-1,-8],[0,-9],[-5,-9],[-2,-2],[-10,-2],[-9,-1],[-3,-1],[-2,-2],[-4,-4],[0,-12],[7,-6],[5,-3],[10,0],[3,0],[11,1],[7,-2],[2,-1],[3,-5],[1,-3],[0,-4],[-2,-3],[-2,-2],[-19,-1],[-2,1],[-2,2],[-3,4],[-2,3],[-2,0],[-1,-1],[-2,-3],[-1,-2],[0,-12],[3,-12],[2,-6],[3,-5],[4,-4],[10,-3],[6,-5],[4,-6],[2,-4],[-1,-6],[-2,-4],[-1,-1],[-6,0],[-3,-1],[-2,-2],[-2,-3],[-1,-4],[-1,-6],[0,-9],[2,-7],[2,-5],[3,-3],[3,-2],[4,1],[3,2],[7,8],[4,2],[3,1],[2,-1],[3,-2],[1,-2],[1,-2],[0,-5],[-2,-4],[-2,-5],[-7,-12],[-3,-3],[-4,-1],[-3,0],[-4,1],[-3,1],[-3,0],[-1,-1],[2,-12],[-1,-9],[0,-11],[1,-5],[1,-2],[1,-2],[4,-6],[5,-3],[4,-3],[3,-3],[4,-6],[1,-2],[1,-4],[0,-4],[-1,-3],[-1,-2],[-2,-1],[-2,0],[-2,2],[-2,9],[-3,4],[-2,0],[-1,-2],[0,-2],[4,-9],[1,-5],[0,-4],[-1,-3],[-1,-2],[-3,-3],[-4,-2],[-4,0],[-6,-2],[-4,-2],[-4,-2],[-3,-5],[-1,-2],[0,-4],[1,-3],[2,-3],[4,-2],[1,0],[5,0],[4,1],[6,3],[3,3],[5,1],[6,0],[6,-2],[2,-4],[1,-5],[0,-5],[-2,-4],[-3,-1],[-2,1],[-8,9],[-2,2],[-4,0],[-2,-2],[-2,-3],[-2,-7],[0,-6],[2,-8],[3,-6],[3,-5],[2,-1],[4,0],[1,0],[3,2],[3,0],[2,-1],[2,-4],[1,-4],[0,-12],[-1,-11],[-1,-5],[-7,-13],[-2,-2],[-4,-4],[-3,-2],[-8,-6],[-2,-6],[-1,-2],[0,-5],[1,-2],[1,-3],[2,-2],[5,0],[3,1],[2,1],[7,15],[3,3],[6,-1],[3,-5],[2,-5],[1,-7],[0,-6],[0,-5],[-1,-5],[-1,-2],[-3,-6],[-2,-1],[-2,0],[-3,1],[-8,8],[-6,0],[-2,-2],[-1,-2],[-1,-2],[1,-5],[1,-5],[4,-5],[3,-2],[9,-3],[7,-7],[3,-5],[3,-4],[1,-4],[-3,-10],[-3,0],[-8,13],[-3,3],[-4,1],[-4,0],[-8,-4],[-5,-3],[-4,-5],[-1,-2],[-1,-11],[10,-2],[3,7],[0,3],[1,3],[2,2],[2,2],[2,0],[2,-9],[1,-8],[2,-9],[3,3],[4,-9],[0,-5],[0,-2],[-3,-5],[-6,-5],[-2,-3],[-2,-4],[-3,-8],[-3,-5],[-3,-2],[-5,0],[-3,0],[-7,-2],[-3,-3],[-2,-3],[-1,-4],[0,-4],[2,-2],[5,0],[2,-3],[0,-3],[-1,-6],[0,-5],[3,-6],[5,-6],[4,-3],[1,-1],[3,1],[8,7],[3,1],[1,0],[2,-2],[2,-2],[0,-4],[-1,-3],[-2,-1],[-6,-1],[-1,-2],[-1,-2],[1,-5],[1,-5],[4,-7],[0,-2],[0,-3],[-1,-2],[-1,-2],[-2,-2],[-6,0],[-1,1],[-5,2],[-4,0],[-1,-1],[-3,-3],[-1,-8],[0,-8],[0,-3],[3,-5],[6,-5],[2,-3],[2,-6],[2,-4],[0,-7],[2,-3],[1,-1],[5,-1],[2,-2],[1,-2],[1,-6],[-3,-6],[-3,-4],[-1,-2],[1,-5],[1,-3],[2,-1],[7,0],[3,-1],[2,-1],[3,-5],[1,-1],[0,-3],[0,-5],[-3,-17],[-2,-4],[-3,-3],[-7,-1],[-2,-2],[-2,-2],[-2,-3],[-1,-4],[0,-6],[1,-1],[2,-2],[3,1],[3,6],[2,1],[3,2],[3,0],[11,-3],[4,-3],[2,-4],[1,-2],[0,-1],[0,-6],[-1,-3],[-2,-1],[-10,-6],[-7,1],[-2,-2],[-2,-4],[-5,-17],[0,-3],[0,-4],[0,-2],[2,-3],[1,0],[2,0],[2,2],[3,4],[2,2],[2,2],[3,-1],[2,-2],[2,-4],[0,-3],[-6,-10],[0,-6],[1,-2],[2,-4],[3,-1],[4,-4],[6,-6],[2,-3],[1,-4],[0,-4],[0,-2],[-3,-3],[-5,1],[-2,1],[-2,4],[-3,7],[-2,3],[-4,0],[-3,-4],[-10,-20],[0,-2],[-1,-4],[0,-3],[1,-2],[2,-3],[2,0],[2,1],[3,5],[0,2],[4,6],[1,1],[3,0],[1,-1],[3,-4],[3,-9],[2,-9],[2,-8],[0,-9],[0,-3],[-3,-5],[-1,-1],[-6,1],[-2,-2],[0,-3],[3,-9],[0,-4],[-2,-3],[-2,-2],[-4,-1],[-1,1],[-8,3],[-5,1],[-4,-2],[-2,-4],[-1,-2],[0,-4],[1,-5],[1,-1],[2,-1],[4,0],[4,1],[3,0],[9,-3],[3,-2],[2,-3],[1,-4],[0,-2],[-2,-4],[-6,0],[-1,-1],[-1,-2],[0,-5],[0,-1],[4,-7],[3,-7],[1,-3],[0,-5],[-2,-3],[-1,-1],[-3,0],[-3,2],[-4,0],[-1,-1],[-11,-10],[-2,-2],[-2,-3],[-1,-4],[0,-5],[2,-3],[1,-1],[3,0],[1,1],[5,0],[1,-1],[2,-1],[2,-4],[0,-1],[0,-4],[-2,-4],[-8,-1],[-2,-1],[-1,-3],[-1,-3],[0,-5],[1,-3],[2,-3],[3,-3],[5,-1],[5,0],[4,-1],[6,-3],[3,-2],[2,-4],[1,-4],[0,-3],[-2,-4],[-3,-1],[-2,2],[-6,8],[-3,2],[-2,1],[-5,0],[-5,-4],[-5,-4],[-5,-4],[-4,-7],[0,-5],[2,-5],[1,0],[2,0],[6,11],[4,2],[3,-1],[15,-11],[5,-5],[4,-7],[2,-3],[1,-5],[1,-6],[0,-4],[-1,-3],[-2,-3],[-4,0],[-1,1],[-3,4],[0,4],[-3,15],[-4,7],[-1,2],[-2,1],[-4,0],[-2,-2],[-1,-1],[-1,-3],[0,-6],[2,-4],[3,-5],[6,-1],[1,-1],[2,-3],[0,-5],[-2,-3],[-1,-1],[-3,-1],[-7,-2],[-1,-1],[-2,-4],[0,-2],[0,-5],[1,-2],[4,-19],[-4,3],[-1,-9],[-1,-3],[0,-5],[-2,-8],[-2,1],[-5,-8],[-1,-3],[-1,-4],[0,-5],[0,-1],[3,-4],[2,0],[5,3],[3,0],[2,-2],[2,-3],[1,-4],[0,-12],[0,-2],[-3,-4],[-5,0],[-5,-3],[-2,-5],[0,-4],[1,-4],[4,-25],[2,-6],[2,-1],[2,-1],[3,0],[4,2],[1,3],[6,4],[3,2],[4,-1],[3,-5],[1,-4],[-1,-4],[-3,-6],[-4,-4],[-9,-9],[-6,-3],[-3,-3],[-1,-2],[-6,-15],[-1,-5],[-1,-3],[1,-5],[2,-2],[3,0],[1,1],[3,4],[2,1],[3,0],[12,-5],[4,-3],[1,-4],[1,-4],[-1,-3],[-2,-3],[-1,-1],[-3,1],[-6,4],[-1,0],[-1,-1],[1,-4],[4,-7],[1,-3],[0,-15],[2,-10],[3,-13],[5,-14],[1,-6],[0,-8],[-2,-6],[-2,-6],[0,-6],[0,-1],[2,-3],[3,-2],[3,1],[1,0],[3,2],[3,0],[2,-2],[2,-3],[1,-3],[0,-10],[0,-3],[2,-2],[5,-5],[1,-3],[1,-2],[0,-3],[-1,-3],[-1,-1],[-2,-2],[-2,0],[-2,0],[-1,-2],[-1,-2],[0,-3],[1,-2],[4,-1],[3,-2],[1,-1],[3,-5],[1,-6],[0,-6],[0,-7],[0,-6],[-1,-9],[-6,-11],[0,-5],[2,-2],[1,-1],[6,-1],[1,-2],[1,-2],[0,-1],[2,-9],[5,-10],[3,-12],[3,-6],[5,-8],[3,-3],[6,-6],[3,-5],[2,-6],[2,-12],[1,-5],[0,-5],[0,-18],[1,-13],[1,-12],[0,-9],[0,-4],[-3,-10],[-1,-6],[0,-7],[1,-4],[3,-5],[2,-1],[4,-1],[2,-3],[0,-4],[-5,-11],[0,-4],[1,-5],[2,-24],[0,-4],[1,-5],[4,-6],[7,-6],[2,-4],[1,-3],[0,-7],[-1,-9],[-4,-24],[-2,-6],[-1,-6],[0,-5],[3,-8],[0,-4],[-1,-5],[-4,-7],[-1,-3],[0,-4],[0,-3],[2,-2],[2,-3],[1,0],[3,-4],[1,-2],[1,-2],[2,-6],[0,-10],[-1,-5],[-2,-5],[-1,-5],[0,-2],[0,-6],[2,-6],[4,-8],[4,-4],[7,-3],[6,-2],[3,-4],[1,-10],[-2,-1],[0,-9],[0,-8],[1,0],[9,-11],[1,-1],[4,-7],[4,-5],[2,-2],[0,-2],[4,-4],[0,-5],[-6,-8],[-1,-1],[0,-3],[1,-2],[5,-3],[2,-3],[2,-4],[1,-7],[0,-8],[-2,-4],[-3,-1],[-1,1],[-5,8],[-1,0],[-1,-1],[0,-5],[2,-7],[5,-8],[0,-5],[-2,-5],[-3,-2],[-2,-3],[0,-2],[0,-6],[2,-4],[2,-1],[3,-5],[1,-3],[0,-3],[-2,-3],[-4,-4],[-3,-5],[0,-7],[1,-2],[0,-2],[3,-5],[4,-4],[1,-2],[1,-2],[0,-6],[-2,-3],[-2,-2],[-3,-3],[0,-4],[3,-4],[4,-3],[2,0],[6,-1],[6,-1],[5,-3],[3,-5],[0,-5],[-2,-3],[-3,-2],[-1,-1],[0,-3],[4,-5],[4,-5],[0,-1],[1,-3],[1,-3],[1,-2],[0,-3],[1,-6],[0,-4],[0,-6],[0,-3],[0,-4],[-1,-2],[0,-3],[1,-1],[0,-2],[2,-1],[1,-2],[1,-2],[0,-2],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-2,-3],[0,-1],[-1,-3],[0,-2],[6,-11],[1,-1],[1,-1],[1,0],[1,1],[2,0],[2,0],[1,0],[1,-1],[0,-1],[1,-5],[1,-2],[4,-16],[0,-1],[1,-2],[-1,-2],[-1,-2],[-2,-2],[-2,-2],[-1,-2],[-1,-1],[0,-2],[1,-1],[1,0],[2,0],[3,1],[3,1],[2,-1],[2,0],[1,-2],[1,-1],[1,-2],[0,-2],[0,-2],[0,-1],[-1,-1],[-2,0],[-1,0],[-2,2],[-1,0],[-1,-1],[0,-1],[0,-21],[1,-3],[0,-2],[0,-1],[1,-2],[1,-2],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-2],[-1,-1],[-1,-1],[-2,0],[-6,2],[-2,0],[-2,0],[-1,0],[-1,-1],[-1,-2],[0,-2],[1,-2],[2,-2],[2,0],[2,0],[1,-1],[1,-1],[2,-4],[6,-4],[4,-8],[-1,-1],[0,-4],[0,-5],[0,-1],[1,-1],[1,0],[2,0],[3,1],[2,2],[1,2],[1,1],[1,0],[1,0],[1,-1],[0,-1],[0,-6],[1,-2],[1,-3],[1,-2],[1,-2],[1,-1],[4,-4],[1,-2],[1,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-2,-1],[-2,-1],[-2,-2],[0,-1],[-1,-2],[-1,-1],[-2,-4],[0,-2],[-1,-2],[0,-4],[0,-1],[1,-1],[0,-1],[2,0],[2,1],[3,-7],[1,-3],[3,-13],[0,-1],[0,-2],[1,0],[1,-1],[2,-1],[1,0],[1,0],[3,2],[2,1],[1,-1],[1,-1],[1,-1],[2,-10],[2,-1],[1,-1],[2,-6],[2,-2],[1,-1],[3,-1],[1,-1],[1,-1],[0,-1],[-4,-10],[0,-2],[-1,-3],[0,-3],[0,-2],[1,-2],[1,-4],[2,-2],[3,-2],[3,-3],[1,-1],[1,-1],[1,-1],[0,-2],[-1,-1],[-2,-1],[-2,1],[-2,0],[-3,4],[-1,0],[-2,0],[-1,-1],[-1,-1],[0,-2],[1,-2],[1,-1],[4,-3],[3,-2],[3,-3],[2,-2],[1,-2],[0,-4],[0,-4],[0,-10],[0,-2],[0,-2],[-1,-2],[-1,-3],[-1,-1],[-1,-2],[-1,-3],[-1,-1],[0,-2],[0,-2],[0,-1],[1,-4],[0,-1],[1,-5],[2,-3],[4,-9],[2,-5],[1,-1],[0,-2],[0,-5],[0,-3],[1,-2],[1,-1],[1,-1],[3,-1],[1,-1],[1,-1],[0,-1],[1,-1],[-1,-2],[0,-1],[-1,-2],[-1,-2],[-2,-2],[-2,-3],[-2,-2],[-3,-2],[-2,-1],[-2,-2],[0,-1],[-1,-1],[0,-3],[0,-2],[0,-3],[1,-1],[0,-1],[2,-1],[1,1],[2,1],[1,2],[1,2],[0,1],[0,1],[1,1],[1,2],[0,1],[1,0],[1,0],[1,-1],[2,-2],[0,-1],[1,-3],[0,-3],[0,-1],[-1,-2],[0,-1],[-1,-4],[0,-1],[0,-3],[0,-2],[1,0],[0,-2],[1,-1],[2,-2],[1,-1],[3,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-3],[0,-2],[-1,-4],[-1,-2],[-1,-1],[-1,-1],[-2,0],[-1,0],[-2,-2],[-1,-1],[-1,-4],[-1,-2],[0,-1],[0,-1],[1,-2],[0,-1],[2,0],[1,0],[1,1],[1,1],[2,3],[1,3],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,-3],[1,-4],[0,-1],[1,-2],[0,-3],[1,-2],[2,-5],[1,-2],[0,-2],[-1,-1],[0,-1],[-2,-3],[-1,-2],[0,-2],[0,-4],[0,-1],[1,-2],[1,-1],[1,-1],[1,0],[1,1],[1,2],[1,1],[1,4],[1,1],[0,1],[1,1],[1,-1],[1,0],[1,-2],[1,-2],[0,-3],[0,-2],[0,-5],[0,-4],[1,-5],[2,-10],[1,-21],[0,-1],[0,-1],[2,-2],[1,-1],[1,-1],[2,0],[2,1],[4,3],[1,0],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[-6,-14],[4,-7],[0,-3],[1,-4],[1,-2],[0,-4],[0,-3],[-3,-6],[0,-2],[0,-4],[1,-15],[0,-2],[1,-1],[2,-3],[1,-1],[1,-3],[1,-1],[0,-2],[0,-23],[-1,-1],[0,-2],[-1,0],[-1,-1],[-2,-1],[-2,-2],[-1,-1],[0,-1],[0,-3],[1,-3],[3,-6],[3,-6],[1,-1],[0,-1],[0,-3],[0,-4],[1,-2],[0,-1],[0,-1],[1,-2],[0,-1],[1,0],[1,0],[1,0],[3,0],[1,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-1,-1],[-3,1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-2],[2,-15],[4,-5],[1,0],[5,-3],[1,0],[1,-2],[1,-9],[2,-1],[1,-3],[1,-2],[1,-2],[2,0],[7,-2],[3,-6],[0,-1],[2,-4],[0,-11],[-2,-5],[0,-2],[0,-2],[0,-1],[0,-1],[2,-3],[1,-1],[5,-7],[0,-2],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-4,1],[-1,0],[-1,-1],[0,-2],[1,-1],[0,-1],[1,-1],[4,-3],[1,-1],[3,-1],[1,-1],[1,-2],[0,-1],[0,-2],[0,-2],[-2,-15],[-1,-3],[0,-1],[-1,0],[0,-12],[0,-2],[0,-2],[-1,-2],[-1,-3],[-1,-3],[-4,-5],[2,-8],[3,-2],[1,-2],[1,-2],[1,-2],[1,-1],[0,-2],[0,-3],[0,-2],[-2,-2],[-1,-1],[-2,-1],[-3,0],[-2,0],[-1,2],[-8,6],[-2,-2],[-1,-2],[-1,-2],[0,-2],[0,-2],[2,-4],[1,-4],[1,-1],[1,-2],[1,-1],[2,-1],[1,0],[1,1],[2,1],[3,4],[2,2],[8,5],[2,1],[1,0],[1,-1],[0,-1],[0,-2],[0,-2],[-1,-1],[-1,-2],[-7,-11],[-1,-1],[-1,0],[-2,-1],[-1,1],[-1,0],[-2,1],[-1,-1],[-1,-1],[0,-3],[1,-3],[0,-1],[1,-3],[1,-2],[2,-2],[1,-1],[1,-1],[6,-2],[1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-1],[-5,-9],[-4,-4],[-3,-3],[-1,-1],[0,-1],[0,-1],[1,-1],[2,-1],[1,-2],[7,-3],[3,-2],[2,-2],[3,-3],[0,-2],[1,-2],[0,-2],[1,-1],[-1,-3],[0,-2],[-1,-2],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,1],[-1,2],[0,1],[-1,2],[0,2],[0,1],[-1,2],[-1,2],[-2,2],[-1,1],[-2,0],[-2,-1],[-4,-2],[-2,-1],[-1,-2],[0,-3],[0,-1],[1,-2],[1,-2],[2,-2],[1,-1],[1,0],[2,2],[1,1],[1,1],[2,0],[1,0],[0,-1],[1,-2],[-1,-3],[0,-2],[-7,-18],[-2,-2],[-1,-1],[-1,-1],[-4,0],[-2,0],[-2,0],[-2,0],[-1,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[1,-1],[6,-12],[3,-7],[0,-1],[0,-2],[0,-7],[0,-1],[1,-1],[0,-2],[2,-2],[2,-2],[2,-1],[3,-1],[2,-1],[1,0],[1,1],[1,1],[3,2],[3,2],[0,2],[2,1],[1,0],[2,0],[1,-1],[1,-1],[0,-2],[1,-1],[0,-3],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,0],[-2,-1],[0,1],[-4,3],[-1,0],[-1,1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-2],[1,-2],[1,-1],[0,-2],[1,0],[1,0],[2,0],[4,2],[2,0],[1,0],[1,-1],[1,-2],[1,-1],[0,-2],[-1,-1],[-1,-3],[-1,-1],[-3,-1],[-1,0],[-2,0],[-1,0],[-3,3],[-1,0],[-1,-2],[0,-10],[3,-13],[3,-3],[0,-1],[0,-1],[0,-1],[-1,-2],[-10,-13],[-4,-3],[-2,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[0,-2],[0,-3],[0,-1],[1,-1],[2,-1],[6,-4],[5,-3],[2,0],[1,-2],[0,-1],[0,-4],[0,-2],[-1,-2],[0,-1],[-2,-2],[-1,0],[-2,-1],[-2,1],[-3,3],[-1,0],[-1,0],[-1,0],[0,-1],[-7,-15],[0,-1],[-1,-1],[0,-2],[1,-1],[0,-2],[1,-1],[2,0],[1,0],[1,1],[1,2],[1,4],[2,3],[2,3],[1,0],[4,1],[2,-1],[2,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[-1,-4],[-1,-3],[0,-1],[-2,-4],[-2,-3],[-2,-1],[-3,0],[-1,-1],[0,-2],[0,-3],[0,-2],[0,-4],[0,-3],[1,-4],[0,-2],[0,-2],[2,-5],[0,-1],[1,-1],[1,-3],[2,-2],[2,-3],[0,-1],[0,-1],[0,-3],[0,-1],[-1,-2],[-1,-1],[-3,-2],[-3,-1],[-1,-1],[-1,1],[-1,0],[-1,-2],[-1,-1],[0,-1],[0,-3],[1,-2],[1,-1],[1,0],[2,0],[4,1],[1,-1],[1,0],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[-1,-1],[-2,0],[-1,-1],[-1,-1],[0,-1],[-1,-17],[0,-3],[2,-7],[0,-2],[3,-7],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-2,-1],[-3,0],[-1,0],[-1,-1],[-1,-3],[0,-1],[0,-2],[1,-1],[2,-3],[1,0],[1,-2],[5,-1],[2,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-2,2],[-1,1],[-1,-1],[-4,-6],[-2,-2],[-3,-3],[0,-2],[0,-2],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[2,2],[2,0],[1,0],[2,-1],[1,0],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-2,-1],[-7,-5],[-12,-7],[-1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[2,0],[0,1],[1,1],[1,0],[1,0],[6,-4],[0,-1],[0,-1],[-1,-4],[0,-2],[0,-2],[0,-1],[1,-3],[3,-7],[1,-1],[0,-2],[1,-1],[2,-2],[2,0],[5,2],[3,2],[2,2],[2,2],[2,1],[2,0],[0,-1],[1,-1],[0,-2],[-1,-3],[-3,-4],[-3,-2],[-1,-2],[-3,0],[-2,-1],[-1,0],[-1,-3],[0,-1],[1,-1],[0,-2],[2,-2],[2,-1],[4,-2],[1,-1],[7,-11],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-2,-3],[-2,-1],[-3,-1],[-2,-2],[-1,0],[0,-1],[0,-2],[0,-2],[0,-1],[1,-2],[2,-2],[2,-1],[2,0],[1,1],[1,2],[1,1],[1,-1],[0,-1],[1,-1],[2,-6],[0,-3],[1,-1],[0,-2],[-1,-20],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-2,-1],[-2,0],[-1,1],[-1,1],[-3,4],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[2,-2],[1,-1],[3,-3],[1,-2],[1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-2,0],[-2,0],[-4,1],[-1,0],[-2,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[6,-6],[1,-1],[3,-1],[1,1],[1,1],[1,1],[1,3],[2,3],[2,2],[2,0],[1,-1],[1,-1],[0,-1],[1,-1],[-1,-3],[-1,-2],[0,-1],[-6,-7],[-2,-1],[-1,0],[-4,1],[-1,1],[-2,2],[-1,1],[-2,0],[-2,0],[-4,-2],[-1,0],[0,-2],[-1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[2,-1],[2,0],[2,1],[2,1],[1,-1],[1,-1],[1,-2],[1,-2],[0,-1],[1,-2],[0,-2],[0,-1],[-1,-1],[-1,-3],[-2,-3],[-1,0],[-1,-2],[0,-1],[0,-4],[0,-1],[0,-1],[1,-1],[1,-2],[2,-1],[2,-1],[5,0],[8,-1],[2,-4],[-4,1],[-4,1],[-2,-9],[-2,-8],[-1,0],[-1,-6],[0,-1],[0,-3],[0,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[0,-3],[1,-2],[0,-3],[1,-2],[1,-1],[2,-2],[1,0],[1,0],[3,1],[1,0],[1,0],[2,-2],[1,-2],[1,-1],[0,-1],[0,-3],[0,-1],[-2,-5],[-2,-9],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-3,0],[-3,1],[-2,0],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[0,-2],[-1,-1],[0,-2],[0,-3],[1,-3],[1,-1],[1,-1],[2,0],[2,-1],[1,1],[1,1],[1,3],[1,2],[1,2],[0,2],[1,2],[1,1],[1,1],[1,0],[2,-1],[2,-1],[1,-2],[1,-2],[1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-4,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-3],[0,-1],[2,-5],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[-2,-1],[-6,0],[-2,-1],[-1,-1],[-3,-2],[0,-2],[-1,-1],[0,-2],[0,-1],[1,-2],[1,-1],[2,-1],[1,-1],[1,-1],[0,-1],[0,-2],[-2,-8],[0,-1],[0,-2],[1,-1],[1,-1],[1,0],[1,1],[1,1],[0,1],[1,3],[1,1],[1,2],[1,0],[1,0],[1,-2],[6,-13],[1,-3],[0,-1],[-1,-1],[-15,-34],[-1,-3],[-1,-4],[0,-7],[0,-2],[4,-35],[1,-5],[0,-2],[0,-3],[0,-2],[0,-2],[-1,-1],[0,-1],[-2,-2],[-5,-2],[0,-1],[-1,-1],[-1,-3],[0,-2],[1,-3],[0,-1],[1,-1],[1,-2],[1,0],[1,-1],[1,0],[1,0],[4,2],[2,1],[1,0],[1,-1],[1,-1],[1,-2],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-2],[0,-1],[-1,-1],[-2,-1],[-2,0],[-1,0],[-3,2],[-2,1],[-1,0],[-1,-2],[-1,-1],[-1,-2],[0,-2],[-1,-3],[0,-3],[2,-2],[6,5],[1,1],[5,2],[1,-1],[1,-1],[0,-1],[0,-3],[0,-3],[0,-2],[0,-2],[-1,-1],[0,-2],[-1,0],[-2,0],[-4,2],[-3,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[3,0],[1,0],[2,-1],[1,-1],[0,-1],[0,-2],[0,-2],[-1,-2],[-2,-2],[-2,-2],[0,-1],[-2,-3],[0,-1],[0,-3],[0,-1],[0,-2],[1,-2],[2,0],[1,1],[1,1],[0,1],[0,1],[1,4],[0,1],[0,1],[1,1],[0,1],[2,0],[0,-1],[6,-16],[1,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-2],[-1,0],[-2,-1],[-3,-1],[-2,-2],[-2,-3],[-2,-3],[-1,-2],[0,-2],[0,-3],[0,-1],[1,-1],[0,-1],[2,0],[1,-1],[1,1],[0,1],[0,1],[1,3],[0,2],[0,1],[1,2],[1,1],[1,0],[1,0],[0,-1],[6,-14],[3,-6],[0,-3],[1,-3],[0,-1],[0,-3],[0,-1],[0,-2],[-1,-1],[-1,-1],[-2,0],[-1,1],[-2,7],[-1,2],[-1,1],[-2,1],[-2,-1],[-1,-1],[-2,-2],[-1,-3],[-1,-2],[0,-3],[0,-2],[0,-1],[1,-2],[1,-1],[1,-1],[2,-1],[2,1],[2,1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[0,-1],[1,-1],[-1,-2],[0,-1],[0,-1],[-2,-1],[-1,-1],[-4,-2],[-4,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-2],[-1,-2],[0,-2],[0,-3],[1,-1],[0,-2],[1,0],[1,-2],[1,0],[2,0],[1,1],[1,2],[0,2],[0,6],[0,1],[1,2],[1,2],[1,0],[1,1],[1,0],[2,-2],[1,-1],[1,-2],[0,-2],[1,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[-1,-2],[-3,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-3],[2,-4],[4,-4],[1,-3],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-4,0],[-1,-2],[-1,-1],[0,-2],[1,-1],[0,-1],[6,-4],[2,-2],[1,-2],[1,-2],[1,-3],[1,-1],[0,-2],[0,-3],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,3],[-1,2],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,-2],[-4,-9],[-3,-8],[-6,-10],[-1,-2],[0,-1],[0,-4],[1,-2],[0,-1],[2,-2],[1,-1],[1,0],[1,1],[1,2],[0,3],[0,1],[-1,2],[0,1],[0,1],[0,2],[0,2],[0,1],[1,1],[0,1],[2,0],[1,-1],[3,-4],[1,-1],[5,-4],[3,-3],[2,-2],[1,-2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[-1,0],[-2,-2],[-4,0],[-1,-1],[-2,-2],[-2,-1],[-1,-2],[0,-2],[0,-3],[0,-1],[2,-2],[0,-1],[2,0],[1,0],[3,1],[2,2],[4,4],[1,0],[2,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-3],[0,-1],[-1,-1],[0,-1],[-1,-1],[-2,0],[-2,1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[3,-3],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,0],[-1,-1],[-2,0],[-5,1],[-1,0],[0,-1],[-1,-1],[0,-2],[1,-3],[1,-2],[1,-1],[2,-1],[1,-1],[2,0],[2,1],[2,0],[1,-1],[1,-1],[1,-2],[0,-1],[-1,-1],[0,-2],[-1,-5],[-1,0],[0,-3],[-1,-2],[0,-3],[0,-3],[1,0],[0,-2],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,-2],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-2],[-1,-2],[-2,-1],[-2,-2],[-2,0],[-6,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[1,-2],[1,0],[1,0],[6,1],[2,-1],[1,-1],[1,-1],[0,-2],[0,-1],[0,-2],[-1,-2],[-1,-1],[-2,-2],[-1,0],[-3,0],[-3,0],[-2,1],[-1,1],[-11,-9],[0,-1],[-1,-1],[2,-3],[3,-5],[1,-2],[0,-1],[1,0],[1,0],[1,1],[2,2],[0,1],[1,0],[1,0],[0,-1],[1,-1],[3,-7],[0,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[-3,0],[-2,-1],[-2,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[1,-1],[1,0],[2,-2],[4,-10],[0,-2],[1,-2],[0,-1],[1,-4],[1,-2],[0,-3],[-1,-1],[0,-2],[-1,-1],[-2,-2],[-1,-2],[-1,0],[0,-2],[0,-1],[0,-3],[0,-2],[1,-1],[1,-1],[1,0],[1,0],[2,0],[1,1],[1,2],[2,3],[1,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-2,-2],[-1,-1],[-1,-2],[-1,-2],[0,-2],[0,-5],[0,-2],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-3,0],[-1,0],[-3,2],[-2,1],[-2,0],[-1,0],[-1,-1],[-1,-1],[0,-2],[0,-2],[1,-1],[3,-3],[2,-1],[2,0],[3,2],[1,-1],[1,-1],[0,-2],[1,-4],[4,-2],[1,-1],[1,-2],[2,-4],[0,-4],[0,-3],[-1,-3],[0,-1],[-1,-2],[0,-4],[0,-3],[0,-1],[0,-1],[1,-2],[1,-1],[1,0],[1,0],[4,1],[0,-4],[0,-3],[1,-2],[0,-3],[0,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-3],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[4,-2],[0,-1],[1,-1],[0,-1],[0,-2],[-1,-3],[0,-3],[0,-4],[1,-3],[0,-2],[0,-1],[-1,-1],[-1,-2],[-1,0],[-3,-1],[-4,-1],[-2,-1],[-1,-1],[0,-1],[0,-3],[0,-2],[1,0],[1,0],[1,0],[1,3],[2,1],[2,1],[1,0],[1,-1],[4,-3],[0,-1],[0,-2],[0,-1],[0,-2],[-2,-2],[-2,-4],[-1,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[1,-2],[0,-1],[1,-2],[0,-9],[-3,-1],[-6,-5],[-3,-3],[-1,-2],[0,-1],[0,-2],[0,-2],[1,-2],[1,-1],[1,0],[1,1],[0,1],[1,4],[1,3],[1,2],[1,1],[2,0],[1,0],[1,-2],[1,-1],[0,-3],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-3,-1],[-1,-2],[0,-1],[1,-18],[1,-2],[0,-1],[2,-4],[2,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,0],[-1,0],[-2,2],[-2,1],[-1,1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[1,0],[6,-12],[7,-9],[2,-2],[1,-3],[0,-2],[0,-2],[-1,-3],[-1,-2],[-1,-1],[-3,-4],[-2,-1],[-2,-2],[-2,0],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[1,-1],[1,0],[4,4],[2,2],[2,2],[1,0],[1,0],[1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[-5,-15],[-1,-6],[-1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[1,0],[1,-1],[1,1],[1,1],[0,2],[1,4],[1,3],[1,3],[1,0],[2,0],[1,0],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-3,-11],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,1],[-3,1],[-1,1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-1,-2],[0,-2],[1,-1],[0,-1],[1,-2],[1,0],[3,1],[2,1],[1,-1],[1,-1],[1,-3],[6,-13],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,0],[-1,0],[-1,1],[-2,1],[-2,0],[-2,-1],[-1,-1],[-2,-1],[-1,0],[-3,-3],[-1,-1],[-2,-2],[0,-2],[-4,-16],[1,-2],[0,-1],[-2,-15],[0,-1],[-1,-2],[-3,-1],[-2,-2],[0,-1],[-1,-1],[-1,-3],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,2],[1,1],[2,1],[3,-2],[5,-5],[9,-10],[-1,-7],[2,-1],[0,-6],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,-2],[0,-3],[0,-8],[0,-1],[0,-1],[1,-2],[1,-1],[0,-2],[1,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[1,0],[2,-3],[1,0],[0,-1],[1,-1],[2,-14],[1,-4],[0,-4],[0,-5],[0,-2],[-2,-14],[-2,-2],[0,-1],[0,-3],[0,-2],[1,-2],[2,-5],[1,-1],[1,-1],[11,-10],[1,-1],[2,0],[9,8],[0,3],[0,2],[0,1],[1,0],[1,1],[1,-1],[1,-2],[4,-4],[1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-4,-16],[-1,-1],[-2,-2],[-1,-1],[-2,-1],[-1,-2],[0,-1],[0,-1],[1,-3],[4,-6],[1,-2],[1,-3],[0,-8],[0,-2],[-1,-2],[-1,-1],[-2,-1],[-2,-1],[0,-1],[-1,-1],[0,-2],[1,-1],[1,-2],[3,-4],[1,0],[1,-1],[1,0],[1,0],[1,1],[0,2],[1,1],[1,3],[1,1],[1,0],[1,-1],[1,-1],[1,0],[0,-2],[0,-3],[0,-2],[0,-1],[-1,-8],[0,-4],[1,0],[2,-11],[-1,-14],[-1,-12],[0,-2],[0,-1],[1,-1],[1,-1],[1,1],[0,1],[0,1],[1,2],[1,3],[0,1],[1,0],[1,1],[1,-1],[1,-1],[0,-2],[0,-3],[-1,-4],[0,-3],[0,-4],[1,-1],[1,0],[1,1],[1,3],[5,8],[7,10],[13,10],[2,2],[1,-2],[5,-11],[1,-2],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-1],[-2,-1],[0,1],[-2,2],[-1,2],[-3,1],[-1,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[1,-1],[1,0],[3,-1],[1,0],[3,-1],[3,-1],[2,-1],[1,-1],[1,-2],[1,0],[0,-2],[-1,0],[0,-1],[-1,-1],[-1,-1],[-3,0],[-1,1],[-3,3],[-1,0],[-1,1],[-1,-1],[-1,0],[0,-2],[0,-2],[0,-2],[1,-4],[0,-2],[2,-3],[1,-3],[0,-4],[0,-4],[-5,-17],[0,-4],[-2,-12],[0,-2],[-1,0],[0,-1],[-1,0],[-1,1],[-1,2],[-1,2],[-1,1],[-1,0],[-1,0],[0,-1],[-3,-6],[0,-1],[-4,-24],[0,-1],[0,-4],[0,-1],[1,-2],[1,0],[0,-1],[4,0],[1,0],[1,-1],[1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[1,-9],[1,-3],[0,-1],[0,-1],[1,-1],[1,0],[3,2],[1,1],[1,0],[1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-6],[-2,2],[-6,1],[-2,-8],[-1,-9],[-2,-9],[-2,-9],[-2,-11],[0,-1],[-1,-4],[-1,-3],[-1,-2],[0,-2],[-1,-3],[0,-2],[0,-2],[0,-1],[0,-1],[1,-2],[1,-2],[6,-7],[2,-2],[0,-1],[0,-2],[1,-2],[0,-4],[-1,-1],[-1,-1],[-3,1],[-4,4],[-1,1],[-2,0],[0,-1],[-1,-1],[0,-2],[0,-2],[1,-2],[0,-3],[1,-1],[1,-1],[2,-2],[1,0],[1,1],[3,3],[2,1],[1,0],[1,0],[1,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[-4,1],[-2,-5],[-1,-3],[-2,-9],[0,-1],[3,-4],[3,-3],[2,-4],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-2,0],[-1,1],[-2,1],[-1,2],[-1,2],[-1,1],[-2,1],[-3,0],[-2,0],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[1,-1],[2,-2],[1,0],[1,-2],[1,-2],[0,-1],[0,-2],[0,-2],[-1,-3],[-1,-4],[-1,-1],[0,-1],[-2,0],[-1,1],[-2,1],[-2,2],[-2,1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,-2],[6,-4],[1,-2],[3,-3],[1,-3],[2,-3],[2,-4],[0,-3],[-1,0],[-1,0],[-1,1],[0,1],[-1,2],[-3,1],[-5,3],[-2,1],[-1,0],[-1,0],[0,-1],[-9,-19],[-1,-6],[0,-5],[0,-3],[1,-6],[0,-1],[-1,-2],[-1,-3],[-1,-3],[0,-7],[0,-1],[1,-1],[1,-1],[3,-2],[1,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-2,-1],[-2,-1],[-3,-1],[0,-5],[1,0],[1,0],[2,1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-3],[0,-3],[-1,-2],[0,-1],[-1,-2],[-2,-1],[-2,-1],[-2,-2],[-1,-1],[0,-3],[1,-1],[1,-1],[1,0],[4,1],[2,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-2,-2],[0,-1],[0,-3],[1,-6],[0,-1],[1,-2],[1,-1],[2,0],[1,0],[3,-2],[3,-5],[0,-1],[1,-2],[0,-1],[0,-1],[-1,-4],[-4,-4],[-8,-15],[0,-2],[0,-1],[0,-1],[1,-2],[1,-1],[1,0],[3,0],[1,1],[2,2],[2,3],[0,1],[2,2],[2,0],[2,0],[0,-1],[1,-1],[0,-2],[0,-3],[0,-1],[0,-3],[0,-1],[-1,-2],[-1,0],[-1,-1],[-1,1],[-2,2],[-1,1],[-1,-1],[-1,0],[0,-1],[0,-4],[0,-2],[0,-1],[1,-2],[0,-2],[1,-3],[1,-1],[1,-1],[1,-2],[3,0],[5,-1],[2,-1],[4,-2],[0,-1],[1,-1],[0,-1],[-1,-3],[-1,-2],[0,-1],[-2,-1],[-4,2],[-6,3],[-3,1],[-1,0],[-1,-1],[0,-1],[0,-2],[0,-1],[2,-3],[2,-1],[1,-2],[2,0],[2,-1],[4,1],[1,-1],[1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[-2,0],[-1,1],[-1,2],[-2,2],[-1,1],[-1,1],[-1,-1],[-1,0],[0,-1],[-1,-2],[0,-2],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-2],[1,-2],[0,-4],[-1,0],[0,-1],[-2,0],[-1,2],[-2,2],[-1,1],[-1,0],[0,-1],[-1,0],[-1,-2],[0,-1],[1,-2],[1,-1],[2,-2],[1,-1],[2,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-3],[0,-12],[0,-1],[-1,-1],[-2,0],[-2,1],[-1,0],[-1,0],[0,-1],[0,-2],[1,-1],[2,-3],[2,-1],[4,-2],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-2,0],[-4,2],[-1,0],[-1,-1],[0,-1],[-1,-3],[1,0],[0,-1],[1,0],[7,-5],[-1,-13],[-3,-13],[-1,-1],[0,-3],[1,-5],[0,-1],[1,-3],[0,-1],[1,0],[1,0],[3,3],[0,-22],[-2,-3],[-2,-3],[-3,-2],[-2,-2],[-1,0],[-3,-1],[-1,0],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[1,0],[1,0],[1,2],[1,0],[5,-1],[2,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-2,0],[0,-1],[-3,-4],[-2,-2],[0,-2],[1,0],[0,-1],[5,-5],[-4,-4],[-3,-7],[-3,-15],[0,-1],[0,-1],[1,-3],[2,0],[5,-4],[0,-19],[0,-2],[0,-2],[-2,-8],[-1,-1],[-3,-1],[-1,-1],[-1,-2],[0,-2],[1,-3],[1,0],[2,-2],[2,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,0],[-4,-9],[0,-1],[-1,-1],[-1,0],[-1,1],[-1,2],[-1,2],[-1,1],[-2,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,-4],[1,-1],[1,-1],[1,-1],[2,-2],[2,-4],[1,-1],[0,-1],[1,-2],[-1,-1],[0,-1],[-1,-1],[-5,1],[-1,2],[0,1],[-1,4],[0,1],[-1,1],[-1,0],[-5,-3],[0,-1],[-1,-7],[0,-3],[1,-1],[0,-2],[1,-2],[1,0],[1,-1],[1,0],[3,2],[1,0],[1,-2],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,-1],[-1,0],[-9,-10],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[2,0],[2,1],[1,0],[1,-1],[1,-1],[0,-1],[-3,-21],[0,-2],[-2,-4],[0,-2],[0,-10],[0,-1],[1,-1],[2,0],[1,-1],[1,-2],[1,-2],[5,-9],[0,-1],[0,-1],[0,-1],[-1,-11],[1,-6],[-1,-18],[0,-2],[0,-2],[0,-3],[-1,-2],[-1,-1],[-2,-3],[-1,0],[-1,-1],[0,-1],[-1,-3],[-1,-5],[-1,-2],[0,-2],[1,-1],[1,-1],[11,2],[1,1],[1,2],[2,3],[3,-2],[-3,-10],[-1,-2],[-1,-1],[-4,-2],[-1,0],[-1,-2],[0,-1],[1,-1],[3,-2],[2,0],[2,2],[2,2],[2,1],[1,1],[3,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-3,0],[-6,-5],[-1,-1],[-1,-3],[0,-2],[-1,-2],[0,-3],[1,-2],[1,0],[1,0],[8,2],[1,0],[1,2],[2,3],[1,0],[1,-1],[0,-1],[0,-7],[0,-2],[0,-1],[-1,-2],[-2,0],[-3,1],[-2,0],[0,-1],[-1,-2],[1,-1],[0,-1],[1,-2],[0,-2],[2,-1],[1,0],[1,0],[2,1],[1,2],[0,3],[1,1],[1,0],[1,1],[1,-1],[1,-2],[1,-1],[0,-1],[0,-1],[-3,-17],[0,-1],[0,-1],[-2,-1],[-3,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,-2],[1,0],[1,0],[1,0],[1,1],[2,1],[2,1],[3,1],[1,-1],[0,-2],[0,-1],[-3,-9],[-2,-6],[0,-6],[0,-7],[1,-3],[0,-1],[1,-1],[1,1],[0,1],[0,1],[0,4],[1,2],[1,1],[1,2],[1,0],[1,-1],[0,-1],[1,-1],[1,-4],[0,-6],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[4,4],[1,0],[1,0],[2,0],[0,-1],[0,-2],[0,-1],[0,-4],[-1,-2],[-1,-2],[-1,-1],[-2,0],[-1,1],[-2,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-3],[0,-2],[1,-1],[0,-2],[2,-2],[3,-3],[1,0],[0,-1],[2,1],[2,2],[1,1],[1,1],[1,0],[1,-1],[0,-1],[1,-4],[0,-2],[1,-1],[-1,-2],[-1,-1],[-3,-2],[-1,0],[-6,0],[-1,-1],[-1,-1],[-1,-2],[0,-1],[1,-2],[0,-1],[1,-1],[1,1],[5,2],[1,1],[1,1],[1,2],[2,1],[1,0],[1,0],[1,0],[1,-1],[2,-2],[0,-2],[0,-3],[0,-1],[0,-1],[-1,0],[-1,0],[-9,-9],[-2,-3],[1,-7],[0,-1],[1,0],[1,0],[1,4],[0,1],[1,0],[1,1],[2,0],[1,0],[4,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-2,0],[-2,1],[-1,0],[-1,0],[-1,-1],[-1,-2],[0,-2],[0,-3],[0,-1],[1,0],[3,1],[1,1],[1,0],[2,-1],[1,0],[1,-1],[0,-2],[2,-12],[1,-4],[1,-2],[1,-2],[0,-1],[-1,-1],[-6,-3],[-6,1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-2],[-1,0],[-1,-1],[-3,0],[-2,-1],[-2,0],[-1,-1],[0,-2],[0,-1],[-1,-1],[1,0],[0,-1],[1,-2],[2,-1],[2,1],[3,2],[2,0],[1,0],[0,-1],[0,-3],[1,-15],[1,-1],[2,-4],[2,-3],[0,-1],[1,0],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,2],[0,3],[-1,2],[-1,1],[-1,0],[-1,0],[-1,-2],[-1,-2],[-3,-7],[-1,-1],[0,-1],[2,-1],[1,-1],[3,-2],[1,0],[2,1],[1,1],[0,1],[3,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-4],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-2,1],[-1,0],[-3,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[3,-3],[1,-1],[1,0],[1,1],[1,2],[0,1],[1,0],[1,1],[0,-1],[4,-1],[2,-1],[0,-1],[1,-13],[0,-1],[0,-1],[-1,0],[-4,2],[-2,1],[-1,0],[-2,-1],[-1,0],[0,-1],[0,-1],[0,-1],[3,-1],[1,-1],[0,-4],[0,-2],[1,-7],[0,-3],[5,-10],[2,-7],[0,-5],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-5,-4],[-1,0],[0,-2],[1,-1],[1,-1],[1,0],[0,-1],[1,1],[1,1],[0,2],[1,0],[1,0],[0,-1],[3,-7],[0,-1],[2,-13],[-1,-6],[-1,-2],[-1,1],[-1,0],[-1,0],[-1,-1],[0,-1],[2,-5],[1,-1],[1,-2],[3,-3],[1,-1],[1,-1],[1,-4],[0,-2],[0,-3],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[-3,0],[-5,-9],[-2,-4],[2,0],[0,1],[0,1],[1,1],[1,1],[2,0],[1,0],[0,-1],[0,-2],[-1,-1],[-1,-3],[0,-2],[0,-2],[1,0],[2,-1],[0,1],[1,0],[2,-1],[0,-1],[0,-2],[-1,-8],[0,-2],[-1,-2],[-3,-15],[1,-10],[3,-2],[1,-2],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-2,-2],[-2,0],[-1,-1],[-2,-3],[-1,-4],[0,-3],[0,-1],[1,-1],[2,-2],[1,0],[1,1],[0,4],[0,1],[0,1],[-1,2],[1,0],[0,1],[1,1],[2,-2],[7,-11],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-4],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,-2],[4,-3],[2,0],[0,1],[1,1],[0,3],[0,2],[0,1],[1,0],[0,1],[1,0],[5,-3],[1,-6],[-4,1],[-1,0],[-1,0],[0,-1],[-3,-4],[-1,-1],[-1,-2],[0,-1],[1,-5],[0,-2],[1,-1],[0,-1],[1,0],[1,2],[0,1],[1,1],[0,2],[1,1],[0,1],[1,0],[1,0],[3,-2],[2,-2],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,-2],[2,-10],[1,-1],[1,0],[1,-1],[0,-1],[0,-3],[0,-12],[-2,-2],[-1,-7],[1,-2],[0,-1],[1,-2],[0,-3],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-2],[1,-3],[0,-1],[1,-1],[3,-4],[2,-3],[3,-6],[0,-4],[-1,1],[-1,0],[-2,0],[-1,1],[-1,-1],[-2,-2],[-1,-1],[-1,-2],[0,-1],[7,-17],[1,-2],[1,-1],[7,5],[3,1],[0,1],[2,3],[0,1],[1,1],[0,2],[1,0],[1,0],[0,-2],[1,-1],[0,-2],[-2,-8],[0,-2],[-1,0],[-1,-2],[-1,-1],[0,-1],[-1,-3],[0,-2],[0,-3],[0,-1],[1,-2],[2,0],[1,0],[1,2],[1,1],[1,1],[1,0],[1,-1],[1,-9],[0,-3],[-1,-1],[-2,-10],[-1,-5],[-2,-4],[0,-1],[-1,-2],[0,-2],[1,-2],[0,-1],[1,-1],[1,1],[9,10],[1,1],[0,1],[2,2],[0,1],[1,0],[1,0],[0,-1],[1,-15],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[-3,4],[0,1],[-1,1],[-3,0],[-1,0],[-2,-2],[0,-1],[0,-2],[0,-1],[0,-1],[2,-6],[1,-1],[1,-1],[2,0],[0,-1],[2,1],[1,1],[1,2],[3,1],[3,1],[4,1],[1,-1],[1,0],[0,-2],[0,-3],[0,-2],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[0,-2],[0,-2],[0,-6],[1,-2],[0,-2],[1,-1],[1,0],[6,7],[1,0],[1,0],[1,-1],[1,-2],[2,-7],[1,-2],[0,-1],[1,-9],[0,-1],[1,-2],[0,-3],[3,-8],[2,-6],[0,-1],[6,-15],[0,-4],[-1,-7],[-1,-3],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[1,-2],[1,-3],[1,-4],[0,-3],[0,-2],[0,-1],[-1,-4],[0,-4],[1,-1],[0,-2],[2,-2],[0,-1],[2,0],[1,0],[7,-3],[0,-10],[3,-12],[1,-2],[0,-1],[1,-2],[3,-3],[2,-2],[2,-2],[1,0],[3,-1],[2,-1],[1,0],[1,-1],[0,-2],[-1,-3],[0,-1],[-5,-3],[-1,-2],[0,-1],[0,-2],[0,-2],[2,-12],[0,-3],[0,-1],[1,-2],[0,-1],[1,-2],[1,-1],[0,-1],[1,0],[1,0],[1,0],[2,3],[1,2],[3,2],[5,3],[3,2],[1,1],[3,-5],[0,-1],[0,-2],[-1,-2],[0,-2],[1,-2],[1,-1],[0,-1],[4,-2],[0,-1],[5,-2],[1,0],[1,0],[3,-1],[2,-3],[-3,-7],[0,-2],[-1,-2],[0,-1],[-2,-5],[0,-2],[0,-1],[1,-1],[7,-9],[1,-1],[3,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,-3],[0,-3],[1,-1],[0,-4],[2,-3],[1,-1],[2,-1],[4,1],[2,-5],[-1,-3],[-1,-1],[-2,0],[-2,-1],[-1,-2],[-1,-1],[0,-1],[0,-2],[0,-1],[1,0],[2,1],[3,2],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[-1,-5],[-1,-12],[0,-3],[1,-1],[3,-16],[0,-6],[-1,-8],[-1,-1],[-1,-2],[0,-1],[-1,-11],[0,-4],[0,-6],[1,-6],[1,-1],[2,-3],[1,-2],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[-3,-1],[-2,-1],[-2,-2],[-2,-2],[-1,-1],[0,-2],[0,-1],[0,-1],[1,0],[4,-2],[2,0],[1,0],[1,0],[3,0],[1,-9],[0,-9],[-1,0],[-4,0],[-3,0],[0,-4],[3,1],[6,1],[1,-3],[-5,-5],[-1,-3],[0,-1],[-1,-2],[-1,-1],[0,-4],[1,-1],[1,-1],[3,-4],[2,-7],[0,-2],[0,-3],[0,-3],[-2,-18],[-1,-2],[-3,-5],[0,-9],[1,-9],[1,-9],[5,-1],[2,0],[1,-4],[0,-1],[0,-1],[-1,-1],[-1,-3],[0,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[4,-9],[1,-1],[2,-1],[1,0],[3,2],[1,1],[1,1],[1,0],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-4],[-1,-1],[0,-1],[-1,-1],[-6,-6],[-1,0],[-2,1],[-1,1],[-1,-1],[-1,-2],[-4,-5],[0,-1],[0,-2],[-1,-2],[2,-43],[0,-3],[0,-2],[2,-23],[1,-1],[0,-1],[5,-10],[6,-18],[2,-3],[1,-18],[2,-11],[-1,-9],[-1,-1],[0,-2],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,-2],[0,-1],[1,-1],[2,0],[3,0],[1,0],[1,0],[0,-1],[1,-1],[-1,-2],[-3,-19],[-1,-16],[-1,-3],[0,-3],[0,-5],[1,-2],[0,-1],[1,-2],[0,-1],[3,-2],[1,-1],[4,1],[1,0],[1,0],[1,-1],[3,-6],[1,-1],[0,-1],[1,-18],[0,-2],[0,-3],[-1,-3],[-1,-2],[-1,-3],[0,-1],[1,-5],[0,-1],[1,-6],[0,-3],[0,-2],[-2,-8],[0,-2],[-1,-3],[-2,-13],[0,-1],[1,-12],[3,-8],[0,-2],[1,0],[2,-1],[3,-12],[2,-9],[3,-14],[0,-2],[0,-5],[0,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-5],[0,-7],[0,-1],[3,-15],[1,-1],[1,-1],[2,0],[1,0],[1,1],[1,-2],[2,-5],[1,-3],[0,-1],[0,-2],[0,-5],[-1,-7],[-3,-11],[0,-1],[0,-1],[3,-6],[1,-2],[1,-2],[2,-8],[1,-11],[0,-5],[1,-13],[0,-5],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-8],[0,-1],[2,-9],[1,-10],[0,-8],[-1,-1],[-1,-3],[0,-2],[-1,-18],[0,-3],[0,-5],[1,-6],[0,-8],[0,-2],[-3,-18],[-1,-8],[-2,-9],[-1,1],[-4,-2],[-1,-6],[-1,-3],[-1,-9],[-2,-8],[-2,-11],[-1,-4],[-4,-16],[-1,-6],[-1,-2],[-1,-9],[-1,-3],[0,-5],[-1,-6],[0,-5],[1,-5],[0,-1],[1,-5],[0,-1],[2,-11],[1,-2],[0,-3],[0,-3],[-1,-6],[0,-1],[0,-5],[-1,-13],[0,-3],[3,-15],[0,-8],[0,-11],[1,-12],[0,-15],[0,-1],[1,-7],[0,-13],[0,-6],[-1,-2],[0,-7],[0,-1],[1,-7],[1,-9],[0,-5],[0,-2],[1,-2],[0,-5],[0,-3],[0,-6],[0,-5],[2,-9],[3,-13],[1,-9],[0,-3],[0,-1],[1,-2],[2,-5],[0,-2],[2,-7],[0,-5],[1,-2],[0,-3],[0,-1],[0,-2],[1,-8],[-3,-12],[-1,-8],[-4,-1],[-2,0],[-3,0],[-2,1],[-4,0],[-4,0],[-5,0],[-3,0],[-4,0],[-4,0],[-10,0],[-2,-1],[-4,0],[-3,1],[-4,0],[-15,0],[-2,0],[-4,0],[-4,0],[-3,0],[-12,0],[-3,0],[-2,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-5,0],[-7,1],[-4,0],[-8,0],[-4,0],[-3,0],[-2,0],[-2,0],[-5,0],[-4,0],[-3,0],[-7,0],[-3,1],[-2,-1],[-2,0],[-9,1],[-6,0],[-4,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-5,0],[-6,0],[-1,0],[-3,0],[-1,0],[-4,0],[-5,0],[-2,0],[-2,0],[-4,0],[-3,-1],[-4,0],[-4,0],[-4,0],[-7,0],[-1,0],[-6,0],[-11,0],[-9,0],[-4,0],[-4,0],[-2,0],[-2,0],[-4,0],[-4,0],[-4,0],[-4,0],[-7,0],[-6,0],[-4,0],[-4,0],[-3,0],[-2,0],[-4,0],[-3,0],[-2,0],[-1,0],[-3,0],[-4,0],[-2,0],[-6,0],[-3,0],[-2,1],[-7,0],[-5,0],[-4,-1],[-4,0],[-4,1],[-4,0],[-4,-1],[-3,0],[-3,1],[-4,-1],[-4,0],[-7,0],[-4,0],[-4,0],[-2,0],[-17,-1],[-10,1],[-24,-1],[-18,0],[-14,1],[-14,0],[-4,1],[-4,0],[-4,-1],[-2,-1],[-12,0],[-16,1],[-29,0],[-3,0],[-9,0],[-1,0],[-5,0],[-2,0],[-4,0],[-2,0],[-1,0],[-3,0],[-1,0],[-3,0],[-2,0],[-1,0],[-18,0],[-5,0],[-13,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-4,0],[-1,0],[-3,0],[-1,0],[-4,0],[-4,0],[-9,0],[-4,1],[-9,-1],[-5,0],[-2,0],[-2,0],[-5,0],[-2,0],[-2,0],[-5,0],[-6,0],[-13,0],[-2,0],[-2,0],[-2,0],[-4,0],[-2,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-5,0],[-4,0],[-2,0],[-2,0],[-6,-1],[-3,0],[-2,0],[-4,0],[-3,0],[-2,0],[-4,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-4,0],[-4,0],[-3,0],[-4,0],[-1,0],[-3,0],[-1,0],[-4,-1],[-3,1],[-2,0],[-3,0],[-4,0],[-2,0],[-5,0],[-5,0],[-4,1],[-5,0],[-2,0],[-2,0],[-7,0],[-5,0],[-7,0],[-13,0],[-2,0],[-6,0],[-6,0],[-6,0],[-14,0],[-2,0],[-2,0],[-3,0],[-1,0],[-9,0],[-3,0],[-2,0],[-7,0],[-3,0],[-5,0],[-2,0],[-5,1],[-1,0],[-4,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-15,1],[-7,0],[-6,0],[-13,0],[-15,0],[-6,0],[-10,0],[-5,0],[-7,0],[-2,0],[-14,0],[-3,0],[-1,0],[-24,-3],[-20,0],[-21,0],[-3,0],[-5,0],[-7,0],[-6,0],[-6,0],[-12,0],[-12,1],[-3,-1],[-6,0],[-4,0],[-4,0],[-2,0],[-2,0],[-6,0],[-3,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-4,0],[-2,0],[-8,0],[-1,0],[-3,1],[-4,0],[-1,0],[-1,0],[-2,0],[-6,0],[-4,0],[-5,0],[-2,0],[-5,0],[-2,0],[-3,0],[-2,0],[-4,0],[-3,0],[-3,0],[-2,0],[-2,0],[-3,0],[-6,0],[-2,0],[-4,0],[-2,0],[-3,0],[-4,0],[-2,0],[-1,0],[-6,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-3,0],[-3,0],[-4,0],[-4,0],[-3,0],[-5,0],[-1,0],[-3,0],[-6,0],[-2,0],[-4,0],[-3,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-12,0],[-6,0],[-3,0],[-8,0],[-2,0],[-2,0],[-2,0],[-5,0],[-3,0],[-6,0],[-5,0],[-2,0],[-5,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-3,0],[-8,0],[-2,0],[-2,0],[-4,0],[-3,0],[-2,0],[-4,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-3,0],[-7,1],[-2,-1],[-1,0],[-2,1],[-2,0],[-4,0],[-11,0],[-16,-1],[-30,1],[-19,0],[-7,0],[-2,0],[-9,0],[-8,0],[-2,0],[-4,0],[-2,0],[-6,0],[-4,0],[-3,0],[-5,0],[-4,0],[-5,0],[-1,0],[-2,0],[-8,1],[-2,-1],[-72,1],[-27,0],[-11,0],[-12,0],[-4,0],[-3,0],[-8,0],[-1,0],[-14,0],[-2,0],[-11,-1],[-41,0],[-3,0],[-7,1],[-6,0],[-1,0],[-14,0],[-12,0],[-4,0],[-2,0],[-4,0],[-3,0],[-2,0],[-3,0],[-1,0],[-3,0],[-2,0],[-4,0],[-15,0],[-7,0],[-21,0],[-2,0],[-2,0],[-1,0],[-1,0],[-5,0],[-2,0],[-15,0],[-9,0],[-3,0],[-15,1],[-13,0],[-1,0],[-14,0],[-10,0],[-2,0],[-2,0],[-4,0],[-10,-1],[-12,0],[-16,0],[-7,0],[-5,0],[-16,0],[-11,0],[-17,0],[-11,0],[-17,0],[-11,0],[-16,1],[-14,0],[-13,0],[-28,0],[-7,0],[-6,0],[-7,0],[-7,0],[-13,0],[-15,1],[-4,0],[-24,0],[-13,0],[-8,0],[-2,0],[-1,0],[-1,0],[-5,0],[-10,1],[-15,0],[-13,0],[-11,0],[-3,0],[-14,0],[-10,1],[-4,0],[-5,0],[-3,0],[-1,0],[-2,0],[-2,0],[-5,0],[-1,0],[-9,0],[-13,1],[-8,0],[-7,0],[-13,0],[-14,1],[-13,0],[-7,0],[-7,0],[-4,1],[-3,0],[-7,0],[-11,0],[-4,0],[-13,0],[-3,0],[-11,0],[-14,0],[-13,1],[-14,0],[-3,0],[-1,0],[-15,0],[-13,0],[-10,1],[-5,0],[-2,0],[-7,0],[-13,0],[-2,0],[-1,0],[-12,0],[-26,0],[-1,0],[-13,0],[-15,0],[-7,0],[-7,1],[-5,0],[-1,0],[-8,0],[-13,0],[-10,0],[-4,0],[-13,0],[-3,0],[-12,0],[-8,0],[-2,0],[-4,0],[-2,0],[-20,1],[-6,0],[-6,0],[-3,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-6,0],[-3,0],[-6,0],[-2,0],[-1,0],[-13,0],[-37,0],[-27,0],[-13,1],[-20,0],[-8,0],[-8,0],[-7,0],[-13,0],[-30,1],[-12,0],[-13,0],[-7,0],[-36,0],[-6,0],[-2,0],[-4,0],[-7,0],[-19,0],[-6,0],[-12,0],[-23,0],[-3,0],[-29,0],[-12,0],[-21,0],[-6,0],[-15,0],[-2,0],[-3,0],[-8,0],[-16,0],[-11,0],[-3,0],[-8,0],[-9,0],[-7,0],[-18,0],[-10,0],[-11,0],[-3,0],[-3,0],[-11,0],[-4,0],[-11,0],[-2,0],[-28,1],[-7,0],[-2,0],[-21,0],[-1,0],[-5,0],[-2,0],[-2,0],[-4,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-9,0],[-1,0],[-20,0],[-8,0],[-19,0],[-21,0],[-7,0],[-8,0],[-18,0],[-2,0],[-8,0],[-3,0],[-8,0],[-9,0],[-8,0],[-4,0],[-9,1],[-8,0],[-2,0],[-4,0],[-17,0],[-3,0],[-8,0],[-21,0],[-7,0],[-6,1],[-1,0],[-13,0],[-3,0],[-4,0],[-21,0],[-7,0],[-13,0],[-7,0],[-1,0],[-2,0],[-2,0],[-2,0],[-10,0],[-11,1],[-7,0],[-9,-1],[-17,0],[-2,0],[-21,0],[-6,0],[-18,0],[-1,0],[-3,0],[-6,0],[-19,0],[-2,0],[-6,0],[-5,0],[-4,0],[-2,0],[-2,0],[-15,0],[-12,0],[-2,0],[-2,0],[-6,0],[-7,0],[-6,0],[-5,0],[-10,0],[-7,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-6,0],[-4,0],[-5,0],[-2,0],[-7,0],[-8,0],[-2,0],[-3,0],[-2,0],[-4,0],[-4,1],[-2,0],[-2,0],[-8,0],[-5,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-4,0],[-1,0],[-2,0],[-2,0],[-2,0],[-5,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-9,1],[-2,0],[-6,-1],[-4,1],[-1,0],[-2,-1],[-4,1],[-3,0],[-3,0],[-2,0],[-3,0],[-7,0],[-2,0],[-5,0],[-5,0],[-6,0],[-3,0],[-3,0],[-3,0],[-1,0],[-2,0],[-2,0],[-6,0],[-1,0],[-3,0],[-4,0],[-2,0],[-6,1],[-6,0],[-4,0],[-6,0],[-4,0],[-2,0],[-22,0],[-2,0],[-1,0],[-2,0],[-1,0],[-19,0],[-6,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-5,0],[-1,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-3,1],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,1],[-3,-1],[-3,1],[-2,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,0],[-1,0],[-5,0],[-9,0],[-1,0],[-4,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-5,0],[-3,0],[-2,0],[-2,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,1],[-14,0],[-4,-1],[-19,1],[-3,0],[-12,0],[-2,0],[-11,0],[-14,0],[-23,1],[-4,0],[-5,0],[-7,0],[-8,0],[-5,0],[-4,0],[-20,0],[-19,1],[-3,0],[-3,0],[-5,0],[-10,0],[-23,0],[-10,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-5,0],[-2,0],[-1,0],[-16,1],[-30,0],[-32,0],[-18,0],[-2,0],[-1,0],[-2,0],[-9,-1],[-39,1],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,1],[-2,-1],[-7,0],[-4,1],[-4,0],[-2,0],[-2,0],[-3,0],[-4,0],[-4,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-11,0],[-32,0],[-31,0],[-20,0],[-1,0],[-1,0],[-2,0],[-10,0],[-15,0],[-5,0],[-8,0],[-1,0],[-8,0],[-3,0],[-10,0],[-2,0],[-2,0],[-10,0],[-26,0],[-3,0],[-4,0],[-6,0],[-9,0],[-2,0],[-2,0],[-1,0],[-3,0],[-23,0],[-3,0],[-2,0],[-8,0],[-3,0],[-10,0],[-10,0],[-33,1],[-16,0],[-15,0],[-3,0],[-35,-1],[-4,0],[-15,0],[-4,0],[-4,1],[-2,-1],[-4,1],[-2,-1],[-1,0],[-14,0],[-6,0],[-5,0],[-9,0],[-14,0],[-4,0],[-16,0],[-6,0],[-4,0],[-3,0],[-2,0],[-1,0],[-10,0],[-5,0],[-3,0],[-6,0],[-2,0],[-2,0],[-3,0],[-20,0],[-2,0],[-1,0],[-6,0],[-9,1],[-3,0],[-4,0],[-1,0],[-25,0],[-27,-1],[-5,1],[-3,0],[-25,-1],[-6,0],[-9,0],[-6,0],[-2,1],[-5,-1],[-26,0],[-8,0],[-17,0],[-4,0],[-26,-1],[-8,0],[-2,0],[-13,0],[-2,0],[-13,0],[-14,1],[-28,1],[-4,0],[-2,0],[-2,0],[-9,0],[-4,0],[-11,0],[-4,0],[-9,0],[-11,0],[-4,0],[-15,0],[-5,0],[-2,0],[-11,0],[-6,0],[-5,0],[-9,0],[-3,0],[-17,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-22,0],[-5,0],[-7,1],[-18,-1],[-10,1],[-5,-1],[-16,0],[-19,0],[-9,0],[-5,0],[-2,0],[-5,0],[-15,1],[-5,0],[-2,-1],[-13,0],[-3,0],[-5,0],[-7,0],[-1,0],[-5,0],[-2,0],[-4,0],[-2,1],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-38,-1],[-14,0],[-11,-1],[-1,0],[-11,0],[-4,0],[-11,1],[-15,0],[-9,0],[-5,0],[-18,0],[-2,0],[-3,0],[-3,0],[-24,1],[-1,-1],[-13,0],[-15,0],[-12,1],[-6,0],[-6,0],[-1,0],[-15,0],[-3,0],[-3,0],[-3,0],[-1,0],[-3,0],[-19,0],[-18,0],[-41,0],[-6,0],[-5,0],[-5,0],[-10,0],[-7,0],[-1,0],[-17,0],[-11,0],[-18,0],[-2,0],[-3,0],[-1,0],[-7,0],[-5,0],[-9,0],[-11,0],[-13,0],[-5,0],[-1,0],[-5,0],[-4,0],[-2,0],[-4,0],[-2,0],[-3,0],[-2,0],[-5,0],[-2,0],[-1,0],[-3,0],[-3,0],[-2,0],[-1,0],[-4,0],[-2,0],[-1,0],[-2,0],[-7,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-4,0],[-4,0],[-3,0],[-21,0],[-8,1],[-4,0],[-10,0],[-12,0],[-3,0],[-13,0],[-10,0],[-13,0],[-16,0],[-1,1],[-16,0],[-14,0],[-21,-1],[-12,0],[-5,0],[-13,0],[-5,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-4,0],[-4,0],[-2,0],[-12,0],[-3,0],[-2,0],[-16,0],[-2,0],[-1,0],[-5,0],[-4,0],[-2,0],[-1,0],[-4,0],[-4,0],[-6,0],[-10,0],[-1,0],[-14,0],[-2,0],[-10,0],[-2,0],[-3,0],[-13,0],[-11,0],[-9,1],[-6,0],[-4,0],[-4,0],[-5,0],[-4,0],[-4,0],[-8,0],[-3,0],[-24,0],[-2,0],[-2,0],[-5,0],[-3,0],[-2,0],[-1,-1],[-2,0],[-5,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-5,0],[-8,0],[-3,0],[-1,0],[-3,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-5,1],[-3,-1],[-5,0],[-2,0],[-1,1],[-2,-1],[-2,0],[-1,0],[-12,1],[-2,0],[-5,0],[-3,0],[-13,0],[-4,0],[-1,0],[-2,0],[-1,0],[-4,0],[-4,0],[-2,0],[-2,0],[-26,0],[-3,0],[-14,0],[-10,0],[-2,0],[-2,1],[-2,1],[-1,1],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-1,0],[-7,0],[-6,0],[-16,0],[-5,0],[-5,0],[-2,0],[-14,0],[-1,0],[-4,0],[-5,0],[-3,0],[-2,0],[-22,0],[-4,0],[-2,0],[-2,0],[-1,0],[-8,0],[-10,0],[-1,0],[-5,0],[-13,0],[-10,0],[-2,0],[-1,0],[-1,0],[-4,0],[-2,0],[-1,0],[-10,0],[-2,0],[-4,0],[-13,0],[-7,0],[-26,0],[-1,0],[-2,0],[-2,1],[-1,0],[-2,-1],[-1,0],[-3,0],[-3,0],[-3,0],[-2,0],[-10,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-27,0],[-3,1],[-31,-1],[-3,0],[-13,0],[-2,0],[-2,0],[-1,0],[-15,0],[-10,0],[-1,0],[-2,0],[-11,0],[-2,0],[-14,0],[-2,0],[-26,0],[-27,0],[-4,0],[-18,0],[-6,1],[-13,0],[-1,0],[-1,0],[-18,0],[-7,0],[-3,0],[-3,0],[-22,0],[-4,0],[-2,0],[-2,0],[-5,0],[-2,0],[-3,0],[-32,0],[-5,0],[-2,0],[-14,0],[-6,0],[-51,0],[-6,0],[-5,0],[-6,0],[-21,0],[-13,0],[-44,0],[-3,0],[-8,0],[-2,0],[-9,0],[-5,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-6,0],[-5,0],[-5,0],[-2,0],[-4,-1],[-4,0],[-2,0],[-10,0],[-2,0],[-1,0],[-3,0],[-5,0],[-1,0],[-4,0],[-2,0],[-7,0],[-4,1],[-2,0],[-5,0],[-7,0],[-4,0],[-2,0],[-3,0],[-7,0],[-7,0],[-18,0],[-5,0],[-9,0],[-4,0],[-9,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-5,0],[-2,0],[-4,0],[-3,0],[-1,0],[-10,0],[-1,0],[-2,0],[-4,0],[-2,0],[-6,0],[-4,0],[-4,0],[-4,0],[-2,0],[-6,0],[-2,0],[-4,0],[-6,0],[-2,0],[-3,0],[-11,0],[-2,0],[-2,0],[-7,0],[-2,0],[-1,0],[-2,0],[-3,0],[-5,0],[-5,0],[-4,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-15,0],[-13,0],[-6,0],[-5,0],[-2,0],[-2,0],[-6,0],[-35,0],[-7,0],[-3,0],[-23,0],[-20,0],[-17,0],[-13,0],[-7,0],[-11,0],[-1,0],[-7,0],[-6,0],[-1,0],[-5,0],[-6,0],[-14,0],[-4,0],[-17,0],[-3,0],[-27,-1],[-2,0],[-2,0],[-25,1],[-2,0],[-7,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-4,0],[-3,0],[-3,0],[-4,0],[-10,0],[-27,0],[-2,0],[-8,0],[-10,0],[-7,-1],[-11,0],[-9,1],[-8,0],[-28,0],[-11,0],[-7,0],[-22,1],[-2,-1],[-2,0],[-2,1],[-2,-1],[-3,0],[-2,0],[-5,0],[-3,1],[-5,-1],[-10,0],[-39,0],[-6,0],[-10,0],[-34,0],[-4,0],[-8,0],[-2,0],[-2,0],[-7,0],[-5,0],[-6,0],[-2,0],[-13,0],[-4,0],[-29,0],[-7,0],[-4,0],[-17,0],[-12,0],[-3,0],[-7,0],[-46,0],[-4,0],[-10,0],[-28,0],[-35,0],[-4,0],[-4,0],[-4,0],[-3,0],[-16,0],[-10,0],[-3,0],[-17,-1],[-4,1],[-4,0],[-5,0],[-2,0],[-3,0],[-8,0],[-22,0],[-37,0],[-2,0],[-24,0],[-15,0],[-10,0],[-14,0],[-3,0],[-28,0],[-10,0],[-1,0],[-2,0],[-16,0],[0,18],[0,33],[-1,44],[0,8],[0,36],[0,9],[0,26],[-1,5],[1,58],[0,7],[0,14],[0,3],[0,10],[0,20],[0,35],[0,30],[0,17],[0,36],[0,16],[0,4],[0,36],[0,33],[0,9],[0,7],[1,14],[0,16],[0,11],[0,10],[0,7],[0,11],[0,3],[0,21],[0,1],[0,4],[0,69],[0,57],[0,59],[0,53],[0,18],[0,15],[0,10],[0,15],[0,6],[0,3],[0,2],[0,51],[0,17],[0,7],[0,7],[0,2],[0,46],[0,7],[0,3],[0,3],[0,7],[0,14],[0,10],[0,31],[0,21],[0,12],[0,14],[0,17],[0,1],[0,36],[0,8],[0,3],[0,4],[0,9],[0,5],[0,4],[0,9],[0,27],[0,15],[0,2],[0,15],[0,38],[0,11],[0,9],[0,14],[0,4],[-1,16],[0,13],[0,5],[1,90],[0,3],[0,24],[0,20],[0,38],[0,1],[0,6],[0,39],[0,25],[0,7],[0,8],[0,20],[0,19],[0,25],[0,1],[0,48],[1,20],[0,12],[0,52],[0,19],[0,23],[0,7],[0,59],[0,25],[0,16],[0,23],[0,12],[-1,5],[0,20],[0,66],[0,8],[0,10],[0,30],[0,4],[0,11],[0,29],[0,10],[0,51],[0,36],[0,31],[0,6],[0,21],[0,6],[0,14],[0,23],[0,6],[0,8],[0,17],[0,10],[0,4],[0,3],[0,24],[0,5],[-1,4],[1,3],[0,5],[0,7],[0,4],[0,4],[0,6],[0,10],[0,15],[0,6],[0,9],[0,6],[0,10],[0,4],[0,4],[0,7],[0,5],[0,4],[0,8],[0,9],[0,7],[0,7],[0,8],[0,9],[0,5],[0,6],[0,5],[0,6],[0,7],[0,5],[0,6],[0,7],[0,8],[0,23],[0,10],[0,4],[0,3],[0,4],[0,4],[0,7],[0,7],[0,7],[0,3],[0,4],[-1,4],[0,6],[0,3],[0,4],[0,5],[1,4],[0,4],[-1,31],[1,4],[-1,4],[0,3],[0,5],[1,1],[-1,4],[0,4],[0,20],[0,3],[0,6],[0,9],[0,7],[0,5],[0,20],[0,4],[0,43],[1,5],[0,6],[0,27],[0,8],[-1,5],[1,3],[0,11],[0,10],[0,18],[0,4],[-1,8],[1,8],[0,8],[0,6],[0,7],[0,3],[0,5],[0,7],[0,38],[0,3],[0,5],[0,2],[0,2],[0,7],[0,12],[0,9],[0,5],[0,6],[0,5],[0,6],[0,4],[0,3],[0,13],[0,7],[0,5],[0,5],[0,6],[0,11],[0,3],[0,7],[0,15],[0,4],[0,3],[0,5],[0,4],[0,6],[0,5],[0,5],[0,5],[0,4],[0,4],[0,4],[0,4],[0,9],[0,5],[0,4],[0,4],[0,3],[0,4],[0,6],[0,9],[0,5],[0,8],[0,7],[0,6],[1,8],[0,5],[0,8],[0,4],[-1,5],[1,4],[0,5],[0,4],[0,5],[0,8],[0,7],[0,4],[0,4],[0,7],[0,7],[0,5],[0,3],[0,8],[-1,4],[1,6],[0,5],[0,4],[0,3],[0,5],[0,4],[0,4],[0,12],[0,16],[0,3],[-1,9],[0,10],[1,29],[0,3],[0,5],[0,4],[0,5],[0,9],[0,8],[0,8],[0,5],[0,4],[0,41],[0,11],[0,9],[0,1],[0,18],[0,6],[0,9],[0,5],[0,8],[0,1],[0,38],[0,8],[0,8],[0,11],[0,4],[0,6],[0,1],[0,5],[0,3],[0,7],[0,19],[0,15],[-1,31],[0,5],[0,4],[0,28],[0,5],[0,13],[0,12],[0,10],[0,8],[0,17],[0,5],[0,5],[0,17],[0,2],[0,30],[0,38],[0,5],[0,16],[0,15],[0,9],[0,14],[0,6],[0,4],[1,20],[0,5],[0,6],[0,6],[0,4],[0,4],[0,1],[0,7],[0,10],[0,19],[-1,18],[0,20],[0,15],[0,7],[0,5],[0,24],[0,24],[0,42],[1,5],[0,4],[0,4],[0,5],[0,4],[0,3],[0,4],[0,4],[-1,4],[1,3],[-1,4],[1,48],[0,15],[0,1],[0,22],[0,2],[0,11],[0,46],[0,13],[0,17],[0,27],[0,4],[-1,14],[1,22],[0,54],[0,11],[0,5],[0,5],[0,14],[0,6],[0,5],[0,10],[0,5],[0,6],[0,12],[0,17],[0,35],[0,24],[0,9],[1,50],[0,18],[0,7],[0,13],[0,4],[0,14],[0,4],[0,11],[0,6],[0,6],[0,4],[0,3],[0,10],[0,13],[0,42],[0,6],[0,18],[0,30],[0,14],[0,17],[0,12],[0,29],[0,7],[0,6],[0,12],[0,21],[0,9],[0,30],[0,26],[0,15],[0,7],[0,51],[1,28],[0,9],[0,1],[0,20],[0,4],[0,18],[0,16],[0,16],[0,2],[0,12],[0,23],[0,93],[0,21],[0,9],[0,64],[0,4],[0,10],[0,14],[0,6],[0,1],[0,6],[0,5],[0,2],[0,3],[0,3],[0,12],[1,28],[0,24],[0,6],[0,4],[0,11],[0,19],[0,4],[0,9],[0,11],[0,4],[0,3],[0,5],[0,5],[0,5],[0,3],[0,4],[0,7],[0,4],[0,5],[0,8],[0,6],[0,11],[1,9],[0,5],[0,12],[0,10],[0,14],[0,4],[0,3],[0,4],[0,5],[0,5],[0,4],[0,4],[0,6],[0,5],[0,3],[0,6],[0,3],[0,4],[0,6],[0,3],[0,6],[0,5],[0,3],[0,17],[0,5],[0,17],[0,4],[0,5],[0,7],[0,9],[0,8],[0,4],[0,7],[0,5],[-1,4],[0,10],[0,23],[0,3],[0,18],[0,56],[0,4],[0,30],[-1,4],[0,10],[0,4],[0,8],[0,22],[0,11],[0,4],[0,4],[0,13],[-1,31],[0,6],[0,2],[0,2],[0,9],[0,12],[0,5],[0,3],[0,4],[0,12],[0,4],[0,8],[0,8],[0,4],[0,5],[0,5],[0,5],[0,6],[0,1],[0,8],[0,1],[0,9],[0,6],[0,6],[0,6],[0,4],[0,20],[-1,19],[0,5],[0,17],[0,14],[0,5],[0,20],[0,103],[0,13],[0,13],[0,43],[0,43],[0,1],[0,7],[-1,45],[0,20],[0,6],[0,14],[0,1],[0,5],[0,4],[0,6],[0,9],[0,41],[0,4],[0,6],[0,5],[0,4],[0,5],[0,4],[0,4],[0,4],[0,7],[0,4],[0,4],[0,4],[0,4],[0,4],[0,6],[0,4],[0,4],[0,5],[0,4],[0,7],[0,14],[0,7],[0,5],[0,14],[0,69],[0,13],[0,30],[0,5],[0,11],[0,13],[0,10],[0,6],[0,3],[-1,6],[0,5],[1,4],[0,6],[0,5],[0,5],[0,4],[-1,3],[0,13],[0,5],[0,15],[0,4],[0,16],[0,9],[0,10],[0,11],[0,5],[0,4],[0,4],[0,3],[0,4],[0,3],[0,5],[1,4],[-1,4],[0,4],[0,7],[0,11],[0,26],[0,5],[0,7],[0,10],[0,11],[0,10],[0,11],[0,5],[0,27],[0,10],[0,9],[0,34],[0,15],[0,51],[0,4],[0,4],[0,10],[0,6],[-1,5],[0,19],[0,6],[0,4],[0,38],[0,4],[0,24],[0,33],[0,7],[0,1],[0,2],[0,13],[0,7],[0,12],[0,20],[0,18],[0,4],[0,14],[0,4],[0,11],[0,14],[0,10],[0,9],[0,5],[0,12],[0,4],[0,6],[-1,6],[0,17],[0,19],[0,7],[0,4],[0,12],[0,15],[0,4],[0,18],[0,16],[0,25],[0,5],[0,5],[0,5],[0,6],[0,4],[0,6],[0,7],[0,4],[0,2],[0,11],[0,11],[0,4],[0,11],[0,14],[0,5],[0,9],[0,11],[0,9],[0,5],[0,8],[0,4],[0,9],[0,24],[0,10],[0,5],[0,8],[0,10],[0,12],[0,12],[0,4],[0,4],[0,14],[0,6],[0,5],[0,5],[0,11],[0,14],[0,8],[0,13],[0,14],[0,8],[0,7],[0,7],[0,11],[0,12],[0,3],[0,3],[0,7],[0,4],[0,7],[0,6],[0,6],[0,7],[0,4],[0,4],[0,7],[0,5],[0,8],[0,5],[0,4],[0,12],[0,4],[0,4],[0,5],[0,3],[0,5],[0,4],[0,5],[0,5],[0,13],[0,8],[0,40],[0,5],[0,42],[-1,5],[0,5],[0,5],[0,7],[0,6],[0,8],[0,7],[0,5],[0,5],[0,9],[0,6],[0,7],[0,6],[0,6],[0,12],[-1,5],[-1,4],[0,5],[1,4],[1,3],[0,6],[0,8],[0,3],[0,4],[0,6],[0,14],[0,15],[0,18],[0,6],[0,26],[0,11],[0,5],[0,20],[0,5],[0,6],[0,4],[0,5],[0,9],[0,5],[0,10],[0,25],[0,14],[0,4],[0,9],[0,13],[0,7],[0,7],[0,18],[0,7],[0,13],[0,3],[0,9],[0,7],[0,13],[0,4],[0,17],[0,7],[0,8],[0,11],[0,12],[0,6],[0,6],[0,4],[-1,4],[1,5],[0,3],[0,1],[-1,3],[0,3],[0,1],[1,7],[0,6],[0,5],[0,6],[0,14],[0,27],[0,7],[0,8],[0,7],[0,3],[-1,4],[0,3],[1,4],[0,4],[0,8],[0,9],[0,3],[-1,6],[0,6],[0,5],[0,8],[0,4],[1,5],[0,4],[-1,4],[0,5],[0,4],[0,5],[0,4],[0,4],[1,17],[0,6],[0,5],[-1,6],[0,4],[0,6],[0,4],[1,5],[-1,3],[1,3],[0,4],[0,9],[0,3],[0,5],[0,4],[0,3],[0,4],[0,4],[0,4],[0,4],[0,5],[0,4],[0,3],[0,4],[0,8],[0,8],[0,6],[0,4],[0,9],[0,4],[0,3],[0,4],[0,5],[0,4],[0,10],[0,11],[0,12],[0,8],[0,4],[41,0],[23,0],[36,-1],[54,0],[53,0],[56,0],[50,0],[6,0],[49,0],[50,-1],[30,0],[38,0],[38,0],[37,0],[38,0],[43,0],[35,0],[34,0],[31,0],[7,0],[1,0],[44,0],[50,0],[47,0],[40,0],[48,0],[41,0],[32,0],[41,0],[35,0],[52,0],[44,0],[49,0],[42,0],[14,0],[48,0],[15,0],[1,0],[31,0],[46,0],[11,0],[38,0],[36,0],[43,0],[19,0],[11,0],[39,0],[12,0],[14,0],[42,-1],[46,0],[36,0],[38,0],[36,0],[49,0],[55,0],[2,0],[2,0],[2,0],[34,0],[47,-1],[42,0],[56,0],[49,0],[40,0],[44,0],[45,0],[7,0],[1,0],[1,0],[13,0],[26,0],[25,0],[10,0],[14,0],[37,0],[45,0],[45,0],[50,0],[39,0],[34,0],[12,0],[16,0],[26,1],[20,0],[12,0],[34,0],[43,0],[56,0],[28,0],[34,0],[35,0],[40,0],[38,1],[36,0],[34,0],[35,0],[25,0],[1,0],[14,0],[39,0],[39,0],[39,0],[31,0],[13,0],[19,0],[34,0],[29,0],[49,0],[40,0],[8,0],[36,0],[32,0],[12,0],[4,0],[3,0],[1,0],[36,0],[19,0],[25,1],[40,0],[48,0],[41,0],[48,0],[46,0],[42,0],[26,0],[1,0],[16,0],[45,0],[7,0],[11,0],[3,0],[27,0],[31,0],[39,0],[39,0],[49,0],[50,0],[35,0],[36,-1],[42,0],[14,0],[56,0],[39,0],[40,0],[35,0],[1,0],[1,0],[39,0],[18,0],[56,0],[55,0],[32,0],[52,0],[2,0],[17,0],[1,0],[28,0],[34,0],[58,0],[25,0],[32,0],[19,0],[10,0],[20,0],[10,0],[50,0],[37,0],[56,0],[20,0],[1,0],[32,0],[42,0],[25,0],[61,0],[36,0],[42,0],[38,0],[36,0],[52,-1],[30,1],[28,0],[27,0],[23,0],[52,0],[1,0],[54,0],[43,0],[34,0],[26,0],[20,0],[22,0],[37,0],[38,0],[38,1],[40,0],[43,0],[5,0],[16,0],[25,0],[9,0],[33,0],[33,0],[19,0],[14,0],[29,0],[29,0],[34,0],[21,0],[49,1],[41,0],[31,0],[29,0],[4,0],[29,0],[20,0],[11,0],[3,0],[26,0],[29,0],[27,0],[1,0],[2,0],[1,0],[18,0],[10,0],[30,0],[29,0],[30,0],[29,0],[29,0],[30,1],[28,0],[31,0],[29,0],[28,0],[1,0],[27,0],[4,0],[29,0],[29,0],[29,0],[30,0],[29,0],[30,0],[29,0],[30,0],[29,0],[25,0],[4,0],[29,0],[30,0],[29,0],[27,0],[1,0],[2,0],[29,0],[29,0],[30,0],[29,0],[26,0],[12,0],[48,0],[6,0],[26,0],[29,0],[29,0],[28,0],[2,0],[29,0],[29,0],[30,0],[30,1],[29,0],[29,0],[29,0],[22,0],[1,0],[8,0],[28,0],[18,0],[1,0],[11,0],[29,0],[29,0],[30,0],[27,0],[32,0],[29,0],[31,0],[28,0],[29,0],[29,0],[30,0],[29,0],[30,0],[29,0],[30,0],[16,0],[1,0],[12,0],[29,0],[30,0],[29,0],[30,0],[29,0],[29,0],[30,0]]],"transform":{"scale":[0.0007495269533953401,0.0003065776533653267],"translate":[-104.05002278699993,45.9350831540001]}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment