Skip to content

Instantly share code, notes, and snippets.

@dhoboy
Last active October 21, 2016 10:11
Show Gist options
  • Save dhoboy/afcb4bfaed1a7e10fc79d06f10600f43 to your computer and use it in GitHub Desktop.
Save dhoboy/afcb4bfaed1a7e10fc79d06f10600f43 to your computer and use it in GitHub Desktop.
Pacific Coast Highway
height: 700
width: 500
border: no

Wiggling along the Pacific Coast Highway. Inspired by lots of driving up and down this road. Thanks to clhenrick and veltman for thinking through the linestring ordering with me. Data from Natural Earth. Point along path interpolation from Mike Bostock.

<!doctype html>
<meta charset="utf-8">
<style>
.westcoast {
stroke: none;
fill: #b8b8b8;
}
.pch {
fill: none;
stroke: red;
stroke-width: 2px;
}
.ball {
fill: #000;
}
.interior-boundary {
fill: none;
stroke: #fff;
stroke-opacity: 0.8;
stroke-dasharray: 8,6;
}
</style>
<body>
<script src="http://d3js.org/d3.v4.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script>
var width = 500;
var height = 900;
var projection = d3.geoAlbers()
.scale(2400)
.translate([850,550])
var path = d3.geoPath()
.projection(projection)
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height)
.append("g")
.attr("transform", "rotate(-13)");
d3.json("westcoast_pch.json", function(data) {
/* map */
svg.append("path")
.datum(topojson.feature(data, data.objects.westcoast))
.attr("d", path)
.attr("class", "westcoast")
/* interior boundaries between states */
svg.append("path")
.datum(topojson.mesh(data, data.objects.westcoast, function(a, b) {
return a !== b;
}))
.attr("d", path)
.attr("class", "interior-boundary");
/* road */
var pch = svg.append("path")
.datum(topojson.feature(data, data.objects.pch))
.attr("d", path)
.attr("class", "pch")
/* wiggle */
var circle = svg.append("circle")
.attr("r", 3)
.attr("class", "ball")
.attr("transform", "translate(0,0)")
circle
.transition()
.duration(20000)
.attrTween("transform", translateAlong(pch.node()));
/* https://bl.ocks.org/mbostock/1705868 */
// Returns an attrTween for translating along the specified path element.
function translateAlong(path) {
var l = path.getTotalLength();
return function(d, i, a) {
return function(t) {
var p = path.getPointAtLength(t * l);
return "translate(" + p.x + "," + p.y + ")";
};
};
}
});
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"westcoast":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","id":"Washington","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23,24]]]},{"type":"MultiPolygon","id":"California","arcs":[[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37,38]]]},{"type":"MultiPolygon","id":"Oregon","arcs":[[[-24,39,-38,40]],[[41]]]}]},"pch":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[42]},{"type":"LineString","arcs":[43]},{"type":"LineString","arcs":[44]},{"type":"LineString","arcs":[45]},{"type":"LineString","arcs":[46]},{"type":"LineString","arcs":[47]},{"type":"LineString","arcs":[48,49]},{"type":"LineString","arcs":[50]},{"type":"LineString","arcs":[51]},{"type":"LineString","arcs":[52]},{"type":"MultiLineString","arcs":[[53,54],[55]]},{"type":"LineString","arcs":[56]},{"type":"LineString","arcs":[57]},{"type":"LineString","arcs":[58]},{"type":"LineString","arcs":[59]},{"type":"LineString","arcs":[60]},{"type":"LineString","arcs":[61]},{"type":"LineString","arcs":[62]},{"type":"LineString","arcs":[63]},{"type":"LineString","arcs":[64]},{"type":"LineString","arcs":[65]},{"type":"LineString","arcs":[66]},{"type":"LineString","arcs":[67]},{"type":"LineString","arcs":[68]},{"type":"LineString","arcs":[69]},{"type":"LineString","arcs":[70]},{"type":"LineString","arcs":[71]},{"type":"LineString","arcs":[72]},{"type":"LineString","arcs":[73]},{"type":"LineString","arcs":[74]},{"type":"LineString","arcs":[75]},{"type":"LineString","arcs":[76]},{"type":"LineString","arcs":[77]},{"type":"LineString","arcs":[78,79]},{"type":"LineString","arcs":[80]},{"type":"LineString","arcs":[81]},{"type":"LineString","arcs":[82]},{"type":"LineString","arcs":[83]},{"type":"LineString","arcs":[84]},{"type":"LineString","arcs":[85]},{"type":"LineString","arcs":[86]},{"type":"LineString","arcs":[87]},{"type":"LineString","arcs":[88]},{"type":"LineString","arcs":[89]},{"type":"LineString","arcs":[90]},{"type":"LineString","arcs":[91]},{"type":"LineString","arcs":[92]},{"type":"LineString","arcs":[93,94]},{"type":"LineString","arcs":[95]},{"type":"LineString","arcs":[96]},{"type":"LineString","arcs":[97]},{"type":"LineString","arcs":[98]},{"type":"LineString","arcs":[99]},{"type":"LineString","arcs":[100]},{"type":"LineString","arcs":[101]},{"type":"LineString","arcs":[102]},{"type":"LineString","arcs":[103]},{"type":"LineString","arcs":[104]},{"type":"LineString","arcs":[105]},{"type":"LineString","arcs":[106,107]},{"type":"LineString","arcs":[108]},{"type":"LineString","arcs":[109]},{"type":"LineString","arcs":[110]},{"type":"LineString","arcs":[111]},{"type":"LineString","arcs":[112]},{"type":"LineString","arcs":[113]},{"type":"LineString","arcs":[114]},{"type":"LineString","arcs":[115]},{"type":"LineString","arcs":[116]},{"type":"LineString","arcs":[117]},{"type":"LineString","arcs":[118]}]}},"arcs":[[[1337,8271],[-21,0],[-19,2],[-18,3],[-19,8],[-13,4],[-9,6],[-3,1],[6,11],[11,-3],[16,-6],[21,-7],[16,-8],[23,-7],[9,-4]],[[743,8435],[-17,-7],[-10,21],[-22,8],[6,12],[1,9],[9,5],[6,-2],[3,-5],[7,-3],[15,-10],[1,-9],[1,-19]],[[1915,8864],[-5,0],[-8,3],[-8,2],[-13,6],[-4,1],[-4,6],[8,3],[8,2],[5,6],[5,5],[12,1],[19,-1],[9,-2],[4,-7],[-1,-6],[-4,-10],[-12,-6],[-11,-3]],[[1766,8897],[-13,-6],[-6,2],[-2,5],[-6,8],[-2,4],[-7,6],[-13,6],[-10,6],[0,5],[7,11],[3,9],[6,5],[14,0],[8,3],[16,4],[6,1],[11,4],[-5,-8],[-14,-4],[-1,-6],[0,-8],[-1,-8],[10,-7],[10,-7],[0,-7],[0,-9],[-11,-9]],[[2178,9037],[15,-5],[18,-4],[19,-6],[-7,-1],[-41,-7],[-30,-14],[-18,-7],[-5,8],[1,8],[6,6],[14,3],[9,3],[2,6],[-6,5],[-15,-2],[7,-4],[-19,-4],[-9,-3],[-5,-3],[0,-12],[-2,-6],[-4,-5],[-6,-3],[-7,0],[-7,4],[-9,5],[-4,6],[4,6],[6,5],[3,4],[7,46],[6,7],[14,9],[17,8],[15,3],[-6,-9],[4,-4],[8,-3],[7,-5],[2,-6],[1,-13],[3,-6],[12,-10]],[[2109,9154],[2,-4],[5,-3],[7,-2],[-7,-3],[-10,-6],[-21,1],[-20,13],[-14,2],[-13,-1],[-7,3],[8,10],[2,7],[-6,5],[-5,7],[-1,8],[1,4],[17,10],[3,6],[-1,6],[1,5],[10,2],[9,-1],[11,-3],[9,-5],[5,-4],[5,-19],[6,-9],[9,-5],[-7,-4],[-5,-3],[-8,-1],[11,-5],[-1,-5],[4,-3],[1,-3]],[[1938,9426],[4,-15],[-8,-10],[-18,0],[-16,9],[-13,12],[-5,8],[-4,11],[2,5],[9,1],[6,-5],[2,-13],[4,-4],[14,1],[0,9],[-10,12],[-16,8],[10,3],[9,0],[7,-3],[14,-14],[9,-15]],[[2023,9634],[2,-5],[2,-2],[3,-2],[2,-12],[58,-21],[-2,-17],[-12,-6],[-15,-2],[-15,3],[-13,7],[-17,6],[-14,-5],[-11,-11],[-6,-9],[-13,13],[-5,-4],[-2,-11],[-3,-8],[-13,-5],[-55,-5],[13,-7],[13,-1],[29,4],[13,-2],[22,-6],[11,-1],[20,-4],[14,-10],[9,-14],[12,-27],[3,-34],[8,-30],[10,-6],[13,3],[11,15],[-12,13],[-1,13],[10,7],[19,-7],[16,-8],[15,-7],[75,-23],[14,-10],[6,-14],[8,-10],[4,-6],[-2,-3],[-6,-2],[-17,-14],[-5,-3],[-3,-4],[-4,-2],[-6,0],[-2,4],[-1,3],[-4,2],[-21,-4],[-12,-1],[-6,3],[-2,13],[-6,13],[-10,12],[-15,5],[-11,-1],[-18,-9],[-10,-2],[-12,0],[-8,3],[-8,5],[-14,4],[-17,11],[-12,13],[1,10],[-17,11],[-4,9],[13,33],[-6,15],[-15,5],[-20,-1],[-23,-6],[-23,18],[-6,2],[-10,2],[-13,3],[-12,4],[-7,4],[-11,15],[4,12],[78,69],[11,13],[25,0],[13,3],[10,5],[10,2],[8,-6]],[[1805,9689],[-2,-1],[-3,1],[3,7],[-2,4],[-4,1],[-3,2],[-8,4],[0,2],[5,3],[9,3],[31,-1],[-3,-1],[-1,-4],[4,-2],[2,0],[-2,-3],[-11,-8],[-13,-5],[-2,-2]],[[1776,9677],[12,-1],[15,7],[11,-9],[2,-9],[-6,-9],[-14,-6],[-58,4],[6,10],[-15,4],[-21,2],[-15,5],[-5,10],[5,11],[12,8],[13,4],[-5,6],[-1,6],[4,5],[2,3],[22,11],[10,1],[15,-16],[2,-11],[-3,-20],[3,-10],[9,-6]],[[2031,9724],[-1,-4],[-5,-1],[-9,3],[-8,0],[-20,-4],[-18,0],[-11,8],[4,15],[-3,2],[0,6],[4,4],[7,-1],[15,-9],[42,-14],[3,-5]],[[1689,9748],[4,-2],[4,1],[0,3],[3,1],[6,1],[8,-1],[4,-4],[-5,-6],[-5,-2],[-3,0],[-4,-1],[-6,1],[-4,-1],[-3,-1],[-2,-2],[-1,-4],[-6,-2],[-31,4],[-2,4],[4,1],[-1,1],[-10,7],[-4,1],[-12,1],[-4,2],[1,2],[12,0],[30,5],[9,-3],[18,-1],[1,-2],[-1,-3]],[[1922,9726],[-8,-1],[-11,0],[-8,4],[-13,18],[1,8],[8,6],[11,3],[12,-3],[6,-5],[2,-4],[15,-8],[3,-2],[-4,-3],[-6,-5],[-2,-6],[-6,-2]],[[1641,9708],[-9,-3],[-8,2],[-6,0],[-3,-8],[3,-1],[17,-15],[7,-3],[8,-2],[17,-3],[0,-5],[-14,3],[-10,0],[-11,-2],[-14,-1],[-12,2],[-8,3],[-7,4],[-8,4],[-11,4],[-4,1],[-20,-1],[-11,1],[-13,2],[-12,4],[-9,3],[-10,6],[-5,5],[-11,18],[-7,18],[0,3],[-3,13],[18,9],[27,4],[26,-7],[7,-7],[17,-8],[17,-7],[32,-6],[19,-14],[25,-5],[-2,-4],[-12,-7]],[[1950,9771],[1,-6],[-18,3],[-17,7],[7,1],[18,1],[6,-2],[3,-4]],[[1532,9782],[0,-1],[-31,3],[-9,2],[-13,3],[1,2],[10,-1],[6,-1],[13,-2],[11,-1],[7,-2],[3,-1],[2,-1]],[[1451,9807],[7,0],[8,3],[4,-1],[3,-1],[2,-3],[-3,-3],[-7,0],[-10,3],[-7,0],[2,-2],[8,-1],[2,-3],[-5,-2],[-43,12],[-3,4],[7,3],[15,-2],[7,-3],[1,-1],[12,-3]],[[1768,9827],[105,-27],[-4,-6],[-6,-3],[-41,-12],[-4,-4],[-1,-4],[-3,-4],[-11,-1],[-10,2],[-10,5],[-23,18],[-13,16],[-2,7],[-4,5],[-10,2],[-9,-1],[-4,-6],[2,-7],[2,-3],[1,-3],[-5,-5],[46,-34],[-12,-5],[-12,-3],[-28,0],[-15,2],[-8,6],[-4,7],[-5,6],[-16,7],[-11,2],[-5,-3],[-1,-9],[-3,-9],[-7,-4],[-12,5],[-12,8],[-4,5],[0,6],[5,3],[23,11],[7,3],[11,2],[45,24],[11,2],[20,1],[37,-2]],[[2001,9828],[-2,-9],[-8,-3],[-23,8],[-8,4],[8,-1],[11,1],[5,-2],[6,0],[3,1],[-2,5],[-1,1],[7,-2],[4,-3]],[[1622,9814],[-23,-7],[-4,1],[-2,9],[-3,1],[-18,4],[6,3],[12,4],[5,3],[25,2],[5,-3],[1,-11],[0,-3],[-4,-3]],[[1998,9790],[-7,-2],[-12,4],[-20,8],[-7,3],[-16,11],[-22,12],[-13,5],[-4,5],[5,9],[16,-3],[25,-18],[9,-4],[14,-4],[12,-5],[6,-4],[6,-5],[6,-6],[2,-6]],[[1735,9863],[9,-4],[-11,2],[-9,0],[-8,-3],[9,-3],[4,1],[12,-6],[-12,1],[-5,2],[-2,0],[3,-1],[-2,-2],[-7,2],[-3,1],[2,0],[-5,2],[-3,4],[3,0],[2,0],[0,1],[-4,1],[1,2],[12,1],[14,-1]],[[1601,9999],[-10,-5],[-40,-7],[-1,9],[-1,3],[52,0]],[[7400,8182],[-128,0],[-122,0],[-121,0],[-121,0],[-122,0],[-121,0],[-122,0],[-121,0],[-121,-1],[-122,0],[-121,0],[-121,0],[-122,0],[-121,0],[-122,0],[-121,0],[-43,0],[-9,0],[-39,-21],[-46,-10],[-234,-1],[-83,-8],[-47,-4],[-65,2],[-25,-2],[-16,-4],[-27,-15],[-39,-15],[-256,-20],[-138,-26],[-44,-4],[-17,-5],[-29,-13],[-25,-8],[-26,-5],[-14,-1],[-28,2],[-15,1],[-10,-2],[-36,-10],[-22,-4],[-11,0],[-48,4],[-8,-1],[-23,-5],[-11,-1],[-142,13],[-10,-1],[-25,-8],[-7,-3],[-3,-5],[-44,-8],[-68,-6],[-7,-2],[-41,-15],[-5,-1],[-13,0],[-40,-5],[-40,2],[-14,3],[-10,0],[-31,0],[-6,0],[-10,1],[-20,1],[-5,-1],[-83,-17],[-21,-1],[-17,6],[-13,12],[-7,11],[-10,9],[-19,7],[-44,7],[-281,13],[-139,-12],[-71,7],[-26,-2],[-40,-11],[-64,-24],[-38,-11],[-168,-29],[-71,-10],[-16,-5],[-18,-2],[-76,12],[-80,1],[-28,7],[-48,6],[-30,8],[-15,0],[-38,-5],[-73,7],[-24,6],[-22,8],[-16,8],[-9,11],[-6,13],[-4,24],[0,7],[4,11],[1,7],[-3,6],[-22,17],[0,14],[4,12],[2,11],[-18,21],[-7,28],[-6,10],[-13,8],[-15,5],[-13,7],[-10,23],[-13,14],[-16,12],[-18,10],[-23,9],[-30,8],[-31,6],[-28,2],[-13,3],[-34,12],[-12,5],[-18,3],[-57,-5],[-5,0],[-3,0]],[[1464,8290],[0,1],[-26,-1],[-37,-10],[-21,-7],[-27,0],[-29,9],[-61,23],[-18,10],[-14,12],[-16,11],[-10,5],[-22,6],[-117,-10],[-56,6],[-5,4],[-2,6],[-5,5],[-17,7],[-8,-2],[-14,-1],[-7,0],[-2,-6],[-9,-2],[-11,2],[-5,-3],[-5,-5],[-6,-3],[-13,1],[-12,5],[-15,0],[-8,-5],[-3,-4],[-15,0],[-7,-4],[-9,-1],[-3,-5],[-7,-2],[-10,-5],[-16,1],[-17,3],[-17,3],[-13,8],[-9,3],[-17,15],[-6,3],[-11,6],[-23,3],[-13,0],[-9,-5],[-7,-1],[-8,-5],[-3,-6],[11,-3],[2,-3],[-3,-2],[-10,0],[-9,2],[-9,-3],[-4,-2],[-5,2],[2,7],[1,7],[4,8],[4,9],[3,10],[2,11],[1,19],[2,31],[-2,95],[-9,29],[9,7],[11,-6],[14,-9],[-8,-4],[6,-10],[12,-10],[7,-13],[-8,-47],[2,-16],[2,-28],[8,-21],[19,-3],[15,2],[18,-3],[10,15],[15,7],[5,16],[6,-1],[9,-7],[33,-5],[27,-14],[6,12],[-15,6],[-23,5],[-16,4],[-2,4],[-1,6],[-3,1],[-6,1],[-7,2],[-6,3],[-11,2],[0,5],[1,9],[12,4],[14,4],[6,3],[5,5],[1,6],[-1,8],[-4,4],[-4,3],[-15,15],[-23,15],[-11,11],[17,-2],[26,-9],[15,-2],[-20,16],[-6,18],[11,15],[32,6],[31,2],[16,-2],[7,-11],[7,-7],[16,-1],[17,4],[12,6],[-30,2],[-21,10],[-20,12],[-26,10],[-15,2],[-16,6],[-11,-4],[-1,-8],[-37,-1],[-23,9],[-5,-12],[7,-6],[10,-2],[-8,-4],[-15,3],[-12,0],[-13,3],[-10,1],[-4,5],[-38,9],[-22,5],[-7,11],[0,28],[-13,25],[-15,22],[3,8],[15,8],[19,-7],[-6,-14],[19,-11],[5,-10],[13,1],[15,-3],[13,-3],[7,-1],[7,6],[-1,5],[-6,6],[-10,6],[-24,-5],[2,8],[8,10],[13,4],[25,0],[14,3],[27,9],[76,14],[65,11],[-14,4],[-16,-3],[-22,5],[-77,-1],[-5,3],[10,0],[21,5],[-40,2],[-45,0],[-6,6],[6,9],[-14,12],[-18,3],[-18,2],[-23,3],[-25,1],[-21,-5],[-9,-7],[2,-4],[9,-9],[0,-9],[-2,-6],[2,-6],[6,-7],[7,-6],[11,1],[6,-2],[-1,-7],[-15,5],[-15,2],[-10,-1],[-5,-3],[0,-5],[-9,-1],[-14,-2],[3,7],[-1,4],[0,7],[4,16],[0,37],[-2,15],[-5,25],[-19,49],[-11,23],[-15,23],[-15,16],[-10,7],[-21,0],[-4,7],[-18,21],[12,0],[8,-4],[6,1],[-11,5],[-24,1],[-8,3],[-29,86],[-2,29],[-23,37],[-8,17],[-26,32],[-5,22],[-6,10],[-12,2],[-11,3],[-8,7],[-20,10],[-6,21],[-55,13],[-14,12],[-11,10],[-24,4],[-15,-1],[-27,20],[-17,28],[-15,22],[-11,23],[-10,28],[5,16],[-32,30],[-11,13],[14,3],[19,10],[10,13],[-1,3],[-5,4],[-10,13],[2,2],[14,1],[6,7],[-1,13],[4,6],[14,9],[3,6],[-9,3],[1,6],[-8,1],[-10,1],[-13,6],[-15,6],[-11,9],[3,10],[29,2],[33,-3],[22,-2],[17,-9],[11,-1],[14,5],[17,-3],[41,-12],[70,-20],[55,-15],[49,-7],[9,-3],[39,-9],[21,-3],[22,4],[22,-3],[63,-16],[46,-10],[11,-9],[47,-14],[50,-3],[24,-4],[26,0],[23,-2],[43,-1],[11,-3],[41,3],[28,-5],[44,4],[39,3],[55,-8],[8,-6],[46,-4],[17,7],[14,3],[16,-4],[11,-6],[17,-1],[28,0],[37,6],[17,0],[12,-2],[-20,-2],[-13,-1],[-12,-2],[3,-4],[27,-4],[60,-1],[33,-1],[33,2],[38,-2],[22,4],[50,26],[20,8],[39,4],[-9,-3],[-12,-3],[-13,-7],[-16,-7],[15,0],[32,-1],[21,-13],[24,-6],[22,-20],[-5,-16],[15,-8],[20,-4],[11,0],[-9,24],[7,8],[39,3],[15,1],[13,-2],[6,-6],[2,-9],[8,-3],[10,0],[12,-2],[14,-8],[14,-12],[4,-12],[-19,-5],[0,-5],[18,1],[12,6],[16,19],[-12,8],[-37,18],[-5,8],[4,9],[9,8],[11,3],[31,4],[27,6],[23,0],[19,-15],[-9,-3],[-23,-5],[-7,-4],[0,-9],[7,-6],[8,-4],[5,-4],[6,-9],[39,-31],[8,-4],[18,-5],[6,-3],[3,-5],[3,-13],[4,-5],[49,-28],[6,-7],[-8,-3],[-28,0],[-9,-1],[-8,-6],[-7,-11],[-8,-7],[-42,-23],[-13,-12],[-17,-22],[-6,-12],[-3,-10],[-3,-6],[-8,-5],[-10,-2],[-11,-1],[-16,3],[0,6],[10,12],[17,39],[1,18],[-6,22],[-11,-8],[-1,-12],[-3,-11],[-17,-6],[-1,12],[-6,11],[-9,3],[-10,-10],[1,-9],[7,-11],[18,-18],[-21,-8],[-14,-14],[-9,-13],[-17,-9],[-5,-14],[-8,-4],[-12,-1],[-10,-5],[-75,-42],[-11,-9],[-30,-35],[-15,-8],[-20,-9],[-17,-9],[-13,-23],[-23,-24],[-3,-10],[29,-9],[53,2],[159,31],[32,9],[30,13],[-27,3],[-37,-8],[-65,-20],[-71,-14],[-38,0],[-20,14],[3,9],[10,9],[26,15],[8,7],[39,40],[69,45],[13,4],[58,17],[71,13],[21,5],[12,5],[6,8],[13,27],[9,10],[93,59],[10,4],[10,2],[17,-2],[1,-4],[-3,-6],[5,-4],[20,-2],[4,9],[-4,13],[-16,29],[-4,5],[-18,14],[-2,6],[57,-15],[23,-9],[10,-15],[1,-9],[6,-21],[6,-6],[10,-5],[3,-6],[-13,-10],[9,-1],[9,-2],[9,-4],[6,-5],[1,-7],[-5,-5],[-6,-4],[-3,-3],[-9,-1],[-46,5],[-16,-2],[2,-7],[-8,-9],[-14,-9],[-15,-4],[-53,25],[-9,-2],[3,-7],[7,-4],[8,-3],[8,-4],[5,-4],[34,-59],[-7,-4],[7,-4],[-23,-6],[-26,14],[-35,34],[-7,-5],[-5,-6],[-3,-7],[1,-8],[6,-8],[8,-4],[33,-8],[7,0],[0,-1],[-8,-8],[-9,-6],[-18,-9],[-5,-6],[48,10],[22,7],[20,8],[31,9],[9,-10],[2,-16],[7,-8],[24,-4],[-1,-11],[-13,-13],[-7,-11],[-7,-16],[-13,-14],[-4,-13],[17,-13],[-7,-9],[-9,-6],[-13,-4],[-16,-2],[24,-21],[3,-10],[-11,-13],[-14,0],[-73,15],[-24,8],[3,5],[13,6],[8,8],[7,10],[14,8],[10,10],[-5,15],[-7,-11],[-12,-6],[-33,-7],[-7,-4],[-6,-4],[-7,-4],[-9,-1],[-6,-2],[-2,-5],[-1,-7],[-4,-5],[-14,-10],[-5,-9],[6,-8],[22,-17],[-1,-4],[-6,-3],[-5,-5],[0,3],[-5,-1],[-5,-4],[-3,-2],[2,-1],[3,-4],[2,-4],[0,-4],[-28,-11],[-25,19],[-15,28],[0,14],[18,4],[9,10],[2,11],[0,17],[-2,5],[-5,8],[-6,4],[-8,3],[-4,5],[5,8],[-14,-9],[-15,-29],[-9,-11],[-23,-11],[-14,-4],[-12,-2],[-15,-2],[-6,-4],[-28,-46],[-14,-13],[-24,-10],[-50,-7],[-24,-5],[-9,-9],[14,4],[21,4],[18,0],[4,-8],[-11,-6],[-18,-2],[-18,-3],[-10,-10],[18,4],[80,27],[5,0],[4,2],[21,17],[12,-2],[-5,-9],[-41,-36],[-13,-6],[-17,-5],[22,-1],[21,5],[18,11],[10,14],[5,-6],[2,-7],[-2,-6],[-5,-6],[9,-7],[7,-13],[9,-5],[14,-1],[1,7],[-7,8],[-8,7],[12,6],[-1,7],[-4,8],[0,8],[8,7],[37,14],[6,-6],[-1,-6],[-4,-5],[-7,-4],[13,1],[14,3],[10,3],[-1,2],[-1,9],[5,3],[18,-5],[8,-5],[7,-7],[9,-6],[23,-4],[12,-6],[9,-6],[3,-7],[35,9],[31,14],[76,50],[21,20],[12,22],[-1,23],[17,-7],[33,-9],[34,-13],[15,-2],[13,2],[18,7],[-17,5],[-9,5],[-2,5],[7,7],[12,5],[17,5],[18,4],[31,4],[10,7],[5,9],[-2,11],[-7,8],[-26,16],[-6,7],[0,26],[-3,8],[-10,8],[-7,6],[-18,28],[-2,5],[6,4],[12,7],[12,2],[10,-7],[10,-8],[10,-6],[5,13],[1,9],[-5,8],[-14,8],[-42,8],[-9,2],[-9,6],[-5,6],[3,2],[11,2],[4,4],[3,6],[6,5],[14,10],[4,7],[-3,10],[-3,10],[-10,6],[-8,9],[2,12],[5,10],[7,8],[9,7],[28,11],[12,10],[2,13],[3,10],[9,8],[0,6],[4,5],[7,3],[19,6],[7,4],[8,2],[33,4],[8,3],[19,5],[4,8],[1,9],[7,3],[4,2],[4,2],[-1,3],[-8,2],[-6,2],[-13,0],[-15,-7],[-66,24],[-31,15],[-20,20],[-6,22],[2,19],[-9,14],[-39,7],[-5,2],[-6,2],[-7,2],[-8,-2],[-4,-6],[3,-12],[-20,-6],[-2,-9],[3,-11],[8,-10],[9,-5],[15,-8],[16,-6],[14,-2],[15,-4],[14,-10],[20,-19],[-17,0],[-11,4],[-18,13],[-8,3],[-79,26],[-20,11],[-15,14],[-7,15],[2,15],[-2,18],[33,2],[32,4],[18,1],[15,-2],[11,-4],[8,-6],[8,-4],[11,3],[-4,6],[3,6],[14,13],[-4,3],[-2,6],[-4,5],[-5,3],[-32,13],[-28,7],[-22,11],[-12,3],[-14,2],[-16,0],[-10,4],[-19,16],[-12,5],[0,5],[14,6],[-7,4],[-14,2],[-10,0],[-7,-2],[-15,-11],[-7,-4],[-14,-3],[-15,-1],[-15,2],[-11,4],[-9,10],[5,6],[9,4],[5,5],[-6,11],[-12,4],[-14,2],[-7,2],[2,8],[13,1],[15,-1],[12,3],[26,8],[18,-10],[15,-16],[16,-9],[0,15],[11,3],[17,-4],[22,-13],[12,-5],[13,-1],[11,2],[8,6],[1,4],[-3,4],[-2,5],[-3,17],[-6,10],[-8,8],[-12,9],[-38,11],[-10,6],[19,2],[20,-4],[38,-14],[16,-3],[19,5],[7,11],[-4,14],[-12,12],[-9,3],[-8,2],[-8,2],[-8,5],[-4,6],[-6,16],[0,3],[-21,5],[4,10],[21,18],[-9,10],[-20,8],[-24,5],[-18,2],[-18,-4],[-16,-9],[-28,-22],[-10,-3],[-9,3],[-7,6],[-2,6],[3,4],[13,6],[3,3],[-8,8],[-18,10],[-18,5],[-8,-8],[4,14],[-3,10],[-10,6],[-41,16],[-10,6],[-4,8],[4,6],[9,5],[8,4],[4,4],[-12,11],[-46,-1],[-6,10],[12,7],[22,1],[44,-3],[-9,10],[-11,10],[93,0],[208,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[207,0],[208,0],[112,0],[1,-96],[1,-96],[1,-97],[0,-96],[-2,-89],[-5,-96],[0,-98],[0,-95],[0,-100],[1,-92],[0,-100],[0,-100],[2,-92],[0,-103],[-2,-101],[2,-90],[1,-19],[-1,-17],[-4,-11],[7,-9],[44,-26],[32,-24],[13,-13],[11,-30],[20,-16],[0,-13],[-9,-13],[-12,-8],[-28,-14],[6,-7],[49,-29],[23,-27]],[[5782,306],[6,-3],[12,1],[12,-5],[-1,-3],[5,-8],[10,-3],[4,-9],[27,-17],[11,-10],[20,-12],[16,-4],[15,-11],[41,-20],[24,-10],[22,-12],[7,-6],[-12,-1],[-19,5],[-17,-3],[-2,-4],[-7,-2],[-13,-5],[-4,1],[-8,8],[-11,1],[-23,12],[-15,4],[-9,4],[-7,9],[-2,6],[-10,6],[-11,11],[-6,1],[-9,8],[-1,11],[-3,5],[-7,5],[-16,10],[-4,11],[-6,10],[-7,6],[-13,0],[1,10],[10,3]],[[4918,452],[15,-6],[8,1],[6,-2],[19,-5],[18,-8],[8,-7],[0,-4],[-4,-3],[-7,0],[-10,-2],[-11,0],[-4,-1],[-13,2],[-4,0],[-4,0],[-7,2],[-12,0],[-7,4],[-20,2],[-21,10],[-1,3],[-6,4],[1,3],[-6,7],[1,2],[15,-4],[11,5],[7,0],[10,3],[18,-6]],[[5839,574],[5,-4],[6,-2],[6,-4],[9,-3],[8,-2],[0,-2],[1,-4],[5,0],[3,1],[4,1],[1,1],[7,0],[4,-3],[5,0],[5,-1],[5,-3],[7,-2],[5,-2],[7,0],[3,-1],[4,1],[8,-1],[25,-7],[5,1],[6,-4],[3,0],[5,0],[5,-1],[1,-2],[1,-4],[-3,-3],[2,-3],[4,-1],[8,-6],[11,-7],[11,-4],[5,-7],[0,-2],[3,-1],[6,0],[8,-4],[4,-11],[-4,0],[-2,-3],[6,-3],[-8,-2],[-2,-2],[-11,-2],[-18,4],[-9,5],[-8,1],[-11,3],[-20,0],[-13,0],[-12,-2],[-20,1],[-18,3],[-9,6],[-11,8],[-5,7],[5,6],[-1,3],[5,4],[5,2],[-4,2],[-7,10],[2,2],[-2,2],[0,4],[-4,2],[-6,1],[-6,2],[-6,0],[-5,-1],[-5,3],[-9,1],[-5,0],[-7,2],[-7,1],[-8,-1],[-7,3],[-6,0],[-1,2],[0,4],[-5,1],[-5,3],[-5,4],[-6,4],[-6,3],[-1,3],[6,0],[10,-1],[8,1],[8,-1],[6,-1],[16,1],[5,0],[5,1]],[[5373,582],[0,-1],[0,1],[1,-4],[0,-2],[2,-3],[-4,-1],[0,-4],[-6,-1],[-2,2],[-3,2],[-1,4],[-4,2],[1,1],[10,0],[6,4]],[[6130,749],[3,-5],[-19,-3],[7,-14],[-13,-3],[4,-5],[-11,1],[-4,5],[2,3],[14,3],[-4,9],[-5,-2],[3,-6],[-9,-2],[-8,-3],[-2,7],[3,4],[12,7],[5,0],[4,1],[10,2],[8,1]],[[5046,898],[-12,-5],[-22,3],[-10,-1],[-5,2],[-9,1],[-6,2],[6,1],[5,0],[14,0],[7,-3],[18,-2],[10,3],[16,4],[7,-2],[-19,-3]],[[4420,909],[-7,-8],[2,-7],[13,-8],[24,-7],[26,3],[2,-15],[7,-4],[2,-7],[-29,0],[-18,-4],[-29,-12],[-21,-2],[-8,-3],[-20,0],[-7,-4],[-1,-4],[-13,1],[-9,5],[-18,5],[-22,7],[-8,9],[-5,4],[-8,5],[-11,12],[-9,3],[-6,7],[-11,2],[-10,6],[11,4],[18,1],[15,-3],[15,2],[14,-1],[11,6],[13,5],[8,0],[38,-4],[22,4],[14,8],[13,0],[2,-6]],[[4120,924],[4,-3],[11,-1],[8,2],[6,-1],[11,-5],[6,-3],[5,-5],[-2,-5],[-20,0],[-20,0],[-9,-2],[-12,2],[-9,4],[-9,1],[-13,3],[-8,1],[-9,-5],[-13,3],[-8,0],[-2,4],[10,1],[21,10],[12,-2],[8,1],[14,5],[10,6],[0,3],[6,-3],[4,-4],[2,-4],[-4,-3]],[[4615,931],[10,-6],[16,-2],[19,3],[9,0],[17,0],[6,-2],[8,0],[7,-4],[5,1],[19,-3],[8,-5],[10,-4],[7,-5],[8,1],[10,-3],[11,2],[20,-4],[17,4],[7,6],[-2,6],[20,6],[13,1],[9,3],[31,-9],[10,-4],[-7,-6],[-13,-3],[-1,-4],[-3,-6],[-11,-6],[-20,0],[-9,-3],[-33,-1],[-19,0],[-12,-1],[-9,-1],[-6,-3],[-8,-1],[-3,-2],[-14,-3],[-6,0],[-6,-4],[-6,-2],[-22,2],[-10,0],[-6,-3],[-12,1],[-15,0],[-12,3],[-15,-3],[-8,5],[-14,1],[-10,-1],[-15,7],[-7,1],[-7,7],[-2,6],[-3,4],[9,10],[0,5],[-8,3],[-12,7],[-14,4],[-5,1],[-2,-2],[-7,1],[-4,3],[8,4],[3,4],[4,3],[11,-3],[17,0],[29,-2],[20,-4]],[[1632,3140],[-1,-1],[1,1],[-3,-6],[0,1],[0,1],[-1,-1],[1,1],[-2,1],[5,3]],[[2228,3210],[2,-2],[5,0],[2,-2],[-4,-1],[-6,1],[-2,4],[-4,3],[-2,5],[6,2],[4,-1],[5,-6],[-6,-3]],[[2175,3244],[7,-5],[-1,-6],[-9,0],[-7,-1],[-6,2],[-1,0],[-1,5],[3,3],[4,0],[2,1],[9,1]],[[490,5751],[27,0],[246,0],[247,0],[246,0],[246,0],[247,0],[246,0],[247,0],[246,0],[246,0],[247,0],[246,0],[246,0],[247,0],[246,0],[247,0],[246,0]],[[4459,5751],[0,-111],[0,-111],[0,-112],[0,-111],[0,-111],[0,-111],[0,-112],[0,-111],[0,-111],[0,-112],[0,-111],[0,-111],[0,-111],[0,-112],[0,-111],[1,-111],[0,-34],[0,-8],[220,-100],[221,-99],[220,-99],[221,-100],[221,-99],[220,-99],[221,-99],[221,-100],[172,-84],[173,-83],[173,-84],[172,-84],[173,-83],[173,-84],[172,-84],[173,-83],[151,-77],[152,-77],[151,-76],[151,-77],[152,-77],[151,-76],[151,-77],[152,-77],[170,-86],[182,-90],[175,-87],[175,-86],[1,-5],[10,-71],[7,-7],[14,-3],[14,-4],[11,-8],[7,-10],[4,-7],[1,-17],[12,-12],[20,-6],[26,-2],[61,-68],[4,-2],[3,-3],[2,-5],[-2,-14],[2,-4],[11,-10],[13,-5],[10,-6],[4,-13],[2,0],[9,-6],[-4,-9],[-5,-9],[0,-1],[1,-5],[3,-8],[4,-4],[4,-2],[7,-1],[12,-1],[4,0],[4,-1],[4,-1],[7,-5],[5,-2],[19,-6],[4,-3],[14,-8],[79,-31],[16,-5],[9,-4],[11,-6],[30,-11],[0,-8],[6,-13],[-8,-8],[-30,-12],[-31,-17],[-30,-21],[-19,-2],[-96,-37],[-34,-6],[-15,-8],[-10,-12],[-8,-26],[-11,-11],[-14,-10],[-16,-8],[-37,-14],[-15,-8],[-6,-14],[3,-7],[8,-6],[19,-12],[1,-6],[-8,-5],[-17,-8],[2,-9],[0,-15],[4,-15],[11,-7],[3,-3],[1,-7],[-1,-7],[-3,-3],[-5,-3],[4,-7],[10,-11],[-6,-9],[-11,-7],[-10,-9],[-5,-14],[1,-13],[-1,-7],[-3,-3],[-8,-4],[0,-8],[5,-13],[-4,-8],[-3,-4],[-12,-9],[-19,-10],[-10,-7],[-8,-15],[-35,-35],[-17,-7],[-23,-4],[-47,-1],[-9,-4],[5,-7],[9,-7],[8,-5],[6,-7],[-4,-5],[-11,-7],[-9,-16],[2,-9],[29,-19],[7,-8],[9,-35],[-5,-26],[-14,-23],[-3,-21],[28,-22],[37,-8],[86,-3],[33,-10],[26,-20],[4,-8],[-1,-6],[-2,-6],[-1,-8],[15,-38],[-3,-14],[-11,-7],[-35,-14],[-12,-8],[-3,-10],[1,-12],[-1,-10],[-10,-10],[-39,-4],[-99,10],[-36,-14],[-3,-7],[-38,-2],[-69,-3],[-70,-4],[-69,-3],[-69,-3],[-69,-4],[-70,-3],[-69,-3],[-69,-4],[-69,-3],[-70,-4],[-69,-3],[-69,-3],[-69,-4],[-70,-3],[-69,-3],[-69,-4],[-70,-3],[-69,-4],[-69,-3],[-69,-3],[-70,-4],[-69,-3],[-69,-3],[-69,-4],[-70,-3],[-69,-4],[-69,-3],[-69,-3],[-70,-4],[-69,-3],[-69,-4],[-76,-3],[-1,5],[-6,17],[-2,15],[-3,14],[-12,19],[-15,14],[-21,8],[-34,1],[-2,8],[6,5],[14,4],[14,1],[2,-5],[19,-4],[4,-10],[8,-7],[12,-11],[11,-14],[7,-14],[8,-4],[11,4],[1,8],[-17,19],[1,11],[-13,12],[-12,3],[-20,7],[-10,5],[3,7],[-33,0],[-14,-4],[-13,-7],[2,-23],[-9,3],[-9,10],[-2,6],[2,27],[1,11],[-3,12],[-20,24],[-5,9],[10,8],[7,-2],[6,4],[5,19],[-4,14],[-15,52],[-5,8],[-6,10],[-11,7],[-23,44],[-38,35],[-138,103],[-82,34],[-55,31],[-15,6],[-42,14],[-19,6],[-39,27],[-45,20],[-53,19],[-47,9],[-45,17],[-106,58],[-25,7],[-33,9],[-20,3],[-11,-3],[-13,4],[-8,-1],[14,-7],[6,-6],[1,-6],[-7,0],[-9,5],[-1,4],[-6,-3],[-4,4],[-7,14],[-9,-1],[-9,-1],[-9,-3],[-4,1],[-6,-3],[-8,-4],[-7,2],[3,-4],[-5,-7],[4,-9],[2,-5],[-10,1],[1,-3],[5,-3],[-6,1],[-8,-3],[-9,4],[-16,2],[-13,4],[-22,4],[-7,5],[-13,1],[-8,2],[-9,-2],[-7,-1],[-3,3],[-7,1],[-3,8],[-7,5],[-4,6],[5,7],[12,4],[1,4],[12,5],[3,7],[1,11],[-6,5],[-2,5],[-10,13],[-14,20],[-18,26],[-36,30],[-30,14],[-28,11],[-12,-1],[-13,2],[-11,-3],[-8,2],[-12,0],[-5,-2],[-26,0],[-28,2],[-9,-1],[-2,-3],[-2,-2],[-12,1],[-13,-1],[-23,2],[-16,-1],[-8,-3],[-16,-2],[-9,-1],[-5,-1],[-1,-3],[-3,-2],[-1,-3],[-3,0],[-6,-1],[-1,-2],[-3,-1],[-21,13],[-22,7],[-9,1],[-12,2],[-18,0],[-8,1],[-11,1],[-6,2],[-9,1],[-6,-2],[-16,3],[-22,7],[-19,4],[-10,0],[-28,11],[-22,1],[-27,9],[-10,1],[-16,3],[-2,-1],[0,-1],[5,-1],[13,-2],[-6,-3],[-21,4],[-23,10],[-38,15],[-10,1],[-1,1],[1,2],[0,1],[-4,1],[-1,0],[-1,-2],[-4,-2],[-2,0],[-3,5],[-4,2],[-1,2],[-5,5],[-6,5],[-6,8],[-8,9],[-8,8],[-3,6],[5,4],[-5,1],[-3,5],[-2,7],[-11,8],[-9,4],[-5,0],[-8,-2],[-9,3],[-7,4],[-7,2],[-9,2],[-11,9],[-8,3],[-6,4],[-6,2],[-4,0],[-6,0],[-5,-1],[-4,0],[-3,3],[-6,5],[-8,3],[-8,4],[-11,7],[-7,1],[-6,-1],[-9,9],[-7,3],[-6,1],[-3,0],[-3,-1],[-2,-1],[-2,0],[-2,1],[-4,3],[-4,1],[-7,2],[-7,0],[-13,2],[-4,2],[-8,3],[-7,0],[-18,9],[-7,3],[-4,-1],[-5,0],[-3,-1],[-5,1],[-14,3],[-20,1],[-4,-1],[-7,0],[-9,-2],[-18,1],[-19,-1],[-9,-2],[-3,-2],[-1,-2],[1,-1],[-10,-2],[-1,-1],[-5,-2],[-12,0],[-12,1],[-10,3],[-10,2],[-31,7],[-15,1],[-5,-1],[-22,0],[-4,-1],[-5,-1],[0,-2],[-1,-2],[-2,-2],[-10,3],[-12,1],[-6,-1],[-4,-1],[-11,8],[-10,0],[-19,8],[-13,1],[-7,0],[-7,0],[-7,1],[-5,2],[-13,5],[-8,1],[-5,0],[-19,7],[-11,-2],[-14,3],[-51,-2],[-40,8],[-36,-2],[-115,0],[-124,-11],[-18,0],[-9,-5],[-18,4],[-17,25],[-18,19],[-25,8],[-20,4],[-19,7],[-15,1],[-26,-1],[-14,6],[-7,7],[-4,7],[6,9],[11,17],[15,18],[8,13],[3,15],[-14,13],[-10,11],[-11,9],[9,14],[10,23],[2,14],[2,9],[-6,6],[-10,2],[-7,5],[-5,10],[-9,3],[-12,-1],[-5,5],[6,15],[23,42],[8,21],[3,23],[-5,21],[-9,19],[-7,3],[-6,4],[-12,0],[-7,1],[-18,10],[-8,3],[-16,1],[-25,1],[-5,-3],[0,-6],[-4,-2],[-5,1],[-24,11],[-56,15],[-25,12],[-9,6],[-11,10],[2,15],[8,7],[18,27],[5,19],[8,-9],[-3,-12],[2,-3],[11,1],[1,5],[11,3],[-5,4],[-5,1],[-10,13],[-8,4],[-6,-1],[-4,21],[-7,9],[-8,7],[-20,10],[-36,-2],[-16,7],[-18,2],[-21,0],[-30,18],[-30,17],[-31,19],[-28,31],[-11,3],[-15,13],[-10,6],[-17,3],[-5,-1],[1,-4],[-3,-1],[-20,10],[-17,2],[-17,4],[-16,4],[-18,0],[0,10],[-9,10],[-10,6],[-6,4],[-8,31],[-13,13],[-29,15],[-18,6],[-20,14],[-5,7],[-11,2],[-16,6],[-20,11],[1,10],[-9,6],[-6,11],[-4,11],[-4,10],[-3,10],[-16,13],[-15,4],[-17,3],[-24,3],[-15,10],[-10,9],[-1,8],[-12,4],[-11,8],[-11,17],[-12,7],[-14,11],[-19,13],[-15,5],[-9,6],[-24,10],[-23,8],[-26,9],[-17,5],[-11,-1],[-13,4],[-10,6],[-5,6],[-5,8],[-6,5],[-10,2],[-10,4],[-7,6],[-18,3],[4,6],[-1,8],[3,3],[0,3],[-4,4],[-3,5],[-2,6],[-3,6],[0,3],[2,4],[-2,3],[-2,5],[-6,4],[-3,7],[3,5],[-3,4],[-10,11],[-1,4],[-2,5],[-6,3],[-6,11],[-2,4],[4,3],[-1,3],[-1,2],[2,4],[-7,1],[-7,2],[2,3],[7,1],[7,-1],[12,1],[-1,5],[-1,4],[-3,0],[-3,3],[5,2],[-2,5],[-2,4],[-5,-2],[-2,3],[-4,1],[-4,-1],[-3,-2],[-15,5],[-7,4],[-3,5],[6,1],[7,0],[0,4],[3,6],[4,6],[3,2],[6,-3],[3,5],[4,5],[1,5],[3,3],[8,-1],[8,-2],[1,-3],[7,-3],[10,-2],[6,-5],[8,-7],[8,1],[8,3],[15,7],[15,10],[11,12],[12,17],[4,21],[4,12],[12,-4],[27,-6],[3,5],[-5,3],[-4,3],[-4,-1],[-8,0],[-7,2],[-4,3],[-8,3],[5,18],[8,16],[-14,18],[-52,55],[-26,17],[-17,9],[-30,5],[-15,-4],[-10,-7],[-10,-3],[-19,3],[-12,1],[-13,1],[-4,-2],[1,-2],[-1,-4],[-9,2],[-11,-3],[-14,0],[-18,2],[-24,2],[-14,5],[-13,1],[-7,6],[-11,1],[-22,11],[-29,15],[-13,3],[-6,10],[-24,11],[-12,11],[-14,12],[-8,5],[-8,4],[-10,3],[-9,-1],[-9,-1],[-11,3],[2,10],[-21,10],[-1,7],[-8,7],[-13,5],[-12,0],[-8,7],[-3,14],[-3,6],[-6,4],[-1,12],[7,10],[3,15],[5,28],[2,12],[-8,2],[-3,7],[-16,20],[-15,18],[-4,24],[-14,12],[-15,4],[-6,0],[-8,-2],[-1,-3],[-3,-1],[-2,5],[-10,5],[-8,13],[2,8],[3,10],[-5,8],[1,9],[-3,3],[4,0],[4,2],[6,0],[4,3],[1,3],[6,12],[1,23],[-7,24],[-6,13],[-5,16],[-1,18],[8,3],[8,0],[11,3],[9,12],[12,-4],[42,4],[10,0],[10,-5],[9,-7],[1,-8],[5,-3],[-1,-6],[4,-5],[4,-4],[8,-5],[11,-6],[-8,-9],[-13,1],[-3,-6],[-12,2],[4,-20],[8,-1],[-1,-6],[6,-7],[-6,-5],[-3,-6],[0,-3],[19,-3],[9,-8],[-5,-3],[-11,3],[-3,-6],[12,-2],[3,-5],[27,-2],[12,1],[1,-4],[16,-4],[15,-2],[24,-2],[6,-2],[6,-9],[5,-4],[9,-1],[19,-3],[10,-3],[0,-5],[-8,-5],[14,-2],[9,-4],[11,-3],[12,0],[10,-4],[13,1],[11,-8],[10,-11],[11,-7],[19,-4],[20,-1],[19,2],[7,8],[-9,2],[-7,1],[-3,2],[0,3],[1,4],[-1,3],[-6,5],[-4,3],[-6,1],[-23,0],[-15,9],[-7,15],[-28,22],[-6,22],[-10,30],[-21,16],[-6,6],[-14,6],[-7,-7],[-35,14],[-10,13],[12,3],[35,-3],[-5,9],[-4,1],[-4,-3],[-13,0],[-30,5],[-11,0],[-6,2],[-10,3],[3,5],[-10,1],[-2,-3],[-20,4],[2,8],[4,3],[0,1],[-4,1],[-10,-1],[-1,3],[6,2],[11,0],[6,4],[-12,2],[9,2],[17,1],[5,3],[-2,5],[-5,14],[-12,-1],[-2,4],[9,2],[-5,9],[-14,14],[-18,-1],[-16,-2],[-25,3],[4,7],[-8,5],[-14,2],[-10,10],[-8,10],[15,-1],[15,-4],[3,9],[24,6],[9,4],[-10,10],[4,5],[19,-4],[9,-1],[13,1],[5,3],[17,0],[21,9],[1,8],[11,5],[14,5],[21,2],[22,-3],[16,-3],[17,-12],[19,-3],[23,3],[40,12],[27,3],[46,2],[61,-7],[48,-2],[10,-4],[38,-7],[55,-5],[26,3],[27,-6],[19,-1],[12,0],[8,5],[-13,5],[-15,-2],[-11,2],[2,4],[15,2],[9,5],[9,1],[4,2],[3,5],[2,6],[0,6],[5,5],[10,1],[21,0],[12,2],[1,3],[6,3],[10,0],[10,-3],[13,-1],[2,-6],[4,-5],[-6,-4],[-2,-3],[-14,-2],[-9,1],[-11,0],[-7,-6],[-4,-4],[9,-5],[10,-9],[7,-2],[6,2],[13,4],[2,4],[2,7],[1,7],[1,3],[8,2],[13,-5],[8,-2],[9,-2],[11,-6],[13,-1],[11,-5],[19,-6],[20,-10],[13,-6],[0,5],[-12,10],[-16,10],[-11,5],[-16,3],[-9,3],[-12,0],[-3,3],[-6,3],[-6,-1],[-6,1],[-16,10],[-5,10],[-15,3],[-16,2],[-22,0],[-4,-2],[-8,-5],[-4,-1],[-7,1],[-7,2],[-6,1],[-14,-4],[-6,-6],[-2,-5],[-1,-8],[-9,-6],[-20,-7],[-20,-6],[-24,0],[-11,4],[-6,4],[1,5],[4,6],[10,4],[10,3],[11,2],[10,2],[19,8],[13,8],[14,11],[5,14],[-7,0],[-14,-15],[-16,-8],[-24,-13],[-19,-5],[-34,-10],[-19,3],[-21,3],[-15,-2],[-5,-3],[-15,-5],[-14,-2],[-18,0],[-11,3],[7,3],[5,2],[7,8],[-44,0],[-15,-3],[-17,5],[-24,10],[27,7],[-3,9],[-10,7],[-15,1],[-21,-1],[-16,-2],[-10,-4],[-3,-3],[3,-6],[-9,-7],[-17,-10],[-26,-15],[-5,-6],[-4,-5],[-26,1],[-8,7],[-17,6],[-5,-2],[-5,0],[-9,2],[-18,1],[-20,3],[-15,-1],[-10,3],[-10,7],[-17,13],[-91,28],[-13,-12],[-22,-6],[-14,0],[-8,-4],[-42,-2],[14,-6],[4,-17],[-11,-16],[-8,-11],[-3,-5],[0,-4],[12,-3],[22,-4],[15,-5],[8,-7],[-5,-3],[-8,0],[-9,1],[-5,-4],[-17,-4],[-1,-6],[9,-7],[3,-4],[-10,-3],[-12,3],[0,-4],[1,-6],[25,-5],[4,-3],[-2,-4],[13,-6],[11,-1],[9,-7],[-8,-5],[-7,-1],[-4,-1],[0,-5],[-9,3],[-4,4],[1,4],[-4,4],[-13,4],[-8,0],[2,-5],[2,-5],[-4,-3],[9,-5],[11,-3],[-2,-4],[3,-5],[6,-7],[-7,-5],[-10,1],[-14,-3],[-8,2],[-10,-1],[-6,-4],[-9,7],[-9,4],[-15,8],[-10,5],[-13,3],[-13,8],[-18,2],[-23,13],[-26,5],[-12,-2],[-10,-2],[-4,-5],[-12,5],[-14,2],[-6,10],[-13,8],[-16,3],[-14,6],[-15,17],[-14,6],[-10,7],[-17,6],[-63,15],[-14,2],[-11,9],[1,5],[11,4],[-14,4],[-6,-4],[-7,-2],[2,-4],[0,-6],[4,-2],[6,-7],[-12,0],[-14,-3],[-14,-6],[-5,-7],[3,-3],[8,-2],[9,-2],[-11,-1],[-10,1],[-12,1],[-19,0],[-9,0],[6,4],[5,0],[24,29],[38,58],[0,13],[-5,7],[-9,4],[0,9],[-8,6],[-9,7],[-10,6],[-3,8],[11,-3],[19,-12],[37,-26],[17,-14],[15,-13],[21,-12],[24,-11],[17,-13],[-6,15],[-17,9],[-36,27],[-44,37],[-8,2],[-7,-1],[-3,8],[-10,1],[-4,3],[1,8],[-6,9],[-12,7],[-14,11],[-26,11],[-16,-1],[-5,-4],[-1,-4],[-9,-2],[-13,17],[7,14],[-2,8],[-8,8],[-7,11],[-8,3],[-6,10],[-10,5],[-11,10],[-4,8],[-40,18],[-77,19],[-19,11],[-30,12],[-10,5],[-21,6],[-4,12],[-13,6],[-10,3],[-3,7],[-30,18],[-12,15],[-17,7],[-2,5],[-38,21],[-17,9],[-29,6],[-14,16],[-20,6],[-6,8],[-27,6],[-21,13],[-30,14],[-14,14],[-32,17],[-13,8],[-14,3],[-1,9],[-15,13],[17,3],[20,18],[7,11],[7,12],[-2,7],[-4,12],[-8,15],[-9,14],[-8,16],[-15,6],[2,10],[-30,21],[-10,17],[-12,29],[-12,6],[6,11],[-9,4],[1,12],[-18,14],[4,35],[4,24],[17,28],[21,24],[6,9],[0,12],[-16,20],[0,35],[-4,7],[0,7],[-5,8],[-6,7],[-6,6],[-14,3],[-6,5],[0,10],[-7,12],[0,13],[-7,15],[-9,15],[-24,7],[-26,13],[-22,26],[-23,10],[-22,23],[-21,9],[-20,15],[-11,6],[-11,4],[-12,3],[-5,-1],[-5,0],[-7,3],[-4,5],[0,15],[-6,11],[-27,18],[-21,5],[-45,8],[-32,22],[-35,12],[-59,24],[-7,8],[-15,3],[-19,11],[3,13],[11,22],[-16,16],[-1,20],[-30,23],[-10,17],[12,13],[7,11],[4,10],[-1,6],[14,17],[12,16],[7,9],[27,24],[2,6],[2,3],[3,1],[4,1],[4,1],[-2,2],[-4,3],[4,4],[14,15],[18,14],[20,21],[12,14],[8,-5],[-15,-13],[-11,-13],[0,-5],[10,-3],[13,-1],[8,-4],[4,3],[-3,3],[3,1],[8,3],[0,5],[-8,7],[4,5],[-3,4],[7,3],[10,2],[4,6],[-2,4],[2,5],[6,2],[3,11],[6,5],[7,3],[11,1],[17,2],[8,-1],[14,0],[12,4],[21,7],[4,11],[-2,3],[-8,3],[-8,3],[-6,-2],[-10,-2],[-7,1],[-5,3],[-6,3],[-13,0],[-3,-1],[-2,-6],[-9,-6],[-4,-9],[-12,-7],[-9,-8],[-6,-11],[-22,-17],[-9,6],[15,12],[38,38],[40,53],[12,26],[10,22],[-1,16],[-5,4],[-10,1],[-7,-1],[-8,3],[-3,5],[-3,9],[-5,7],[-5,7],[0,9],[-4,11],[2,5],[6,1],[8,0],[4,2],[18,22],[10,24],[21,42],[9,32],[13,34],[5,23],[-13,33],[-5,19],[13,11],[-10,2],[-10,4],[-7,4],[-6,6],[-1,6],[1,16],[-3,3],[-8,6],[-11,14],[-13,15],[1,9],[-6,16],[-13,19],[-17,4],[-10,2],[-8,-2],[-4,-3],[-30,14],[-29,9],[3,7],[11,3],[14,12],[14,22],[7,25],[8,42],[-1,7],[-4,6],[-6,11]],[[7400,8182],[2,-3],[8,-18],[27,-35],[57,-26],[8,-9],[10,-8],[67,-7],[10,-4],[19,-10],[55,-16],[39,-3],[14,-6],[12,-7],[12,-12],[18,-24],[33,-30],[7,-12],[1,-13],[-8,-12],[-13,-9],[-28,-15],[-5,-4],[-18,-20],[-4,-13],[-4,-6],[-44,-26],[-14,-21],[-33,-17],[-12,-11],[-4,-13],[-3,-25],[-9,-10],[-12,-11],[-17,-37],[-19,-23],[-100,-70],[-8,-7],[-3,-6],[2,-7],[5,-5],[5,-3],[2,-2],[-2,-13],[-10,-28],[-8,-11],[-21,-22],[-51,-38],[-13,-8],[-18,-7],[-57,-17],[-17,-10],[-10,-9],[-26,-31],[-24,-21],[-10,-13],[-8,-24],[-10,-11],[-12,-10],[-13,-8],[-11,-2],[-10,-1],[-8,-4],[-3,-7],[-5,-4],[-8,-3],[-7,-5],[10,-16],[-7,-11],[-10,-12],[-3,-14],[4,-7],[12,-12],[3,-8],[-1,-6],[-5,-8],[-1,-7],[7,-11],[15,-8],[36,-12],[10,5],[7,5],[9,5],[13,2],[12,-2],[7,-5],[6,-5],[8,-5],[19,-3],[16,2],[17,4],[22,1],[11,-2],[3,-5],[0,-7],[2,-7],[7,-8],[5,-3],[20,-5],[17,-6],[18,-9],[5,-5],[-4,-5],[-6,-3],[-4,-4],[0,-6],[-1,-8],[-4,-7],[-8,-6],[-10,-2],[-13,0],[-13,-1],[-9,-5],[0,-10],[26,-21],[6,-12],[-1,-7],[-3,-5],[-4,-5],[-4,-6],[-7,-25],[-12,-20],[-3,-14],[-11,-14],[-11,-8],[-20,-8],[-15,-10],[7,-14],[0,-4],[3,-8],[1,-55],[0,-27],[0,-63],[0,-63],[0,-62],[0,-63],[1,-63],[0,-62],[0,-63],[0,-63],[0,-62],[1,-63],[0,-63],[0,-62],[0,-63],[0,-63],[1,-62],[0,-63],[-176,0],[-176,0],[-175,0],[-176,0],[-175,0],[-176,0],[-176,0],[-175,0],[-176,0],[-176,0],[-175,0],[-176,0],[-175,0],[-176,0],[-176,0],[-176,0]],[[490,5751],[-2,4],[-19,7],[-23,10],[-13,7],[-17,1],[-40,27],[-14,4],[-9,9],[5,12],[-11,11],[2,15],[-11,13],[-3,14],[-15,12],[-17,6],[3,6],[0,22],[-13,14],[-4,1],[-5,5],[2,13],[5,7],[-1,10],[-1,11],[3,15],[-14,11],[15,9],[1,8],[2,15],[13,17],[4,8],[7,21],[-3,11],[-5,6],[3,12],[-8,18],[-6,11],[-10,5],[-14,4],[-13,6],[-12,9],[-6,17],[-17,5],[-13,-1],[-9,7],[-16,34],[-7,7],[-10,6],[-16,5],[18,7],[52,51],[27,39],[9,11],[9,11],[7,16],[2,11],[10,27],[8,4],[-2,10],[30,74],[-8,22],[-6,6],[15,12],[8,7],[16,1],[17,6],[12,-2],[3,-6],[-1,-16],[10,-8],[3,6],[5,11],[-4,7],[3,9],[8,6],[12,4],[11,14],[22,14],[19,5],[10,0],[4,-5],[-1,-9],[0,-10],[5,-7],[12,0],[21,-3],[25,0],[11,4],[-28,3],[-16,7],[-3,8],[-4,9],[-14,7],[2,7],[9,6],[-11,0],[-23,-3],[-6,-7],[-21,-6],[-14,-3],[-6,-11],[-39,-25],[-10,2],[35,32],[57,78],[13,24],[8,25],[5,18],[7,3],[26,7],[13,9],[6,6],[5,8],[7,6],[2,7],[7,1],[6,-4],[9,-10],[7,-3],[35,-1],[2,4],[-15,1],[-14,3],[-14,11],[-12,8],[-19,-1],[-11,-7],[-1,-11],[-10,-12],[-18,-8],[-11,-3],[10,23],[15,27],[24,73],[6,37],[4,23],[3,6],[12,3],[4,6],[-13,16],[0,7],[7,34],[12,55],[-1,36],[7,22],[-1,4],[-5,5],[-1,4],[3,4],[8,5],[2,3],[11,35],[4,16],[12,7],[6,4],[12,2],[7,-4],[10,-6],[16,-4],[-9,18],[-11,3],[-10,3],[-17,-7],[-8,-2],[-7,-4],[1,8],[1,13],[-3,22],[20,68],[10,5],[7,2],[14,-2],[7,-4],[3,-3],[8,-4],[2,6],[4,4],[-1,4],[-12,2],[-4,-2],[-4,-1],[-7,2],[-13,5],[-7,-4],[-11,-5],[-3,1],[3,7],[5,5],[3,7],[1,7],[-4,5],[-11,1],[-4,1],[6,3],[5,6],[8,22],[-1,13],[-6,10],[-7,9],[6,17],[2,10],[10,10],[7,12],[11,12],[2,11],[1,5],[7,3],[6,4],[0,7],[-7,5],[1,5],[9,14],[3,18],[6,28],[-10,7],[2,6],[9,11],[19,14],[7,14],[5,15],[1,8],[1,12],[0,11],[-7,7],[8,21],[2,5],[4,12],[1,13],[-11,19],[-14,3],[-14,1],[0,4],[20,3],[8,8],[2,10],[2,8],[3,6],[4,4],[3,4],[4,-1],[-2,-3],[-5,-18],[15,6],[12,10],[13,7],[-34,10],[-16,11],[1,26],[11,13],[4,20],[5,5],[3,-19],[6,-16],[16,-3],[9,-7],[21,-4],[-3,4],[2,3],[5,3],[3,5],[-2,4],[-4,8],[-7,2],[-3,9],[4,13],[-28,-4],[-21,9],[-9,5],[5,9],[7,18],[3,17],[20,8],[-1,13],[3,4],[7,1],[9,-3],[7,-2],[6,0],[7,2],[8,7],[-5,-1],[-5,-1],[-4,-1],[-10,1],[-6,4],[-4,4],[-9,-2],[-4,-5],[-8,-2],[-2,-7],[0,-8],[-6,-5],[-1,4],[2,19],[-4,17],[-6,6],[-15,5],[-5,5],[1,5],[-4,1],[-8,-1],[-1,4],[13,9],[1,8],[7,12],[3,35],[-3,15],[-10,13],[-19,12],[8,6],[8,2],[9,9],[12,3],[16,5],[5,8],[5,13],[-5,14],[-8,27],[-13,23],[-37,49],[-30,18],[5,3],[13,2],[14,-7],[-6,-4],[9,-6],[15,0],[17,-3],[26,-9],[7,-6],[5,0],[6,0],[3,-7],[19,-3],[13,-3],[30,2],[10,-3],[6,-6],[5,-12],[1,-8],[13,-8],[-2,9],[-1,8],[1,8],[21,-3],[0,3],[-8,4],[-19,11],[-9,2],[-10,1],[-16,0],[-6,3],[-10,2],[-4,3],[8,2],[19,1],[15,-1],[21,3],[18,5],[12,1],[11,-5],[17,-11],[9,-4],[20,0],[86,9],[14,4],[-19,3],[-1,5],[13,2],[24,-1],[16,6],[21,6],[5,4],[17,1],[21,-1],[11,-2],[11,-8],[19,-6],[15,-5],[5,-7],[2,-6],[8,-5],[15,-7],[19,-7],[56,-4],[25,1],[20,-4],[20,-1],[22,3],[12,6],[14,10],[12,5],[12,4]],[[1223,8315],[-4,-4],[-12,3],[-14,4],[-9,7],[-5,8],[2,4],[9,-1],[10,-4],[15,-7],[8,-10]],[[1722,8802],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-2,0],[-1,0],[-4,0],[-7,0],[-2,1],[-9,3],[-4,1],[-6,2],[-2,0],[-9,2],[-1,0],[-1,0],[-2,1],[-1,0],[-2,0],[-2,0],[-10,0],[-2,0],[-3,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-4,1]],[[1623,8823],[-1,0],[0,1],[-1,1],[-1,1],[-3,2],[0,1],[-1,1],[0,1],[0,2],[0,1],[-1,1],[-1,1],[-1,1],[-3,2],[-2,1],[-3,0],[-3,0],[-6,0],[-3,0],[-8,2],[-5,2],[-3,0],[-5,0],[-4,0],[-4,0],[-1,0],[-1,0],[-5,0],[-2,1],[-2,2],[-1,2],[-1,2],[-3,2],[-5,1],[-4,1],[-2,2],[0,1],[2,6],[1,4],[3,2],[1,0],[1,3],[0,2],[-1,3],[0,6],[0,2],[-1,3],[0,2],[0,2],[0,2],[-1,2],[-1,0],[0,1]],[[1541,8898],[-3,2],[-2,1],[-5,1],[-3,1],[-4,2],[-4,2],[-3,1],[-2,2],[-1,2],[-1,2],[-1,6],[0,1],[0,1],[1,3],[0,1],[0,2],[0,1]],[[1513,8929],[-2,1],[-2,2],[-4,3],[-3,2],[-3,2],[-2,3],[-10,16],[-2,1],[-3,1],[-7,2],[-9,3],[-3,5],[0,1],[1,2],[4,4],[3,4],[4,3],[7,8],[0,1],[0,2],[0,3],[0,2],[0,2],[1,2],[1,3],[1,2],[-1,2],[0,3],[4,2],[2,1],[1,2],[2,1],[1,2],[1,1],[1,2],[1,3],[1,2],[1,2],[1,2],[1,1],[0,1],[2,1],[3,2],[3,2],[0,1],[1,3],[2,2],[2,1],[2,1],[0,2],[3,1],[1,1],[0,2],[3,2],[1,1],[2,2],[2,3],[-1,1],[0,2],[1,2],[-2,2],[1,0],[2,0],[2,-1],[2,0],[1,0],[1,1],[3,1],[4,2],[2,1],[3,2],[2,1],[2,2],[1,1],[5,2],[3,1],[1,2],[2,1],[6,3],[2,2],[5,1],[3,2],[-1,2],[0,2],[3,2],[0,1],[2,2],[1,2],[1,1],[1,1],[0,3],[1,1],[3,1],[2,1],[2,2],[1,2],[-1,2],[-2,4],[1,0],[3,1],[2,0],[3,0],[3,1],[4,2],[2,1],[2,1],[4,2],[3,1],[1,3],[7,5],[1,3],[3,2],[2,1],[4,2],[2,1],[2,3],[2,2],[0,2],[1,1],[3,2],[2,3],[3,1],[1,0],[3,1],[2,0],[1,0],[5,1],[1,0],[4,2],[1,0],[1,1],[3,0],[-2,2],[3,0],[3,0],[4,1],[4,1],[1,2],[1,1],[4,3],[1,1],[1,3],[1,0],[3,2],[1,1],[5,1],[1,3],[1,1],[3,1],[4,1],[5,2],[2,1],[1,1],[3,1],[3,2],[2,2],[0,1],[-1,2],[0,2],[2,3],[0,1],[2,3],[0,2],[0,2],[3,2],[3,0],[3,2],[0,2],[0,1],[1,2],[0,2],[1,1],[0,3],[2,3],[2,2],[2,3],[-1,0],[-3,2],[-4,1],[-2,2],[-4,2],[-2,2],[-2,2],[0,1],[-1,2],[-2,2],[-3,1],[-2,1],[-5,0],[-6,0],[-1,0],[-3,3],[-1,2],[-1,0],[-4,2],[0,1],[1,1],[2,2],[2,2],[1,2],[2,2],[2,2],[2,2],[5,2],[2,2],[4,2],[1,0],[5,1],[10,1],[4,0],[4,1],[2,0],[0,2],[-2,1],[-3,1],[-3,2],[-2,1],[-1,2],[-1,6],[0,2],[3,4],[2,2],[4,3],[0,1],[2,3],[0,3],[0,5],[0,1],[3,2],[3,2],[1,1],[-2,3],[-1,1],[-3,2],[-4,2],[-3,2],[-1,1],[-2,2],[-1,1],[0,2],[1,2],[1,3],[0,3],[1,3],[0,2],[-2,2],[0,2],[2,1],[1,1],[0,3],[0,2],[2,2],[0,2],[-1,1],[-1,3],[0,1],[-2,3],[0,2],[1,1],[-1,1],[-2,1],[-2,0],[-1,1],[2,2],[6,3],[1,1],[4,1],[5,1],[4,1],[2,1],[1,2],[1,2],[1,3],[-2,3],[-1,1],[-1,3],[-2,2],[-2,1],[-4,2],[-3,1],[-3,1],[-6,1],[-24,3],[-4,1],[-4,0],[-4,1],[-9,0],[-12,0],[-1,0],[-2,0],[-10,0],[-5,-1],[-5,-1],[-4,-1],[-4,-1],[-3,-3],[-4,-3],[-2,-2],[-3,-2],[-1,-2],[-2,-1],[-4,-1],[-4,-1],[-2,1],[-3,1],[-2,2],[-5,1],[-7,3],[-4,2],[-1,2],[0,2],[-1,1],[-4,2],[-3,1],[-5,2],[-5,2],[-2,2],[-1,0],[-4,2],[-4,1],[-3,2]],[[1493,9442],[14,-2],[16,-2],[15,0],[14,0],[21,-1]],[[810,8328],[1,-2],[2,-2]],[[1493,9442],[-7,1],[-1,0],[-5,1],[-4,0],[-5,0],[-1,1],[-3,0],[-6,0],[-1,0],[-4,1],[-2,0],[-9,1],[-15,2],[-6,0],[-6,1],[-5,0],[-4,1],[-12,0],[-8,1],[-14,1],[-16,1],[-5,1],[-5,0],[-13,0],[-2,0],[-5,1],[-5,0],[-3,0],[-7,2],[-5,2],[-3,1],[-2,0],[-3,-2],[-2,0],[-2,1],[0,2],[-2,0],[-3,0],[-6,-2],[-3,0],[-6,0],[-5,0],[-4,0],[-3,0],[-1,0],[-1,0],[-1,0],[-2,1],[-5,0],[-1,0],[-2,0],[-4,2],[-5,1],[-5,1],[-2,1],[-5,1],[-4,1],[-3,-2],[-2,-2],[-2,-1],[-4,-2],[-6,1],[-2,0],[-2,0],[-8,-1],[-1,0],[-2,0],[-2,0],[-3,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-10,0],[-1,-1],[-9,0],[-6,0],[-10,-1],[-6,0],[-6,-1],[-4,0],[-3,-1],[-12,-3],[-9,-3],[-2,-1],[1,-1],[-1,-2],[-3,-1],[-2,-2],[-3,-2],[-4,-2],[-3,-1],[-1,-2],[-1,0],[-5,0],[-5,0],[-6,-1],[-6,0],[-4,0],[-4,1],[-5,1],[-2,0],[-9,1],[-4,1],[-4,0],[-3,0],[-6,1],[-3,0],[-15,0],[-2,0],[-7,1],[-6,0],[-5,0],[-4,2],[-2,0],[-5,0],[-4,1],[-2,1],[-2,1],[-5,2],[-3,0],[-4,1],[-5,0],[-3,0],[-4,0],[-2,-2],[-3,-1],[-4,-1],[-6,-1],[-6,0],[-4,-1],[-6,-1],[-3,1],[-3,-1],[-4,-2],[1,-1],[-3,-2],[0,-2],[-3,-2],[-3,-1],[-1,-1],[-4,0],[-6,0],[-3,0],[0,-1],[-1,-2],[-2,-1],[-4,-1],[-3,0],[-4,0],[-3,0],[-6,1],[-5,0],[-8,0],[-5,0],[-2,-1],[-3,0],[-4,0],[-4,0],[-6,0],[-4,1],[-4,1],[-4,0],[-3,1],[-3,1],[-3,1],[-2,1],[-6,0],[-3,0],[-5,1],[-6,1],[-1,0],[-7,3],[-5,1],[-12,2],[-1,0],[-6,0],[-6,0],[-3,0],[-3,1],[-3,2],[-3,0],[-5,-1],[-8,-1],[-3,-1],[-10,0],[-4,0],[-9,0],[-8,0],[-4,0],[-65,-2],[-3,-1],[-22,-2],[-11,-2],[-7,0],[-17,0],[-14,0],[-8,1],[-8,0],[-10,0],[-34,2],[-3,0],[-6,0],[-16,1],[-19,2],[-1,0],[-5,0],[-2,0],[-1,0],[-4,-1],[-2,0],[-11,-1],[-4,0],[-3,-2],[-1,-1],[-4,-2],[-4,-1],[-8,-1],[-5,-1],[-1,0],[-9,0],[-3,1],[-4,0],[-5,0],[-2,-1],[-5,-2],[-6,-2],[-4,-1],[-3,-1],[-2,-1],[-3,-2],[-4,-2],[-2,-1],[-1,-3],[-2,-2],[0,-2],[-1,-2],[-1,-2],[1,-2],[1,-2],[0,-6],[0,-2],[0,-1],[-1,-2],[-2,-2],[-1,-1],[-5,-2],[-2,-2],[-2,-2],[0,-4],[0,-2],[1,-1],[3,-1],[7,-3],[1,0],[4,-1],[1,-2],[0,-2],[0,-3],[0,-1],[-1,-2],[-3,-1],[-6,-2],[-1,0],[-4,-1],[-5,-1],[-2,-1],[0,-2],[3,-2],[1,0],[3,-3],[3,-2],[3,-2],[1,-2],[1,-1],[3,-1],[2,-2],[3,-1],[2,-2],[2,-1],[4,-1],[16,0],[2,0],[1,-1],[-1,-3],[1,-1],[2,-1],[1,-2],[2,-1],[3,-2],[4,-2],[5,-1],[0,-2],[3,-3],[3,-2],[1,0],[5,-1],[3,-2],[5,0],[5,-1],[3,-1],[2,0],[10,-1],[3,0],[6,-1],[3,-2],[4,-3],[2,-2],[1,-1],[5,-2],[3,-1],[2,-2],[0,-3],[0,-1],[1,-1],[1,-2],[2,-2],[2,-2],[2,0],[4,1],[1,0],[-1,-2],[1,0],[1,-1],[-2,-2],[-1,-1],[0,-2],[0,-2],[1,-1],[0,-1],[2,-2],[-2,-2],[-2,-2],[-3,0],[-4,0],[-5,0],[-3,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,-2],[0,-1],[-4,-2],[-3,0],[-5,-2],[-4,0],[-8,-2],[-5,-2],[-6,-1],[-3,-2],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-3,-1],[-2,0],[-3,-1],[-6,-1],[-4,-1],[-4,-2],[-6,-2],[-2,0],[-6,0],[-3,-2],[-4,0],[-5,0],[-4,-2],[-2,-1],[-3,0],[-2,-1],[-4,-2],[-5,-1],[-6,0],[-1,-1],[-5,-2],[-4,-1],[0,-1],[2,-2],[-1,0],[-1,0],[-1,0],[0,-1],[2,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[1,-1],[1,-2],[1,-1],[2,-1],[1,-2],[3,-2],[2,-2],[2,-2],[1,-1],[1,-1],[1,-3],[3,-2],[3,-1],[0,-2],[1,-5],[1,-2],[2,-2],[1,-3],[1,-1],[1,-2],[0,-1],[1,-3],[1,-2],[2,-2],[1,-3],[1,-1],[1,-1],[1,-1],[0,-1],[2,-2],[1,-3],[1,-2],[1,-1],[1,-3],[0,-1],[2,-3],[0,-1],[1,-2],[1,-3],[4,-9],[1,-2],[2,-1],[17,-5],[0,-1],[1,0],[2,-1],[1,-2],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[0,-3],[2,-2],[3,-2],[7,-1],[4,0],[9,4],[17,7],[5,2],[15,2],[6,1],[3,-1],[9,-1],[25,-3],[2,0],[2,0],[1,0],[16,-2],[3,-1],[2,-2],[2,-1],[5,0],[4,-1],[2,-2],[4,-3],[2,0],[24,-7],[5,0],[9,-2],[3,0],[7,-1],[3,0],[4,-1],[5,0],[4,-1],[3,-2],[1,0],[8,-2],[19,-3],[10,-2],[6,-1],[5,-1],[5,-1],[11,-1],[8,-1],[3,0],[4,2],[5,-1],[4,1],[10,1],[7,1],[3,0],[9,1],[2,0],[5,1],[6,-1],[6,0],[2,0],[24,0],[1,0],[3,-2],[4,-3],[2,-2],[2,-1],[3,-2],[4,-2],[3,-1],[5,0],[5,0],[5,0],[2,0],[5,-1],[5,0],[2,-2],[2,-2],[0,-2],[-1,-2],[0,-2],[1,-2],[0,-6],[1,-3],[-2,-1],[-11,-11],[-3,-8],[-2,-4],[-3,-2],[-2,-3],[-3,-2],[-2,-1],[-5,-4],[-1,-2],[1,-3],[2,-2],[-1,-2],[0,-1],[1,-1],[1,-2],[0,-3],[1,-2],[-1,-2],[0,-2],[-1,-2],[0,-5],[0,-6],[0,-5],[0,-1],[-1,-2],[-2,-3],[0,-2],[0,-1],[-4,-6],[0,-1],[-2,-2],[-1,-1],[-6,-7],[-1,-1],[-2,-3],[-2,-2],[-2,-1],[-9,-3],[-2,-1],[-5,-1],[-7,-1],[-2,0],[-8,-5],[-1,-2],[1,-2],[7,-6],[6,-6],[4,-1],[27,-6],[3,-1],[27,-6],[1,0],[2,-2],[2,-2],[4,-2],[1,-2],[-1,-1],[-2,-2],[-1,-2],[-1,-1],[-1,-2],[-3,-2],[-1,-2],[-3,-2],[-3,-1],[-2,-2],[1,-1],[2,-2],[1,-3],[-1,-1],[-1,-1],[-2,-2],[1,-1],[1,-2],[0,-2],[-2,0],[-5,-2],[-2,-1],[-1,-2],[1,-2],[1,-2],[0,-2],[-1,-2],[-1,-2],[-2,-1],[-3,-1],[-4,-2],[-3,-2],[-4,-1],[-1,0],[-4,-2],[-1,-1],[0,-4],[1,-1],[1,-2],[2,-2],[0,-3],[1,-3],[1,-2],[1,-2],[-1,-2],[2,-2],[1,-3],[3,-2],[1,-2],[1,-2],[3,-3],[3,-2],[2,-2],[1,-2],[3,-2],[3,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[3,0],[5,0],[0,-2],[0,-2],[0,-1],[-1,-2],[-1,-1],[2,-1],[3,-1],[3,0],[1,0],[1,0],[2,0],[1,0],[5,0],[5,0],[2,0],[6,0],[2,0],[3,0],[3,0],[4,0],[4,-1],[5,0],[1,0],[1,0],[3,-2],[1,0],[1,0],[2,1],[3,1],[4,1]],[[866,8774],[1,0]],[[866,8774],[1,-1],[1,0],[1,-1],[1,0],[1,0],[5,-1],[1,0],[1,0],[4,0],[5,0],[1,0],[4,-2],[2,-1],[4,-2],[2,0],[2,-1],[2,-1],[3,-2],[3,-2],[3,-1],[1,-1],[4,-1],[2,-1],[4,-1],[3,-1],[3,0],[5,-2],[5,-2],[3,-1],[1,0],[5,0],[2,-1],[2,-2],[3,0],[-1,-2],[2,-2],[-1,-3],[1,0],[2,-2],[-1,-1],[0,-3],[0,-5],[1,-2],[1,-2],[0,-2],[2,-2],[1,-1],[2,-2],[4,-2],[-2,-2],[0,-3],[-2,-2],[0,-1],[1,-3],[-3,-2],[-3,-3],[-2,-2],[0,-2],[-2,-2],[0,-2],[1,-3],[-1,-1],[-1,-2],[-3,-1],[-5,-2],[-1,-2],[-1,-2],[-3,-1],[-3,-2],[-5,-3],[-3,-1],[-1,-1],[0,-3],[3,-1],[5,-2],[0,-1],[-1,0],[-1,-1],[0,-2],[0,-2],[0,-2],[0,-2],[-4,-3],[-6,-5],[-2,-1],[-1,-2],[0,-1],[2,-2],[0,-1],[2,-2],[2,-3],[3,-2],[2,-2],[-2,-2],[-2,-1],[2,-2],[1,-2],[3,-1],[0,-2],[-2,-2],[0,-2],[0,-1],[2,-2],[2,-2],[0,-1],[-2,-2],[2,-1],[1,-2],[2,-2],[2,-1],[1,-1],[1,-1],[-1,0],[-1,-1],[0,-2],[0,-1],[-1,0],[-1,-1],[-1,0],[-4,-1],[-1,1],[-1,0],[-1,0],[-2,1],[-1,1],[-3,0],[-3,-1],[-4,-2],[-2,-1],[-3,-1],[-5,-2],[-10,-1],[-4,-1],[-5,-1],[-3,-1],[-4,-2],[-1,0],[-4,0],[-4,0],[-4,1],[-2,1],[-2,2],[-4,2],[-3,2],[-3,2],[-1,1],[-3,2],[-2,1],[-3,2],[-3,2],[-1,1],[-3,2],[-2,1],[-5,-1],[-3,-1],[-5,-1],[-9,-3],[-3,-1],[-3,-1],[-2,-1],[-5,1],[-3,0],[-4,-1],[-4,-2],[-2,-1],[-5,0],[-5,-1],[-3,0],[-5,0],[-3,-1],[-1,-1],[-1,0],[-2,-2],[2,-2],[0,-3],[0,-2],[-1,0],[0,-2],[0,-1],[1,-1],[1,-2],[0,-1],[0,-1],[-1,-4],[-2,-3],[-1,-2],[0,-1],[-1,-1],[0,-2],[1,-2],[3,-1],[4,-2],[2,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[-3,-5],[-1,-2],[1,-2],[1,-2],[1,-2],[0,-2],[0,-2],[0,-1],[0,-3],[0,-2],[1,0],[3,-2],[3,-2],[2,-1],[3,-2],[2,-1],[1,-1],[5,-3],[0,-1],[2,-1],[0,-1],[1,-2],[1,-2],[1,-2],[1,-2],[0,-1],[1,-3],[1,-2],[0,-2],[0,-3],[0,-1],[0,-3],[0,-4],[-1,-2],[0,-3],[-1,-1],[1,-2],[0,-4],[0,-1],[2,-3],[3,-2],[2,-1],[1,-1],[1,-3],[1,-1],[3,-2],[0,-3],[0,-2],[2,-2],[2,-1],[11,-5],[2,-2],[0,-1],[-1,-2]],[[878,8409],[-5,2],[-1,0],[-8,2],[-3,1],[-2,1],[-2,2],[-3,2],[-5,1],[-1,1],[-2,2],[-2,3],[-2,2],[-1,3],[-2,2],[-2,1],[-1,1],[-1,1],[-1,1],[-2,1],[-2,2],[-3,2]],[[827,8442],[-2,0],[-7,1],[-2,0],[-2,0],[-2,0],[-2,0],[-4,0],[-2,0],[-4,2],[-5,0],[-1,1],[-5,-1],[-2,0],[-2,0],[-4,-3],[-3,0],[-5,0],[-1,0],[-4,-1],[-2,-3],[-1,-2],[-2,0],[-1,-1],[-4,-1],[-4,-1],[-1,0],[-1,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[-2,0],[-6,0],[-3,0],[-1,-1],[0,-2],[0,-2],[0,-2],[-1,-2],[1,-1],[1,0],[0,-2],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[2,-2],[0,-1],[-1,-4],[0,-1],[-4,-7],[0,-2],[-4,-2],[-4,-2],[-3,0],[-3,-2],[0,-1],[-3,-2],[-3,-2],[-4,-1],[-5,0],[-3,0],[-11,0],[-4,0]],[[687,8377],[-4,0],[-1,-1],[-8,-1],[-2,-1],[-1,0],[-2,-2],[-1,-1],[-6,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,1],[1,3],[-2,2],[-9,2],[-1,2],[1,2],[-1,2],[1,0],[5,-1],[1,0],[2,0],[1,0],[5,0],[8,0],[6,0],[17,0],[1,0]],[[687,8382],[0,-5]],[[687,8377],[4,-1],[6,-2],[9,-3],[1,0],[13,-3],[2,-1],[1,-1],[0,-1],[2,-2],[1,-2],[3,-2],[4,-3],[2,-2],[2,-1],[1,-2],[2,-2],[2,-1],[3,-2],[3,-2],[3,-1],[4,-2],[3,-1],[2,-1],[3,-2],[1,-2],[4,-1],[1,0],[3,-1],[2,-1],[2,-1],[2,0],[2,-1],[2,0],[3,0],[2,0],[5,-1],[5,0],[2,0],[7,-1],[1,0],[3,0]],[[813,8324],[0,-1],[1,0],[0,-1],[1,-1],[3,-4],[2,-3],[1,0],[0,-1],[1,0],[-1,0],[4,-4],[1,-2],[1,-1],[1,-2],[1,-1],[1,-1],[1,-2],[1,0],[0,-1],[1,-1],[1,-1],[0,-1]],[[775,8275],[1,-1],[1,0]],[[768,8146],[0,-1],[-1,0],[-1,-2],[-2,0],[-3,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[0,-2],[-1,0],[-1,-1],[-2,0],[-4,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-2,-1],[-1,0],[0,-1],[0,-2],[-1,-2],[0,-1],[-3,-6],[-1,0],[-1,-2],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[2,-1],[2,0],[1,-2],[1,-2],[1,-3],[1,0],[1,-1],[0,-1],[1,0],[2,-1],[2,-1],[3,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-4,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-2,0],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[3,-1],[2,0],[1,-1],[2,0],[3,0],[2,-1],[1,0],[3,0],[1,0],[1,-1],[2,-1],[2,-1],[1,-1],[1,-1],[0,-1],[1,-2],[1,0],[0,-1],[-1,-2],[1,0],[1,0],[1,0],[1,0],[3,0],[1,-1],[1,0],[3,0],[2,-1],[2,0],[1,0],[3,1],[1,0],[1,0],[2,1],[3,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[2,0],[1,0],[3,-4],[2,-1],[2,0],[1,-1],[2,0],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-3,0],[-3,0],[-2,0],[-3,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-2],[0,-1],[1,-1],[0,-1],[1,-2],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[1,0],[1,-1],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[3,0],[2,-1],[2,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[2,1],[2,0],[1,0],[5,0],[2,0],[1,0],[0,-1],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,-2],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-3],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[2,0],[8,-3],[2,-1],[9,-3],[3,-1],[1,0],[1,-1],[2,-2],[2,-1],[0,-1],[1,-2],[0,-3],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[13,-7],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[-1,-4],[0,-2],[0,-4],[1,-1],[1,-1],[2,0],[5,-2],[1,0],[6,-3],[2,0],[1,-1],[1,-1],[1,-1],[0,-1],[-1,-2],[0,-3],[-1,-1],[0,-1],[0,-4],[0,-1],[0,-4],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-3],[-1,-1],[-3,-2],[-1,0],[-2,-2],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-3,-1],[-1,0],[-3,-2],[-2,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[2,-1],[2,-1],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-2],[1,-1],[1,-1],[1,0],[4,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[-2,-2],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-5,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-3,0],[-1,0],[-4,-2],[-3,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[1,-1],[-1,-1],[-1,-1],[0,-2],[-3,-2],[-2,0],[-2,-1],[-5,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-5,-3],[-1,0],[-3,-2],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-5,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[-2,0],[0,-1],[-2,0],[-3,-2],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-4,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-3,0],[-1,0],[-2,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-4,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[2,0],[0,-1],[0,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[2,0],[1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-3,-3],[-1,-1],[-7,-4],[-1,-1],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[2,-1],[6,-4],[1,-1],[1,0],[4,-2],[2,-1],[2,0],[1,0],[2,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[4,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[-1,-1],[-1,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[0,-1],[-1,0],[0,-1],[1,-3],[0,-1],[-1,0],[0,-1],[0,-1],[2,-1],[1,-1],[0,-1],[0,-2],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-4,-1],[-4,-1],[-1,0],[-3,-1],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,-1]],[[715,7584],[-2,-2],[-1,0],[0,-1],[1,-1],[0,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-5,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[0,-2],[1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[2,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-2],[0,-1],[0,-1],[2,0],[0,-1],[1,0],[1,0],[0,-1],[2,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-4,-1],[-2,0],[-2,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-5,-6],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,0],[-5,-4],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[1,-3],[1,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-3,0],[-1,0],[0,-1],[-1,-2],[1,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,-1],[1,-1],[0,-1],[3,-1],[1,-1],[1,0],[0,-2],[1,0],[1,0],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[2,-1],[1,-2],[1,0],[4,-2],[1,0],[1,-1],[0,-1],[-2,-1],[0,-1],[-2,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-4],[0,-1],[-1,-3],[0,-5],[0,-1],[-2,-4],[-1,-2],[-1,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-2],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[2,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[1,-1],[1,-1],[1,-1],[1,0],[4,-3],[1,0],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-3,-3],[-3,-2],[0,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[2,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[-2,0],[0,-1],[-1,0],[0,-1],[-2,-3],[-1,-1],[-1,-2],[-1,-3],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-3],[0,-1],[1,-1],[1,0],[6,-3],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-3,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,-3],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-2],[-2,-4],[-2,-3],[0,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-2,-2],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,-2],[1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[1,0],[0,-1],[4,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[1,-1],[0,-4],[0,-1],[-2,-2],[-2,-2],[0,-1],[1,-1],[0,-2],[0,-1],[-1,0],[-1,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-3],[-1,-4],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[2,0],[0,-1],[1,0],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[3,-1],[1,-1],[2,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[3,-2],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-2],[2,-1],[2,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-6],[0,-1],[0,-2],[-1,-4],[0,-2],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-2,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[2,-1],[1,0],[1,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-2,-3],[0,-1],[0,-2],[0,-3],[-2,-3],[-1,-2],[-1,-3],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-4],[-2,-4],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-2,-3],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-4,-2],[0,-1],[-2,-2],[-1,0],[-3,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[-4,-7],[0,-1],[2,-2],[0,-2],[0,-1],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-2],[-1,-1],[-1,0],[1,-3],[-1,-2],[1,-1],[4,-2],[1,0],[0,-1],[-1,-5],[0,-1],[-1,-1],[0,-1],[5,-2],[2,-1],[0,-1],[-1,-3],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[10,-1],[1,0],[0,-1],[0,-1],[1,-2],[2,0],[2,0],[0,-1],[1,0],[0,-2],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[3,-1],[4,-2],[2,-1],[2,-1],[1,-1],[0,-1],[1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[2,-2],[0,-1],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-3,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,-1],[-6,-1],[-1,0],[-7,-1],[-1,0],[0,-1],[-4,-2],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-4,-2],[-2,0],[-1,-1],[-3,0],[-1,0],[-1,0],[-4,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-2,-1],[-1,0],[-4,-3],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-1],[1,-5],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-2],[2,-1],[1,0],[0,-1],[2,-5],[1,-1],[1,-7],[0,-6],[0,-1],[0,-1],[-2,-4],[-1,-3],[-1,0],[0,-3],[-1,0],[-1,-1],[0,-1],[-4,-1],[-3,-1],[-1,-1],[-2,-1],[-6,-4],[-1,-1],[-2,-2],[-1,-3],[-7,-11],[0,-1],[0,-1],[0,-4],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-5],[-1,-6],[0,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-2,-2],[-1,-2],[0,-2],[0,-2],[0,-1],[0,-1],[-2,-4],[0,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[-1,-2],[-1,-5],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[2,-1],[2,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[3,0],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[1,-1],[-1,-4],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-5,1],[-1,0],[-2,0],[-5,-1],[-1,0],[-10,-2],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-2],[-1,-1],[-2,-4],[0,-1],[-2,-2],[-5,-5],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-4,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-2],[-1,-2],[-1,-4],[-1,-1],[-2,-1],[0,-1],[-13,-8],[-1,-1],[0,-1],[-1,-1],[1,-3],[0,-1],[0,-1],[0,-1],[-2,-1],[-1,-1],[-6,-3],[-2,-1],[-1,-1],[-1,0],[-2,0],[0,-1],[-2,0],[-2,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-3,1],[-1,0],[-2,0],[-1,0],[-12,-6],[-11,-6],[-1,0],[-2,-2],[-2,-1],[-1,0],[-9,-5],[-2,0],[-1,-1],[-2,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-3],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[-2,0],[-2,0],[-3,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-5],[0,-4],[0,-1],[0,-2],[0,-1],[0,-5],[0,-4],[0,-1],[0,-1],[0,-4],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[1,0],[0,-5],[0,-1],[0,-2],[0,-3],[0,-1],[0,-4],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[-2,-3],[-2,-4],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,-2],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,-2],[-2,-2],[-2,-2],[0,-1],[-2,-3],[-1,-1],[-2,-3],[0,-3],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-3,-3],[-1,-1],[0,-1],[-1,-2],[-2,-2],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-3],[-1,-2],[-1,-2],[-1,-1],[-1,-1],[-1,-4],[-3,-2],[-1,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[1,-1],[-1,-2],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-2,-2],[-3,-2],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,-1],[3,-1],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[3,-3],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[2,-1],[1,-2],[1,-1],[0,-1],[1,-1],[1,-2],[0,-1],[1,-1],[3,-2],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[2,0],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[2,0],[4,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,-1],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[-1,-3],[0,-1],[-1,-1],[1,0],[0,-1],[1,-1],[2,-1],[3,-2],[1,-1],[0,-2],[1,-1],[1,-2],[2,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-2],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-2],[1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[3,-1],[1,-1],[1,0],[1,-2],[0,-1],[-1,-1],[-3,-1],[-1,0],[-2,-2],[-1,0],[1,0],[0,-2],[-1,0],[0,-1],[1,-1],[2,-1],[1,0],[2,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[3,-3],[0,-1],[-5,-4],[-4,-3],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[1,-1],[-4,-6],[-6,-8],[-3,-4],[0,-4],[0,-1],[-1,-3],[-3,-4],[-2,-2],[-1,-2],[0,-1],[-1,-2],[0,-7],[0,-3],[0,-2],[-1,-2],[-1,-1],[-1,-2],[-7,-9],[-1,-2],[-1,-2],[1,-1],[1,-1],[1,0],[1,0],[2,0],[4,1],[1,0],[2,0],[3,0],[1,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-6],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[1,-2],[1,-1],[0,-1],[0,-2],[1,-2],[1,-2],[0,-1],[0,-1],[3,-1],[-1,0],[0,-1],[2,-1],[1,0],[0,-1],[1,-2],[-1,-1],[-4,-3],[0,-1],[-1,0],[1,-1],[0,-1],[4,-2],[1,0],[0,-1],[0,-1],[-1,0],[-3,-1],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[2,0],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[0,-1],[-1,0],[1,-1],[1,-2],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[-1,-1],[0,-1],[2,-4],[1,-1],[1,-1],[1,-1],[0,-2],[0,-3],[0,-2],[1,-1],[2,-5],[0,-1],[1,-1],[2,-5],[0,-1],[1,-1],[5,-2],[0,-1],[0,-1],[1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-2],[2,-1],[1,0],[1,-1],[1,-2],[2,0],[1,-1],[1,0],[2,0],[1,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[1,0],[3,-2],[1,0],[1,-1],[2,-3],[1,-1],[4,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[1,0],[-1,-1],[-2,-1],[0,-1],[1,-1],[1,-2],[1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[4,-1],[1,-1],[0,-1],[-1,-2],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-5],[0,-1],[1,0],[2,-2],[4,-3],[13,-10],[1,-1],[5,-2],[1,0],[2,-1],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[2,-1],[1,-1],[3,-3],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[2,0],[4,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,1],[1,0],[2,0],[2,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[0,-1],[2,0],[2,-1],[1,0],[4,-2],[1,-1],[2,-1],[2,-1],[11,-6],[5,-3],[4,-2],[4,-2],[2,-1],[1,-1],[2,-1],[2,-2],[1,0],[0,-1],[1,0],[2,-2],[0,-1],[1,-3],[1,0],[0,-1]],[[496,5750],[1,-2],[0,-1],[1,-2],[1,0],[1,-2],[1,0],[1,-1],[0,-3],[0,-1],[0,-5],[0,-2],[0,-2],[0,-1],[-1,-2],[-1,-2],[1,0],[0,-1],[1,-1],[1,0],[2,-1],[2,-1],[2,-1],[1,0],[4,-2],[6,-2],[11,-3],[3,0],[3,-1],[9,-1],[3,0],[2,0],[3,0],[1,-1],[1,0],[1,0],[2,-1],[3,-3],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-10],[0,-3],[0,-8],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-4],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-4],[-1,-2],[0,-1],[0,-4],[-1,-2]],[[557,5652],[0,-3],[-1,-5],[0,-1],[0,-1],[-1,-3],[-1,-4],[0,-1],[0,-1],[-1,-1],[-2,-2],[-1,-1],[-1,0],[-2,-1],[-15,-7],[-10,-4],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1]],[[507,5604],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,1],[5,-1],[1,0],[3,-1],[4,-2],[1,-1],[1,0],[4,-1],[8,-2],[14,-5],[2,-1],[1,-1],[2,-1],[1,-1],[0,-1],[2,0],[0,-1],[3,-3],[0,-1],[1,-1],[1,0],[1,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[-1,-1],[-3,0],[-1,-1],[1,-1],[1,0],[2,0],[1,-1],[2,0],[1,-1],[2,-2],[2,-2],[1,0],[2,-1],[2,0],[1,0],[4,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-2,-1],[-1,0],[0,-2],[0,-1],[1,0],[0,-1],[-1,-2],[1,-3],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,-1],[1,-1],[-3,-3],[0,-1],[1,-1],[0,-1],[-1,-2],[1,-1],[2,-1],[0,-2],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[2,-1],[1,0],[0,-2],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,-3],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[2,-2],[1,0],[1,0],[0,-1],[5,0],[1,0],[1,-1],[2,0],[3,-2],[2,0],[1,-1],[1,-1],[0,-1],[1,0],[2,-2],[0,-1],[2,-1],[1,-2],[1,0],[2,-1],[1,0],[2,-2],[5,-3],[1,-1],[0,-1],[2,-2],[0,-1],[1,0],[0,-1],[0,-1],[2,-2],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[2,0],[0,-1],[1,0],[2,-2],[2,-2]],[[659,5464],[2,-2],[2,-2],[0,-1],[2,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-5,-3],[-1,0],[0,-1],[-1,-1],[-2,-1],[-1,0],[-2,-2],[0,-1],[-1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-2],[1,0],[2,-2],[1,-1],[0,-1],[1,0],[1,-2],[1,-1],[1,-1],[4,-3],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[5,-3],[1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[3,-1],[1,-1],[1,0],[1,0],[6,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[2,-2],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[0,-2],[-1,-2],[0,-2],[-1,-1],[0,-2],[1,-2],[0,-2],[1,0],[2,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-4,-2],[-3,0],[-3,-1],[-1,0],[-5,-1]],[[667,5357],[0,-1],[-1,-1],[0,-1],[-3,-2],[-1,0],[0,-1],[0,-1],[2,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-2,-3],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,-2],[1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-4,-3],[-3,-3],[-1,-1],[-1,-2],[-2,-1],[-1,0],[-3,0],[-9,0],[-2,0],[-1,1],[-2,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-3,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-3],[0,-1],[-1,-2],[-1,-1],[0,-1],[1,-2],[1,-1],[0,-1],[1,0],[2,-2],[3,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-3],[-1,-1],[-1,0],[-2,-1],[-1,0],[-3,-1]],[[606,5280],[-6,-2],[-1,0],[-1,0],[-3,0],[-3,0],[-2,-1],[0,-2],[-1,-7],[0,-1]],[[589,5267],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-2],[1,0],[-1,0],[0,-1],[1,-1],[1,-2],[0,-1],[1,-1],[1,0],[1,-1],[1,-3],[0,-1],[-1,-1],[-3,-2],[-1,0],[-3,-1],[-5,-2],[-2,0],[-4,-1],[-1,0],[-3,-1],[-6,-2],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[-3,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1]],[[552,5225],[-1,-1],[0,-1],[0,-3],[0,-2],[0,-1],[-1,-1],[-2,-5],[-1,0],[0,-1],[0,-2],[1,-3],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-2],[1,-1],[2,-2],[0,-1],[2,-2],[0,-1],[2,-2],[0,-1],[0,-2],[0,-3],[1,-1],[1,-1],[2,-1],[1,0],[1,0],[1,-1],[7,-2],[1,0],[0,-1],[1,-1],[1,0],[4,-3],[4,-2],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[3,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-2],[-2,-5],[1,-2],[0,-1],[1,-2],[0,-2],[0,-1],[0,-6],[0,-1],[0,-3],[0,-5],[0,-3],[0,-1],[1,0],[0,-1],[1,-2],[1,-1],[1,-1],[1,-1],[10,-3],[1,0],[1,0],[3,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-2],[1,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-4],[0,-1],[0,-9],[0,-1],[0,-2]],[[616,5041],[-1,0],[-1,-2],[-2,-1],[-3,-2],[-4,-1],[-19,-7],[-7,-2],[-1,0],[-2,0],[-2,0],[-1,-1],[-2,0],[-1,1],[-2,0],[-4,0],[-2,0],[-2,0],[-2,0],[0,-1],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[1,-1],[0,-1],[-1,0],[0,-1]],[[514,4996],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-7,-4],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[0,-1],[1,-1],[1,0],[3,-3],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[1,-1],[0,-1],[1,-4],[1,-1],[0,-1],[0,-1],[1,-2],[-1,-6],[0,-1],[-1,-1],[0,-1],[-1,-4],[-1,0],[-1,-1],[-4,-3],[-1,-1],[0,-1],[2,-1],[1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-3,-3],[-3,-4],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,0],[2,0],[1,-1],[3,-1],[2,-1],[3,0],[3,-1],[2,-1],[1,-1],[2,-1],[3,-1],[1,-1],[5,-1],[1,0],[2,-1],[2,0],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[2,-1],[2,0],[2,-1],[1,-1],[1,0],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[2,-3],[0,-2]],[[552,4886],[0,-2],[1,-2],[0,-2],[1,-1],[0,-1],[0,-1],[1,-4],[1,-3],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-3,-3],[-1,0],[-1,-3],[0,-1],[1,-1],[2,-2],[2,-1],[2,0],[2,-1],[12,-3],[5,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1]],[[582,4845],[8,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[2,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-2]],[[599,4825],[0,-1],[1,-1],[1,0],[1,-1],[4,-3],[1,-1],[2,0],[2,-1],[6,-1],[7,-1],[3,0],[1,0],[1,0],[1,-1]],[[630,4814],[1,-1],[1,0],[1,0],[1,0],[0,-1],[5,0],[5,0],[2,0],[1,0],[2,0],[2,-1],[3,-2],[1,-1],[0,-2],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[2,0],[4,0],[1,0],[1,0],[4,1],[4,1],[1,0],[1,0],[7,0],[1,0],[1,0],[4,-2],[1,-1],[1,0],[1,-1],[1,0],[3,-1],[3,0],[1,0],[2,0],[1,-1],[1,-1],[0,-1],[2,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[2,-1],[1,-1],[4,-1],[1,0],[2,0],[2,0],[2,0],[2,0],[1,-1],[2,0],[2,-2],[1,-1],[3,-2],[1,-1],[2,-2],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[7,-1],[2,0],[1,-1],[1,-1],[1,-2],[2,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[-1,-2],[0,-1],[4,-2],[2,-2],[0,-1],[0,-1],[-1,0],[-1,-1],[-3,-2],[-2,-1],[-1,0],[0,-1],[-1,-2],[-1,-1],[0,-1],[-3,-3],[0,-1],[5,-3],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[2,-1],[2,0],[2,-1],[2,0],[2,-1],[1,0],[0,-1],[3,-1],[2,-2],[2,0],[5,0],[1,-1],[1,0],[1,-2],[0,-2],[-2,-2],[-1,-1],[-1,-1],[0,-1],[1,-1],[2,-1],[3,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[3,-2],[3,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,1],[3,1],[2,1],[3,1],[1,0],[2,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-2],[1,0],[3,-1],[2,0],[3,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-3],[0,-2],[-1,-2],[-1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-2],[2,-1],[0,-1],[2,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[3,1],[2,0],[2,1],[2,0],[1,1],[2,-1],[3,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-3],[0,-2],[1,0],[2,-1],[3,-1],[1,-1],[5,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[2,-1],[1,-1],[1,-1],[0,-1],[-2,-2],[-2,-2],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-3,-1],[-1,-1],[-6,-3],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[5,-2],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[-1,0],[0,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[-1,0],[-1,-2],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[2,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-4,-1],[-1,-1],[-2,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[3,-1],[1,0],[1,0],[0,-1],[2,0],[0,-1],[1,-1],[1,0],[2,-2],[1,0],[1,-1],[0,-1],[-1,-1]],[[903,4557],[-1,-1],[-1,0],[-3,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-2,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-2],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[2,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[2,-2],[1,-1],[3,0],[1,-1],[0,-1]],[[897,4538],[0,-1],[-2,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-3,-2],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[2,-2],[1,-1],[0,-1],[2,-1],[0,-1],[1,-1],[2,0],[0,-1],[2,-1],[4,0],[3,-1],[1,-1],[2,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[3,-1],[2,-1],[1,-1],[1,0],[1,-1],[3,0],[1,-1],[3,-1],[3,-1],[0,-1],[0,-1],[0,-1]],[[921,4490],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-3,0],[-1,0],[1,-1],[3,-1],[2,0],[2,-1],[1,-1],[0,-1],[-2,-2],[0,-1],[1,-1],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-2,-1],[-1,0],[-2,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,-1],[2,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[3,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,-1],[-1,0],[-1,-2],[-1,0],[0,-1]],[[963,4457],[-2,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-2,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-3,1],[-1,0],[1,0],[0,-1],[1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[-2,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-2,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-2,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-2,0],[-3,1],[-1,0],[-1,0],[1,-1],[1,-1],[1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[1,-1],[2,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-2],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-2],[0,-1],[3,-2],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[1,0],[1,0],[2,1],[1,-1],[1,0],[0,-1],[-1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,1],[-1,0],[-1,1],[1,0],[2,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[4,-2],[1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[3,-3],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[-2,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-3],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[-1,0],[-2,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[2,-2],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[2,-1],[2,-1],[2,-1],[1,0],[0,-4],[-1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[2,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[2,0],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[3,-1],[0,-1],[1,0],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-3],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-2,-1],[-1,-1],[0,-1],[-2,0],[-2,0],[-1,0],[0,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-2],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-2],[-1,-2],[0,-1],[1,0],[5,-5],[1,-1],[0,-1],[0,-3],[0,-8],[0,-1],[4,-8],[1,-2],[1,-2],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[2,-3],[0,-1],[1,-1],[2,-2],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-2],[2,-3],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-2],[1,-1],[1,0],[0,-2],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[-1,0],[0,-1],[2,-1],[0,-1],[0,-1],[1,1],[1,-1],[2,-1],[1,0],[2,-1],[-2,0],[-1,0],[0,-1],[1,-2],[-1,-1],[1,-1],[2,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,1],[1,1],[3,1],[1,0],[3,0],[1,0],[2,0],[2,-1],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,-2],[-1,-1],[1,-1],[1,-1],[0,-2],[1,-1],[4,-4],[2,-1],[2,-1],[1,-2],[2,-2],[1,0],[2,-1],[2,-1],[3,0],[1,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[-1,-2],[1,-1],[3,-1],[2,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[0,1],[1,-1],[1,0],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[3,-2],[0,-2],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[1,-1],[1,0],[2,-3],[1,-1],[1,-1],[0,-1],[4,-4],[0,-1],[1,0],[0,-1],[1,-1],[1,-2],[1,-2],[2,-2],[2,-4],[1,0],[0,-1],[1,-2],[1,-2],[1,0],[0,-1],[-1,0],[0,-1],[-1,-6],[-1,-2],[-1,-1],[0,-2],[-1,-1],[1,-1],[0,-1],[0,-2],[0,-1],[2,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-3],[0,-4],[0,-1],[-1,-3],[-1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-6],[0,-3],[0,-1],[0,-1],[1,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-2,-2],[0,-1],[-1,-3],[-3,0],[-1,0],[-1,0],[-1,-1],[0,-1],[1,-1],[1,0],[0,-1],[-1,1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-3],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[4,-1],[4,0],[0,-1],[0,-3],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[5,-3],[3,-1],[2,-2],[2,-2],[0,-1],[1,0],[1,-1],[2,0],[1,-1],[1,-1],[2,0],[1,-1],[3,-1],[3,-2],[2,0],[0,-1],[1,0],[2,0],[1,-1],[1,-1],[0,-1],[-1,-1],[1,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[2,0],[0,-1],[2,-2],[1,0],[4,-2],[1,0],[1,0],[2,-1],[2,-1],[3,-2],[1,0],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,-1],[2,0],[5,-2],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[2,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[0,-1],[2,-1],[2,0],[1,-1],[2,-1],[1,-1],[1,0],[2,-1],[0,-1],[4,-1],[1,0],[1,-1],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[3,-1],[1,-1],[1,0],[1,0],[1,0],[4,-2],[2,-1],[1,0],[2,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[3,-1],[3,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[2,-1],[0,-1],[1,-1],[1,0],[3,-1],[1,0],[4,-2],[1,0],[1,-1],[2,0],[1,0],[2,-1],[2,0],[3,-1],[4,-1],[1,0],[0,-1],[3,-1],[5,-2],[3,-1],[3,-1],[1,0],[2,-1],[1,0],[2,-1],[2,-1],[1,-1],[1,0],[0,-1],[2,-1],[1,-1],[2,-1],[3,-2],[2,-1],[1,-1],[1,-1],[2,-1],[1,0],[2,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[2,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-2,-2],[0,-1],[1,0],[1,-1],[2,-1],[2,0],[1,-1],[1,0],[1,0],[1,0],[2,-2],[1,-1],[1,0],[2,-1],[1,-1],[2,-1],[3,-2],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-2],[2,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[2,-3],[1,0],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[3,-3],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[4,-1],[4,-1],[1,0],[1,-2],[1,-1],[0,-1],[1,-1],[2,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[2,-1],[0,-1],[3,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[-1,-1],[1,-1],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[3,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[2,0],[0,-1],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,1],[1,0],[0,-1],[-1,0],[1,-1],[1,0],[2,0],[1,-1],[0,-1],[1,0],[2,0],[4,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[2,0],[1,0],[2,-1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[2,-1],[-1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[4,0],[4,-2],[1,0],[1,0],[2,0],[1,0],[3,-1],[1,0],[-1,-1],[1,0],[1,1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[1,-1],[2,0],[2,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[-1,-1],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,1],[0,-1],[1,0],[1,-1],[1,0],[2,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[2,-1],[1,0],[2,-1],[2,0],[2,-1],[2,-1],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[-1,-1],[0,-1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[2,0],[2,-1],[1,0],[1,0],[0,-1],[1,0],[2,1],[2,0],[0,-1],[3,0],[1,0],[1,-1],[1,-1],[1,-1],[2,-1],[3,-3],[0,-1],[2,1],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[-1,0],[0,-1],[1,-2],[1,0],[1,-1],[1,1],[1,0],[0,-1],[0,-1],[2,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[2,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[4,-2],[1,-1],[3,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[2,0],[0,-1],[1,0],[-1,-1],[1,-1],[1,0],[0,-1],[-2,0],[-1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[2,-2],[3,-2],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[4,-1],[1,0],[2,1],[1,0],[0,1],[1,1],[1,1],[1,0],[3,1],[2,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[2,2],[4,1],[1,0],[1,0],[6,1],[3,0],[2,-1],[1,0],[1,-1],[6,-1],[11,-3],[1,0],[2,-1],[7,0],[1,0],[2,0],[8,-1],[4,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[2,0],[2,0],[3,0],[1,0],[8,-2],[2,-1],[0,-2],[0,-1],[0,-3],[0,-2],[1,-2],[1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-2],[0,-1],[-1,-4],[0,-2],[0,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[-2,0],[0,-1],[-1,-1],[-1,-3],[0,-1],[0,-3],[-1,-2],[0,-2],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[3,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[2,0],[1,0],[2,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[2,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[3,-2],[1,-1],[2,-1],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[2,0],[1,-1],[3,-1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[0,-1],[4,-4],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[4,-2],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[-1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[2,-2],[1,0],[1,0],[1,0],[1,-1],[1,-1],[2,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[2,-1],[0,-1],[-1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[2,0],[1,-1],[1,-2],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[2,-1],[1,-1],[1,-1],[1,-1],[0,-1],[2,-2],[2,-2],[1,0],[1,-1],[1,0],[0,-1],[2,-1],[1,-2],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[2,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[2,-1],[3,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,-1],[1,-2],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-2],[-1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[3,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[1,-1],[2,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[2,-1],[2,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[2,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[-1,-1],[-1,-1],[0,-1],[2,0],[1,0],[2,0],[2,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[2,0],[0,-1],[2,0],[1,0],[2,0],[1,-1],[1,0],[2,-2],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[2,1],[1,-1],[1,0],[1,0],[2,0],[0,-1],[1,1],[-1,1],[-1,0],[0,1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[2,0],[0,1],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[2,-1],[1,0],[0,1],[1,-1],[1,0],[2,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0]],[[2120,3222],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[0,-2],[1,-1],[1,-8],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[2,-1],[3,-1]],[[2135,3202],[-2,1]],[[2135,3202],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1]],[[2132,3192],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,1],[-1,-1],[-2,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[2133,3147],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2132,3127],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-1]],[[2119,3093],[1,0],[0,-5],[-5,-2],[-6,-3],[-1,0],[-1,-1],[1,-2],[0,-1],[-2,-1],[-4,-2],[-1,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[1,-1],[-2,0],[-2,-1],[-2,1],[-2,0],[-2,-1],[-1,0],[1,-1],[0,-1],[-2,-1],[0,-2],[-1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-2],[1,-1],[-1,-1],[1,-1],[-1,-1],[-1,-1],[1,0],[1,-2],[1,-3],[-3,-3],[-1,-1],[-2,-4],[1,-2],[2,-3],[5,-3],[7,-3],[8,-3],[3,-1],[1,-1],[1,0],[6,-3],[17,-4],[6,-1],[0,-1],[1,0],[2,-1],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[2,-2],[1,-1],[1,0],[1,-1],[1,-1],[2,-1],[1,0],[0,-1],[2,-1],[1,0],[1,-1],[1,-1],[0,-1],[-1,-5],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[2,-2],[1,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[2,-3],[0,-2],[2,-4],[1,0],[0,-1],[1,-2],[1,-1],[1,-1],[9,-5],[1,-1],[1,0],[1,-3],[0,-4],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[1,0],[1,-1],[2,-2],[3,-2],[1,0],[0,-1],[-1,-1],[-1,-1],[0,-2],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-2],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-2],[-1,0],[0,-1],[-1,0],[-1,-2],[-1,-1],[0,-2],[0,-1],[-1,-5],[0,-3],[0,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[1,-1],[1,-1],[0,-1],[-2,-3],[-1,0],[0,-1],[-1,-1],[1,-2],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,-4],[-1,-1],[-1,-2],[-1,-1],[-1,-3],[0,-1],[1,-1],[1,-1],[1,-1],[0,-2],[1,0],[1,-2],[1,0],[1,-1],[3,-2],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[3,-3],[0,-1],[1,-2],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[1,0],[2,-2],[4,-3],[1,-1],[1,-1],[1,0],[3,0],[2,0],[1,0],[2,0],[2,-1],[3,-1],[8,-3],[2,-1],[1,-1],[1,-1],[1,-2],[2,-2],[1,-2],[1,0],[3,-3],[4,-3],[1,-1],[2,0],[10,-2],[4,-1],[4,-1],[3,-1],[1,0],[1,0],[1,-1],[5,-3],[2,-1],[2,-2],[2,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-3],[1,0],[1,-1],[1,0],[4,-2],[1,0],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[4,-2],[1,-1],[2,-1],[2,-1],[1,-1],[1,0],[1,0],[1,-1],[2,-1],[1,-1],[0,-1],[0,-1],[1,0],[4,-3],[1,0],[3,-3],[1,-1],[1,-1],[1,0],[2,-2],[4,-4],[1,-1],[2,-2],[1,0],[3,-1],[0,-1],[2,-1],[2,-1],[5,-4],[4,-2],[1,0],[4,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[6,-2],[1,0],[2,-1],[6,-5],[6,-3],[2,-1],[1,0],[2,-1],[2,0],[3,-1],[3,-1],[1,-1],[9,-5],[3,-1],[1,0],[4,-2],[2,-1],[2,0],[2,-1],[2,0],[4,-1],[5,-2],[1,0],[1,0],[2,-1],[2,0],[1,0],[3,-1],[3,-1],[1,-1],[2,-1],[5,-2],[2,-1],[2,-1],[5,0],[1,0],[1,0],[2,-1],[2,-1],[1,0],[5,-1],[1,0],[2,-1],[1,0],[3,-1],[3,0],[2,0],[1,0],[1,0],[2,0],[2,0],[2,0],[1,0],[1,0],[4,0],[5,0],[5,0],[5,0],[11,-1],[1,0],[1,0],[0,1],[2,0],[2,0],[1,1],[2,1],[1,1],[1,0],[1,1],[1,1],[2,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,1]],[[2554,2706],[1,1],[1,1],[3,0],[4,-1],[2,0],[1,0],[1,0],[6,0],[1,0],[2,0],[5,0],[2,0],[4,0],[2,-1],[1,0],[1,0],[1,0],[5,-1],[4,0],[5,-1],[1,0],[3,0],[3,0],[4,0],[5,0],[1,0],[2,1],[7,0],[4,0],[3,0],[4,-1],[10,-1],[2,0],[2,-1],[2,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[2,0],[2,0],[1,0],[2,0],[6,0],[3,0],[1,0],[2,0],[8,-2],[1,0],[1,-1],[1,0],[1,0],[0,-1],[6,-3],[1,-1],[1,-1],[1,0],[1,-1],[4,-3],[1,0],[2,-1],[2,-1],[2,-2],[1,0],[2,-1],[7,-3],[2,-1],[2,0],[3,-1],[1,0],[1,0],[1,0],[12,-3],[1,0],[5,-1],[3,0],[1,-1],[3,-1],[2,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,-1],[2,-1],[0,-1],[4,-3],[0,-1],[3,-2],[0,-1],[2,-1],[2,-2],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-2],[1,-4],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-2],[0,-1]],[[2794,2635],[-1,-1],[0,-1],[0,-4],[0,-3],[0,-1],[0,-1],[0,-2],[0,-3],[0,-3],[0,-4],[0,-1],[-1,-1],[-5,-2],[-1,0],[-2,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[1,0],[1,-3],[1,0],[0,-1],[2,-1],[4,-2],[1,-1],[5,-2],[1,0],[1,-1]],[[2798,2572],[-1,-3],[0,-2],[0,-1],[0,-1],[-1,-2],[-1,-1],[-2,-2],[-1,0],[-1,-2],[-5,-4],[-1,-1],[-1,0],[0,-1],[-3,-1],[-2,-1],[0,-1],[-2,0],[0,-1],[-1,-1],[-1,0],[-1,-2],[-1,0],[-1,-2],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-2,-3],[-1,-1],[0,-1],[-1,0],[-2,-2],[-1,-2],[-1,-1],[-2,-3],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,0],[-1,-1],[-7,-3],[-3,-1],[-2,-2],[-3,-2],[-1,0],[0,-1],[-1,0],[-2,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,-3],[-1,0],[0,-1],[-3,-1],[-2,-1],[-1,0],[-4,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-4,-2],[-1,-1],[-3,0],[-5,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[0,-2],[-1,0],[-1,-1],[-1,0],[-1,-1],[-3,0],[-5,0],[-4,-1],[-3,0],[-3,-1],[-1,-1],[-3,-1],[-2,-1],[-1,0]],[[2659,2456],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[1,-3],[1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,-2],[-1,-1],[-2,-1],[-6,-3],[-1,-1],[-3,-1],[-3,-1],[-2,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-2],[1,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[2,-1],[1,0],[0,-1],[2,-2],[2,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-2,-1],[0,-1],[0,-1],[1,0],[1,-1],[2,-3],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[2,-1],[0,-1],[2,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,-2],[0,-2],[0,-2],[-1,-1],[1,0],[2,-2],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[2,-2],[1,0],[0,-1],[2,-4],[1,-3],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[0,-1],[2,-1],[1,-1],[-1,-1],[2,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[1,-1],[2,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[0,-1],[2,0],[1,0],[1,-1],[-1,-1],[-2,0],[-1,0],[-1,0],[-3,-3],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[1,-1],[1,0],[3,-3],[6,-4],[1,-1],[1,0],[2,-1],[11,-4],[10,-3],[1,0],[5,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[5,0],[1,-1],[6,-3],[2,0],[1,-1],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[2,1],[3,-1],[1,0],[1,-1],[1,-1],[2,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[3,0],[1,0],[2,-2],[2,0],[1,0],[1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[3,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[2,0],[1,-1],[1,0],[-1,-1],[1,0],[1,0],[0,-1],[2,0],[1,0],[-1,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[2,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,1],[1,0],[1,0],[1,-1],[-1,0],[-1,-1],[1,-1],[1,0],[2,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[2,1],[0,-1],[1,0],[2,0],[2,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[3,-2],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,1],[1,-1],[1,0],[1,0],[-1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[2,-2],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[2,-1],[2,-2],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[5,-3],[3,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[3,-1],[2,-1],[4,-2],[1,-1],[1,-2],[0,-2],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[2,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[2,-1],[1,0],[3,-1],[1,0],[3,-1],[1,-1],[1,0],[1,0],[1,-2],[0,-1],[1,-2],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[-2,-1],[-1,0],[2,-1],[2,-1],[0,-1],[2,-1],[2,-1],[1,-1],[0,-1],[1,0],[3,-3],[0,-1],[1,-1],[2,-2],[1,-1],[1,-1],[1,0],[3,-1],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[0,-1],[1,0],[2,1],[2,-1],[1,0],[2,0],[1,0],[2,0],[1,0],[2,-1],[1,0],[0,-1],[1,0],[3,-1],[3,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[2,0],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,-1],[1,0],[2,-1],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[2,-2],[1,-1],[0,-1],[2,-1],[1,-2],[1,-2],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[3,-1],[0,-1],[1,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[-1,-2],[1,-1],[3,-3],[3,-3],[1,-1],[1,-1],[1,-1],[2,-3],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-2],[-1,-1],[-2,-2],[0,-1],[3,-2],[3,-2],[0,-2],[1,0],[0,-1],[-1,-2],[2,-1],[1,0],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[2,0],[0,-1],[2,0],[1,0],[3,-2],[2,-1],[1,-1],[2,-2],[4,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[3,-1],[1,-1],[3,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,0],[2,-1],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[3,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[2,0],[0,1],[1,-1],[-2,-1],[2,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[2,0],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[2,0],[0,-1],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[2,0],[1,0],[0,-1],[2,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[3,-1],[1,-1],[-1,-1],[2,-2],[1,-1],[1,0],[0,-1],[1,0],[1,-2],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[2,0],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,-1],[5,-2],[2,-1],[1,-1],[0,-1],[-1,-6],[-2,-8],[1,-1],[3,-2],[1,0],[3,-5],[2,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[6,-2],[2,-1],[3,-2],[0,-1],[2,0],[0,-1],[1,-2],[1,-2],[0,-1],[0,-1],[0,-1],[2,-2],[1,0],[4,-2],[0,-1],[1,0],[7,-1],[2,-1],[2,0],[2,0],[1,-1],[2,0],[1,0],[2,-1],[2,-1],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,-1],[2,1],[2,-1],[1,1],[2,0],[1,0],[4,0],[1,0],[2,0],[1,0],[3,-1],[1,0],[1,0],[1,0],[2,0],[3,0],[2,-1],[12,-3],[1,0],[1,-1],[2,0],[2,-1],[4,0],[2,-1],[3,0],[1,-1],[2,0],[2,-1],[1,-1],[2,-1],[1,-1],[3,-3],[2,-1],[1,-1],[2,-1],[0,-1],[2,-1],[1,0],[2,-1],[1,-1],[5,-3],[1,0],[8,-4],[4,-2],[1,-1],[1,-1],[0,-1],[1,-1],[1,-2],[2,-3],[1,-1],[2,-1],[4,-2],[1,-1],[3,-3],[3,-1],[2,-1],[1,0],[2,-1],[4,-2],[2,-1],[0,-1],[2,-2],[2,-1],[2,0],[3,-1],[1,0],[2,1],[3,0],[1,0],[4,-2],[2,-1],[2,-1],[2,-1],[1,-1],[1,0],[2,-2],[4,-1],[1,-1],[1,0],[3,-1],[5,-4],[2,-2],[1,-1],[3,-2],[2,-1],[2,-1],[1,0],[2,-1],[1,-1],[2,-1],[4,-3],[2,0],[3,-2],[4,-1],[1,-1],[3,-1],[0,-1],[1,0],[1,0],[6,-3],[1,-1],[1,-1],[2,-1],[0,-1],[1,0],[1,-1],[1,-1],[2,-2],[3,-2],[1,-1],[1,-1],[1,0],[2,-1],[3,0],[1,-1],[1,0],[2,-1],[2,-1],[4,-1],[1,-1],[2,-1],[1,0],[1,0],[2,-1],[9,-4],[1,0],[1,0],[8,-2],[2,-1],[2,0],[8,0],[7,-1],[1,0],[6,1],[2,0]],[[3598,1773],[2,0],[1,0],[2,1],[2,0],[2,1],[1,0],[1,0],[1,0],[2,-1],[3,-2],[2,-1],[1,-1],[2,0]],[[3620,1770],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-3],[1,-1],[2,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[0,-1],[1,-1],[1,0],[2,-2],[3,-2],[1,0],[1,-1],[0,-1],[2,-3],[1,-1],[1,-2],[1,-2],[1,-1],[1,-2]],[[3655,1730],[1,-2],[1,-1],[1,-1],[1,0],[2,0],[7,-3],[2,0],[2,-1],[4,-1],[7,0],[2,-1],[1,0],[1,0],[1,0],[2,0],[9,-1]],[[3699,1719],[1,0],[1,0],[1,0],[6,-2],[1,0],[2,0],[10,-2],[3,-1],[4,0],[1,-1],[2,0],[1,-1],[1,-1],[5,-2],[3,-2],[1,0],[0,-1],[4,-2],[4,-1],[2,-1],[1,0],[1,0],[2,0],[3,0],[1,0],[1,0],[9,-2],[2,0],[1,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,0],[3,-1],[6,-1],[1,0],[2,-1],[2,0],[7,1],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[2,-1],[2,-1],[5,-3],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[3,-1],[1,0],[1,-1]],[[3857,1678],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,-1],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-2,-3],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,-3],[-2,-2],[-2,-2],[-1,-1],[-1,-1],[0,-3],[-1,-1],[-1,-1],[-3,-1],[-1,-1],[-1,0],[0,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,0],[-2,-2],[0,-2],[-1,-2],[0,-3],[0,-2],[-1,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-5],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[3,-2],[2,-1],[1,-1],[1,-1],[2,0],[1,-1],[6,-1],[15,-4],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[2,0],[1,-1],[3,0],[3,-1]],[[3853,1589],[1,0],[5,-3],[0,-1],[1,0],[2,-1],[1,0],[4,-1],[1,0],[2,0],[1,0],[2,-1],[2,0],[1,0],[9,-3],[3,0],[1,-1],[2,0],[2,0],[7,-3],[2,0],[6,-1],[1,0],[1,-1],[1,0],[1,0],[2,0],[0,-1],[2,0],[1,0],[2,-2],[2,0],[4,-2],[1,0]],[[3853,1589],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[3,-2],[1,-1],[4,-2],[1,-1],[0,-2],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[3,-3],[0,-2],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[2,0],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[9,0],[2,0],[7,0],[8,0],[2,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,-2],[-1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,0],[2,-1],[0,-2],[0,-1],[2,-1],[5,0],[3,0],[1,0],[4,0],[8,0],[1,-4],[2,-1],[2,-1],[2,-2],[0,-1],[0,-4],[-1,0],[0,-1],[0,-1],[-1,-2],[-1,-1],[-5,-8],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-8],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-9],[2,-2],[3,-4],[1,0],[4,-5],[4,-2],[5,-2],[2,-1],[12,-6],[2,-1],[1,0],[3,-1],[4,-1],[2,0],[1,-1],[1,0],[1,-1],[3,-1],[8,-3],[10,-4],[3,-2]],[[3992,1427],[5,-1],[1,0],[3,-1],[4,-1],[1,0],[3,-1],[9,-2],[1,0],[11,-4],[2,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2]],[[4034,1409],[0,-3],[1,-1],[1,-6],[0,-3],[1,-2],[0,-3],[0,-1],[0,-2],[1,-2],[1,-2],[2,-2],[1,-1],[0,-1],[1,-1]],[[4043,1379],[1,-1],[1,-1],[4,-6],[4,-5],[3,-4],[1,-1],[1,-2],[2,-1],[1,0],[-2,-6],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-2],[-1,-1],[-1,-1],[-2,-2],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-2,1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[2,0],[1,-1],[1,0],[0,-2],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[-3,-1],[-4,-5],[-1,-1],[-3,-4],[-1,0],[-1,-2],[-4,-3],[-2,-2]],[[4029,1280],[6,0],[1,0],[2,0],[6,0],[2,0],[3,1],[1,0]],[[4053,1277],[0,-2],[0,-1],[0,-1],[2,-1],[1,-1],[1,-1],[0,-2],[1,-2],[0,-1],[0,-1],[1,0],[2,-1],[4,-1],[1,-1],[2,-3],[0,-1],[-1,-1],[1,-1],[1,0],[3,-1],[1,0],[1,-1],[2,-3],[0,-1],[0,-2],[1,0],[1,-1],[2,0],[4,1],[3,0],[1,0],[2,0],[3,0],[2,0],[1,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[2,-1],[1,0],[2,-2],[5,-2],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-2],[0,-1],[2,-2],[1,-1],[1,-2],[2,-2],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[2,-2],[0,-1],[3,-2],[4,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[6,-2],[1,-1],[2,0],[1,0],[0,-1],[1,0],[9,0],[1,0],[1,0],[1,0],[1,0],[0,1],[5,0],[2,2],[1,0],[1,1],[2,1],[1,0],[2,0],[1,1],[2,0],[5,0],[1,0],[2,0],[1,0],[2,-1],[1,0],[3,-1],[6,0],[1,0],[6,-1],[1,0],[4,-1],[1,0],[4,0],[1,0],[2,-1],[1,0],[3,-1],[5,0],[9,-3],[1,0],[1,0],[2,0],[2,0],[1,-1]],[[4247,1198],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[2,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-2],[1,0],[0,-1],[2,-1],[1,0],[2,-1]],[[4251,1179],[7,0],[10,1],[1,0],[3,0],[1,-1],[9,0],[3,0],[4,0]],[[4289,1179],[4,-1],[0,1],[5,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[6,1],[3,0],[1,0],[3,0],[3,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[2,0],[7,-1],[2,0],[1,0],[5,0],[2,-1],[13,-3],[1,0],[2,-1],[1,0],[4,-1],[1,0],[1,0],[1,0],[2,-1],[2,0],[3,1],[4,-1],[1,0],[1,1]],[[4387,1173],[1,0],[3,1],[1,0],[1,1],[2,0],[1,0],[2,-1],[3,0],[4,-1],[1,0],[3,0],[13,1],[2,0],[1,0],[8,0],[1,0],[1,0],[3,0],[3,-1],[1,0],[17,-1],[14,-2],[12,-1],[2,0],[2,-1],[3,-1],[5,-2],[4,-2],[2,-1],[1,0],[1,-1],[2,0],[10,-2],[2,0],[9,-1],[4,-1],[2,0],[5,-1],[3,-1],[1,0],[1,0],[2,0],[2,0],[1,0],[4,-1],[20,1],[4,0],[1,0],[3,1],[1,0],[3,0],[1,0],[5,1],[4,0],[2,1],[2,0],[3,0],[1,0],[2,0],[6,0],[4,1],[3,0],[1,0],[1,0],[2,0],[12,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[12,0],[1,1],[2,0],[2,0],[1,-1],[8,0],[2,0],[4,0],[2,0],[3,0],[2,0],[3,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[2,-1],[2,0],[0,-1],[1,0],[3,-1],[1,0],[3,-1],[1,0],[2,0],[1,0],[2,0],[1,0],[6,-1],[1,0],[1,0],[1,-1],[2,0],[0,-1],[1,0],[2,-1],[1,0],[3,-2],[1,0],[1,-1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[3,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[5,0],[4,0],[1,0],[1,0],[1,0],[2,0],[1,0],[5,1],[2,0],[4,1],[1,0],[2,0],[2,0],[2,-1],[1,0],[3,0],[3,-1],[1,0],[1,0],[2,0],[1,1],[2,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[3,0],[1,0],[3,0],[6,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[1,0],[1,0],[2,0],[3,-1],[4,-1],[3,0],[2,-1],[4,0],[4,-1],[2,0],[7,1],[1,0],[2,0],[4,0],[1,0],[1,0],[1,-1],[2,-1],[3,-1],[1,-1],[1,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[2,0],[5,0],[1,0],[2,-1],[2,0],[1,0],[2,0],[4,-1],[1,0],[2,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-2],[1,0],[1,0],[1,-1],[3,0],[2,-1],[3,0],[8,-2],[1,0],[2,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[1,-1],[1,0]],[[4952,1121],[3,0],[1,-1],[3,1],[2,-1],[1,0],[5,0],[1,-1],[2,0],[1,-1],[2,-1],[3,-1],[1,-2],[1,0],[3,-2],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0]],[[4996,1108],[2,-1],[1,0],[1,-1],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[4,-2],[6,-3],[8,-4],[11,-5],[2,0],[2,0],[2,0],[3,0],[2,1],[2,0],[1,-1],[2,0],[1,0],[5,-2],[4,-2],[4,-1],[3,-2],[3,-1],[2,-1],[3,-2],[2,-2],[3,-4],[2,-1],[2,-1],[1,0],[10,-2],[1,-1],[1,0],[3,-1],[2,-1],[3,0],[1,-1],[3,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[4,-1],[2,0],[2,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[2,-1],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[2,0],[4,-1],[2,-1],[4,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[3,2],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[3,-1],[3,-1],[6,-2],[6,-1],[4,-2],[1,0],[2,-1],[1,0],[1,-1],[2,0],[4,-1],[1,-1],[4,-1],[1,-1],[1,0],[1,0],[2,0],[2,-1],[2,0],[1,-1],[2,0],[1,0],[1,-1]],[[5231,1037],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[2,0],[6,-1],[2,0],[1,-1],[4,0],[3,-1],[5,0],[1,0],[1,0]],[[5231,1037],[1,0],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-3],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[1,0],[3,-2],[1,0],[2,-1],[1,-1],[2,-1],[1,0],[6,-4],[1,-1],[1,0],[1,-1],[4,-1],[1,0],[3,-1],[1,-1],[3,-1],[1,0]],[[5268,992],[4,-2],[1,0],[1,0],[10,-4],[5,-2],[6,-1],[2,-2],[2,-1],[3,-1],[2,-2],[4,-3],[1,-1],[1,0],[0,-1],[9,-7],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1]],[[5325,960],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[1,0],[1,-1],[8,-3],[3,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[2,0],[2,0],[1,0],[2,0],[0,-1],[1,0],[1,1],[1,0],[2,0],[2,0],[2,-1],[1,0],[5,0],[2,-1],[2,0],[2,-1],[5,-2],[7,-3],[1,-1],[1,0],[2,0],[1,0],[1,0],[2,-2],[1,0],[1,-1],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[3,0],[2,-1],[2,0],[3,-1],[1,0],[1,-1],[1,0],[2,0],[1,0],[2,0],[1,0],[4,-2],[3,-1],[1,0],[1,0],[2,-1],[1,-1],[1,0],[1,0],[5,-1],[3,-1],[2,0],[1,-1],[1,0],[3,0],[0,-1],[1,0]],[[5454,920],[1,0],[1,0],[2,0],[1,-1],[2,0],[1,0],[1,0],[3,1],[3,0],[4,0],[1,0],[8,-1],[3,0],[0,-1],[3,0],[2,0],[2,0],[6,-1],[1,0],[2,0],[12,-1],[5,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[3,0],[3,0],[1,-1],[5,-1],[1,-1],[1,0],[1,0],[4,-2],[2,-1],[3,-1],[4,-2],[1,-1],[1,0],[1,0],[2,-1],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[2,0],[2,2],[2,0],[1,0],[1,1],[1,0],[2,-1],[1,0],[1,0],[3,0],[2,-1],[2,1],[1,0],[2,0],[2,1],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,1],[2,0],[5,-1],[1,0],[1,0],[3,1],[2,0],[2,0],[1,0],[2,1],[1,0],[1,0],[1,1],[2,0],[2,1],[1,0],[4,0],[3,1],[1,0],[4,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[2,0],[5,-1],[1,0],[3,1],[4,0],[5,0],[6,0],[1,0],[1,0],[6,0],[2,0],[2,0],[1,0],[3,0],[1,0],[1,1],[1,0],[1,1],[2,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[5,0],[2,0],[3,0],[1,-1],[3,0],[1,0],[1,0],[2,0],[1,0],[1,0],[5,0],[1,-1],[1,0],[4,1],[2,0],[1,0],[2,0],[1,0],[1,0],[3,0],[2,0],[3,0],[3,0],[3,-1],[1,0],[0,1],[2,0],[2,1],[1,0],[1,0],[1,0],[3,0],[1,0],[2,0],[2,0],[1,0],[2,0],[2,0],[1,0],[1,-1],[1,0],[1,1],[2,0],[1,0],[1,0],[2,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,-1],[1,0],[1,0],[3,-1],[1,0],[2,0],[2,1],[1,0],[4,0],[1,0],[2,0],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[2,0],[3,-1],[2,0],[2,-1],[4,-1],[2,-1],[1,0],[1,-1],[5,-1],[1,-1],[5,-2],[1,-1],[4,-2],[4,-2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0]],[[5887,901],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[4,-2],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[2,-1],[2,-1],[3,-1],[0,-1],[1,0],[2,-2],[2,-2],[2,-2],[2,0],[0,-1],[3,-1],[0,-1],[1,0],[0,-1]],[[5949,867],[2,-1],[4,-2],[1,0],[1,-1],[2,0],[4,1],[6,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-3]],[[5971,850],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-5],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-2],[0,-3],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[3,0],[1,0],[1,0],[1,0],[3,-1],[0,-1],[3,-1],[1,0],[2,-1],[2,0],[1,0],[3,-1],[2,-1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[3,-1],[3,-2],[3,-1],[2,-1],[3,-1]],[[6031,766],[2,-2],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[2,0],[7,0],[3,0],[2,0],[6,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[6,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[2,1],[2,0],[2,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[7,0],[1,0],[4,0],[3,0],[2,0],[1,0],[4,0],[4,0],[4,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[4,0],[2,0],[2,0],[6,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[5,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[5,0],[1,0],[5,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[3,-1],[0,-1],[1,0],[1,0],[5,-3],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[2,-1],[0,-1],[3,-2]],[[6243,742],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[5,-1],[3,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[3,-1],[3,-2],[1,-1],[3,-1],[0,-1],[2,-1],[1,0],[3,-3],[2,-1],[4,-3],[2,-1],[8,-5],[2,-1],[6,-2],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[3,-2],[4,-1],[1,-1],[2,-1],[5,-1],[2,-1],[7,-3],[1,0],[5,-2],[3,-1],[5,-1],[0,-1],[3,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[2,0],[2,0],[2,0],[1,-1],[3,-1],[1,0],[1,0],[1,0],[2,0],[2,0]],[[6411,662],[2,0],[1,0],[1,-1],[2,0],[2,-1],[2,-1],[1,0],[1,0],[2,0],[2,0],[3,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[2,-1],[3,-1],[1,0],[3,0],[4,-1],[1,0],[2,0],[2,-1],[2,-1],[2,-1],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[3,-1],[3,-1],[1,-1],[1,0],[3,-1],[1,-1],[2,-1],[2,0],[6,-4],[1,0],[2,-2],[0,-1],[3,-1],[3,-1],[3,-2],[3,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[2,-1],[1,0],[2,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[2,-1],[2,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[2,-1],[2,0],[2,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[3,-3],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[2,0],[0,-1],[1,0],[1,-1],[3,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[1,-2],[1,0],[2,-1],[2,-1],[1,0],[4,-3],[1,0],[1,-1],[3,-2],[3,-1],[0,-1],[2,-1],[1,-2],[2,-2],[3,-2],[1,0],[0,-1],[2,0],[1,0],[1,0],[3,1],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[3,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0]],[[6652,566],[1,0],[1,1],[0,1],[1,0]]],"transform":{"scale":[0.0010616607577035,0.0016462491652150615],"translate":[-124.73460723799991,32.531669490003665]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment