Skip to content

Instantly share code, notes, and snippets.

@LuisSevillano
Created October 7, 2017 23:07
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save LuisSevillano/0d0067c23463c95cc3b4d5f2633bdde0 to your computer and use it in GitHub Desktop.
Save LuisSevillano/0d0067c23463c95cc3b4d5f2633bdde0 to your computer and use it in GitHub Desktop.
Center and Scale your map
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="//d3js.org/d3.v4.js" charset="utf-8"></script>
<script src="//d3js.org/topojson.v1.js"></script>
<style>
path {
stroke-linejoin: round;
}
.city {
fill: rgb(240, 240, 240);
stroke: rgb(0, 0, 0);
stroke-width: .2;
}
svg {
background-color: #D0E4E7
}
.land {
fill: rgb(245, 245, 245);
}
.coast {
fill: none;
stroke: #76aeb6;
stroke-width: 1.5;
}
</style>
</head>
<body>
<svg width="960" height="500"></svg>
<script>
d3.queue()
.defer(d3.json, 'map.json')
.await(function(error, map) {
if(error) throw error;
var svg = d3.select("svg"),
width = +svg.attr("width"),
height = +svg.attr("height");
var topology = topojson.feature(map, map.objects.coruna),
coast = topojson.feature(map, map.objects.border)
var projection = d3.geoMercator()
.translate([width / 2, height / 2]);
var path = d3.geoPath()
.projection(projection)
var bounds = d3.geoBounds(topology),
center = d3.geoCentroid(topology);
// Compute the angular distance between bound corners
var distance = d3.geoDistance(bounds[0], bounds[1]),
scale = height / distance / Math.sqrt(2);
// Update the projection scale and centroid
projection.scale(scale).center(center);
svg.append("path")
.datum(coast)
.attr("class", "land")
.attr("d", path);
svg.append("path")
.datum(topology)
.attr("class", "city")
.attr("d", path);
svg.append("path")
.datum(coast)
.attr("class", "coast")
.attr("d", path);
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"border":{"type":"GeometryCollection","bbox":[-9.301515672,41.866325962000005,-7.661721236000001,43.791356591],"geometries":[{"type":"LineString","arcs":[0,1,2]}]},"coruna":{"type":"GeometryCollection","bbox":[-8.469084160000001,43.301233,-8.37429406,43.389972580000006],"geometries":[{"type":"MultiPolygon","arcs":[[[3]],[[4]],[[5]],[[1,6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]]]}]}},"arcs":[[[2097,0],[-7,14],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-2,0],[-2,0],[0,1],[0,2],[-1,1],[-2,2],[-1,1],[0,2],[-1,1],[-1,1],[-1,1],[0,1],[0,2],[-1,0],[-1,0],[-2,1],[-2,4],[-1,2],[0,1],[-1,1],[-2,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,2],[0,1],[1,2],[0,1],[-1,0],[-1,-2],[-1,0],[0,-1],[-1,0],[0,1],[0,3],[-2,0],[-1,1],[-1,0],[0,1],[-2,2],[-2,3],[0,1],[1,1],[1,1],[-1,0],[-2,1],[-1,0],[-2,2],[-1,1],[0,1],[-1,3],[0,3],[0,1],[-1,0],[0,1],[1,1],[0,3],[1,6],[1,7],[1,2],[0,3],[1,3],[1,2],[0,6],[2,4],[0,2],[1,1],[2,4],[3,4],[2,2],[3,4],[6,4],[1,1],[0,1],[-1,1],[-2,1],[-1,0],[-3,0],[-2,0],[-3,-1],[-2,0],[-2,0],[-2,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,2],[1,0],[0,1],[-5,3],[1,1],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[7,-1],[0,1],[2,0],[-1,0],[0,-1],[6,-1],[2,-1],[1,0],[1,0],[1,0],[2,2],[2,1],[-1,1],[-2,1],[0,1],[-1,0],[-1,0],[-2,1],[-1,1],[-2,1],[-7,3],[-8,2],[-2,1],[-2,0],[-1,0],[-2,1],[0,-1],[-1,0],[-1,-1],[-1,-2],[-1,-2],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[1,1],[1,1],[2,3],[0,1],[0,1],[1,3],[1,0],[1,0],[2,1],[2,1],[0,1],[-4,1],[-1,1],[0,1],[1,1],[2,0],[1,1],[0,2],[1,1],[1,2],[1,1],[3,2],[1,0],[1,1],[2,1],[3,0],[2,0],[3,1],[0,1],[-3,0],[-1,1],[1,0],[0,1],[-1,0],[-6,0],[-1,0],[0,1],[1,0],[2,1],[1,0],[3,0],[0,1],[-1,0],[-1,0],[0,1],[1,1],[3,0],[1,0],[0,1],[-1,0],[-3,0],[-2,0],[-1,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-3,1],[-1,0],[-2,1],[-7,1],[-1,0],[-1,1],[0,1],[0,1],[1,1],[-1,0],[-1,1],[-1,0],[-1,2],[-1,3],[-1,1],[-1,2],[0,1],[1,1],[-2,0],[-2,0],[-1,0],[-1,2],[0,1],[-1,1],[-1,0],[-2,0],[0,1],[0,1],[1,0],[2,1],[1,0],[2,1],[1,1],[0,1],[-3,1],[-1,1],[0,1],[2,0],[0,1],[1,0],[0,1],[-1,1],[-3,5],[0,2],[-1,1],[0,1],[0,4],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[2,2],[1,0],[0,2],[1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[3,3],[1,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,1],[0,2],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,2],[1,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,2],[0,1],[-1,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[-2,0],[0,1],[0,1],[3,1],[0,1],[-1,0],[0,1],[1,2],[1,0],[1,1],[2,0],[0,2],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,1],[1,0],[0,2],[-1,1],[0,2],[1,0],[1,2],[0,2],[0,1],[2,1],[1,1],[1,1],[-1,1],[1,1],[1,3],[0,2],[-1,1],[2,3],[1,0],[0,1],[-1,2],[-2,2],[-1,1],[0,1],[2,1],[1,1],[-1,1],[-1,0],[-1,1],[1,2],[-1,2],[-1,0],[-1,1],[-1,0],[0,1],[1,4],[1,1],[1,1],[0,1],[0,1],[1,1],[2,1],[1,2],[1,0],[1,1],[1,0],[2,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-2,1],[-1,1],[-1,1],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,2],[-1,0],[-1,1],[-1,1],[-2,2],[-1,0],[0,1],[-1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,1],[2,2],[1,1],[-1,0],[0,1],[1,2],[0,1],[-1,1],[-1,1],[0,-1],[-1,0],[-1,0],[0,2],[-1,0],[-3,0],[-1,0],[0,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[1,1],[2,0],[0,1],[-1,0],[-2,1],[-2,1],[0,1],[1,0],[2,1],[2,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[-1,1],[-1,0],[4,2],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,2],[-2,0],[0,1],[0,1],[1,2],[0,1],[1,0],[0,1],[4,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-3,2],[-1,1],[-1,0],[0,3],[0,1],[1,1],[2,0],[0,1],[0,1],[0,1],[-1,1],[-4,2],[-1,0],[-1,2],[-1,2],[1,2],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-2,2],[1,0],[3,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,1],[-3,3],[0,1],[-1,1],[-1,0],[0,1],[1,0],[1,0],[1,1],[2,5],[0,2],[0,1],[1,3],[-1,1],[-1,1],[0,1],[1,1],[2,0],[1,0],[1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[-1,1],[0,2],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[1,0],[1,1],[0,2],[1,0],[1,0],[0,2],[-1,2],[0,1],[1,1],[0,5],[3,3],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[-2,0],[-1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,2],[-1,0],[-1,0],[0,1],[0,3],[0,2],[0,1],[2,2],[1,0],[0,1],[-1,2],[-1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,2],[1,2],[0,1],[2,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[2,1],[1,0],[2,0],[2,2],[1,1],[2,0],[1,0],[1,1],[1,0],[0,2],[1,0],[-1,2],[0,1],[1,0],[1,0],[0,1],[1,0],[2,1],[3,0],[-2,1],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[1,1],[1,1],[1,0],[1,0],[0,1],[1,1],[2,0],[2,0],[1,1],[1,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-2,0],[-5,-1],[-2,0],[0,1],[0,1],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-4,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,2],[-2,0],[-1,0],[0,2],[0,2],[-1,0],[-2,0],[-2,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,0],[0,2],[2,1],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,1],[-1,2],[-1,0],[-1,0],[0,1],[1,1],[1,0],[2,1],[1,0],[0,1],[-1,1],[-2,0],[-2,1],[-3,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,1],[1,2],[1,1],[0,1],[0,1],[-2,1],[-1,0],[-2,0],[-1,1],[0,1],[1,2],[-2,0],[-1,0],[0,1],[1,0],[0,1],[2,1],[3,1],[1,1],[1,0],[1,0],[0,1],[-1,1],[2,2],[0,1],[-1,0],[-3,-1],[-1,-1],[-1,0],[-1,2],[0,1],[3,0],[1,0],[1,1],[0,1],[-1,1],[-1,0],[0,1],[-3,1],[2,1],[1,0],[0,1],[2,1],[0,1],[-2,0],[-2,0],[-1,0],[5,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,2],[1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,1],[0,1],[1,0],[1,-1],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[-2,0],[-1,0],[-1,0],[-1,2],[-2,-1],[0,1],[-1,0],[-2,2],[-3,0],[-1,0],[-1,1],[0,1],[1,1],[1,0],[1,0],[1,0],[0,1],[2,2],[1,0],[2,0],[0,1],[2,0],[1,1],[2,2],[1,0],[1,2],[2,2],[2,2],[1,0],[2,1],[1,1],[-1,0],[0,1],[-2,0],[-1,0],[0,2],[-2,-1],[-1,1],[-1,0],[0,1],[2,3],[-1,0],[0,1],[2,-1],[1,0],[1,1],[1,1],[1,0],[3,1],[1,1],[0,1],[0,1],[-2,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,2],[0,2],[0,1],[1,2],[1,0],[1,0],[1,1],[1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[1,1],[0,2],[-1,1],[-1,2],[-5,0],[-3,0],[-2,1],[-1,0],[-2,0],[-1,0],[-1,0],[1,1],[2,1],[0,1],[-2,0],[0,1],[0,1],[-1,1],[0,3],[-1,1],[-2,1],[-1,1],[0,1],[1,2],[-1,2],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[2,2],[3,2],[1,1],[0,3],[0,1],[1,1],[1,2],[0,1],[-1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,1],[-1,0],[-4,0],[-1,0],[-1,1],[-2,0],[-2,-1],[-1,1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,1],[-1,0],[-2,0],[-3,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,1],[3,1],[0,1],[0,3],[0,1],[0,1],[1,1],[1,1],[1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[-1,0],[-4,2],[1,1],[0,1],[1,0],[-1,1],[1,2],[-1,0],[0,1],[-1,0],[-2,1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,2],[-1,0],[-1,1],[-3,0],[0,1],[1,0],[1,0],[1,2],[1,1],[1,1],[2,-1],[1,0],[0,1],[1,0],[1,1],[0,1],[3,0],[1,0],[0,1],[-2,1],[-2,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,1],[-3,-1],[-1,-1],[-6,0],[-1,1],[-2,0],[-1,0],[2,1],[-1,1],[1,0],[0,1],[3,-1],[1,0],[1,1],[0,1],[-1,1],[-2,1],[-1,0],[-1,1],[0,1],[1,1],[1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-2,0],[0,1],[1,0],[1,0],[1,0],[-2,0],[-2,0],[0,1],[1,1],[0,1],[-2,1],[-1,-1],[0,1],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[1,1],[1,0],[0,1],[1,2],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,1],[0,1],[-3,1],[-1,1],[0,1],[-2,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,2],[-1,1],[-1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[0,-1],[2,3],[1,1],[-1,1],[0,1],[1,0],[1,0],[0,2],[-1,2],[0,1],[-1,1],[-3,1],[-2,1],[-2,1],[-2,0],[-1,0],[0,1],[-1,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[-2,2],[0,1],[0,1],[-1,1],[0,2],[1,1],[0,1],[2,1],[1,1],[1,0],[2,1],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1],[2,1],[0,1],[1,0],[1,0],[1,1],[4,1],[1,0],[2,1],[0,1],[-3,1],[0,1],[1,0],[1,1],[4,-1],[0,1],[1,1],[0,1],[-1,0],[-2,1],[-1,1],[-2,0],[-2,1],[0,1],[-1,0],[0,1],[-1,1],[1,1],[-1,0],[-2,2],[-2,0],[-2,2],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[0,2],[1,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[1,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,2],[-1,3],[-1,1],[-1,2],[0,1],[-1,0],[-1,0],[0,1],[1,2],[1,0],[-1,2],[0,1],[1,0],[1,0],[0,1],[1,2],[1,0],[-1,0],[0,1],[-1,2],[0,1],[0,1],[-2,4],[-1,0],[-1,0],[-1,1],[0,2],[1,0],[0,1],[1,1],[-2,1],[-1,0],[-1,0],[0,1],[2,1],[0,1],[1,0],[1,-1],[0,1],[-2,0],[0,1],[1,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[1,0],[-1,1],[-1,0],[1,0],[-1,2],[-1,-1],[-1,1],[0,-1],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[-3,1],[-1,0],[1,1],[-1,0],[-1,0],[-2,1],[-1,1],[-1,1],[0,1],[1,0],[0,1],[-2,2],[-1,1],[-1,2],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,0],[0,1],[0,2],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[1,0],[1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,2],[2,1],[0,1],[-1,1],[-1,1],[-1,-1],[-1,0],[-1,2],[1,1],[1,0],[0,-1],[1,1],[1,0],[-1,0],[-3,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[-3,1],[-1,0],[0,1],[1,1],[0,1],[-3,1],[-1,0],[0,1],[1,0],[3,0],[0,1],[0,1],[-1,1],[-1,0],[-2,0],[-1,0],[0,1],[0,1],[2,0],[0,1],[-1,0],[-1,1],[1,0],[3,1],[-1,1],[0,1],[1,0],[1,0],[-1,-1],[1,-1],[1,1],[1,0],[1,0],[1,-1],[0,-1],[6,0],[2,1],[1,0],[0,1],[1,0],[1,0],[1,0],[2,2],[0,2],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,-2],[1,0],[0,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,1],[2,1],[0,1],[-1,0],[0,1],[1,0],[2,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[3,0],[1,-1],[2,0],[1,-1],[2,0],[-1,1],[-1,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,-2],[1,-1],[1,-1],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-2],[1,0],[1,0],[0,-1],[-1,0],[3,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,1],[1,0],[0,1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,1],[2,1],[1,1],[2,1],[1,0],[1,0],[2,1],[2,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,2],[1,1],[3,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[2,1],[0,1],[1,0],[1,-1],[1,-1],[0,-1],[2,0],[1,1],[0,1],[1,0],[1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[3,-1],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,-1],[2,-1],[0,1],[0,1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-2],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,1],[1,0],[0,-1],[0,-2],[1,0],[0,-1],[1,0],[1,0],[3,2],[0,1],[1,2],[1,0],[1,2],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,0],[1,1],[1,-1],[1,-1],[2,0],[3,0],[1,0],[1,1],[0,1],[2,1],[0,2],[1,2],[0,1],[0,1],[0,1],[1,0],[1,2],[1,0],[1,0],[2,1],[1,-1],[1,1],[1,0],[3,1],[1,-1],[0,1],[3,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[2,-1],[1,0],[1,1],[0,1],[3,1],[1,1],[1,0],[1,0],[1,0],[2,0],[2,0],[1,1],[-1,2],[-1,2],[1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,2],[0,1],[1,0],[4,1],[1,0],[1,0],[-1,1],[-2,0],[0,1],[-1,0],[0,1],[1,4],[0,1],[0,1],[1,1],[4,0],[1,0],[1,-1],[4,-2],[1,-1],[4,-3],[2,-1],[1,-1],[5,0],[2,0],[1,-1],[1,-1],[0,-1],[1,-1],[19,-1],[1,-1],[-1,0],[-12,1],[-1,0],[-1,0],[-5,1],[-1,0],[-1,-2],[-1,0],[-2,-1],[-2,0],[0,-1],[-1,0],[-1,-5],[0,-1],[2,-1],[1,0],[5,-2],[-1,0],[-4,1],[-2,-1],[0,1],[-2,-2],[-3,-3],[-1,-1],[9,-6],[1,0],[2,0],[7,2],[-3,-1],[0,-1],[-1,0],[1,-1],[-3,-1],[0,-1],[12,-4],[0,-1],[1,0],[2,-2],[5,-3],[1,0],[1,0],[-1,0],[-1,-1],[1,0],[7,-5],[2,-1],[2,0],[1,-1],[1,0],[2,1],[1,0],[3,1],[2,1],[3,0],[1,0],[-1,1],[1,1],[-1,0],[-1,2],[1,1],[3,0],[0,-1],[-1,0],[0,-1],[2,0],[2,1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[-1,-2],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-3,-1],[0,-1],[0,-1],[1,0],[1,-1],[5,-2],[2,0],[2,-1],[2,0],[2,0],[5,1],[14,3],[3,1],[3,1],[9,3],[2,2],[7,3],[2,2],[3,2],[-3,9],[-1,4],[-3,-1],[-2,0],[0,1],[0,1],[0,1],[-1,2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,2],[-1,0],[-1,1],[-1,3],[0,3],[0,1],[1,0],[1,1],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[2,1],[1,1],[1,1],[0,1],[-1,1],[1,2],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,-2],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,1],[2,0],[3,1],[1,2],[1,0],[6,6],[1,3],[5,14],[1,4],[1,7],[0,4],[-1,3],[-1,5],[-4,8],[-3,7],[-1,2],[-3,2],[-1,1],[-1,1],[-3,1],[-2,1],[-1,0],[-3,0],[-3,0],[-2,0],[-2,0],[1,-2],[-1,0],[-1,0],[-1,-1],[1,-2],[3,-2],[-1,-1],[-1,0],[0,1],[-2,2],[-1,1],[-1,0],[0,-1],[0,-1],[-1,1],[-2,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[2,1],[-1,2],[-1,2],[-4,4],[-1,1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-2,2],[-3,1],[-3,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-2,1],[-2,0],[-1,1],[0,1],[-2,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[0,-1],[-1,-1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,1],[-1,0],[-1,-1],[-2,0],[-1,-3],[-1,0],[-1,0],[-2,0],[-4,2],[-1,0],[-1,0],[-1,1],[-3,3],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-3,1],[-1,-1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-2,0],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[1,1],[-2,1],[-1,1],[-2,1],[-1,3],[0,1],[1,0],[1,0],[0,1],[1,1],[1,2],[0,2],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[1,0],[0,1],[1,1],[1,-1],[1,0],[1,1],[-2,0],[0,1],[1,0],[-1,1],[-1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[0,1],[1,0],[0,-1],[1,0],[1,-1],[0,1],[1,0],[0,1],[1,-1],[1,0],[1,0],[1,0],[-1,2],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,1],[0,1],[1,0],[2,1],[0,1],[1,1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,1],[0,1],[0,1],[2,0],[1,-1],[0,1],[1,1],[1,0],[1,-1],[0,-1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,-1],[2,-1],[1,0],[1,0],[1,-1],[1,0],[-1,3],[1,0],[4,-5],[1,0],[0,1],[-1,2],[0,1],[0,1],[1,0],[0,-1],[1,-1],[2,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-2],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-2],[1,-2],[1,-1],[1,-1],[1,0],[1,-2],[0,-3],[2,-1],[1,0],[1,0],[2,0],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[2,-1],[6,1],[6,1],[3,1],[7,2],[6,2],[2,1],[4,1],[3,2],[6,3],[3,2],[1,1],[2,2],[6,5],[2,2],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[2,0],[1,0],[2,1],[0,1],[1,1],[0,2],[0,1],[0,2],[1,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,2],[1,0],[1,1],[-1,0],[-1,1],[-1,2],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[-1,1],[0,1],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,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],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[1,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[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],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[-2,2],[3,2],[-2,-2],[0,-1],[1,0],[1,-1],[2,-1],[0,1],[2,0],[0,-1],[2,0],[2,-1],[1,0],[1,-1],[0,-1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-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,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[2,0],[1,0],[-1,0],[-1,1],[1,0],[1,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,2],[2,2],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,1],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,-1],[2,0],[1,1],[2,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,-1],[1,0],[2,1],[1,0],[1,1],[0,1],[1,0],[0,2],[1,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[1,-1],[2,-1],[2,-1],[1,1],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[2,0],[2,0],[2,0],[2,0],[1,0],[2,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[3,1],[8,2],[3,1],[1,2],[1,0],[1,0],[2,-3],[1,-1],[-1,0],[1,0],[4,-1],[2,-1],[2,1],[1,1],[1,0],[4,1],[0,-1],[4,2],[4,2],[4,2],[2,1],[0,1],[1,0],[2,2],[0,1],[0,1],[-1,1],[-4,-2],[-3,-1],[-3,0],[-1,0],[1,0],[0,1],[-1,1],[-1,0],[-3,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,1],[-1,2],[1,1],[-11,-3],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,2],[0,2],[-1,3],[-1,2],[-3,3],[-1,1],[-2,2],[-3,1],[0,1],[-1,0],[1,1],[2,2],[1,1],[2,0],[5,2],[13,3],[8,2],[4,1],[9,3],[14,4],[0,-1],[1,-1],[1,-1],[1,0],[-11,-4],[1,-1],[-8,-2],[2,-3],[0,-1],[1,1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[9,2],[4,1],[2,-1],[4,-2],[3,1],[1,0],[4,2],[6,2],[-1,-1],[0,-1],[2,-1],[1,-2],[1,0],[3,1],[1,0],[0,1],[-1,0],[1,1],[2,3],[1,1],[1,0],[4,-4],[1,-2],[16,5],[-15,-5],[0,-1],[-3,-1],[-1,-1],[1,0],[-18,-6],[-1,0],[1,0],[0,1],[0,1],[-14,7],[-15,-3],[0,-5],[1,0],[8,2],[0,-1],[-6,-2],[0,-4],[1,-1],[8,2],[0,-1],[-4,-1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[-3,-1],[4,-6],[1,0],[0,-2],[1,0],[0,2],[1,4],[3,0],[0,-3],[1,0],[0,1],[1,0],[0,-2],[1,0],[2,0],[0,1],[0,-1],[2,0],[1,0],[-1,3],[1,0],[1,-2],[1,0],[1,0],[-1,1],[1,1],[1,-3],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[-2,4],[1,0],[2,-3],[1,-2],[3,1],[2,0],[1,1],[-1,1],[2,0],[0,1],[0,1],[0,3],[1,-3],[1,0],[1,-1],[1,0],[0,4],[1,-5],[3,1],[-1,3],[0,1],[2,-6],[3,1],[0,-1],[1,0],[-1,1],[1,0],[0,-1],[2,1],[1,-1],[2,1],[-5,6],[1,0],[1,-1],[4,1],[2,-3],[2,1],[-3,7],[3,0],[2,-4],[3,0],[-1,3],[1,-2],[1,-1],[0,1],[1,-1],[2,1],[1,1],[-4,1],[0,1],[4,-2],[1,1],[-1,1],[1,0],[-10,3],[1,1],[10,-3],[1,2],[-4,1],[0,1],[4,-2],[2,2],[-7,3],[0,1],[8,-3],[4,4],[-5,2],[5,-1],[1,1],[-5,1],[0,1],[5,-2],[1,1],[-6,3],[6,8],[4,-1],[6,8],[-4,4],[-1,0],[-5,-7],[-2,1],[-5,-7],[-1,0],[-5,1],[15,21],[1,0],[1,0],[2,-1],[1,0],[1,1],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[2,2],[1,0],[5,-1],[0,-1],[-2,-2],[2,-1],[-4,-4],[3,-3],[5,6],[2,-1],[-5,-7],[3,-1],[8,4],[-2,2],[-3,-2],[0,1],[1,0],[2,2],[12,6],[-6,2],[-8,-4],[-3,2],[26,13],[3,-2],[-12,-6],[1,0],[3,-2],[4,0],[2,1],[-2,1],[1,0],[1,-1],[2,2],[0,1],[-1,0],[-1,-1],[0,1],[7,2],[6,1],[-5,-1],[-1,-3],[8,1],[-8,-2],[0,-1],[7,0],[0,1],[1,1],[0,-1],[9,0],[2,2],[-10,3],[0,-1],[-1,1],[1,0],[-3,1],[-1,0],[-1,0],[0,1],[1,0],[14,-5],[1,1],[13,-4],[1,0],[2,9],[7,0],[0,-1],[-1,-8],[15,0],[7,3],[4,9],[1,-1],[3,2],[-2,1],[1,4],[-1,-4],[2,-1],[0,1],[2,0],[0,2],[-1,0],[0,1],[1,0],[0,1],[0,2],[0,2],[1,2],[-1,0],[-4,0],[0,-1],[-1,0],[1,14],[0,3],[1,0],[0,-1],[9,0],[9,0],[1,-1],[0,2],[0,2],[-4,0],[7,0],[0,2],[-10,1],[1,0],[0,1],[1,0],[0,-1],[7,0],[0,4],[0,1],[1,0],[1,0],[0,2],[-3,0],[-1,0],[1,1],[1,0],[-1,0],[-1,4],[0,1],[-2,0],[-1,-1],[-1,0],[0,3],[-1,3],[0,1],[1,1],[1,0],[1,-1],[2,-2],[2,-3],[1,1],[1,0],[0,2],[1,1],[1,1],[2,5],[2,2],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[4,-1],[2,0],[2,0],[1,0],[3,2],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,-1],[4,1],[2,2],[1,0],[5,4],[-5,-4],[-2,-2],[9,-9],[-1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,1],[2,1],[1,0],[4,7],[1,0],[-3,-6],[0,-1],[0,-4],[-1,0],[1,0],[1,1],[1,0],[1,2],[1,-1],[1,-1],[0,-1],[1,0],[1,1],[0,-1],[2,0],[1,0],[2,2],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,2],[4,1],[0,-1],[2,0],[-2,5],[1,0],[2,-5],[1,1],[0,1],[1,-2],[0,1],[0,1],[2,0],[3,0],[-1,2],[0,1],[7,3],[2,-2],[0,1],[1,0],[3,1],[-2,2],[2,-1],[-1,2],[1,1],[1,0],[10,6],[-3,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,1],[0,-1],[1,0],[1,-1],[0,-1],[-1,-1],[1,0],[3,1],[1,0],[0,1],[1,1],[-1,0],[0,1],[2,1],[1,0],[4,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[1,1],[1,0],[2,-1],[0,1],[2,-1],[1,0],[2,1],[2,2],[0,1],[1,1],[0,1],[0,1],[0,1],[-2,1],[1,0],[1,-1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[3,2],[0,1],[-1,1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[2,2],[-1,0],[-2,0],[1,1],[1,1],[2,2],[0,2],[0,1],[0,1],[1,0],[0,2],[3,1],[1,0],[1,0],[1,0],[1,0],[1,1],[-5,2],[-1,-1],[-2,1],[4,5],[6,-1],[1,-1],[1,0],[1,0],[-2,1],[-2,1],[-1,0],[0,1],[-1,1],[1,1],[4,5],[-1,0],[3,5],[3,-1],[1,1],[0,1],[1,5],[2,1],[0,1],[0,2],[-1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[2,3],[-1,1],[1,0],[1,-1],[3,1],[2,1],[4,1],[4,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,0],[1,0],[2,1],[2,0],[1,1],[2,0],[1,0],[0,1],[0,2],[0,2],[0,1],[1,1],[1,1],[1,1],[0,1],[1,3],[1,0],[1,1],[1,1],[0,1],[1,0],[1,0],[3,0],[2,0],[1,-1],[3,-1],[2,-1],[3,0],[2,0],[1,1],[1,2],[2,0],[1,1],[6,1],[0,-1],[1,0],[1,0],[2,2],[2,1],[1,1],[0,1],[6,2],[0,1],[1,1],[1,0],[1,0],[4,1],[3,1],[1,1],[1,0],[1,0],[-1,1],[5,1],[1,0],[0,1],[1,0],[0,2],[6,3],[2,-2],[1,1],[1,0],[-1,3],[13,2],[2,-5],[2,-1],[10,-2],[5,-1],[2,-1],[2,0],[1,0],[4,1],[1,0],[4,-2],[-1,0],[-1,0],[-2,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[3,-1],[2,-1],[1,-1],[2,0],[1,-1],[1,0],[1,-2],[2,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[2,0],[2,0],[3,-2],[2,-1],[0,-1],[4,0],[3,1],[2,0],[1,1],[1,0],[0,1],[5,2],[1,1],[1,1],[1,0],[0,1],[-1,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[2,1],[1,-1],[1,-1],[5,0],[4,-1],[2,0],[1,-2],[2,-1],[1,0],[2,1],[0,1],[1,1],[-1,1],[0,1],[-1,1],[-1,1],[-5,3],[-1,0],[1,0],[-1,2],[-2,1],[2,1],[7,-6],[2,-1],[5,-4],[1,0],[-1,-1],[0,-1],[-1,0],[-2,-1],[-1,0],[1,-1],[4,0],[1,1],[2,1],[2,1],[1,0],[1,0],[3,0],[5,-2],[4,-1],[2,-1],[4,-1],[4,-1],[5,-1],[2,-1],[1,2],[3,2],[3,1],[5,3],[1,0],[1,-1],[1,1],[-1,1],[-1,0],[-1,0],[-5,-1],[-1,0],[-1,0],[-2,0],[0,2],[-2,-1],[-1,0],[-1,0],[-1,2],[-1,2],[-3,2],[-1,1],[-1,0],[-4,-1],[-2,0],[-1,0],[-8,3],[-4,0],[-5,1],[-1,1],[-1,1],[-1,1],[0,2],[0,1],[-1,1],[1,0],[1,0],[2,0],[2,0],[1,0],[4,1],[5,1],[2,1],[3,3],[0,1],[0,1],[-2,1],[2,1],[1,-1],[2,2],[-7,6],[0,3],[1,-3],[7,-6],[2,1],[1,0],[2,1],[1,1],[3,4],[1,4],[0,2],[-1,7],[0,1],[-1,6],[-2,3],[-1,2],[-3,4],[-3,3],[-1,2],[-6,6],[-5,4],[-6,4],[-3,2],[-4,2],[-2,2],[-7,2],[-1,1],[-1,0],[1,1],[3,0],[9,2],[5,2],[2,1],[1,1],[2,1],[2,3],[0,1],[0,2],[0,1],[-1,1],[-2,2],[-1,1],[0,2],[0,2],[1,1],[1,0],[0,1],[1,0],[3,2],[0,1],[1,0],[1,3],[1,1],[1,2],[0,1],[1,2],[4,3],[1,1],[1,1],[1,0],[0,1],[-1,1],[0,1],[-2,3],[0,1],[1,2],[-1,1],[0,1],[1,1],[2,-1],[1,1],[2,1],[0,2],[0,1],[1,0],[2,0],[2,1],[0,1],[-1,1],[0,2],[2,5],[0,1],[1,1],[0,1],[1,0],[1,0],[1,-1],[2,-2],[1,0],[2,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,3],[-1,2],[-1,2],[-1,1],[-1,0],[-3,0],[-2,1],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-4,0],[-1,1],[-1,1],[0,1],[0,1],[1,1],[1,1],[1,2],[0,1],[1,2],[0,2],[1,2],[0,1],[1,1],[2,2],[-1,2],[0,1],[1,0],[2,1],[2,-1],[1,1],[1,0],[0,1],[1,1],[1,0],[2,1],[1,1],[1,1],[0,1],[-1,2],[-1,1],[-2,1],[0,1],[-3,2],[0,1],[0,1],[-1,2],[-3,2],[0,1],[-1,1],[-2,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,-1],[0,-1],[1,-1],[1,1],[-1,-1],[1,-1],[2,0],[-2,-1],[-1,0],[-2,3],[1,2],[0,1],[3,-1],[0,1],[2,0],[1,0],[0,1],[0,1],[2,3],[0,1],[-2,0],[-1,0],[2,0],[0,1],[2,2],[2,0],[2,1],[2,1],[1,1],[0,3],[1,1],[1,0],[-1,1],[0,1],[2,0],[0,1],[0,1],[-1,3],[-1,0],[-1,1],[-4,-1],[-1,2],[-1,1],[-5,3],[-1,0],[-4,1],[-8,2],[1,3],[-1,1],[-2,0],[-5,-2],[0,1],[-1,0],[-2,1],[-2,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,-1],[-2,-1],[-2,-1],[-1,0],[0,-2],[-1,-1],[0,-4],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,0],[0,1],[-1,0],[-2,0],[-4,1],[-3,0],[-2,0],[0,1],[1,0],[1,1],[1,1],[-1,0],[1,1],[1,0],[0,1],[-1,1],[-1,0],[-1,1],[1,0],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,1],[-1,2],[-1,0],[0,1],[-1,1],[-2,0],[-1,0],[-2,-2],[-1,0],[0,-1],[-1,0],[-11,-1],[-5,-1],[-3,-1],[0,-1],[-1,-2],[0,-1],[1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-3,-1],[-4,-1],[-1,0],[1,-1],[-1,0],[-1,1],[-2,-1],[-1,0],[-1,-2],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,-3],[0,-1],[-3,-3],[0,-1],[0,-1],[1,-1],[1,0],[2,-1],[6,-3],[-1,0],[-3,1],[-6,2],[-1,0],[-2,-2],[-2,-1],[-2,-2],[-2,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[-2,0],[-2,0],[-1,0],[-3,-1],[-3,-2],[-1,-1],[-5,0],[-3,0],[-1,-2],[0,-1],[3,-1],[-1,0],[0,-1],[-3,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-2],[2,-1],[1,-1],[1,0],[4,2],[2,0],[1,1],[2,0],[1,0],[1,-1],[-1,-1],[0,-1],[2,0],[1,0],[1,0],[1,-2],[1,0],[1,0],[1,0],[2,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[1,-1],[6,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[2,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,-3],[2,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-2,-4],[0,-1],[0,-2],[2,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-6,-1],[-5,-1],[-2,0],[-1,-1],[-3,-1],[-1,0],[-5,0],[-1,0],[-1,1],[-1,0],[-1,-2],[-3,0],[-2,0],[-1,0],[-2,0],[-5,0],[-2,-1],[-2,0],[-1,-1],[1,-1],[0,-2],[-1,0],[0,-1],[-2,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[-2,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[3,-4],[0,-1],[0,-1],[3,-4],[-3,3],[-3,0],[-2,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-2,0],[-2,1],[-1,0],[-4,0],[-2,-1],[-3,0],[-1,0],[-1,0],[-1,0],[0,3],[0,1],[1,0],[1,1],[2,2],[-2,-1],[-2,-2],[0,-1],[0,-4],[-1,-1],[-1,-2],[-2,-2],[-2,-2],[-1,0],[-1,-1],[-1,0],[-4,-4],[-3,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-2,-1],[-1,-2],[-2,-2],[-1,-1],[-2,-4],[0,-1],[2,-3],[1,-1],[1,0],[2,-1],[2,1],[1,-2],[1,-1],[1,0],[1,1],[2,-2],[0,-1],[0,-1],[3,-1],[1,-1],[1,-2],[1,-2],[1,-2],[0,-2],[-1,-3],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[2,-3],[-2,-1],[1,-1],[2,-2],[0,1],[1,-1],[1,0],[1,0],[2,0],[1,-2],[2,1],[1,0],[-1,0],[4,2],[1,-1],[-7,-3],[2,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[3,-2],[3,-1],[1,-2],[2,-1],[2,-2],[2,-4],[1,-1],[0,-1],[-2,0],[-1,0],[-2,-2],[-2,0],[-4,-3],[-2,-1],[-1,-1],[-3,-3],[-1,0],[0,-2],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-4,-4],[-2,-2],[-3,-3],[-3,-1],[-3,-2],[-4,-1],[-3,0],[-3,-1],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-3,1],[-2,0],[0,1],[-1,0],[0,-1],[-1,1],[-1,0],[0,-1],[-1,2],[-2,0],[1,-2],[-1,0],[0,1],[-2,0],[-2,0],[-3,1],[-2,0],[0,-1],[-1,-1],[-1,-1],[1,-1],[-1,0],[-3,-2],[-3,0],[0,-1],[-9,0],[0,2],[2,1],[-1,1],[-1,1],[-1,0],[-4,0],[-1,0],[-1,0],[0,-1],[-3,0],[0,1],[0,1],[-3,-1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-3,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-2],[-2,-2],[-3,-3],[-2,-2],[1,-1],[1,-1],[1,-1],[1,0],[2,0],[-2,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-3,-1],[-2,-1],[-2,-1],[-2,-2],[0,-1],[-1,1],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-3],[0,-1],[2,0],[1,0],[1,-1],[-7,1],[-1,-2],[-2,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-2,-1],[-1,-1],[0,-1],[-1,0],[-3,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-2],[-3,-1],[-2,0],[-1,0],[-3,0],[-3,-1],[-4,-1],[-2,0],[-1,0],[0,-1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,1],[1,0],[0,1],[-1,1],[-1,0],[1,1],[-1,0],[-1,1],[-3,2],[-5,2],[-8,3],[-2,0],[-3,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[3,-2],[-1,-1],[-3,1],[-1,0],[1,-1],[-1,0],[1,-1],[-1,-2],[2,-1],[-2,1],[-1,0],[-2,2],[-2,-2],[6,-3],[0,-1],[-7,4],[-1,-2],[2,-1],[-1,0],[-1,1],[0,-1],[-1,1],[-1,-1],[3,-2],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-4,2],[-1,1],[-1,0],[-1,0],[0,1],[-1,-1],[-2,0],[-1,-2],[-3,-2],[-3,-2],[0,-1],[-1,-1],[2,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-3,-1],[1,-1],[-1,0],[1,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-2,0],[-2,-3],[2,-1],[-2,1],[-1,-2],[-1,0],[-1,0],[-1,0],[0,1],[-3,1],[1,0],[2,0],[1,1],[0,1],[-1,1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[2,0],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-2,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[-2,3],[-1,1],[0,1],[1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[0,2],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-3,2],[-2,0],[-1,1],[0,1],[0,2],[-1,1],[0,1],[-1,2],[-1,0],[-1,1],[-3,1],[-1,1],[-1,-2],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[-1,-1],[-1,1],[0,-1],[1,0],[0,-1],[-2,-4],[0,-1],[-2,-2],[0,-1],[1,0],[1,-2],[1,-1],[0,-1],[1,-1],[-1,0],[1,-1],[-1,-1],[-1,0],[-1,1],[-2,-1],[0,-1],[-1,1],[-2,0],[0,-1],[4,-4],[1,0],[4,0],[0,-1],[1,0],[0,-1],[-1,0],[-5,1],[-1,0],[-5,5],[0,1],[0,3],[0,3],[1,1],[0,1],[-1,1],[-1,0],[-5,1],[-4,0],[-1,0],[-1,0],[0,1],[-1,1],[-2,0],[-3,1],[-10,0],[-12,0],[-3,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-3,-1],[0,-1],[-1,-1],[-3,0],[-2,-1],[0,-1],[-3,-3],[0,-1],[-1,-3],[-1,0],[-1,0],[-1,-3],[0,-1],[-3,-6],[0,-1],[2,0],[0,-1],[-2,0],[0,-1],[0,-1],[-1,0],[-1,-1],[1,-4],[1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-2],[0,-1],[-3,-6],[6,-3],[1,0],[0,-1],[-1,0],[-4,3],[-3,-2],[-1,-1],[4,-2],[1,0],[-1,-1],[-1,1],[-1,-1],[1,-1],[-1,0],[4,-2],[-1,-1],[-1,0],[0,1],[-4,2],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-3,-1],[-3,-1],[-2,-1],[-3,-4],[1,0],[1,0],[0,-1],[-2,0],[0,-1],[-1,-1],[1,-1],[2,-1],[5,-1],[3,0],[5,1],[-1,0],[-5,-2],[-3,1],[-2,0],[-1,0],[-4,0],[-2,0],[-6,0],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,-1],[-2,0],[-2,0],[-3,0],[-1,0],[-1,-1],[-1,0],[-3,-1],[-3,0],[-1,-1],[-1,-1],[-2,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-4,-1],[-1,-1],[-2,-1],[-3,-1],[0,-2],[-1,0],[0,-1],[0,-1],[1,0],[1,-2],[4,-1],[-3,0],[-1,0],[-2,0],[-1,-1],[-1,-1],[-2,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,1],[-1,-1],[-3,-4],[0,1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,1],[-3,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-3,0],[-2,0],[-2,0],[-4,-1],[-2,-2],[-2,0],[0,-1],[1,-1],[1,1],[1,-1],[-2,0],[0,-1],[1,0],[-1,-1],[-1,-1],[-2,-2],[-3,-2],[-1,-1],[-1,0],[-2,-1],[-3,0],[-1,0],[-2,0],[-2,1],[-1,0],[-1,0],[-1,-1],[0,-1],[-2,0],[-2,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-16,6],[-4,2],[-7,2],[-5,1],[-7,2],[-9,2],[-1,0],[-2,0],[-14,1],[-1,0],[0,-3],[-5,0],[-1,0],[-12,1],[-1,0],[-1,0],[-2,0],[-3,-5],[3,0],[0,-1],[2,0],[-1,0],[-5,1],[-1,-5],[3,0],[0,-1],[6,0],[3,1],[1,-1],[-1,0],[1,-1],[-3,0],[-11,0],[-1,-1],[3,0],[-1,-5],[13,-1],[1,0],[9,8],[-9,-8],[-18,1],[-2,-4],[5,-1],[-2,-5],[-9,1],[-4,-3],[-1,-1],[0,-1],[-1,-2],[1,0],[6,0],[6,0],[1,-1],[1,0],[5,1],[0,-1],[-5,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-3],[2,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-8],[-1,-1],[1,0],[0,-4],[2,-1],[1,0],[5,1],[0,-1],[-5,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[1,0],[1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[0,2],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-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,2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[2,0],[1,1],[0,1],[-1,1],[-2,1],[-2,2],[-4,1],[-2,0],[-15,5],[-8,2],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,-1],[0,1],[0,1],[-7,2],[-4,0],[-4,1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,1],[-1,1],[-9,1],[-6,1],[-8,1],[-6,0],[-3,0],[-4,1],[-6,-1],[-1,0],[-1,0],[-2,-2],[-2,-2],[-1,-2],[-3,-4],[-3,-3],[-2,-3],[-2,-2],[-1,-3],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[1,-2],[-1,-3],[0,-1],[1,-1],[-1,-1],[-2,-1],[-1,0],[-1,1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,-3],[0,-1],[0,-2],[0,-2],[0,-2],[-2,-3],[-2,-1],[0,-3],[-1,-1],[-1,-1],[1,-2],[-1,-1],[-1,0],[-1,0],[-3,2],[-1,0],[-1,1],[-3,3],[0,2],[0,1],[0,2],[0,3],[0,1],[0,1],[-1,1],[-1,1],[-5,2],[-3,0],[-1,1],[-2,0],[-1,-1],[-2,0],[-2,-1],[-2,-1],[-1,-1],[-2,1],[0,-1],[-1,0],[-3,0],[-1,1],[-1,0],[0,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,7],[-1,3],[-1,3],[-1,2],[0,1],[0,1],[1,-1],[1,-1],[1,0],[1,0],[1,-2],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,2],[0,1],[-1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,2],[1,0],[0,1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,0],[0,2],[1,3],[1,1],[1,1],[1,1],[1,1],[1,2],[2,3],[0,1],[0,2],[1,1],[1,2],[0,1],[-1,2],[1,5],[0,1],[-1,2],[1,1],[1,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[2,1],[0,1],[0,1],[1,0],[2,2],[1,1],[1,2],[1,0],[2,5],[1,0],[1,1],[1,0],[1,3],[0,1],[1,2],[0,1],[0,1],[-2,3],[-1,0],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[1,1],[-2,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,2],[0,1],[1,0],[-1,1],[-2,0],[0,1],[1,0],[1,0],[1,0],[-1,1],[0,1],[1,1],[0,-1],[1,0],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[1,0],[0,2],[0,1],[1,0],[0,-1],[1,0],[2,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,1],[1,1],[0,2],[1,1],[1,0],[0,2],[1,0],[1,1],[1,0],[1,1],[0,2],[-1,0],[0,2],[-2,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[1,1],[-1,2],[0,3],[1,1],[-1,0],[-1,-1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,1],[-1,0],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,2],[1,1],[0,2],[-1,0],[0,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[1,0],[0,1],[-1,0],[-1,1],[1,1],[1,0],[1,1],[1,-1],[1,1],[0,1],[0,1],[-1,2],[0,2],[1,1],[0,1],[1,1],[0,1],[1,0],[0,2],[0,1],[1,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-2,1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[1,0],[-1,1],[1,0],[1,0],[0,1],[-1,0],[1,1],[0,1],[0,-1],[-1,0],[-1,0],[0,3],[0,2],[2,2],[0,1],[1,1],[1,2],[1,0],[1,0],[0,1],[0,1],[2,0],[1,1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[2,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,-1],[1,-1],[2,0],[1,1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-5],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[2,0],[1,0],[0,-2],[1,0],[1,0],[2,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[2,-1],[2,0],[1,0],[0,-2],[-1,0],[-1,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[2,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,-1],[-1,0],[0,-1],[2,1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[-1,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-2],[-2,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[2,0],[0,-1],[1,0],[1,0],[0,-1],[-2,-1],[0,-1],[2,-1],[4,-2],[3,-1],[3,-1],[20,-3],[2,0],[3,0],[1,1],[1,0],[1,0],[1,-1],[0,1],[0,1],[1,0],[1,1],[1,0],[2,-2],[1,0],[0,-1],[1,0],[0,-1],[-3,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-2],[1,-2],[1,0],[1,0],[1,-1],[2,-2],[1,0],[1,0],[-1,-2],[1,0],[2,-1],[4,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[2,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[3,-3],[2,-1],[2,0],[2,0],[1,0],[2,-1],[1,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,0],[1,-2],[-1,0],[0,-1],[-1,0],[1,-1],[1,-1],[-1,0],[1,-2],[1,0],[1,-2],[-1,0],[0,-2],[-1,-1],[0,-1],[1,-1],[0,-2],[1,0],[2,-1],[5,-1],[2,0],[7,-1],[3,0],[4,-1],[0,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[1,-1],[3,-1],[1,0],[2,2],[-2,-3],[1,-1],[-2,-2],[3,0],[3,-1],[6,0],[4,1],[1,0],[5,1],[2,1],[3,2],[2,2],[2,2],[0,1],[0,1],[1,0],[2,0],[1,1],[1,2],[1,0],[2,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[-2,2],[-2,2],[-2,1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,1],[2,2],[0,1],[-1,0],[1,1],[-1,0],[0,1],[-1,0],[-2,-1],[-1,1],[2,1],[0,1],[-2,2],[-3,3],[-3,-2],[0,1],[5,2],[0,1],[0,1],[-1,0],[-1,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,1],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[0,2],[-1,0],[-1,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[1,-1],[1,0],[4,2],[3,2],[1,1],[0,1],[0,1],[1,0],[-2,1],[1,2],[2,1],[1,2],[0,2],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,-1],[0,1],[-1,0],[1,1],[1,1],[0,2],[1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[1,1],[1,2],[0,1],[0,1],[-1,1],[1,0],[0,1],[-1,2],[0,1],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,2],[1,1],[0,4],[1,1],[0,1],[1,0],[-1,1],[1,0],[1,0],[0,2],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,2],[0,1],[1,1],[1,0],[1,0],[1,1],[0,1],[1,1],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[1,1],[1,-1],[1,-1],[0,-1],[1,-1],[2,0],[2,0],[1,0],[2,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,3],[1,1],[1,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[3,1],[1,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[1,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,2],[-1,0],[-1,1],[1,1],[-2,0],[-1,0],[0,1],[0,2],[1,1],[-3,0],[-1,1],[0,1],[1,0],[2,0],[-2,1],[0,1],[-1,0],[0,1],[0,1],[2,0],[1,1],[0,1],[1,0],[2,2],[-1,1],[0,1],[-1,1],[-2,1],[-2,1],[-3,1],[-1,0],[-1,-1],[-1,-1],[-2,0],[0,1],[-1,0],[-1,0],[-2,-2],[-2,-1],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[-1,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[1,1],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[0,2],[1,2],[-1,0],[0,1],[1,1],[0,1],[-1,0],[-2,-2],[-1,0],[-1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,1],[4,2],[-1,0],[-1,0],[-1,0],[0,1],[3,1],[-1,1],[-1,1],[-1,-1],[0,1],[-1,0],[1,1],[-1,1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-1,0],[0,1],[0,1],[1,1],[-1,0],[1,0],[0,1],[0,1],[1,1],[1,0],[2,-1],[1,1],[-1,1],[0,1],[1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[-2,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,-1],[0,1],[-1,-1],[-1,0],[-1,0],[0,1],[2,1],[1,0],[1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[-1,1],[0,1],[-1,1],[1,0],[0,1],[2,2],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[2,1],[0,2],[1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-2,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-4,0],[-1,0],[-1,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[1,0],[2,1],[-2,0],[-2,0],[0,1],[1,1],[1,0],[-1,0],[-2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,2],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[1,1],[0,1],[1,0],[0,1],[-1,1],[-4,0],[-3,-1],[-3,0],[-2,0],[-1,0],[-1,1],[-2,0],[-1,1],[0,1],[-1,0],[-1,0],[0,2],[-1,0],[-1,-1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[1,0],[1,-1],[1,0],[2,1],[0,-1],[1,0],[1,2],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,2],[0,1],[1,0],[4,0],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[2,0],[0,-1],[1,0],[0,1],[0,1],[2,0],[1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[2,-1],[5,0],[3,0],[1,0],[0,-1],[2,-1],[1,-2],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[0,-1],[1,1],[0,1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,1],[0,1],[2,2],[1,0],[1,0],[-1,-1],[1,0],[0,-1],[2,-1],[1,-1],[1,-1],[0,-1],[-2,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[-1,-1],[-1,0],[0,-1],[1,0],[1,-1],[2,-1],[3,-1],[3,0],[4,0],[2,0],[1,0],[1,0],[1,0],[2,0],[3,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[2,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,1],[1,0],[0,-1],[1,0],[2,0],[2,1],[6,1],[2,1],[2,1],[5,1],[2,0],[3,2],[1,0],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,1],[2,2],[2,0],[1,1],[-1,0],[4,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[3,-1],[0,-1],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[0,-1],[3,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[1,-1],[1,0],[-2,0],[-1,0],[0,-2],[1,-1],[2,-3],[4,-3],[1,0],[3,-1],[1,0],[1,0],[0,-1],[1,-1],[2,0],[1,0],[3,-3],[1,0],[-1,0],[0,-1],[-1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[5,0],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[1,-1],[1,-1],[1,-1],[1,0],[6,-1],[6,1],[6,0],[3,1],[3,0],[1,1],[-1,2],[-1,-1],[-1,4],[1,0],[-1,1],[14,2],[-12,-2],[3,-8],[3,1],[-1,2],[1,-2],[5,1],[0,-1],[1,0],[0,1],[2,0],[0,1],[-1,3],[2,0],[1,0],[0,1],[1,-1],[2,-4],[4,1],[2,0],[3,1],[2,1],[-1,2],[1,-2],[3,1],[1,1],[1,0],[0,1],[-1,0],[1,1],[4,1],[0,-1],[2,1],[2,0],[0,1],[-1,0],[1,1],[1,0],[1,0],[-1,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[3,1],[9,4],[0,1],[0,1],[1,1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,1],[-1,1],[2,0],[-1,-1],[1,0],[2,0],[1,0],[1,1],[2,1],[3,3],[2,1],[2,2],[2,3],[2,1],[1,1],[1,1],[0,2],[1,0],[5,0],[5,1],[1,0],[2,0],[2,1],[2,1],[1,1],[2,1],[0,1],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,2],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,1],[3,1],[1,0],[2,-1],[1,0],[1,0],[0,-1],[2,-1],[1,0],[0,1],[1,0],[1,0],[0,-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],[0,1],[2,0],[0,1],[1,-1],[1,0],[1,0],[0,1],[2,0],[1,0],[1,-1],[1,0],[1,0],[2,1],[1,1],[1,1],[1,0],[5,6],[2,4],[2,3],[0,1],[1,1],[-1,2],[0,2],[1,1],[1,0],[1,1],[0,2],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[0,1],[2,0],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,2],[0,1],[-1,1],[1,0],[0,1],[1,1],[0,1],[-1,1],[1,1],[-1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[2,0],[0,2],[0,1],[1,0],[0,1],[2,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,2],[-1,1],[3,3],[0,1],[1,0],[1,0],[1,1],[0,1],[1,1],[1,0],[1,2],[1,3],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[-1,0],[1,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[2,0],[1,1],[1,1],[1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,3],[0,1],[-1,2],[0,2],[-1,2],[0,1],[1,0],[0,1],[1,2],[1,1],[1,1],[1,1],[2,4],[1,1],[1,0],[1,2],[1,0],[0,1],[1,0],[2,0],[1,0],[1,-1],[2,-1],[1,0],[1,0],[0,-2],[1,0],[0,1],[1,0],[3,2],[1,1],[1,1],[2,2],[1,1],[1,2],[-1,1],[0,1],[1,1],[1,2],[1,2],[1,1],[1,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[2,0],[-1,1],[0,-1],[-1,1],[-1,0],[2,1],[1,1],[1,0],[1,0],[0,1],[1,-1],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,5],[1,1],[1,0],[0,-1],[0,-2],[2,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[0,-1],[2,-1],[1,0],[2,-1],[3,0],[3,0],[4,1],[3,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[1,-1],[1,0],[2,2],[1,0],[1,0],[0,1],[1,1],[0,1],[1,1],[1,1],[-1,1],[1,0],[-1,1],[0,2],[1,0],[1,0],[1,0],[0,1],[2,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[2,0],[1,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[-2,3],[1,1],[-1,0],[1,1],[1,2],[1,2],[1,0],[0,1],[2,1],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[0,-1],[1,0],[1,-2],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[2,3],[0,2],[0,1],[2,2],[-1,0],[0,1],[0,2],[1,0],[1,0],[1,1],[0,1],[1,1],[1,0],[1,1],[0,1],[1,1],[3,0],[2,-1],[2,0],[1,1],[2,1],[1,0],[3,0],[1,0],[1,1],[1,1],[1,1],[1,3],[-1,2],[1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[2,1],[8,0],[10,9],[-5,5],[17,6],[1,2],[1,2],[7,2],[1,0],[-7,-3],[-1,-10],[6,-1],[2,1],[1,0],[-1,-2],[8,-2],[2,1],[-1,2],[-6,2],[0,1],[6,-2],[4,0],[1,5],[-1,1],[1,0],[1,0],[2,8],[2,0],[-1,-8],[5,-1],[-1,0],[1,0],[1,-2],[1,0],[-1,1],[1,0],[4,-9],[1,0],[7,-4],[1,0],[1,0],[1,-1],[1,1],[-2,1],[2,1],[-2,2],[2,-2],[1,0],[2,1],[-4,4],[5,-4],[2,0],[2,1],[-12,11],[1,0],[7,-5],[3,1],[-2,2],[2,-2],[1,1],[-2,2],[2,-2],[2,0],[-3,2],[1,0],[2,-1],[4,1],[-1,1],[1,0],[-2,1],[2,1],[4,-1],[3,2],[-2,1],[-1,0],[-1,0],[-1,-1],[5,4],[8,6],[-8,4],[-19,-8],[-1,0],[-9,2],[3,10],[-1,1],[21,-3],[-3,0],[-1,0],[4,-1],[1,0],[1,0],[0,1],[6,2],[13,1],[7,2],[1,1],[6,2],[-4,-2],[2,-2],[1,0],[6,4],[-1,1],[-1,0],[7,2],[-1,1],[-4,0],[-1,0],[0,-1],[-1,0],[0,1],[6,0],[0,1],[-4,0],[1,1],[-1,0],[0,1],[2,1],[1,0],[1,0],[1,0],[0,1],[-1,1],[-1,0],[1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[5,1],[1,-2],[0,-1],[1,0],[1,-1],[2,0],[62,41],[26,17],[2,1],[2,1],[7,2],[23,4],[4,1],[3,1],[4,3],[10,8],[2,2],[-1,0],[2,2],[5,5],[0,1],[0,1],[-1,-1],[-1,-1],[-1,3],[-3,-1],[2,-4],[-1,-2],[-1,0],[-3,8],[-1,0],[-1,1],[-1,1],[0,1],[1,1],[0,2],[2,2],[1,2],[-5,2],[-2,1],[-1,-1],[-2,-2],[-1,-2],[-1,-1],[0,-1],[2,-2],[2,-2],[-2,-2],[0,-1],[-1,0],[0,-1],[0,-2],[-1,-4],[0,-3],[-1,-1],[-2,0],[-2,1],[-1,1],[0,1],[-1,0],[-1,0],[0,2],[-2,2],[-1,0],[-2,1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,2],[2,0],[0,-1],[0,-1],[1,0],[0,-1],[-4,-2],[-1,-1],[-2,0],[-2,-1],[-2,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[-1,-2],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,-1],[-1,0],[1,1],[-1,0],[0,1],[-1,1],[1,1],[-1,0],[-1,1],[-2,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[0,1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-2,0],[-9,-3],[-2,-2],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,-6],[2,0],[1,0],[0,-1],[1,1],[1,1],[2,1],[1,0],[-1,-1],[-2,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-3,0],[-1,0],[-1,-1],[-4,0],[-3,-1],[-3,0],[-3,0],[-3,0],[-2,0],[-2,1],[-2,1],[-3,1],[-3,0],[-2,0],[-2,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-2,2],[-1,1],[-4,3],[-2,1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,1],[0,1],[-1,1],[-1,2],[1,0],[-1,2],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[-7,3],[1,1],[1,0],[0,1],[2,-1],[-1,-1],[2,0],[-1,0],[3,-1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[0,2],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[1,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,2],[1,0],[0,1],[4,1],[0,1],[1,0],[1,1],[0,1],[-1,1],[-1,1],[-1,2],[-2,2],[-1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[1,2],[1,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[0,1],[-3,2],[-2,1],[0,1],[-1,0],[-1,-1],[-5,-2],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-3,-1],[-2,0],[-1,0],[-2,1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,-2],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-3,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-3,0],[-3,0],[-3,0],[-2,0],[-2,-1],[-4,0],[0,-1],[0,-1],[0,1],[-3,0],[-2,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-2,-1],[-1,-2],[0,-1],[0,-1],[3,-3],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-3,-2],[0,1],[-2,-1],[1,-2],[1,0],[2,-1],[2,0],[2,0],[0,-1],[1,0],[-9,2],[0,-1],[-1,0],[-2,-3],[-1,0],[-1,0],[-1,-1],[-1,-1],[-2,-1],[4,-1],[0,-1],[0,1],[1,-1],[-2,-2],[3,-1],[1,0],[3,-1],[4,1],[0,-1],[4,0],[1,0],[-9,-1],[-11,2],[-2,0],[-2,-2],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-2,-2],[0,-1],[-1,-1],[-6,-3],[-1,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[-4,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,-1],[0,-1],[-2,0],[-3,-1],[-1,0],[-1,1],[-5,2],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[0,1],[-2,1],[-3,0],[-4,0],[-3,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-3,0],[-3,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,-1],[-3,-2],[-2,-2],[-3,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,1],[-2,-1],[-2,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,-1],[-1,0],[0,-1],[0,-1],[0,-1],[2,0],[-2,0],[-3,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[-2,-2],[0,-1],[-1,0],[0,-1],[-3,0],[-4,0],[0,-1],[-1,0],[-4,0],[-4,1],[-4,0],[-7,1],[-5,-1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-3,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[0,-3],[-2,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-3,-1],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,1],[-3,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[-2,1],[-2,0],[-2,0],[0,1],[-1,0],[-5,-1],[-3,0],[-1,0],[-1,0],[0,-1],[1,-1],[2,-2],[-1,-1],[-3,4],[-1,0],[-5,-1],[-2,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-2],[-2,-1],[-1,-2],[-1,-1],[1,-1],[1,0],[-1,0],[3,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,-2],[-1,-1],[-1,0],[-4,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-2],[-1,0],[-1,0],[0,2],[-1,1],[-1,0],[0,-1],[-2,0],[-4,-1],[0,1],[0,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,1],[-2,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[-7,0],[-2,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,-1],[-2,-2],[1,-1],[0,-1],[-1,-2],[-1,-1],[1,-1],[0,-1],[0,-1],[-2,-2],[0,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[-1,1],[-2,1],[-1,-1],[0,1],[-1,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[-2,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[1,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,1],[1,1],[1,0],[0,1],[-1,1],[-1,1],[-3,3],[-2,2],[-1,0],[-1,1],[-3,2],[-1,1],[-1,0],[-1,-1],[-1,0],[0,1],[1,0],[0,1],[-4,1],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,1],[0,1],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[-5,2],[-1,0],[-2,0],[0,1],[-1,0],[-3,0],[-2,0],[-1,-1],[-2,0],[-1,0],[0,-1],[1,-1],[0,-1],[-2,-1],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,1],[-1,0],[-1,0],[1,2],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[0,1],[-2,1],[-1,0],[-2,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-3,1],[-3,0],[-3,2],[-2,1],[-1,0],[-2,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-3,0],[-1,0],[-1,0],[-1,1],[-4,-1],[-2,-1],[-3,0],[-2,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[0,-1],[0,-1],[1,0],[1,-1],[2,-2],[5,0],[0,-1],[-1,0],[-5,0],[-1,0],[-1,0],[-1,1],[0,1],[-2,1],[-2,2],[-1,1],[0,2],[0,1],[-1,0],[-1,1],[-6,1],[-2,0],[-8,1],[-5,1],[-4,0],[-2,0],[-5,0],[-3,0],[-3,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-2],[1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-3,-4],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,1],[-1,0],[0,-2],[-1,0],[-1,1],[0,2],[0,2],[-2,1],[0,-1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[-2,0],[-4,0],[-2,0],[-3,-1],[-2,-1],[-2,-1],[-3,-2],[-1,-1],[-1,-1],[-4,-3],[0,-1],[0,-1],[0,-2],[11,2],[1,0],[-1,-1],[-8,-1],[0,-1],[1,-1],[-1,-1],[2,-1],[1,1],[5,-2],[0,-1],[0,-1],[5,0],[4,2],[1,2],[5,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-4,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,1],[1,0],[-1,-1],[1,0],[0,-2],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,1],[-1,0],[-1,0],[0,1],[-1,1],[-2,-1],[-4,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-3],[-2,-1],[0,-2],[1,-1],[0,-1],[0,-1],[-1,0],[1,0],[2,-1],[-1,0],[1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,2],[-1,0],[-1,2],[-1,0],[0,-1],[-1,1],[-1,0],[-1,2],[0,1],[-1,2],[0,1],[-1,0],[-2,1],[-9,0],[-2,0],[-3,0],[-5,0],[-2,-1],[0,-1],[0,-1],[-1,0],[1,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-2,-1],[0,-1],[-2,0],[-2,-1],[-3,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-3,-2],[-1,0],[-2,1],[-2,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-2,-1],[-1,0],[0,1],[-2,0],[-1,0],[-2,1],[0,1],[1,1],[0,2],[3,2],[1,1],[0,2],[2,3],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-4,2],[-2,2],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,2],[-2,2],[-1,2],[-1,1],[0,3],[1,3],[0,1],[-3,3],[-2,2],[-9,6],[-4,2],[-4,2],[-8,2],[-5,0],[-4,0],[-2,0],[-2,0],[-1,0],[0,-4],[-1,-1],[-2,-2],[0,-1],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,2],[-1,0],[-1,1],[0,1],[-1,2],[-2,2],[-1,0],[-1,0],[0,1],[-2,2],[-1,2],[0,2],[1,1],[0,1],[1,0],[3,2],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[2,1],[1,0],[-1,1],[-1,1],[-3,3],[-1,1],[-1,1],[0,1],[-2,0],[-1,1],[-1,1],[-3,4],[0,2],[0,1],[1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-8,7],[-1,2],[-1,1],[-2,1],[-2,2],[-2,1],[-9,3],[-2,1],[-4,1],[-2,1],[-6,2],[-1,0],[-3,0],[-4,1],[-2,0],[-2,1],[-2,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,1],[0,2],[-1,0],[-2,1],[-7,0],[-2,0],[-2,0],[-4,-1],[-2,-2],[-1,-1],[-1,0],[-1,0],[-2,0],[-3,0],[-1,1],[-3,1],[-1,1],[0,1],[1,1],[4,3],[2,1],[0,1],[2,2],[0,1],[-1,2],[1,0],[1,0],[0,1],[-1,1],[0,1],[-3,-1],[-1,1],[0,1],[0,3],[1,0],[1,-1],[4,0],[2,0],[1,0],[1,0],[0,2],[2,1],[1,1],[0,1],[-2,1],[-1,1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[1,2],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[3,-1],[2,0],[1,1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[0,2],[0,1],[-1,1],[-1,1],[-1,2],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[2,1],[1,0],[1,1],[0,3],[1,1],[-1,3],[0,2],[-1,1],[-1,1],[-5,1],[-1,1],[-1,1],[-1,0],[-1,0],[-3,-1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[3,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[3,3],[1,0],[1,2],[0,2],[-1,2],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,-1],[-1,0],[-2,2],[0,1],[0,1],[3,0],[3,1],[1,0],[2,-2],[1,-1],[2,0],[1,0],[2,0],[3,2],[2,2],[1,2],[0,4],[-1,2],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[1,1],[1,0],[0,1],[-1,1],[-2,3],[0,1],[1,0],[0,1],[0,2],[0,2],[-2,5],[-1,3],[-2,5],[-1,1],[-2,3],[0,2],[-2,3],[-5,6],[-5,5],[-6,6],[-3,4],[-3,3],[-13,11],[-5,5],[-1,1],[-4,3],[-4,2],[-1,1],[-4,2],[-3,2],[-2,0],[-4,1],[-7,2],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-4,1],[-4,1],[-1,0],[-1,-1],[0,-1],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[2,1],[-3,1],[-2,0],[-1,1],[-2,1],[-2,1],[-1,-1],[-1,0],[-1,0],[-1,2],[-1,2],[-1,1],[-2,1],[-1,1],[-2,1],[-2,1],[-3,0],[-5,1],[-3,0],[-3,1],[-3,0],[-6,0],[-5,-2],[-2,0],[-2,-1],[-1,0],[0,-1],[-1,0],[-2,2],[-1,1],[-1,0],[-3,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,3],[-2,1],[-5,1],[-10,2],[-4,1],[-4,0],[-6,0],[-5,0],[-1,-1],[-5,-1],[-2,-1],[-2,-1],[-2,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,2],[-1,0],[-3,-1],[-1,0],[0,-1],[0,-2],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[0,-1],[0,-1],[2,0],[0,-2],[-1,0],[0,-2],[3,-3],[3,1],[0,-1],[-1,-1],[-1,0],[-3,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-3,-1],[-2,0],[-2,-1],[-1,-2],[-2,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[3,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-2,-1],[-2,-1],[0,-3],[1,0],[1,-1],[-1,-1],[-4,-2],[-2,0],[-2,0],[-4,1],[-1,1],[0,1],[-1,0],[-1,0],[-2,-1],[-1,-1],[0,-1],[0,-1],[-2,2],[-1,1],[-1,1],[0,2],[-1,1],[-2,1],[-1,0],[-1,-1],[-1,-1],[-1,1],[0,1],[1,1],[3,0],[1,1],[0,1],[-2,3],[-1,0],[-2,2],[-1,0],[-1,1],[-3,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-3],[1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,0],[-1,0],[0,2],[0,1],[1,0],[1,1],[0,1],[-2,0],[-1,0],[-4,2],[-1,1],[-1,1],[0,1],[-1,-1],[-1,0],[-1,0],[0,1],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[1,1],[0,1],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,1],[1,2],[0,2],[-2,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[1,0],[-1,1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,1],[0,1],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[1,1],[1,0],[2,0],[1,1],[4,0],[1,0],[2,1],[1,0],[1,1],[1,3],[0,1],[0,2],[0,3],[0,3],[1,0],[0,1],[1,1],[0,2],[-1,2],[-1,0],[-2,1],[-1,1],[-1,1],[-2,1],[-1,0],[1,0],[1,0],[0,1],[-3,2],[-2,0],[-1,1],[-3,0],[0,1],[-2,0],[-1,0],[0,2],[1,1],[1,1],[1,1],[2,0],[3,0],[2,2],[0,2],[0,1],[0,1],[0,1],[1,0],[1,0],[0,2],[0,1],[-2,1],[0,1],[0,1],[1,0],[2,0],[2,0],[2,-1],[1,-1],[0,-1],[1,0],[3,0],[3,-1],[2,0],[1,-1],[6,0],[10,1],[1,0],[2,0],[1,0],[2,0],[1,-1],[4,0],[3,0],[0,-1],[1,-1],[3,1],[2,0],[1,0],[1,1],[1,1],[0,2],[0,1],[1,-1],[1,0],[0,-1],[0,-1],[2,0],[0,-1],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[2,0],[1,0],[0,-1],[2,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[1,0],[1,0],[1,0],[4,0],[3,0],[2,0],[3,0],[0,1],[1,0],[1,1],[1,0],[0,1],[0,1],[2,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-2],[1,-2],[1,0],[1,0],[3,-1],[2,0],[3,-1],[3,0],[1,-1],[1,0],[0,-1],[1,0],[5,-1],[3,-1],[8,0],[9,1],[3,0],[4,1],[6,2],[1,1],[1,0],[1,1],[2,0],[2,1],[5,3],[3,1],[3,1],[2,1],[1,0],[2,1],[0,1],[1,1],[3,0],[2,1],[4,2],[1,2],[2,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[1,-1],[1,0],[3,0],[0,1],[2,0],[1,1],[2,2],[3,2],[3,1],[1,2],[3,3],[1,2],[1,1],[1,1],[2,4],[1,2],[-1,1],[0,1],[2,1],[0,2],[1,1],[1,1],[3,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[-1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-2],[0,-1],[-2,-1],[-1,0],[0,-1],[0,-4],[1,-4],[0,-1],[0,-1],[-1,-1],[0,-2],[1,0],[0,1],[2,4],[1,1],[1,1],[2,1],[2,0],[1,0],[1,0],[0,2],[-1,3],[-1,1],[1,2],[1,1],[4,3],[2,1],[2,3],[2,1],[1,1],[1,0],[1,0],[3,1],[1,1],[1,0],[3,0],[1,0],[1,1],[0,3],[-4,3],[-2,-1],[2,1],[1,0],[0,1],[-1,1],[-1,1],[0,1],[-2,2],[-3,1],[0,-1],[-1,0],[1,1],[-3,0],[-1,0],[3,3],[-1,1],[-1,1],[-4,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-2,-1],[1,-1],[-1,1],[0,-1],[-3,0],[0,-1],[-1,1],[-1,-2],[0,-1],[0,1],[-1,-1],[1,-2],[-1,0],[0,2],[-2,-1],[0,-2],[-1,2],[-3,0],[0,-1],[-1,0],[1,2],[-6,0],[-2,-6],[-1,0],[3,8],[5,2],[-1,1],[0,1],[1,1],[0,2],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,1],[1,1],[4,2],[0,1],[0,1],[-1,0],[-1,0],[1,2],[0,1],[2,0],[0,1],[1,0],[0,1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[-1,1],[-2,1],[-1,1],[1,0],[8,2],[4,-3],[0,1],[2,1],[1,0],[1,1],[2,1],[1,1],[-1,0],[1,0],[1,1],[1,1],[2,0],[1,-1],[2,0],[1,0],[1,1],[1,1],[1,1],[-1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[3,-1],[0,-1],[1,0],[3,0],[1,0],[0,-1],[-1,-1],[0,-1],[4,0],[1,0],[2,0],[2,1],[1,0],[2,2],[1,0],[0,1],[1,0],[3,0],[2,2],[2,1],[1,0],[3,0],[2,0],[4,0],[3,0],[1,0],[1,1],[-1,1],[0,1],[1,0],[1,0],[1,0],[-1,1],[0,2],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[-1,-1],[-1,-2],[0,-1],[1,-2],[0,-1],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-3,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,-1],[2,0],[1,-1],[3,1],[1,0],[1,2],[1,0],[0,2],[-1,1],[1,0],[1,1],[2,0],[1,1],[1,0],[-1,1],[1,1],[-1,0],[0,1],[1,1],[1,0],[2,1],[2,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[3,0],[1,0],[1,-1],[7,-2],[2,1],[1,0],[2,-1],[3,2],[4,-3],[20,1],[0,-1],[-18,-1],[-2,0],[-2,-1],[1,-2],[2,1],[0,-1],[-2,0],[2,-5],[7,1],[3,0],[0,-1],[13,0],[0,1],[0,-1],[-6,0],[1,-2],[-1,0],[-3,0],[0,1],[-4,0],[1,-1],[0,-2],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[-1,-2],[0,-2],[2,-2],[4,-5],[-1,-1],[1,-3],[0,-1],[1,-5],[1,-2],[-1,-3],[0,-1],[1,0],[1,0],[-1,-2],[-2,-1],[-1,-1],[-2,-2],[-5,-3],[-1,0],[-1,-2],[0,-2],[-3,-3],[0,-4],[1,-1],[1,0],[1,-1],[1,0],[1,1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-4],[-1,-1],[1,-1],[0,-1],[1,-1],[2,0],[1,-1],[1,0],[2,-1],[4,-1],[0,-1],[0,-1],[-1,-3],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-3,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,-2],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-3,-2],[-1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[2,-3],[1,-1],[2,0],[0,-1],[-1,-1],[-1,0],[1,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[-4,2],[1,1],[-1,1],[-1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[4,-2],[3,0],[1,0],[2,-1],[2,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[1,0],[-2,-3],[-1,-1],[-2,-2],[-2,0],[-1,-1],[-4,0],[-8,1],[-10,0],[-1,0],[-3,-3],[-1,0],[-1,-1],[0,-1],[-1,-1],[-2,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-3,-2],[-3,-2],[-1,-1],[-1,-2],[0,-2],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[-1,-1],[-1,0],[-9,0],[-1,0],[-4,-2],[-1,0],[-1,-1],[0,-1],[0,-2],[-1,0],[-1,-1],[-1,-1],[1,-2],[-1,0],[-1,0],[-1,0],[-3,-1],[-1,-1],[-3,-3],[-1,-1],[-1,-2],[0,-2],[-1,-3],[0,-11],[0,-1],[1,-2],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[1,-1],[2,-2],[1,-2],[0,-1],[1,-1],[2,-2],[1,-2],[2,-4],[2,-2],[1,-1],[-1,-1],[0,-2],[1,-2],[2,-2],[1,-1],[1,-1],[1,0],[2,0],[6,-1],[4,-1],[1,0],[1,0],[1,1],[-1,1],[-2,0],[-1,-1],[0,1],[0,1],[2,1],[1,0],[4,0],[3,1],[1,0],[0,1],[1,0],[2,0],[3,0],[2,0],[0,1],[1,0],[0,2],[0,1],[1,0],[1,-1],[1,0],[2,0],[1,0],[4,2],[2,0],[2,0],[1,1],[1,0],[2,0],[1,1],[3,-1],[2,1],[2,1],[0,1],[-1,0],[0,1],[1,0],[1,-1],[1,0],[0,1],[0,1],[1,0],[0,-2],[1,-1],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[1,0],[0,1],[3,1],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,1],[0,1],[-2,1],[0,1],[-1,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,1],[2,1],[2,0],[1,0],[2,1],[1,0],[-2,-1],[-1,0],[0,-1],[1,0],[3,0],[2,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,2],[0,2],[1,0],[2,1],[1,0],[1,0],[1,-1],[1,0],[2,0],[2,0],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,2],[0,1],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[-1,1],[0,1],[1,0],[2,0],[1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-4,0],[0,1],[1,0],[1,0],[0,1],[-2,2],[-3,0],[-3,0],[-2,0],[-1,0],[0,1],[1,1],[2,0],[1,0],[2,1],[0,1],[1,2],[2,1],[0,1],[1,1],[1,0],[1,0],[3,-1],[2,-2],[1,-2],[1,0],[2,-2],[1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[1,1],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-3],[1,0],[3,0],[12,1],[2,0],[0,1],[2,3],[1,3],[2,1],[0,1],[5,0],[2,0],[1,0],[0,1],[-1,0],[-2,2],[-1,1],[-1,1],[-2,0],[0,1],[2,0],[0,1],[-2,0],[-1,0],[-1,1],[1,1],[1,-1],[1,0],[1,0],[-1,1],[0,1],[1,0],[2,-1],[1,-1],[3,-2],[2,-1],[3,0],[2,-1],[0,-1],[1,-1],[2,-2],[0,-2],[0,-1],[-2,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,-2],[1,-1],[1,-1],[-4,-1],[-3,-1],[0,-1],[3,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[1,1],[2,1],[2,3],[1,0],[1,1],[1,0],[-1,1],[0,1],[2,2],[1,0],[1,1],[1,0],[3,0],[-1,-2],[1,0],[1,2],[1,0],[1,0],[1,0],[0,-1],[8,-1],[3,-1],[5,-1],[2,0],[1,0],[1,-1],[2,-1],[1,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,0],[1,0],[-1,-1],[1,-2],[1,-1],[-1,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,-3],[0,-1],[1,0],[0,-1],[1,1],[1,0],[3,1],[1,0],[1,0],[1,-1],[1,0],[3,-3],[4,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[3,1],[1,-1],[1,-1],[4,-1],[1,0],[2,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,2],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[1,3],[0,1],[-1,0],[0,1],[1,0],[1,2],[2,1],[1,1],[0,1],[3,0],[0,1],[-2,0],[-1,1],[-5,0],[-1,-1],[-1,0],[-1,1],[-1,0],[1,2],[1,2],[0,1],[-2,2],[-1,0],[-1,1],[0,1],[0,2],[-1,1],[0,1],[2,3],[1,1],[0,2],[0,1],[-2,0],[1,3],[-1,0],[0,1],[1,-1],[0,1],[-2,0],[-1,2],[-1,0],[0,3],[5,0],[1,0],[2,1],[3,3],[-1,1],[1,0],[2,0],[-2,0],[0,1],[-5,4],[-3,2],[-2,1],[-1,0],[-3,1],[-1,0],[-3,1],[-3,1],[-2,0],[-1,0],[0,-2],[-1,0],[-1,0],[-1,-1],[-1,0],[1,1],[1,1],[-1,1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-4,0],[0,1],[-2,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,1],[1,1],[1,0],[2,1],[1,1],[1,1],[0,1],[1,1],[2,1],[1,0],[0,1],[1,0],[3,0],[1,0],[1,1],[1,1],[0,3],[0,2],[-1,3],[-1,3],[0,1],[1,1],[-1,2],[0,1],[0,1],[0,1],[-1,1],[-4,1],[-1,2],[-2,0],[-3,2],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,2],[-1,1],[-1,2],[-1,1],[-2,4],[0,2],[2,2],[0,1],[0,2],[0,1],[0,1],[-1,-1],[1,2],[1,1],[4,3],[0,1],[0,2],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,1],[0,1],[1,0],[-1,2],[0,1],[0,2],[-1,0],[-1,1],[-1,2],[0,1],[0,1],[4,5],[5,3],[0,2],[-1,1],[0,1],[2,1],[1,0],[1,1],[1,1],[1,0],[0,-1],[1,-1],[1,0],[1,1],[1,1],[0,1],[2,-1],[1,0],[0,1],[1,0],[0,-1],[-1,-1],[-1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,-1],[4,-1],[1,0],[1,-1],[1,-1],[2,-1],[1,0],[1,0],[1,0],[0,-1],[2,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,-2],[1,0],[1,0],[1,0],[0,1],[1,1],[2,0],[0,1],[1,1],[0,2],[0,1],[1,1],[1,1],[1,1],[3,0],[3,0],[1,0],[0,1],[1,1],[3,2],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,-1],[-1,-2],[0,-1],[1,-1],[-1,0],[0,-2],[1,0],[1,0],[1,0],[0,1],[0,1],[1,1],[1,2],[1,1],[1,1],[2,1],[2,1],[0,1],[-1,1],[1,1],[1,0],[0,-1],[0,-1],[1,0],[2,-2],[1,-1],[2,-1],[1,0],[-1,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[2,1],[1,1],[1,0],[1,0],[1,1],[0,1],[0,1],[2,1],[-1,0],[-1,0],[1,1],[0,1],[0,2],[0,1],[2,1],[1,1],[0,1],[1,2],[0,1],[-1,-2],[-1,0],[0,-1],[-1,0],[1,0],[1,2],[-2,0],[-2,-2],[-1,-2],[-1,0],[-1,0],[-1,0],[-1,0],[2,0],[1,1],[0,1],[-1,0],[-1,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[2,2],[-1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[7,1],[1,1],[2,1],[0,1],[1,0],[0,1],[1,0],[3,1],[-2,0],[-1,0],[0,1],[0,1],[0,1],[2,2],[1,0],[-2,2],[-2,2],[-2,0],[-1,0],[0,1],[-2,1],[0,-1],[1,-1],[1,-1],[-5,-2],[-1,-2],[-2,-1],[-2,0],[-1,-1],[-2,0],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[2,3],[0,1],[-1,2],[1,1],[2,1],[4,0],[3,1],[4,1],[1,1],[0,1],[-1,0],[-1,0],[-2,-1],[0,1],[-1,1],[0,-1],[-1,-2],[-2,-1],[-4,0],[-2,-1],[-1,-1],[-2,-1],[-2,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-3,-3],[-1,-2],[-1,0],[-2,-1],[-1,1],[1,3],[0,1],[0,1],[-1,0],[0,4],[-1,2],[-1,0],[-1,1],[0,1],[-1,1],[-3,1],[-1,1],[1,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-3,1],[-2,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[0,2],[0,3],[2,2],[1,0],[2,2],[-1,1],[2,0],[1,0],[2,1],[1,2],[-1,2],[-1,1],[-3,2],[0,1],[-5,2],[-2,0],[-3,1],[-2,1],[0,3],[2,1],[-2,5],[-1,0],[-3,6],[0,1],[1,3],[1,0],[0,1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,1],[-1,-4],[3,-5],[0,-1],[2,-4],[6,0],[4,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[2,1],[-1,3],[0,1],[-2,1],[0,1],[0,1],[3,2],[0,2],[-2,1],[-1,1],[0,1],[0,1],[-10,1],[-1,0],[-1,0],[-1,-2],[-1,0],[2,3],[0,2],[1,0],[-1,-2],[1,0],[11,-1],[0,1],[2,0],[1,2],[4,2],[2,0],[0,7],[-3,3],[-11,7],[-33,-12],[-1,-2],[-1,-2],[-4,-1],[3,1],[2,3],[0,1],[21,8],[-3,3],[-1,-1],[-2,2],[2,0],[-1,0],[1,1],[2,0],[1,0],[3,0],[1,0],[1,-1],[1,0],[3,1],[3,0],[1,0],[1,0],[4,-2],[0,-1],[0,1],[-1,1],[1,0],[0,1],[1,0],[4,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,4],[1,3],[1,1],[1,1],[1,1],[1,0],[1,1],[1,3],[-1,2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,1],[2,2],[1,0],[5,1],[0,2],[1,0],[2,0],[3,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-2,1],[1,2],[-1,0],[-2,-3],[-3,-3],[-5,-3],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,-1],[-3,-1],[-7,-3],[0,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[0,-2],[-1,-1],[-2,-1],[1,0],[2,0],[1,-1],[2,0],[2,-1],[1,-1],[4,-3],[5,-3],[-1,-1],[0,1],[-3,2],[-6,4],[-1,0],[-2,1],[-1,1],[-3,0],[-6,0],[-1,0],[0,-1],[2,0],[2,-1],[4,-3],[0,-1],[1,0],[2,0],[0,-1],[0,-1],[-3,-1],[-1,0],[-1,0],[-1,0],[1,1],[-2,1],[-1,0],[1,1],[-2,1],[0,1],[-1,0],[-2,-1],[-1,-1],[-23,-9],[7,-7],[1,0],[0,-1],[-1,0],[-9,9],[2,4],[0,1],[-2,0],[-2,0],[1,1],[-1,0],[-1,0],[1,0],[1,0],[0,1],[-3,2],[1,0],[2,-2],[1,0],[2,2],[3,0],[2,0],[1,1],[2,4],[1,1],[0,3],[0,1],[-1,0],[0,1],[-1,3],[0,1],[2,2],[2,2],[1,1],[1,1],[0,1],[0,1],[1,1],[-1,2],[-2,-1],[0,1],[2,0],[-1,1],[-2,1],[0,1],[-1,1],[1,1],[1,2],[0,1],[-1,2],[-1,0],[-2,0],[-1,0],[1,1],[1,0],[1,1],[1,0],[-3,0],[-5,-1],[5,1],[3,1],[1,0],[-1,0],[0,1],[1,0],[2,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[-2,1],[0,1],[-1,1],[-1,0],[1,2],[0,2],[0,4],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[0,4],[1,1],[0,1],[-1,1],[-1,0],[0,1],[1,0],[1,2],[0,1],[-1,1],[-8,2],[9,-2],[1,1],[0,1],[3,-1],[1,0],[1,0],[0,-2],[0,1],[1,1],[-2,1],[-1,0],[-1,0],[-1,1],[0,2],[-1,2],[0,1],[2,1],[0,1],[-1,1],[-5,4],[-1,0],[-1,1],[-1,0],[0,1],[-3,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,1],[-1,0],[-1,1],[-3,1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-3,1],[0,1],[0,2],[1,1],[0,1],[-1,0],[-3,2],[-1,1],[-1,-1],[0,1],[-1,0],[0,1],[1,1],[0,-1],[1,1],[0,1],[-2,1],[-1,1],[-4,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,1],[0,1],[-1,1],[-1,0],[0,2],[-1,1],[-1,1],[-2,1],[-5,1],[-3,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[2,0],[1,1],[0,1],[0,2],[-1,2],[0,2],[0,1],[1,0],[1,2],[1,0],[0,1],[-1,2],[0,1],[2,2],[1,1],[1,0],[0,-1],[1,1],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-4,3],[-1,1],[-1,0],[-1,-1],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[4,2],[1,0],[0,1],[1,1],[0,2],[1,1],[-2,6],[3,-6],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,1],[2,0],[1,-1],[1,0],[1,-1],[1,1],[1,0],[3,0],[1,-1],[0,-1],[-1,-2],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[3,1],[1,0],[1,0],[1,-1],[0,-1],[2,0],[2,-1],[-1,-2],[1,0],[1,0],[0,1],[1,0],[3,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-2,-1],[-1,0],[0,-1],[2,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-2],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,1],[1,0],[0,2],[0,1],[3,1],[2,1],[1,2],[2,2],[1,2],[4,3],[0,1],[-2,3],[0,1],[0,1],[1,2],[1,1],[2,2],[1,1],[1,-1],[1,0],[2,-1],[1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,3],[-1,1],[0,1],[0,1],[-2,2],[-2,1],[-6,-1],[-1,-1],[-2,0],[-2,-2],[-1,-1],[-1,-1],[-3,-1],[-1,-1],[-1,0],[-3,-3],[-3,-2],[-1,1],[1,0],[0,1],[-1,0],[-3,1],[-1,0],[-7,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-2,1],[1,2],[0,1],[0,1],[-1,1],[-10,1],[0,-1],[-5,1],[1,2],[-2,0],[0,1],[2,-1],[1,0],[1,1],[-2,1],[1,1],[5,-1],[2,-1],[1,1],[1,1],[-1,1],[1,0],[0,1],[-1,0],[-13,2],[-2,-3],[0,-1],[-6,1],[1,0],[0,1],[1,2],[-4,1],[-1,0],[-1,0],[-1,-1],[-1,-3],[0,-1],[1,-1],[0,-1],[-1,0],[-1,2],[0,1],[2,5],[1,0],[0,1],[16,-3],[1,4],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,1],[0,2],[1,0],[0,1],[2,0],[3,2],[0,-1],[1,1],[0,2],[1,0],[0,2],[-1,6],[0,1],[0,1],[-2,4],[0,2],[1,1],[1,1],[0,2],[1,1],[0,1],[0,1],[-1,3],[-2,3],[0,2],[0,1],[-1,0],[2,0],[7,1],[2,0],[2,1],[2,0],[1,1],[1,1],[3,2],[1,2],[1,1],[-1,1],[1,0],[0,1],[1,0],[1,0],[3,0],[1,0],[2,1],[2,1],[1,0],[1,-1],[1,0],[2,-1],[5,-1],[6,-1],[10,-3],[3,0],[13,-2],[1,0],[6,1],[4,-1],[3,0],[1,0],[0,-1],[1,0],[1,0],[4,0],[5,0],[1,0],[0,4],[1,0],[0,-1],[0,-3],[1,0],[5,0],[4,0],[2,1],[2,1],[2,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[-1,0],[1,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,1],[1,0],[1,1],[-2,0],[1,1],[-1,0],[1,1],[3,-2],[1,0],[1,1],[1,0],[2,1],[1,0],[3,1],[1,0],[0,1],[1,3],[1,2],[0,1],[1,0],[1,0],[1,0],[3,0],[1,0],[0,-1],[3,-2],[2,-2],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,1],[0,1],[-1,0],[-1,1],[-2,2],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[0,1],[-1,1],[1,0],[1,1],[1,0],[3,1],[0,1],[1,0],[1,1],[2,2],[0,3],[-3,0],[1,4],[0,4],[2,0],[2,-2],[-1,0],[1,-1],[1,0],[1,-1],[0,-1],[4,0],[1,0],[0,-1],[3,1],[0,-1],[7,1],[3,0],[4,1],[-1,0],[1,1],[0,1],[2,0],[0,1],[-1,0],[0,1],[1,0],[1,2],[-1,0],[-1,2],[-8,1],[-1,0],[0,1],[4,8],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[-2,-5],[5,-1],[1,2],[1,0],[-1,-3],[1,0],[2,0],[1,3],[1,1],[-3,0],[1,2],[2,0],[0,1],[1,0],[0,1],[-5,3],[-4,1],[-1,0],[1,0],[0,1],[5,-1],[5,-4],[1,0],[5,0],[-1,1],[1,0],[2,1],[2,2],[0,1],[1,2],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,2],[1,0],[2,0],[1,0],[1,1],[1,-1],[4,-1],[1,0],[1,0],[2,1],[1,0],[1,7],[0,1],[0,1],[-7,18],[1,0],[3,-9],[1,0],[0,-1],[1,0],[8,0],[0,1],[3,-8],[0,-1],[1,0],[3,0],[2,0],[10,-2],[12,-3],[4,11],[4,-1],[-3,-11],[1,-2],[10,-1],[3,1],[7,8],[-2,2],[0,1],[3,3],[3,0],[4,5],[-7,2],[-2,1],[-1,-3],[-1,1],[-2,-3],[-1,0],[2,3],[-1,0],[9,11],[-4,-5],[2,-1],[-2,-2],[3,-1],[6,-2],[7,10],[-8,2],[-2,-1],[-2,1],[1,1],[-13,4],[1,3],[1,0],[12,-4],[1,1],[0,-1],[2,-1],[2,2],[1,2],[1,2],[0,2],[0,2],[-1,5],[-1,5],[-1,2],[-2,3],[-2,2],[-3,5],[-5,4],[-4,4],[-2,1],[-2,1],[-3,2],[-1,0],[-3,2],[-2,1],[-1,1],[-2,0],[0,-1],[-1,0],[-1,0],[-2,1],[0,-1],[-1,-1],[-1,0],[-1,1],[-2,2],[-9,2],[0,1],[1,0],[0,-1],[4,-1],[0,2],[1,-1],[1,3],[2,0],[1,0],[0,3],[1,0],[0,-1],[0,-2],[2,1],[1,0],[1,1],[0,1],[0,1],[-1,1],[-2,2],[0,1],[1,1],[2,3],[3,4],[-1,0],[0,1],[2,2],[0,1],[0,1],[1,-1],[1,3],[2,-1],[0,1],[0,3],[1,1],[1,1],[1,0],[5,1],[1,1],[2,0],[1,1],[2,1],[6,0],[1,1],[2,0],[0,1],[0,1],[-2,4],[-1,3],[0,1],[1,1],[1,1],[1,0],[1,0],[3,-1],[1,0],[2,0],[0,1],[0,1],[0,2],[1,1],[1,0],[0,1],[2,0],[1,0],[4,1],[2,2],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[2,2],[0,1],[0,2],[1,1],[0,1],[2,0],[1,2],[0,2],[-1,1],[1,1],[1,1],[1,0],[-1,1],[0,2],[0,2],[0,1],[1,0],[2,1],[3,1],[1,1],[0,-1],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,2],[0,1],[0,1],[1,1],[3,2],[1,0],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[0,3],[2,0],[1,1],[2,0],[1,0],[0,-2],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,2],[1,0],[1,1],[1,-1],[2,1],[4,3],[1,0],[0,1],[1,2],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,1],[1,0],[1,-1],[1,0],[2,0],[4,1],[4,1],[1,1],[2,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,1],[1,0],[3,1],[1,1],[7,4],[2,2],[1,0],[1,1],[3,1],[1,1],[0,1],[1,1],[2,2],[1,0],[1,0],[0,1],[2,2],[2,1],[1,1],[3,2],[4,3],[1,1],[2,1],[2,2],[1,1],[0,1],[-1,3],[1,2],[-1,1],[0,3],[1,3],[1,3],[1,2],[1,2],[0,2],[0,1],[-1,2],[0,1],[0,3],[0,1],[1,1],[1,0],[1,0],[1,2],[0,3],[1,1],[2,2],[1,2],[1,2],[-1,2],[-1,0],[0,2],[0,1],[1,1],[1,1],[2,0],[1,1],[5,3],[6,2],[3,0],[1,1],[1,0],[2,2],[0,1],[-1,1],[0,1],[0,1],[1,0],[2,1],[2,1],[3,0],[2,0],[1,0],[3,0],[1,0],[2,1],[1,1],[1,0],[1,1],[1,1],[1,0],[3,1],[2,2],[1,1],[1,1],[0,2],[1,0],[1,0],[0,1],[-1,1],[-5,0],[0,4],[5,6],[-5,1],[-1,1],[1,0],[7,7],[1,1],[1,-1],[1,0],[6,4],[-1,0],[0,1],[1,-1],[3,2],[0,1],[1,0],[-2,0],[0,1],[1,1],[0,1],[-1,2],[0,3],[1,0],[0,1],[-2,0],[0,1],[1,1],[1,1],[3,0],[3,1],[1,1],[2,2],[1,2],[0,2],[0,2],[-1,1],[-2,2],[-2,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-2,1],[-1,2],[0,2],[-1,1],[-1,2],[0,3],[0,1],[1,2],[1,2],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[4,1],[1,0],[2,1],[-7,2],[-4,2],[-4,-1],[-2,0],[-2,-1],[-1,-1],[0,-1],[-1,0],[-8,2],[-1,-1],[4,-2],[1,-2],[0,-1],[-2,-2],[-2,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[1,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[2,0],[1,-1],[1,-1],[1,0],[2,0],[0,-1],[1,-2],[1,-4],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-3],[1,-1],[2,0],[3,-2],[1,-1],[1,0],[0,-1],[1,-1],[-1,-1],[-2,-2],[0,-1],[-1,0],[-1,0],[-2,-1],[0,-1],[0,-1],[-2,-3],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-3,-1],[-2,-1],[-2,-1],[-2,0],[-1,0],[0,1],[0,-1],[-1,-1],[-3,-2],[-2,-1],[-1,-2],[-2,0],[0,-1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-2,0],[-1,1],[-1,1],[0,1],[1,1],[1,0],[-1,0],[-1,0],[-2,-1],[-3,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-2],[0,-2],[0,-1],[-1,1],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[1,-1],[-1,0],[-1,0],[-1,-1],[1,0],[-1,0],[0,-1],[-2,0],[-1,-1],[1,0],[0,-1],[0,-1],[-2,-2],[1,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-5,0],[-2,1],[-1,0],[-3,2],[-3,1],[-3,1],[-1,1],[0,-1],[2,-1],[1,-3],[2,-2],[1,-1],[1,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-2,-2],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[1,-2],[-2,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,-2],[0,-1],[2,-1],[1,0],[1,0],[0,-1],[-1,-4],[-2,-2],[-2,-2],[0,-1],[-1,-1],[-1,-2],[0,-2],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[1,-1],[0,1],[1,0],[0,-1],[-1,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-2,0],[-2,1],[-2,1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-3,-2],[-5,0],[-2,-1],[-2,-2],[-2,-1],[-3,-2],[-4,-2],[0,-1],[0,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-3,1],[-4,0],[-2,0],[-2,0],[-1,0],[-3,2],[-2,2],[-1,1],[-1,3],[0,1],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-1,2],[-1,1],[-1,0],[-1,2],[-1,1],[0,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,1],[-3,-1],[-1,0],[-2,1],[-1,1],[-1,0],[-2,-1],[-1,-1],[-1,1],[-2,1],[-2,1],[-1,1],[0,1],[-1,0],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-3,-1],[0,-1],[-1,0],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,0],[-1,0],[-1,-2],[-1,-2],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-4,-2],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-2],[3,0],[-3,0],[0,-1],[0,-1],[-1,0],[-1,-2],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[-1,-1],[-2,-2],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-4,-2],[-1,-2],[-1,0],[0,-2],[-1,-1],[-3,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,-2],[0,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[0,-1],[-2,0],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,1],[-3,1],[-1,1],[-1,0],[-5,1],[-3,0],[0,-2],[-1,-2],[-1,0],[-2,0],[-1,0],[-1,0],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-2],[-3,0],[-3,0],[-1,0],[-1,-1],[-5,-2],[-1,0],[-2,1],[-2,0],[-3,0],[-1,0],[-1,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-4,2],[-5,1],[-1,0],[-2,1],[-4,0],[-1,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-3,-1],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[2,1],[-1,1],[-1,1],[-3,1],[-3,1],[-1,0],[-1,0],[-2,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[1,-1],[0,-1],[1,0],[1,-1],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[1,0],[2,2],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,-1],[-2,1],[-1,0],[0,1],[-2,2],[1,1],[2,1],[0,1],[1,0],[-1,0],[-1,0],[-3,-1],[-1,0],[-2,2],[-2,0],[-2,1],[-1,0],[-1,1],[0,2],[-1,2],[-1,1],[-1,0],[0,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,1],[-2,1],[-1,2],[-2,1],[-2,1],[-1,0],[0,1],[0,1],[-2,0],[-4,1],[-4,1],[-2,1],[-3,0],[-2,1],[-2,0],[-1,-1],[0,1],[-2,0],[1,-1],[2,0],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[-2,1],[-2,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-4,-1],[-1,0],[-1,0],[-1,-2],[-3,0],[-1,1],[0,1],[-2,0],[0,1],[-1,0],[1,0],[0,3],[-21,0],[0,5],[0,-4],[0,-1],[1,0],[16,0],[0,2],[-9,0],[9,0],[0,4],[4,0],[0,6],[0,1],[-5,0],[0,3],[-14,1],[-1,0],[0,-1],[0,-3],[0,4],[9,0],[0,4],[0,-1],[1,0],[0,-1],[-1,0],[0,-2],[7,0],[0,1],[1,0],[0,-1],[3,0],[5,0],[2,1],[3,5],[-1,0],[-4,2],[1,0],[3,-1],[1,0],[5,9],[1,1],[0,1],[0,-2],[-1,0],[1,-2],[1,1],[1,0],[1,1],[2,3],[1,2],[0,1],[0,1],[-1,0],[-1,0],[0,1],[2,1],[0,1],[1,0],[3,0],[1,1],[1,0],[0,1],[-1,0],[1,0],[1,0],[1,1],[1,2],[0,2],[0,2],[0,1],[1,0],[2,1],[0,1],[0,1],[0,1],[2,0],[0,1],[1,0],[2,1],[0,1],[-1,2],[0,1],[-2,2],[-2,1],[-1,0],[-1,2],[0,1],[-1,1],[0,1],[1,1],[3,-2],[2,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,2],[0,2],[0,1],[2,2],[3,1],[0,2],[1,2],[0,1],[1,2],[1,0],[-1,0],[-2,-2],[0,-1],[-1,-1],[0,-2],[-1,-1],[-2,-1],[-2,-1],[-2,-2],[0,-2],[-1,-1],[-1,0],[-1,1],[-3,2],[-3,1],[-1,1],[-4,1],[-5,2],[-3,1],[-1,0],[-4,0],[-1,0],[-1,0],[1,-1],[-1,0],[0,1],[-3,1],[-2,0],[0,-1],[-1,0],[-1,1],[-4,1],[-2,1],[-1,0],[-7,1],[-1,0],[-1,0],[-6,1],[-1,-1],[-2,-1],[-1,-1],[-3,-1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[0,1],[-1,0],[1,2],[1,1],[-2,1],[-2,1],[-2,2],[0,1],[-1,1],[0,1],[0,2],[-1,0],[0,1],[-1,0],[-1,0],[-1,2],[-1,0],[-2,0],[-1,-4],[1,0],[-1,0],[-4,-2],[3,2],[1,5],[-1,0],[-1,2],[2,0],[-1,3],[-1,1],[-1,1],[-1,0],[0,2],[0,1],[-1,1],[-2,2],[0,1],[-1,2],[0,1],[-1,1],[1,0],[0,1],[-1,0],[0,1],[1,1],[-3,2],[-1,1],[0,1],[-2,0],[0,1],[1,0],[0,1],[0,1],[-3,1],[-2,0],[-2,0],[-1,2],[-2,1],[-1,1],[-1,1],[-1,3],[-1,2],[-1,1],[-2,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,2],[-1,1],[-2,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[0,2],[0,1],[2,2],[0,1],[-1,2],[-1,0],[-1,2],[-1,0],[-2,1],[-1,-1],[-1,0],[-1,1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-3,3],[-2,1],[-2,0],[-1,0],[4,-1],[1,-1],[2,-2],[1,-1],[0,-5],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,-2],[0,-1],[1,-1],[1,-1],[2,-2],[4,-2],[1,-3],[1,-2],[1,-1],[0,-1],[-1,-2],[0,-1],[1,-2],[-1,-1],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,2],[0,1],[-2,1],[-2,1],[-4,3],[0,-1],[1,0],[1,-2],[1,-1],[3,-2],[1,-1],[0,-1],[1,-1],[2,-1],[3,-1],[1,0],[0,-1],[0,-3],[1,0],[1,-2],[1,-1],[1,0],[2,0],[2,0],[1,-1],[1,-3],[1,-1],[0,-2],[0,-1],[1,-1],[1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-3],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-3,-1],[0,-1],[0,-1],[1,-4],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[1,0],[2,0],[2,0],[4,0],[0,-1],[-6,0],[0,-2],[-1,-1],[-2,-1],[1,-1],[0,-2],[0,-1],[-1,0],[1,-1],[-1,0],[0,-1],[0,-1],[1,-2],[1,-1],[1,-1],[1,-2],[2,-1],[0,-1],[1,-2],[1,-1],[0,-3],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,2],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,2],[-1,1],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[0,1],[-1,2],[-1,2],[-1,0],[0,1],[-2,0],[0,1],[0,1],[1,1],[-1,1],[-2,1],[-2,0],[-1,1],[-2,0],[-2,0],[-3,-1],[-3,0],[-1,0],[-1,-1],[-1,0],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-2,0],[-4,-1],[-2,-1],[-2,-1],[-1,-2],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[1,0],[-1,0],[0,-1],[-1,0],[1,-1],[-1,-2],[0,-1],[1,0],[2,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-2,-4],[0,-1],[0,-1],[1,0],[2,-1],[1,0],[1,0],[0,1],[1,0],[-1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-4,0],[-1,-1],[-1,0],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-2],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[-1,-2],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[2,-3],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-2],[-2,-5],[-3,-2],[0,-3],[-1,0],[0,2],[0,1],[-2,0],[0,-1],[-1,0],[-3,1],[0,1],[-1,0],[-3,0],[-3,-2],[-1,-1],[-1,0],[-1,-3],[-1,0],[0,-1],[1,-2],[0,-1],[1,-1],[3,-1],[0,1],[0,-1],[0,-1],[2,-7],[1,-1],[2,-2],[3,1],[2,1],[-2,-1],[-3,-1],[2,-2],[5,-3],[4,-2],[4,-2],[2,-1],[6,-3],[2,0],[1,0],[1,0],[2,0],[3,0],[2,1],[1,1],[1,1],[1,0],[1,0],[3,-1],[3,-2],[2,0],[3,-1],[3,0],[2,1],[1,0],[0,2],[2,1],[0,-1],[2,1],[2,0],[1,0],[1,-1],[0,-2],[1,0],[1,0],[0,-1],[0,-2],[1,-1],[1,-1],[2,-1],[4,-3],[5,-3],[3,0],[2,-1],[5,-2],[2,0],[1,-1],[1,-1],[5,-1],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-2],[0,-2],[0,-2],[1,-1],[-1,0],[-1,1],[-2,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[0,-1],[1,0],[1,-2],[0,-1],[0,-1],[-1,0],[0,-2],[-2,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[-1,0],[0,2],[-3,1],[-5,0],[-3,0],[-1,0],[-3,1],[-2,1],[-1,0],[-1,1],[-1,0],[-2,1],[-2,-1],[-1,0],[0,1],[-1,0],[-2,2],[-3,0],[-5,1],[-8,0],[-14,0],[-3,0],[-3,0],[-1,0],[-2,0],[-2,-1],[-5,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,-3],[-1,-2],[1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-4,-1],[-4,-1],[-1,-1],[0,-3],[0,-1],[0,-2],[0,-3],[-1,-1],[-1,-1],[-1,-2],[-1,-5],[0,-1],[0,-1],[-1,-2],[0,-2],[-2,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-2],[2,-1],[0,-2],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[1,-1],[-2,0],[-1,1],[-1,-1],[-2,0],[-1,-1],[-3,-3],[-1,-2],[0,-1],[0,-4],[1,-2],[2,-4],[2,-4],[3,-3],[2,-2],[2,-1],[2,-1],[2,0],[3,1],[1,0],[1,0],[2,-1],[3,-1],[0,-1],[1,-1],[-1,-1],[-2,-2],[-1,-1],[0,-3],[1,-2],[0,-2],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,-1],[-1,0],[-6,0],[-3,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,1],[0,1],[-1,1],[-1,1],[-1,1],[-9,2],[-9,1],[-2,1],[-5,2],[0,-1],[-1,0],[0,1],[-1,1],[1,1],[-1,1],[-1,0],[-3,3],[-8,5],[-4,2],[-10,4],[-7,3],[-2,1],[-1,0],[-3,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,-1],[-1,-1],[0,1],[-1,1],[-1,0],[-2,0],[-1,0],[-3,-1],[-1,-1],[-2,-2],[0,-1],[0,-2],[-1,0],[-1,0],[-1,1],[0,2],[0,1],[1,1],[-1,1],[-1,1],[-1,0],[-2,2],[0,1],[0,2],[-1,0],[-2,1],[-1,0],[-9,0],[-2,0],[-2,0],[-1,-1],[0,-2],[-1,0],[-1,-2],[0,-1],[-3,-2],[0,-1],[0,-2],[1,-3],[0,-3],[-2,-1],[-2,0],[-1,0],[0,1],[-1,1],[0,1],[1,2],[0,1],[0,1],[-2,1],[-14,5],[0,1],[1,4],[1,0],[0,1],[0,-1],[1,0],[-2,-4],[0,-1],[2,-1],[0,1],[8,-2],[0,-1],[-1,1],[0,-1],[2,-1],[1,0],[0,1],[0,3],[-1,2],[2,1],[0,1],[1,0],[0,1],[2,0],[0,3],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,1],[1,1],[-1,0],[-1,0],[1,0],[1,0],[2,3],[-2,3],[0,1],[0,1],[1,0],[1,2],[-1,2],[0,1],[-2,1],[-1,1],[-1,0],[0,1],[0,2],[-1,0],[-1,0],[0,1],[-1,0],[0,3],[0,1],[0,-1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,2],[1,2],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,1],[3,1],[1,1],[1,1],[0,1],[1,0],[0,2],[-1,1],[0,1],[-1,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,1],[2,0],[1,1],[1,1],[0,1],[0,1],[1,0],[1,1],[1,0],[-1,0],[-1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,1],[0,1],[1,2],[3,1],[0,1],[0,1],[-1,0],[3,2],[1,0],[1,2],[-1,-2],[2,-1],[0,-1],[1,0],[2,0],[2,0],[2,0],[2,1],[4,2],[1,0],[2,0],[2,0],[1,0],[0,1],[1,1],[1,0],[3,0],[1,0],[1,2],[1,0],[1,1],[0,2],[1,3],[0,2],[0,3],[0,2],[1,0],[1,1],[0,2],[-3,4],[-1,0],[-1,2],[-1,1],[-3,1],[-1,-1],[1,1],[-2,1],[2,1],[-4,3],[-2,1],[-2,2],[-1,0],[-5,3],[-2,1],[-5,2],[-3,2],[-3,1],[-2,1],[-2,0],[-1,0],[-16,5],[-20,4],[-12,1],[-11,1],[-4,1],[-3,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[-2,0],[-1,1],[-2,0],[-2,0],[-5,-1],[-3,0],[-1,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,1],[1,2],[1,0],[1,3],[3,1],[2,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[2,0],[1,-1],[1,-1],[1,0],[0,-1],[-1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,2],[1,1],[0,1],[0,1],[-2,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,1],[-1,0],[-2,1],[-2,-1],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-4,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-4,-2],[-1,-1],[-1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[2,-1],[2,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[-1,-3],[0,-1],[2,-1],[0,-1],[0,-1],[-3,-1],[-1,1],[-4,-2],[1,-1],[-5,-3],[0,-1],[1,-2],[0,-1],[3,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[2,1],[-2,-1],[-5,0],[0,-1],[0,-7],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-2,0],[-2,-1],[-2,0],[-1,-1],[-1,-1],[0,-2],[-3,-1],[-2,0],[0,-1],[-1,0],[-3,-1],[-2,0],[-1,0],[-1,0],[-4,-2],[-1,-1],[-1,0],[2,-1],[-1,-3],[2,0],[-3,0],[-3,-3],[-2,1],[-1,-1],[-2,-1],[-2,-1],[-1,-2],[0,-1],[-1,0],[-1,-1],[-4,-1],[0,-1],[1,0],[0,-1],[-2,1],[-1,0],[-3,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-5,0],[-3,-1],[-1,0],[-6,-4],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-3,-1],[-2,-1],[-2,-2],[-1,-2],[-3,-2],[-1,-2],[0,-1],[0,-1],[1,-1],[1,-2],[0,-1],[1,0],[1,-1],[4,0],[-3,-1],[-3,-2],[-1,-1],[-1,0],[-1,-1],[0,-1],[-2,-1],[-3,-1],[-3,0],[-1,-1],[-1,-1],[-2,-2],[-2,0],[-1,-1],[-1,-1],[-2,-1],[-2,-2],[-2,-1],[-2,-1],[-5,-1],[-1,-1],[-6,2],[-1,1],[1,0],[0,1],[-3,1],[-1,0],[-1,0],[-2,0],[-4,0],[2,0],[2,0],[1,-1],[0,-1],[-5,-1],[-5,-1],[-1,0],[0,-1],[1,0],[4,1],[2,1],[2,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[2,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[2,0],[-2,-3],[-2,0],[-3,-1],[-1,-1],[-1,0],[0,-1],[0,1],[-1,-1],[-1,1],[-1,0],[-1,-1],[-1,-1],[13,-10],[1,-1],[3,-13],[-3,-1],[0,-1],[-3,11],[1,0],[0,-1],[1,0],[0,1],[1,0],[-1,4],[-1,0],[0,1],[-4,3],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,-1],[1,0],[-2,-1],[1,-1],[-2,0],[-1,1],[-3,-1],[1,-1],[-1,0],[-1,1],[-5,-1],[1,0],[-1,1],[-3,-2],[1,0],[-1,-1],[-6,-4],[0,-1],[0,-1],[0,-2],[15,-1],[1,-2],[1,0],[0,-1],[-1,0],[-1,0],[0,2],[-1,0],[-6,1],[1,-1],[0,-1],[-1,0],[0,2],[-6,0],[-1,0],[-2,0],[0,-4],[2,-5],[2,0],[-1,-1],[0,-1],[1,-2],[2,-3],[2,-4],[3,-2],[4,-4],[7,-6],[2,-2],[2,-2],[0,-1],[0,-1],[0,-1],[3,0],[5,-1],[4,0],[1,0],[2,1],[0,1],[1,0],[3,0],[1,0],[1,-1],[1,-1],[2,-1],[1,0],[1,0],[1,0],[2,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[2,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-2],[0,-1],[1,0],[0,-2],[1,-1],[0,-1],[1,-1],[-1,-2],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[3,-2],[1,0],[1,-1],[-1,0],[-1,0],[0,-1],[-3,-2],[-1,0],[-2,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-3,1],[-3,1],[-1,0],[-5,0],[-1,0],[0,-1],[-1,-1],[-2,0],[-2,0],[-1,-1],[-1,0],[0,1],[2,1],[-1,1],[-2,1],[-2,0],[-4,0],[-3,0],[-3,0],[-4,-1],[-1,-1],[-3,-1],[-1,-2],[-1,0],[0,-2],[0,-2],[0,-1],[1,0],[0,2],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,0],[-2,0],[-2,-1],[-2,-1],[-1,0],[-7,4],[-1,0],[-3,1],[-1,0],[-4,0],[-1,0],[-3,-1],[-1,0],[0,-1],[1,0],[0,-2],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,-1],[-3,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[0,-1],[-3,0],[0,1],[0,1],[2,0],[1,1],[0,1],[-1,1],[-2,0],[-3,2],[-5,2],[-4,1],[-7,1],[-10,0],[-7,1],[-2,-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,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-3,-3],[0,-1],[-1,0],[1,-1],[-1,-1],[-1,-1],[0,-1],[2,0],[1,0],[0,-2],[-2,0],[1,-2],[2,-1],[2,1],[0,1],[-2,1],[0,1],[2,-1],[0,-1],[1,-1],[3,1],[0,1],[1,-1],[-4,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,0],[0,-2],[-1,0],[-2,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[1,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,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],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[-1,0],[-1,0],[1,0],[-1,0],[-1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-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,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-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,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-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,0],[0,-1],[-2,0],[0,-1],[0,-1],[-1,0],[-2,-3],[2,-1],[-1,0],[1,0],[-1,-1],[4,-2],[0,1],[0,-1],[1,0],[1,0],[3,1],[0,1],[2,-3],[-2,2],[-3,-1],[5,-2],[4,3],[-1,1],[2,-1],[-6,-5],[0,-1],[-5,3],[-3,-3],[-4,0],[1,-9],[6,1],[3,-1],[-1,0],[-8,-1],[0,-3],[2,0],[-2,0],[1,-1],[1,0],[-1,-1],[0,-1],[2,1],[0,-3],[4,0],[-4,-1],[0,-1],[5,1],[-5,-1],[1,-1],[3,1],[0,-1],[-3,0],[0,-2],[2,0],[1,-2],[2,0],[1,-1],[1,1],[0,5],[1,0],[1,0],[-1,5],[5,2],[0,7],[1,3],[0,-1],[2,0],[0,-10],[-5,-2],[-1,0],[0,-1],[0,-3],[-2,-2],[0,-3],[0,-1],[0,-1],[2,-2],[3,-4],[0,-1],[1,0],[0,-1],[1,0],[5,-3],[2,-1],[0,-1],[1,0],[0,-1],[0,-4],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,1],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[1,0],[-1,-1],[2,-1],[1,0],[1,1],[-1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-1,-1],[2,0],[-1,-1],[1,0],[-1,-1],[0,1],[-3,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[2,0],[1,0],[4,-3],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-4],[2,-3],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-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,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[1,-1],[1,-2],[-1,0],[-1,2],[-1,0],[1,-1],[-3,-1],[-4,2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[6,-1],[0,-1],[-3,1],[-1,-2],[3,0],[-3,0],[-1,-1],[2,-1],[4,-2],[1,0],[1,0],[5,-2],[-1,1],[0,-1],[2,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-5,2],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,-1],[-1,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[-1,1],[0,-1],[-1,0],[0,1],[-1,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[1,1],[1,0],[1,0],[0,1],[-1,0],[-1,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],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[-1,0],[-1,-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],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[-1,1],[-1,0],[0,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[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,0],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[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,1],[0,1],[1,1],[0,1],[-1,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,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],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,2],[0,1],[-2,3],[-3,2],[-4,5],[-3,3],[-2,1],[-3,2],[-3,2],[-4,2],[-2,2],[-1,1],[-1,0],[0,2],[-2,4],[-1,0],[0,1],[-2,1],[-1,0],[0,-1],[-1,-1],[-1,0],[-2,3],[-2,1],[-2,2],[-2,1],[-4,2],[-5,3],[-4,2],[-10,4],[-2,1],[-3,1],[-6,2],[-4,2],[-7,2],[-6,1],[-4,1],[-4,0],[-5,0],[-2,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,0],[-2,-1],[0,-1],[1,-2],[0,-1],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-2,0],[-3,0],[-2,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-2,0],[-3,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-4,0],[-2,0],[-1,-2],[-2,-1],[-1,0],[-1,-2],[0,-1],[2,0],[0,-1],[-3,1],[0,-1],[0,-1],[6,-2],[1,0],[4,1],[-5,-1],[-6,2],[-2,-1],[-2,-1],[-1,0],[-3,1],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,-1],[-4,-4],[-1,-2],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[2,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[2,0],[1,-1],[-1,-2],[1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,2],[-1,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,1],[1,0],[0,1],[-1,0],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,1],[-2,0],[-1,0],[-1,0],[-3,1],[-3,0],[-2,0],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-2,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,-1],[-1,-1],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,-2],[-1,0],[0,2],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,1],[0,1],[1,1],[-1,1],[0,1],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,1],[-2,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,-1],[0,1],[-1,0],[0,2],[1,0],[1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,1],[-1,0],[2,1],[-1,0],[-1,0],[-1,1],[0,1],[1,2],[-1,1],[-1,0],[0,1],[1,1],[1,0],[-1,1],[-1,0],[0,1],[1,1],[0,1],[1,2],[0,2],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[1,-1],[1,-1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,0],[4,-1],[1,0],[2,-1],[1,0],[0,1],[1,0],[1,-1],[2,1],[-1,1],[0,1],[1,1],[1,0],[-1,1],[1,0],[1,0],[1,-1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[3,1],[1,1],[1,2],[3,2],[2,3],[2,3],[-1,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,1],[1,1],[1,2],[2,2],[0,1],[0,2],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,2],[0,1],[-1,1],[1,1],[2,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[1,0],[2,0],[1,0],[0,1],[-1,1],[0,2],[0,1],[0,1],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-3,3],[-1,1],[-1,0],[0,-1],[-1,0],[1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,2],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-2,-1],[-1,0],[0,1],[3,1],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[0,1],[-1,1],[1,1],[-2,1],[-1,0],[1,1],[4,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[-1,0],[0,1],[2,0],[1,1],[1,0],[0,1],[0,1],[-2,0],[-1,1],[-1,1],[-2,1],[0,1],[0,1],[1,0],[2,0],[2,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[3,1],[1,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[1,0],[1,1],[2,2],[0,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[3,-2],[1,0],[3,0],[1,0],[3,-1],[3,-1],[5,-1],[2,0],[2,0],[3,0],[2,0],[2,1],[6,3],[4,4],[3,2],[2,2],[4,3],[3,3],[2,3],[2,2],[0,1],[-1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[2,3],[1,2],[0,1],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[1,0],[1,0],[0,1],[-1,1],[1,0],[1,0],[0,-1],[1,0],[1,1],[-2,0],[-2,1],[0,1],[-2,0],[0,1],[0,1],[0,1],[1,0],[2,0],[1,0],[2,0],[1,-1],[1,1],[-2,1],[-1,1],[1,0],[1,1],[1,1],[-1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[0,1],[-1,0],[-1,2],[1,0],[1,0],[0,1],[-1,0],[-2,1],[-1,0],[-2,2],[-2,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[2,0],[1,0],[1,1],[1,2],[0,1],[0,1],[0,1],[-3,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[6,0],[3,0],[3,0],[2,1],[1,1],[0,2],[1,1],[1,0],[0,1],[1,0],[0,1],[1,2],[1,0],[1,0],[1,-1],[1,0],[1,0],[4,2],[4,2],[4,4],[1,2],[1,0],[-1,2],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[3,0],[1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[1,0],[1,0],[0,-1],[2,-1],[2,-1],[1,0],[2,0],[2,0],[1,0],[3,1],[1,0],[0,1],[1,1],[1,1],[1,0],[2,1],[1,2],[1,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,2],[3,4],[2,3],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,1],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,-1],[-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,0],[1,0],[0,1],[1,-1],[1,1],[1,0],[0,1],[0,1],[-1,1],[1,0],[1,0],[0,-1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[1,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[2,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,1],[1,0],[-1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[1,0],[1,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[-1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[1,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[-1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[-1,1],[1,0],[0,1],[0,1],[1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[8,1],[0,1],[6,4],[1,1],[0,1],[1,0],[1,0],[1,0],[4,-1],[1,0],[-1,-1],[-1,0],[-3,1],[-1,0],[-1,0],[-1,-1],[1,0],[-3,-3],[-1,0],[1,0],[-1,0],[-2,-1],[0,-1],[2,-2],[-1,-2],[0,1],[-7,-1],[1,-1],[-1,0],[3,-2],[1,2],[2,1],[-1,-1],[-1,-2],[3,-1],[2,0],[1,0],[0,5],[1,0],[0,-1],[1,0],[1,0],[5,4],[1,0],[-3,-3],[2,-1],[2,-1],[2,0],[2,0],[5,2],[3,0],[2,1],[3,1],[3,1],[3,2],[3,1],[2,2],[-1,2],[0,2],[1,3],[1,3],[2,3],[0,1],[-1,1],[-1,2],[-1,0],[-2,1],[-1,1],[-1,1],[1,2],[-1,1],[1,1],[2,0],[3,1],[3,0],[1,0],[2,1],[3,1],[1,1],[2,1],[0,1],[1,2],[0,2],[1,0],[0,3],[0,1],[-1,4],[0,1],[0,1],[1,2],[3,2],[0,1],[2,0],[2,1],[4,2],[5,4],[1,0],[1,0],[2,0],[3,1],[1,1],[2,0],[2,-1],[3,0],[1,0],[1,0],[2,2],[1,1],[2,0],[3,0],[2,1],[1,0],[2,-1],[1,0],[2,0],[1,-1],[4,-1],[1,-1],[2,1],[1,0],[1,1],[1,1],[0,2],[1,1],[1,1],[2,1],[1,0],[1,1],[4,0],[3,1],[1,0],[2,0],[3,0],[1,0],[1,-1],[2,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-2],[1,-1],[3,-3],[3,-1],[2,-1],[3,-1],[8,-1],[2,0],[5,1],[5,2],[8,3],[8,4],[2,1],[3,2],[7,4],[3,2],[3,3],[1,1],[1,0],[1,1],[1,0],[1,0],[1,-1],[3,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,3],[1,0],[1,0],[2,-1],[0,-1],[1,0],[3,2],[2,2],[2,1],[2,1],[2,1],[2,1],[2,1],[0,1],[0,2],[0,1],[1,1],[2,2],[0,1],[-1,3],[-1,0],[0,1],[1,0],[0,1],[3,1],[1,0],[1,2],[0,1],[1,5],[0,10],[0,2],[-1,4],[-2,5],[0,1],[1,0],[1,0],[5,1],[1,0],[1,0],[6,5],[1,1],[0,1],[1,1],[0,11],[4,6],[1,0],[0,-1],[-4,-5],[0,-1],[0,-2],[0,-1],[0,-4],[2,0],[0,1],[1,0],[-1,-4],[-2,-2],[0,-4],[2,0],[0,-3],[3,0],[2,0],[3,0],[1,0],[1,1],[1,1],[2,2],[-5,1],[0,-4],[-1,0],[1,4],[-2,0],[0,-4],[0,4],[0,-1],[-1,0],[0,4],[1,0],[0,-1],[9,0],[0,3],[2,0],[1,1],[0,1],[2,1],[1,1],[0,1],[-1,0],[-1,0],[0,1],[-7,0],[8,0],[0,1],[-7,0],[1,0],[6,0],[0,2],[-8,-1],[0,1],[8,0],[0,1],[-9,0],[8,0],[2,1],[1,1],[2,1],[1,0],[2,0],[2,1],[1,0],[1,1],[0,2],[0,2],[0,1],[0,1],[1,0],[4,1],[2,0],[1,1],[1,2],[1,2],[-1,5],[1,4],[0,2],[0,1],[0,1],[-3,3],[1,1],[1,0],[0,1],[0,1],[-1,0],[-2,2],[-1,0],[0,1],[0,1],[2,1],[1,1],[5,1],[2,1],[2,1],[1,2],[3,1],[1,1],[0,1],[1,2],[1,2],[3,3],[2,2],[1,1],[2,0],[1,0],[0,-1],[2,0],[2,-2],[1,0],[1,-1],[2,0],[3,0],[1,0],[2,0],[2,2],[1,2],[2,1],[1,4],[0,3],[1,0],[1,1],[5,2],[1,1],[0,4],[0,1],[1,2],[2,2],[1,1],[1,0],[2,1],[2,1],[1,0],[1,1],[1,2],[2,1],[1,2],[1,1],[4,3],[2,2],[3,3],[1,1],[1,1],[4,1],[1,0],[1,1],[3,3],[1,1],[2,1],[3,0],[11,2],[2,1],[2,0],[3,0],[2,0],[1,0],[2,0],[1,0],[3,0],[2,0],[6,2],[6,1],[2,0],[5,0],[7,2],[1,-1],[-1,-1],[1,0],[-1,-1],[2,-1],[1,2],[1,0],[-1,-2],[3,-1],[-1,0],[1,-1],[1,1],[3,0],[1,0],[6,-3],[2,-1],[3,-2],[3,-1],[1,-1],[3,-2],[-1,2],[-2,1],[-1,0],[-3,1],[-2,2],[0,1],[-1,0],[-3,1],[-4,2],[0,1],[1,1],[2,2],[1,1],[0,1],[-1,1],[0,1],[-1,0],[-3,2],[-1,1],[-1,1],[0,1],[0,1],[1,0],[4,-1],[2,-1],[5,0],[2,0],[1,0],[0,1],[1,1],[2,2],[1,1],[3,0],[2,1],[6,1],[4,1],[7,1],[2,0],[2,1],[1,0],[0,1],[1,0],[0,1],[-1,2],[-1,1],[-1,0],[-1,1],[-3,0],[-1,1],[-1,0],[0,1],[0,2],[-1,0],[0,1],[-1,1],[-2,0],[0,1],[-1,0],[-2,1],[-1,1],[-1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[-1,3],[0,2],[1,2],[2,4],[1,2],[8,9],[1,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[6,2],[2,1],[1,1],[0,1],[1,4],[0,2],[-1,3],[1,0],[0,1],[1,4],[0,2],[-1,5],[0,1],[-1,-1],[-2,5],[0,-1],[0,-3],[0,-5],[0,-4],[0,-3],[0,-2],[0,-4],[0,-1],[2,-2],[-1,-2],[-1,0],[-1,-1],[-2,-1],[-3,0],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-2,-2],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-2,3],[0,3],[0,2],[0,4],[0,3],[0,1],[1,3],[0,2],[0,-1],[-1,0],[0,-3],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,3],[-1,1],[-1,0],[-4,1],[-1,0],[1,0],[3,2],[7,4],[1,0],[2,2],[1,1],[1,0],[3,1],[7,1],[5,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[3,-1],[3,0],[7,-2],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[3,-1],[7,-2],[2,-1],[8,-2],[2,0],[3,0],[3,1],[1,0],[1,0],[-5,0],[-1,0],[-2,0],[-2,0],[-2,0],[-5,1],[-1,1],[-3,1],[-6,2],[-2,1],[-1,1],[1,0],[1,0],[2,-1],[4,-1],[4,-1],[3,-1],[1,0],[3,-1],[4,0],[11,1],[1,0],[2,2],[2,0],[2,2],[3,0],[3,1],[3,1],[1,0],[2,1],[2,0],[4,0],[3,1],[3,1],[2,0],[1,1],[2,2],[3,1],[1,1],[1,1],[1,2],[0,1],[1,2],[-1,2],[-1,2],[-2,2],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,5],[0,8],[1,3],[1,3],[3,3],[1,1],[4,1],[1,0],[1,0],[1,0],[1,5],[0,2],[-3,-1],[-1,-1],[-1,0],[0,-1],[-6,0],[-2,0],[-5,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-2],[0,-2],[1,-1],[0,-4],[0,-1],[0,-3],[0,-3],[0,-2],[0,-2],[0,-2],[0,-1],[-2,-5],[0,-2],[-1,-1],[0,-2],[-1,0],[0,-2],[-1,-1],[-1,-1],[-2,-1],[-3,0],[0,-1],[-1,0],[-2,-1],[-3,-1],[-2,0],[-2,0],[-1,0],[-2,0],[-3,-2],[-1,0],[-3,1],[-1,-1],[2,-1],[-9,-1],[-4,0],[-6,0],[-3,0],[-3,-1],[-1,0],[-1,0],[1,1],[2,0],[0,1],[-3,1],[-7,3],[-2,3],[-2,0],[-3,1],[-3,1],[-3,1],[-8,2],[-3,1],[-7,0],[-4,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,2],[2,4],[1,2],[2,2],[1,1],[3,1],[7,1],[6,2],[1,0],[0,1],[2,2],[0,1],[-2,4],[0,4],[-1,4],[0,2],[-1,0],[-3,2],[-3,1],[-1,1],[-2,2],[-2,2],[-1,0],[-1,1],[-2,0],[-2,0],[-2,0],[-2,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-5,-6],[0,-1],[-3,-1],[-2,-2],[-1,0],[-1,-1],[-1,0],[-3,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,-1],[-2,0],[-3,-2],[-1,0],[-3,0],[-4,0],[-2,0],[2,0],[3,-1],[2,0],[2,0],[3,1],[3,1],[1,0],[2,0],[1,0],[1,-1],[1,0],[2,2],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,1],[2,2],[1,1],[1,1],[2,0],[5,0],[2,0],[1,0],[2,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-3,0],[0,-1],[-1,-1],[0,-1],[-2,-3],[-1,-2],[-1,-2],[0,-1],[1,-2],[0,-1],[-2,-6],[-1,0],[-4,-2],[-2,-1],[-2,-1],[-5,-3],[-2,-1],[-3,-1],[0,-1],[-2,-6],[1,-1],[2,-2],[0,-2],[0,-1],[-1,-1],[-3,-2],[0,-2],[0,-2],[1,-2],[0,-2],[-1,-1],[-1,-2],[0,-2],[1,-2],[-1,-3],[-1,-5],[-1,-4],[0,-3],[0,-4],[0,-2],[-1,-3],[-3,-7],[0,-1],[-2,-4],[-1,-2],[-4,-5],[-1,-2],[1,-3],[1,-4],[1,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-5,-1],[-8,-3],[-2,0],[-1,0],[-1,0],[0,1],[3,1],[1,1],[1,0],[1,2],[-1,1],[-1,4],[0,2],[0,1],[-1,0],[-1,0],[-3,-1],[-2,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-7,0],[-1,0],[-1,-1],[-3,1],[-4,0],[-3,0],[-5,0],[-2,-1],[-2,0],[-2,0],[-3,-1],[-1,0],[-5,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,2],[-1,1],[-1,1],[-2,1],[-1,0],[-1,0],[-1,1],[-2,1],[0,2],[1,1],[0,1],[-1,1],[-3,1],[-2,1],[-6,3],[-6,1],[-4,2],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,1],[1,0],[-1,1],[1,1],[1,2],[1,0],[1,1],[0,2],[1,1],[2,1],[3,2],[1,1],[0,1],[-1,0],[1,1],[1,0],[0,1],[0,2],[1,0],[-1,0],[1,1],[-1,0],[3,2],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,-2],[-1,0],[-1,0],[-1,-1],[-4,-3],[-2,0],[-4,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-3],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,-1],[-6,-2],[0,-1],[-4,0],[-2,0],[-4,0],[-3,0],[-2,0],[-1,-2],[-3,-1],[-1,-1],[0,-3],[1,0],[-1,-1],[-2,-1],[2,-1],[-1,-1],[-4,2],[-1,0],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-3,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-2,-2],[0,-1],[0,-1],[2,0],[0,-1],[-3,0],[0,-2],[1,1],[0,-1],[0,-1],[1,-1],[1,0],[-1,0],[-1,-1],[1,0],[3,0],[0,-1],[-2,0],[0,-2],[3,1],[-2,-1],[0,-1],[3,0],[-2,-1],[0,-1],[3,1],[-3,-1],[1,-1],[1,1],[0,-1],[-1,0],[1,0],[6,1],[-5,-1],[0,-1],[1,1],[1,0],[1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[1,-1],[-1,-1],[-1,-1],[1,-2],[-1,0],[-1,-1],[-4,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,1],[-1,-1],[-1,0],[0,-2],[1,-1],[-1,-1],[0,-1],[0,-1],[-2,-1],[-2,-2],[-1,-1],[-3,0],[-1,0],[0,-1],[-1,-1],[0,-2],[-2,-4],[-2,-4],[0,-2],[1,-2],[0,-3],[-2,-1],[-1,0],[-1,-1],[-2,0],[0,-1],[2,-1],[1,-1],[0,-2],[-1,0],[-1,0],[0,1],[-2,0],[-2,0],[-1,1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-3,0],[-2,-1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[-1,0],[-3,-1],[-2,0],[-2,1],[-3,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,2],[-1,1],[-1,0],[-2,1],[-1,0],[0,1],[2,2],[3,2],[1,1],[-1,2],[1,1],[0,3],[1,2],[1,1],[1,2],[0,1],[-1,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,2],[1,0],[0,1],[-1,0],[-4,1],[-2,0],[-2,2],[-5,1],[-1,0],[-3,-1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,1],[-1,1],[-1,3],[0,2],[-2,1],[-1,1],[-1,0],[-5,-1],[-3,0],[-4,-1],[-1,-1],[-5,-3],[-1,0],[0,-2],[2,0],[1,0],[2,-1],[0,-1],[0,-1],[-2,-2],[2,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-2],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[-1,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[1,0],[-1,-1],[0,1],[-1,-1],[-3,-3],[0,-1],[2,-1],[0,-4],[2,-4],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-3,-3],[-1,-1],[0,-1],[-1,1],[-1,0],[0,1],[-3,0],[-1,0],[-6,0],[-1,2],[-2,1],[0,1],[-1,0],[-1,0],[-1,1],[-3,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-2],[0,-1],[-1,-1],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1],[-2,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-1,1],[-2,2],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[1,0],[1,1],[-3,1],[-1,1],[-3,-2],[-1,0],[-4,1],[0,1],[1,2],[-2,1],[-3,1],[-1,0],[-3,1],[-1,1],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-2,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[1,-1],[-1,1],[-1,0],[-1,0],[0,-1],[2,0],[2,0],[-3,-1],[-1,1],[0,-2],[1,-1],[2,0],[2,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[2,-1],[0,1],[1,1],[-2,0],[0,1],[-2,0],[-3,1],[1,1],[1,-1],[0,1],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-3,-2],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[2,1],[-1,1],[0,1],[1,1],[1,1],[2,0],[0,1],[1,0],[2,-1],[3,-1],[2,1],[1,-1],[1,1],[0,1],[0,1],[0,1],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[0,1],[1,0],[-1,1],[-2,1],[-1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[-1,-1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-2],[-1,0],[-1,0],[-1,2],[0,1],[-1,1],[1,0],[1,1],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[2,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,2],[-1,1],[0,1],[-1,0],[-1,-1],[-1,0],[0,-1],[2,-2],[1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,2],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[2,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-3,0],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-2,0],[0,-1],[-1,0],[-4,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[1,-2],[1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[2,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,-1],[0,1],[0,1],[-1,0],[-3,-1],[-1,1],[0,1],[1,0],[1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[0,-2],[-1,0],[0,-3],[-1,-1],[-1,0],[-1,1],[1,2],[-1,1],[-1,1],[0,1],[-2,1],[-1,0],[0,1],[2,0],[1,1],[1,0],[1,0],[1,0],[1,2],[1,1],[1,3],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[2,1],[1,0],[1,-1],[1,0],[1,0],[-1,3],[-1,3],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-3,-2],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[5,2],[1,0],[0,1],[0,3],[1,0],[1,0],[1,1],[1,1],[1,0],[-1,0],[-1,1],[-1,0],[0,1],[2,1],[0,1],[-2,1],[0,1],[0,2],[0,1],[2,1],[-1,2],[0,1],[-1,2],[0,1],[0,1],[1,0],[2,-2],[1,0],[3,-2],[1,0],[3,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,-1],[1,1],[0,1],[0,1],[1,0],[-1,2],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-2,1],[-1,0],[0,1],[-3,1],[0,1],[-1,1],[-1,1],[-1,1],[1,0],[0,1],[3,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[2,-1],[1,-1],[1,0],[1,1],[1,0],[1,1],[1,0],[-1,1],[0,1],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-2,5],[-2,4],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,2],[-2,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-4,1],[-5,2],[-1,0],[0,1],[-1,0],[-5,1],[-3,1],[-2,0],[-3,1],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-2,-1],[-3,0],[-1,-1],[-1,0],[1,-5],[2,-3],[0,-2],[0,-1],[2,-3],[0,-3],[0,-2],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[1,1],[0,1],[-1,2],[-1,0],[-2,0],[0,1],[-2,4],[-1,1],[-2,0],[0,1],[1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[0,1],[-1,0],[-4,1],[-2,0],[-3,0],[-4,0],[-1,0],[0,-1],[-1,-3],[-1,-1],[-2,-1],[-1,-1],[0,1],[-1,0],[-1,0],[-2,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-2,0],[-3,-1],[0,-1],[1,-2],[0,-1],[-1,-3],[-1,-1],[0,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[-1,0],[-2,-1],[0,-1],[-1,-1],[-2,-2],[-1,0],[-1,-1],[-1,1],[-1,0],[0,1],[-1,2],[-1,0],[-1,0],[-1,0],[-1,-2],[-2,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-2,-2],[-1,0],[0,-1],[-4,-1],[-5,-1],[-3,-1],[-2,0],[-3,0],[-2,0],[-4,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-2],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[1,1],[0,1],[-1,0],[-1,1],[-6,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,1],[0,1],[-1,0],[-1,0],[-2,0],[-5,0],[-3,-2],[-7,-2],[-3,-1],[-1,0],[-4,0],[0,-1],[-1,0],[0,1],[-2,0],[-3,0],[-3,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-5,2],[-2,1],[0,1],[-1,3],[-3,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[0,1],[-4,-1],[0,-1],[-1,-1],[-1,-2],[0,-2],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[2,-5],[2,-2],[0,-1],[-1,-2],[1,-1],[1,-1],[1,0],[3,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[2,0],[5,-1],[3,-1],[0,-2],[2,-2],[1,-1],[1,-2],[0,-1],[1,-1],[1,-3],[4,-5],[3,1],[1,-1],[2,1],[3,-3],[-3,2],[-5,-2],[5,-5],[6,2],[-1,3],[2,0],[2,-4],[6,2],[-3,7],[-1,0],[1,0],[0,1],[1,0],[0,-1],[3,-6],[6,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[3,0],[2,0],[0,1],[1,0],[1,-2],[0,-2],[-7,2],[-5,0],[-3,-1],[0,-3],[1,-1],[3,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[3,-1],[2,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[2,0],[1,-1],[4,-1],[2,-2],[1,-1],[1,-1],[1,-2],[1,-3],[1,-1],[-1,-2],[-1,-2],[-1,-2],[-2,-1],[-1,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-4,0],[-1,0],[-1,-1],[-2,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[-5,-3],[-1,-2],[-2,-1],[0,-1],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[1,-1],[-1,-2],[-1,-2],[-1,0],[-1,0],[-3,1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-5,-2],[-1,0],[-6,0],[-3,0],[-5,0],[-3,0],[-3,0],[-3,0],[-2,-1],[-3,0],[-10,-1],[-2,-1],[-4,0],[-4,-1],[-6,-1],[-3,-1],[-5,-2],[-3,-2],[-2,-1],[-3,-3],[-2,-3],[-1,0],[-1,-1],[-1,0],[-6,-6],[-2,-1],[-3,-3],[-2,-1],[-1,-1],[0,-1],[1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[2,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,1],[0,-1],[1,0],[-1,-1],[1,0],[4,-4],[2,-2],[2,-1],[2,-2],[1,-3],[3,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[1,-2],[0,-2],[0,-2],[-1,-5],[-2,-3],[-3,-3],[-2,-2],[-2,-4],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-2,-1],[-1,0],[-6,0],[-1,0],[-2,1],[-4,0],[-1,0],[-2,0],[-1,1],[-1,-1],[-2,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,1],[2,3],[-1,2],[0,1],[-2,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[-1,2],[-1,1],[-1,1],[0,3],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[2,1],[1,1],[0,2],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,4],[-1,2],[-2,1],[-4,2],[-2,2],[-1,1],[-3,4],[-2,1],[-2,2],[-5,4],[0,1],[-1,1],[-2,0],[-2,1],[-2,1],[-2,1],[-1,2],[-1,0],[-7,3],[-6,3],[-3,2],[-4,2],[-2,1],[-3,1],[-3,0],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-5,0],[-3,1],[0,-1],[-4,-1],[-3,-1],[-1,0],[-2,-1],[-1,-1],[-3,1],[-1,0],[-1,0],[-1,0],[-3,1],[-3,1],[-1,0],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-2,0],[0,-1],[1,-1],[0,-1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[0,1],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[-3,1],[-2,1],[-2,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[2,1],[1,0],[0,1],[-1,0],[0,1],[1,3],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,2],[1,0],[1,0],[4,0],[0,1],[1,0],[1,1],[1,1],[0,2],[-1,2],[-1,3],[0,1],[0,1],[-1,2],[-2,3],[-3,3],[-4,4],[-2,3],[-2,3],[-4,5],[-2,1],[-4,3],[-3,3],[-5,3],[-6,3],[0,-1],[-1,0],[-2,1],[-1,0],[-5,3],[0,1],[-1,0],[-3,1],[-2,0],[-7,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[1,1],[0,1],[-1,0],[-1,1],[0,1],[1,0],[2,1],[1,0],[0,1],[-1,0],[0,1],[1,2],[0,1],[0,1],[2,2],[1,1],[0,1],[0,2],[-1,1],[-1,1],[-3,3],[-1,1],[-2,2],[-1,0],[-1,1],[1,1],[1,2],[-1,1],[0,1],[0,1],[-1,0],[-7,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[3,0],[1,1],[1,0],[0,2],[0,1],[-1,1],[-2,1],[-1,0],[1,1],[2,0],[1,0],[1,0],[1,1],[-1,3],[0,2],[-2,1],[-1,1],[0,1],[-1,5],[-1,2],[-1,1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,1],[-1,0],[0,1],[1,0],[2,1],[-1,0],[-2,1],[-1,0],[-1,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,1],[-1,1],[0,1],[0,1],[0,1],[-1,2],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,0],[-1,1],[-1,0],[2,0],[-2,3],[0,-1],[-1,0],[-1,1],[1,0],[-1,2],[1,2],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,2],[1,0],[0,1],[-1,0],[0,1],[1,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[2,1],[-1,0],[0,1],[0,1],[0,2],[1,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[1,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,-1],[0,-2],[-1,0],[-2,-1],[0,1],[-1,1],[1,1],[-2,-1],[-1,-1],[-1,-1],[-1,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[-1,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,1],[2,1],[-1,0],[0,1],[2,1],[-3,1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[1,3],[2,0],[0,1],[-1,-1],[-1,0],[2,4],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,-2],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-2,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,1],[-2,1],[0,1],[0,-1],[-1,0],[0,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],[0,1],[-1,0],[0,1],[0,2],[1,0],[1,-2],[0,-1],[0,2],[0,1],[1,0],[1,-2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[1,0],[0,1],[0,1],[-1,0],[1,2],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[2,-1],[1,0],[0,1],[0,2],[2,2],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,2],[1,1],[1,0],[1,0],[1,-2],[0,-1],[1,0],[1,-1],[1,-1],[-1,-3],[1,0],[1,-1],[1,0],[1,1],[0,1],[1,0],[3,-1],[1,0],[0,1],[0,1],[1,0],[1,-2],[1,0],[1,0],[0,1],[0,1],[1,0],[2,1],[0,2],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[-1,1],[-1,1],[0,1],[-1,1],[1,1],[1,0],[1,1],[0,-1],[1,0],[-1,-2],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,3],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,2],[1,0],[1,0],[-1,1],[0,1],[0,1],[0,6],[1,1],[1,2],[1,0],[0,-2],[-2,-2],[1,0],[1,0],[-1,-2],[1,0],[0,-1],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,-1],[1,1],[-1,1],[0,1],[0,2],[0,1],[1,1],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,0],[3,1],[3,0],[1,0],[0,-1],[-3,0],[0,-1],[0,-1],[-4,-1],[-1,-2],[-1,0],[-1,-1],[1,0],[-2,-2],[1,0],[3,-1],[2,-1],[3,0],[1,0],[1,0],[0,3],[2,2],[2,2],[1,0],[1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,2],[1,1],[0,-1],[1,-1],[1,-2],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[4,-1],[2,-2],[1,0],[2,1],[1,0],[0,1],[-1,1],[0,2],[-1,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[1,1],[1,1],[-2,0],[-1,1],[0,1],[1,1],[1,1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,-1],[1,0],[2,0],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[2,1],[2,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,1],[1,0],[0,1],[1,1],[-1,0],[-1,0],[0,1],[2,0],[1,1],[1,-1],[1,1],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[2,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[1,1],[0,2],[1,0],[2,-1],[-1,-1],[1,0],[1,0],[1,0],[1,1],[-1,0],[-2,1],[-1,0],[-1,2],[0,1],[1,0],[1,0],[-1,1],[2,1],[1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,2],[-1,0],[0,1],[1,1],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,-1],[-1,-2],[-2,-2],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[0,-1],[3,2],[2,0],[1,1],[4,-1],[1,0],[1,0],[1,0],[1,0],[2,1],[3,3],[3,2],[4,2],[3,2],[1,1],[2,2],[4,3],[2,3],[2,4],[3,6],[2,3],[2,6],[4,6],[0,2],[1,2],[0,2],[1,2],[0,1],[0,6],[0,2],[0,5],[-1,8],[-2,16],[-1,3],[0,1],[0,2],[-1,7],[-2,4],[-1,5],[-1,3],[-3,6],[-1,1],[-2,3],[-3,2],[-1,1],[-1,2],[-3,3],[-2,1],[-3,2],[-2,1],[-2,1],[-8,5],[-8,3],[-1,1],[-2,1],[0,1],[-1,-1],[-3,1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-2,0],[-3,1],[-3,0],[-2,0],[-3,0],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[-5,1],[-1,0],[-1,0],[-1,-1],[-1,-2],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-3],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-2,1],[-1,0],[-3,1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,1],[-2,1],[-3,1],[-2,2],[1,1],[0,1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,2],[0,2],[0,1],[0,1],[-2,1],[0,2],[-1,1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,1],[-1,0],[-1,1],[0,1],[-1,3],[0,1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[3,1],[0,1],[-1,1],[0,1],[-1,-1],[-1,1],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[-1,0],[-1,1],[0,2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,3],[0,1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[2,1],[0,1],[-2,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-2,0],[-1,0],[0,1],[-1,2],[-3,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,2],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,2],[1,1],[0,2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[1,-1],[-1,-1],[-1,0],[0,1],[-2,3],[0,1],[0,1],[1,2],[0,2],[0,1],[0,1],[1,1],[0,2],[-1,0],[-1,0],[-1,0],[1,2],[1,-1],[1,0],[0,1],[1,0],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,2],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,-1],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,1],[-1,0],[-1,0],[1,1],[1,0],[-2,1],[0,1],[1,2],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,1],[0,2],[2,3],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,1],[1,2],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,2],[1,0],[0,1],[1,-1],[1,1],[1,0],[1,0],[1,1],[-1,1],[0,1],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[1,1],[0,1],[-1,1],[1,1],[0,-1],[1,0],[2,1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,2],[-1,0],[0,1],[1,1],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[-2,2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,3],[-1,1],[-1,0],[-1,0],[-1,0],[-2,1],[0,1],[2,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[-2,0],[-1,1],[1,1],[-1,1],[-1,0],[-1,0],[1,2],[-1,0],[0,1],[-1,1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,2],[1,1],[1,0],[1,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[2,-1],[0,-1],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,1],[-1,-1],[0,-1],[0,-3],[0,-1],[1,0],[3,-1],[1,0],[3,0],[1,1],[1,0],[0,-1],[2,0],[2,0],[2,0],[1,1],[1,0],[0,1],[1,1],[0,1],[-1,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,2],[1,0],[1,-1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[1,1],[1,2],[1,0],[-1,2],[1,1],[1,0],[0,1],[-1,2],[1,0],[1,1],[0,2],[-1,0],[-1,2],[0,1],[-3,1],[0,1],[-1,1],[-1,1],[-1,1],[-2,2],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,0],[0,-1],[-1,0],[0,1],[-2,1],[0,1],[2,1],[2,-1],[-1,3],[-1,0],[-1,1],[-2,1],[0,1],[-1,1],[0,1],[0,1],[2,-1],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,-1],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,-1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,1],[1,0],[0,2],[1,0],[0,1],[2,0],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,2],[1,0],[2,0],[1,0],[0,1],[-1,0],[1,2],[0,1],[1,0],[1,0],[1,1],[1,-1],[-3,-7],[3,-2],[4,0],[2,3],[3,2],[1,2],[0,1],[1,0],[1,1],[1,0],[0,1],[2,3],[-1,1],[0,1],[1,1],[0,3],[0,1],[1,0],[0,1],[2,2],[3,2],[3,3],[2,1],[1,0],[3,1],[3,1],[2,0],[2,1],[4,1],[1,2],[0,1],[-1,-1],[-2,0],[0,1],[-3,1],[-2,1],[-1,1],[-1,2],[-1,0],[0,1],[-2,0],[0,2],[-2,0],[-3,0],[-1,0],[-1,1],[-1,1],[-1,1],[-4,4],[-1,1],[-1,1],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,1],[0,2],[0,1],[-2,2],[-2,0],[-1,1],[-2,-1],[-1,0],[-3,-1],[-6,0],[0,-1],[0,1],[-1,1],[-1,0],[-1,0],[-2,-1],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[0,-1],[-4,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-3,-1],[-1,0],[-1,0],[0,1],[-1,0],[-3,1],[-3,0],[-1,1],[-2,0],[-1,1],[0,1],[0,1],[-2,0],[0,1],[-2,1],[-2,1],[-5,2],[-1,0],[-2,1],[-4,0],[-1,0],[-1,0],[-1,0],[-3,1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,1],[0,1],[-1,0],[0,-1],[-2,0],[-1,1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[1,1],[-1,1],[-1,1],[-2,3],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[0,-3],[-1,0],[0,3],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,1],[-2,2],[-1,2],[0,1],[0,2],[-2,2],[-1,1],[0,1],[-1,1],[1,4],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,-2],[-1,0],[0,1],[0,1],[-1,1],[0,-1],[-1,0],[-1,0],[1,1],[-1,1],[0,1],[1,1],[1,0],[0,1],[-2,2],[0,1],[1,1],[1,1],[0,1],[-1,0],[-1,0],[-2,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[1,0],[1,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,2],[-1,0],[0,2],[1,2],[0,1],[-1,0],[0,1],[-1,0],[1,2],[1,5],[-1,1],[-1,3],[0,1],[-2,0],[-2,0],[-1,1],[-3,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,1],[-2,1],[-1,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[1,1],[0,1],[1,0],[1,0],[-1,1],[-1,1],[0,1],[1,2],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,2],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,1],[-1,1],[1,2],[1,1],[-1,2],[-1,1],[-3,3],[0,1],[-1,1],[0,2],[-2,1],[0,2],[-1,3],[0,1],[1,4],[2,3],[2,3],[3,1],[0,2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-2,1],[-3,1],[-3,1],[-3,2],[-2,0],[-3,0],[-2,1],[-2,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-2],[3,-5],[-5,-1],[-1,0],[-6,10],[-1,0],[-1,1],[-4,0],[-2,1],[-4,0],[-2,0],[-2,0],[-1,-1],[-1,1],[0,1],[-1,0],[2,0],[0,1],[-1,1],[-1,1],[-1,1],[-2,2],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-3,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,1],[-3,4],[0,-1],[-1,-1],[-1,0],[-1,0],[1,1],[0,2],[0,1],[-1,1],[-1,0],[-1,0],[-2,0],[-5,0],[-3,-1],[-1,-1],[-1,0],[0,-1],[0,-2],[1,0],[1,-1],[-2,-2],[0,-3],[0,-2],[-1,0],[-1,-2],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[2,-1],[5,0],[5,1],[3,0],[1,-4],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[-1,1],[0,-1],[-1,0],[-1,1],[0,-1],[0,-1],[0,-1],[2,0],[0,1],[1,1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[-1,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[6,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[-1,-1],[1,0],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[-1,-1],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[-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],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,-1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,-1],[-1,0],[-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],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,1],[1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[1,0],[-1,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,1],[1,-1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[-1,0],[1,0],[1,0],[1,1],[0,-1],[1,1],[-1,0],[0,1],[-1,1],[0,1],[1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,3],[0,1],[0,2],[-1,0],[0,1],[1,2],[0,1],[0,1],[1,2],[-1,1],[0,1],[1,0],[2,1],[0,1],[1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[-2,1],[-7,3],[-1,0],[-3,0],[-4,0],[-2,0],[-1,0],[0,-1],[1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[1,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,1],[1,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,1],[1,0],[0,1],[1,1],[0,1],[-1,0],[-1,0],[-2,1],[-1,1],[-2,3],[-1,0],[-1,0],[-3,-1],[-6,0],[-2,-1],[-4,0],[-3,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[1,-1],[1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[2,-3],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,0],[1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[1,0],[0,1],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-2,0],[-3,0],[-1,0],[0,-1],[1,-2],[1,-1],[1,0],[2,-2],[2,-3],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-3,-1],[0,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,3],[-1,1],[0,1],[-2,1],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[0,-1],[0,1],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-3,1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-3,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-3,1],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[-1,-1],[-2,0],[-4,-1],[-3,0],[-3,-1],[-2,0],[-8,-2],[-1,0],[-2,-1],[-6,-2],[-3,-1],[-2,-1],[-5,-2],[-3,-2],[-8,-5],[-3,-2],[-2,-1],[-4,-4],[-2,-2],[-1,-1],[-1,-2],[-1,-5],[-2,-2],[-3,-5],[-1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[2,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[2,0],[2,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[2,-3],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[1,-1],[2,-1],[0,-1],[-2,1],[-2,1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-3],[1,0],[0,-1],[8,1],[2,2],[8,7],[1,-1],[-1,0],[2,0],[6,1],[3,3],[1,0],[0,-1],[1,0],[-2,-1],[-1,-2],[-1,0],[-6,-1],[-2,-1],[-9,-7],[-5,-4],[-2,-1],[-1,0],[-1,0],[1,-1],[0,-1],[1,0],[4,0],[0,-1],[1,-1],[1,0],[1,-1],[-1,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-3,-1],[1,-2],[0,-1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[-1,-1],[1,-2],[2,-2],[0,-1],[0,-3],[0,-1],[1,0],[-1,-1],[-1,-2],[0,-1],[0,-3],[1,-3],[-1,0],[0,-1],[-1,0],[-1,0],[1,-2],[1,-1],[-1,-1],[1,-1],[-3,-4],[-1,-1],[-1,0],[-1,0],[0,-1],[-3,1],[-1,0],[-1,-1],[0,-1],[0,-3],[-1,-2],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[1,-1],[-1,-1],[0,-2],[0,-2],[-1,0],[-1,0],[-1,-2],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-3],[0,-2],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[-1,-2],[-1,-2],[-2,-5],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-3,0],[0,-1],[-2,0],[-2,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[1,1],[0,1],[1,0],[-1,0],[0,1],[-2,1],[0,1],[-1,0],[1,0],[1,0],[0,2],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[-1,1],[0,1],[1,0],[0,2],[1,1],[0,1],[0,1],[-2,0],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,1],[1,1],[0,2],[-1,1],[-1,1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-2,1],[-1,0],[-2,-1],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-2,0],[-2,1],[-1,0],[0,-1],[-1,0],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[1,1],[-1,1],[-1,1],[-1,0],[0,1],[0,3],[-1,0],[-1,2],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[0,2],[1,0],[1,1],[2,1],[2,1],[1,1],[0,1],[1,0],[1,0],[1,0],[2,1],[1,2],[-1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,2],[-1,0],[0,1],[-1,1],[1,1],[2,-1],[1,0],[0,2],[0,1],[-1,0],[0,1],[1,1],[1,2],[1,1],[-1,1],[1,2],[1,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[2,1],[-1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,2],[0,2],[-2,1],[0,1],[2,0],[0,1],[2,1],[1,1],[2,1],[0,1],[1,1],[1,0],[-1,2],[1,2],[0,3],[0,3],[-1,4],[-1,3],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[1,1],[0,1],[-3,1],[-1,-1],[-1,1],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[1,1],[0,1],[-1,0],[-2,1],[0,1],[-1,1],[-1,-1],[-1,0],[-2,0],[-1,0],[0,1],[1,1],[-1,1],[-1,0],[0,1],[1,0],[1,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-2,2],[-1,0],[-1,1],[-1,1],[0,-1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-3,-1],[-1,0],[-1,0],[-4,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-2,1],[-4,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-2,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-1,1],[-3,0],[-1,1],[-1,1],[-2,1],[-1,1],[-2,2],[-2,2],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-2],[-1,0],[0,-2],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,1],[0,2],[0,2],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[2,1],[1,0],[0,2],[0,1],[0,2],[0,1],[1,0],[2,-1],[1,0],[2,1],[3,1],[0,1],[0,2],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,1],[1,1],[0,2],[0,1],[1,1],[1,0],[1,1],[2,2],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,2],[-1,2],[-1,2],[0,1],[1,2],[1,0],[1,-1],[1,0],[0,1],[-1,1],[-2,1],[-1,1],[0,1],[1,0],[1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,2],[1,2],[-2,1],[-1,1],[-1,0],[-2,1],[-1,-1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[1,0],[0,1],[-3,2],[0,1],[-1,1],[1,0],[0,1],[1,0],[1,-1],[1,0],[2,-2],[2,-1],[2,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,1],[3,3],[3,2],[0,1],[0,2],[-1,1],[0,2],[0,1],[0,2],[0,2],[0,1],[1,0],[0,2],[1,0],[2,0],[0,1],[0,1],[1,0],[1,1],[1,0],[0,-1],[0,1],[1,0],[-1,0],[1,1],[1,-1],[2,0],[0,-1],[0,-1],[1,-1],[1,0],[2,-1],[-1,-1],[-1,1],[0,-1],[1,0],[3,-2],[1,0],[3,-1],[3,1],[2,0],[6,2],[1,0],[1,0],[0,1],[-1,1],[2,2],[-1,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[2,-1],[1,0],[1,0],[0,1],[-1,2],[-1,0],[0,1],[-1,0],[-1,2],[0,1],[1,0],[0,1],[-3,3],[-1,0],[1,0],[0,2],[0,1],[-1,1],[-1,0],[0,-1],[-1,1],[-2,1],[0,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[0,1],[1,1],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,-1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,1],[0,1],[3,1],[1,0],[-1,1],[-1,1],[-1,1],[0,1],[2,2],[2,1],[-1,1],[1,0],[1,0],[1,0],[1,1],[0,1],[1,1],[1,0],[1,-1],[1,0],[3,-2],[1,0],[1,1],[1,1],[-1,1],[1,2],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[3,0],[1,1],[-1,1],[1,0],[1,0],[1,2],[1,1],[0,2],[2,1],[1,0],[1,1],[0,1],[1,1],[-1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,0],[1,0],[0,-1],[0,-1],[2,0],[0,1],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[2,-1],[2,0],[1,0],[2,0],[3,0],[3,1],[6,2],[4,2],[7,3],[3,3],[2,2],[3,5],[2,2],[6,6],[1,2],[3,3],[0,1],[2,3],[2,3],[2,2],[1,1],[2,2],[3,2],[0,1],[3,2],[1,3],[1,1],[0,2],[0,2],[-1,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[-1,0],[-2,2],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,-1],[1,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[-2,1],[-2,2],[-1,0],[-1,1],[-2,0],[-1,1],[-1,1],[1,-1],[1,1],[-2,2],[2,0],[0,1],[1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[1,0],[0,2],[1,1],[2,-1],[1,1],[3,3],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,2],[2,1],[1,1],[2,0],[1,0],[0,1],[1,1],[1,3],[1,1],[0,2],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[1,0],[1,0],[-3,2],[-1,0],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[1,0],[2,-1],[2,1],[-1,1],[-2,1],[0,1],[0,1],[1,-1],[1,0],[0,1],[1,0],[2,0],[1,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,2],[1,1],[1,2],[-2,4],[-1,1],[0,1],[1,2],[-1,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,3],[1,1],[0,1],[1,0],[2,0],[1,0],[0,1],[-2,0],[-1,1],[-2,1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-3,0],[0,1],[-2,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,2],[-1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[1,1],[0,-1],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[2,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-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,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,-1],[-1,1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[1,0],[-1,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[-1,1],[-1,1],[-1,1],[1,0],[-1,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,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],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,1],[-1,0],[0,1],[-1,0],[1,1],[1,1],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[0,1],[1,1],[1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[1,0],[1,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,-1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[1,1],[1,0],[-1,1],[-1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[0,-1],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[0,-1],[-1,1],[-2,1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[1,1],[1,0],[-1,0],[1,0],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[-1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,1],[1,1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[-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,0],[1,-1],[0,-1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,-1],[1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[1,0],[0,1],[1,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[1,1],[1,0],[1,1],[0,-1],[1,0],[1,1],[1,-1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,1],[1,1],[-1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[1,0],[0,1],[1,0],[1,1],[0,-1],[1,1],[0,1],[1,0],[2,1],[-1,1],[1,1],[0,-1],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[-1,0],[1,0],[0,1],[1,1],[1,0],[-1,1],[-1,0],[0,-1],[-1,1],[0,1],[1,1],[2,0],[-1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[-1,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,1],[1,1],[0,1],[1,0],[1,0],[-1,1],[0,1],[1,-1],[0,1],[-1,1],[0,2],[1,1],[1,0],[1,0],[1,1],[-1,0],[-1,1],[-1,1],[1,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,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],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[-1,0],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,1],[1,0],[2,0],[1,0],[2,0],[0,1],[-1,1],[-1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[2,0],[1,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[-2,1],[0,1],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[-1,0],[-2,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[-1,1],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[1,1],[1,1],[0,1],[0,1],[-1,0],[-2,1],[-1,0],[1,0],[0,1],[0,1],[0,-1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[1,1],[1,0],[1,0],[2,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[2,1],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,1],[2,0],[1,-1],[1,0],[2,0],[0,1],[-1,0],[0,1],[1,0],[2,1],[0,1],[-1,1],[0,1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[-1,1],[0,1],[-1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[2,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,1],[-1,0],[2,2],[1,1],[1,1],[-1,1],[0,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[2,0],[2,-1],[0,-1],[1,0],[2,0],[1,-1],[2,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[2,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[3,0],[2,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,1],[2,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,1],[1,0],[1,1],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[0,1],[1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,0],[2,0],[0,1],[1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[1,1],[1,0],[2,0],[1,1],[1,1],[1,1],[2,-1],[2,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[-1,0],[-1,1],[-2,0],[0,1],[0,1],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[2,0],[1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[-2,0],[-1,0],[0,1],[1,0],[0,1],[2,0],[1,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[1,1],[2,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[1,1],[-1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[2,0],[1,-1],[0,-1],[1,0],[1,1],[0,1],[1,1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[2,0],[1,-1],[1,0],[0,-1],[1,-1],[2,-3],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,0],[1,0],[2,0],[1,-1],[1,0],[2,0],[3,-4],[3,-3],[0,-1],[-1,0],[-1,0],[0,1],[-5,5],[0,1],[-1,0],[-1,0],[-1,0],[-8,1],[0,-1],[0,-1],[2,0],[-1,-4],[5,-1],[-1,0],[0,-2],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,-1],[1,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,-1],[1,0],[0,1],[2,2],[2,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[1,-1],[2,0],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[2,0],[0,1],[1,0],[0,1],[1,0],[2,0],[1,1],[1,0],[2,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,1],[2,3],[2,0],[1,0],[2,1],[1,0],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[2,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[-1,-1],[1,0],[1,-1],[1,0],[1,-1],[0,1],[1,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,-1],[1,1],[-1,1],[0,1],[0,1],[1,1],[0,-1],[0,1],[1,0],[1,-1],[1,1],[0,-1],[1,0],[1,1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,1],[-1,0],[1,0],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,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],[0,1],[1,-1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,-1],[1,1],[1,0],[1,0],[1,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[1,0],[1,0],[2,1],[1,0],[2,0],[1,0],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,3],[1,2],[0,3],[-2,4],[-2,1],[-3,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[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,1],[0,1],[0,1],[2,3],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[1,1],[1,1],[0,1],[0,1],[2,1],[1,0],[1,0],[1,0],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-4,1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[-1,-1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,-1],[-2,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[2,0],[1,0],[2,0],[1,1],[1,-1],[-1,0],[-1,0],[-2,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[7,0],[9,0],[6,3],[0,-1],[-5,-3],[-22,1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,1],[-2,3],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[1,1],[1,1],[0,1],[1,1],[1,1],[1,0],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[-2,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[-1,-1],[-1,0],[-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],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,-1],[-1,0],[0,1],[1,1],[1,1],[1,0],[2,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[1,1],[0,1],[1,1],[1,0],[1,-1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[1,1],[-1,1],[-1,1],[1,0],[0,1],[1,0],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,1],[-2,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[-2,1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,0],[0,1],[0,1],[-2,1],[-1,0],[0,1],[-1,1],[1,0],[1,1],[1,1],[1,0],[0,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,1],[-2,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[1,1],[1,0],[2,1],[1,1],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-2,1],[-1,0],[-1,1],[1,0],[1,0],[1,0],[1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[0,1],[1,0],[2,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[2,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[2,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,-1],[2,0],[0,1],[1,0],[0,1],[1,0],[1,0],[2,0],[1,1],[1,1],[1,-1],[1,0],[0,-1],[1,-1],[2,0],[0,-1],[2,-1],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[0,1],[2,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[1,1],[1,0],[1,0],[2,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,1],[2,0],[1,0],[1,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[2,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[2,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[1,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[1,1],[1,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[-1,1],[-2,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[-1,1],[-1,0],[-1,1],[0,1],[1,0],[1,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[2,0],[1,-1],[1,1],[0,1],[1,0],[1,-1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,-1],[2,0],[1,0],[1,0],[2,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[2,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,-1],[-1,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[-1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[1,-1],[-1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[-1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[-1,-1],[1,0],[2,-1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[0,1],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[1,0],[2,1],[1,0],[0,1],[0,1],[1,1],[0,-1],[1,0],[2,0],[1,-1],[1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[1,0],[1,0],[0,1],[-1,1],[1,0],[1,-1],[2,-1],[1,0],[1,0],[2,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[0,-1],[1,0],[-1,1],[0,1],[-2,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-2,0],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[1,0],[1,1],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,1],[1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[1,1],[1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[2,0],[1,-1],[1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,1],[2,-1],[1,0],[-1,-1],[1,0],[1,-1],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,1],[-1,1],[-2,1],[0,1],[-1,0],[0,1],[-1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[2,-1],[0,1],[0,1],[1,0],[1,0],[1,-1],[1,0],[-1,-1],[2,0],[1,-1],[-1,0],[-1,-1],[-1,-1],[1,-1],[2,-1],[1,0],[0,-1],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,1],[0,1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,1],[1,0],[0,1],[-1,0],[-1,1],[1,0],[1,0],[1,1],[1,1],[1,1],[1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,1],[1,0],[0,1],[-1,0],[-1,1],[1,0],[2,0],[1,0],[1,-1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[-1,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[2,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[2,0],[1,0],[0,-1],[1,0],[-1,0],[1,-1],[1,0],[1,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[2,0],[0,1],[-1,1],[1,1],[1,0],[0,1],[1,0],[1,0],[2,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[-1,-1],[1,0],[1,-1],[1,-1],[-1,0],[1,0],[0,-1],[0,1],[1,0],[1,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[2,0],[1,0],[0,-1],[2,0],[2,0],[1,0],[2,0],[2,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,1],[1,0],[1,-1],[1,0],[-2,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[-1,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,1],[1,-1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,1],[2,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[1,0],[1,1],[2,0],[1,1],[1,0],[0,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,1],[0,1],[1,0],[1,1],[1,1],[1,1],[0,1],[-1,1],[-1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,1],[1,0],[1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,1],[1,-1],[0,-1],[1,0],[1,1],[1,0],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[-1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,1],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[2,0],[1,0],[2,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[2,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-3,1],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[2,0],[1,0],[0,-1],[0,-1],[-1,0],[-2,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[1,1],[1,1],[1,1],[1,0],[-1,0],[-1,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[0,-1],[1,0],[1,0],[1,1],[0,1],[2,0],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[2,0],[1,0],[1,0],[2,1],[1,1],[1,1],[1,0],[0,-1],[1,1],[1,0],[1,-1],[-1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,1],[1,1],[-1,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[1,0],[1,1],[-1,0],[1,0],[2,0],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[1,0],[1,0],[2,1],[1,-1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[-1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,1],[1,0],[0,-1],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,1],[0,-1],[1,1],[1,-1],[0,-1],[1,1],[1,0],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,1],[1,0],[0,1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,1],[1,1],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[2,0],[0,1],[1,0],[2,1],[1,0],[0,1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[2,1],[1,0],[1,1],[1,0],[2,0],[1,1],[1,0],[1,0],[2,0],[1,1],[2,0],[1,0],[2,0],[1,1],[0,1],[2,0],[1,1],[0,1],[-1,-1],[-2,0],[-1,0],[1,1],[0,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[2,0],[2,0],[1,0],[1,0],[1,0],[0,1],[-1,1],[1,1],[0,1],[1,1],[1,1],[1,0],[1,1],[2,0],[1,1],[1,0],[1,1],[1,0],[2,0],[1,1],[2,0],[1,1],[0,1],[1,0],[1,1],[1,1],[-1,0],[-1,1],[-1,1],[1,1],[1,0],[1,1],[1,1],[2,1],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[-2,0],[-1,0],[-1,0],[1,1],[1,1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[-1,1],[0,1],[1,0],[1,0],[-1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,-1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,1],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,1],[2,0],[1,-1],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,1],[1,0],[1,1],[0,-1],[0,1],[0,-1],[1,1],[1,0],[1,0],[1,0],[1,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,1],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[2,0],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,0],[2,0],[1,1],[2,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[0,-1],[1,1],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-2,0],[0,1],[0,1],[1,0],[2,1],[-1,0],[-1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[-1,0],[0,1],[2,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[2,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],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[1,0],[0,1],[1,0],[-1,0],[1,1],[1,0],[2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[1,1],[-1,0],[-1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,-1],[0,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[1,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,1],[-1,0],[-1,0],[1,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,-1],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[1,0],[1,-1],[1,0],[1,-1],[0,1],[1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,1],[-1,0],[-1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,1],[1,-1],[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],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[1,-1],[1,-1],[-1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[2,0],[2,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[-2,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-2,0],[-1,1],[-2,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[-1,1],[1,0],[-1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,1],[1,0],[-1,0],[1,0],[1,0],[1,1],[0,-1],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[0,1],[-1,1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[1,1],[0,-1],[1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,-1],[1,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,1],[1,1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,0],[-1,-1],[0,-1],[1,1],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[1,1],[-1,0],[0,1],[1,0],[1,1],[1,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,-1],[0,-1],[-1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[-1,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[2,1],[0,1],[1,-1],[1,1],[1,0],[0,1],[1,0],[2,0],[1,-1],[0,-1],[1,0],[1,0],[-1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[-1,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,-1],[0,1],[-1,0],[1,1],[-1,1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,1],[2,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[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],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,-1],[0,1],[0,-1],[1,-1],[0,-1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,-1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,1],[1,1],[0,1],[0,1],[-2,1],[-1,-1],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[2,0],[2,0],[1,0],[2,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[2,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[-1,-1],[8,0],[17,0],[0,2],[3,3],[8,13],[1,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[0,1],[1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-2,-1],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[-1,0],[-2,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[1,1],[1,0],[1,1],[1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[-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,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[1,1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[-1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[2,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,1],[-1,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,1],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[1,1],[-1,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[1,0],[0,1],[0,1],[1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-2,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-4,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[2,0],[2,0],[3,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[0,1],[0,1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[1,1],[0,1],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[0,-1],[-1,-1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[1,1],[0,1],[-1,0],[-1,1],[-2,0],[0,-1],[-1,-1],[-1,0],[-1,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[-2,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,-1],[2,0],[1,-1],[1,-1],[0,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[1,0],[-1,0],[-1,1],[1,0],[0,1],[-1,1],[1,1],[2,0],[0,1],[1,0],[1,0],[0,1],[-1,1],[1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,1],[0,1],[-1,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[2,0],[2,0],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1],[-1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,-1],[1,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[-1,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[2,0],[1,0],[2,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,-1],[0,1],[1,1],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[-1,1],[0,1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[2,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[2,-1],[2,0],[2,0],[1,0],[1,0],[0,-1],[2,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[1,0],[2,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,-1],[1,0],[0,-1],[2,0],[1,0],[2,0],[1,-1],[2,0],[1,0],[0,1],[2,0],[1,0],[0,-1],[-1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,1],[0,-1],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[-1,0],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,1],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[1,1],[1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[1,0],[1,0],[-1,1],[-1,0],[1,0],[0,1],[-1,1],[0,1],[-1,1],[1,0],[1,0],[0,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[1,0],[1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,-1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,0],[1,-1],[0,1],[1,1],[0,1],[-1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[1,0],[2,0],[1,0],[1,0],[2,-1],[0,-1],[2,-1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,1],[0,-1],[1,-1],[1,0],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,1],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[1,1],[1,0],[1,0],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-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,0],[-1,0],[-1,1],[-1,1],[-1,0],[1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,-1],[-1,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,1],[1,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[-1,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,1],[1,0],[1,0],[1,0],[0,1],[0,-1],[2,0],[0,1],[1,0],[1,1],[0,1],[1,0],[1,0],[1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,1],[-2,0],[-1,-1],[-1,0],[-1,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[1,0],[0,1],[-1,0],[-1,1],[1,1],[1,0],[-1,1],[-1,0],[1,1],[0,1],[1,0],[-1,0],[0,1],[1,1],[0,1],[1,0],[-1,1],[1,0],[0,1],[2,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[1,1],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[-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,0],[0,1],[1,0],[0,1],[-1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[1,1],[1,0],[1,1],[1,0],[-1,0],[1,1],[1,0],[1,1],[1,0],[1,-1],[1,1],[0,-1],[0,-1],[2,1],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[-1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,1],[1,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[-1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,1],[-1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[2,1],[1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,1],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[2,0],[0,1],[2,0],[1,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[-1,0],[1,0],[0,1],[1,0],[0,-1],[-1,-1],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[1,1],[1,1],[1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[1,1],[0,1],[-1,1],[1,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[1,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[-1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,-1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,-1],[0,1],[-1,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[1,1],[1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[-1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,0],[-1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[1,0],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[-1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[-1,-2],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[2,-2],[1,-1],[1,0],[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],[0,1],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[-1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,1],[1,-1],[0,1],[1,0],[2,0],[1,0],[2,0],[0,1],[0,1],[1,1],[0,1],[2,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[-1,-1],[1,0],[0,1],[1,0],[0,1],[2,1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[2,0],[2,1],[1,1],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[-1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[-1,1],[1,0],[0,1],[1,1],[1,0],[2,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[0,1],[1,-1],[1,0],[0,-1],[1,-1],[0,1],[0,1],[1,0],[0,1],[1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,-1],[1,-2],[0,-1],[1,-1],[1,0],[0,1],[1,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[1,0],[0,1],[1,0],[0,1],[2,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[4,-4],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[0,1],[1,0],[2,0],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,0],[3,0],[1,0],[1,-1],[4,-2],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[2,-1],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,1],[1,0],[2,0],[0,1],[2,0],[1,-1],[1,0],[1,-1],[1,0],[1,1],[2,-1],[1,0],[1,0],[3,1],[2,1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,1],[1,0],[1,1],[1,0],[2,0],[0,1],[1,0],[1,0],[0,1],[1,0],[3,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[3,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[2,0],[1,0],[-1,1],[-1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[1,0],[2,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[2,0],[0,-1],[1,0],[0,-1],[0,1],[1,1],[-1,0],[0,1],[1,0],[1,-1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[-1,0],[0,-1],[1,0],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[7,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,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],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[0,1],[2,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[2,0],[1,1],[2,0],[1,0],[1,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[2,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,1],[2,1],[1,0],[2,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[2,1],[1,0],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[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,1],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[2,1],[3,1],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[-1,0],[1,1],[1,0],[2,1],[2,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[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,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[-2,0],[-1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[-1,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[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,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[-1,1],[0,1],[1,1],[-1,1],[0,1],[-1,0],[0,1],[1,1],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[0,1],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[-1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[-1,-1],[0,-1],[-1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[-1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[1,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,-1],[1,0],[1,0],[-1,1],[0,1],[1,0],[-1,0],[1,1],[1,0],[1,1],[1,0],[2,0],[0,1],[1,0],[2,0],[0,1],[1,-1],[1,1],[1,0],[1,0],[1,0],[1,0],[3,-1],[-1,2],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,1],[-1,0],[0,1],[-1,0],[1,1],[-1,1],[-1,0],[0,1],[1,1],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[3,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[1,1],[-1,0],[-1,1],[0,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[-4,-2],[1,0],[-3,-1],[-5,-3],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[2,0],[0,-1],[1,0],[1,0],[2,1],[1,0],[1,0],[0,1],[2,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[1,-1],[1,0],[1,0],[0,1],[2,0],[1,0],[0,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,0],[1,1],[1,1],[0,-1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[-1,0],[-1,-1],[-1,0],[1,-1],[0,-1],[1,0],[1,0],[-1,-1],[-1,0],[-1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,1],[0,-1],[1,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[2,0],[1,0],[3,2],[1,0],[1,0],[2,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[1,2],[1,0],[0,-1],[1,1],[1,0],[2,1],[1,0],[1,1],[1,0],[2,0],[0,1],[1,-1],[1,0],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,0],[1,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[0,-1],[1,0],[1,1],[1,0],[0,-1],[-1,0],[1,0],[1,0],[1,1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[-1,-1],[1,0],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,1],[0,2],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[1,0],[0,1],[1,1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[2,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[-4,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,-1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[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,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[2,0],[1,0],[1,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],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[2,1],[2,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,1],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,1],[0,1],[1,0],[1,1],[2,-1],[1,1],[2,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[2,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,1],[4,3],[2,2],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[-1,0],[-1,-1],[1,-1],[1,1],[1,1],[2,0],[1,1],[1,1],[1,1],[1,-1],[0,-1],[-1,-1],[-1,0],[1,0],[1,0],[3,2],[2,2],[2,0],[1,0],[0,-1],[2,-1],[1,0],[1,0],[1,2],[-1,1],[0,1],[0,1],[2,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,-1],[1,0],[1,0],[3,0],[2,0],[3,1],[2,0],[6,3],[2,1],[2,1],[3,2],[2,1],[2,1],[2,2],[2,1],[0,1],[0,1],[-1,0],[-1,2],[1,2],[-1,1],[-1,2],[-1,0],[-1,0],[0,1],[2,2],[1,2],[1,0],[1,-1],[0,1],[1,0],[0,1],[-1,0],[0,1],[2,1],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,-1],[1,1],[1,1],[0,-1],[2,0],[-1,-1],[1,1],[2,0],[0,1],[1,0],[1,1],[0,-1],[1,0],[1,1],[-1,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-2,0],[0,1],[1,1],[-1,1],[1,1],[1,0],[1,1],[1,0],[2,0],[1,0],[-1,1],[-1,0],[0,1],[1,0],[1,-1],[2,1],[-1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,1],[1,1],[-1,1],[-1,1],[-2,0],[-1,0],[-1,1],[-1,1],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[1,0],[1,1],[1,1],[-1,1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,1],[0,1],[1,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[-1,1],[1,1],[1,0],[1,1],[1,1],[0,1],[1,1],[0,1],[2,0],[-1,1],[-1,0],[1,1],[1,0],[1,1],[0,1],[0,1],[1,0],[1,1],[1,0],[-1,1],[1,1],[1,0],[2,0],[1,1],[0,1],[0,1],[1,0],[1,1],[1,1],[1,0],[1,1],[-1,0],[1,1],[-1,0],[1,1],[2,0],[0,1],[1,1],[-1,1],[-2,-1],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[0,1],[1,0],[-1,0],[-2,1],[1,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[1,1],[0,1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,1],[1,1],[-2,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,-1],[1,1],[1,1],[1,-1],[1,-1],[0,1],[0,1],[-1,1],[0,1],[1,1],[1,0],[-1,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,1],[1,1],[-1,1],[-1,0],[-1,0],[0,1],[1,1],[-1,1],[1,0],[1,0],[-1,1],[1,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,-1],[-1,-1],[1,-1],[1,0],[1,1],[1,0],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[1,1],[1,1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[1,1],[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,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[-1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[1,0],[1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[4061,6197],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,1],[1,0],[1,1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[-1,1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[-1,1],[0,1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,1],[1,0],[1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,1],[-1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[0,1],[2,-1],[2,-1],[1,1],[-1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[-2,1],[0,1],[0,1],[-1,0],[1,1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,-1],[1,0],[-1,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[3,-1],[1,0],[1,1],[2,-1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,1],[1,0],[2,0],[0,-1],[1,0],[0,-1],[-1,1],[-1,0],[0,-1],[2,0],[1,-1],[1,-1],[1,0],[-1,-1],[2,0],[1,1],[1,-1],[-1,0],[0,-1],[1,0],[1,-1],[2,1],[1,0],[2,0],[0,-1],[-1,-1],[1,-1],[2,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[2,-1],[2,-1],[1,-1],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,1],[1,-1],[1,-1],[1,0],[1,0],[-1,0],[2,0],[0,1],[2,0],[1,0],[0,1],[2,0],[2,-1],[1,-1],[1,0],[1,-1],[2,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[2,0],[2,0],[1,0],[2,0],[1,-1],[2,0],[0,-1],[-1,-1],[1,-1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,-1],[1,-1],[2,0],[0,-1],[0,-1],[2,0],[1,-1],[1,0],[0,-1],[1,0],[-1,-1],[2,0],[0,-1],[2,-1],[0,-1],[0,-1],[2,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[-1,0],[-1,-1],[0,-1],[1,0],[2,-1],[0,-1],[1,-1],[-1,-1],[-1,-1],[1,-1],[2,0],[1,-1],[1,0],[0,-1],[-2,-1],[2,0],[0,-1],[1,-1],[2,1],[1,0],[2,1],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[2,1],[1,0],[2,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[1,-1],[0,-1],[1,0],[1,0],[1,1],[2,1],[1,-1],[0,-1],[-1,-1],[0,-1],[2,0],[1,0],[2,-1],[1,1],[2,0],[1,0],[1,0],[-2,1],[1,1],[-1,0],[2,0],[1,0],[1,-1],[0,-1],[1,0],[2,0],[1,1],[1,0],[2,1],[0,-1],[1,0],[2,1],[1,0],[0,1],[-1,0],[2,1],[0,-1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,1],[2,1],[1,0],[1,1],[1,1],[2,2],[1,0],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,-1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[0,-1],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,-1],[-1,-1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[1,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[-1,-1],[0,1],[-1,1],[0,2],[1,0],[1,0],[0,1],[0,1],[1,0],[2,0],[0,1],[1,1],[-1,0],[-1,1],[0,1],[0,1],[-2,0],[0,1],[-1,1],[1,0],[2,0],[1,0],[2,-1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[2,-1],[1,0],[1,-1],[1,-1],[2,0],[1,0],[2,-1],[1,0],[2,0],[2,0],[1,0],[1,0],[0,1],[1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,0],[-2,1],[-1,0],[1,1],[-1,1],[-1,0],[1,1],[0,2],[1,1],[1,1],[2,-1],[1,0],[1,-1],[-1,1],[-1,1],[1,0],[1,1],[2,0],[1,0],[2,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,-1],[2,0],[1,0],[-1,1],[-2,0],[-1,1],[2,0],[2,0],[3,-1],[-1,1],[-1,0],[2,0],[1,0],[0,-1],[2,-1],[-1,0],[1,0],[1,-1],[2,0],[1,-1],[-1,0],[2,0],[1,-1],[1,0],[-1,1],[1,0],[1,0],[2,-1],[1,0],[0,1],[-1,1],[-1,0],[-1,1],[1,0],[2,0],[1,-1],[1,1],[-1,1],[-2,0],[-1,1],[-1,0],[-2,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[1,0],[2,0],[1,-1],[2,0],[1,-1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[1,-1],[0,-1],[1,-1],[2,0],[2,1],[0,-1],[1,0],[2,-1],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[1,0],[1,-1],[0,-1],[0,1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[2,0],[1,-1],[-1,0],[2,-1],[1,1],[2,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[2,-1],[1,0],[-1,0],[2,1],[1,0],[2,0],[2,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[2,0],[0,-1],[-2,1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[1,0],[2,-1],[1,0],[0,-1],[-2,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[1,-1],[-1,-1],[0,-1],[-2,-1],[-1,0],[1,0],[-1,-1],[0,1],[-2,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-2],[1,0],[1,0],[1,-1],[-1,-1],[0,-1],[1,0],[1,-1],[1,-1],[2,0],[1,-1],[1,-1],[1,-1],[2,0],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-2],[1,-1],[1,-1],[0,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[2,0],[1,-1],[1,0],[2,-1],[1,0],[2,-1],[2,0],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[1,0],[2,-1],[1,0],[2,0],[3,-1],[1,-1],[2,0],[1,-1],[1,0],[2,0],[1,-1],[2,0],[1,-1],[1,0],[2,-1],[2,0],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[1,0],[2,-1],[1,0],[2,0],[2,-1],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[-1,1],[-2,0],[-1,1],[-1,0],[-23,8],[-23,7],[-1,-1],[-2,1],[-1,0],[1,1],[-2,0],[1,1],[-1,0],[0,-1],[-1,-1],[-1,1],[2,0],[0,1],[-8,2],[-1,0],[-1,0],[-1,-1],[1,0],[-1,-1],[-1,0],[0,-1],[1,-1],[1,0],[-1,-1],[3,0],[-1,-1],[8,-2],[-7,2],[0,-1],[6,-2],[-6,2],[-1,-1],[6,-2],[-6,2],[-1,-1],[6,-2],[-6,2],[-1,-1],[-1,0],[-1,-2],[2,-3],[2,0],[1,-1],[2,0],[1,0],[1,-1],[0,-1],[-1,0],[-2,-1],[-1,1],[-2,0],[-1,0],[-2,1],[-1,0],[-1,1],[1,1],[1,0],[-2,2],[-1,0],[-1,0],[-1,0],[-1,0],[-4,2],[-1,0],[1,0],[-4,1],[-1,1],[-1,0],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-3],[-2,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,2],[-8,0],[5,0],[0,1],[2,0],[-3,4],[-12,1],[0,-5],[6,0],[0,-1],[-6,0],[-1,-4],[16,0],[0,-2],[-29,1],[-3,-1],[0,-8],[1,0],[0,-1],[13,1],[0,-1],[1,0],[0,-3],[-1,0],[-25,-1],[9,-17],[1,0],[21,1],[5,13],[1,1],[1,0],[0,1],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[2,-1],[1,2],[1,0],[0,1],[4,1],[2,0],[1,1],[28,-9],[-4,-6],[-3,1],[0,-1],[-24,8],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[31,-17],[-1,0],[0,1],[-1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,1],[-1,1],[1,1],[2,-2],[1,0],[0,-1],[-1,0],[1,1],[-1,0],[-1,0],[-1,-1],[2,-1],[1,0],[1,-1],[1,-1],[0,1],[0,-1],[2,0],[0,-1],[1,0],[1,-1],[2,1],[-1,0],[1,1],[2,-2],[1,0],[-1,-1],[0,1],[-1,0],[-2,-1],[2,-1],[1,-2],[0,1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[12,5],[-1,1],[1,0],[1,0],[2,1],[2,1],[1,1],[3,1],[-1,0],[2,1],[0,-1],[3,1],[-1,1],[1,0],[2,1],[1,0],[2,1],[1,1],[1,-1],[-1,0],[-1,0],[-2,-1],[1,0],[-1,0],[-3,-1],[1,0],[-1,-1],[-3,-1],[1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[-12,-5],[0,-1],[1,0],[1,0],[1,0],[1,0],[8,4],[1,0],[1,0],[1,0],[1,0],[12,-10],[1,-1],[1,0],[0,-1],[1,-13],[0,-1],[-1,0],[-1,2],[-4,-1],[-2,0],[4,1],[-1,12],[-11,8],[-6,-2],[4,-3],[-1,-1],[-4,3],[-5,-2],[4,-3],[-1,-1],[-4,3],[-5,-2],[0,-1],[-3,-1],[0,-1],[1,0],[1,-2],[-2,0],[0,-1],[-2,0],[0,-2],[2,1],[2,-3],[-2,0],[1,-2],[-6,-2],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,1],[2,0],[2,0],[2,0],[1,-1],[1,0],[1,0],[7,1],[2,1],[1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-5,-2],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-2],[1,0],[1,0],[1,0],[1,0],[1,1],[0,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[2,0],[-2,0],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-2,0],[-1,0],[0,-1],[-1,1],[-1,0],[1,-1],[-1,1],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[1,0],[0,-1],[-1,1],[-1,-1],[-1,-1],[0,-1],[0,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[2,-1],[0,1],[0,-1],[1,0],[1,-1],[4,1]],[[4470,6120],[6,2],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[2,1],[1,0],[2,0],[1,0],[2,0],[2,-1],[1,0],[2,0],[2,-1],[1,-1],[1,0],[2,-1],[2,0],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[2,0],[2,0],[1,0],[2,-1],[2,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[2,0],[1,1],[2,0],[1,1],[1,0],[1,1],[1,1],[0,1],[0,2],[-1,1],[-1,2],[0,1],[2,-3],[1,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[-1,0],[0,1],[1,1],[1,1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[2,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[2,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,1],[0,-1],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,-1],[1,1],[1,-1],[1,0],[0,-1],[0,-1],[1,1],[1,0],[1,-1],[1,-1],[1,-1],[1,1],[0,-1],[0,-1],[1,0],[2,0],[2,0],[1,0],[2,0],[1,1],[2,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[2,1],[1,0],[2,0],[2,0],[1,1],[2,0],[1,0],[1,1],[0,1],[-1,1],[1,1],[1,0],[2,0],[-1,1],[1,0],[2,-1],[1,1],[1,0],[2,-1],[1,0],[-1,1],[2,0],[1,0],[1,-1],[2,0],[2,1],[1,0],[2,0],[1,1],[2,0],[0,1],[2,0],[0,1],[1,1],[1,0],[1,1],[1,0],[1,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[2,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,1],[-1,0],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,1],[1,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,-1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[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,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,1],[0,-1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[-1,0],[0,1],[1,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[1,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,1],[1,1],[1,1],[1,0],[1,0],[-1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[1,0],[1,1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[-3,0],[-1,1],[0,1],[1,0],[0,-1],[3,-1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[1,0],[-1,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[1,1],[1,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,-1],[1,0],[-1,0],[1,-1],[0,-1],[-1,0],[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],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[1,1],[1,0],[1,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,1],[1,0],[0,-1],[1,0],[-1,1],[0,1],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[1,-1],[1,1],[1,-1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,-1],[0,-1],[-1,0],[1,-1],[1,0],[1,1],[0,-1],[1,0],[1,1],[1,-1],[0,-1],[-1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,1],[1,1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[-1,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[-1,1],[0,1],[1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,-1],[0,1],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,-1],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[-1,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,1],[1,-1],[1,0],[0,-1],[1,1],[1,0],[-1,-1],[1,-1],[0,1],[1,1],[1,1],[1,-1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,1],[1,-1],[1,0],[0,-1],[0,-1],[1,1],[0,-1],[0,1],[1,0],[0,-1],[1,1],[1,0],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[1,-1],[0,1],[1,1],[0,1],[1,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,1],[-1,0],[-1,1],[1,1],[0,1],[1,0],[1,1],[1,-1],[1,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,-1],[1,1],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[-1,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,1],[1,1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[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,-1],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-3,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[-1,0],[1,-1],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,-1],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,1],[0,1],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,-1],[0,-1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0],[1,-1],[0,1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[1,0],[1,1],[1,-1],[0,-1],[-1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,1],[0,1],[1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,-1],[1,0],[1,0],[-1,-1],[0,-1],[1,0],[1,0],[0,1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[2,0],[1,2],[6,-2],[-1,-2],[6,-2],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-13,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-5,2],[1,1],[-5,2],[-4,-6],[-3,0],[2,3],[-7,2],[-1,-1],[-1,0],[-1,-4],[1,-5],[6,1],[-6,-1],[0,-1],[7,1],[-7,-1],[0,-1],[0,-1],[7,1],[-6,-1],[0,-1],[6,1],[-6,-1],[1,-2],[6,2],[1,0],[1,0],[-1,-1],[-1,0],[-6,-1],[1,-1],[2,0],[-2,0],[-1,-2],[-1,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[-1,0],[1,1],[1,1],[0,1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-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,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,-2],[1,0],[-1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[-1,-1],[1,0],[-1,0],[0,-1],[-5,-1],[1,-1],[4,2],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[-1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[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,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,1],[0,-1],[1,0],[1,1],[1,1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[-1,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-2],[2,-1],[1,0],[1,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[-1,0],[0,-4],[0,-1],[1,0],[2,0],[3,-1],[3,-1],[5,-1],[1,0],[2,1],[1,0],[1,0],[2,0],[1,0],[5,0],[3,1],[0,-1],[1,0],[2,-1],[1,0],[0,-1],[0,-2],[0,-1],[1,0],[2,-1],[1,0],[2,0],[4,0],[1,-1],[1,-1],[3,-2],[3,-1],[2,-1],[0,-1],[2,-2],[0,-1],[0,-3],[1,-1],[5,-2],[1,0],[3,0],[1,-1],[4,1],[4,1],[0,1],[4,4],[1,1],[0,2],[-1,1],[-2,2],[0,1],[0,1],[1,2],[0,2],[0,1],[-2,4],[-2,0],[0,1],[-1,0],[-2,1],[-3,1],[-1,0],[-2,1],[-1,0],[-1,1],[0,1],[-1,2],[0,1],[-2,1],[-1,1],[-1,1],[-1,2],[-1,2],[0,1],[-1,0],[-3,1],[-1,2],[-1,2],[0,2],[0,1],[-1,0],[1,1],[1,1],[0,1],[2,1],[1,0],[2,2],[1,0],[2,-1],[1,0],[1,1],[2,0],[2,-1],[2,-1],[1,-2],[1,-1],[1,-2],[3,-2],[1,-2],[2,-1],[2,0],[5,-1],[3,0],[1,0],[5,-2],[3,-1],[4,-1],[0,-1],[3,-2],[2,0],[2,-1],[3,0],[1,0],[0,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,2],[-2,1],[-1,1],[-1,1],[0,1],[0,3],[-1,2],[-2,3],[-1,2],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[-1,1],[-1,2],[-1,0],[-1,1],[-1,1],[-1,1],[-2,2],[-1,0],[-1,0],[-2,2],[-1,1],[-2,2],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[1,1],[1,3],[0,2],[0,2],[-1,1],[0,1],[0,1],[-1,1],[-2,2],[-3,3],[-2,1],[-2,1],[-2,2],[-2,1],[-1,0],[-5,0],[-1,0],[-4,-1],[-1,-1],[-1,0],[-1,-2],[-6,1],[1,0],[5,-1],[1,3],[-7,1],[-1,-2],[0,-1],[-1,0],[1,3],[-1,2],[-2,0],[-2,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,2],[-1,0],[-2,1],[0,1],[-1,1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[1,2],[0,1],[1,1],[0,1],[1,0],[1,1],[1,0],[-1,-1],[1,0],[0,1],[1,-1],[0,1],[1,-1],[1,0],[1,0],[0,1],[1,0],[0,-2],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[2,2],[12,5],[7,4],[3,3],[3,2],[3,4],[3,3],[2,2],[0,2],[1,3],[1,1],[0,1],[0,1],[-1,1],[0,1],[-2,0],[0,1],[0,1],[-1,0],[-1,0],[-2,-1],[-1,1],[-1,0],[-2,1],[0,1],[-1,2],[0,2],[0,1],[-2,3],[-1,1],[-1,0],[0,1],[-2,0],[-2,0],[-1,0],[-4,1],[-4,0],[-1,0],[-2,0],[-3,0],[-2,1],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[2,0],[1,0],[0,1],[-2,0],[-1,0],[0,1],[1,2],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,1],[1,0],[0,2],[0,1],[1,0],[-1,0],[-1,0],[-1,2],[0,1],[0,1],[0,1],[1,0],[-1,1],[1,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,3],[2,2],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,1],[0,2],[0,2],[0,1],[-3,2],[-1,1],[-1,0],[-1,-1],[-1,-1],[-2,0],[-2,-1],[-2,0],[-1,0],[0,1],[-1,2],[1,2],[1,0],[1,0],[0,1],[0,2],[-1,2],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[1,1],[0,-1],[1,0],[1,0],[0,1],[-1,0],[-1,1],[-3,1],[-1,0],[0,1],[1,0],[-1,0],[1,1],[-1,0],[-1,0],[0,1],[1,1],[-1,1],[1,1],[-1,0],[-1,0],[-1,2],[1,0],[-1,0],[-1,1],[1,0],[1,1],[-1,0],[0,1],[0,1],[-1,-1],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,2],[-1,0],[-1,0],[0,1],[-4,1],[-3,1],[-1,0],[0,1],[-1,2],[0,1],[1,0],[2,0],[3,0],[2,0],[3,0],[1,0],[1,0],[0,3],[1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,1],[-1,0],[3,0],[1,0],[-2,0],[0,1],[0,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[2,0],[2,0],[1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-2,0],[-1,1],[1,1],[1,1],[0,-1],[2,2],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,1],[0,-1],[1,1],[0,-1],[1,1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[3,2],[0,-1],[-2,-1],[-1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[1,0],[-1,0],[0,1],[-1,0],[1,2],[1,1],[1,1],[1,-1],[1,0],[1,0],[1,1],[0,1],[1,3],[1,2],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[2,2],[1,1],[2,1],[0,1],[0,1],[2,3],[1,3],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,4],[0,3],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[1,2],[1,1],[1,0],[1,1],[1,-1],[2,2],[1,0],[2,1],[1,0],[0,1],[1,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,-1],[1,0],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[0,1],[2,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,-1],[2,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,1],[1,0],[-1,0],[0,1],[1,0],[-1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,1],[1,0],[1,0],[1,1],[1,0],[2,1],[2,0],[3,-1],[1,0],[2,-1],[1,0],[1,0],[2,2],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,1],[0,-1],[1,0],[2,1],[4,0],[1,0],[1,0],[3,0],[0,1],[1,1],[2,1],[2,0],[1,0],[1,-1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,-1],[1,0],[3,1],[1,1],[1,1],[1,1],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[4,-1],[1,0],[1,0],[2,1],[1,0],[2,0],[1,0],[1,-1],[1,0],[3,-1],[0,1],[1,0],[2,0],[1,0],[1,1],[0,-1],[1,0],[1,-1],[1,-1],[2,1],[1,0],[4,1],[2,0],[1,0],[1,-1],[0,-1],[1,-1],[2,0],[2,-1],[4,0],[1,0],[1,1],[3,0],[2,0],[1,1],[5,1],[2,1],[-2,1],[-3,1],[3,0],[1,0],[1,0],[1,1],[1,3],[1,4],[2,3],[0,1],[1,2],[0,2],[0,2],[0,3],[-1,2],[0,1],[-3,3],[-3,2],[-3,2],[-2,1],[-2,0],[-3,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,1],[-1,-1],[-1,1],[-1,0],[-1,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[1,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,3],[-1,1],[-3,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[1,1],[-1,0],[-1,0],[0,2],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[-1,0],[0,2],[-2,2],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-2,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-7,3],[-6,2],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,-1],[0,1],[-1,1],[-1,0],[-1,0],[-3,1],[-1,0],[-3,0],[-3,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[1,-2],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-4,0],[-3,-1],[-2,-1],[-2,0],[0,-1],[0,-1],[-1,0],[-1,0],[3,0],[-4,0],[0,-1],[1,-1],[0,-1],[1,-1],[-1,-1],[-1,-1],[0,-1],[1,-2],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[-1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,1],[1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-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,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],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[1,0],[1,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[1,-1],[0,-1],[1,0],[-1,-1],[13,-2],[3,5],[0,-1],[1,0],[0,1],[1,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,-1],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[0,1],[-1,-1],[-1,0],[0,1],[1,1],[1,0],[-1,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[1,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,-1],[-1,0],[-1,0],[1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,-1],[-1,0],[0,1],[1,1],[1,1],[-1,1],[-1,0],[-1,0],[-1,-1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,1],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[1,1],[1,0],[1,1],[-1,1],[1,0],[1,1],[1,0],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[1,0],[2,0],[0,1],[-1,1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,-1],[0,1],[0,1],[-1,0],[0,-1],[-1,1],[1,0],[-1,1],[0,1],[-1,-1],[0,1],[-1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,-1],[-1,0],[-1,1],[1,1],[0,1],[0,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-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],[0,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,1],[1,0],[0,1],[0,1],[-1,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,-1],[0,1],[0,1],[1,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[-1,1],[1,0],[0,1],[-1,0],[1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[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,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-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,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[0,1],[1,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,1],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[1,-1],[1,1],[1,0],[1,1],[1,1],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[2,0],[1,0],[1,-1],[1,0],[1,1],[1,0],[2,-1],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,0],[0,2],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,1],[2,0],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[0,1],[-1,1],[1,1],[0,1],[0,1],[1,1],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-2,0],[1,0],[1,1],[0,1],[1,0],[1,0],[1,1],[2,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1],[0,1],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[-1,-1],[1,0],[2,-1],[2,-1],[2,0],[1,0],[2,1],[2,0],[2,1],[2,1],[2,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[1,1],[1,0],[1,0],[1,1],[-1,0],[0,1],[1,-1],[0,1],[0,1],[0,1],[1,0],[1,1],[2,0],[1,1],[1,1],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[2,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[2,0],[1,1],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[5,2],[-3,1],[-1,0],[1,0],[2,0],[3,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[-3,0],[-6,-2],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[-1,1],[-1,0],[-1,4],[0,1],[0,2],[-2,2],[1,0],[1,-2],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[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,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[2,1],[0,1],[0,1],[2,1],[1,0],[1,1],[2,1],[2,0],[1,2],[2,3],[-1,5],[1,0],[0,-4],[9,0],[0,1],[1,0],[-1,5],[1,0],[0,-4],[1,-1],[3,0],[0,1],[0,-1],[2,0],[-1,0],[1,0],[1,0],[2,0],[2,0],[-1,0],[1,0],[1,0],[1,0],[2,1],[2,0],[2,1],[2,3],[1,2],[3,7],[-4,0],[6,12],[-15,3],[2,4],[26,-6],[5,-1],[0,-1],[1,0],[3,-1],[1,0],[2,3],[1,0],[0,1],[-4,1],[1,1],[4,-2],[1,1],[-7,3],[2,2],[6,-3],[2,-1],[3,0],[4,2],[1,1],[1,0],[2,1],[1,2],[1,0],[-1,0],[0,1],[2,2],[0,4],[-1,0],[-11,5],[1,1],[-3,1],[-2,-2],[2,0],[0,-1],[-2,1],[-1,-1],[2,-1],[-1,0],[-1,0],[-1,-1],[-7,2],[-7,-2],[-6,-2],[0,1],[-1,-1],[-2,0],[-7,-1],[-1,0],[-4,3],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[21,6],[1,-1],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[-1,1],[-5,1],[5,-1],[10,-2],[0,-1],[2,0],[1,2],[-4,1],[1,0],[6,-2],[0,1],[-3,1],[3,-1],[1,0],[-3,2],[3,-1],[-1,1],[2,-1],[0,1],[-3,1],[3,-1],[-2,1],[3,-1],[0,1],[-3,1],[3,-1],[-2,1],[1,0],[-4,2],[4,-1],[12,12],[-1,2],[-3,3],[-4,3],[1,1],[1,0],[1,-2],[2,-2],[1,-1],[1,-1],[0,-1],[2,-2],[2,-2],[1,-1],[5,-4],[3,-2],[1,-1],[1,-1],[3,-1],[2,-1],[2,-1],[3,-1],[3,-1],[3,-1],[2,0],[6,1],[3,3],[2,1],[2,1],[4,3],[2,1],[3,2],[2,2],[1,0],[0,1],[2,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[0,3],[0,1],[-1,1],[1,2],[0,1],[1,1],[-1,1],[1,1],[-1,3],[-1,3],[0,1],[1,3],[1,1],[1,1],[2,1],[1,1],[-2,1],[1,0],[2,0],[1,0],[1,1],[1,1],[2,1],[1,1],[1,0],[1,0],[1,0],[1,0],[3,3],[1,1],[1,2],[2,3],[0,2],[1,1],[0,1],[1,1],[1,2],[1,1],[1,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[1,2],[-2,1],[-3,1],[-1,0],[-2,1],[-14,1],[-2,0],[-2,1],[-6,0],[-2,1],[-1,0],[0,1],[1,0],[13,-2],[6,0],[2,-1],[1,0],[2,-1],[4,0],[3,-1],[2,0],[1,0],[1,0],[0,1],[1,3],[0,1],[1,1],[0,1],[0,2],[2,2],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[12,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,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,0],[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,0],[-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,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[1,0],[1,1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[2,0],[0,1],[4,2],[1,0],[0,1],[1,2],[-1,4],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-22,2],[-1,0],[-1,0],[-7,3],[-1,0],[-6,0],[0,1],[-1,0],[-1,2],[0,1],[8,7],[-1,0],[-3,-3],[-2,-2],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-2,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[1,-1],[1,0],[0,-1],[3,0],[1,0],[3,1],[2,1],[5,0],[1,1],[1,-1],[2,0],[3,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[2,-1],[3,-2],[2,-2],[1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-3,-2],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-14,-3],[-7,-2],[-1,0],[-2,-2],[-3,-1],[-1,-2],[-2,-2],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[4,-1],[1,-1],[1,-1],[3,-5],[2,-3],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,-1],[-1,-2],[-2,-1],[1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-3,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-2,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[-1,0],[0,-1],[-1,0],[-2,1],[-1,0],[0,1],[-4,0],[-1,0],[0,-1],[-1,0],[-1,0],[-6,0],[-5,-1],[-4,-1],[-4,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-3,-1],[-2,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[3,-2],[1,0],[-1,0],[-3,2],[-3,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,0],[1,1],[-1,0],[-1,0],[-2,0],[-3,0],[-8,0],[-2,0],[0,1],[-1,0],[-2,0],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-2,0],[-1,-1],[-1,-1],[-3,-2],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-4,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[3,0],[3,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,1],[2,1],[0,-1],[2,-1],[0,-1],[2,0],[0,-1],[6,1],[4,0],[6,1],[5,-1],[2,0],[3,0],[3,-1],[5,-1],[3,-1],[-1,-1],[-2,1],[-1,0],[-4,1],[-3,1],[-2,0],[-4,0],[-1,1],[-7,0],[-3,-1],[-2,0],[-1,0],[0,-1],[0,-1],[-2,-1],[-2,0],[0,-1],[1,-2],[1,-1],[1,-2],[2,-1],[3,-2],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,-1],[-2,0],[1,-1],[-1,-2],[0,1],[-2,0],[-1,0],[-2,-2],[-2,-2],[-1,0],[0,1],[1,0],[2,2],[-2,1],[-2,1],[-3,1],[-3,-1],[-1,1],[-1,0],[-2,1],[-1,0],[-2,0],[-2,0],[0,-1],[-1,-1],[-2,-1],[0,1],[0,1],[-1,0],[-2,0],[-2,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,1],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-2],[-2,-1],[-1,-2],[-2,-1],[-2,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-2,0],[-8,-2],[-4,0],[-4,0],[-4,0],[-4,-1],[-5,-1],[-1,-1],[-1,-1],[0,-2],[0,-1],[2,1],[1,-2],[3,0],[0,-1],[1,1],[2,0],[0,-2],[1,0],[1,-4],[0,-4],[-1,0],[-1,-2],[-5,-4],[0,-1],[-3,-2],[-2,1],[-3,-1],[-1,-3],[-4,0],[1,1],[1,0],[0,1],[-23,7],[-2,-1],[-1,-1],[-2,-2],[-37,-12],[11,-12],[-5,-1],[-14,15],[2,0],[-7,7],[4,2],[4,-5],[31,10],[-1,2],[-2,2],[-1,2],[-4,3],[-2,3],[-18,-6],[-2,3],[-1,0],[-3,-2],[2,-3],[-29,-9],[11,-12],[5,2],[1,-2],[-7,-3],[-9,10],[-4,1],[-4,6],[-2,-2],[-2,1],[2,2],[-2,1],[-3,-2],[-1,1],[2,1],[-3,2],[-6,-1],[-3,-4],[11,-4],[4,-3],[-3,-1],[-10,6],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-5,17],[1,0],[-6,18],[1,0],[2,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[0,1],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,1],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-2,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-2,-3],[0,-1],[6,0],[-2,0],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[1,-1],[-1,0],[0,-1],[1,1],[1,0],[-1,-1],[1,-1],[-1,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[1,-1],[1,0],[0,-1],[-2,1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[3,-1],[-3,0],[0,-1],[-1,0],[1,0],[-1,-1],[2,0],[-1,-1],[3,-1],[-2,0],[-1,0],[0,-1],[2,0],[0,-1],[2,-1],[1,0],[-8,-7],[-4,1],[-1,-1],[1,-3],[7,1],[0,-1],[-7,0],[1,-4],[11,1],[-11,-1],[1,-3],[12,1],[0,-1],[-12,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[2,-1],[2,3],[1,-1],[0,1],[1,0],[-4,-4],[-1,0],[1,1],[-2,1],[-2,-2],[0,-1],[-6,-4],[3,-1],[-1,0],[-2,1],[-2,-1],[2,-1],[1,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,1],[-1,-1],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[1,1],[-1,1],[-1,0],[-2,0],[-1,0],[-1,1],[-2,0],[0,-1],[-1,0],[-2,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-3,0],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[-2,0],[-1,0],[1,-2],[-1,2],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[2,0],[-2,0],[0,-1],[0,-1],[-2,-3],[1,0],[-1,-2],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-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],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[1,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[-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],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-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],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[1,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,1],[-1,0],[-1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[0,1],[0,1],[-1,0],[-1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,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],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,-1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,1],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[0,1],[-1,0],[1,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[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],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[-1,0],[-1,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,1],[1,0],[1,0],[1,-1],[1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,1],[1,1],[1,0],[1,0],[1,1],[1,-1],[0,-1],[0,1],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[1,1],[-1,1],[-1,0],[0,1],[1,0],[1,1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,1],[1,0],[-1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[-1,0],[1,1],[1,1],[1,0],[1,0],[0,1],[1,1],[1,1],[1,-1],[0,1],[1,0],[0,1],[-1,0],[1,1],[1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[-1,0],[-1,0],[1,1],[-1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[1,0],[-1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,0],[0,-1],[1,0],[1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-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,0],[1,0],[1,0],[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,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-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],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,1],[0,1],[1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[-1,0],[-1,1],[1,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,1],[1,0],[1,0],[1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[-1,-1],[-1,0],[-1,-1],[1,0],[1,0],[-1,-1],[-1,0],[0,-1],[1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[-1,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[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,0],[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,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[-1,1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[-1,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[0,-1],[1,-1],[0,-1],[-1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,-1],[1,-1],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[-1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[-1,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[4,1],[7,3],[3,2],[1,1],[2,2],[2,1],[13,1],[1,1],[5,2],[2,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[2,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[3,1],[1,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[3,0],[1,0],[1,1],[-1,0],[-1,1],[-1,1],[-2,1],[0,1],[1,0],[1,2],[1,0],[1,0],[1,-1],[0,-1],[2,-2],[2,0],[2,1],[3,1],[1,0],[1,1],[1,1],[1,2],[1,1],[1,0],[1,0],[1,0],[2,0],[1,1],[3,3],[1,1],[2,1],[2,1],[1,2],[3,1],[1,1],[1,0],[2,1],[3,0],[1,1],[1,0],[1,1],[0,3],[2,3],[0,1],[0,1],[-1,0],[-1,0],[-3,0],[-1,2],[0,1],[-1,0],[-2,1],[-2,-1],[-1,1],[-1,0],[0,1],[-1,0],[1,2],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[1,1],[1,0],[2,1],[1,0],[0,1],[2,1],[1,0],[0,-1],[0,-1],[1,1],[1,0],[0,1],[1,1],[-1,1],[-2,0],[0,1],[0,1],[1,0],[-1,0],[1,2],[1,1],[1,0],[1,-1],[0,1],[2,2],[1,1],[0,1],[0,1],[-1,1],[3,2],[1,0],[1,1],[-1,0],[-1,0],[0,1],[0,1],[2,2],[-1,1],[0,1],[1,0],[1,0],[1,0],[5,-1],[0,-1],[1,0],[-2,-2],[0,-1],[1,0],[3,2],[1,1],[1,0],[1,0],[2,1],[1,0],[3,0],[1,0],[1,0],[1,2],[0,1],[-1,1],[-2,0],[-1,1],[-2,1],[1,0],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[0,1],[-1,0],[2,-1],[0,1],[2,0],[2,0],[2,-1],[1,0],[1,1],[4,0],[3,2],[1,0],[7,2],[3,0],[3,1],[5,0],[2,1],[4,0],[2,1],[2,1],[4,2],[0,1],[-1,0],[-1,0],[1,1],[2,1],[1,0],[1,-1],[1,2],[1,2],[1,0],[1,1],[3,3],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-2,1],[-1,1],[1,0],[-1,1],[-1,0],[0,1],[1,0],[-2,1],[0,1],[2,1],[1,-1],[3,-1],[2,-1],[1,0],[0,1],[-2,2],[1,0],[0,1],[0,1],[1,0],[1,0],[1,-1],[1,0],[-1,1],[1,0],[0,1],[1,0],[1,0],[1,-2],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[1,1],[0,2],[1,-1],[1,0],[0,1],[0,1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[0,-1],[1,0],[2,1],[1,0],[1,1],[1,1],[0,1],[-1,1],[0,1],[1,0],[1,2],[-1,0],[0,1],[0,1],[1,1],[0,-1],[0,1],[1,0],[1,2],[-1,0],[-1,0],[1,3],[0,1],[2,1],[0,1],[-1,1],[-1,1],[-2,1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[0,2],[-1,1],[-2,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-2,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,2],[1,3],[2,1],[1,1],[1,0],[0,-1],[1,0],[2,1],[3,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,1],[0,1],[1,0],[1,0],[0,1],[1,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,-1],[0,1],[1,0],[1,-1],[0,1],[-1,1],[0,1],[1,0],[1,0],[0,-1],[2,-1],[0,1],[-2,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[1,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-2,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-2,0],[-1,1],[1,2],[-1,0],[0,1],[0,1],[1,3],[0,2],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,2],[1,3],[-1,0],[1,1],[2,0],[1,1],[1,0],[0,-1],[1,1],[1,1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,-1],[0,-1],[1,1],[0,-1],[-1,-1],[1,0],[2,3],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[0,1],[1,1],[0,1],[3,2],[4,1],[2,0],[1,1],[0,-1],[1,0],[-1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[-1,-1],[-2,0],[-1,0],[-1,0],[1,-1],[1,0],[-1,-1],[0,-1],[-1,-1],[2,0],[1,0],[-1,-1],[-1,0],[-2,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-2,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[1,0],[1,0],[0,-3],[0,-1],[-1,-1],[0,-1],[-1,-1],[1,-1],[1,-1],[5,-1],[4,-1],[8,-3],[8,-2],[4,-1],[6,-1],[3,-1],[17,0],[2,0],[4,0],[2,1],[3,0],[3,0],[3,0],[3,0],[3,1],[3,1],[4,0],[6,1],[5,1],[3,1],[2,0],[5,2],[4,0],[3,2],[4,1],[4,1],[3,0],[6,3],[3,2],[9,4],[5,2],[2,0],[2,1],[-1,1],[0,1],[-1,0],[0,2],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,1],[1,0],[1,2],[1,2],[1,0],[1,1],[1,0],[1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[-1,1],[1,3],[0,1],[1,0],[4,-3],[1,0],[1,0],[-1,1],[0,1],[-1,2],[-1,1],[1,0],[1,1],[3,-1],[1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,1],[0,1],[3,-1],[-1,1],[0,1],[0,-1],[1,0],[0,2],[1,0],[-1,0],[0,1],[-3,0],[0,2],[0,1],[1,0],[2,0],[0,1],[1,0],[1,-1],[2,-1],[1,0],[1,0],[1,1],[-1,1],[-1,0],[-1,1],[0,1],[1,-1],[1,0],[0,1],[1,-1],[-1,1],[1,0],[1,0],[-1,1],[0,1],[1,0],[0,-2],[1,1],[1,0],[1,-1],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,-1],[0,1],[0,1],[2,1],[1,1],[-1,0],[-2,0],[0,1],[0,1],[-1,0],[1,0],[2,0],[-1,0],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[3,0],[1,0],[0,1],[-2,0],[0,1],[1,1],[2,0],[-2,0],[-1,0],[1,1],[2,3],[-1,0],[-2,-2],[-1,-1],[0,1],[1,1],[1,1],[-1,1],[-1,0],[0,1],[1,1],[0,1],[1,0],[2,1],[1,2],[3,1],[1,1],[2,0],[2,-1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,1],[3,1],[1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,1],[3,0],[-1,2],[0,1],[2,-1],[0,1],[1,0],[0,-1],[1,0],[-1,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[1,0],[1,0],[-1,-1],[1,0],[0,-1],[2,0],[2,0],[1,1],[1,0],[1,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,-1],[0,-1],[2,0],[1,-1],[2,0],[0,-1],[1,0],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,-1],[1,0],[2,-3],[0,-1],[1,0],[4,1],[2,1],[2,0],[0,1],[1,0],[0,1],[1,1],[1,2],[2,2],[-1,1],[0,1],[1,0],[1,0],[0,-1],[1,3],[0,1],[1,0],[1,0],[1,0],[1,1],[-1,2],[-1,0],[0,1],[1,1],[0,-1],[2,1],[0,1],[-1,0],[-1,-1],[0,1],[-1,0],[2,3],[0,2],[1,1],[0,1],[0,1],[0,2],[1,0],[1,-2],[0,-2],[1,0],[0,2],[0,2],[1,0],[1,0],[0,-1],[0,-2],[1,0],[0,3],[0,1],[1,0],[2,-1],[-2,1],[0,1],[0,2],[1,2],[1,1],[1,1],[0,-1],[1,0],[1,0],[1,-1],[3,-3],[2,-3],[-1,3],[0,1],[1,0],[0,1],[0,-1],[1,-1],[0,1],[0,-1],[1,0],[-1,-2],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,-2],[0,2],[1,0],[0,-1],[0,-1],[0,-1],[3,1],[2,0],[1,0],[4,0],[5,0],[3,-1],[5,0],[4,1],[3,0],[6,2],[4,2],[2,1],[2,1],[1,0],[0,1],[-2,0],[-1,1],[1,0],[0,1],[1,0],[2,0],[1,0],[-1,0],[-1,1],[-4,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-2,1],[0,1],[-1,0],[1,1],[1,0],[3,1],[1,0],[2,1],[3,0],[5,0],[-1,1],[-4,0],[-1,0],[-1,0],[0,1],[0,1],[1,2],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,-1],[1,0],[1,2],[1,0],[0,1],[1,1],[1,0],[1,0],[2,-1],[1,-1],[2,-1],[2,0],[0,-1],[2,0],[2,-1],[1,-1],[-1,0],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[2,-2],[1,0],[1,1],[1,1],[5,2],[2,1],[2,1],[1,0],[2,1],[2,1],[0,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[2,0],[0,1],[-1,2],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[1,0],[2,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[1,-1],[0,1],[3,1],[-1,0],[-2,1],[-3,0],[0,1],[1,0],[1,0],[2,-1],[2,0],[-1,1],[-2,0],[-1,1],[1,1],[0,-1],[1,0],[-1,1],[0,1],[1,0],[1,0],[2,-1],[0,1],[1,0],[2,-1],[1,1],[0,-1],[4,-1],[1,0],[0,1],[1,0],[1,0],[2,-1],[2,-1],[1,0],[0,1],[-2,2],[1,0],[2,0],[0,1],[1,-1],[-1,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[3,0],[5,1],[2,0],[0,1],[1,2],[0,1],[-1,2],[-1,0],[-1,0],[-4,-1],[-2,1],[-1,0],[-1,1],[-1,1],[1,0],[1,1],[2,0],[2,0],[1,0],[0,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,-1],[1,0],[0,-1],[2,0],[1,-1],[1,0],[0,1],[0,1],[-2,0],[0,1],[1,0],[1,0],[0,1],[1,1],[0,-1],[1,0],[3,0],[1,-1],[1,-1],[1,0],[1,0],[0,1],[1,0],[-1,1],[-3,1],[2,1],[-1,1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[-2,1],[1,0],[1,0],[1,0],[1,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[3,3],[1,0],[-2,2],[-1,2],[-1,1],[1,0],[1,0],[1,1],[-2,2],[-1,0],[0,1],[1,1],[1,0],[1,0],[2,1],[1,0],[3,-1],[1,0],[2,1],[0,1],[1,0],[-1,0],[0,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,2],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,1],[-2,2],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[4,-1],[5,-2],[1,0],[0,-1],[2,0],[1,-1],[-1,-2],[2,0],[0,-1],[0,-1],[-2,0],[0,-2],[0,-1],[1,0],[-1,-1],[1,0],[2,1],[0,-1],[0,-1],[2,1],[1,0],[-2,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[3,0],[2,0],[0,-1],[-1,0],[0,-1],[2,0],[1,0],[0,-1],[-1,-1],[2,1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,-1],[-1,0],[-1,-1],[-1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[1,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[1,-1],[1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-2,0],[0,-1],[2,0],[2,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[2,0],[-1,-1],[2,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[1,0],[0,-1],[-3,-1],[0,-1],[0,-2],[1,-1],[1,0],[-1,-1],[1,-3],[1,0],[5,-1],[2,0],[1,0],[2,-1],[2,0],[1,-1],[2,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[-1,0],[-1,1],[0,-1],[1,-1],[0,-1],[2,-1],[1,-1],[1,-2],[-1,0],[-1,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[-1,0],[0,-1],[1,1],[1,0],[-1,0],[0,-1],[-1,0],[1,0],[1,1],[2,0],[1,1],[0,-1],[-1,0],[-2,-2],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[1,-3],[0,-1],[1,-1],[1,-2],[1,-1],[2,-1],[11,-6],[3,-1],[3,-1],[1,-1],[2,0],[2,0],[2,0],[13,2],[3,0],[2,1],[1,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[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],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,0],[0,1],[1,-1],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,-1],[1,0],[1,0],[0,-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,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,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,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-3,3],[-1,1],[-2,1],[-2,-4],[-10,-4],[-9,1],[-15,-2],[1,0],[-4,0],[-1,-1],[-1,0],[1,2],[-1,1],[1,0],[-1,0],[0,1],[-4,0],[-2,1],[-1,0],[1,1],[-1,0],[-1,1],[-2,1],[-1,0],[-2,0],[-1,1],[-5,0],[-8,-5],[-1,0],[1,0],[3,-2],[-9,-4],[7,-5],[-1,0],[-1,-1],[1,0],[1,-1],[-1,-1],[-1,0],[-6,5],[-2,6],[-1,0],[-1,0],[2,1],[0,1],[-2,0],[-1,1],[-1,0],[0,2],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-2,0],[-2,1],[0,1],[0,1],[-3,1],[-3,2],[0,1],[0,1],[1,0],[1,0],[1,1],[-1,1],[1,0],[2,1],[1,0],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[2,-1],[2,1],[1,0],[1,-1],[1,1],[1,0],[0,1],[-5,2],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[0,1],[1,1],[2,0],[1,1],[-1,1],[2,2],[1,1],[0,1],[-1,0],[1,1],[0,1],[-1,1],[-1,0],[-1,0],[1,1],[1,0],[0,1],[1,0],[2,0],[0,1],[-3,2],[-1,0],[-1,2],[-2,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,1],[-1,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[2,1],[1,0],[1,0],[1,-1],[1,0],[2,1],[1,0],[2,-1],[0,-1],[1,1],[1,-1],[1,2],[0,1],[0,1],[-2,0],[0,1],[1,1],[0,1],[-1,0],[-1,1],[-1,0],[-2,0],[0,1],[0,1],[-1,0],[1,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,2],[1,0],[1,0],[0,-1],[1,0],[2,0],[2,0],[1,0],[0,-1],[1,0],[2,0],[2,0],[1,0],[0,1],[0,1],[1,0],[1,1],[3,0],[1,0],[-1,1],[-2,1],[-1,1],[0,1],[0,1],[1,1],[-1,1],[-1,0],[-1,0],[-3,-1],[-1,0],[-1,1],[1,0],[0,1],[-1,0],[0,1],[2,0],[-2,2],[-1,0],[-2,1],[-1,0],[-1,1],[1,0],[0,1],[1,1],[2,1],[1,0],[1,1],[4,0],[1,0],[0,1],[-1,1],[-2,0],[-1,0],[-1,2],[-1,0],[-2,-1],[-1,2],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,-1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[1,1],[1,2],[1,0],[-1,1],[-1,1],[0,1],[1,0],[-1,0],[-1,2],[-1,0],[0,1],[1,0],[1,0],[2,-2],[1,0],[3,-2],[1,0],[0,1],[1,0],[-1,0],[-2,2],[-1,1],[-1,0],[0,1],[0,1],[1,-1],[1,-1],[1,1],[1,-2],[1,0],[1,0],[-1,1],[1,0],[1,0],[4,-2],[1,0],[-2,1],[-4,2],[0,1],[0,1],[1,0],[2,0],[2,-1],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[-1,2],[1,1],[1,-1],[0,-1],[1,0],[2,1],[1,-1],[0,-1],[1,0],[3,0],[3,0],[1,-1],[3,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[-4,-1],[-1,0],[-2,1],[0,1],[1,1],[2,0],[0,1],[2,1],[1,0],[2,0],[0,1],[-2,1],[-1,1],[-1,0],[0,1],[1,0],[-1,0],[-2,1],[-2,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[-1,1],[1,0],[1,0],[0,1],[1,0],[1,2],[1,0],[0,1],[1,0],[1,0],[1,1],[3,1],[0,1],[1,1],[1,0],[2,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[1,1],[-1,0],[-1,2],[1,1],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-2,0],[0,1],[-1,1],[-2,3],[1,1],[3,-2],[1,0],[1,0],[2,-1],[1,0],[1,1],[1,0],[1,1],[-2,3],[1,0],[1,0],[2,0],[0,1],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,1],[0,1],[0,1],[-2,2],[-2,0],[-1,0],[-2,0],[0,2],[0,1],[0,1],[1,0],[0,1],[1,2],[-1,1],[1,0],[0,1],[-3,0],[-1,1],[2,2],[1,0],[2,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[-2,2],[-2,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[4,-2],[1,0],[0,1],[2,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,-1],[-1,0],[0,-1],[1,0],[0,1],[1,0],[3,-1],[-1,1],[1,0],[2,0],[1,0],[1,0],[2,0],[0,1],[2,0],[0,1],[-1,1],[1,1],[-1,0],[-2,2],[-1,0],[-1,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,1],[1,-1],[1,0],[1,-1],[1,1],[2,0],[-3,2],[2,1],[1,0],[1,0],[1,-1],[0,-1],[1,1],[1,0],[2,1],[1,0],[2,1],[1,-1],[1,1],[0,1],[-2,1],[-2,0],[-1,0],[-1,1],[1,0],[1,0],[0,1],[-1,0],[0,2],[1,1],[0,1],[1,0],[1,-1],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[2,0],[3,1],[3,0],[-1,0],[-1,1],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[2,0],[1,1],[0,1],[-2,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[0,1],[-1,1],[1,0],[1,-1],[1,0],[1,0],[2,0],[2,-1],[1,0],[0,1],[-1,1],[1,1],[0,1],[0,1],[1,-1],[1,0],[0,2],[1,0],[0,1],[-1,0],[-2,0],[-1,0],[-2,1],[0,1],[1,0],[2,0],[1,1],[1,-1],[1,0],[2,1],[1,0],[0,-1],[1,0],[1,-1],[2,0],[-1,-1],[-1,0],[-1,0],[1,-1],[1,-1],[0,-1],[-1,0],[-1,0],[2,0],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[2,-2],[2,0],[1,1],[2,1],[1,0],[2,-1],[0,1],[0,1],[3,1],[1,1],[1,1],[1,0],[1,-1],[1,1],[2,0],[1,1],[1,0],[-1,0],[-1,1],[1,1],[1,0],[0,1],[0,1],[2,-1],[2,0],[0,1],[-1,1],[-1,0],[0,1],[1,0],[1,-1],[0,1],[0,1],[2,0],[0,-1],[2,0],[0,1],[1,0],[1,0],[2,0],[2,-1],[0,-1],[1,0],[0,1],[1,0],[2,0],[2,1],[1,-1],[-1,-1],[0,1],[-1,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,2],[1,1],[-1,1],[1,1],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-2,-1],[0,-1],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[-1,1],[2,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[1,0],[1,-1],[1,0],[0,1],[0,1],[1,-1],[1,1],[1,0],[0,-1],[1,0],[0,-1],[0,-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],[4,-2],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[1,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[1,0],[1,-1],[2,-1],[1,-1],[1,0],[1,1],[1,0],[7,7],[0,1],[0,2],[2,1],[0,1],[1,0],[0,-1],[1,0],[2,-1],[3,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[1,0],[1,-2],[1,0],[1,0],[1,0],[2,0],[2,1],[1,0],[0,-1],[-2,0],[0,-1],[1,0],[2,1],[1,0],[2,0],[2,0],[1,0],[4,-1],[2,0],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[-1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[1,0],[-1,-1],[1,-1],[0,-1],[4,-1],[0,1],[0,1],[1,0],[0,-3],[1,-1],[2,-1],[1,0],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-2],[2,0],[1,-1],[0,1],[1,1],[0,1],[1,0],[1,-1],[0,-1],[-1,0],[-1,-1],[1,-1],[1,0],[1,0],[-1,-1],[1,-1],[1,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[0,1],[1,0],[1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[2,-2],[2,-3],[1,0],[4,-1],[6,-1],[8,1],[2,0],[4,1],[3,0],[3,0],[2,1],[1,0],[3,2],[4,2],[0,1],[1,2],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[3,0],[0,1],[1,1],[1,0],[1,1],[0,1],[3,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[3,0],[1,1],[1,1],[1,1],[0,1],[1,0],[-1,1],[1,0],[2,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[3,0],[1,0],[0,1],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,-2],[3,0],[0,1],[1,0],[1,3],[1,1],[2,1],[2,1],[1,0],[1,0],[1,1],[3,0],[2,1],[5,0],[5,0],[3,2],[1,0],[0,1],[1,1],[3,1],[2,0],[7,1],[1,0],[0,1],[2,0],[1,0],[0,1],[0,1],[1,0],[2,0],[2,0],[1,0],[1,1],[2,0],[1,1],[0,1],[1,3],[1,1],[0,1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,1],[2,2],[1,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,2],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[1,1],[3,0],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,1],[0,1],[1,1],[2,0],[2,-1],[1,0],[1,0],[0,1],[-1,1],[0,1],[1,-1],[1,0],[1,0],[1,0],[2,0],[2,-1],[2,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[2,0],[1,0],[3,0],[1,0],[1,0],[-1,1],[0,1],[-1,1],[1,1],[0,1],[1,0],[1,0],[2,-1],[3,1],[3,0],[2,0],[2,0],[2,0],[7,2],[5,2],[2,1],[1,1],[0,2],[1,1],[1,0],[1,0],[5,0],[2,1],[2,0],[4,2],[1,0],[1,2],[1,1],[1,0],[0,1],[3,0],[1,1],[2,1],[1,1],[4,1],[1,0],[1,1],[2,3],[2,2],[1,1],[2,0],[2,1],[1,0],[1,1],[3,0],[1,1],[1,0],[4,3],[3,2],[3,2],[3,3],[2,3],[1,0],[1,1],[4,3],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,1],[1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[0,-1],[1,0],[-1,0],[-1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,-1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,1],[1,-1],[1,0],[0,-1],[1,0],[1,1],[1,1],[1,0],[0,-1],[-1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-1,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[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,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,1],[1,1],[1,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[1,1],[1,0],[2,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,1],[1,-1],[1,0],[1,1],[-1,1],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[1,0],[1,1],[-1,0],[-1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,1],[1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,-1],[-1,1],[0,1],[1,1],[1,0],[-1,1],[0,1],[1,0],[0,1],[-1,1],[-1,0],[1,0],[1,1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-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,0],[1,1],[0,1],[-1,1],[0,2],[1,1],[1,0],[2,-1],[1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[-1,1],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,1],[-1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,2],[1,0],[1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,1],[-1,1],[0,1],[-1,0],[-1,0],[1,2],[1,0],[0,1],[1,1],[1,0],[0,-1],[2,0],[0,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[2,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[2,0],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[2,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[3,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,-1],[0,-1],[2,0],[1,-1],[2,0],[1,0],[1,0],[1,1],[0,-1],[1,0],[3,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[3,0],[4,0],[0,1],[1,0],[1,0],[1,2],[0,1],[1,0],[2,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[2,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,-1],[2,0],[2,0],[3,0],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[3,0],[0,1],[0,1],[1,0],[1,0],[1,-1],[1,-1],[5,-1],[1,0],[1,0],[1,1],[1,0],[3,0],[1,1],[3,0],[4,1],[2,1],[2,1],[2,1],[3,1],[2,1],[1,2],[1,0],[-1,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-2,0],[0,1],[0,1],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[2,0],[2,0],[2,0],[1,1],[0,1],[1,1],[-3,1],[0,1],[-2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,1],[0,1],[1,0],[4,-2],[0,1],[-1,2],[1,0],[1,0],[3,0],[3,0],[0,1],[1,0],[-1,1],[0,1],[0,1],[-2,0],[-1,1],[0,1],[1,0],[3,0],[0,1],[1,0],[-1,1],[-1,1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[0,1],[2,0],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-2],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[2,-2],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[2,1],[0,-1],[-1,-1],[1,0],[1,-1],[1,-1],[2,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,-1],[1,-1],[1,-1],[1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-2,-2],[1,-2],[3,-3],[0,-1],[1,0],[1,0],[1,1],[1,1],[0,-1],[0,-1],[-1,-1],[0,-1],[2,0],[1,0],[1,0],[-1,-1],[1,0],[2,0],[1,0],[0,-1],[1,-1],[1,1],[1,-2],[1,-1],[2,0],[4,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[2,-1],[2,0],[2,-2],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,-1],[-1,1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,-2],[1,-1],[-1,0],[-1,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[-1,0],[-1,-1],[1,-1],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-2],[-2,-1],[0,-1],[-1,-2],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,0],[0,1],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,-1],[2,-2],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-3,1],[0,-1],[0,-1],[-2,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[1,1],[2,-1],[1,-1],[-1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-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],[0,-1],[-1,1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[1,0],[1,0],[-1,-1],[1,-1],[0,-7],[-1,-2],[0,-4],[1,0],[0,-1],[2,-1],[2,-1],[4,-2],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[0,1],[-1,0],[-1,-1],[1,-1],[-1,0],[-8,5],[0,8],[1,0],[0,3],[-11,0],[0,1],[1,0],[1,1],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-3,-3],[-1,0],[-2,0],[-3,1],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,-2],[-2,-3],[-1,-1],[0,-1],[0,-1],[2,-1],[1,-2],[4,0],[2,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-2],[2,-4],[1,-2],[1,-1],[0,-1],[1,0],[2,-1],[2,0],[3,-1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[2,-2],[2,0],[1,-1],[2,-2],[1,0],[2,-1],[1,0],[3,-1],[3,-2],[2,0],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[4,-1],[3,-2],[1,0],[6,-1],[1,0],[2,-1],[1,0],[1,1],[2,0],[1,1],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[2,0],[4,-2],[0,-1],[-1,-1],[-1,-2],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-2],[1,-1],[1,0],[0,-2],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[2,-1],[3,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[1,0],[1,0],[-1,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[1,-2],[0,-1],[0,-1],[-1,-1],[-3,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[0,-2],[1,-1],[1,-1],[1,-2],[2,-3],[3,-2],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[1,0],[1,0],[1,0],[-1,0],[-2,-1],[0,-1],[-1,-1],[-2,0],[0,-1],[-2,-1],[-1,-2],[-1,-1],[-1,0],[-3,0],[-3,-1],[-3,0],[-1,0],[-4,3],[-2,1],[-2,0],[-5,-1],[-3,0],[-3,0],[-2,1],[-2,0],[-1,1],[-2,1],[-1,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,0],[-1,1],[-3,0],[-2,0],[-4,0],[-1,0],[-1,-2],[-1,0],[-1,0],[-2,0],[-1,1],[0,1],[-1,0],[-3,1],[-2,1],[-3,2],[0,1],[0,2],[-2,3],[-2,4],[-1,1],[-5,3],[-1,1],[-1,0],[-2,-1],[-2,1],[-8,0],[-3,0],[-3,1],[-2,0],[-4,2],[-4,1],[-2,1],[-2,1],[-2,1],[0,1],[1,2],[0,1],[1,1],[-1,4],[-2,5],[0,2],[-2,5],[-2,3],[-1,0],[-1,0],[-1,-2],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[-2,0],[-2,-2],[-1,-1],[0,-1],[1,-1],[0,-2],[1,-4],[0,-1],[0,-1],[2,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[2,-3],[2,-2],[1,0],[0,-1],[-1,-1],[-1,-2],[-1,-2],[0,-1],[-1,-1],[-2,-1],[0,-1],[0,-1],[0,-1],[0,-1],[2,0],[0,-1],[2,-1],[0,-1],[2,0],[6,0],[3,-1],[3,-1],[5,-2],[2,-2],[1,-1],[1,-1],[3,-10],[1,-1],[2,0],[1,0],[1,-1],[0,-1],[-2,-1],[-3,0],[-4,1],[-1,0],[-2,0],[-2,0],[0,-1],[-1,0],[0,-1],[-2,0],[-2,-1],[-2,0],[-1,0],[0,-1],[-2,-2],[-1,0],[2,-2],[-2,1],[-2,-2],[-1,-2],[-1,-1],[-2,-1],[-2,0],[0,-1],[-1,0],[-1,-1],[-1,-2],[0,-1],[0,-2],[-2,-1],[-3,-1],[-3,-1],[-5,-2],[-2,-2],[-1,-2],[0,-2],[0,-2],[0,-2],[1,-1],[1,-1],[2,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[-4,-3],[-3,-2],[-1,-2],[-2,-3],[-1,-1],[0,-1],[1,-4],[1,-3],[1,-1],[0,-1],[2,-1],[1,-2],[1,-3],[1,-1],[2,-2],[3,-2],[5,-1],[3,-1],[0,-1],[-2,-2],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-5,4],[-2,1],[-1,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-3,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[-3,1],[-5,1],[-6,1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[2,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,0],[1,-1],[2,-1],[0,-1],[1,0],[1,0],[0,1],[1,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-3,0],[-1,0],[0,-2],[0,-1],[2,-1],[1,0],[0,-1],[3,-1],[1,-1],[-1,-1],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[2,1],[1,0],[1,0],[3,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[1,0],[1,0],[2,0],[4,-1],[1,0],[2,0],[2,0],[4,1],[1,0],[1,-1],[1,0],[4,-2],[1,0],[2,0],[4,1],[1,0],[3,0],[2,0],[4,-1],[11,-3],[4,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[-2,-2],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-2,-2],[-1,-2],[-1,-1],[0,-1],[0,-1],[3,-3],[0,-1],[1,-1],[1,-2],[1,-2],[0,-2],[0,-1],[0,-2],[-1,-2],[-1,-1],[-1,0],[-1,0],[-2,0],[-6,0],[-2,0],[-2,-1],[-3,0],[-4,0],[-3,1],[-2,0],[-3,2],[-1,1],[-1,1],[-1,1],[0,1],[-2,2],[-1,1],[-3,3],[-3,4],[-1,1],[-2,1],[-1,1],[-2,2],[-1,0],[-1,0],[-4,0],[-5,1],[-3,0],[-2,1],[-4,1],[-4,1],[-3,-1],[-3,0],[-2,0],[-2,0],[-2,-1],[-1,-1],[-4,-2],[-1,-1],[-5,-1],[-7,-2],[-2,0],[-1,0],[-2,-1],[-2,-1],[-1,-1],[-1,-1],[-2,0],[-2,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-3,-2],[-2,-2],[-5,-2],[-3,-1],[-4,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,-1],[2,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[5,-2],[7,-3],[3,0],[2,-1],[4,-1],[1,0],[2,-1],[3,-1],[8,0],[2,0],[2,0],[1,0],[0,1],[1,0],[1,1],[2,2],[1,0],[1,0],[1,0],[2,0],[6,-2],[2,0],[1,-1],[2,-1],[1,0],[3,-2],[2,-1],[2,-2],[2,-1],[1,-1],[1,-1],[2,-1],[0,-3],[3,1],[1,-1],[2,-1],[1,-1],[0,-1],[1,0],[0,1],[1,1],[1,0],[5,3],[2,1],[1,0],[3,-1],[2,0],[2,0],[3,0],[2,0],[1,0],[1,-2],[-1,-2],[-1,0],[1,-1],[1,1],[1,0],[1,0],[3,3],[1,0],[2,0],[1,0],[0,-1],[0,-2],[3,-1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[2,-2],[3,-2],[1,-1],[1,0],[1,0],[2,1],[2,2],[1,4],[-1,1],[-1,1],[0,1],[1,2],[0,1],[1,0],[4,1],[3,0],[3,1],[3,0],[2,-1],[2,0],[4,-1],[2,-1],[3,-2],[1,-1],[3,-2],[2,-2],[1,-1],[1,-3],[1,0],[1,0],[1,1],[2,0],[5,2],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[-3,0],[-1,0],[0,1],[-1,0],[1,2],[-1,0],[0,1],[-2,1],[-3,1],[-1,0],[0,1],[0,2],[-1,4],[0,1],[1,2],[0,2],[1,0],[1,1],[1,0],[4,0],[15,3],[3,1],[6,2],[2,1],[1,0],[1,0],[2,-1],[1,0],[2,-1],[6,0],[3,0],[3,0],[2,1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[3,-1],[2,0],[1,-1],[2,0],[3,-2],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,1],[1,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[2,0],[3,1],[1,1],[1,0],[0,1],[1,0],[-1,1],[0,1],[0,1],[1,1],[1,1],[2,2],[1,0],[1,1],[0,1],[0,1],[-1,3],[-1,1],[-1,1],[0,2],[0,1],[-2,2],[0,1],[-1,1],[-1,0],[-1,1],[-2,0],[-2,2],[-1,2],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,2],[-1,0],[-1,0],[0,-1],[-3,1],[-3,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-3,1],[-2,1],[-1,0],[-1,1],[-1,0],[-2,2],[-2,2],[-2,1],[-1,1],[-1,0],[0,2],[2,3],[0,1],[0,1],[-1,1],[-1,0],[-2,2],[-4,-5],[3,5],[-20,1],[-2,0],[-5,-3],[-1,1],[3,2],[0,1],[-2,1],[1,2],[9,6],[-4,7],[-6,3],[-1,1],[0,1],[1,3],[-1,2],[0,1],[-3,1],[-2,0],[-1,0],[0,1],[0,2],[0,1],[0,1],[-2,1],[-2,1],[-1,0],[-3,3],[-2,2],[0,2],[-1,2],[0,1],[-2,2],[-2,2],[-4,3],[-3,3],[-1,1],[-3,2],[-1,0],[-1,0],[-2,0],[0,1],[0,1],[1,2],[2,1],[7,4],[6,2],[7,2],[1,0],[2,1],[4,2],[3,1],[5,2],[2,0],[1,0],[2,0],[4,2],[2,4],[1,0],[1,1],[2,0],[3,0],[2,1],[1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-3,1],[-1,1],[-2,0],[-4,1],[-1,0],[0,1],[3,0],[0,1],[-4,2],[-4,1],[-1,0],[1,0],[0,1],[3,0],[3,-1],[1,0],[2,0],[2,-1],[2,-1],[1,-1],[8,-2],[2,-1],[3,-1],[2,-1],[1,0],[1,0],[2,-1],[2,-1],[1,0],[1,-1],[2,0],[1,0],[2,1],[1,0],[1,-1],[0,-1],[2,0],[2,0],[3,-1],[5,0],[5,0],[2,-1],[1,0],[2,0],[3,0],[5,-1],[5,0],[2,-1],[2,0],[5,0],[6,0],[1,0],[3,0],[2,1],[4,1],[1,0],[0,1],[1,1],[-1,1],[0,1],[0,3],[0,1],[1,1],[1,0],[2,2],[2,1],[3,1],[1,0],[2,1],[0,1],[1,1],[0,3],[-1,2],[0,1],[0,1],[-2,0],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[0,1],[0,2],[3,1],[2,3],[1,0],[1,-1],[1,0],[0,-1],[3,0],[3,0],[2,0],[1,0],[2,0],[4,-1],[2,-1],[1,-1],[0,-1],[1,0],[0,-2],[-1,-1],[-2,-2],[-4,-1],[-2,0],[0,-1],[-1,0],[-1,-1],[0,-2],[0,-3],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[2,0],[2,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[3,0],[5,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[-3,0],[0,-1],[-1,0],[-1,0],[-2,0],[-3,-1],[-1,0],[-1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[1,-2],[0,-2],[0,-2],[-1,-1],[-1,0],[-2,0],[-2,0],[-2,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-3,1],[-3,1],[-1,0],[-4,2],[-1,0],[-1,0],[-3,0],[-2,0],[-7,-1],[-1,0],[-1,-1],[-1,0],[-2,-2],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-4],[1,-1],[0,-1],[1,-1],[1,0],[4,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-2,-2],[-1,0],[-2,0],[-4,0],[-1,0],[-1,0],[1,-1],[5,0],[6,0],[2,-1],[1,-2],[-1,2],[1,1],[0,1],[1,1],[2,0],[1,0],[0,1],[1,0],[0,1],[2,1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[2,1],[1,0],[1,0],[2,0],[1,0],[0,1],[-1,1],[0,1],[1,1],[1,0],[2,1],[1,0],[2,0],[1,0],[2,-1],[1,-1],[1,1],[1,0],[1,0],[1,0],[3,0],[1,1],[1,0],[0,5],[1,-1],[1,0],[1,0],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[4,0],[1,0],[1,0],[1,0],[2,0],[1,1],[-1,0],[-1,1],[-2,1],[-2,1],[-1,0],[0,1],[2,0],[2,0],[2,0],[1,1],[1,0],[3,0],[2,0],[1,0],[1,0],[2,0],[3,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[3,-1],[2,0],[3,0],[1,0],[2,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[2,0],[1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[2,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[3,0],[2,-1],[1,-1],[0,4],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[1,0],[1,0],[0,2],[0,1],[0,1],[2,0],[-1,1],[-4,2],[-2,0],[-2,0],[-2,1],[-3,0],[-1,0],[-2,-1],[-2,0],[-3,0],[-1,0],[-1,0],[-5,-1],[-1,0],[-4,0],[-2,0],[-2,1],[-2,2],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[1,2],[0,1],[0,1],[-2,2],[-1,1],[0,1],[1,1],[0,2],[1,3],[0,1],[-1,1],[-2,2],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-2,1],[-3,0],[-1,0],[0,1],[-2,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[2,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,3],[0,1],[1,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[-2,1],[0,1],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[1,1],[1,0],[0,1],[1,1],[1,0],[2,-1],[1,0],[-1,2],[1,0],[3,0],[1,-1],[2,-1],[2,2],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[2,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-3,-3],[0,-1],[2,-1],[1,0],[0,1],[2,0],[3,1],[1,1],[1,1],[1,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[1,1],[0,-1],[1,0],[1,-2],[0,-1],[3,0],[3,1],[4,4],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[2,-1],[1,0],[1,0],[2,2],[2,2],[3,2],[0,1],[4,4],[0,1],[1,0],[1,3],[0,2],[1,2],[-1,1],[0,2],[-1,2],[0,1],[-2,2],[-1,2],[-2,1],[0,1],[-1,-2],[-1,1],[0,1],[0,1],[-1,-1],[-2,0],[-1,0],[1,1],[0,1],[-1,0],[-1,1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[1,0],[0,1],[1,1],[-1,0],[0,1],[-1,0],[1,1],[1,0],[1,0],[1,-1],[1,2],[-1,0],[0,1],[1,0],[1,2],[1,0],[1,0],[0,1],[-1,1],[0,1],[2,0],[-1,1],[0,1],[1,0],[1,-1],[1,0],[1,1],[4,2],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[-1,-1],[1,-1],[2,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-2],[1,0],[1,1],[1,-1],[0,-1],[-1,0],[-1,0],[1,-1],[2,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-3],[2,-2],[1,-1],[2,0],[1,0],[1,0],[1,-1],[1,0],[6,0],[6,0],[1,0],[2,1],[1,1],[1,0],[1,1],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,1],[3,2],[1,0],[1,1],[3,1],[1,1],[1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[1,1],[1,0],[0,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[2,1],[0,1],[-1,0],[-1,1],[-1,0],[-2,2],[0,2],[0,2],[1,1],[1,1],[0,1],[2,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[1,0],[2,0],[1,0],[2,0],[2,0],[2,0],[1,0],[1,2],[0,4],[1,1],[1,0],[0,-1],[1,2],[1,0],[1,0],[1,0],[2,1],[1,0],[0,-1],[0,-3],[0,-1],[1,0],[3,-2],[1,-1],[1,0],[1,-1],[1,-2],[2,0],[2,2],[1,1],[1,2],[1,0],[1,0],[0,-1],[1,1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[2,-1],[1,-1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[2,-2],[0,-1],[1,1],[4,2],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[2,0],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[1,-1],[2,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[2,0],[1,1],[1,0],[2,0],[2,1],[5,0],[1,0],[1,1],[2,0],[4,1],[5,0],[2,1],[2,0],[2,1],[1,0],[2,1],[1,0],[1,1],[0,1],[1,1],[2,2],[3,1],[2,1],[0,1],[1,0],[-1,2],[0,1],[-1,1],[0,1],[0,1],[-1,4],[-1,0],[-1,1],[2,0],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[2,0],[1,-1],[1,-2],[1,0],[0,-1],[2,0],[4,1],[1,0],[3,0],[1,1],[0,1],[1,0],[0,1],[0,2],[1,0],[1,0],[1,0],[1,-1],[1,-3],[1,0],[1,-1],[4,0],[3,0],[2,1],[3,0],[2,1],[1,2],[0,1],[1,0],[-1,1],[-1,0],[-2,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,1],[-1,1],[0,2],[1,0],[2,0],[0,-1],[1,-1],[0,-1],[3,-2],[5,0],[2,-1],[2,0],[1,0],[3,0],[1,0],[2,1],[6,1],[1,1],[0,2],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[1,0],[2,0],[0,-1],[1,0],[3,0],[1,1],[2,1],[1,2],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,-1],[2,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[2,0],[1,0],[2,1],[0,1],[0,1],[2,0],[2,0],[1,0],[1,0],[1,1],[1,1],[2,2],[0,1],[1,0],[1,-1],[2,-1],[1,0],[1,-2],[1,-1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[4,-2],[3,0],[3,0],[7,-1],[1,0],[2,0],[1,1],[0,1],[0,1],[3,1],[0,1],[1,0],[0,1],[2,0],[2,-1],[1,1],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[2,0],[1,0],[1,0],[2,-2],[1,-1],[1,0],[1,-1],[3,2],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[3,1],[1,0],[0,1],[1,0],[2,2],[1,0],[0,-1],[0,-1],[1,0],[1,0],[2,1],[1,1],[-1,1],[-1,0],[1,2],[2,2],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[2,0],[1,-1],[2,0],[1,0],[0,-1],[-1,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[2,0],[0,-1],[-1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,2],[0,1],[2,0],[1,-1],[1,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[2,0],[1,-1],[0,1],[1,0],[2,0],[2,0],[1,0],[0,-1],[2,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-3],[-1,-2],[-1,-2],[-2,-3],[2,0],[1,1],[3,4],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,2],[0,1],[1,0],[1,1],[1,1],[0,1],[0,2],[-2,1],[-2,1],[-2,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[1,0],[2,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[-1,1],[1,1],[1,0],[0,1],[-2,0],[-1,-1],[-1,0],[-1,0],[1,1],[2,1],[0,1],[0,2],[-1,0],[-1,1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,1],[2,0],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[4,0],[1,0],[2,0],[1,0],[1,0],[1,1],[0,1],[-2,3],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,2],[0,1],[0,1],[1,1],[2,0],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[1,0],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[-2,2],[-1,2],[1,1],[1,0],[1,1],[1,0],[1,0],[2,-1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,1],[1,1],[2,0],[-1,0],[-2,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[2,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,1],[0,2],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,1],[1,1],[1,0],[3,1],[1,1],[1,0],[1,1],[2,0],[1,1],[1,0],[1,0],[1,1],[-1,0],[0,1],[2,0],[1,0],[1,1],[1,0],[1,0],[2,0],[2,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[3,1],[1,0],[2,-1],[0,1],[-2,2],[0,1],[0,1],[1,1],[-1,1],[1,0],[3,-1],[1,0],[0,1],[0,1],[1,0],[2,0],[1,0],[1,1],[1,0],[2,0],[1,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[3,0],[-1,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,1],[0,1],[0,1],[0,1],[2,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-2,2],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[2,-1],[0,1],[1,1],[3,0],[1,-1],[1,0],[0,-1],[1,1],[2,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,1],[2,0],[2,1],[1,0],[2,1],[1,0],[1,0],[2,2],[-1,0],[-1,0],[0,1],[0,1],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[1,2],[1,1],[0,1],[0,1],[0,1],[-1,1],[1,2],[1,1],[-1,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,4],[0,4],[-1,1],[0,1],[0,2],[1,1],[1,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,2],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[1,2],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[2,0],[2,-2],[0,-1],[1,0],[3,-1],[2,-1],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,-1],[2,0],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[3,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[0,-1],[1,0],[1,0],[3,-1],[2,0],[2,-1],[3,0],[1,0],[3,-1],[0,-1],[4,-2],[2,-1],[1,0],[1,-1],[2,-2],[0,-1],[1,-1],[1,0],[1,0],[2,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,-1],[1,-1],[2,0],[2,-1],[3,0],[1,-3],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[2,-1],[2,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,0],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-4,-2],[-3,-1],[-1,0],[-1,0],[-3,0],[-1,-1],[-2,-1],[-3,-2],[-3,-1],[-1,0],[-3,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[-4,2],[-1,1],[-1,0],[-1,0],[-3,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-4,-1],[-3,-2],[-4,-1],[-6,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-1],[-1,0],[0,-2],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[1,-2],[1,0],[1,-1],[2,-2],[2,-1],[2,0],[1,0],[0,-1],[0,-1],[0,-3],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-2],[-2,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-3,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[0,-1],[1,-1],[0,-2],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-2,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[-3,-2],[1,-4],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-2,0],[-3,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[0,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,-2],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-2],[-1,-2],[0,-1],[1,-1],[1,-1],[3,-2],[1,-1],[1,-1],[1,0],[1,0],[3,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[2,-1],[0,-1],[2,-1],[0,-1],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-5,0],[-5,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-3,0],[-3,-1],[-2,0],[-1,-1],[-2,-1],[-2,0],[-1,-1],[-2,-2],[-1,0],[-1,-2],[-1,0],[-1,-1],[-3,0],[-2,-1],[-1,-1],[0,-2],[-2,-2],[1,-2],[1,0],[2,-1],[1,-1],[3,0]],[[4142,6272],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,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,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[4160,6288],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0]],[[4156,6297],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,-1]],[[4470,6120],[1,-6],[1,-6],[3,-5],[7,-7],[1,0],[3,-4],[1,-1],[1,-3],[1,-1],[2,0],[8,-3],[1,0],[-4,-4],[-5,1],[-4,1],[-5,1],[2,-3],[-4,-2],[1,-1],[-2,-1],[-1,0],[-4,1],[-3,-2],[-2,-1],[0,-1],[-7,-2],[-2,0],[-4,-3],[-4,-4],[0,1],[-1,0],[-1,0],[-2,0],[2,-3],[-1,-1],[0,1],[-1,0],[0,-3],[0,-1],[0,-2],[-14,-3],[-30,-7],[-19,1],[-13,1],[-12,1],[-8,1],[-3,1],[-2,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-3,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-2],[-2,-2],[-2,-2],[-2,-2],[-10,-7],[2,-2],[2,-1],[2,-1],[2,-2],[2,-2],[0,-1],[-1,-1],[-2,0],[-3,-1],[-6,-1],[-8,-2],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[-1,-1],[-1,-2],[-1,-2],[-2,-1],[0,-1],[-1,-1],[0,-1],[1,0],[1,-1],[1,0],[2,0],[1,0],[2,0],[3,0],[2,-1],[3,0],[3,-2],[3,-1],[2,-1],[3,-1],[2,-1],[1,-2],[1,-1],[1,-2],[0,-2],[0,-1],[0,-2],[-1,-1],[-1,-2],[-1,0],[-2,-1],[-3,0],[1,-2],[1,-1],[0,-2],[1,-2],[0,-2],[0,-4],[-20,5],[-90,18],[-6,4],[-51,27],[-18,21],[-15,18],[10,32],[25,9],[45,17],[-2,11],[-19,4],[-1,0],[-4,6],[0,2],[2,1],[3,1],[-4,10],[-2,7],[-52,7],[-17,2],[-30,14],[-8,3],[-4,7],[-3,3],[-2,3],[0,3]],[[4160,6288],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[-1,0],[-1,0],[1,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[1,0],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[4218,6296],[-2,0],[-1,1],[1,1],[0,1],[0,1],[1,0],[2,0],[0,-1],[-1,-1],[0,-1],[0,-1]],[[4176,6298],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1]],[[4219,6301],[-1,1],[1,0],[1,0],[0,-1],[-1,0]],[[4336,6307],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[2,1],[0,-1],[1,0],[1,-1],[-1,0]],[[4342,6321],[-2,0],[1,1],[-1,0],[1,0],[1,0],[1,-1],[-1,0]],[[4365,6325],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[1,0],[1,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1]],[[4336,6327],[-2,0],[-2,0],[-2,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1]]],"transform":{"scale":[0.0002049999294911864,0.00024065891098887338],"translate":[-9.301515672,41.866325962000005]}}
#!/usr/bin/env bash
topojson \
shp/border.shp shp/coruna.shp \
-q 8000 \
-o map.json \
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment