Skip to content

Instantly share code, notes, and snippets.

@rveciana
Last active September 12, 2016 08:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rveciana/57ab45aad3cda72b879a9a96498a2394 to your computer and use it in GitHub Desktop.
Save rveciana/57ab45aad3cda72b879a9a96498a2394 to your computer and use it in GitHub Desktop.
Comparing two topojson for the congressional districts

Comparing two files with the congressional districts.

  • us_congress.json has better resolution, but some territories are not there: Guam, Marianas and American Samoa
  • us_territories has a very coarse resolution, as if a buffer had been aplied to the geometries. Puerto Rico and Virgin Islands are too close.
import {epsilon} from "./math";
import {geoConicConformal as conicConformal} from "d3-geo";
import {path} from "d3-path";
// The projections must have mutually exclusive clip regions on the sphere,
// as this will avoid emitting interleaving lines and polygons.
function multiplex(streams) {
var n = streams.length;
return {
point: function(x, y) { var i = -1; while (++i < n) {streams[i].point(x, y); }},
sphere: function() { var i = -1; while (++i < n) {streams[i].sphere(); }},
lineStart: function() { var i = -1; while (++i < n) {streams[i].lineStart(); }},
lineEnd: function() { var i = -1; while (++i < n) {streams[i].lineEnd(); }},
polygonStart: function() { var i = -1; while (++i < n) {streams[i].polygonStart(); }},
polygonEnd: function() { var i = -1; while (++i < n) {streams[i].polygonEnd(); }}
};
}
// A composite projection for Spain, configured by default for 960×500.
export default function() {
var cache,
cacheStream,
iberianPeninsule = conicConformal().rotate([5, -38.6]), iberianPeninsulePoint,
canaryIslands = conicConformal().rotate([5, -38.6]), canaryIslandsPoint,
point, pointStream = {point: function(x, y) { point = [x, y]; }};
/*
var iberianPeninsuleBbox = [[-11, 46], [4, 35]];
var canaryIslandsBbox = [[-19.0, 28.85], [-12.7, 28.1]];
*/
function conicConformalSpain(coordinates) {
var x = coordinates[0], y = coordinates[1];
return point = null,
(iberianPeninsulePoint.point(x, y), point) ||
(canaryIslandsPoint.point(x, y), point);
}
conicConformalSpain.invert = function(coordinates) {
var k = iberianPeninsule.scale(),
t = iberianPeninsule.translate(),
x = (coordinates[0] - t[0]) / k,
y = (coordinates[1] - t[1]) / k;
/*
//How are the return values calculated:
var c0 = canaryIslands(canaryIslandsBbox[0]);
var x0 = (c0[0] - t[0]) / k;
var y0 = (c0[1] - t[1]) / k;
console.info("p0 canary islands", x0 + ' - ' + y0);
var c1 = canaryIslands(canaryIslandsBbox[1]);
var x1 = (c1[0] - t[0]) / k;
var y1 = (c1[1] - t[1]) / k;
console.info("p1 canary islands", x1 + ' - ' + y1);
*/
return (y >= 0.05346 && y< 0.0897 && x >= -0.13388 && x < -0.0322 ? canaryIslands
: iberianPeninsule).invert(coordinates);
};
conicConformalSpain.stream = function(stream) {
return cache && cacheStream === stream ? cache : cache = multiplex([iberianPeninsule.stream(cacheStream = stream), canaryIslands.stream(stream)]);
};
conicConformalSpain.precision = function(_) {
if (!arguments.length) {return iberianPeninsule.precision();}
iberianPeninsule.precision(_);
canaryIslands.precision(_);
return conicConformalSpain;
};
conicConformalSpain.scale = function(_) {
if (!arguments.length) {return iberianPeninsule.scale();}
iberianPeninsule.scale(_);
canaryIslands.scale(_);
return conicConformalSpain.translate(iberianPeninsule.translate());
};
conicConformalSpain.translate = function(_) {
if (!arguments.length) {return iberianPeninsule.translate();}
var k = iberianPeninsule.scale(), x = +_[0], y = +_[1];
/*
var c0 = iberianPeninsule(iberianPeninsuleBbox[0]);
var x0 = (x - c0[0]) / k;
var y0 = (y - c0[1]) / k;
var c1 = iberianPeninsule(iberianPeninsuleBbox[1]);
var x1 = (x - c1[0]) / k;
var y1 = (y - c1[1]) / k;
console.info('Iberian Peninsula: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
c0 = canaryIslands.translate([x + 0.1 * k, y - 0.094 * k])(canaryIslandsBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = canaryIslands.translate([x + 0.1 * k, y - 0.094 * k])(canaryIslandsBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('Canry Islands: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
*/
iberianPeninsulePoint = iberianPeninsule
.translate(_)
.clipExtent([[x - 0.06857 * k, y - 0.1288 * k],[x + 0.13249 * k, y + 0.05292 * k]])
.stream(pointStream);
canaryIslandsPoint = canaryIslands
.translate([x + 0.1 * k, y - 0.094 * k])
.clipExtent([[x - 0.1331 * k + epsilon, y + 0.053457 * k + epsilon],[x - 0.0354 * k - epsilon, y + 0.08969 * k - epsilon]])
.stream(pointStream);
return conicConformalSpain;
};
conicConformalSpain.drawCompositionBorders = function(context) {
/*
console.info("CLIP EXTENT: ", canaryIslands.clipExtent());
console.info("UL BBOX:", iberianPeninsule.invert([canaryIslands.clipExtent()[0][0], canaryIslands.clipExtent()[0][1]]));
console.info("UR BBOX:", iberianPeninsule.invert([canaryIslands.clipExtent()[1][0], canaryIslands.clipExtent()[0][1]]));
console.info("LD BBOX:", iberianPeninsule.invert([canaryIslands.clipExtent()[1][0], canaryIslands.clipExtent()[1][1]]));
*/
var ulCanaryIslands = iberianPeninsule([-14.0346750522884, 34.96500729877966]);
var urCanaryIslands = iberianPeninsule([-7.4208899681602025, 35.53698899616862]);
var ldCanaryIslands = iberianPeninsule([-7.314827535125545, 33.54359498636456]);
context.moveTo(ulCanaryIslands[0], ulCanaryIslands[1]);
context.lineTo(urCanaryIslands[0], urCanaryIslands[1]);
context.lineTo(ldCanaryIslands[0], ldCanaryIslands[1]);
};
conicConformalSpain.getCompositionBorders = function() {
var context = path();
this.drawCompositionBorders(context);
return context.toString();
};
return conicConformalSpain.scale(2700);
}
// http://geoexamples.com/d3-composite-projections/ Version 1.0.0. Copyright 2016 Roger Veciana i Rovira.
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('d3-geo'), require('d3-path')) :
typeof define === 'function' && define.amd ? define(['exports', 'd3-geo', 'd3-path'], factory) :
(factory((global.d3 = global.d3 || {}),global.d3,global.d3));
}(this, function (exports,d3Geo,d3Path) { 'use strict';
var epsilon = 1e-6;
// The projections must have mutually exclusive clip regions on the sphere,
// as this will avoid emitting interleaving lines and polygons.
function multiplex(streams) {
var n = streams.length;
return {
point: function(x, y) { var i = -1; while (++i < n) streams[i].point(x, y); },
sphere: function() { var i = -1; while (++i < n) streams[i].sphere(); },
lineStart: function() { var i = -1; while (++i < n) streams[i].lineStart(); },
lineEnd: function() { var i = -1; while (++i < n) streams[i].lineEnd(); },
polygonStart: function() { var i = -1; while (++i < n) streams[i].polygonStart(); },
polygonEnd: function() { var i = -1; while (++i < n) streams[i].polygonEnd(); }
};
}
// A composite projection for the United States, configured by default for
// 960×500. Also works quite well at 960×600 with scale 1285. The set of
// standard parallels for each region comes from USGS, which is published here:
// http://egsc.usgs.gov/isb/pubs/MapProjections/projections.html#albers
function albersUsa() {
var cache,
cacheStream,
lower48 = d3Geo.geoAlbers(), lower48Point,
alaska = d3Geo.geoConicEqualArea().rotate([154, 0]).center([-2, 58.5]).parallels([55, 65]), alaskaPoint, // EPSG:3338
hawaii = d3Geo.geoConicEqualArea().rotate([157, 0]).center([-3, 19.9]).parallels([8, 18]), hawaiiPoint, // ESRI:102007
point, pointStream = {point: function(x, y) { point = [x, y]; }};
function albersUsa(coordinates) {
var x = coordinates[0], y = coordinates[1];
return point = null,
(lower48Point.point(x, y), point)
|| (alaskaPoint.point(x, y), point)
|| (hawaiiPoint.point(x, y), point);
}
albersUsa.invert = function(coordinates) {
var k = lower48.scale(),
t = lower48.translate(),
x = (coordinates[0] - t[0]) / k,
y = (coordinates[1] - t[1]) / k;
return (y >= 0.120 && y < 0.234 && x >= -0.425 && x < -0.214 ? alaska
: y >= 0.166 && y < 0.234 && x >= -0.214 && x < -0.115 ? hawaii
: lower48).invert(coordinates);
};
albersUsa.stream = function(stream) {
return cache && cacheStream === stream ? cache : cache = multiplex([lower48.stream(cacheStream = stream), alaska.stream(stream), hawaii.stream(stream)]);
};
albersUsa.precision = function(_) {
if (!arguments.length) return lower48.precision();
lower48.precision(_), alaska.precision(_), hawaii.precision(_);
return albersUsa;
};
albersUsa.scale = function(_) {
if (!arguments.length) return lower48.scale();
lower48.scale(_), alaska.scale(_ * 0.35), hawaii.scale(_);
return albersUsa.translate(lower48.translate());
};
albersUsa.translate = function(_) {
if (!arguments.length) return lower48.translate();
var k = lower48.scale(), x = +_[0], y = +_[1];
lower48Point = lower48
.translate(_)
.clipExtent([[x - 0.455 * k, y - 0.238 * k], [x + 0.455 * k, y + 0.238 * k]])
.stream(pointStream);
alaskaPoint = alaska
.translate([x - 0.307 * k, y + 0.201 * k])
.clipExtent([[x - 0.425 * k + epsilon, y + 0.120 * k + epsilon], [x - 0.214 * k - epsilon, y + 0.234 * k - epsilon]])
.stream(pointStream);
hawaiiPoint = hawaii
.translate([x - 0.205 * k, y + 0.212 * k])
.clipExtent([[x - 0.214 * k + epsilon, y + 0.166 * k + epsilon], [x - 0.115 * k - epsilon, y + 0.234 * k - epsilon]])
.stream(pointStream);
return albersUsa;
};
albersUsa.drawCompositionBorders = function(context) {
var hawaii1 = lower48([-102.91, 26.3]);
var hawaii2 = lower48([-104.0, 27.5]);
var hawaii3 = lower48([-108.0, 29.1]);
var hawaii4 = lower48([-110.0, 29.1]);
var alaska1 = lower48([-110.0, 26.7]);
var alaska2 = lower48([-112.8, 27.6]);
var alaska3 = lower48([-114.3, 30.6]);
var alaska4 = lower48([-119.3, 30.1]);
context.moveTo(hawaii1[0], hawaii1[1]);
context.lineTo(hawaii2[0], hawaii2[1]);
context.lineTo(hawaii3[0], hawaii3[1]);
context.lineTo(hawaii4[0], hawaii4[1]);
context.moveTo(alaska1[0], alaska1[1]);
context.lineTo(alaska2[0], alaska2[1]);
context.lineTo(alaska3[0], alaska3[1]);
context.lineTo(alaska4[0], alaska4[1]);
};
albersUsa.getCompositionBorders = function() {
var context = d3Path.path();
this.drawCompositionBorders(context);
return context.toString();
};
return albersUsa.scale(1070);
}
// The projections must have mutually exclusive clip regions on the sphere,
// as this will avoid emitting interleaving lines and polygons.
function multiplex$1(streams) {
var n = streams.length;
return {
point: function(x, y) { var i = -1; while (++i < n) streams[i].point(x, y); },
sphere: function() { var i = -1; while (++i < n) streams[i].sphere(); },
lineStart: function() { var i = -1; while (++i < n) streams[i].lineStart(); },
lineEnd: function() { var i = -1; while (++i < n) streams[i].lineEnd(); },
polygonStart: function() { var i = -1; while (++i < n) streams[i].polygonStart(); },
polygonEnd: function() { var i = -1; while (++i < n) streams[i].polygonEnd(); }
};
}
// A composite projection for the United States, configured by default for
// 960×500. Also works quite well at 960×600 with scale 1285. The set of
// standard parallels for each region comes from USGS, which is published here:
// http://egsc.usgs.gov/isb/pubs/MapProjections/projections.html#albers
function albersUsaTerritories() {
var cache,
cacheStream,
lower48 = d3Geo.geoAlbers(), lower48Point,
alaska = d3Geo.geoConicEqualArea().rotate([154, 0]).center([-2, 58.5]).parallels([55, 65]), alaskaPoint, // EPSG:3338
hawaii = d3Geo.geoConicEqualArea().rotate([157, 0]).center([-3, 19.9]).parallels([8, 18]), hawaiiPoint, // ESRI:102007
puertoRico = d3Geo.geoConicEqualArea().rotate([66, 0]).center([0, 18]).parallels([8, 18]), puertoRicoPoint, //Taken from https://bl.ocks.org/mbostock/5629120
samoa = d3Geo.geoEquirectangular().rotate([173, 14]), samoaPoint, // EPSG:4169
guam = d3Geo.geoEquirectangular().rotate([-145, -16.8]), guamPoint,
point, pointStream = {point: function(x, y) { point = [x, y]; }};
/*
var puertoRicoBbox = [[-68.3, 19], [-63.9, 17]];
var samoaBbox = [[-171, -14], [-168, -14.8]];
var guamBbox = [[144, 20.8], [146.5, 12.7]];
*/
function albersUsa(coordinates) {
var x = coordinates[0], y = coordinates[1];
return point = null,
(lower48Point.point(x, y), point) ||
(alaskaPoint.point(x, y), point) ||
(hawaiiPoint.point(x, y), point) ||
(puertoRicoPoint.point(x, y), point) ||
(samoaPoint.point(x, y), point) ||
(guamPoint.point(x, y), point);
}
albersUsa.invert = function(coordinates) {
var k = lower48.scale(),
t = lower48.translate(),
x = (coordinates[0] - t[0]) / k,
y = (coordinates[1] - t[1]) / k;
/*
//How are the return values calculated:
console.info("******");
var c0 = puertoRico(puertoRicoBbox[0]);
var x0 = (c0[0] - t[0]) / k;
var y0 = (c0[1] - t[1]) / k;
console.info("p0 puertoRico", x0 + ' - ' + y0);
var c1 = puertoRico(puertoRicoBbox[1]);
var x1 = (c1[0] - t[0]) / k;
var y1 = (c1[1] - t[1]) / k;
console.info("p1 puertoRico", x1 + ' - ' + y1);
c0 = samoa(samoaBbox[0]);
x0 = (c0[0] - t[0]) / k;
y0 = (c0[1] - t[1]) / k;
console.info("p0 samoa", x0 + ' - ' + y0);
c1 = samoa(samoaBbox[1]);
x1 = (c1[0] - t[0]) / k;
y1 = (c1[1] - t[1]) / k;
console.info("p1 samoa", x1 + ' - ' + y1);
c0 = guam(guamBbox[0]);
x0 = (c0[0] - t[0]) / k;
y0 = (c0[1] - t[1]) / k;
console.info("p0 guam", x0 + ' - ' + y0);
c1 = guam(guamBbox[1]);
x1 = (c1[0] - t[0]) / k;
y1 = (c1[1] - t[1]) / k;
console.info("p1 guam", x1 + ' - ' + y1);
*/
return (y >= 0.120 && y < 0.234 && x >= -0.425 && x < -0.214 ? alaska
: y >= 0.166 && y < 0.234 && x >= -0.214 && x < -0.115 ? hawaii
: y >= 0.2064 && y < 0.2413 && x >= 0.312 && x < 0.385 ? puertoRico
: y >= 0.09 && y < 0.1197 && x >= -0.4243 && x < -0.3232 ? samoa
: y >= -0.0518 && y < 0.0895 && x >= -0.4243 && x < -0.3824 ? guam
: lower48).invert(coordinates);
};
albersUsa.stream = function(stream) {
return cache && cacheStream === stream ? cache : cache = multiplex$1([lower48.stream(cacheStream = stream), alaska.stream(stream), hawaii.stream(stream), puertoRico.stream(stream), samoa.stream(stream), guam.stream(stream)]);
};
albersUsa.precision = function(_) {
if (!arguments.length) {return lower48.precision();}
lower48.precision(_);
alaska.precision(_);
hawaii.precision(_);
puertoRico.precision(_);
samoa.precision(_);
guam.precision(_);
return albersUsa;
};
albersUsa.scale = function(_) {
if (!arguments.length) {return lower48.scale();}
lower48.scale(_);
alaska.scale(_ * 0.35);
hawaii.scale(_);
puertoRico.scale(_);
samoa.scale(_* 2);
guam.scale(_);
return albersUsa.translate(lower48.translate());
};
albersUsa.translate = function(_) {
if (!arguments.length) {return lower48.translate();}
var k = lower48.scale(), x = +_[0], y = +_[1];
/*
var c0 = puertoRico.translate([x + 0.350 * k, y + 0.224 * k])(puertoRicoBbox[0]);
var x0 = (x - c0[0]) / k;
var y0 = (y - c0[1]) / k;
var c1 = puertoRico.translate([x + 0.350 * k, y + 0.224 * k])(puertoRicoBbox[1]);
var x1 = (x - c1[0]) / k;
var y1 = (y - c1[1]) / k;
console.info('puertoRico: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
c0 = samoa.translate([x - 0.492 * k, y + 0.09 * k])(samoaBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = samoa.translate([x - 0.492 * k, y + 0.09 * k])(samoaBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('samoa: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
c0 = guam.translate([x - 0.408 * k, y + 0.018 * k])(guamBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = guam.translate([x - 0.408 * k, y + 0.018 * k])(guamBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('guam: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
*/
lower48Point = lower48
.translate(_)
.clipExtent([[x - 0.455 * k, y - 0.238 * k], [x + 0.455 * k, y + 0.238 * k]])
.stream(pointStream);
alaskaPoint = alaska
.translate([x - 0.307 * k, y + 0.201 * k])
.clipExtent([[x - 0.425 * k + epsilon, y + 0.120 * k + epsilon], [x - 0.214 * k - epsilon, y + 0.233 * k - epsilon]])
.stream(pointStream);
hawaiiPoint = hawaii
.translate([x - 0.205 * k, y + 0.212 * k])
.clipExtent([[x - 0.214 * k + epsilon, y + 0.166 * k + epsilon], [x - 0.115 * k - epsilon, y + 0.233 * k - epsilon]])
.stream(pointStream);
puertoRicoPoint = puertoRico
.translate([x + 0.350 * k, y + 0.224 * k])
.clipExtent([[x + 0.312 * k + epsilon, y + 0.2064 * k + epsilon],[x + 0.385 * k - epsilon, y + 0.233 * k - epsilon]])
.stream(pointStream);
samoaPoint = samoa
.translate([x - 0.492 * k, y + 0.09 * k])
.clipExtent([[x - 0.4243 * k + epsilon, y + 0.0903 * k + epsilon],[x - 0.3233 * k - epsilon, y + 0.1197 * k - epsilon]])
.stream(pointStream);
guamPoint = guam
.translate([x - 0.408 * k, y + 0.018 * k])
.clipExtent([[x - 0.4244 * k + epsilon, y - 0.0519 * k + epsilon],[x - 0.3824 * k - epsilon, y + 0.0895 * k - epsilon]])
.stream(pointStream);
return albersUsa;
};
albersUsa.drawCompositionBorders = function(context) {
/*
console.info("CLIP EXTENT hawaii: ", hawaii.clipExtent());
console.info("UL BBOX:", lower48.invert([hawaii.clipExtent()[0][0], hawaii.clipExtent()[0][1]]));
console.info("UR BBOX:", lower48.invert([hawaii.clipExtent()[1][0], hawaii.clipExtent()[0][1]]));
console.info("LD BBOX:", lower48.invert([hawaii.clipExtent()[1][0], hawaii.clipExtent()[1][1]]));
console.info("LL BBOX:", lower48.invert([hawaii.clipExtent()[0][0], hawaii.clipExtent()[1][1]]));
console.info("CLIP EXTENT alaska: ", alaska.clipExtent());
console.info("UL BBOX:", lower48.invert([alaska.clipExtent()[0][0], alaska.clipExtent()[0][1]]));
console.info("UR BBOX:", lower48.invert([alaska.clipExtent()[1][0], alaska.clipExtent()[0][1]]));
console.info("LD BBOX:", lower48.invert([alaska.clipExtent()[1][0], alaska.clipExtent()[1][1]]));
console.info("LL BBOX:", lower48.invert([alaska.clipExtent()[0][0], alaska.clipExtent()[1][1]]));
console.info("CLIP EXTENT puertoRico: ", puertoRico.clipExtent());
console.info("UL BBOX:", lower48.invert([puertoRico.clipExtent()[0][0], puertoRico.clipExtent()[0][1]]));
console.info("UR BBOX:", lower48.invert([puertoRico.clipExtent()[1][0], puertoRico.clipExtent()[0][1]]));
console.info("LD BBOX:", lower48.invert([puertoRico.clipExtent()[1][0], puertoRico.clipExtent()[1][1]]));
console.info("LL BBOX:", lower48.invert([puertoRico.clipExtent()[0][0], puertoRico.clipExtent()[1][1]]));
console.info("CLIP EXTENT samoa: ", samoa.clipExtent());
console.info("UL BBOX:", lower48.invert([samoa.clipExtent()[0][0], samoa.clipExtent()[0][1]]));
console.info("UR BBOX:", lower48.invert([samoa.clipExtent()[1][0], samoa.clipExtent()[0][1]]));
console.info("LD BBOX:", lower48.invert([samoa.clipExtent()[1][0], samoa.clipExtent()[1][1]]));
console.info("LL BBOX:", lower48.invert([samoa.clipExtent()[0][0], samoa.clipExtent()[1][1]]));
console.info("CLIP EXTENT guam: ", guam.clipExtent());
console.info("UL BBOX:", lower48.invert([guam.clipExtent()[0][0], guam.clipExtent()[0][1]]));
console.info("UR BBOX:", lower48.invert([guam.clipExtent()[1][0], guam.clipExtent()[0][1]]));
console.info("LD BBOX:", lower48.invert([guam.clipExtent()[1][0], guam.clipExtent()[1][1]]));
console.info("LL BBOX:", lower48.invert([guam.clipExtent()[0][0], guam.clipExtent()[1][1]]));
*/
var ulhawaii = lower48([-110.4641, 28.2805]);
var urhawaii = lower48([-104.0597, 28.9528]);
var ldhawaii = lower48([-103.7049, 25.1031]);
var llhawaii = lower48([-109.8337, 24.4531]);
var ulalaska = lower48([ -124.4745, 28.1407]);
var uralaska = lower48([ -110.931, 30.8844]);
var ldalaska = lower48([-109.8337, 24.4531]);
var llalaska = lower48([-122.4628, 21.8562]);
var ulpuertoRico = lower48([-76.8579, 25.1544]);
var urpuertoRico = lower48([-72.429, 24.2097]);
var ldpuertoRico = lower48([-72.8265, 22.7056]);
var llpuertoRico = lower48([-77.1852, 23.6392]);
var ulsamoa = lower48([-125.0093, 29.7791]);
var ursamoa = lower48([-118.5193, 31.3262]);
var ldsamoa = lower48([-118.064, 29.6912]);
var llsamoa = lower48([-124.4369, 28.169]);
var ulguam = lower48([-128.1314, 37.4582]);
var urguam = lower48([-125.2132, 38.214]);
var ldguam = lower48([-122.3616, 30.5115]);
var llguam = lower48([-125.0315, 29.8211]);
context.moveTo(ulhawaii[0], ulhawaii[1]);
context.lineTo(urhawaii[0], urhawaii[1]);
context.lineTo(ldhawaii[0], ldhawaii[1]);
context.lineTo(ldhawaii[0], ldhawaii[1]);
context.lineTo(llhawaii[0], llhawaii[1]);
context.closePath();
context.moveTo(ulalaska[0], ulalaska[1]);
context.lineTo(uralaska[0], uralaska[1]);
context.lineTo(ldalaska[0], ldalaska[1]);
context.lineTo(ldalaska[0], ldalaska[1]);
context.lineTo(llalaska[0], llalaska[1]);
context.closePath();
context.moveTo(ulpuertoRico[0], ulpuertoRico[1]);
context.lineTo(urpuertoRico[0], urpuertoRico[1]);
context.lineTo(ldpuertoRico[0], ldpuertoRico[1]);
context.lineTo(ldpuertoRico[0], ldpuertoRico[1]);
context.lineTo(llpuertoRico[0], llpuertoRico[1]);
context.closePath();
context.moveTo(ulsamoa[0], ulsamoa[1]);
context.lineTo(ursamoa[0], ursamoa[1]);
context.lineTo(ldsamoa[0], ldsamoa[1]);
context.lineTo(ldsamoa[0], ldsamoa[1]);
context.lineTo(llsamoa[0], llsamoa[1]);
context.closePath();
context.moveTo(ulguam[0], ulguam[1]);
context.lineTo(urguam[0], urguam[1]);
context.lineTo(ldguam[0], ldguam[1]);
context.lineTo(ldguam[0], ldguam[1]);
context.lineTo(llguam[0], llguam[1]);
context.closePath();
};
albersUsa.getCompositionBorders = function() {
var context = d3Path.path();
this.drawCompositionBorders(context);
return context.toString();
};
return albersUsa.scale(1070);
}
// The projections must have mutually exclusive clip regions on the sphere,
// as this will avoid emitting interleaving lines and polygons.
function multiplex$2(streams) {
var n = streams.length;
return {
point: function(x, y) { var i = -1; while (++i < n) {streams[i].point(x, y); }},
sphere: function() { var i = -1; while (++i < n) {streams[i].sphere(); }},
lineStart: function() { var i = -1; while (++i < n) {streams[i].lineStart(); }},
lineEnd: function() { var i = -1; while (++i < n) {streams[i].lineEnd(); }},
polygonStart: function() { var i = -1; while (++i < n) {streams[i].polygonStart(); }},
polygonEnd: function() { var i = -1; while (++i < n) {streams[i].polygonEnd(); }}
};
}
// A composite projection for Spain, configured by default for 960×500.
function conicConformalSpain() {
var cache,
cacheStream,
iberianPeninsule = d3Geo.geoConicConformal().rotate([5, -38.6]).parallels([0,60]), iberianPeninsulePoint,
canaryIslands = d3Geo.geoConicConformal().rotate([5, -38.6]).parallels([0,60]), canaryIslandsPoint,
point, pointStream = {point: function(x, y) { point = [x, y]; }};
/*
var iberianPeninsuleBbox = [[-11, 46], [4, 35]];
var canaryIslandsBbox = [[-19.0, 28.85], [-12.7, 28.1]];
*/
function conicConformalSpain(coordinates) {
var x = coordinates[0], y = coordinates[1];
return point = null,
(iberianPeninsulePoint.point(x, y), point) ||
(canaryIslandsPoint.point(x, y), point);
}
conicConformalSpain.invert = function(coordinates) {
var k = iberianPeninsule.scale(),
t = iberianPeninsule.translate(),
x = (coordinates[0] - t[0]) / k,
y = (coordinates[1] - t[1]) / k;
/*
//How are the return values calculated:
var c0 = canaryIslands(canaryIslandsBbox[0]);
var x0 = (c0[0] - t[0]) / k;
var y0 = (c0[1] - t[1]) / k;
console.info("p0 canary islands", x0 + ' - ' + y0);
var c1 = canaryIslands(canaryIslandsBbox[1]);
var x1 = (c1[0] - t[0]) / k;
var y1 = (c1[1] - t[1]) / k;
console.info("p1 canary islands", x1 + ' - ' + y1);
*/
return (y >= 0.05346 && y< 0.0897 && x >= -0.13388 && x < -0.0322 ? canaryIslands
: iberianPeninsule).invert(coordinates);
};
conicConformalSpain.stream = function(stream) {
return cache && cacheStream === stream ? cache : cache = multiplex$2([iberianPeninsule.stream(cacheStream = stream), canaryIslands.stream(stream)]);
};
conicConformalSpain.precision = function(_) {
if (!arguments.length) {return iberianPeninsule.precision();}
iberianPeninsule.precision(_);
canaryIslands.precision(_);
return conicConformalSpain;
};
conicConformalSpain.scale = function(_) {
if (!arguments.length) {return iberianPeninsule.scale();}
iberianPeninsule.scale(_);
canaryIslands.scale(_);
return conicConformalSpain.translate(iberianPeninsule.translate());
};
conicConformalSpain.translate = function(_) {
if (!arguments.length) {return iberianPeninsule.translate();}
var k = iberianPeninsule.scale(), x = +_[0], y = +_[1];
/*
var c0 = iberianPeninsule(iberianPeninsuleBbox[0]);
var x0 = (x - c0[0]) / k;
var y0 = (y - c0[1]) / k;
var c1 = iberianPeninsule(iberianPeninsuleBbox[1]);
var x1 = (x - c1[0]) / k;
var y1 = (y - c1[1]) / k;
console.info('Iberian Peninsula: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
c0 = canaryIslands.translate([x + 0.1 * k, y - 0.094 * k])(canaryIslandsBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = canaryIslands.translate([x + 0.1 * k, y - 0.094 * k])(canaryIslandsBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('Canry Islands: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
*/
iberianPeninsulePoint = iberianPeninsule
.translate(_)
.clipExtent([[x - 0.06857 * k, y - 0.1288 * k],[x + 0.13249 * k, y + 0.05292 * k]])
.stream(pointStream);
canaryIslandsPoint = canaryIslands
.translate([x + 0.1 * k, y - 0.094 * k])
.clipExtent([[x - 0.1331 * k + epsilon, y + 0.053457 * k + epsilon],[x - 0.0354 * k - epsilon, y + 0.08969 * k - epsilon]])
.stream(pointStream);
return conicConformalSpain;
};
conicConformalSpain.drawCompositionBorders = function(context) {
/*
console.info("CLIP EXTENT: ", canaryIslands.clipExtent());
console.info("UL BBOX:", iberianPeninsule.invert([canaryIslands.clipExtent()[0][0], canaryIslands.clipExtent()[0][1]]));
console.info("UR BBOX:", iberianPeninsule.invert([canaryIslands.clipExtent()[1][0], canaryIslands.clipExtent()[0][1]]));
console.info("LD BBOX:", iberianPeninsule.invert([canaryIslands.clipExtent()[1][0], canaryIslands.clipExtent()[1][1]]));
*/
var ulCanaryIslands = iberianPeninsule([-14.0346750522884, 34.96500729877966]);
var urCanaryIslands = iberianPeninsule([-7.4208899681602025, 35.53698899616862]);
var ldCanaryIslands = iberianPeninsule([-7.314827535125545, 33.54359498636456]);
context.moveTo(ulCanaryIslands[0], ulCanaryIslands[1]);
context.lineTo(urCanaryIslands[0], urCanaryIslands[1]);
context.lineTo(ldCanaryIslands[0], ldCanaryIslands[1]);
};
conicConformalSpain.getCompositionBorders = function() {
var context = d3Path.path();
this.drawCompositionBorders(context);
return context.toString();
};
return conicConformalSpain.scale(2700);
}
// The projections must have mutually exclusive clip regions on the sphere,
// as this will avoid emitting interleaving lines and polygons.
function multiplex$3(streams) {
var n = streams.length;
return {
point: function(x, y) { var i = -1; while (++i < n) {streams[i].point(x, y); }},
sphere: function() { var i = -1; while (++i < n) {streams[i].sphere(); }},
lineStart: function() { var i = -1; while (++i < n) {streams[i].lineStart(); }},
lineEnd: function() { var i = -1; while (++i < n) {streams[i].lineEnd(); }},
polygonStart: function() { var i = -1; while (++i < n) {streams[i].polygonStart(); }},
polygonEnd: function() { var i = -1; while (++i < n) {streams[i].polygonEnd(); }}
};
}
// A composite projection for Portugal, configured by default for 960×500.
function conicConformalPortugal() {
var cache,
cacheStream,
iberianPeninsule = d3Geo.geoConicConformal().rotate([10, -39.3]).parallels([0, 60]), iberianPeninsulePoint,
madeira = d3Geo.geoConicConformal().rotate([17, -32.7]).parallels([0, 60]), madeiraPoint,
azores = d3Geo.geoConicConformal().rotate([27.8, -38.6]).parallels([0, 60]), azoresPoint,
point, pointStream = {point: function(x, y) { point = [x, y]; }};
/*
var iberianPeninsuleBbox = [[-11, 46], [4, 34]];
var madeiraBbox = [[-17.85, 33.6], [-16, 32.02]];
var azoresBbox = [[-32, 40.529], [-23.98, 35.75]];
*/
function conicConformalPortugal(coordinates) {
var x = coordinates[0], y = coordinates[1];
return point = null,
(iberianPeninsulePoint.point(x, y), point) ||
(madeiraPoint.point(x, y), point) ||
(azoresPoint.point(x, y), point);
}
conicConformalPortugal.invert = function(coordinates) {
var k = iberianPeninsule.scale(),
t = iberianPeninsule.translate(),
x = (coordinates[0] - t[0]) / k,
y = (coordinates[1] - t[1]) / k;
/*
//How are the return values calculated:
console.info("******");
var c0 = madeira(madeiraBbox[0]);
var x0 = (c0[0] - t[0]) / k;
var y0 = (c0[1] - t[1]) / k;
console.info("p0 madeira", x0 + ' - ' + y0);
var c1 = madeira(madeiraBbox[1]);
var x1 = (c1[0] - t[0]) / k;
var y1 = (c1[1] - t[1]) / k;
console.info("p1 madeira", x1 + ' - ' + y1);
c0 = azores(azoresBbox[0]);
x0 = (c0[0] - t[0]) / k;
y0 = (c0[1] - t[1]) / k;
console.info("p0 azores", x0 + ' - ' + y0);
c1 = azores(azoresBbox[1]);
x1 = (c1[0] - t[0]) / k;
y1 = (c1[1] - t[1]) / k;
console.info("p1 azores", x1 + ' - ' + y1);
*/
return (y >= 0.0093 && y< 0.03678 && x >= -0.03875 && x < -0.0116 ? madeira
: y >= -0.0412 && y< 0.0091 && x >= -0.07782 && x < -0.01166 ? azores
: iberianPeninsule).invert(coordinates);
};
conicConformalPortugal.stream = function(stream) {
return cache && cacheStream === stream ? cache : cache = multiplex$3([iberianPeninsule.stream(cacheStream = stream), madeira.stream(stream), azores.stream(stream)]);
};
conicConformalPortugal.precision = function(_) {
if (!arguments.length) {return iberianPeninsule.precision();}
iberianPeninsule.precision(_);
madeira.precision(_);
azores.precision(_);
return conicConformalPortugal;
};
conicConformalPortugal.scale = function(_) {
if (!arguments.length) {return iberianPeninsule.scale();}
iberianPeninsule.scale(_);
madeira.scale(_);
azores.scale(_ * 0.6);
return conicConformalPortugal.translate(iberianPeninsule.translate());
};
conicConformalPortugal.translate = function(_) {
if (!arguments.length) {return iberianPeninsule.translate();}
var k = iberianPeninsule.scale(), x = +_[0], y = +_[1];
/*
var c0 = iberianPeninsule(iberianPeninsuleBbox[0]);
var x0 = (x - c0[0]) / k;
var y0 = (y - c0[1]) / k;
var c1 = iberianPeninsule(iberianPeninsuleBbox[1]);
var x1 = (x - c1[0]) / k;
var y1 = (y - c1[1]) / k;
console.info('Iberian Peninsula: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k]])');
c0 = madeira.translate([x - 0.0265 * k, y + 0.025 * k])(madeiraBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = madeira.translate([x - 0.0265 * k, y + 0.025 * k])(madeiraBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('Madeira: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
c0 = azores.translate([x - 0.045 * k, y + -0.02 * k])(azoresBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = azores.translate([x - 0.045 * k, y + -0.02 * k])(azoresBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('Azores: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
*/
iberianPeninsulePoint = iberianPeninsule
.translate(_)
.clipExtent([[x - 0.0115 * k, y - 0.1138 * k],[x +0.2105 * k, y +0.0673 * k]])
.stream(pointStream);
madeiraPoint = madeira
.translate([x - 0.0265 * k, y + 0.025 * k])
.clipExtent([[x - 0.0388 * k + epsilon, y + 0.0093 * k + epsilon],[x - 0.0116 * k - epsilon, y + 0.0368 * k - epsilon]])
.stream(pointStream);
azoresPoint = azores
.translate([x - 0.045 * k, y + -0.02 * k])
.clipExtent([[x - 0.0778 * k + epsilon, y - 0.0413 * k + epsilon],[x - 0.0117 * k - epsilon, y + 0.0091 * k - epsilon]])
.stream(pointStream);
return conicConformalPortugal;
};
conicConformalPortugal.drawCompositionBorders = function(context) {
/*
console.info("CLIP EXTENT MADEIRA: ", madeira.clipExtent());
console.info("UL BBOX:", iberianPeninsule.invert([madeira.clipExtent()[0][0], madeira.clipExtent()[0][1]]));
console.info("UR BBOX:", iberianPeninsule.invert([madeira.clipExtent()[1][0], madeira.clipExtent()[0][1]]));
console.info("LD BBOX:", iberianPeninsule.invert([madeira.clipExtent()[1][0], madeira.clipExtent()[1][1]]));
console.info("LL BBOX:", iberianPeninsule.invert([madeira.clipExtent()[0][0], madeira.clipExtent()[1][1]]));
console.info("CLIP EXTENT AZORES: ", azores.clipExtent());
console.info("UL BBOX:", iberianPeninsule.invert([azores.clipExtent()[0][0], azores.clipExtent()[0][1]]));
console.info("UR BBOX:", iberianPeninsule.invert([azores.clipExtent()[1][0], azores.clipExtent()[0][1]]));
console.info("LD BBOX:", iberianPeninsule.invert([azores.clipExtent()[1][0], azores.clipExtent()[1][1]]));
console.info("LL BBOX:", iberianPeninsule.invert([azores.clipExtent()[0][0], azores.clipExtent()[1][1]]));
*/
var ulmadeira = iberianPeninsule([-12.8351, 38.7113]);
var urmadeira = iberianPeninsule([-10.8482, 38.7633]);
var ldmadeira = iberianPeninsule([-10.8181, 37.2072]);
var llmadeira = iberianPeninsule([-12.7345, 37.1573]);
var ulazores = iberianPeninsule([-16.0753, 41.4436]);
var urazores = iberianPeninsule([-10.9168, 41.6861]);
var ldazores = iberianPeninsule([-10.8557, 38.7747]);
var llazores = iberianPeninsule([-15.6728, 38.5505]);
context.moveTo(ulmadeira[0], ulmadeira[1]);
context.lineTo(urmadeira[0], urmadeira[1]);
context.lineTo(ldmadeira[0], ldmadeira[1]);
context.lineTo(ldmadeira[0], ldmadeira[1]);
context.lineTo(llmadeira[0], llmadeira[1]);
context.closePath();
context.moveTo(ulazores[0], ulazores[1]);
context.lineTo(urazores[0], urazores[1]);
context.lineTo(ldazores[0], ldazores[1]);
context.lineTo(ldazores[0], ldazores[1]);
context.lineTo(llazores[0], llazores[1]);
context.closePath();
};
conicConformalPortugal.getCompositionBorders = function() {
var context = d3Path.path();
this.drawCompositionBorders(context);
return context.toString();
};
return conicConformalPortugal.scale(4200);
}
// The projections must have mutually exclusive clip regions on the sphere,
// as this will avoid emitting interleaving lines and polygons.
function multiplex$4(streams) {
var n = streams.length;
return {
point: function(x, y) { var i = -1; while (++i < n) {streams[i].point(x, y); }},
sphere: function() { var i = -1; while (++i < n) {streams[i].sphere(); }},
lineStart: function() { var i = -1; while (++i < n) {streams[i].lineStart(); }},
lineEnd: function() { var i = -1; while (++i < n) {streams[i].lineEnd(); }},
polygonStart: function() { var i = -1; while (++i < n) {streams[i].polygonStart(); }},
polygonEnd: function() { var i = -1; while (++i < n) {streams[i].polygonEnd(); }}
};
}
// A composite projection for Ecuador, configured by default for 960×500.
function mercatorEcuador() {
var cache,
cacheStream,
mainland = d3Geo.geoMercator().rotate([80, 1.5]), mainlandPoint,
galapagos = d3Geo.geoMercator().rotate([90.73, 1]), galapagosPoint,
point, pointStream = {point: function(x, y) { point = [x, y]; }};
/*
var mainlandBbox = [[-81.5, 2.7], [-70.0, -6.0]];
var galapagosBbox = [[-92.2, 0.58], [-88.8, -1.8]];
*/
function mercatorEcuador(coordinates) {
var x = coordinates[0], y = coordinates[1];
return point = null,
(mainlandPoint.point(x, y), point) ||
(galapagosPoint.point(x, y), point);
}
mercatorEcuador.invert = function(coordinates) {
var k = mainland.scale(),
t = mainland.translate(),
x = (coordinates[0] - t[0]) / k,
y = (coordinates[1] - t[1]) / k;
/*
//How are the return values calculated:
var c0 = galapagos(galapagosBbox[0]);
var x0 = (c0[0] - t[0]) / k;
var y0 = (c0[1] - t[1]) / k;
console.info("p0 galapagos", x0 + ' - ' + y0);
var c1 = galapagos(galapagosBbox[1]);
var x1 = (c1[0] - t[0]) / k;
var y1 = (c1[1] - t[1]) / k;
console.info("p1 galapagos", x1 + ' - ' + y1);
*/
return (y >= -0.0676 && y< -0.026 && x >= -0.0857 && x < -0.0263 ? galapagos
: mainland).invert(coordinates);
};
mercatorEcuador.stream = function(stream) {
return cache && cacheStream === stream ? cache : cache = multiplex$4([mainland.stream(cacheStream = stream), galapagos.stream(stream)]);
};
mercatorEcuador.precision = function(_) {
if (!arguments.length) {return mainland.precision();}
mainland.precision(_);
galapagos.precision(_);
return mercatorEcuador;
};
mercatorEcuador.scale = function(_) {
if (!arguments.length) {return mainland.scale();}
mainland.scale(_);
galapagos.scale(_);
return mercatorEcuador.translate(mainland.translate());
};
mercatorEcuador.translate = function(_) {
if (!arguments.length) {return mainland.translate();}
var k = mainland.scale(), x = +_[0], y = +_[1];
/*
var c0 = mainland(mainlandBbox[0]);
var x0 = (x - c0[0]) / k;
var y0 = (y - c0[1]) / k;
var c1 = mainland(mainlandBbox[1]);
var x1 = (x - c1[0]) / k;
var y1 = (y - c1[1]) / k;
console.info('mainland: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k]])');
c0 = galapagos.translate([x - 0.06 * k, y - 0.04 * k])(galapagosBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = galapagos.translate([x - 0.06 * k, y - 0.04 * k])(galapagosBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('galapagos: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');*/
mainlandPoint = mainland
.translate(_)
.clipExtent([[x - 0.0262 * k, y - 0.0734 * k],[x + 0.1741 * k, y + 0.079 * k]])
.stream(pointStream);
galapagosPoint = galapagos
.translate([x - 0.06 * k, y - 0.04 * k])
.clipExtent([[x - 0.0857 * k + epsilon, y - 0.0676 * k + epsilon],[x - 0.0263 * k - epsilon, y - 0.026 * k - epsilon]])
.stream(pointStream);
return mercatorEcuador;
};
mercatorEcuador.drawCompositionBorders = function(context) {
/*
console.info("CLIP EXTENT: ", galapagos.clipExtent());
console.info("UL BBOX:", mainland.invert([galapagos.clipExtent()[0][0], galapagos.clipExtent()[0][1]]));
console.info("UR BBOX:", mainland.invert([galapagos.clipExtent()[1][0], galapagos.clipExtent()[0][1]]));
console.info("LD BBOX:", mainland.invert([galapagos.clipExtent()[1][0], galapagos.clipExtent()[1][1]]));
console.info("LL BBOX:", mainland.invert([galapagos.clipExtent()[0][0], galapagos.clipExtent()[1][1]]));
*/
var ulgalapagos = mainland([-84.9032, 2.3757]);
var urgalapagos = mainland([-81.5047, 2.3708]);
var ldgalapagos = mainland([-81.5063, -0.01]);
var llgalapagos = mainland([-84.9086, -0.005]);
context.moveTo(ulgalapagos[0], ulgalapagos[1]);
context.lineTo(urgalapagos[0], urgalapagos[1]);
context.lineTo(ldgalapagos[0], ldgalapagos[1]);
context.lineTo(llgalapagos[0], llgalapagos[1]);
context.closePath();
};
mercatorEcuador.getCompositionBorders = function() {
var context = d3Path.path();
this.drawCompositionBorders(context);
return context.toString();
};
return mercatorEcuador.scale(3500);
}
// The projections must have mutually exclusive clip regions on the sphere,
// as this will avoid emitting interleaving lines and polygons.
function multiplex$5(streams) {
var n = streams.length;
return {
point: function(x, y) { var i = -1; while (++i < n) {streams[i].point(x, y); }},
sphere: function() { var i = -1; while (++i < n) {streams[i].sphere(); }},
lineStart: function() { var i = -1; while (++i < n) {streams[i].lineStart(); }},
lineEnd: function() { var i = -1; while (++i < n) {streams[i].lineEnd(); }},
polygonStart: function() { var i = -1; while (++i < n) {streams[i].polygonStart(); }},
polygonEnd: function() { var i = -1; while (++i < n) {streams[i].polygonEnd(); }}
};
}
// A composite projection for Chile, configured by default for 960×500.
function transverseMercatorChile() {
var cache,
cacheStream,
mainland = d3Geo.geoTransverseMercator().rotate([72, 37]), mainlandPoint,
antarctic = d3Geo.geoStereographic().rotate([72, 0]), antarcticPoint,
juanFernandez = d3Geo.geoMercator().rotate([80, 33.5]), juanFernandezPoint,
pascua = d3Geo.geoMercator().rotate([110, 25]), pascuaPoint,
point, pointStream = {point: function(x, y) { point = [x, y]; }};
/*
var mainlandBbox = [[-75.5, -15.0], [-32, -49.0]];
var antarcticBbox = [[-91.0, -60.0], [-43.0, -90.0]];
var juanFernandezBbox = [[-81.0, -33.0], [-78.5, -34.0]];
var pascuaBbox = [[-110, -26.6], [-108.7, -27.5]];
*/
function transverseMercatorChile(coordinates) {
var x = coordinates[0], y = coordinates[1];
return point = null,
(mainlandPoint.point(x, y), point) ||
(antarcticPoint.point(x, y), point) ||
(juanFernandezPoint.point(x, y), point) ||
(pascuaPoint.point(x, y), point);
}
transverseMercatorChile.invert = function(coordinates) {
var k = mainland.scale(),
t = mainland.translate(),
x = (coordinates[0] - t[0]) / k,
y = (coordinates[1] - t[1]) / k;
/*
//How are the return values calculated:
console.info("******");
var c0 = antarctic(antarcticBbox[0]);
var x0 = (c0[0] - t[0]) / k;
var y0 = (c0[1] - t[1]) / k;
console.info("p0 antarctic", x0 + ' - ' + y0);
var c1 = antarctic(antarcticBbox[1]);
var x1 = (c1[0] - t[0]) / k;
var y1 = (c1[1] - t[1]) / k;
console.info("p1 antarctic", x1 + ' - ' + y1);
c0 = juanFernandez(juanFernandezBbox[0]);
x0 = (c0[0] - t[0]) / k;
y0 = (c0[1] - t[1]) / k;
console.info("p0 juanFernandez", x0 + ' - ' + y0);
c1 = juanFernandez(juanFernandezBbox[1]);
x1 = (c1[0] - t[0]) / k;
y1 = (c1[1] - t[1]) / k;
console.info("p1 juanFernandez", x1 + ' - ' + y1);
c0 = pascua(pascuaBbox[0]);
x0 = (c0[0] - t[0]) / k;
y0 = (c0[1] - t[1]) / k;
console.info("p0 pascua", x0 + ' - ' + y0);
c1 = pascua(pascuaBbox[1]);
x1 = (c1[0] - t[0]) / k;
y1 = (c1[1] - t[1]) / k;
console.info("p1 pascua", x1 + ' - ' + y1);
*/
return (y >= 0.2582 && y< 0.32 && x >= -0.1036 && x < -0.087 ? antarctic
: y >= -0.01298 && y< 0.0133 && x >= -0.11396 && x < -0.05944 ? juanFernandez
: y >= 0.01539 && y< 0.03911 && x >= -0.089 && x < -0.0588 ? pascua
: mainland).invert(coordinates);
};
transverseMercatorChile.stream = function(stream) {
return cache && cacheStream === stream ? cache : cache = multiplex$5([mainland.stream(cacheStream = stream), antarctic.stream(stream), juanFernandez.stream(stream), pascua.stream(stream)]);
};
transverseMercatorChile.precision = function(_) {
if (!arguments.length) {return mainland.precision();}
mainland.precision(_);
antarctic.precision(_);
juanFernandez.precision(_);
pascua.precision(_);
return transverseMercatorChile;
};
transverseMercatorChile.scale = function(_) {
if (!arguments.length) {return mainland.scale();}
mainland.scale(_);
antarctic.scale(_ * 0.15);
juanFernandez.scale(_ * 1.5);
pascua.scale(_ * 1.5);
return transverseMercatorChile.translate(mainland.translate());
};
transverseMercatorChile.translate = function(_) {
if (!arguments.length) {return mainland.translate();}
var k = mainland.scale(), x = +_[0], y = +_[1];
/*
var c0 = mainland(mainlandBbox[0]);
var x0 = (x - c0[0]) / k;
var y0 = (y - c0[1]) / k;
var c1 = mainland(mainlandBbox[1]);
var x1 = (x - c1[0]) / k;
var y1 = (y - c1[1]) / k;
console.info('Mainland: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k]])');
c0 = antarctic.translate([x - 0.1 * k, y + 0.17 * k])(antarcticBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = antarctic.translate([x - 0.1 * k, y + 0.17 * k])(antarcticBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('antarctic: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('Doesn t work due to -90 latitude!' + '.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
c0 = juanFernandez.translate([x - 0.092 * k, y -0 * k])(juanFernandezBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = juanFernandez.translate([x - 0.092 * k, y -0 * k])(juanFernandezBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('juanFernandez: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
c0 = pascua.translate([x - 0.089 * k, y -0.0265 * k])(pascuaBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = pascua.translate([x - 0.089 * k, y -0.0265 * k])(pascuaBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('pascua: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
*/
mainlandPoint = mainland
.translate(_)
.clipExtent([[x - 0.059 * k, y - 0.3835 * k],[x + 0.4498 * k, y + 0.3375 * k]])
.stream(pointStream);
antarcticPoint = antarctic
.translate([x - 0.087 * k, y + 0.17 * k])
.clipExtent([[x - 0.1166 * k + epsilon, y + 0.2582 * k + epsilon],[x - 0.06 * k - epsilon, y + 0.32 * k - epsilon]])
.stream(pointStream);
juanFernandezPoint = juanFernandez
.translate([x - 0.092 * k, y - 0 * k])
.clipExtent([[x - 0.114 * k + epsilon, y - 0.013 * k + epsilon],[x - 0.0594 * k - epsilon, y + 0.0133 * k - epsilon]])
.stream(pointStream);
pascuaPoint = pascua
.translate([x - 0.089 * k, y - 0.0265 * k])
.clipExtent([[x - 0.089 * k + epsilon, y + 0.0154 * k + epsilon],[x - 0.0588 * k - epsilon, y + 0.0391 * k - epsilon]])
.stream(pointStream);
return transverseMercatorChile;
};
transverseMercatorChile.drawCompositionBorders = function(context) {
/*
console.info("CLIP EXTENT antarctic: ", antarctic.clipExtent());
console.info("UL BBOX:", mainland.invert([antarctic.clipExtent()[0][0], antarctic.clipExtent()[0][1]]));
console.info("UR BBOX:", mainland.invert([antarctic.clipExtent()[1][0], antarctic.clipExtent()[0][1]]));
console.info("LD BBOX:", mainland.invert([antarctic.clipExtent()[1][0], antarctic.clipExtent()[1][1]]));
console.info("LL BBOX:", mainland.invert([antarctic.clipExtent()[0][0], antarctic.clipExtent()[1][1]]));
console.info("CLIP EXTENT juanFernandez: ", juanFernandez.clipExtent());
console.info("UL BBOX:", mainland.invert([juanFernandez.clipExtent()[0][0], juanFernandez.clipExtent()[0][1]]));
console.info("UR BBOX:", mainland.invert([juanFernandez.clipExtent()[1][0], juanFernandez.clipExtent()[0][1]]));
console.info("LD BBOX:", mainland.invert([juanFernandez.clipExtent()[1][0], juanFernandez.clipExtent()[1][1]]));
console.info("LL BBOX:", mainland.invert([juanFernandez.clipExtent()[0][0], juanFernandez.clipExtent()[1][1]]));
console.info("CLIP EXTENT pascua: ", pascua.clipExtent());
console.info("UL BBOX:", mainland.invert([pascua.clipExtent()[0][0], pascua.clipExtent()[0][1]]));
console.info("UR BBOX:", mainland.invert([pascua.clipExtent()[1][0], pascua.clipExtent()[0][1]]));
console.info("LD BBOX:", mainland.invert([pascua.clipExtent()[1][0], pascua.clipExtent()[1][1]]));
console.info("LL BBOX:", mainland.invert([pascua.clipExtent()[0][0], pascua.clipExtent()[1][1]]));
*/
var ulantarctic = mainland([-82.6999, -51.3043]);
var urantarctic = mainland([-77.5442, -51.6631]);
var ldantarctic = mainland([-78.0254, -55.1860]);
var llantarctic = mainland([-83.6106, -54.7785]);
var uljuanFernandez = mainland([-80.0638, -35.9840]);
var urjuanFernandez = mainland([-76.2153, -36.1811]);
var ldjuanFernandez = mainland([-76.2994, -37.6839]);
var lljuanFernandez = mainland([-80.2231, -37.4757]);
var ulpascua = mainland([-78.442, -37.706]);
var urpascua = mainland([-76.263, -37.8054]);
var ldpascua = mainland([-76.344, -39.1595]);
var llpascua = mainland([-78.5638, -39.0559]);
context.moveTo(ulantarctic[0], ulantarctic[1]);
context.lineTo(urantarctic[0], urantarctic[1]);
context.lineTo(ldantarctic[0], ldantarctic[1]);
context.lineTo(ldantarctic[0], ldantarctic[1]);
context.lineTo(llantarctic[0], llantarctic[1]);
context.closePath();
context.moveTo(uljuanFernandez[0], uljuanFernandez[1]);
context.lineTo(urjuanFernandez[0], urjuanFernandez[1]);
context.lineTo(ldjuanFernandez[0], ldjuanFernandez[1]);
context.lineTo(ldjuanFernandez[0], ldjuanFernandez[1]);
context.lineTo(lljuanFernandez[0], lljuanFernandez[1]);
context.closePath();
context.moveTo(ulpascua[0], ulpascua[1]);
context.lineTo(urpascua[0], urpascua[1]);
context.lineTo(ldpascua[0], ldpascua[1]);
context.lineTo(ldpascua[0], ldpascua[1]);
context.lineTo(llpascua[0], llpascua[1]);
context.closePath();
};
transverseMercatorChile.getCompositionBorders = function() {
var context = d3Path.path();
this.drawCompositionBorders(context);
return context.toString();
};
return transverseMercatorChile.scale(700);
}
// The projections must have mutually exclusive clip regions on the sphere,
// as this will avoid emitting interleaving lines and polygons.
function multiplex$6(streams) {
var n = streams.length;
return {
point: function(x, y) { var i = -1; while (++i < n) {streams[i].point(x, y); }},
sphere: function() { var i = -1; while (++i < n) {streams[i].sphere(); }},
lineStart: function() { var i = -1; while (++i < n) {streams[i].lineStart(); }},
lineEnd: function() { var i = -1; while (++i < n) {streams[i].lineEnd(); }},
polygonStart: function() { var i = -1; while (++i < n) {streams[i].polygonStart(); }},
polygonEnd: function() { var i = -1; while (++i < n) {streams[i].polygonEnd(); }}
};
}
// A composite projection for Portugal, configured by default for 960×500.
function conicEquidistantJapan() {
var cache,
cacheStream,
mainland = d3Geo.geoConicEquidistant().rotate([-136, -32]).parallels([40, 34]), mainlandPoint, //gis.stackexchange.com/a/73135
hokkaido = d3Geo.geoConicEquidistant().rotate([-136, -32]).parallels([40, 34]), hokkaidoPoint,
okinawa = d3Geo.geoConicEquidistant().rotate([-136, -32]).parallels([40, 34]), okinawaPoint,
point, pointStream = {point: function(x, y) { point = [x, y]; }};
/*
var mainlandBbox = [[-11, 46], [4, 34]];
var hokkaidoBbox = [[-17.85, 33.6], [-16, 32.02]];
var okinawaBbox = [[-32, 40.529], [-23.98, 35.75]];
*/
function conicEquidistantJapan(coordinates) {
var x = coordinates[0], y = coordinates[1];
return point = null,
(mainlandPoint.point(x, y), point) ||
(hokkaidoPoint.point(x, y), point) ||
(okinawaPoint.point(x, y), point);
}
conicEquidistantJapan.invert = function(coordinates) {
var k = mainland.scale(),
t = mainland.translate(),
x = (coordinates[0] - t[0]) / k,
y = (coordinates[1] - t[1]) / k;
/*
//How are the return values calculated:
console.info("******");
var c0 = hokkaido(hokkaidoBbox[0]);
var x0 = (c0[0] - t[0]) / k;
var y0 = (c0[1] - t[1]) / k;
console.info("p0 hokkaido", x0 + ' - ' + y0);
var c1 = hokkaido(hokkaidoBbox[1]);
var x1 = (c1[0] - t[0]) / k;
var y1 = (c1[1] - t[1]) / k;
console.info("p1 hokkaido", x1 + ' - ' + y1);
c0 = okinawa(okinawaBbox[0]);
x0 = (c0[0] - t[0]) / k;
y0 = (c0[1] - t[1]) / k;
console.info("p0 okinawa", x0 + ' - ' + y0);
c1 = okinawa(okinawaBbox[1]);
x1 = (c1[0] - t[0]) / k;
y1 = (c1[1] - t[1]) / k;
console.info("p1 okinawa", x1 + ' - ' + y1);
*/
return (y >= 0.0093 && y< 0.03678 && x >= -0.03875 && x < -0.0116 ? hokkaido
: y >= -0.0412 && y< 0.0091 && x >= -0.07782 && x < -0.01166 ? okinawa
: mainland).invert(coordinates);
};
conicEquidistantJapan.stream = function(stream) {
return cache && cacheStream === stream ? cache : cache = multiplex$6([mainland.stream(cacheStream = stream), hokkaido.stream(stream), okinawa.stream(stream)]);
};
conicEquidistantJapan.precision = function(_) {
if (!arguments.length) {return mainland.precision();}
mainland.precision(_);
hokkaido.precision(_);
okinawa.precision(_);
return conicEquidistantJapan;
};
conicEquidistantJapan.scale = function(_) {
if (!arguments.length) {return mainland.scale();}
mainland.scale(_);
hokkaido.scale(_);
okinawa.scale(_);
return conicEquidistantJapan.translate(mainland.translate());
};
conicEquidistantJapan.translate = function(_) {
if (!arguments.length) {return mainland.translate();}
var k = mainland.scale(), x = +_[0], y = +_[1];
/*
var c0 = mainland(mainlandBbox[0]);
var x0 = (x - c0[0]) / k;
var y0 = (y - c0[1]) / k;
var c1 = mainland(mainlandBbox[1]);
var x1 = (x - c1[0]) / k;
var y1 = (y - c1[1]) / k;
console.info('Iberian Peninsula: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k]])');
c0 = hokkaido.translate([x - 0.0265 * k, y + 0.025 * k])(hokkaidoBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = hokkaido.translate([x - 0.0265 * k, y + 0.025 * k])(hokkaidoBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('hokkaido: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
c0 = okinawa.translate([x - 0.045 * k, y + -0.02 * k])(okinawaBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = okinawa.translate([x - 0.045 * k, y + -0.02 * k])(okinawaBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('okinawa: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
*/
mainlandPoint = mainland
.translate(_)
//.clipExtent([[x - 0.0115 * k, y - 0.1138 * k],[x +0.2105 * k, y +0.0673 * k]])
.stream(pointStream);
hokkaidoPoint = hokkaido
.translate(_)
//.translate([x - 0.0265 * k, y + 0.025 * k])
//.clipExtent([[x - 0.0388 * k + epsilon, y + 0.0093 * k + epsilon],[x - 0.0116 * k - epsilon, y + 0.0368 * k - epsilon]])
.stream(pointStream);
okinawaPoint = okinawa
.translate(_)
//.translate([x - 0.045 * k, y + -0.02 * k])
//.clipExtent([[x - 0.0778 * k + epsilon, y - 0.0413 * k + epsilon],[x - 0.0117 * k - epsilon, y + 0.0091 * k - epsilon]])
.stream(pointStream);
return conicEquidistantJapan;
};
conicEquidistantJapan.drawCompositionBorders = function(context) {
/*
console.info("CLIP EXTENT hokkaido: ", hokkaido.clipExtent());
console.info("UL BBOX:", mainland.invert([hokkaido.clipExtent()[0][0], hokkaido.clipExtent()[0][1]]));
console.info("UR BBOX:", mainland.invert([hokkaido.clipExtent()[1][0], hokkaido.clipExtent()[0][1]]));
console.info("LD BBOX:", mainland.invert([hokkaido.clipExtent()[1][0], hokkaido.clipExtent()[1][1]]));
console.info("LL BBOX:", mainland.invert([hokkaido.clipExtent()[0][0], hokkaido.clipExtent()[1][1]]));
console.info("CLIP EXTENT okinawa: ", okinawa.clipExtent());
console.info("UL BBOX:", mainland.invert([okinawa.clipExtent()[0][0], okinawa.clipExtent()[0][1]]));
console.info("UR BBOX:", mainland.invert([okinawa.clipExtent()[1][0], okinawa.clipExtent()[0][1]]));
console.info("LD BBOX:", mainland.invert([okinawa.clipExtent()[1][0], okinawa.clipExtent()[1][1]]));
console.info("LL BBOX:", mainland.invert([okinawa.clipExtent()[0][0], okinawa.clipExtent()[1][1]]));
*/
var ulhokkaido = mainland([-12.8351, 38.7113]);
var urhokkaido = mainland([-10.8482, 38.7633]);
var ldhokkaido = mainland([-10.8181, 37.2072]);
var llhokkaido = mainland([-12.7345, 37.1573]);
var ulokinawa = mainland([-16.0753, 41.4436]);
var urokinawa = mainland([-10.9168, 41.6861]);
var ldokinawa = mainland([-10.8557, 38.7747]);
var llokinawa = mainland([-15.6728, 38.5505]);
context.moveTo(ulhokkaido[0], ulhokkaido[1]);
context.lineTo(urhokkaido[0], urhokkaido[1]);
context.lineTo(ldhokkaido[0], ldhokkaido[1]);
context.lineTo(ldhokkaido[0], ldhokkaido[1]);
context.lineTo(llhokkaido[0], llhokkaido[1]);
context.closePath();
context.moveTo(ulokinawa[0], ulokinawa[1]);
context.lineTo(urokinawa[0], urokinawa[1]);
context.lineTo(ldokinawa[0], ldokinawa[1]);
context.lineTo(ldokinawa[0], ldokinawa[1]);
context.lineTo(llokinawa[0], llokinawa[1]);
context.closePath();
};
conicEquidistantJapan.getCompositionBorders = function() {
var context = d3Path.path();
this.drawCompositionBorders(context);
return context.toString();
};
return conicEquidistantJapan.scale(2200);
}
exports.geoAlbersUsa = albersUsa;
exports.geoAlbersUsaTerritories = albersUsaTerritories;
exports.geoConicConformalSpain = conicConformalSpain;
exports.geoConicConformalPortugal = conicConformalPortugal;
exports.geoMercatorEcuador = mercatorEcuador;
exports.geoTransverseMercatorChile = transverseMercatorChile;
exports.geoConicEquidistantJapan = conicEquidistantJapan;
Object.defineProperty(exports, '__esModule', { value: true });
}));
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.states {
fill: #ccc;
stroke: #fff;
}
</style>
<body>
<script src="https://d3js.org/d3-array.v1.min.js"></script>
<script src="https://d3js.org/d3-geo.v1.min.js"></script>
<script src="https://d3js.org/d3-selection.v1.min.js"></script>
<script src="https://d3js.org/d3-collection.v1.min.js"></script>
<script src="https://d3js.org/d3-dispatch.v1.min.js"></script>
<script src="https://d3js.org/d3-request.v1.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="d3-composite-projections.js"></script>
<script>
var width = 960,
height = 500;
var projection = d3.geoAlbersUsaTerritories();;
var path = d3.geoPath()
.projection(projection);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
svg.append("path")
.datum({type: "Sphere"})
.attr("d", path)
.style("fill","#eee");
d3.json("us_congress.json", function(error, congress) {
d3.json("us_territories.json", function(error, us) {
svg.append("path")
.attr("class", "us")
.datum(topojson.feature(us, us.objects.us))
.attr("d", path)
.style("fill","#f33");
svg.append("path")
.attr("class", "us")
.datum(topojson.feature(congress, congress.objects.cgd114p010g))
.attr("d", path)
.style("fill","#33f")
.style("opacity",0.5);
});
});
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"cgd114p010g":{"type":"GeometryCollection","bbox":[-179.14733999999999,17.674395666000066,179.77848000000006,71.38921046500005],"geometries":[{"type":"Polygon","arcs":[[0,1,2,3,4]]},{"type":"Polygon","arcs":[[5,6,7,8,9,-3]]},{"type":"Polygon","arcs":[[10,11,12,13,14,15,16,17,18,-9,19]]},{"type":"MultiPolygon","arcs":[[[20]],[[21,22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28,29,30,31,-16]]]},{"type":"Polygon","arcs":[[32,33,34,-29,-15,13,-13,11,-11,35,36]]},{"type":"Polygon","arcs":[[37,-36,-20,-8]]},{"type":"Polygon","arcs":[[38,39,40,-37,-38,-7]]},{"type":"MultiPolygon","arcs":[[[-23,41]],[[42]],[[-35,43,44,-30]]]},{"type":"MultiPolygon","arcs":[[[45]],[[46]],[[47]],[[48]],[[49]],[[50,51,52,53,-44,-34]]]},{"type":"MultiPolygon","arcs":[[[54]],[[55]],[[56]],[[57,58,59,60,61,62,63,64,65,66,67,68,69,70,-53,71]]]},{"type":"MultiPolygon","arcs":[[[72,73]],[[74,75]],[[76,77,78,79,80,81,82,83,84,85]],[[86,87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96,97,-59,98]]]},{"type":"MultiPolygon","arcs":[[[99]],[[100]],[[101]],[[102]],[[103,-70]],[[-69,104,105,106,107,108]]]},{"type":"MultiPolygon","arcs":[[[109,110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120,121]],[[122,123]],[[124]],[[125,126,127,128,129,130,-77,131]],[[-87,132]]]},{"type":"MultiPolygon","arcs":[[[-124,133,-122,134,-130,135,136,-105,-68,66,-66,64,-64,62,-62,137]],[[-79,138]],[[81,-81,139,-83]],[[-85,140]],[[141,-76,142,-73,143,-60,-98]]]},{"type":"Polygon","arcs":[[144,145,146,-136,-129]]},{"type":"MultiPolygon","arcs":[[[147]],[[148]],[[149,150]],[[151]],[[152]],[[153]],[[154,155,156,157,-145,-128]],[[158,-110,159,-126]]]},{"type":"Polygon","arcs":[[160,161,-146,-158]]},{"type":"MultiPolygon","arcs":[[[162]],[[163,164]],[[165]],[[166,167]],[[168,169]],[[170,171]],[[172,-161,-157,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188]]]},{"type":"Polygon","arcs":[[-137,-147,-162,-173,-172,189,-106]]},{"type":"MultiPolygon","arcs":[[[190,191,192]],[[193]],[[194]],[[195,-150]],[[196,197,-174,-156]]]},{"type":"MultiPolygon","arcs":[[[198,199,200,201,202,-108]]]},{"type":"Polygon","arcs":[[-190,-171,-189,187,-187,203,204,-199,-107]]},{"type":"MultiPolygon","arcs":[[[205,206,207,208,209]],[[184,-185,-184,210,211]],[[212]],[[-205,213,-200]]]},{"type":"MultiPolygon","arcs":[[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227,228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270,271,272,273]],[[274]],[[275]],[[276]],[[277]],[[278]],[[279]],[[280]],[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288,289]],[[290,291,292]]]},{"type":"MultiPolygon","arcs":[[[293]],[[294]],[[295,-207]],[[-209,296]],[[297]],[[298]],[[299]],[[300,-202,301,-210]],[[302]]]},{"type":"MultiPolygon","arcs":[[[303,-167]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310,-169,311,-211,-183]]]},{"type":"MultiPolygon","arcs":[[[312]],[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[324]],[[-179,177,-177,325,326,327,328]],[[329]],[[330]],[[331,-181]],[[-165,332]]]},{"type":"Polygon","arcs":[[333,-192,334,335,336,337,338,339,340,341,342,343,344,345,346,-175,-198]]},{"type":"Polygon","arcs":[[-336,347]]},{"type":"MultiPolygon","arcs":[[[348,-343,341,-341,339,-339,337,-337,-348,-335,-191,349]]]},{"type":"MultiPolygon","arcs":[[[350]],[[351]],[[352]],[[353,354,355,-346,344,-344,-349,356]]]},{"type":"MultiPolygon","arcs":[[[357]],[[358,359,360,-355]]]},{"type":"MultiPolygon","arcs":[[[361,-290]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[-347,-356,-361,369,-293,370,-328,326,-326,-176]]]},{"type":"Polygon","arcs":[[-51,-33,-41,371,372,373,374]]},{"type":"MultiPolygon","arcs":[[[375,376]],[[377,378,379,-372,-40,380,381,382,383]]]},{"type":"Polygon","arcs":[[384,385,386,387,388,389,390,391,392,393,-394,393,394,395,396]]},{"type":"MultiPolygon","arcs":[[[397]],[[398,-395,-394,393,-394,-393,391,-391,389,-389,387,-387,399,400,401,402,403]]]},{"type":"Polygon","arcs":[[404,-397,405,406,407]]},{"type":"Polygon","arcs":[[408,409,-72,-52,-375,-374,-373,-380,410]]},{"type":"MultiPolygon","arcs":[[[411,-385,-405,412,413,414,415,416,417,418,-411,-379,419]]]},{"type":"Polygon","arcs":[[420,421,422,423,-407,424,-403,425]]},{"type":"Polygon","arcs":[[426,427,428,-409,-419,429]]},{"type":"MultiPolygon","arcs":[[[400,430]],[[420,431]],[[-400,-386,-412,-420,-378,375,-384,382,-382,432,-422,-426,-402]]]},{"type":"Polygon","arcs":[[433,-423,-433,-381,-39,-6,-2,434,435]]},{"type":"Polygon","arcs":[[-398,-404,-425,-406,-396,-399]]},{"type":"Polygon","arcs":[[-417,415,-415,-414,-413,-408,-424,-434,436,437,438]]},{"type":"MultiPolygon","arcs":[[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[446]],[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]],[[468]],[[469]],[[470]],[[471,-99,-58,-410,-429,472,473]]]},{"type":"MultiPolygon","arcs":[[[474]],[[475]],[[476,477,478,479,480,481]]]},{"type":"Polygon","arcs":[[482,-480,483,484,485,486]]},{"type":"Polygon","arcs":[[487,488,489,490,491,492,-481,-483,493]]},{"type":"MultiPolygon","arcs":[[[494]],[[495]],[[496]],[[497]],[[498]],[[499]],[[500]],[[501]],[[502]],[[503]],[[504]],[[505]],[[506]],[[507]],[[508]],[[509]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[543]],[[544]],[[545]],[[546]],[[547]],[[548]],[[549]],[[550]],[[551]],[[552]],[[553]],[[554]],[[555]],[[556]],[[557]],[[558]],[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605]],[[606,607]],[[608]],[[609,610,611,612,-492]]]},{"type":"Polygon","arcs":[[-612,613,-605,614]]},{"type":"Polygon","arcs":[[-613,-615,-604,615,-482,-493]]},{"type":"Polygon","arcs":[[-4,-10,-19,616,617,618,619,620,621]]},{"type":"Polygon","arcs":[[-618,622,-489,623]]},{"type":"Polygon","arcs":[[-18,624,625,626,-490,-623,-617]]},{"type":"MultiPolygon","arcs":[[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[634]],[[-32,635,-610,-491,-627,625,-625,-17]]]},{"type":"MultiPolygon","arcs":[[[636]],[[637]],[[638]],[[639]],[[640]],[[641]],[[642]],[[643]],[[644]],[[645]],[[646]],[[647]],[[648]],[[649]],[[650]],[[651]],[[652]],[[653]],[[654]],[[655]],[[656]],[[657]],[[658]],[[659]],[[660]],[[661]],[[662]],[[663]],[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699]],[[700]],[[701]],[[702]],[[703]],[[704]],[[705]],[[706]],[[707]],[[708]],[[709]],[[710]],[[711]],[[712]],[[713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720]],[[721]],[[722]],[[723]],[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]],[[748]],[[749]],[[750]],[[751]],[[752]],[[753]],[[754]],[[755]],[[756]],[[757]],[[758]],[[759]],[[760]],[[761]],[[762]],[[763]],[[764]],[[765]],[[766]],[[767]],[[768]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]],[[797]],[[798]],[[799]],[[800]],[[801]],[[802]],[[803]],[[804]],[[805]],[[806]],[[807]],[[808]],[[809]],[[810]],[[811]],[[812]],[[813]],[[814]],[[815]],[[816]],[[817]],[[818]],[[819]],[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]],[[830]],[[831]],[[832]],[[833]],[[834]],[[835]],[[836]],[[837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[849]],[[850]],[[851]],[[852]],[[853]],[[854]],[[855]],[[856]],[[857]],[[858]],[[859]],[[860]],[[861]],[[862]],[[863]],[[864]],[[865]],[[866]],[[867]],[[868]],[[869]],[[870]],[[871]],[[872]],[[873]],[[874]],[[875]],[[876]],[[877]],[[878]],[[879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[886]],[[887]],[[888]],[[889]],[[890]],[[891]],[[892]],[[893]],[[894]],[[895]],[[896]],[[897]],[[898]],[[899]],[[900]],[[901]],[[902]],[[903]],[[904]],[[905]],[[906]],[[907]],[[908]],[[909]],[[910]],[[911]],[[912]],[[913]],[[914]],[[915]],[[916]],[[917]],[[918]],[[919]],[[920]],[[921]],[[922]],[[923]],[[924]],[[925]],[[926]],[[927]],[[928]],[[929]],[[930]],[[931]],[[932]],[[933]],[[934]],[[935]],[[936]],[[937]],[[938]],[[939]],[[940]],[[941]],[[942]],[[943,944]],[[945]],[[946]],[[947]],[[948]],[[949]],[[950]],[[951]],[[952]],[[953]],[[954]],[[955]],[[956]],[[957]],[[958]],[[959]],[[960]],[[961]],[[962]],[[963]],[[964]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]],[[974]],[[975]],[[976]],[[977]],[[978]],[[979]],[[980]],[[981]],[[982]],[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021]],[[1022]],[[1023]],[[1024]],[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]],[[1032]],[[1033]],[[1034]],[[1035]],[[1036]],[[1037]],[[1038]],[[1039]],[[1040]],[[1041]],[[1042]],[[1043]],[[1044]],[[1045]],[[1046]],[[1047]],[[1048]],[[1049]],[[1050]],[[1051]],[[1052]],[[1053]],[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062,1063,1064,1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]],[[1075]],[[1076]],[[1077]],[[1078]],[[1079]],[[1080]],[[1081]],[[1082]],[[1083]],[[1084]],[[1085]],[[1086]],[[1087]],[[1088]],[[1089]],[[1090]],[[1091]],[[1092]],[[1093]],[[1094]],[[1095]],[[1096]],[[1097]],[[1098]],[[1099]],[[1100]],[[1101]],[[1102]],[[1103]],[[1104]],[[1105]],[[1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112]],[[1113]],[[1114]],[[1115]],[[1116]],[[1117]],[[1118]],[[1119]],[[1120]],[[1121]],[[1122]],[[1123]],[[1124]],[[1125]],[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[1136]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141,1142]],[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[1165]],[[1166]],[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]],[[1174]],[[1175]],[[1176]],[[1177]],[[1178]],[[1179]],[[1180]],[[1181]],[[1182]],[[1183]],[[1184]],[[1185]],[[1186]],[[1187]],[[1188]],[[1189]],[[1190]],[[1191]],[[1192]],[[1193]],[[1194]],[[1195]],[[1196]],[[1197]],[[1198]],[[1199]],[[1200]],[[1201]],[[1202]],[[1203]],[[1204]],[[1205]],[[1206]],[[1207]],[[1208]],[[1209]],[[1210]],[[1211]],[[1212]],[[1213]],[[1214]],[[1215]],[[1216]],[[1217]],[[1218]],[[1219]],[[1220]],[[1221]],[[1222]],[[1223]],[[1224]],[[1225]],[[1226]],[[1227]],[[1228]],[[1229]],[[1230]],[[1231]],[[1232]],[[1233]],[[1234]],[[1235]],[[1236]],[[1237]],[[1238]],[[1239]],[[1240]],[[1241]],[[1242]],[[1243]],[[1244]],[[1245]],[[1246]],[[1247]],[[1248]],[[1249]],[[1250]],[[1251]],[[1252]],[[1253]],[[1254]],[[1255]],[[1256]],[[1257]],[[1258]],[[1259]],[[1260]],[[1261]],[[1262]],[[1263]],[[1264]],[[1265]],[[1266]],[[1267]],[[1268]],[[1269]],[[1270]],[[1271]],[[1272]],[[1273]],[[1274]],[[1275]],[[1276]],[[1277]],[[1278]],[[1279]],[[1280]],[[1281]],[[1282]],[[1283]],[[1284]],[[1285]],[[1286]],[[1287]],[[1288]],[[1289]],[[1290]],[[1291]],[[1292]],[[1293]],[[1294]],[[1295]],[[1296]],[[1297]],[[1298]],[[1299]],[[1300]],[[1301]],[[1302]],[[1303]],[[1304]],[[1305]],[[1306]],[[1307]],[[1308]],[[1309]],[[1310]],[[1311]],[[1312]],[[1313]],[[1314]],[[1315]],[[1316]],[[1317]],[[1318]],[[1319]],[[1320]],[[1321]],[[1322]],[[1323]],[[1324]],[[1325]],[[1326]],[[1327]],[[1328]],[[1329]],[[1330]],[[1331]],[[1332]],[[1333]],[[1334]],[[1335]],[[1336]],[[1337]],[[1338]],[[1339]],[[1340]],[[1341]],[[1342]],[[1343]],[[1344]],[[1345]],[[1346]],[[1347]],[[1348]],[[1349]],[[1350]],[[1351]],[[1352]],[[1353]],[[1354]],[[1355]],[[1356]],[[1357]],[[1358]],[[1359]],[[1360]],[[1361]],[[1362]],[[1363]],[[1364]],[[1365]],[[1366]],[[1367]],[[1368]],[[1369]],[[1370]],[[1371]],[[1372]],[[1373]],[[1374]],[[1375]],[[1376]],[[1377]],[[1378,1379,1380,1381,1382,1383,1384,1385,1386,1387]]]},{"type":"Polygon","arcs":[[1388,1389,1390,1391,1392,1393,-619,-624,-488,1394,1395,1396,1397]]},{"type":"Polygon","arcs":[[1398,1399,-1396]]},{"type":"Polygon","arcs":[[1400,-1397,-1400,1401,1402,1403,1404,1405]]},{"type":"Polygon","arcs":[[1402,-1402,-1399,-1395,-494,-487,1406,1407,-1404]]},{"type":"Polygon","arcs":[[1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419]]},{"type":"Polygon","arcs":[[-1418,1416,-1416,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429]]},{"type":"Polygon","arcs":[[1430,1431,1432,1433,1434,1435,-1422]]},{"type":"Polygon","arcs":[[-1436,1434,-1434,1436,1437,-1423]]},{"type":"Polygon","arcs":[[-1421,-1415,1438,-1431]]},{"type":"Polygon","arcs":[[-1439,-1414,1439,-1432]]},{"type":"Polygon","arcs":[[-1433,-1440,-1413,1440,-1437]]},{"type":"Polygon","arcs":[[1441,1442,1443,-1411]]},{"type":"Polygon","arcs":[[-1438,-1441,-1412,-1444,1444,1445,-1424]]},{"type":"Polygon","arcs":[[1446,1447,1448,1449,1450,1451,1452,1453]]},{"type":"MultiPolygon","arcs":[[[1454]],[[-1452,1455,1456,1457,1458]]]},{"type":"MultiPolygon","arcs":[[[1459,1460]],[[1461,-1457,1462]]]},{"type":"Polygon","arcs":[[1463,1464,-1427,1465,1466,1467,1468,1469,1470,1471]]},{"type":"Polygon","arcs":[[1472,1473,1474]]},{"type":"Polygon","arcs":[[1475,1476,1477,1478,1479,1480,1481,1482,1483]]},{"type":"MultiPolygon","arcs":[[[1484,1485]],[[1486]]]},{"type":"MultiPolygon","arcs":[[[1487,1488,1489,-1485]],[[1490]]]},{"type":"Polygon","arcs":[[1491,1492,1493,1494,1495,-1489]]},{"type":"MultiPolygon","arcs":[[[1496]],[[1497,1498,1499]]]},{"type":"Polygon","arcs":[[1500,1501,1502,-1498,1503,-1481,1504]]},{"type":"Polygon","arcs":[[1505,-1493,1506,-1502]]},{"type":"MultiPolygon","arcs":[[[1507]],[[-1482,-1504,-1500,1508,-1460,1509]],[[1510]]]},{"type":"Polygon","arcs":[[1511,1512,-1505,-1480,1478,-1478,1513]]},{"type":"Polygon","arcs":[[1514,1515,1516,1517,-1512,1518]]},{"type":"Polygon","arcs":[[1519,-1517,1520,1521,1522,-1495]]},{"type":"Polygon","arcs":[[-1513,-1518,-1520,-1494,-1506,-1501]]},{"type":"MultiPolygon","arcs":[[[1523]],[[1524]],[[1525]],[[1526]],[[1527]],[[1528]],[[1529,-1522,1530,1531,1532,1533]]]},{"type":"Polygon","arcs":[[1534,1535,-1515,1536]]},{"type":"Polygon","arcs":[[1537,-1532,1538,-1535,1539,-1470]]},{"type":"MultiPolygon","arcs":[[[1540]],[[1541]],[[1542,1543,1544,1545,-1534]]]},{"type":"Polygon","arcs":[[1546,1547,-1544,1548,1549]]},{"type":"Polygon","arcs":[[1550,-1550,1551]]},{"type":"Polygon","arcs":[[1552,1553,-1468,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571]]},{"type":"Polygon","arcs":[[1572,1573,1574,-1555,-1467]]},{"type":"Polygon","arcs":[[-1569,1575,1576,-1547,-1551,1577]]},{"type":"Polygon","arcs":[[-1469,-1554,1552,-1572,-1571,-1570,-1578,-1552,-1549,-1543,-1533,-1538]]},{"type":"MultiPolygon","arcs":[[[1578,1579]],[[1580,1581,1582,1583,1584,1585]]]},{"type":"MultiPolygon","arcs":[[[1586]],[[1587]],[[-1580,1588]],[[1589,1590,1591,1592,1593,-1582]]]},{"type":"Polygon","arcs":[[-1548,-1577,1594,1595,1596,-1584,1597,-1545]]},{"type":"Polygon","arcs":[[-1568,1566,-1566,1598,1599,-1595,-1576]]},{"type":"Polygon","arcs":[[-1600,1600,1601,-1596]]},{"type":"Polygon","arcs":[[1602,-1585,-1597,-1602]]},{"type":"Polygon","arcs":[[1603,1604,1605,1606,-1556,-1575]]},{"type":"Polygon","arcs":[[1607,1608,1609,1610,1611,1612,-1591,1613,1614,1615,1616,-1606]]},{"type":"Polygon","arcs":[[-1607,-1617,-1616,-1615,1617,-1561,-1560,-1559,1557,-1557]]},{"type":"Polygon","arcs":[[-1614,-1590,-1581,1618,-1564,1562,-1562,-1618]]},{"type":"Polygon","arcs":[[-1619,-1586,-1603,-1601,-1599,-1565]]},{"type":"Polygon","arcs":[[1619,1620,1621,1622,-1573,-1466,-1426]]},{"type":"Polygon","arcs":[[1623,-1622,1624,1625,1626,1627,1628,-1609,-1608,-1605]]},{"type":"MultiPolygon","arcs":[[[-1446,1629,1630,1631,1632,1633,1634,-1620,-1425]]]},{"type":"Polygon","arcs":[[-1574,-1623,-1624,-1604]]},{"type":"Polygon","arcs":[[-1621,-1635,1635,1636,1637,-1627,1625,-1625]]},{"type":"Polygon","arcs":[[1638,1639,-1592,-1613]]},{"type":"MultiPolygon","arcs":[[[1640]],[[-1640,1641,1642,1643,1644,1645,-1593]]]},{"type":"Polygon","arcs":[[-1628,-1638,1646,1647,-1645,1643,-1643,1648]]},{"type":"MultiPolygon","arcs":[[[-1631,1649]],[[1650,-1633,1651,-1647,-1637]]]},{"type":"Polygon","arcs":[[-1634,-1651,-1636]]},{"type":"Polygon","arcs":[[-1609,1608,-1629,-1649,-1642,-1639,-1612,1610,-1610]]},{"type":"Polygon","arcs":[[-1536,-1539,-1531,-1521,-1516]]},{"type":"Polygon","arcs":[[1652,-1471,-1540,-1537,-1519,-1514,-1477,1653,-1473,1654,-1450,1448,-1448]]},{"type":"MultiPolygon","arcs":[[[1655]],[[1656]],[[1657]],[[1658]],[[1659]],[[-1655,-1475,1660,-1484,1661,-1463,-1456,-1451]]]},{"type":"Polygon","arcs":[[1662,1663,1664,1665,1666,1667,1668]]},{"type":"MultiPolygon","arcs":[[[1669]],[[1670,1671,1672,-1665,1673,1674,1675,1676,1677,1678,1679,1680,1681]]]},{"type":"Polygon","arcs":[[1682,1683,1684,1685,-1674,-1664,1686]]},{"type":"Polygon","arcs":[[1687,1688,1689]]},{"type":"Polygon","arcs":[[1690,1691,1692,-1688,1693,-1679]]},{"type":"Polygon","arcs":[[-1693,1691,-1691,-1678,1694,-1689]]},{"type":"Polygon","arcs":[[1695,1696,1697,1698,1699,1700]]},{"type":"MultiPolygon","arcs":[[[1701]],[[1702,1703,1704,1705,-1696,1706]]]},{"type":"Polygon","arcs":[[-1706,1707,1708,1709,1710,1711,1712,1713,-1697]]},{"type":"Polygon","arcs":[[-1700,1698,-1698,-1714,1712,-1712,1714,1715,1716,1717,1718,1719,1720,1721]]},{"type":"MultiPolygon","arcs":[[[1722,1723]],[[1724]],[[1725,1726]],[[1727,1728,1729,1730,1731]]]},{"type":"Polygon","arcs":[[1732,1733,1734,1735,1736,1737]]},{"type":"Polygon","arcs":[[1738,1739,1740,-1734,1741]]},{"type":"Polygon","arcs":[[1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755]]},{"type":"Polygon","arcs":[[1756,1757,1758,-1743,1759,1760,1761,1762,1763,1764,1765]]},{"type":"Polygon","arcs":[[-1764,1762,-1762,1760,-1760,-1756,-1755,-1754,-1753,-1752,1750,-1750,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790]]},{"type":"Polygon","arcs":[[1791,1792,1793,1794,1795,1796,1797,1798,1799,1800]]},{"type":"Polygon","arcs":[[1801,1802,1803,1804,1805,1806,-1766,1807,-1797,-1796,-1795,1793,-1793,1808]]},{"type":"Polygon","arcs":[[-1808,-1765,-1791,1789,-1789,1787,-1787,1785,-1785,1783,-1783,1781,-1781,-1780,1778,-1778,-1777,1775,-1775,1773,-1773,1771,-1771,-1770,-1769,1809,1810,-1798]]},{"type":"MultiPolygon","arcs":[[[1811,1812,1813,1814,1815,-1803,1816,1817]]]},{"type":"Polygon","arcs":[[1818,-1818,1819,1820,1821,1822,1823,-1812]]},{"type":"Polygon","arcs":[[-1823,1824,1825,1826,1827,1828,1829,1830]]},{"type":"MultiPolygon","arcs":[[[1831]],[[-1824,-1831,1832,1833,-1834,1834,1835,1836,1837,-1815,1813,-1813]]]},{"type":"Polygon","arcs":[[1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,-1834,-1833,-1830,1828,-1828,1848]]},{"type":"Polygon","arcs":[[1845,-1845,1849,1850,1851,1852,-1847]]},{"type":"Polygon","arcs":[[1850,-1850,-1844,1842,-1842,1853,1854,1855,1856,1857,-1852]]},{"type":"Polygon","arcs":[[-1837,-1836,1858,1859,1860,1861,1862,1863,-1804,-1816,-1838],[-1832]]},{"type":"Polygon","arcs":[[1856,-1856,1864,1865,1866,1867,1868,1869,1870,-1863,1861,-1861,1859,-1859,-1835,1833,-1848,-1853,-1858]]},{"type":"Polygon","arcs":[[1871,1872,1873,1874,-1805,-1864,-1871,1869,-1869,1867,-1867,-1866,-1865,-1855]]},{"type":"Polygon","arcs":[[1875,1876,-1806,-1875,1873,-1873,1877]]},{"type":"Polygon","arcs":[[-1822,1878,-1840,1838,-1849,-1827,1825,-1825]]},{"type":"MultiPolygon","arcs":[[[1879]],[[1880]],[[1881]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]],[[1892]],[[1893]],[[1894]],[[1895]],[[1896]],[[1897]],[[1898]],[[1899]],[[1900]],[[1901]],[[1902]],[[1903]],[[1904]],[[1905]],[[1906]],[[1907]],[[1908]],[[1909]],[[1910]],[[1911]],[[1912]],[[1913]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]],[[1924]],[[1925]],[[1926]],[[1927]],[[1928]],[[1929]],[[1930,1931,1932,1933]]]},{"type":"MultiPolygon","arcs":[[[1934,1935]],[[1936,1937,1938,1939,1940,1941,1942,1943,-1744,-1759,1944]]]},{"type":"Polygon","arcs":[[1945,1946,1947,1948,1949]]},{"type":"Polygon","arcs":[[1950,1951,1952]]},{"type":"Polygon","arcs":[[1953,1954,1955,1956,1957,1958,1959,-1940,1960,-1948,1946,-1946,1961]]},{"type":"Polygon","arcs":[[1962,1963,1964,-1671,1965]]},{"type":"Polygon","arcs":[[1966,1967,1968,-1964]]},{"type":"Polygon","arcs":[[1969,1970,1971,1972,1973,1974,-1967,-1963,1975]]},{"type":"Polygon","arcs":[[1976,1977,1978,-1971]]},{"type":"Polygon","arcs":[[1979,-1800,1980,1981,1982]]},{"type":"Polygon","arcs":[[-1799,-1811,1983,1984,1985,-1981]]},{"type":"Polygon","arcs":[[-1985,1986,1987,1988,1989,1990]]},{"type":"Polygon","arcs":[[-1982,-1986,-1991,1991,1992,1993,1994]]},{"type":"Polygon","arcs":[[1995,1996,-1945,-1758,1997]]},{"type":"Polygon","arcs":[[1998,1999,2000,2001,-1998,-1757,-1807,-1877,2002]]},{"type":"Polygon","arcs":[[2003,-2003,-1876,2004,2005]]},{"type":"Polygon","arcs":[[2006,2007,-1999,-2004,2008]]},{"type":"Polygon","arcs":[[2009,2010,2011,2012,-2007,2013,2014]]},{"type":"Polygon","arcs":[[2015,2016,-2000,-2008,-2013]]},{"type":"Polygon","arcs":[[-2012,2017,2018,2019,2020,2021,-2016]]},{"type":"Polygon","arcs":[[-2021,2022,-1952,2023,-1996,-2002,2024]]},{"type":"Polygon","arcs":[[-2022,-2025,-2001,-2017]]},{"type":"Polygon","arcs":[[2025,2026,2027,-1742,-1733,2028]]},{"type":"Polygon","arcs":[[2029,-1978,2030]]},{"type":"Polygon","arcs":[[2031,2032,2033,2034,2035,-1972,-1979,-2030,2036]]},{"type":"Polygon","arcs":[[-1767,-1749,2037,2038,-1746,2039,-2034,2040,-2032,2041]]},{"type":"Polygon","arcs":[[2042,-1747,-2039]]},{"type":"Polygon","arcs":[[-1748,-2043,-2038]]},{"type":"Polygon","arcs":[[2043,-1983,-1995,2044,2045,2046]]},{"type":"Polygon","arcs":[[2047,-2047,2048,2049,2050,2051,2052]]},{"type":"Polygon","arcs":[[2053,-2051,2054]]},{"type":"Polygon","arcs":[[2055,-2053,2056,2057]]},{"type":"Polygon","arcs":[[2058,-2058,2059,-2055,-2050,2060,2061]]},{"type":"Polygon","arcs":[[-2052,-2054,-2060,-2057]]},{"type":"Polygon","arcs":[[2062,-2061,-2049,-2046,2063,2064,2065]]},{"type":"MultiPolygon","arcs":[[[2066]],[[2067]],[[2068,-2062,-2063,2069]]]},{"type":"MultiPolygon","arcs":[[[2070]],[[2071]],[[2072]],[[2073]],[[2074]],[[2075]],[[2076]],[[2077]],[[2078]],[[2079]],[[2080]],[[2081]],[[2082]],[[2083,2084,2085,2086]],[[2087]],[[2088]],[[2089]],[[2090]],[[2091]],[[2092]],[[2093]],[[2094]],[[2095]],[[2096]],[[2097]],[[2098]],[[2099]],[[2100,2101]],[[2102]],[[-2104]],[[2104]],[[2105]],[[2106]],[[2107]],[[2108]],[[2109]],[[2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122]],[[2123]],[[2124]],[[2125]],[[2126]],[[2127]],[[2128]],[[2129]],[[2130]]]},{"type":"Polygon","arcs":[[2131,2132,2133,2134,-2086]]},{"type":"Polygon","arcs":[[2135,2136,-2133,2137]]},{"type":"Polygon","arcs":[[2138,2139,2140,-2138,-2132,-2085]]},{"type":"MultiPolygon","arcs":[[[2141]],[[2142,2143,2144,-2139,-2084]]]},{"type":"MultiPolygon","arcs":[[[-2146]],[[2146]],[[2147,2148]],[[2149]],[[2150]],[[2151]],[[2152]],[[2153]],[[2154]],[[2155,2156,2157,-2144,2158]]]},{"type":"Polygon","arcs":[[2159,2160,-2140,-2145,-2158]]},{"type":"Polygon","arcs":[[2161,2162,2163,-2156]]},{"type":"Polygon","arcs":[[-2137,2164,-2014,-2009,-2006,2165,-2134]]},{"type":"MultiPolygon","arcs":[[[2166,2167]],[[2168,2169]],[[2170]],[[-2141,-2161,2171,2172,2173,2174,2175,-2015,-2165,-2136]]]},{"type":"MultiPolygon","arcs":[[[2176]],[[2177]],[[2178,-2173,2179,2180]]]},{"type":"Polygon","arcs":[[-2157,-2164,2181,2182,-2180,-2172,-2160]]},{"type":"MultiPolygon","arcs":[[[2183]],[[-2163,2184,2185,-2182]]]},{"type":"Polygon","arcs":[[2186,-2181,-2183,-2186]]},{"type":"Polygon","arcs":[[2187,-1707,-1701,-1722,2188,2189]]},{"type":"Polygon","arcs":[[2190,2191,2192,2193,2194,-1703,-2188,2195,2196]]},{"type":"Polygon","arcs":[[2197,-2191,2198,2199,2200]]},{"type":"MultiPolygon","arcs":[[[2201,2202]],[[2203,2204,2205,2206,2207,2208,2209,-2192,-2198,2210]]]},{"type":"MultiPolygon","arcs":[[[2211]],[[2212]],[[2213]],[[2214,-2211,-2201,2215]]]},{"type":"MultiPolygon","arcs":[[[2216]],[[2217]],[[2218]],[[2219]],[[2220]],[[2221]],[[2222]],[[2223]],[[2224]],[[2225]],[[2226]],[[2227]],[[2228]],[[2229,2230,2231,2232,2233,2234]]]},{"type":"MultiPolygon","arcs":[[[2235]],[[2236]],[[-2205,2237]],[[2238,2239,2240,-2209]],[[2241,-2202,2242,-2207]]]},{"type":"MultiPolygon","arcs":[[[2243]],[[-2234,2244,-2240,2245]]]},{"type":"Polygon","arcs":[[-2241,-2245,-2233,2246,2247,-2193,-2210]]},{"type":"Polygon","arcs":[[2248,2249,2250,2251,2252]]},{"type":"Polygon","arcs":[[2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,-2249,2269,2270]]},{"type":"MultiPolygon","arcs":[[[2271,2272]],[[2273,2274,2275,2276]],[[2277,2278,2279]],[[2280,2281]],[[2282]],[[2283]],[[2284]],[[2285]],[[2286]],[[2287,2288]],[[2289]],[[2290]],[[-1729,2291]],[[2292]],[[2293]],[[2294]],[[2295]],[[2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,-2256,2254,-2254,2323,2324,2325,-1731,2326]]]},{"type":"Polygon","arcs":[[2321,-2321,2319,-2319,2317,-2317,2315,-2315,2313,-2313,2311,-2311,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,-2257,-2323]]},{"type":"MultiPolygon","arcs":[[[2339]],[[2340,2341,2342]],[[2343,2344]],[[2345]],[[2346,2347]],[[2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,-2264,-2263,-2262,-2261,-2260,2258,-2258,-2339,2337,-2337]],[[2362,2363,2364,-2335,2333,-2333,2365]]]},{"type":"Polygon","arcs":[[2366,-2344,2367,-2342,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,-2265,-2362,2360,-2360,2358,-2358,2356,-2356,2390,-2347]]},{"type":"MultiPolygon","arcs":[[[2391]],[[2392,-2388,2386,-2386,2384,-2384,2382,-2382,2380,-2380,2378,-2378,2376,-2376,2374,-2374,2372,-2372,2370,-2370,2393]]]},{"type":"Polygon","arcs":[[2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408]]},{"type":"Polygon","arcs":[[2409,2410,2411,2412,-2406]]},{"type":"Polygon","arcs":[[-2413,2413,2414,-438,2415,2416,2417,-2407]]},{"type":"Polygon","arcs":[[2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429]]},{"type":"Polygon","arcs":[[2430,2431,-1681,2432,-1669,2433,-1739,-2028]]},{"type":"Polygon","arcs":[[2434,2435,-2252,2436,2437,2438]]},{"type":"Polygon","arcs":[[2439,2440,2441,2442,-2437,-2251]]},{"type":"Polygon","arcs":[[-2442,2443,2444,-1956,1954,-1954,2445,2446]]},{"type":"MultiPolygon","arcs":[[[2447]],[[2448]],[[2449]],[[2450]],[[2451]],[[2452]],[[-2122,2120,-2120,2118,-2118,2116,-2116,-2115,-2114,2112,-2112,2453,2454,-2056,-2059,-2069,2455]],[[2456]],[[2457]],[[2458]],[[2459]],[[2460]],[[2461]],[[2462]],[[2463]],[[2464]],[[2465]],[[2466]],[[2467]],[[2468]]]},{"type":"Polygon","arcs":[[2469,2470,2471,-1801,-1980,-2044,-2048,-2455]]},{"type":"Polygon","arcs":[[2472,2473,2474,-1809,-1792,-2472]]},{"type":"Polygon","arcs":[[2475,2476,-1820,-1817,-1802,-2475,2477]]},{"type":"MultiPolygon","arcs":[[[2478]],[[2479]],[[2480]],[[2481]],[[2482]],[[2483,2484,-2470,-2454,-2111]]]},{"type":"Polygon","arcs":[[2485,2486,2487,2488,2489,-2473,-2471,-2485]]},{"type":"Polygon","arcs":[[2490,-2478,-2474,-2490]]},{"type":"Polygon","arcs":[[2487,-2487,2491,-2476,-2491,-2489]]},{"type":"Polygon","arcs":[[-1737,2492,2493,2494,2495,2496]]},{"type":"Polygon","arcs":[[-2496,-2495,-2494,2497,2498,2499,2500,2501]]},{"type":"Polygon","arcs":[[-2500,2502,2503,2504,2505]]},{"type":"MultiPolygon","arcs":[[[2506]],[[2507]],[[2508]],[[-2503,-2499,2509,2510,2511,2512,2513,2514]]]},{"type":"MultiPolygon","arcs":[[[2515]],[[2516]],[[2517]],[[2518]],[[2519]],[[2520,2521,2522]],[[2523]],[[2524]],[[2525]],[[2526]],[[2527,-2514,2528]]]},{"type":"MultiPolygon","arcs":[[[2529]],[[2530]],[[2531]],[[-2504,-2515,-2528,2532,-2522,2533]]]},{"type":"Polygon","arcs":[[-2505,-2534,-2521,2534,2535,2536]]},{"type":"MultiPolygon","arcs":[[[2537]],[[2538]],[[2539]],[[2540]],[[-2501,-2506,-2537,2541,2542,2543]]]},{"type":"MultiPolygon","arcs":[[[2544]],[[2545]],[[2546]],[[2547]],[[2548]],[[2549]],[[2550]],[[2551]],[[2552]],[[2553]],[[2554]],[[2555]],[[2556]],[[2557]],[[2558]],[[2559]],[[2560]],[[2561]],[[2562]],[[2563]],[[2564]],[[2565,-2543,2566,2567]]]},{"type":"MultiPolygon","arcs":[[[2568]],[[-2542,-2536,2569,-2567]]]},{"type":"Polygon","arcs":[[2570,-2196,-2190,2571,2572,2573]]},{"type":"Polygon","arcs":[[2574,2575,-2409,2576,2577,-1957,-2445,2578]]},{"type":"Polygon","arcs":[[2579,2580,2581,2582,2583,2584,2585,2586,2587,-2575,2588,2589]]},{"type":"Polygon","arcs":[[-2589,-2579,-2444,-2441,2590,2591,2592]]},{"type":"MultiPolygon","arcs":[[[2593]],[[2594,2595,2596,2597,2598,2599,2600]],[[2601]],[[2602,2603,-2580,2604,2605,2606,2607,2608]]]},{"type":"Polygon","arcs":[[-2604,2609,-2600,2610,2611,-2581]]},{"type":"MultiPolygon","arcs":[[[2612,2613]],[[2614,2615]],[[2616,2617,2618,2619,2620,2621,2622,2623]],[[2624,2625,2626,2627]],[[2628,2629,-2597]],[[2630,2631]],[[-2599,2632,2633,-2611]]]},{"type":"Polygon","arcs":[[-2250,-2269,2267,-2267,2634,2635,-2605,-2590,-2593,2591,-2591,-2440]]},{"type":"Polygon","arcs":[[2636,2637,-2608,2606,-2606,-2636]]},{"type":"MultiPolygon","arcs":[[[2638,2639,2640]],[[2641]],[[2642]],[[2643]],[[-2618,2644]],[[2645,-2620]],[[-2622,2646]],[[2647,2648,2649,2650,2651,2652,2653,-2624,2654]],[[2655]],[[-2626,2656]],[[2657]],[[2658]],[[2659,-2628,2660,-2629,-2596]],[[2661]],[[2662]],[[2663]],[[2664]],[[2665]],[[2666]],[[2667]],[[2668]],[[2669]],[[2670]],[[2671]],[[2672]],[[2673]],[[2674]],[[2675]],[[2676]],[[2677]],[[2678]],[[-2275,2679]],[[-2272,2680]],[[2681,-2279]],[[2682]],[[2683,-2298,2684]],[[-2288,2685]]]},{"type":"MultiPolygon","arcs":[[[2686]],[[-2634,2687,-2631,2688,-2615,2689,-2613,2690,-2653,2691,2692,-2586,2584,-2584,2582,-2582,-2612]]]},{"type":"Polygon","arcs":[[2693,2694,-2637,-2635]]},{"type":"Polygon","arcs":[[2695,2696,2697,-1464,2698,2699,-1429,2700,2701]]},{"type":"Polygon","arcs":[[-2434,-1668,2702,2703,2704,-1740]]},{"type":"Polygon","arcs":[[2705,2706,2707,-1419,-1430,-2700,2708,-2704]]},{"type":"Polygon","arcs":[[-1667,-1420,-2708,2709,-2706,-2703]]},{"type":"Polygon","arcs":[[-2710,-2707]]},{"type":"Polygon","arcs":[[2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720]]},{"type":"Polygon","arcs":[[2721,2722,2723,2724,2725,2726,2727,2728]]},{"type":"Polygon","arcs":[[2729,2730,2731,-2727]]},{"type":"Polygon","arcs":[[2732,2733,2734,2735,2736,-2730,-2726]]},{"type":"Polygon","arcs":[[2737,2738,2739]]},{"type":"Polygon","arcs":[[2740,2741,-2735,2742,2743]]},{"type":"Polygon","arcs":[[-1407,-486,2744,2745,2746,2747,2748,-2723,2749,2750]]},{"type":"Polygon","arcs":[[2751,2752,2753,-2748]]},{"type":"Polygon","arcs":[[2754,2755,2756,2757,2758,2759,2760,2761,-2746]]},{"type":"MultiPolygon","arcs":[[[2762]],[[2763]],[[2764]],[[-2766]],[[2766,2767,2768,2769,2770]],[[-478,2771,2772]]]},{"type":"Polygon","arcs":[[2773,2774,2775,-2769,2776,2777,2778]]},{"type":"Polygon","arcs":[[-2713,2779,2780,-2774,2781]]},{"type":"MultiPolygon","arcs":[[[2782,2783]],[[2784]],[[2785]],[[2786]],[[2787]],[[2788]],[[2789]],[[2790]],[[2791,2792]],[[2793]],[[2794]],[[2795]],[[2796]],[[2797]],[[2798]],[[2799]],[[2800]],[[2801]],[[2802,2803,2804,2805,2806,2807,2808,2809,2810,-2777,-2768,2811]]]},{"type":"MultiPolygon","arcs":[[[2812]],[[2813]],[[2814]],[[2815]],[[2816]],[[2817]],[[2818]],[[2819]],[[2820,2821,2822,2823,2824]],[[2825,2826]],[[2827]],[[2828,2829,2830,2831]],[[2832]],[[2833]],[[2834]],[[2835]],[[2836]],[[2837,2838,-2783,2839]],[[2840,2841,2842,2843,2844,2845,2846,2847,2848,-2808,2849]]]},{"type":"Polygon","arcs":[[2850,2851,2852,2853,2854]]},{"type":"Polygon","arcs":[[2855,2856,2857,2858,-2743,-2734,2859,2860]]},{"type":"Polygon","arcs":[[2861,-2760,2862,-2861,2863,2864]]},{"type":"Polygon","arcs":[[2865,-2857,2866]]},{"type":"Polygon","arcs":[[2867,2868,2869,2870,-2867,-2856,-2863,-2759]]},{"type":"Polygon","arcs":[[2871,2872,-2720,2873,-2870,2868,-2868,-2758]]},{"type":"Polygon","arcs":[[2874,2875,2876,-2864,-2860,-2733,-2725]]},{"type":"Polygon","arcs":[[2877,-2865,-2877,2878]]},{"type":"Polygon","arcs":[[2879,2880,2881,2882,-2879,-2876,2883,-2753]]},{"type":"Polygon","arcs":[[-2747,-2762,2884,-2882,2880,-2880,-2752]]},{"type":"Polygon","arcs":[[-2885,-2761,-2862,-2878,-2883]]},{"type":"Polygon","arcs":[[-2754,-2884,-2875,-2724,-2749]]},{"type":"Polygon","arcs":[[-2810,2885,2886,-2855,2887,2888,-2744,-2859,2889]]},{"type":"Polygon","arcs":[[2890,-2741,-2889]]},{"type":"MultiPolygon","arcs":[[[2891]],[[2892]],[[2893]],[[-2770,-2776,2894,2895]],[[2896]],[[-479,-2773,2897,2898,-2721,-2873,2899,-484]]]},{"type":"Polygon","arcs":[[-2718,2716,-2716,2714,-2714,-2782,-2779,2900]]},{"type":"Polygon","arcs":[[2901,-2780,-2712]]},{"type":"Polygon","arcs":[[-2899,2902,-2895,-2775,-2781,-2902,-2711]]},{"type":"Polygon","arcs":[[-2809,-2849,2847,-2847,2903,-2852,2904,-2886]]},{"type":"Polygon","arcs":[[-2742,-2891,-2888,-2854,2905,-2740,2906,-2736]]},{"type":"Polygon","arcs":[[-2871,-2874,-2719,-2901,-2778,-2811,-2890,-2858,-2866]]},{"type":"Polygon","arcs":[[-485,-2900,-2872,-2757,2755,-2755,-2745]]},{"type":"MultiPolygon","arcs":[[[2907,-1393]],[[2908,-621,2909,-1391,2910,-1935,2911,-1943]]]},{"type":"Polygon","arcs":[[-620,-1394,-2908,-1392,-2910]]},{"type":"Polygon","arcs":[[2912,2913,2914,-5,-622,-2909,-1942]]},{"type":"Polygon","arcs":[[-1960,2915,2916,2917,-2913,-1941]]},{"type":"Polygon","arcs":[[2918,-2914,-2918]]},{"type":"Polygon","arcs":[[2919,-435,-1,-2915,-2919,-2917]]},{"type":"Polygon","arcs":[[2920,2921,-2416,-437,-436,-2920,-2916,-1959,2922],[2923]]},{"type":"MultiPolygon","arcs":[[[-2924]],[[-2921]],[[-2923,-1958,-2578,2924,2925,2926,-2417,-2922]]]},{"type":"Polygon","arcs":[[-2408,-2418,-2927,2925,-2925,-2577]]},{"type":"Polygon","arcs":[[-2064,-2045,-1994,2927,-2431,-2027,2928]]},{"type":"Polygon","arcs":[[2929,2930,2931,2932,2933,2934,2935,-430,-418,-439,-2415]]},{"type":"Polygon","arcs":[[2936,2937,2938,2939,2940,2941,-2935,2942,-2411,2943]]},{"type":"Polygon","arcs":[[-2412,-2943,-2934,2932,-2932,2930,-2930,-2414]]},{"type":"MultiPolygon","arcs":[[[2944,2945,2946,2947,2948,2949,2950,2951,-2940,2938,-2938,2952]],[[2953,2954]],[[2955,2956]],[[2957]],[[2958]],[[2959]],[[2960]],[[2961]],[[2962,2963]]]},{"type":"Polygon","arcs":[[2964,2965,2966,2967,2968,-427,-2936,-2942]]},{"type":"MultiPolygon","arcs":[[[2969]],[[2970]],[[2971]],[[2972]],[[2973]],[[2974]],[[2975]],[[2976]],[[2977]],[[2978,2979,2980,2981]],[[2982]],[[2983,2984]],[[2985]],[[2986,2987]],[[2988]],[[2989]],[[2990,2991]],[[2992,2993]],[[2994,2995]],[[2996]],[[2997,2998]],[[2999]],[[3000,3001]],[[3002]],[[3003]],[[3004]],[[3005]],[[3006,3007]],[[3008]],[[3009]],[[3010]],[[3011]],[[3012]],[[3013,3014]],[[3015]],[[3016]],[[3017]],[[3018]],[[3019]],[[3020]],[[3021,-2963]],[[3022,3023,-2947,3024]],[[3025,3026,3027,3028]]]},{"type":"MultiPolygon","arcs":[[[3029]],[[3030]],[[-2992,3031]],[[3032]],[[2965,-2965,-2941,-2952,-2951,-2950,2948,-2948,-3024,3033,-3015,3034,-3007,3035,-3028,3026,-3026,-2999,3036,-3002,3037,-2995,3038,-2993,3039,-2987,3040,-2984,3041,-2981,2979,-2979,3042,-473,-428,-2969,2967,-2967]]]},{"type":"MultiPolygon","arcs":[[[3043]],[[3044,3045,-1704,-2195]]]},{"type":"MultiPolygon","arcs":[[[3046]],[[3047]],[[3048]],[[3049]],[[3050,-2231]],[[3051,-3045,-2194,-2248]]]},{"type":"Polygon","arcs":[[3052,3053,3054,-2270,-2253,-2436,3055,3056,3057,3058]]},{"type":"Polygon","arcs":[[3059,-3059,3060,3061,3062]]},{"type":"Polygon","arcs":[[3063,3064,-3056,-2435,3065]]},{"type":"Polygon","arcs":[[-3057,-3065,3066,-3066,-2439,3067,3068]]},{"type":"Polygon","arcs":[[-3064,-3067]]},{"type":"Polygon","arcs":[[3069,3070,3071,3072,3073,3074,-3053,-3060,3075]]},{"type":"Polygon","arcs":[[3076,3077,3078,3079,3080,-3074]]},{"type":"Polygon","arcs":[[-3081,3081,3082,-3054,-3075]]},{"type":"Polygon","arcs":[[3083,3084,3085,3086,3087,3088,-2324,-2271,-3055,-3083]]},{"type":"Polygon","arcs":[[3089,3090,3091,3092,3093,3094,3095,3096,3097]]},{"type":"Polygon","arcs":[[3098,-3097,3099,3100,-3084,-3082,-3080]]},{"type":"Polygon","arcs":[[-3095,3101,3102,3103,3104,-1732,-2326,3105,3106]]},{"type":"Polygon","arcs":[[-3106,-2325,-3089,3087,-3087,3085,-3085,-3101,3107]]},{"type":"Polygon","arcs":[[-3096,-3107,-3108,-3100]]},{"type":"Polygon","arcs":[[3108,-3103,3109]]},{"type":"Polygon","arcs":[[3110,-3110,-3102,-3094]]},{"type":"MultiPolygon","arcs":[[[3111]],[[3112,3113,3114,-3104,-3109,-3111,-3093]]]},{"type":"Polygon","arcs":[[-3061,-3058,-3069,3115,3116,3117,3118]]},{"type":"Polygon","arcs":[[-2493,-1736,3119,-1454,3120,3121,3122,-2510,-2498]]},{"type":"MultiPolygon","arcs":[[[3123]],[[3124]],[[3125]],[[3126]],[[3127]],[[3128]],[[3129]],[[-3121,-1453,-1459,3130,3131]]]},{"type":"MultiPolygon","arcs":[[[3132]],[[3133,-3122,-3132,3134,3135]]]},{"type":"MultiPolygon","arcs":[[[3136]],[[3137]],[[3138]],[[3139]],[[3140]],[[3141]],[[3142]],[[-2512,3143,-3136,3144]],[[3145]],[[3146]],[[3147]],[[3148]],[[3149]],[[3150]],[[3151]]]},{"type":"Polygon","arcs":[[-3123,-3134,-3144,-2511]]},{"type":"Polygon","arcs":[[-1969,3152,3153,3154,3155,3156,3157,-2729,3158,-1672,-1965]]},{"type":"Polygon","arcs":[[3159,-2750,-2722,-3158,3156,-3156,3160]]},{"type":"Polygon","arcs":[[3161,-3153,-1968,-1975]]},{"type":"Polygon","arcs":[[3162,-1405,-1408,-2751,-3160,3163,-3154,-3162,-1974]]},{"type":"Polygon","arcs":[[-3164,-3161,-3155]]},{"type":"Polygon","arcs":[[3164,3165,3166,3167,-2010,-2176,3168]]},{"type":"MultiPolygon","arcs":[[[3169,3170]],[[3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,-3167,3182,3183,3184]]]},{"type":"Polygon","arcs":[[-3182,3185,3186,3187,-2018,-2011,-3168]]},{"type":"Polygon","arcs":[[3188,3189,-3187]]},{"type":"Polygon","arcs":[[3190,3191,3192,-2019,-3188,-3190,3193,3194]]},{"type":"MultiPolygon","arcs":[[[3195,3196]],[[3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,-3194,-3189,-3186,-3181,3207,3208]]]},{"type":"Polygon","arcs":[[-3116,-3068,-2438,-2443,-2447,3209,3210,-3204,3211,3212,3213]]},{"type":"Polygon","arcs":[[-3207,3205,-3205,-3211,3214,-3192,3190,-3195]]},{"type":"Polygon","arcs":[[3215,3216,3217,-3213,3218,-3175,-3174,-3173]]},{"type":"Polygon","arcs":[[-3212,-3203,3219,-3208,-3180,3178,-3178,3176,-3176,-3219]]},{"type":"Polygon","arcs":[[3220,3221,3222,-3118]]},{"type":"Polygon","arcs":[[3223,3224,3225,3226,-3217,3227]]},{"type":"MultiPolygon","arcs":[[[3228,-3185,3229,3230,-3228,-3216,-3172]],[[3231]],[[-3170,3232,-3183,-3166,3233]],[[3234]],[[3235]],[[3236]],[[3237]],[[-3169,-2175,3238,-2170,3239,-2167,3240]],[[3241]]]},{"type":"Polygon","arcs":[[3242,3243,3244,-3224,-3231,3245,-3222]]},{"type":"Polygon","arcs":[[-3117,-3214,-3218,-3227,3225,-3225,-3245,3243,-3243,-3221]]},{"type":"Polygon","arcs":[[3195,-3209,-3220,-3202,3200,-3200,3198,-3198]]},{"type":"Polygon","arcs":[[3246,-3076,-3063,3247,3248,3249]]},{"type":"Polygon","arcs":[[3250,3251,-3249,3252,3253,3254,3255,3256]]},{"type":"MultiPolygon","arcs":[[[3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,-3250,-3252,3269,3270,3271]]]},{"type":"MultiPolygon","arcs":[[[3272,3273]],[[3274,-3070,-3247,-3269,3267,-3267,3265,-3265,3263,-3263,3261,-3261,-3260,-3259,3257,-3272,3275,3276]]]},{"type":"MultiPolygon","arcs":[[[3277]],[[3278]],[[3279]],[[3280]],[[3281]],[[3282]],[[3283]],[[3284,-2573,3285,3286,3287,-3277,3288,-3273,3289]]]},{"type":"Polygon","arcs":[[3290,-3286,-2572,-2189,-1721,3291,3292,3293,-3071,-3275,-3288]]},{"type":"Polygon","arcs":[[-3291,-3287]]},{"type":"Polygon","arcs":[[-1720,3294,3295,3296,3297,3298,-3072,-3294,3292,-3292]]},{"type":"MultiPolygon","arcs":[[[3299,-3256]],[[3300,-3254]],[[3301]]]},{"type":"Polygon","arcs":[[-3270,-3251,3302]]},{"type":"MultiPolygon","arcs":[[[3303,-3298,3304]],[[3305,3306,3307,3308,-3296]]]},{"type":"MultiPolygon","arcs":[[[3309,3310,3311,3312,-3308,3313]]]},{"type":"MultiPolygon","arcs":[[[3314,3315]],[[3316,3317,3318,3319,3320,3321]],[[3322]],[[3323,3324,3325,-3311]]]},{"type":"MultiPolygon","arcs":[[[3326,3327,3328,3329,3330,3331,3332]],[[3333]]]},{"type":"MultiPolygon","arcs":[[[3334,3335,3336,-3328,3326,-3333,3337,3338,-3339,3339]],[[3340,3341,3342,3343]]]},{"type":"Polygon","arcs":[[-3326,3344,3345,3346,3347,-3348,3348,-3343,3349,-3312]]},{"type":"Polygon","arcs":[[3350,3351,-3345,-3325]]},{"type":"MultiPolygon","arcs":[[[3352,3353,3354,-3320]],[[3347,3355,3356,-3344,-3349]],[[-3352,3357,-3346]]]},{"type":"Polygon","arcs":[[3329,-3330,-3329,-3337,3358,3359]]},{"type":"MultiPolygon","arcs":[[[3360,3361]],[[3362,3363,3364,3365,-3331,-3330,-3360,3366]]]},{"type":"MultiPolygon","arcs":[[[3367,-3364,3362,-3367,-3359,-3336,3334,-3340,3338,3368,-3354,3369]],[[3370,-3341,-3357]]]},{"type":"Polygon","arcs":[[-3316,3371,3372,-3370,-3353,-3319,3317,-3317]]},{"type":"Polygon","arcs":[[3373,3374,3375,3376,-3372,-3315,-3322,3377]]},{"type":"MultiPolygon","arcs":[[[-3361,3378]],[[3379,3380,-3365,-3368,-3373,-3377]]]},{"type":"MultiPolygon","arcs":[[[3381]],[[3382,3383]],[[3384]],[[3385]],[[3386,3387]],[[3388]],[[3389,3390]],[[3391,3392]],[[3393,3394,-3380,-3376]]]},{"type":"MultiPolygon","arcs":[[[-3388,3395]],[[-3391,3396]],[[-3393,3397]],[[3398,3399]],[[-3383,3400]],[[3401]],[[3402,-3394,-3375,3403]]]},{"type":"MultiPolygon","arcs":[[[-3399,3404]],[[3405]],[[3406]],[[-3404,-3374,3407]],[[3408]],[[3409]]]},{"type":"Polygon","arcs":[[-2705,-2709,-2699,-1472,-1653,-1447,-3120,-1735,-1741]]},{"type":"Polygon","arcs":[[3410,-2701,-1428,-1465,-2698]]},{"type":"MultiPolygon","arcs":[[[-2696]],[[-2702,-3411,-2697]]]},{"type":"Polygon","arcs":[[3411,3412]]},{"type":"Polygon","arcs":[[-3412,3413,-2731,-2737,-2907,-2739,3414,-1442,-1410,3415]]},{"type":"MultiPolygon","arcs":[[[3416]],[[3417]],[[3418]],[[3419]],[[3420]],[[3421]],[[3422]],[[3423]],[[3424,3425,3426,3427]],[[3428,-1724,3429,-1727,3430,3431,3432,3433,3434,3435]]]},{"type":"MultiPolygon","arcs":[[[3436]],[[-3432,3437,-3114,3438]]]},{"type":"MultiPolygon","arcs":[[[3439,3440,3441,3442]],[[3443,3444,3445,3446,3447,3448,-3091,3449,3450]]]},{"type":"Polygon","arcs":[[3451,-3450,-3090,3452]]},{"type":"Polygon","arcs":[[3453,3454,3455,3456,3457]]},{"type":"MultiPolygon","arcs":[[[3458,-3078]],[[-3077,-3073,-3299,-3304,3459,3460,-3458,3461]]]},{"type":"Polygon","arcs":[[3462,3463,-3454,-3461]]},{"type":"MultiPolygon","arcs":[[[3464,3465]],[[3466,3467,3468,3469,-3455,-3464]]]},{"type":"MultiPolygon","arcs":[[[3470,-3468]],[[-3470,3471,-3466,3472,3473,3474,-3456]]]},{"type":"Polygon","arcs":[[-3475,3475,-3453,-3098,-3099,-3079,-3459,-3462,-3457]]},{"type":"MultiPolygon","arcs":[[[-3445,3476]],[[3477,-3451,-3452,-3476,-3474]]]},{"type":"MultiPolygon","arcs":[[[3478]],[[-1932,3479,3480,-2216,-2200,3481]]]},{"type":"Polygon","arcs":[[-3482,-2199,-2197,-2571,3482,-1933]]},{"type":"Polygon","arcs":[[-1993,3483,3484,-1976,-1966,-1682,-2432,-2928]]},{"type":"Polygon","arcs":[[-1992,-1990,3485,-1988,3486,-3484]]},{"type":"Polygon","arcs":[[-1989,-3486]]},{"type":"Polygon","arcs":[[-2065,-2929,-2026,3487]]},{"type":"MultiPolygon","arcs":[[[3488]],[[3489]],[[3490]],[[3491]],[[3492]],[[3493]],[[3494]],[[3495]],[[3496]],[[3497]],[[3498]]]},{"type":"MultiPolygon","arcs":[[[3499,-2694,-2266,-2390]]]},{"type":"MultiPolygon","arcs":[[[3500]],[[3501]],[[3502]],[[3503]],[[3504]],[[3505]],[[3506]],[[3507]],[[3508]],[[3509]],[[3510]],[[3511]]]},{"type":"Polygon","arcs":[[-1745,-1944,-2912,-1936,-2911,-1390,1388,-1398,-1401,3512,-2035,-2040]]},{"type":"Polygon","arcs":[[-1810,-1768,-2042,-2037,-2031,-1977,-1970,-3485,-3487,-1987,-1984]]},{"type":"Polygon","arcs":[[-3513,-1406,-3163,-1973,-2036]]},{"type":"Polygon","arcs":[[-1951,3513,-1949,-1961,-1939,1937,-1937,-1997,-2024]]},{"type":"MultiPolygon","arcs":[[[3514]],[[3515]],[[3516]],[[3517]],[[3518]],[[3519]],[[3520]],[[3521]],[[3522]],[[3523]],[[3524]],[[3525]],[[3526]],[[3527]],[[3528]],[[3529]],[[3530]],[[3531]],[[3532]],[[3533]],[[3534]],[[3535]],[[3536]],[[3537]],[[3538]],[[3539]],[[3540]],[[3541]],[[3542]],[[3543]],[[3544]],[[3545]],[[3546]],[[3547]],[[3548]],[[3549]],[[3550]],[[3551]],[[3552]],[[3553]],[[3554]],[[3555]],[[3556]],[[3557]],[[3558,3559,-3480,-1931,3560]]]},{"type":"MultiPolygon","arcs":[[[3561]],[[3562,-1709]],[[3563,-3306,-3295,-1719,-1718,-1717,1715,-1715,-1711]]]},{"type":"Polygon","arcs":[[-3215,-3210,-2446,-1962,-1950,-3514,-1953,-2023,-2020,-3193]]},{"type":"MultiPolygon","arcs":[[[3564]],[[3565,3566]]]},{"type":"Polygon","arcs":[[3567,3568,3569,3570,-2944,-2410,-2405]]},{"type":"Polygon","arcs":[[3571,-2423,-2422,-2421,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581]]},{"type":"MultiPolygon","arcs":[[[3582,3583,3584,3585,3586,-2954,3587,-2945,3588,-2426,2424,-2424,-3572]],[[3589]],[[3590]],[[3591]],[[3592]],[[3593]],[[3594]],[[3595]],[[3596]],[[3597]],[[3598]],[[-2956,3599]]]},{"type":"MultiPolygon","arcs":[[[3600,3601,3602,3603,3604,3605]],[[3606,3607]],[[3608,3609,3610,3611,3612,3613,3614,-3583,-3582,3615,3616,3617,3618,3619,3620,-2587,-2693]]]},{"type":"MultiPolygon","arcs":[[[-3586,3621]],[[3622]],[[3623]],[[3624]],[[3625]],[[3626]],[[3627]],[[3628]],[[3629]],[[3630]],[[3631]],[[3632]],[[3633]],[[3634]],[[3635]],[[3636]],[[3637]],[[3638]],[[3639]],[[3640]],[[3641]],[[3642]],[[3643]],[[3644]],[[3645]],[[3646,-3584,-3615]],[[3647]],[[3648,-3613]],[[3649]],[[3650]],[[3651]],[[3652]],[[-3611,3653]],[[3654]],[[-3604,3655]],[[3656,-3602]],[[3657]],[[3658]],[[3659,-2650,3660,-2640]],[[3661,-2648]],[[3662,-3606,3663,-3608,3664,-3609,-2692,-2652,3665]]]},{"type":"MultiPolygon","arcs":[[[-272,3666]],[[3667]],[[3668]],[[3669]],[[3670]],[[3671]],[[-360,3672,-274,3673,-291,-370]]]},{"type":"MultiPolygon","arcs":[[[3674,-3435]],[[-3428,3675]],[[-3426,3676]],[[-3440,3677]],[[3447,-3447,3678,-3442,3679,-3433,-3439,-3113,-3092,-3449]]]},{"type":"MultiPolygon","arcs":[[[-2354,3680]],[[-2352,2350,-2350,3681]],[[3682]],[[3683]],[[3684,-2364,2362,-2366,-2332,2330,-2330,2328,-2328,-2310,2308,-2308,2306,-2306,2304,-2304,2302,-2302]]]},{"type":"Polygon","arcs":[[-2588,-3621,3619,-3619,3685,-2429,3686,3687,3688,3689,3690,-2395,-2576]]},{"type":"Polygon","arcs":[[3687,-3687,-2428,3691,3692,3693,3694,3695,3696,3697,-3570,3698,-3568,-2404,2402,-2402,2400,-2400,2398,-2398,2396,-2396,-3691,3689,-3689]]},{"type":"MultiPolygon","arcs":[[[-2419]],[[-2430,-3686,-3618,3616,-3616,-3581,3579,-3579,-3578,-3577,3575,-3575,-3574,-3573,-2420]]]},{"type":"Polygon","arcs":[[-2427,-3589,-2953,-2937,-3571,-3698,3699,-3696,3700,-3694,3701,-3692]]},{"type":"Polygon","arcs":[[-3159,-2728,-2732,-3414,-3413,-3416,-1409,-1666,-1673]]},{"type":"Polygon","arcs":[[-1694,-1690,-1695,-1677,1675,-1675,-1686,1684,-1684,1682,-1687,-1663,-2433,-1680],[-1670]]},{"type":"Polygon","arcs":[[-1476,-1661,-1474,-1654]]},{"type":"MultiPolygon","arcs":[[[3702]],[[3703]],[[3704]],[[3705]],[[3706]],[[-3567,3707]],[[3708]],[[3709]]]}]}},"arcs":[[[2572,3224],[1,0],[2,0],[1,0],[3,-1],[1,0],[4,1],[2,0],[2,-1],[1,0],[2,0],[1,0],[1,0],[5,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[2,0]],[[2606,3222],[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,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2607,3199],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[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],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-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,-3],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[-1,2],[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,3],[0,1],[0,4],[0,2],[-1,0],[-1,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],[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,0],[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],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[0,-3],[0,-4],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[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],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[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,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,2],[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],[0,1],[-1,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],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[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,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[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,0],[0,-1],[0,-1],[-1,1],[0,-1]],[[2536,3205],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1]],[[2534,3224],[0,3],[3,-1],[2,0],[1,0],[1,0],[3,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[3,-1],[2,0],[2,0],[1,0],[4,-1],[2,0],[2,0],[1,0],[1,0]],[[2607,3199],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-5],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-3],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[1,-2],[0,-1]],[[2610,3104],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,1],[-1,1],[1,1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,2],[0,3],[0,2],[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,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],[0,-1],[-1,-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],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[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,-2],[0,-1],[0,-1],[0,-2],[0,-2],[1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-4],[-1,2],[-1,0],[0,1],[-1,1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-2],[0,-2],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-3],[0,1],[0,-1],[0,-1],[-1,0],[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,0],[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],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2586,3028],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[-1,0],[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],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[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,0],[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],[-1,0],[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],[-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],[-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],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[1,-1],[-1,0],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,0],[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,-4],[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],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-3],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[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],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[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,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1]],[[2562,2917],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,1],[-1,1],[0,-1],[0,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],[0,1],[1,2],[-1,1],[0,2],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,-2],[-1,0],[0,1],[0,-2],[0,-1],[0,-2],[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],[-1,0],[0,1],[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],[0,1],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[0,-1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,3],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0]],[[2532,2952],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,3],[0,1],[0,1],[1,1],[0,2],[0,5],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,3],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[1,3],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,3],[0,2],[0,4],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,2],[0,1],[0,2],[1,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,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[1,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,4],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1]],[[2569,2790],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[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,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],[-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],[0,-1],[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,2],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[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],[0,1],[0,1],[1,0],[0,1],[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],[1,0],[0,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],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[1,1],[0,3],[0,2],[0,1],[0,1],[2,4],[1,1],[0,2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,-3],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-3],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,1],[-1,3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,1]],[[2585,2707],[0,0]],[[2585,2707],[0,1]],[[2585,2708],[0,0]],[[2585,2708],[0,1],[-1,0],[1,0],[-1,0],[0,-1],[0,1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-4],[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,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-3],[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],[0,-1],[0,-1],[0,-4],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2570,2635],[-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],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[0,-3],[0,-4],[0,-1],[0,-2],[-1,0],[-1,0],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-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],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[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,0],[0,1],[0,1],[0,2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,-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],[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,1],[0,1],[0,1],[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],[-1,0],[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,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[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],[1,0],[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,0],[0,-1],[0,-1],[1,0],[-1,-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],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[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,3],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[0,-2],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[1,-1],[0,2],[0,-1],[0,-3],[0,-1],[1,1],[0,1],[1,2],[0,1],[0,1],[0,2],[0,1],[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],[-1,0],[0,1],[0,5],[0,-1],[0,-2],[0,-1],[1,0],[0,1],[0,3],[0,2],[0,1],[0,2],[1,1],[-1,2],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[1,0],[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],[0,-1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-2,19],[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],[0,1],[0,1],[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],[-1,0]],[[2526,2610],[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,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,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,0],[0,1],[0,1],[0,1]],[[2527,2676],[0,1],[0,2],[0,1],[0,2],[0,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,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,2],[0,1],[0,1],[0,1],[1,3],[0,2],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,3],[0,2],[0,1],[0,1],[0,1],[0,2],[0,2],[0,3],[0,2],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,3],[0,2],[0,2],[0,1],[0,2],[0,1],[1,4],[0,1],[0,4],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,5],[0,1],[0,2],[0,1],[0,1],[0,3],[0,4],[0,1],[0,1],[0,1],[0,3],[0,3],[0,1],[0,3],[0,1],[0,2],[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,2],[0,1],[0,1],[0,1]],[[2531,2907],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[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],[1,2],[0,1]],[[2562,2917],[0,-3],[1,2],[0,1],[0,-1],[1,2],[0,-2],[0,-1],[1,2],[0,1],[1,7],[0,1],[1,0],[0,-4],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,3],[0,2],[0,4],[0,2],[0,3],[1,1],[0,2],[0,1],[0,-1],[-1,1],[0,2],[0,2],[-1,1],[1,0],[0,1],[0,2],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,3],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,-4],[0,-1],[0,-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],[-1,0],[1,-1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[1,-1],[0,1],[0,-3],[0,-2],[0,-1],[1,0],[0,1],[0,-1],[0,-2],[0,-1],[0,2],[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,0],[0,-1],[1,0],[0,-3],[-1,-4],[0,-3],[0,-1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-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],[-1,-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],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[-1,-3],[-1,-3],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-3],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-3],[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,0],[1,0],[1,0],[0,-1],[0,-1],[0,-2],[0,-5],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,-3],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[1,0],[1,0]],[[2536,2346],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[-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],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,-1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[2553,2346],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[0,1],[1,0]],[[2553,2347],[0,-1]],[[2554,2350],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,-1]],[[2535,2356],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[-1,0]],[[2539,2386],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,-4]],[[2541,2420],[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,-2],[0,-1],[0,-1]],[[2541,2427],[0,-1],[0,-1],[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],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2570,2635],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,-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],[0,-1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[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],[0,-1],[0,-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],[-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],[-1,0],[0,-1],[0,-1],[0,-1],[0,-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],[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,-1],[0,-1],[0,-1],[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],[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],[0,-2],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2576,2480],[-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],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-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],[-1,-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,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],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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,-1],[-1,0],[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]],[[2555,2385],[0,-1],[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],[-1,0],[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],[-1,0],[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],[1,0],[0,1],[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],[-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,0],[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,0],[-1,0],[0,-1],[0,-1],[0,-1],[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,0],[0,-1],[-1,0],[0,-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],[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,-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],[1,0],[0,-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],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[-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,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],[0,-1],[0,-1],[-1,0],[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],[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],[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,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-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,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[1,2],[0,1],[-1,0],[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,0],[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],[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],[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],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,-2],[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,-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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,2],[0,1],[0,2],[0,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],[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,-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,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[1,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],[0,1],[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],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[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],[0,1],[0,-1],[0,-1],[-1,1],[0,-1]],[[2528,2366],[0,9],[0,1],[0,1],[0,3],[0,2],[0,1],[0,4],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,4],[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,2],[0,1],[0,2],[0,1],[0,1],[0,5],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,3],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,3],[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,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[-1,3],[0,1],[0,3],[0,1],[0,5],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1]],[[2621,2678],[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,0],[0,-1],[0,-1],[0,-1],[1,-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],[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,0],[0,-1],[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],[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],[-1,-1],[0,-1],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[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,-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,0],[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,-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]],[[2623,2481],[-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]],[[2607,2480],[-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],[-1,0],[-1,0],[-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],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0]],[[2569,2790],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[0,2],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2595,2807],[1,0],[0,3],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[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,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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,-1],[1,0],[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],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[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],[0,-1],[0,-1],[-1,0],[0,-2],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-3],[0,-2],[0,-4],[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,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,1],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,2],[0,1],[0,3],[0,2],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,3],[0,1],[0,2],[0,1],[1,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[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],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-3],[1,0],[1,0],[1,0],[1,0],[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],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[0,2],[0,-1],[0,-1],[1,0]],[[2586,3028],[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],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[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,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-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,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-3],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[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],[0,-1],[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],[0,-1],[0,-1],[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,-2],[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],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[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,-3],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[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]],[[2610,3104],[0,-1],[0,-3],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-4],[0,-1],[0,-2],[0,-2],[0,-3],[0,-2],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1],[0,-3],[0,-1],[1,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-3],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1]],[[2613,2974],[0,-1],[0,-2],[1,-2],[0,-3],[0,-1],[0,-2],[0,-2],[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,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-3],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[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,-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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[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],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[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,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],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2623,2761],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[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],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-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],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2553,2347],[0,1],[1,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],[1,0],[0,1],[0,1],[0,-1],[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],[-1,0],[0,-1],[0,-1]],[[2577,2369],[1,0],[1,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,-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],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[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],[0,1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,-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,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],[1,0],[0,1],[1,0],[0,-1]],[[2607,2480],[0,-1],[0,-2],[0,-4],[0,-3],[-1,-2],[0,-4],[0,-4],[-1,-1],[0,-2],[0,-2],[-1,1],[-1,0],[0,1],[0,-1],[-1,-1],[0,-2],[0,-2],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-2],[-1,0],[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,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[1,-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],[0,-2],[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,-2],[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],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-3],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[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,-2],[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,-2],[0,-1],[0,-1]],[[2595,2345],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,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,0],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,2],[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,0],[0,-1],[0,-1],[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],[0,-1],[1,0],[0,-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,1],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[-1,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],[0,-1],[-1,0],[0,-1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,-1],[0,-1],[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],[0,-1],[-1,0],[0,-1],[0,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],[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,1],[-1,0],[1,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,0],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[-1,1],[1,0],[-1,0],[1,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-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],[1,-2],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,1],[0,-1],[0,1],[0,-1],[-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],[-1,0],[-1,0],[0,-1],[-1,0],[0,-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],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[-1,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[1,1],[-1,0],[0,1],[0,1],[0,-1],[0,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],[0,-1],[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],[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],[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],[0,1],[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],[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,-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],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[-1,0],[0,1],[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],[0,-1],[0,-1],[0,-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],[0,-1],[-1,0],[0,1],[-1,-1],[0,1],[0,-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],[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],[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],[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],[0,1],[0,1]],[[2620,2236],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0]],[[2624,2244],[-1,0],[0,1],[1,0],[0,-1]],[[2631,2247],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[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],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[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],[0,1],[0,1],[0,1],[1,1],[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],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2634,2262],[1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,2],[0,-1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1]],[[2645,2311],[0,-1],[-1,1],[1,0]],[[2623,2481],[0,-1],[0,-2],[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],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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],[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]],[[2648,2420],[1,0],[1,0],[1,-1],[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],[1,0],[1,0],[0,-1],[1,0]],[[2666,2414],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[1,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-6],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-3],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[1,0],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[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,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1]],[[2668,2233],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[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],[0,1],[0,-1],[-1,0],[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],[-1,0],[0,1],[1,0],[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,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],[0,1],[0,1],[0,1],[-1,0],[0,1],[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],[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],[0,1],[0,1],[0,-1],[-1,1],[1,0],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[1,1],[-1,0],[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],[-1,0],[0,-1],[0,1],[0,-1],[-1,1],[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,0],[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],[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,0],[0,-1],[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],[0,-1],[0,-1],[0,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],[1,0],[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],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[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,0],[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],[0,1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[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,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,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,-1],[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],[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],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-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],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-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],[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],[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],[0,-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],[1,-1],[0,-1],[0,-1],[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],[-1,0],[0,-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],[0,1],[0,1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-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],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[1,0],[-1,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,-1],[-1,-1],[0,-2],[0,1],[0,1],[-1,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],[-1,1],[0,2],[0,3],[0,3],[0,2],[0,2],[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,-2],[-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,-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],[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],[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,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,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],[0,1],[0,-1],[0,-1],[1,0],[-1,1],[0,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],[0,1],[0,1],[-1,0],[1,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[-1,2],[0,3],[0,1],[-1,2],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-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],[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],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[0,1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[1,0],[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],[1,1],[0,-1],[0,-1],[0,1],[0,-1],[1,1],[0,1],[0,1],[-1,0],[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,-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],[-1,0],[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,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-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],[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],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[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],[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],[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],[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],[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,0],[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],[-1,0],[0,1],[0,-1],[0,-1],[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],[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],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[1,1],[-1,0],[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,0],[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],[0,-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],[0,-1],[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],[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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[1,0],[-1,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],[-1,0],[0,-1],[0,1],[0,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,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[2686,2113],[-1,-1],[0,1],[1,0]],[[2677,2135],[1,0],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1]],[[2667,2202],[1,0],[0,-1],[-1,1]],[[2675,2411],[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],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[2694,2403],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-6],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-6],[0,-2],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-4],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-3],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[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],[0,1],[0,2],[0,1],[0,4],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0]],[[2713,2330],[1,0],[1,0],[0,-1],[0,-1],[0,-3],[0,-2]],[[2715,2323],[0,1],[-1,0],[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],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1]],[[2715,2321],[0,-4],[0,-10],[-1,0],[0,-3],[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,0],[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],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[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],[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],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2705,2240],[0,0]],[[2705,2240],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[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],[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],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2699,2219],[0,0]],[[2699,2219],[0,-1],[0,-1]],[[2699,2217],[0,0]],[[2699,2217],[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],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1]],[[2700,2173],[0,-1],[0,-2],[0,-3],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[-1,-4],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-7],[0,-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],[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],[0,-1],[-1,0],[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],[-1,0],[0,1],[-1,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1]],[[2685,2108],[0,0]],[[2685,2108],[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],[1,1],[-1,0],[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,1],[0,1],[0,-1],[0,1],[-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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[1,0],[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,0],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[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],[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,0],[0,1],[0,1],[1,0],[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],[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],[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],[0,1],[0,1],[-1,0],[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],[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,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[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,0],[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],[0,-1],[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],[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,0],[-1,1],[1,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],[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,0]],[[2666,2414],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0]],[[2715,2331],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,-1]],[[2714,2340],[1,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,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2715,2353],[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]],[[2714,2340],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,1],[0,1],[0,-1]],[[2722,2341],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-6],[-1,0],[-1,0],[-1,0],[0,2],[0,1],[0,-1],[-1,0],[0,1],[0,1]],[[2718,2318],[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,2],[0,1],[0,1],[1,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,0],[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],[1,0]],[[2718,2354],[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,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,0]],[[2718,2351],[0,-1],[0,1],[0,1],[0,1]],[[2718,2353],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,0]],[[2719,2350],[0,0]],[[2719,2350],[0,2],[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]],[[2717,2357],[0,1],[0,1]],[[2717,2359],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,1]],[[2718,2366],[0,-1],[0,-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],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[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],[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]],[[2724,2341],[-1,0],[-1,0]],[[2722,2341],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,2],[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],[1,0],[0,-1],[0,-1],[0,1],[0,-3],[0,-2],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-6]],[[2718,2368],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-2]],[[2720,2369],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[2721,2371],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1]],[[2722,2374],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,1],[0,-2],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[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],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[2722,2389],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-12],[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],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1]],[[2721,2389],[0,1],[0,1],[0,1],[0,-1],[1,0],[-1,-1],[0,-1]],[[2720,2396],[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,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2720,2428],[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],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,-1]],[[2717,2428],[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],[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],[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],[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],[1,0],[0,1],[0,1],[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],[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],[1,0],[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,-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],[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],[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,0],[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],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[1,0],[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,-1],[0,1],[0,-1],[0,1],[1,0],[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],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[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,-2],[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,0],[0,-1],[0,-1],[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,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],[0,1],[-1,0],[1,1],[-1,0],[0,-1],[0,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,1],[0,1],[-1,0],[0,1],[1,0],[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],[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,0],[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,0],[0,1]],[[2716,2369],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[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,-2],[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,-2],[0,-1],[0,-1],[1,-2],[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],[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,0],[0,-1],[0,1],[0,1],[0,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],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2694,2403],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[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],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,-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],[1,0],[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,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],[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,0],[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,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[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],[0,-1],[1,-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],[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],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,-1],[0,1],[0,-2],[1,0],[0,1],[-1,1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1]],[[2688,2061],[0,-1],[-1,0],[0,1],[1,0]],[[2688,2065],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[2688,2087],[1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1]],[[2688,2089],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[1,0]],[[2685,2108],[0,-1],[0,1]],[[2700,2173],[0,1],[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],[0,1],[0,1],[0,2],[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],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[0,-1],[0,-1],[0,-3],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[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],[1,-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],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[2,0],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-3],[0,-1],[0,-2],[0,-1],[0,-2],[1,0],[0,-2],[0,-3],[1,-6],[0,-3],[0,-2]],[[2718,2101],[-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],[0,-1],[0,-1],[0,-3],[0,-6],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,4],[0,-1],[0,-1],[0,-2],[0,-4],[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,-2],[0,-1],[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,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-8],[0,-3],[0,-2],[0,-1],[0,-7],[0,-3],[0,-3],[0,-2],[0,-1],[0,-4]],[[2708,1979],[-1,1],[0,-1],[0,1],[0,-1],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1]],[[2705,1980],[0,1],[0,4],[0,1],[0,4],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-3],[0,-1],[0,-3],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2688,2003],[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],[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],[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,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,0],[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],[1,0],[-1,0],[1,0],[-1,0],[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],[0,1],[0,-1],[1,0],[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],[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],[-1,0],[1,0],[-1,1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,-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],[0,1],[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],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[1,-1],[-1,0],[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,0],[-1,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,-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,1],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,1],[-1,0],[1,1],[-1,0],[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],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[1,0],[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],[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,0]],[[2742,2069],[-1,0]],[[2741,2069],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,6],[0,1],[-1,0],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1]],[[2740,2084],[0,-1],[-1,0],[1,0],[-1,1],[0,1],[1,0],[0,-1]],[[2739,2096],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1]],[[2738,2102],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,1],[0,1],[1,0]],[[2737,2119],[-1,0],[0,1],[0,1],[0,-1],[1,0],[0,-1]],[[2738,2107],[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,-2],[1,-2],[0,-1],[0,-1],[0,-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],[-1,0],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[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],[0,1],[-1,-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,1],[0,1],[-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,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2716,2172],[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],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2716,2179],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,-1]],[[2736,2122],[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,2],[0,2],[-1,2],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[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,2],[-1,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,4],[0,1],[0,2],[-1,1],[0,1],[0,2],[0,2],[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,-2],[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,0],[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,-4],[0,-2],[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,-3],[0,-2],[1,-2],[1,-23],[0,-1],[1,-3],[0,-4],[0,-4],[0,-2],[0,-2],[1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[1,-1],[-1,0],[0,-1]],[[2728,2240],[-1,1],[0,1],[1,-1],[0,-1]],[[2717,2226],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[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],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-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]],[[2716,2177],[-1,0],[-1,0],[0,1],[0,5],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,6],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-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,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,6],[1,0],[0,2],[0,4],[1,-1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,2],[0,1],[0,-1],[1,-1],[0,-1],[2,-7],[0,-2],[0,-3],[0,-3],[1,0],[0,1],[0,-3],[1,1],[0,-3],[0,2],[1,2]],[[2719,2250],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2716,2234],[0,1],[0,2],[0,2],[0,7],[2,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,-1]],[[2727,2271],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[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],[-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],[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,-1]],[[2740,2069],[-1,0]],[[2739,2069],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[2738,2069],[-1,0],[-1,0],[-1,0]],[[2735,2069],[-1,0],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,3],[0,3],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1]],[[2724,2104],[0,1],[0,1],[0,1],[0,1],[0,1],[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],[-1,0],[0,1],[1,0],[0,1],[-1,0],[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],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[2719,2144],[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],[0,1],[1,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,2],[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,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,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],[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,0],[0,1],[0,-1],[1,0],[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,0],[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,0],[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],[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],[0,1],[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],[0,1],[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],[-1,0],[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],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[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],[1,0]],[[2722,2341],[0,-1],[0,-1],[1,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-4],[0,-2],[0,-2],[0,-1],[0,-3],[0,-1],[1,0],[0,-2],[0,-3],[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,-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],[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],[-1,0],[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],[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,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-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],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-3],[0,-2],[1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-2],[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],[1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[1,-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,-1],[1,-2],[0,-1],[0,-2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[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],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[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,-1],[0,-1],[0,-1]],[[2724,2341],[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],[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],[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,0],[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],[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,0],[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,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,5],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1]],[[2716,2234],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0]],[[2716,2177],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-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],[1,0],[0,1],[0,-1],[0,-1]],[[2724,2104],[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,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,-1],[0,3],[0,3],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,-2],[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],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[0,2],[1,0],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2723,2030],[0,-4],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[-1,0],[-1,0],[0,4],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,3],[0,1],[0,3],[-1,1],[0,1],[0,4],[0,3],[0,5],[1,0],[0,2],[0,1],[-1,0],[0,-1],[-1,-1],[0,-2],[-3,0],[0,4],[0,4],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,12],[-1,0],[-1,0],[0,2],[1,1],[0,13]],[[2715,2321],[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,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],[1,0],[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,0],[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],[0,-1]],[[2718,2354],[0,-1],[0,-1],[0,-1]],[[2718,2353],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,1]],[[2717,2359],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0]],[[2716,2369],[0,-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],[1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1]],[[2714,2340],[0,-1],[0,-1],[1,1],[-1,0],[0,1]],[[2715,2331],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1]],[[2735,2069],[0,-1],[0,-1],[0,-1],[0,-2],[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,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-3],[-1,0],[-1,0],[-1,0],[-1,0],[0,-4],[0,-5],[0,-1],[0,1],[-1,0]],[[2730,2027],[-1,0],[-1,1],[0,4],[-1,0],[0,1],[-1,0],[0,-2],[0,-2],[-1,0],[0,-2],[1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[2725,2024],[0,1],[-1,0],[0,2],[0,3],[-1,0]],[[2752,1858],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2751,1877],[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,0],[0,1],[0,1],[0,-1],[1,0]],[[2753,1840],[0,0]],[[2753,1840],[0,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],[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],[-1,0],[1,1],[-1,0],[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,0],[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,2],[0,1],[-1,0],[0,1],[1,1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-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],[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]],[[2744,1980],[1,0],[0,-1],[-1,0],[0,1]],[[2744,1980],[0,1],[0,1],[1,0],[-1,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-3],[0,-5],[0,-2],[1,-4],[0,-3],[0,-5],[0,-6],[0,-3],[0,-6],[1,-5],[0,-5],[0,-4],[1,-3],[0,-1],[0,-6],[1,-6],[0,-4],[1,-5],[0,-1],[-1,0],[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,0],[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,0],[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,2],[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,2],[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,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,1],[0,-1]],[[2741,2065],[0,1],[1,0],[-1,-1]],[[2738,2069],[0,-1],[1,-2],[0,-2],[0,-6],[0,-6],[0,-3],[0,-2],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[1,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[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,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-3],[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,0],[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,-1],[0,-1],[1,0],[0,-2],[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,-2],[0,-2],[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,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-6],[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,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-5],[0,-1],[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],[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]],[[2752,1840],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2743,1840],[-1,0],[-1,0],[-1,0],[0,1],[0,3],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[-1,0]],[[2738,1856],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,3],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,4],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[0,10],[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,2],[0,5],[0,2],[0,2],[0,1],[0,3],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[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,0],[-1,0],[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,0],[0,1],[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,1],[0,1],[0,1]],[[2740,2069],[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,0],[0,-1],[0,-1],[0,-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],[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,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]],[[2742,2069],[0,-1],[0,-1],[0,-2],[0,-2],[1,-3],[0,-2],[0,-3],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[1,0],[0,-2],[0,-2],[0,-2],[1,-3],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-3],[0,-2],[1,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-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],[1,0],[-1,0],[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,2],[0,2],[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,0],[0,-1],[-1,0],[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],[0,1],[0,1],[0,-1],[0,1],[0,1],[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],[0,-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,-3],[0,-3],[0,-3],[0,-1],[0,-6],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-3],[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,0],[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,-2],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[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],[-1,4],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[-1,3],[1,1],[-1,0],[0,1],[0,1],[0,4],[0,4],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[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,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,2],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[-1,1],[1,-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],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,2],[-1,1],[1,1],[0,1],[-1,-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],[0,1],[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],[0,1],[1,1],[-1,-1],[1,0],[0,1],[0,-1],[0,1],[0,1],[-1,-1],[1,0],[-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],[0,1],[0,1],[-1,1],[0,1],[0,-1],[0,1]],[[2738,1856],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[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],[0,1],[0,-1],[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],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[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],[-1,0],[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,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[-1,0],[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],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-2],[0,-3],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[-2,0]],[[2716,1928],[0,5],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,5],[1,0],[0,2],[0,4],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,2],[1,0],[0,2],[0,1],[0,2],[0,1],[0,-1],[1,0],[0,-1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,3],[0,3],[0,-1],[0,1],[1,0],[0,2],[-1,0],[0,4],[0,1],[0,1],[0,2],[0,2]],[[2701,1700],[0,-1],[0,-1],[-1,0],[0,1],[1,1]],[[2699,1697],[0,1],[0,1],[-1,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2699,1697],[0,0]],[[2697,1721],[0,-1],[-1,0],[0,1],[1,0]],[[2696,1726],[0,0]],[[2696,1726],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1]],[[2696,1726],[1,0],[1,0],[1,0],[0,7],[0,3]],[[2699,1736],[0,-1],[0,-1],[1,0],[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],[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],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[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],[-1,0],[0,-1],[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],[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,0],[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],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,1]],[[2712,1924],[0,0]],[[2712,1924],[0,0]],[[2712,1924],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[2,0],[0,1],[0,1]],[[2743,1840],[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,-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,-1],[0,-1],[0,-4],[0,-6],[0,-1],[0,-1],[0,-1],[0,-5],[0,-2],[0,-1],[0,-2],[0,-2],[0,-5],[0,-1],[0,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-4],[0,-2],[-1,-2],[0,-3],[-2,-9],[0,-1],[-1,-5],[-1,-2]],[[2737,1728],[0,-2],[0,-5],[0,-1],[0,-7],[-1,-13],[0,-2],[0,-4],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2729,1693],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2718,1662],[0,-1],[0,1]],[[2718,1662],[0,0]],[[2718,1662],[-1,0],[0,1],[0,-1],[-1,0],[0,2],[0,1],[-1,0],[-1,0],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1]],[[2712,1679],[0,1],[0,1],[1,-1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2710,1673],[-1,3],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,6],[0,1],[-1,0],[-1,0],[-1,0]],[[2705,1693],[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,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[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],[-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],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[-1,0],[0,-1],[0,-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,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[1,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],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1]],[[2699,1737],[0,1],[0,1],[0,1],[0,2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,5],[0,3],[0,1],[0,2],[0,2],[0,1],[0,2],[0,3],[0,3],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[-3,0],[0,3],[0,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,2],[0,2],[0,1],[0,2],[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,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,-1],[1,0],[-1,1],[1,2],[-1,1],[0,3],[0,1],[1,0],[0,1],[1,0],[0,1],[0,2],[0,1],[0,3],[0,1],[-1,0],[-1,0],[-1,0],[-1,0]],[[2694,1856],[0,1],[0,1],[0,1],[0,1],[1,4],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2697,1895],[0,0]],[[2697,1895],[0,1]],[[2697,1896],[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]],[[2699,1897],[0,0]],[[2699,1897],[0,-1],[0,1],[0,1],[0,-1],[1,0],[0,1],[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],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[2,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[0,3],[0,1],[0,2],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,3],[0,12],[0,1],[0,3],[0,1],[0,3],[-1,0],[0,6],[0,2],[0,3]],[[2712,1924],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,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,2],[0,1],[0,1],[0,3],[-1,-1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,4],[0,1],[0,4],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,-1]],[[2761,1696],[0,0]],[[2761,1696],[0,1]],[[2761,1697],[0,-1]],[[2757,1766],[0,1],[1,0],[0,-1],[0,-2],[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,-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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[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],[-1,0],[0,1],[0,1],[0,1],[0,-1]],[[2754,1822],[0,-2],[0,-3],[1,-3],[0,-3],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[1,-3],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-3],[-1,1],[0,1],[0,1],[1,1],[0,-1],[0,1],[-1,2],[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],[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,0],[-1,0],[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,0],[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,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1]],[[2753,1840],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,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],[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]],[[2752,1840],[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,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-1],[1,0],[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,0],[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,-2],[0,-1],[0,-1],[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],[-1,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],[0,1],[0,1],[-1,0],[0,1],[0,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],[-1,-1],[1,0],[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,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[1,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[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,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[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],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[-1,-1],[1,0],[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],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-5],[0,-2],[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,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2]],[[2761,1700],[-1,0],[1,0],[-1,0],[0,-2],[-1,0],[0,-5],[0,-1],[0,-1],[-1,0],[0,1],[0,-5],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,-3],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,-2],[0,-1],[-1,0],[0,1],[0,-2],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-6],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,3],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,2],[-1,3],[-1,5],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,2],[0,1],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0]],[[2705,1980],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[-1,0],[-1,0],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-5],[0,-2],[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],[0,-1],[0,-1],[-1,-2],[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],[0,-1],[0,-1],[0,-1],[1,0]],[[2694,1934],[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],[-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,-4],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1]],[[2688,1926],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2687,1929],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,-1],[0,-1]],[[2685,1932],[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,0],[0,1],[0,1],[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],[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],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,2],[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],[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,0],[0,1],[-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],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,1]],[[2697,1896],[0,0]],[[2697,1896],[0,3],[0,2],[0,1],[0,1],[0,-1],[0,5],[1,0],[0,-1],[0,2],[0,3],[0,2],[-1,0],[0,2],[0,6],[0,2],[0,1],[0,1],[0,4],[-1,-3],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-2],[0,-1]],[[2689,1882],[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,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1]],[[2687,1868],[0,2],[0,1],[0,1],[0,1]],[[2687,1873],[0,0]],[[2687,1873],[0,1]],[[2687,1874],[0,1],[0,3],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,1]],[[2694,1856],[-1,0],[-1,0],[-1,0]],[[2691,1856],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[-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],[0,1],[0,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],[-1,0],[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],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[1,0]],[[2694,1897],[0,1],[0,3],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1]],[[2697,1896],[-1,0],[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],[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],[0,1],[-1,0],[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,0],[1,1],[-1,0],[0,1],[1,0],[-1,0],[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,-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,0],[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],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,2],[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],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,1]],[[2709,1278],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[2713,1284],[-1,1],[1,1],[0,-2]],[[2712,1285],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[-1,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-2],[0,1],[-1,0],[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],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[2703,1289],[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],[0,1],[-1,0],[0,-1],[0,1],[1,0],[0,1]],[[2716,1289],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[-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],[0,-1],[0,1],[0,-1]],[[2714,1295],[-1,0],[0,1],[1,-1]],[[2718,1297],[0,-1],[0,-1],[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],[1,0],[0,1]],[[2726,1298],[-1,0],[1,1],[0,-1]],[[2718,1297],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[2723,1299],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-1]],[[2722,1303],[0,-1],[-1,0],[0,1],[0,-1],[1,1]],[[2726,1299],[0,1],[1,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1]],[[2716,1304],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1]],[[2717,1288],[1,1],[-1,0],[1,1],[-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],[-1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1]],[[2718,1297],[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,1],[0,-1],[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],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1]],[[2722,1305],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1]],[[2716,1306],[-1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,1]],[[2720,1307],[0,-1],[1,0],[0,-1],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[2725,1309],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[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]],[[2722,1308],[0,1],[-1,0],[0,1],[1,-1],[0,-1]],[[2719,1311],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,-1]],[[2733,1314],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[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]],[[2724,1311],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,-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],[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],[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],[1,-1],[0,-1]],[[2723,1304],[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,0],[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,0],[0,1],[0,-1],[0,-2],[0,-1],[0,-1]],[[2725,1315],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1]],[[2723,1318],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0]],[[2721,1315],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[2726,1317],[0,-1],[0,1],[-1,0],[1,1],[0,-1]],[[2724,1316],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1]],[[2722,1318],[0,-1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1]],[[2733,1314],[1,0],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,-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],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1]],[[2737,1323],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1]],[[2721,1324],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,-1]],[[2740,1330],[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],[1,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1]],[[2742,1338],[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,1],[0,-1],[0,-1],[-1,-1],[0,-1]],[[2743,1345],[-1,0],[0,1],[1,0],[-1,0],[1,1],[0,-1],[0,-1]],[[2744,1349],[-1,-1],[0,1],[0,1],[1,0],[0,-1]],[[2744,1345],[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],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1]],[[2747,1365],[0,-1],[-1,0],[0,1],[1,0]],[[2742,1365],[0,-1],[-1,1],[0,1],[1,0],[0,-1]],[[2744,1370],[-1,0],[1,1],[0,-1]],[[2740,1371],[0,1],[1,0],[0,-1],[-1,0]],[[2743,1371],[-1,0],[0,1],[1,0],[0,-1]],[[2749,1373],[0,1],[1,0],[0,-1],[-1,0]],[[2738,1384],[-1,0],[1,1],[0,1],[0,-1],[0,-1]],[[2743,1388],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[1,-1]],[[2747,1390],[-1,0],[0,1],[1,-1]],[[2752,1393],[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],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1]],[[2745,1395],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1]],[[2736,1408],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1]],[[2733,1413],[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],[1,0]],[[2732,1412],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1]],[[2734,1413],[-1,0],[0,1],[1,0],[-1,0],[1,0],[0,-1]],[[2735,1415],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,-1]],[[2734,1414],[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,0],[-1,-1],[1,0],[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,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],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,-1],[0,-1]],[[2732,1417],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[1,0],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,-1],[1,1],[0,-1],[-1,0],[0,1],[0,1],[0,1]],[[2752,1421],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1]],[[2751,1419],[0,-1],[1,0],[-1,0],[0,1]],[[2751,1419],[1,0],[0,1]],[[2752,1420],[0,1]],[[2733,1421],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[1,0],[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]],[[2733,1423],[0,-1],[-1,0],[0,1],[1,0]],[[2733,1425],[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]],[[2735,1425],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,-1]],[[2733,1427],[0,-1],[-1,0],[0,1],[1,0]],[[2755,1429],[0,-1],[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],[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],[0,-1],[0,-1],[0,-1],[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,-2],[0,-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],[0,-1],[-1,0],[0,1],[0,-1],[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],[-1,0],[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,0],[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],[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],[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],[0,-1],[0,1],[0,1],[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],[0,1],[0,1],[0,1],[1,-1],[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],[-1,0],[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],[0,1],[1,0],[0,1]],[[2731,1429],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1]],[[2729,1464],[-1,0],[0,1],[0,1],[1,-1],[0,-1]],[[2733,1466],[0,-1],[0,-1],[0,-1],[-1,0],[1,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,-1]],[[2731,1469],[0,-1],[0,1],[1,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,-1]],[[2730,1474],[1,0],[0,-1],[-1,0],[0,1]],[[2727,1484],[-1,0],[0,1],[1,0],[0,-1]],[[2726,1487],[0,1],[0,1],[1,-1],[-1,-1]],[[2727,1502],[0,-1],[0,-1],[0,-1],[0,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],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,-1],[0,1],[0,-1]],[[2722,1513],[0,-1],[0,1]],[[2722,1513],[0,0]],[[2753,1506],[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,0],[0,-1],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-3],[-1,-2],[0,-1],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[1,-1],[0,-2],[0,-4],[0,-1],[0,-1]],[[2751,1419],[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,0],[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],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[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],[0,-1],[0,1],[0,-1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[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],[0,1],[0,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,-1],[0,1],[0,-1],[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],[1,0],[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,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],[0,1],[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],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[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],[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],[1,0],[-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],[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,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],[0,-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],[0,-1],[-1,0],[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,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],[0,-1],[-1,-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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[-1,2],[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,2],[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],[1,0],[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],[-1,-1],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[1,0],[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,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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],[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],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[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,0],[0,-1],[0,1],[0,1],[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],[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,0],[0,-1],[0,-1],[0,1],[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],[-1,-1],[0,1],[1,0],[-1,0],[1,0],[-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],[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],[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,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,0],[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],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,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],[1,0],[-1,1],[1,0],[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,0],[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,0],[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,0],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[-1,0],[0,1],[1,-1],[-1,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],[0,-1],[-1,0],[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,0],[0,1],[1,0],[-1,0],[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],[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],[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],[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],[0,1],[0,1],[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],[0,1],[0,1],[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],[0,1],[-1,0],[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,0],[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],[-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],[0,-1],[0,1],[0,1],[-1,0],[1,0],[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,-1],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1]],[[2725,1513],[1,0],[1,0],[1,0],[3,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[0,-6],[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],[0,1]],[[2686,1856],[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],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2687,1869],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,0]],[[2687,1868],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2687,1873],[0,1]],[[2685,1875],[1,0],[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],[0,1],[0,1],[0,1],[0,-1],[0,-1]],[[2686,1878],[0,-1],[0,1],[-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],[0,1],[1,-1],[0,-1]],[[2684,1925],[0,-1],[0,1],[-1,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2687,1874],[0,-1],[-1,0],[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,0],[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,0],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[0,-1],[1,-1],[-1,0],[1,0],[0,-2],[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],[0,1],[0,1],[0,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],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[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],[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],[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],[1,0]],[[2687,1929],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[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,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],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[-1,0],[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],[0,-1],[0,-1],[1,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],[0,-1],[0,-1],[0,-1],[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],[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],[0,1],[0,-1],[0,-1],[0,-1]],[[2683,1937],[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],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[2696,1726],[0,1],[0,1],[0,-1],[0,-1]],[[2696,1730],[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],[0,-1],[1,0],[0,-1]],[[2692,1774],[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],[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]],[[2691,1791],[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,1],[0,1],[0,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],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1]],[[2690,1795],[0,-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]],[[2687,1818],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[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],[1,0],[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],[0,1],[0,1],[0,1]],[[2686,1833],[0,1],[1,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,-1],[1,0],[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,1],[0,1],[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],[0,-1]],[[2699,1737],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2696,1726],[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,1],[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],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[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],[-1,0],[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,0],[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,0],[0,1],[0,1],[1,1],[-1,0],[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],[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],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[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,-1],[0,1],[0,-1],[-1,-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],[0,1],[-1,0],[1,1],[0,1],[0,-1],[1,0],[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],[0,-1],[0,-1],[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],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[-1,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],[-1,0],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[-1,0],[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],[-1,0],[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],[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,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2716,1530],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[1,1],[0,-1]],[[2714,1530],[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],[-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,2],[0,1],[-1,0],[0,1],[0,1],[0,-1]],[[2715,1531],[-1,0],[0,1],[1,0],[0,-1]],[[2714,1543],[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],[0,-1],[0,-1],[1,0],[-1,0],[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],[1,0],[-1,1],[0,-1],[0,-1],[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],[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],[-1,0],[0,1],[0,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],[1,-1],[0,1],[-1,0],[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]],[[2713,1551],[1,0],[0,-1],[-1,0],[0,-1],[1,-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],[0,-1]],[[2712,1567],[0,-1],[0,-1],[0,-1],[0,1],[0,-2],[0,-1],[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],[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],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,-1]],[[2710,1625],[-1,0],[0,1],[0,1],[0,2],[-1,2],[0,2],[0,1],[-1,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2701,1640],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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,-2],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[2706,1643],[-1,-1],[0,1],[1,0]],[[2701,1657],[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],[1,-1]],[[2703,1669],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[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,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2702,1669],[-1,-1],[0,1],[1,0]],[[2700,1674],[1,-1],[-1,-1],[0,1],[0,1]],[[2718,1662],[0,-2],[0,-2],[0,-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,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-5],[-1,0],[-1,0],[-1,0],[0,-3],[0,-1],[0,-4],[0,-3],[0,-3],[0,-2],[0,-3],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-3],[1,0],[0,-1],[0,-1],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-4],[0,-2],[0,-1]],[[2716,1538],[0,0]],[[2716,1538],[0,0]],[[2716,1538],[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],[1,0],[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,0],[0,-1],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[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],[0,1],[-1,0],[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,0],[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,0],[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,3],[0,2],[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,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,3],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[-1,0],[1,0],[-1,0],[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,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,1],[1,-1],[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],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[-1,1],[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],[0,1],[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],[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,-1],[0,-1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[1,0],[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],[1,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],[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],[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]],[[2702,1681],[1,0],[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],[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],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[-1,0],[1,1],[-1,0],[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,0],[0,1],[1,0],[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,0],[0,1],[-1,0],[0,1],[0,1],[1,0]],[[2700,1671],[0,-1],[0,-1],[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],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2710,1673],[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],[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,0],[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],[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],[0,1],[-1,1],[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],[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]],[[2699,1697],[0,-1],[0,-1],[0,1],[0,1]],[[2761,1700],[0,-1],[0,-1],[0,-1]],[[2761,1696],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-4],[1,0],[0,-2],[0,-2],[-1,0],[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,-7],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,7],[0,5],[0,3],[0,1],[0,6],[0,1],[0,1],[0,1],[-1,0],[0,-1]],[[2759,1673],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-2],[0,-3],[1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-3],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-4],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,-4],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1]],[[2759,1611],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2758,1580],[0,0]],[[2758,1580],[0,-1],[0,-1]],[[2758,1578],[0,0]],[[2758,1578],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,3],[0,1],[0,1],[0,1],[-1,0]],[[2755,1575],[0,0]],[[2755,1575],[0,1],[0,1],[-1,0],[0,1],[0,2]],[[2754,1580],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2752,1574],[0,0]],[[2752,1574],[-1,1],[-1,1],[0,1]],[[2750,1577],[-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,1],[-1,0],[0,1],[0,3],[0,3],[0,4],[0,4],[0,2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,3],[0,2],[0,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,4],[0,4],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[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,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,2],[0,1],[0,3],[0,1],[0,1],[0,8],[-1,0],[0,1],[-1,1],[0,1]],[[2759,1673],[0,-1],[0,-2],[0,-4],[0,-1],[0,-1],[0,-4],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[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,-2],[0,-1],[1,0],[0,-4],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-3],[0,-1],[1,0]],[[2759,1567],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[-1,0],[-1,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2761,1696],[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,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[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,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,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,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-3],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-6],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,1],[0,1],[0,-1],[0,-1]],[[2758,1509],[-1,1],[1,0],[0,-1]],[[2758,1511],[0,-1],[-1,1],[1,0]],[[2759,1531],[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],[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,0],[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],[0,1],[1,0]],[[2759,1531],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,2],[0,1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2758,1538],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[2753,1549],[0,1],[-1,0],[1,0],[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,2],[0,2],[0,2],[0,3],[0,3],[0,4],[0,2],[0,2],[0,1],[0,1]],[[2759,1567],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-4],[0,-2],[0,-2],[0,-3],[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]],[[2757,1508],[1,0],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,-1]],[[2758,1538],[0,-1],[0,-2],[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],[-1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[0,-2],[0,-1],[0,-1]],[[2757,1505],[0,1],[0,1],[-1,1],[0,1],[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]],[[2755,1524],[0,1],[0,-1],[0,1],[0,1],[0,2],[-1,0],[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,0],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2722,1513],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[2721,1517],[0,1],[-1,1],[1,0],[0,-1],[0,-1]],[[2723,1517],[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],[1,0],[0,-1]],[[2721,1522],[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],[-1,0],[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],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1]],[[2719,1525],[0,-1],[0,1],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[2720,1530],[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,0],[0,1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[1,0],[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],[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,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,0]],[[2717,1530],[0,1],[1,0],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,-1]],[[2717,1536],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[1,-1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,1]],[[2755,1524],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1]],[[2725,1513],[0,1],[0,1],[0,1],[0,1],[0,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],[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],[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],[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,0],[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],[0,1],[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],[0,-1],[0,1],[1,0],[-1,0],[1,0],[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,0],[1,0],[0,1],[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],[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,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],[0,1],[1,0],[0,1],[-1,0]],[[2623,2761],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[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],[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],[0,4],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,2],[0,3],[0,2],[0,1],[0,3],[0,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[1,0],[0,2],[-1,0],[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,1],[0,1],[0,1],[1,0],[1,0],[1,0],[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],[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,0],[0,1],[0,-1],[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],[1,0],[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],[0,-1],[1,0],[0,-1],[0,-1],[0,-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,-2],[0,-1],[0,-1],[0,-1],[0,1],[0,2],[0,2],[0,1],[1,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,3],[0,2],[0,1],[0,2],[0,1]],[[2647,2825],[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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[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]],[[2660,2828],[0,0]],[[2660,2828],[0,1],[1,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-2],[0,-1],[0,-1],[1,1],[0,1],[0,-1],[0,-1],[0,-1],[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],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-3],[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],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[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],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[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,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,2],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-3],[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,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-3],[0,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[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],[-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,-1],[0,-2],[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],[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],[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,-2],[1,0],[0,-4],[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,-1],[0,-3],[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,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-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],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-2],[0,-1],[0,-2],[-1,0],[-1,0],[-1,0],[-1,0],[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,-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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,0],[1,-1],[-1,0],[0,-1],[0,-1],[1,0],[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,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2643,2931],[0,0]],[[2643,2931],[0,0]],[[2643,2931],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0]],[[2647,2944],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[1,0],[1,0]],[[2649,2891],[0,-2],[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,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[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,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-4],[0,-1]],[[2613,2974],[1,0],[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,0],[0,1],[0,-1],[1,0],[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],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[2626,2998],[0,-2],[0,-1],[0,-1],[0,-2],[0,-3],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-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],[1,0],[1,0],[1,0],[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],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[1,-3],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,-1],[0,-1],[1,-2],[0,-1],[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],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2640,2923],[0,0]],[[2640,2923],[0,1],[0,-1],[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],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2653,3010],[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],[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,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[-1,-2],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[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,0],[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,0],[0,1],[0,1]],[[2648,2957],[0,1],[-1,0],[0,-1],[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],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0]],[[2643,2973],[0,1],[0,1],[0,1]],[[2643,2976],[0,0]],[[2643,2976],[0,0]],[[2643,2976],[0,0]],[[2643,2976],[0,0]],[[2643,2976],[0,0]],[[2643,2976],[0,0]],[[2643,2976],[0,0]],[[2643,2976],[0,1],[0,1],[1,0],[-1,0],[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,2],[1,0],[0,1],[-1,0],[0,1],[0,1],[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,2],[0,1]],[[2642,3009],[0,1],[0,1],[1,0],[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],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[2644,3021],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,-2],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,-3],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[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,-1],[0,-1]],[[2642,3013],[0,0]],[[2642,3013],[0,-1],[0,-1],[0,-1],[0,-1]],[[2643,2973],[0,-1],[0,-1],[0,-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],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1]],[[2639,2963],[0,0]],[[2639,2963],[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,0],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,2],[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],[1,0],[0,1],[0,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],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2637,3005],[0,1],[1,1],[0,-1],[0,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],[1,0],[0,1],[0,1],[-1,0],[1,0]],[[2641,3013],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[1,1],[0,1],[0,1]],[[2654,3059],[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],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1]],[[2644,3021],[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],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[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,0],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2643,3074],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2]],[[2643,3083],[1,0],[1,0],[0,1],[1,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],[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],[1,0],[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,0]],[[2680,2799],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[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],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[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],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-2],[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,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[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],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,2],[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,0],[0,-1],[0,-1],[0,-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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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],[1,0],[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],[0,-1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[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],[-1,0],[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,-1],[0,-2],[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],[0,-1],[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],[0,-1],[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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2689,2548],[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],[-1,0],[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],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[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,-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],[0,-1],[-1,0],[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,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,2],[0,3],[0,2],[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,-1],[0,-1],[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,-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,-2],[0,-1],[0,-1],[1,0],[1,0],[0,-4],[0,-1],[-1,0],[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,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1]],[[2649,2891],[1,0],[1,0],[1,-1],[1,0],[1,0],[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],[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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[1,-1],[0,1],[0,1],[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,0],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,2],[-1,2],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[1,0],[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],[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],[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]],[[2647,2952],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2654,3059],[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],[0,-1],[1,0],[0,-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],[0,-1],[0,-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],[0,-1],[0,1],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1]],[[2666,3040],[0,0]],[[2666,3040],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-3],[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],[0,-1],[0,-1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1]],[[2677,3043],[0,1],[0,-1]],[[2677,3043],[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],[1,0],[0,-1],[0,-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],[1,0],[0,1],[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],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2691,3031],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[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],[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,-3],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2702,2964],[0,-1],[0,-5],[0,-1],[-1,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],[-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],[1,0],[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],[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,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,-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,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-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,-2],[0,-1],[-1,1],[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],[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,-2],[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],[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],[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],[1,0],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[0,-2],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[-1,0]],[[2647,2944],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2633,3020],[0,0]],[[2633,3020],[-1,0],[0,1],[-1,0],[-1,0]],[[2630,3021],[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,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],[0,3],[0,1],[0,1],[0,3],[0,1],[1,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,3],[0,1],[0,1],[0,6],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[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],[0,1],[1,0],[0,-2],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-2],[0,-3],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0]],[[2639,3111],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[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]],[[2643,3074],[-1,0],[-1,0],[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,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[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],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[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,-2],[0,-1],[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],[0,-1],[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]],[[2637,3005],[0,1],[0,1],[0,1],[0,1],[-1,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,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],[0,1],[-1,0],[0,-1]],[[2706,2952],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[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],[1,0],[0,-1],[0,-1],[-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],[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],[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,0],[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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[-1,1],[1,0],[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],[1,0],[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]],[[2717,2871],[0,-1],[0,-1],[0,-1],[0,1],[1,-1],[0,-1],[-1,0],[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],[0,-1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[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],[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,-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],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-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],[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],[-1,0],[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],[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,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[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],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-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],[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],[0,-1],[0,-1]],[[2729,2737],[0,-1],[0,-1],[0,-1],[-1,0],[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],[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],[-1,0],[0,-1],[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],[0,2],[0,1],[0,1],[0,-1],[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],[-1,0],[0,-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],[0,-1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-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],[-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],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[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],[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],[0,-1],[0,-1],[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],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[0,1],[0,-3],[0,-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,-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,-2],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[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,-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,1],[0,2],[0,2],[0,1],[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,2],[-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],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[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,-2],[0,-1],[0,-2],[1,0],[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,0],[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]],[[2702,2964],[0,-1],[1,0],[0,1],[0,-1],[1,-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]],[[2639,2963],[0,0]],[[2633,3020],[0,0]],[[2626,2998],[0,-1],[1,0],[0,1],[1,0],[2,1],[0,1],[0,2],[0,1],[0,2],[0,3],[0,7],[0,2],[0,2],[0,1],[0,1]],[[2633,3223],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[1,0],[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,0],[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],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[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,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[1,0],[1,0],[1,0],[0,1],[1,-1],[0,1],[0,1],[0,1],[1,0],[0,-3],[0,2],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,1],[-1,0],[0,2],[0,-4],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[-1,0],[0,-4],[1,-1],[0,1],[0,-1],[0,-2],[1,1],[0,-3],[0,1],[0,2],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2606,3222],[4,0]],[[2610,3222],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2633,3223],[3,0],[1,0],[1,0],[2,0],[1,0],[1,0]],[[2642,3223],[3,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],[1,0],[2,0],[0,1],[2,0],[1,0],[1,0],[3,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0]],[[2675,3225],[1,0],[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,0],[0,1],[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],[-1,0],[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,0],[0,-1],[1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-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],[0,-1],[0,-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,0],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[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],[1,0],[0,-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,0],[0,-1],[0,1],[0,1],[1,-1],[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,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[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],[1,0],[0,-1],[0,-1],[0,-1],[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],[0,-2],[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,0],[0,-1],[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],[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],[0,-1],[0,-1],[1,-1],[0,-2]],[[2719,2450],[0,1],[0,1],[0,1],[1,-1],[0,-1],[-1,0],[0,-1]],[[2723,2468],[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,0],[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,0],[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],[-1,0],[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],[0,1],[0,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],[-1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2721,2482],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2720,2489],[0,1],[0,1],[0,-1],[1,0],[-1,-1]],[[2723,2487],[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],[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,0],[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]],[[2722,2511],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2722,2509],[0,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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2727,2538],[0,-1],[0,1],[-1,0],[1,1],[0,-1]],[[2724,2539],[0,-1],[1,0],[0,1],[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,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],[0,1],[0,1],[0,1],[0,1],[0,-1],[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],[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,0],[0,-1],[0,-1],[-1,0],[0,-1],[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],[-1,0],[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,0],[0,-1],[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],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2726,2539],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0]],[[2725,2541],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[1,0]],[[2722,2543],[0,-1],[1,0],[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],[0,-1],[0,1]],[[2723,2543],[-1,0],[1,1],[0,-1]],[[2726,2551],[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]],[[2726,2555],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[1,0]],[[2729,2581],[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,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],[0,-1],[0,-1],[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],[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],[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,1],[0,1],[1,0],[0,1]],[[2727,2584],[0,-1],[0,-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],[0,1],[1,-1]],[[2727,2603],[1,0],[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],[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],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[1,1],[0,1],[0,-1],[0,-1]],[[2728,2606],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,-1]],[[2730,2609],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2731,2610],[0,-1],[-1,0],[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],[1,0],[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,0],[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],[-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],[0,-1],[1,0]],[[2731,2639],[0,-1],[1,0],[0,-1],[0,1],[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],[-1,-1],[0,-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],[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],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,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],[0,1],[0,1],[0,1],[1,0]],[[2732,2640],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,-1]],[[2728,2648],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2729,2652],[0,1],[1,0],[0,-1],[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],[1,0],[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],[0,1],[0,1],[0,1],[0,1],[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],[0,1],[0,-1]],[[2737,2658],[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],[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],[-1,0],[0,-1]],[[2735,2679],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[0,1],[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,1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0]],[[2736,2675],[0,-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]],[[2734,2679],[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],[1,0],[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,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[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],[0,1],[0,-1],[1,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1]],[[2734,2679],[0,1],[0,1],[0,-1],[1,0],[0,-1],[-1,0]],[[2735,2681],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2732,2686],[-1,1],[1,0],[0,-1]],[[2728,2617],[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],[0,-1],[-1,0],[0,-1],[0,1],[-1,1],[1,1],[0,1],[0,-1],[-1,0],[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],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,-1],[1,0],[0,-1],[0,1],[0,1],[1,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-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],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[-1,1],[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],[-1,1],[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,0],[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,0],[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,-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],[1,0],[0,1],[0,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],[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],[0,-1],[0,-1],[-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],[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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[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],[0,-1],[0,1],[-1,0],[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],[-1,0],[1,0],[0,-1],[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,0],[0,-1],[1,0],[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],[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,0],[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],[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],[0,1],[-1,0],[0,1],[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],[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],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[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],[0,-1],[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],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[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],[0,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[1,1],[0,1],[-1,1],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[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,0],[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,0],[0,1],[1,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,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[1,0],[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],[0,1],[-1,-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,-1],[0,1],[0,1],[0,-1],[-1,0],[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],[1,0],[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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[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],[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],[0,-1],[1,-1],[0,-1],[0,-1],[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],[0,-1],[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],[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],[-1,0],[0,-1],[0,-1],[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],[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,0],[0,-1],[-1,-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],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,-1],[1,1],[0,1],[-1,0],[1,-1],[-1,0],[0,1],[0,-1],[0,-1],[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,1],[1,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]],[[2729,2737],[0,-1],[1,0],[0,-1],[-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],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[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],[1,0],[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]],[[2731,2689],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,1],[-1,0],[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],[1,0],[0,-1],[0,-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],[0,-1],[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],[0,1],[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],[0,-1],[0,-1],[-1,0],[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],[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],[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],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[1,1],[-1,0],[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,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],[0,-1],[0,2],[0,1],[0,1],[0,-1],[0,-1],[0,1],[-1,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[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,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[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],[0,-1],[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],[1,0],[0,-1],[0,-1],[-1,0],[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],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[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],[-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],[0,-1],[0,-1],[-1,-1],[0,-1],[1,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],[0,1],[0,-1],[1,0],[0,-1],[0,-1]],[[2448,2202],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1]],[[2431,2226],[0,-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],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[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],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[-1,0],[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],[0,-1],[0,1],[0,1],[-1,0],[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],[1,0],[0,1],[0,1],[0,1],[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]],[[2450,2218],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[-1,1],[0,-1],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-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],[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],[-1,0],[0,1],[-1,-1],[0,-1],[-1,-1],[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],[0,1],[0,1],[0,1],[0,1],[-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],[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,0],[-1,0],[0,1],[1,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[-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],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,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],[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,0],[0,1],[0,1],[0,1],[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],[0,1],[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],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-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],[0,1],[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],[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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,-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,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[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],[0,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],[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],[-1,1],[0,1],[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],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[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,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,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],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2377,2237],[-1,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],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1]],[[2376,2269],[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],[1,0],[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],[1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,1],[0,-1],[0,1],[0,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],[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,0],[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]],[[2379,2369],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,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,2],[0,1],[1,0],[1,0],[1,0],[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,-2],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,3],[0,1],[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],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[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,0],[1,0],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[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,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,5],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[0,1],[1,0],[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],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2428,2370],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,-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],[0,1],[0,1],[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]],[[2435,2387],[1,0],[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,-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,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[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],[1,0],[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,0],[1,0],[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],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-2],[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],[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],[0,-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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-7],[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,0],[0,-1],[0,-1],[0,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],[0,-1]],[[2426,2854],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[0,-1],[0,-1],[-1,-1],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[-1,0],[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],[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,-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],[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],[0,-1],[0,-1],[-1,-1],[0,-1],[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],[-1,0],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,3],[0,2],[0,1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[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],[0,-2],[0,-2],[0,-1],[0,-3],[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],[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],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-2],[1,0],[1,0],[1,0],[0,-3],[0,-1],[0,-1],[0,-2],[0,-2],[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,-1],[0,-1],[0,-1],[0,-1],[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,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-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],[0,-1],[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],[0,-1],[0,-1],[1,-1],[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],[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,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],[0,1],[0,-1],[0,-1],[1,-1],[-1,0],[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,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[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],[1,0],[0,-1],[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],[1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-2],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-2],[0,-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],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[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],[0,-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,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[0,-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],[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],[0,1],[0,-1],[1,0],[0,1],[0,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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[1,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[1,-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],[0,-2],[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],[1,-1],[0,-1],[-1,1],[0,-1],[0,-1],[-1,1],[0,-2],[1,-2],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,-2],[0,-1],[0,-1],[0,3],[-1,-1],[0,-1],[-1,3],[0,1],[0,-2],[0,-1],[-1,0],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,2],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-2]],[[2379,2369],[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],[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,0],[0,1],[1,0],[-1,0],[0,1],[1,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],[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,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],[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],[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,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[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],[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,1],[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],[0,1],[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],[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],[0,-1],[-1,0],[0,2]],[[2383,2513],[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,0],[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],[1,0],[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,0],[0,1],[0,1],[0,1],[1,2],[-1,1],[0,2],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[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],[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,0],[-1,0],[1,1],[0,2],[0,1],[-1,0],[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,0],[0,-1],[0,1],[0,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],[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],[-1,0],[0,1],[0,-1],[0,-1],[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],[-1,0],[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],[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,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,3],[0,2],[0,2],[0,2],[0,1],[0,1],[0,4],[0,3],[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,3],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2371,2796],[0,1],[0,2],[0,1],[0,1],[0,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,2],[0,2],[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,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,3],[0,2],[0,1],[0,2]],[[2371,2856],[1,0],[3,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],[1,0],[2,0],[2,0],[2,0],[1,0],[4,0],[1,0],[2,0],[1,0],[4,0],[1,-1],[2,0],[2,0],[3,0],[2,0],[1,0],[3,0],[1,0],[3,-1]],[[2443,2854],[2,0],[2,0],[1,0],[1,0],[2,0]],[[2451,2854],[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,-2],[0,-1],[0,-2],[0,-1],[1,-2],[1,1],[0,3],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[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,-2],[0,-2],[0,-1],[0,-2],[0,-3],[1,-2],[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],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[1,-3],[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,2],[1,2],[0,1],[0,1],[0,-1],[1,-3],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-3],[-1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,-2],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,2],[0,1],[0,2],[0,2],[0,1],[-1,3],[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],[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,1],[0,1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,1],[0,1],[1,2],[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,-2],[0,-1],[-1,-1],[0,-2],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-6],[0,-3],[0,-2],[0,1],[-1,3],[1,1],[0,1],[-1,0],[0,3],[0,1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,-1],[0,-1],[0,-2],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[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],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-3],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-2],[-1,0],[0,-1],[0,-3],[0,-2],[-1,1],[0,3],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,1],[1,-1],[-1,-1],[0,-1],[1,0],[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],[1,-3],[0,-2],[0,-2],[-1,0],[0,-1],[0,1],[0,3],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-6],[-1,-1],[0,-1],[0,-3],[1,0],[1,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,1]],[[2447,2620],[-1,0],[-1,0],[0,-1],[0,-2],[0,-4],[-1,-4],[1,-4],[0,-5],[0,-3],[-1,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,1],[0,1],[0,3],[0,-1],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[1,-2],[0,-1],[1,0],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,3],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[0,-2],[0,-2],[0,-3],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-3],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-3],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[-1,0],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[2,0],[3,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[3,1],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[2,0],[4,0],[1,0],[1,0],[4,0]],[[2488,2481],[1,0],[1,0],[1,0],[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],[0,-1],[0,-1],[0,-1],[1,0],[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],[-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],[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],[0,1],[0,-1],[-1,0],[0,-1],[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],[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]],[[2488,2418],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[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],[0,-1],[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],[0,-1],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-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,-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,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,4],[1,2],[-1,3],[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],[0,1],[0,1],[-1,0],[0,2],[0,-2],[0,-1],[0,-7],[0,-3],[0,-1],[0,-2],[0,-1],[-1,0],[0,-5],[-1,0],[0,1]],[[2468,2392],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,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,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,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-2],[0,-1],[0,1],[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,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[-2,-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,-1],[0,-1],[-1,-2],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[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,-2],[0,-1],[0,-1],[0,3],[-1,-5],[-1,2],[0,2],[1,8],[-1,0],[0,-5],[0,1],[0,3],[-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],[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],[-1,0],[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,2],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,2],[-1,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,2],[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],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,-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],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[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],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[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],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[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],[1,0],[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,-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,-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]],[[2426,2854],[2,0],[2,0],[1,0],[1,0],[1,0],[3,0],[2,0],[1,0],[1,0],[1,0],[2,0]],[[2463,2119],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1]],[[2461,2119],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1]],[[2457,2120],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,1],[0,-1]],[[2465,2120],[0,-1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,-1],[-1,0]],[[2474,2122],[1,-1],[-1,0],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1]],[[2461,2122],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,0]],[[2476,2122],[-1,0],[0,1],[1,-1],[0,1],[0,-1]],[[2460,2124],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[2469,2124],[0,-1],[1,0],[0,-1],[0,-1],[0,-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],[0,1],[1,-1]],[[2472,2125],[-1,-1],[0,1],[1,0],[0,1],[0,-1]],[[2474,2128],[0,-1],[-1,0],[0,1],[1,0]],[[2461,2129],[0,-1],[1,1],[0,-1],[-1,-1],[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],[0,-1]],[[2462,2130],[-1,0],[1,1],[0,-1]],[[2461,2132],[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,0],[0,1],[1,0],[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],[1,0]],[[2474,2133],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2464,2133],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,1],[0,1],[1,0]],[[2466,2134],[-1,0],[0,1],[1,0],[0,-1]],[[2466,2140],[0,-1],[-1,1],[0,1],[1,-1]],[[2510,2143],[0,-1],[0,-1],[-1,0],[0,1],[1,1]],[[2455,2143],[0,-1],[-1,1],[0,1],[1,0],[0,-1]],[[2466,2147],[1,0],[0,-1],[-1,1]],[[2459,2148],[0,1],[1,0],[0,-1],[-1,0]],[[2472,2146],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2458,2149],[0,-1],[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],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,-1]],[[2459,2153],[0,-1],[0,1],[0,-1],[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]],[[2456,2150],[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],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,-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],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[2484,2157],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2471,2158],[0,-1],[1,0],[-1,0],[1,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[2484,2162],[1,0],[-1,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,-1]],[[2486,2162],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[1,1],[0,1],[0,-1]],[[2467,2162],[0,1],[1,0],[-1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2487,2167],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[1,-1],[0,1],[-1,1],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,-1]],[[2488,2169],[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,-2],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1]],[[2484,2174],[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],[0,1],[0,1],[0,-1],[0,-1]],[[2488,2177],[0,-1],[0,1],[0,1],[1,-1],[-1,0]],[[2449,2177],[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],[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],[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],[1,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[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,0],[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]],[[2491,2179],[1,-3],[0,1],[1,2],[1,-4],[0,-2],[0,-2],[0,-2],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,2],[0,1],[-1,-1],[0,1],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,2],[1,-3],[0,2],[0,2],[0,2],[0,3]],[[2484,2177],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1]],[[2502,2179],[0,-1],[-1,0],[1,0],[-1,0],[0,1],[1,0]],[[2487,2179],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1]],[[2489,2186],[0,-1],[-1,0],[0,1],[1,0]],[[2496,2185],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1]],[[2482,2188],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[2483,2191],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[1,0]],[[2485,2189],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[2486,2192],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[-1,-1]],[[2483,2189],[0,1],[0,1],[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],[1,0],[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,-1],[0,-1],[-1,0],[1,0],[0,1],[-1,0]],[[2495,2200],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[0,1],[0,1]],[[2481,2204],[0,-2],[1,-1],[0,1],[0,-1],[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],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[1,2],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,-1],[0,1],[0,-1],[0,1],[0,1]],[[2493,2207],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[1,1]],[[2497,2210],[-1,-1],[0,1],[1,0]],[[2495,2210],[1,0],[0,-1],[-1,0],[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],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,-1],[0,-1]],[[2493,2211],[0,1],[1,0],[-1,-1]],[[2496,2215],[-1,-1],[0,1],[0,1],[1,-1]],[[2492,2215],[0,1],[0,1],[1,0],[0,-1],[-1,-1]],[[2495,2217],[-1,0],[0,1],[1,-1]],[[2493,2220],[-1,0],[0,1],[1,0],[0,-1]],[[2493,2221],[-1,0],[0,1],[0,1],[0,-1],[1,0],[0,-1]],[[2493,2225],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,1],[0,1]],[[2480,2219],[0,-1],[-1,0],[0,2],[0,2],[0,3],[0,1],[0,1],[0,3],[1,1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2]],[[2496,2231],[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]],[[2496,2234],[1,0],[-1,-1],[0,-1],[0,1],[0,1]],[[2499,2235],[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]],[[2497,2241],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[-1,1],[1,1],[0,1]],[[2494,2242],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[1,0]],[[2495,2243],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[2501,2246],[0,1],[1,-1],[-1,0]],[[2514,2242],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2497,2247],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[2502,2255],[0,1],[-1,0],[1,1],[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],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[2499,2256],[-1,1],[0,1],[1,-1],[0,-1]],[[2515,2255],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2501,2261],[0,-1],[-1,0],[0,1],[1,0]],[[2501,2260],[0,1],[0,-1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1]],[[2502,2263],[1,0],[0,-1],[-1,0],[0,1]],[[2503,2270],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1]],[[2503,2270],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1]],[[2504,2273],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1]],[[2503,2280],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2499,2282],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1]],[[2501,2280],[0,1],[0,1],[1,-1],[0,-1],[-1,0]],[[2500,2283],[0,-1],[0,1],[0,-1],[-1,0],[1,1]],[[2503,2280],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1]],[[2501,2281],[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]],[[2505,2283],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,-1]],[[2504,2285],[0,1],[1,1],[0,-1],[-1,0],[0,-1]],[[2503,2286],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-2],[-1,0],[0,-1]],[[2501,2288],[0,1],[0,1],[0,1],[0,-1],[1,-1],[-1,0],[0,1],[0,-1],[0,-1]],[[2506,2296],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[1,0]],[[2515,2301],[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],[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,-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],[-1,1],[1,0],[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,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[2506,2300],[0,1],[0,1],[1,1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2500,2303],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[-1,1]],[[2500,2283],[-1,0],[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,0],[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],[0,1]],[[2500,2276],[0,-1],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[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],[-1,0],[0,-1],[1,0],[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],[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,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,-1]],[[2502,2255],[0,-1],[-1,0],[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],[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],[0,1],[-1,0],[0,1],[1,-1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2499,2248],[-1,0],[0,-2],[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],[0,1],[-1,0],[1,1],[0,1],[-1,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,-1],[-1,0],[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],[0,-1],[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],[-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],[0,-1],[0,-1],[0,-1],[0,-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],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[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,0],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[1,1],[-1,0],[1,1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,-1]],[[2493,2229],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2493,2225],[0,-1],[0,1],[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],[0,1],[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],[0,-1],[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,-1],[0,-1],[0,1],[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],[0,-1],[0,-1],[0,-1],[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],[0,1],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,-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],[0,1],[1,0],[0,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],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,1],[-1,0],[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],[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],[1,0],[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,-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],[0,-1],[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],[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],[0,-1],[0,-2],[0,1],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,-2],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[0,-2],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-3],[0,-2],[0,-2],[-1,-1],[0,2],[0,1],[0,2],[-1,-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],[-1,0],[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],[0,-2],[1,-1],[-1,-2],[0,2],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,3],[0,2],[0,1],[0,1],[0,1],[0,3],[-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],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-3],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[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,2],[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],[1,3],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[1,-1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[-1,1],[0,2],[0,2],[0,1],[-1,1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-3],[0,-3],[0,-3],[0,-1],[-1,0],[0,2],[1,5],[0,2],[0,3],[0,2],[0,-1],[-1,-4],[0,-3],[-1,-2],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,-7],[0,1],[-1,2],[0,-2],[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],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[1,2],[0,-2],[1,0],[0,1],[0,-2],[0,-1],[1,0],[0,3],[0,1],[1,0],[0,3],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,2],[-1,3],[0,-1],[0,-1],[0,-2],[-1,0],[0,1],[-1,2],[1,2],[0,1],[0,2],[-1,0],[0,2],[0,1],[-1,1],[0,1],[0,-1],[0,-2],[-1,0],[-1,-1],[0,2],[0,1],[0,-1],[-1,2],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,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],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2489,2186],[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],[0,1],[0,1],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2487,2192],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[-1,1],[0,1],[1,0],[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],[0,-1],[0,1],[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],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[-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],[-1,0],[0,-1],[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],[-1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,-1],[-1,-2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[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,-2],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-2],[0,-2],[1,0],[0,1],[0,-2],[0,-1],[1,-1],[0,1],[0,-2],[0,1],[1,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2482,2188],[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],[0,-1],[-1,0],[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,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[2482,2169],[0,-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],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1]],[[2481,2164],[0,1],[0,1],[0,-1],[1,0],[-1,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],[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],[0,-1],[0,-1],[0,1],[0,-1],[-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],[-1,0],[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],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-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],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0]],[[2476,2134],[0,1],[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],[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],[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,0],[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],[1,-1],[-1,0],[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,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],[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,0],[1,1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[1,0],[-1,1],[1,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],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[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],[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],[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,0],[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,0],[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,0],[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],[0,-1]],[[2467,2153],[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,0],[0,1],[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],[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],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[-1,-2]],[[2466,2147],[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]],[[2466,2150],[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,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[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],[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,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],[0,1],[0,1]],[[2464,2133],[0,1],[-1,0],[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,0],[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],[0,-1],[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]],[[2460,2134],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[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],[0,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],[0,1],[0,-1],[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],[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,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,0],[-1,0],[0,-1],[0,1],[0,1],[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],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,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],[-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],[-1,0],[1,0],[0,-1],[0,-2],[0,1],[0,2],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-2],[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,1],[0,1],[0,1],[1,-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,-2],[0,-1],[0,1],[0,1],[-1,0],[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],[1,0],[0,1],[0,2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,2],[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],[1,1],[0,1],[0,2],[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],[0,1],[0,1],[-1,0],[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],[-1,0],[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],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1]],[[2450,2186],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[0,1],[1,-1],[0,1],[0,2],[1,3],[7,-6],[0,11],[0,1],[0,2],[0,1],[0,1],[1,0],[0,6],[0,2],[0,2],[0,2],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,3],[0,1],[0,3],[-1,1],[0,1],[0,1],[0,4],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[-1,-4],[1,-2],[0,3],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,3],[0,1],[0,2],[0,5],[1,11],[1,1]],[[2471,2258],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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],[1,0],[1,0],[1,0],[0,1],[1,6],[0,3],[0,1],[0,2],[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],[1,0],[-1,0],[1,1],[1,-7],[-1,-4],[1,-3],[0,-1],[0,-1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[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],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[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],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,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],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,1]],[[2487,2295],[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],[1,-1],[1,0],[0,1],[1,1],[0,3],[0,-3],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,1],[0,-1],[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],[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,0],[0,1],[0,1],[0,1],[1,0],[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],[0,-1],[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],[0,-1],[0,-1],[-1,0],[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],[-1,0],[0,1],[0,1],[0,-1],[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],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,-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],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1]],[[2505,2306],[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],[-1,0],[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,0],[0,-1],[0,1],[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],[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]],[[2503,2309],[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],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,0],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1]],[[2500,2320],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[2488,2418],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[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,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],[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,0],[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],[0,-1],[0,-2],[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],[0,-1],[0,-1],[0,-1],[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],[-1,-1],[0,-1],[1,0],[-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],[0,-1],[0,-1],[0,-1],[1,0],[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],[0,-1],[0,-1]],[[2497,2328],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,-1]],[[2494,2322],[0,1],[-1,0],[-1,3],[-1,-3],[-1,-2],[-1,-7],[-1,-2],[-1,9],[0,1],[-1,-3],[-1,-8],[0,-5],[-2,-4],[0,1],[0,1],[0,-3],[-2,-1],[1,-2],[-1,0],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,2],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,1],[0,1],[0,3],[0,1],[0,-1],[0,2],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,1],[0,2],[0,3],[0,1],[0,3],[1,0],[0,2],[-1,0],[0,-2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,2],[0,-1],[0,-1],[0,-1]],[[2476,2296],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,20],[0,1],[0,9],[0,2],[0,2],[0,2],[-1,4],[0,2],[0,2],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,4],[-1,2],[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,0],[1,0],[0,1],[-1,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],[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]],[[2494,2322],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[1,0],[-1,0],[0,-1],[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],[-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],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2471,2258],[-1,0],[0,1],[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],[0,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],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[0,-3],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[-1,3],[0,4],[1,2],[0,3],[-1,5],[-1,0],[0,1],[-1,0],[-1,-2],[0,1],[0,2],[-1,-1],[0,1],[0,-2],[0,-1],[0,3],[-1,3],[0,1],[0,2],[1,1],[0,1],[0,1],[1,-1],[0,-1],[0,1],[0,-1],[0,4],[0,7],[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],[-1,2],[0,1],[0,1],[0,1],[0,-4],[-1,2],[0,-3],[0,-1],[0,-1],[0,1],[0,1],[0,5],[0,2],[-1,-2],[0,-3],[0,-4],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,2],[0,8],[0,1],[1,3],[0,1],[0,4],[1,0],[0,1],[0,6],[0,1],[-1,-2],[0,1],[0,1],[0,1],[0,-2],[0,-2],[0,-2],[0,-1],[-1,2],[1,1],[-1,1],[0,-3],[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,-4],[0,2],[0,1],[0,1],[1,2],[0,3],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,-2],[0,-1],[0,1],[0,-1],[1,5],[-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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,-1],[0,-6],[0,-1],[0,-2],[0,-1],[1,-3],[1,-2],[-1,-2],[1,-3],[0,-4],[-1,-1],[1,-4],[0,-1],[-1,0],[-1,0],[0,-1],[0,-3],[-1,-1],[0,1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[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],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[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,0],[0,-1],[1,0],[0,-1],[0,-3],[0,-3],[0,-2],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,1],[1,0],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[0,2],[0,1],[0,1],[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],[1,0],[0,1],[1,1],[1,2],[1,0],[0,8],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,-1],[0,-1],[0,-11],[1,0],[0,-1],[0,-1],[1,-5],[0,1],[0,2],[0,1],[0,1],[1,-2],[0,-1],[0,1],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-2],[0,-2],[0,-2],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,3],[0,-1],[0,-3],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,3],[1,1],[0,2],[0,-3],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2450,2186],[0,1],[0,1],[0,1],[-1,0],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2531,2907],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,3],[0,1],[0,2],[0,6],[0,3],[0,1],[0,1],[0,3],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,2],[0,1],[0,3],[-1,1],[0,2],[0,2],[0,6],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-3],[-2,0],[-2,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[3,0],[0,-16],[1,0],[0,-6],[-1,0],[0,-1],[0,-7],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[-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],[-1,0],[-1,0],[-1,0],[-1,0]],[[2502,2840],[0,3],[0,1],[0,2],[0,1],[0,3],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,4],[0,2],[0,3],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[0,2],[0,3],[1,2],[0,2],[0,5],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,4],[0,1],[0,1],[0,1],[0,3],[0,1],[0,2],[0,3],[0,1],[0,2],[0,2],[0,2],[0,2],[0,1],[0,2],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,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,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,3],[0,3],[0,1],[0,1],[0,4],[0,3],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,3],[0,2],[0,3],[0,2],[0,2],[0,1],[0,3],[0,1],[0,3],[0,1],[0,4],[0,3],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,4],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,4],[0,2],[0,1],[0,1],[0,4],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[0,2],[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],[-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],[-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],[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],[0,1],[0,1],[1,2],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,0],[-1,0],[-1,0]],[[2475,3199],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,2]],[[2475,3224],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[3,0],[2,0],[1,0]],[[2490,3224],[1,0],[2,0],[1,0],[4,0],[4,0],[2,0],[1,0],[1,0]],[[2506,3224],[3,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0]],[[2502,2840],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[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],[0,1],[0,2],[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,0],[0,-1],[0,1],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[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,-1],[0,1],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,3],[-1,0],[-1,0],[0,4],[0,-1],[0,-1],[0,-2],[-1,0],[0,-2],[0,1],[-1,0],[0,2],[0,1],[0,2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-2],[-1,0],[0,6],[-1,-1],[-1,6],[0,-1],[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],[-1,-1],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[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],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,2],[0,1],[0,-1],[0,-1],[1,4],[0,-3],[0,-2],[0,-1],[0,-2],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-8],[-1,0],[0,-1],[0,-1],[0,-1],[0,-3],[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,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-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],[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,0],[-1,0],[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],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-2],[0,-1],[-1,0],[0,3],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[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],[0,2],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,-1],[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],[0,1],[0,3],[0,2],[0,1]],[[2451,2854],[0,1],[0,2],[0,1],[1,0],[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],[0,2],[0,2],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[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],[1,0],[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,-2],[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,2],[0,2],[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],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[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],[0,1],[-1,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[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],[1,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],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,-2],[1,-2],[0,-1],[1,-2],[0,-1],[0,-1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,-1],[1,-2],[1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[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],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[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],[0,1],[0,1],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[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],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[0,1],[0,-1],[0,1],[-1,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,-1],[1,0],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[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],[-1,0],[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,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,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,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-2],[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,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[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],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[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],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,-1],[0,-1],[1,-1],[0,1],[0,2]],[[2527,2676],[-5,1],[0,-6],[-1,0],[0,-3],[0,-3],[0,-8],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-2,0],[0,3],[-1,0],[0,-16],[-1,-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,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[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,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-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,-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,-2],[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],[-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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1]],[[2484,2554],[0,0]],[[2484,2554],[-1,0],[-1,0],[0,-3],[0,-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,-2],[0,-1],[0,-1],[0,-2],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[0,1],[1,0],[0,-4],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2525,2333],[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],[0,-1],[0,-1]],[[2513,2334],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,-1]],[[2514,2337],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[-1,-1]],[[2509,2337],[0,-1],[0,-1],[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,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[2519,2341],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,-1],[-1,0],[0,1],[1,0],[0,1]],[[2523,2362],[0,-1],[-1,0],[0,1],[1,0]],[[2515,2366],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[-1,2],[0,1]],[[2523,2369],[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],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2528,2366],[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,0],[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],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[0,2],[0,2],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[-1,1],[1,0],[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],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-1,-1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,1],[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],[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],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[1,0],[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],[-1,-1],[-1,0],[-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],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,0],[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],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[1,0],[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],[-1,-1],[0,-1],[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],[1,0],[0,1],[-1,1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,-1]],[[1,6260],[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,-1],[0,-1],[-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],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,1]],[[5,6276],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,-1],[0,-1],[0,-2],[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],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,-1],[0,-1]],[[8,6311],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1]],[[3,6310],[-1,0],[1,1],[-1,0],[1,1],[0,1],[0,-1],[0,-1],[0,-1]],[[16,6316],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1]],[[14,6318],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[9969,6323],[1,-1],[0,-1],[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],[0,-1],[1,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[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],[0,-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,2],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,1],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,-1],[-1,-1],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,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],[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],[-1,0],[0,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],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[-1,0],[-1,-1],[0,1],[0,1],[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,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[1,-1],[0,-1]],[[65,6354],[0,-1],[0,-1],[0,1],[-1,1],[1,0]],[[66,6356],[0,-2],[0,1],[0,-1],[-1,0],[0,1],[1,0],[0,1]],[[9956,6359],[0,-1],[0,-1],[1,0],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-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],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0]],[[10,6359],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[-1,0],[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],[1,0],[0,1],[0,1],[1,-1]],[[66,6358],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[80,6364],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,1],[0,-1],[0,-1],[1,0],[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],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[1,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[1,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],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,1],[0,1],[1,0],[0,-1],[0,-1]],[[83,6368],[0,-1],[0,-2],[1,-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],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[-1,0],[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],[-1,0],[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],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[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,0]],[[88,6373],[0,-1],[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],[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],[0,1],[-1,0],[0,1],[0,1],[-1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1]],[[29,6375],[1,-1],[0,-1],[1,1],[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],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-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],[0,-1],[1,-1],[0,-1],[1,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,1],[0,-1],[-1,-1],[0,-2],[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],[0,-1],[1,-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],[-1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[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],[1,0],[0,-2],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,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],[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],[0,-1],[-1,0],[0,1],[0,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,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],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[48,6375],[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],[1,0]],[[54,6336],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[0,1],[-1,-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],[0,1],[0,-1],[0,1],[-1,0],[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],[-1,0],[0,-1],[0,1],[-1,0],[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,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,2],[-1,0],[0,1],[1,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],[0,1],[0,1],[1,1],[0,1],[0,-1],[1,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,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,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,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[0,1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-2],[-1,-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],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[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],[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]],[[87,6377],[-1,-1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[83,6382],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1]],[[93,6381],[0,-1],[1,-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,1],[0,-1],[0,1],[1,0],[0,1],[0,-1]],[[85,6382],[0,-1],[0,-1],[0,1],[-1,-1],[0,1],[0,1],[1,0],[0,1],[0,-1]],[[88,6380],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[9940,6382],[0,-1],[1,0],[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]],[[96,6383],[1,0],[0,1],[0,1],[0,-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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[9959,6382],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[9963,6387],[0,-1],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[0,2],[-1,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],[1,0]],[[9958,6385],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,-2]],[[104,6386],[-1,0],[0,1],[0,1],[0,-1],[1,-1]],[[90,6388],[1,0],[0,-1],[0,1],[0,1],[1,-1],[1,1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1]],[[72,6390],[0,-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,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],[0,-1],[-1,-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,-1],[0,-1],[1,0],[0,1],[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],[1,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[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],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,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],[1,0],[-1,1],[1,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],[-1,-1],[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],[-1,0],[0,-1],[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],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[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],[0,-1],[0,-1],[0,-2],[-1,0],[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],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[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],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,1],[0,1],[0,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],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[-1,-1],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[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],[1,1],[0,-1],[0,1],[1,0],[0,-1],[1,1],[0,1],[0,1],[0,1],[-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],[0,1],[0,-2],[1,0],[0,-1],[0,1],[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],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[9995,6395],[1,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[-1,1],[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,2],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,-1],[1,1],[0,1],[0,2],[0,1],[1,0],[1,0],[0,1],[0,1]],[[132,6396],[0,-1],[0,1],[-1,0],[0,1],[1,-1]],[[89,6398],[0,-1],[0,1],[0,1],[1,0],[0,-1],[-1,0]],[[9954,6399],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0]],[[84,6411],[0,-1],[1,1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-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],[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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[0,2],[-1,0],[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,0],[0,-1]],[[9939,6414],[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,-1],[-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],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[-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,0],[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,-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],[-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],[0,-1],[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],[0,1],[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],[1,0],[0,1],[0,1],[0,-1],[1,1],[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],[0,1],[1,0],[1,0],[0,1],[1,0],[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],[0,1],[0,1],[1,0],[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,0],[0,-1]],[[157,6418],[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],[0,1],[0,-1],[1,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],[0,1],[1,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,1],[-1,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[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,1],[-1,0],[0,-1],[-1,-2],[-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,-2],[0,-1],[-1,1],[0,1],[0,1],[1,1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[-1,1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,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],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,2],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[-1,-1],[0,2],[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],[-1,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[1,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,-1],[-1,-1],[1,0],[-1,-1],[1,-1],[-1,0],[0,-1],[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],[1,-1],[0,-1],[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,1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,0],[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,-1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[126,6423],[0,-1],[0,-1],[-1,0],[0,1],[1,0],[0,1]],[[102,6420],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[9891,6459],[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],[0,1],[1,0],[0,1],[0,-1]],[[187,6462],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-2],[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],[0,-1],[-1,0],[0,1],[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,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,2],[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],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,-1]],[[139,6468],[0,-1],[1,-1],[0,-1],[1,-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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[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],[0,-2],[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,0],[0,-1],[0,-1],[0,-1],[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],[-1,-1],[0,1],[-1,0],[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],[-1,0],[-1,-1],[0,1],[0,-1],[-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,-1],[1,-1],[-1,0],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-2],[0,-1],[1,-1],[0,-2],[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],[-1,-1],[1,-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],[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,0],[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,0],[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],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[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],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[0,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],[0,1],[0,1],[0,1],[1,-1],[0,1],[0,2],[0,-1],[0,-1],[1,0],[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],[0,-2],[0,-1],[0,1],[1,0],[0,2],[1,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],[0,1],[1,0],[-1,-1],[1,-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],[0,1],[0,2],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,1],[0,-1],[1,-1],[0,-1],[-1,0],[1,0],[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,1],[0,-1],[0,1],[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],[1,0],[0,-1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,-1],[1,0],[1,-1],[0,1],[-1,0],[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,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],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,-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],[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],[1,0],[0,1],[0,1],[0,2],[0,1],[0,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],[-1,2],[0,2],[1,1],[0,2],[-2,-4],[1,-1],[0,-3],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,1],[-1,0],[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],[0,1],[0,1],[0,1],[0,1],[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,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1]],[[9831,6485],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-2],[-1,0],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[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],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,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],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[1,1],[0,1],[1,0],[0,-1],[0,1],[1,0]],[[221,6476],[0,-1],[0,-1],[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],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[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],[0,-1],[0,-1],[0,-1]],[[224,6494],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[236,6520],[1,-1],[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],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,1],[-1,1],[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],[0,1],[0,2],[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,-1],[0,1],[0,1],[0,1],[0,1]],[[9841,6526],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1]],[[9837,6529],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[9835,6534],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0]],[[252,6536],[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],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1]],[[278,6538],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1]],[[261,6556],[1,-1],[0,1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[0,-1],[-1,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],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-2],[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],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[1,-1],[1,1],[0,1],[0,1],[0,1],[-1,1],[1,-1],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1]],[[254,6562],[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],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0]],[[298,6573],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,-1]],[[9806,6576],[1,0],[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],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,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],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-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],[-1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,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],[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],[-1,0],[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],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-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],[-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],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-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],[-1,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,-1],[0,-1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[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],[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],[1,0],[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],[1,0],[1,0],[0,-1],[0,-1],[1,1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[1,0]],[[285,6575],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[-1,-2]],[[264,6580],[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,0],[0,1],[0,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],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[261,6591],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[280,6545],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,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],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[1,0],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,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],[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],[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,0],[0,1],[0,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],[1,0],[0,1],[1,0],[0,3],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,1],[0,1],[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,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,1],[-1,1],[0,1],[1,1],[0,1],[0,2],[1,2],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,3],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,1],[1,4],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-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,0],[0,-1],[0,-1],[-1,0],[0,-1],[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,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,1],[0,-1],[1,-1],[-1,0],[0,-1],[0,1],[-1,0],[1,-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],[0,-1],[-1,0],[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,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-3],[0,-1],[-1,0],[0,-1],[0,-1],[0,-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],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-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],[-1,1],[0,1],[0,1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[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],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0]],[[364,6733],[0,-1],[-1,0],[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,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-2],[0,-1],[0,-1],[1,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[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],[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,0],[0,1],[-1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,-1],[1,-1]],[[351,6744],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,-1]],[[352,6746],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1]],[[310,6749],[0,-1],[-1,1],[0,1],[1,0],[0,-1]],[[363,6761],[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],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,-2],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,0]],[[348,6765],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-2],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,-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],[0,1],[1,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,-3],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[1,-1],[0,1],[0,1],[0,1],[0,2],[0,2],[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],[1,0],[0,-1],[0,1],[0,1],[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,-2],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[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],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-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],[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,-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,-2],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-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],[-1,0],[0,1],[0,1],[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],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,-1],[-1,2],[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],[0,1],[-1,1],[0,1],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,-1],[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,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[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],[0,1],[0,-1],[-1,0],[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,3],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-2],[0,-1],[0,-1],[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],[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],[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],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,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],[-1,-1],[-1,-1],[0,-1],[0,1],[0,1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-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,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,1],[-1,0],[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],[0,1],[0,2],[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],[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],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-2],[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],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,-1],[-1,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[-1,1],[0,2],[0,1],[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],[1,0],[0,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],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,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,1],[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],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[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],[0,1],[0,-1],[1,-1],[1,-1],[0,1],[0,1],[-1,0],[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],[-1,1],[1,0],[0,4],[2,2],[1,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],[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,-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],[-1,0],[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],[0,1],[-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,0],[-1,1],[0,-1],[-1,0],[0,1],[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],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[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],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[1,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,2],[1,0],[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,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,-1],[0,-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],[1,0],[0,1],[0,1],[0,1],[1,0]],[[380,6768],[-1,0],[0,-1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1]],[[385,6779],[0,1],[1,0],[0,-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],[-1,1],[0,-1],[0,-1],[0,-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],[-1,-1],[-1,-1],[0,1],[0,1],[0,1],[1,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,0]],[[394,6788],[0,-1],[1,0],[0,-1],[0,1],[1,0],[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,-1],[-1,-1],[0,-1],[0,1],[0,1],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-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],[1,1],[0,1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[-1,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[397,6788],[-1,0],[0,1],[1,0],[0,-1]],[[399,6797],[0,-1],[0,-1],[-1,0],[0,1],[1,1]],[[368,6803],[0,-1],[0,-1],[1,1],[1,0],[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,1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[0,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],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[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],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,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],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,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],[1,0],[0,1],[0,-1]],[[400,6804],[1,0],[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,0],[0,1],[1,1],[0,1],[0,-1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,-1]],[[381,6817],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-2],[0,-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],[1,0],[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],[-1,1],[-1,-1],[0,1],[0,-1],[-1,-1],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[1,1],[-1,0],[0,2],[-1,2],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,2],[0,1],[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,0],[0,-1],[-1,0],[0,1],[0,-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],[1,1],[1,-1]],[[464,6831],[1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,-1]],[[456,6834],[0,-1],[0,-1],[1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[465,6838],[1,0],[1,0],[-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],[0,1],[0,1],[-1,0],[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]],[[455,6842],[0,-1],[0,-1],[-1,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-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],[0,1],[0,-1],[1,0]],[[456,6853],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-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,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[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,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[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],[0,2],[-1,1],[0,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],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,-1]],[[468,6882],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1]],[[1350,6899],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[1350,6904],[0,-1],[1,0],[0,-1],[0,-2],[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],[-1,1],[0,1],[1,0]],[[1349,6906],[0,-1],[-1,0],[0,1],[1,0]],[[1305,6905],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-3]],[[1352,6912],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,-1],[0,-1]],[[1301,6908],[0,1],[0,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]],[[547,6904],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[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,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1286,6917],[0,-1],[1,0],[-1,-1],[0,-1],[0,1],[0,1],[0,1]],[[1271,6917],[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],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,-1]],[[542,6917],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,-1],[0,1],[0,1],[0,1],[1,1],[0,-1],[1,0],[0,-1]],[[1304,6918],[0,1],[0,1],[1,-1],[0,-1],[-1,0]],[[1334,6923],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1]],[[1314,6924],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,-1]],[[1303,6928],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,-1]],[[1293,6935],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[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],[-1,0],[0,-1],[1,1],[0,1],[0,-1],[0,1],[0,1],[1,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,1],[0,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],[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],[-1,0],[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],[-1,0],[0,-1],[0,1],[0,1],[-1,2],[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,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,-1],[-1,-1],[1,1],[0,1],[0,1],[0,-1],[0,-1]],[[1300,6937],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[554,6936],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,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],[1,0],[0,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]],[[1325,6938],[0,-1],[0,1],[-1,1],[1,1],[0,-1],[0,-1]],[[466,6940],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[1,0]],[[1290,6941],[0,-1],[-1,1],[0,1],[0,1],[1,-2]],[[528,6944],[0,1],[1,-1],[-1,0]],[[469,6945],[1,0],[1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-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],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1]],[[1294,6944],[-1,-1],[0,1],[0,1],[0,1],[1,-2]],[[1332,6947],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1]],[[1327,6942],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-3]],[[1335,6949],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[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],[0,-1],[1,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[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],[0,1],[-1,0],[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],[1,0],[0,1],[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],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,2],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,-2],[0,-1],[0,1],[1,2],[0,1],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[0,-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],[1,0]],[[481,6946],[0,-1],[0,2],[-1,3],[0,1],[0,2],[0,1],[1,-3],[0,-4],[0,-1]],[[1334,6955],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[1,0],[0,1],[0,1],[0,1]],[[429,6958],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,3],[-1,0],[-1,0],[1,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[1,0],[0,-1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[1,-2],[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,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[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,-2],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,2],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,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],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-2],[1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[-1,-1],[-1,-1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[-1,2],[1,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1],[1,0],[0,1],[1,1],[0,2],[0,1],[1,2],[0,4],[0,2],[1,4],[0,1],[0,1],[0,1],[0,2],[1,2],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,2],[0,2],[0,2],[0,1],[0,4],[1,2],[0,1],[1,1],[-1,0],[1,1],[0,2],[0,2],[1,0],[0,-1],[0,1],[1,1],[0,1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,1],[1,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],[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,1],[-1,-2],[-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],[0,1],[1,1],[0,-1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,-1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,-1],[1,0]],[[1314,6958],[-1,0],[1,1],[0,-1]],[[539,6951],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[1,-1]],[[1290,6959],[-1,0],[0,1],[1,0],[0,-1]],[[1311,6960],[0,-1],[-1,0],[0,1],[1,0]],[[553,6960],[0,-1],[0,-1],[-1,1],[0,1],[1,0]],[[550,6958],[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,0],[0,-1],[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,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[-1,1],[1,0],[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],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[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],[1,0],[0,-1]],[[1288,6959],[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]],[[480,6956],[-1,-1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[1290,6963],[-1,1],[0,1],[1,0],[0,-1],[0,-1]],[[540,6961],[0,-1],[0,1],[-1,-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]],[[1289,6965],[-1,-1],[0,1],[0,1],[1,0],[0,-1]],[[1336,6968],[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,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[490,6959],[-1,0],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1]],[[481,6969],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,-1]],[[541,6965],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1293,6974],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1]],[[1314,6975],[0,1],[1,0],[-1,-1]],[[1326,6977],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[1285,6977],[0,1],[1,1],[0,-1],[0,-1],[-1,0]],[[483,6981],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,-1],[-1,0],[0,-1],[0,-2],[0,1],[1,0],[0,-1],[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],[0,-1],[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],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-2],[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,0],[0,1],[0,1],[0,2],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1]],[[1290,6984],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[0,-2],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[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],[-1,0],[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,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,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,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,0],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1]],[[496,6989],[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],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[0,1],[1,0],[0,1],[0,-1]],[[1289,6989],[0,-1],[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],[1,2],[-1,0],[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],[1,0],[0,1],[0,-1],[0,1],[1,1],[0,1],[0,-1],[0,-1]],[[547,6990],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-2],[1,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,1],[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],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[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],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-3],[0,-2],[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,0],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,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],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,-2],[0,2],[0,1],[0,1],[1,1],[-1,1],[1,0],[0,1],[0,2],[0,-1],[0,-1],[0,-1],[0,-2]],[[491,6995],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[-1,0],[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,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1]],[[1284,6996],[0,-1],[-1,0],[0,1],[0,1],[1,-1]],[[1283,6994],[0,-2],[-1,-1],[0,-1],[1,0],[0,-1],[-1,-2],[0,-1],[0,1],[1,0],[0,1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[0,1],[1,0],[0,-1],[-1,-1],[1,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,2],[-1,1],[-1,1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[0,2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-2],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[1,0],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[-1,-1],[1,-1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,1],[-1,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,-2],[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,2],[0,1],[0,-1],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,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],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,-2],[0,2],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[-1,0],[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,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[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,2],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-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],[-1,1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[1,-2],[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],[0,2],[0,1],[0,1],[0,-1],[0,-1],[-1,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[1,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,1],[1,2],[0,1],[0,-1],[0,-1],[1,-1]],[[1286,6996],[-1,-2],[-1,0],[0,2],[0,1],[0,1],[1,-1],[1,-1]],[[1330,6992],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[1282,6998],[-1,0],[0,1],[1,0],[0,-1]],[[1323,6998],[0,1],[1,0],[-1,-1]],[[1328,6994],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,-3],[0,-2],[-1,5],[-1,1],[1,-5],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[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],[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],[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],[-1,0],[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,0],[0,-1],[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],[1,0],[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],[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,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,1],[0,1],[-1,0],[1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1]],[[548,7001],[1,-1],[-1,0],[0,-1],[0,1],[0,1]],[[538,6996],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[-1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[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],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[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],[0,-1],[0,-1],[0,-1],[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],[0,-1],[-1,0],[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,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[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],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,1],[0,-1],[0,-1],[0,1],[1,0],[-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,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,-2],[-1,1],[0,1],[0,1],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[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,2],[0,2],[-1,1],[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,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],[1,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1]],[[1340,7004],[0,1],[0,-1],[1,-1],[-1,0],[1,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[451,6996],[-1,-1],[0,1],[2,11],[1,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1]],[[1325,7005],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-2],[1,-1],[0,-1]],[[532,7012],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-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],[1,0],[0,1],[0,-1]],[[1276,7013],[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,0],[0,-2],[1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-3],[-1,-4],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-2],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[1,1],[-1,0],[0,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],[1,-1],[1,-1],[0,1],[0,1],[-1,1],[1,1],[0,-1],[0,1],[1,1]],[[524,7016],[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],[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],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[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],[-1,0],[0,1],[0,1],[1,0],[0,1],[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]],[[1287,7014],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,-1]],[[1286,7016],[-1,-1],[0,1],[0,1],[0,1],[0,-1],[1,-1]],[[1342,7007],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[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],[0,-1],[0,-1],[-1,0]],[[1284,7020],[0,-1],[-1,0],[0,1],[0,1],[1,-1]],[[1282,7022],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,-1]],[[514,7023],[1,-1],[0,-1],[0,-2],[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],[-1,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-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],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[1,1],[-1,0],[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],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-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],[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],[0,1],[-1,1],[0,-1],[0,-1],[-1,0],[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],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[-1,1],[0,-1],[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],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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,2],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,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,2],[0,1],[1,0],[0,1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,2],[0,1],[1,2],[1,1],[0,1],[0,1],[0,1],[0,-1],[1,-1]],[[1284,7025],[0,-1],[-1,0],[0,1],[0,1],[1,-1]],[[459,7026],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-2],[-2,-3],[0,1],[1,2],[1,2],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0]],[[1318,7026],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[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],[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,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[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],[1,0],[0,-1],[-1,0],[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],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[-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],[0,1],[0,1],[0,3],[0,3],[0,1],[0,5],[-1,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,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],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,-1]],[[1274,7027],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0]],[[1270,7025],[1,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],[-1,0],[0,2],[-1,0],[0,-1],[0,-1],[0,1],[1,0],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[1,1],[0,2],[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,-2],[0,-2],[0,-1],[-1,0],[1,-2],[0,-1],[-1,0],[0,1],[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,0],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[0,1],[1,1],[0,1],[-1,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[446,7029],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[1283,7028],[-1,1],[0,1],[1,0],[0,-1],[0,-1]],[[1268,7030],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[1279,7032],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0]],[[1310,7032],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[1,0]],[[1344,7030],[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,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[526,7034],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,0],[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],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[-1,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[-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],[1,1]],[[1305,7036],[-1,0],[0,1],[1,0],[0,-1]],[[1328,7040],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,-1]],[[1303,7043],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,1]],[[488,7043],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[-1,-1],[1,0],[0,-1]],[[1273,7039],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[1,-1],[-1,0],[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],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[1,0],[-1,1],[1,1],[-1,1],[1,0],[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]],[[1319,7048],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-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],[0,1],[0,-1]],[[523,7051],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[1,0]],[[1265,7052],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,-1],[0,-1],[0,-2],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,3],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[1281,7051],[0,-1],[-1,1],[0,1],[1,1],[0,-1],[0,-1]],[[1321,7048],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[1276,7054],[0,-1],[0,-1],[0,1],[0,1],[1,-4],[0,-1],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,-4],[0,-1],[0,1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-2],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[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],[-1,-1],[1,0],[0,1],[0,1],[0,1],[1,-1],[0,1],[1,0]],[[1323,7056],[-1,0],[0,1],[1,0],[0,-1]],[[1283,7058],[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,0],[0,-1]],[[1282,7053],[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,0],[0,1],[0,1],[0,1],[0,3],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-3],[0,-1],[0,-2],[0,-1]],[[1269,7058],[-1,0],[0,2],[1,0],[0,-1],[0,-1]],[[1266,7057],[0,-1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[1283,7061],[0,1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[-1,-1],[0,-1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,-1]],[[1268,7062],[0,-1],[-1,0],[0,1],[1,1],[0,1],[0,-1],[0,-1]],[[1270,7069],[0,-1],[0,-2],[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],[0,1],[0,1],[1,0],[0,-1],[0,1]],[[1269,7068],[-1,0],[0,1],[0,1],[1,-1],[0,-1]],[[1274,7066],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1301,7073],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[1,0]],[[1270,7069],[0,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]],[[1306,7087],[0,1],[-1,1],[1,0],[0,-1],[0,-1]],[[550,7081],[0,1],[0,1],[1,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],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[1273,7097],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,-1]],[[553,7097],[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],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1270,7104],[0,-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],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[1,0],[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],[-1,1],[0,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],[-1,0],[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],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,2],[0,1],[-1,0],[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],[-1,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],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1]],[[552,7101],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,-1],[0,-1]],[[548,7105],[-1,0],[0,1],[0,1],[1,0],[-1,-1],[1,-1]],[[1318,7106],[0,-1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[-1,0]],[[1323,7108],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[1,0],[1,0]],[[559,7109],[1,0],[-1,-1],[0,1]],[[1267,7107],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[559,7104],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[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,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[1305,7110],[0,-1],[0,1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1]],[[1275,7112],[-1,0],[0,1],[1,0],[0,1],[0,-1],[0,-1]],[[1272,7113],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1]],[[567,7113],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[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],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[1,-1],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,-1]],[[657,7090],[0,-1],[0,-1],[-1,-2],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,2],[0,1],[-1,1],[0,1],[0,1],[1,2],[1,3],[1,2],[0,3],[0,2],[0,3],[1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-3],[0,-4],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1]],[[1303,7117],[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],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0]],[[1305,7116],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,-1]],[[1324,7116],[0,1],[0,-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],[-1,0],[0,1],[-1,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[1277,7118],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,-5],[-1,0],[0,-1],[0,-1],[0,-3],[0,1],[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],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[-1,1],[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]],[[1250,7118],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,2],[1,0],[0,-1],[0,-1],[0,2],[0,1],[1,0],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,2],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[566,7121],[-1,-1],[0,1],[0,1],[1,-1]],[[1261,7123],[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],[1,-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],[0,1],[0,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],[0,-1],[0,1]],[[1276,7123],[0,-1],[-1,0],[0,1],[1,0]],[[1254,7122],[0,1],[0,1],[1,0],[-1,-1],[0,-1]],[[511,7119],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1277,7120],[0,-2],[0,1],[-1,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1335,7125],[0,-1],[0,-1],[1,-3],[0,-1],[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],[1,-1],[0,-1],[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],[-1,0],[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],[1,0],[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,-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,-2],[0,-2],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-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],[1,-1],[0,-1],[-1,-1],[1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,-2],[0,1],[0,-1],[0,1],[0,-1],[-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],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[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],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[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],[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,0],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,6],[-1,0],[0,1],[0,3],[0,1],[0,1],[0,2],[0,1],[0,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],[1,-1],[0,-1],[0,-1],[-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],[0,-1],[0,-1],[0,-1],[0,-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],[-1,-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],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[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,1],[0,1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[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],[1,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],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[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,-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],[0,1],[-1,1],[0,1],[0,1],[-1,0],[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],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,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],[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,0],[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,0],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[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,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[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,-1],[1,0],[0,1],[-1,0],[0,1],[1,1],[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,0],[0,1],[-1,0],[0,-1],[-1,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[-1,0],[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,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,-1],[0,1],[1,1],[0,1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,1],[1,0],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[1,1],[-1,0],[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],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,1],[0,-1],[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],[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],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,-1],[0,2],[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],[0,-1],[1,-1],[0,-1]],[[1254,7130],[1,0],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1]],[[1276,7132],[0,-1],[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],[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],[-1,1],[1,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,1],[0,-1]],[[1274,7132],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-2],[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,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,-1],[0,1],[1,1],[0,1],[0,-1],[1,0],[0,-1]],[[1329,7125],[0,-1],[0,1],[-1,-1],[0,-1],[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],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[0,1],[1,1],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[1277,7133],[0,1],[1,0],[-1,-1]],[[502,7135],[0,1],[1,1],[0,-1],[-1,-1]],[[505,7134],[0,1],[0,1],[1,2],[0,-1],[-1,-1],[0,-2]],[[506,7139],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[1296,7140],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1]],[[510,7140],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[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]],[[1311,7140],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1]],[[1309,7144],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,-1]],[[1287,7146],[1,-2],[0,-3],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[0,1],[0,2],[-1,4],[1,0],[0,1]],[[1284,7144],[-1,0],[0,1],[0,1],[0,-1],[1,0],[0,-1]],[[1310,7146],[0,-1],[-1,0],[0,1],[1,0]],[[626,7146],[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,0],[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,0],[0,-1]],[[627,7148],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,-1]],[[625,7148],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[1311,7150],[-1,1],[1,1],[0,-2]],[[1313,7150],[0,-1],[0,-1],[0,-1],[0,-2],[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],[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],[0,1],[0,1],[0,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],[1,0],[0,-1],[0,-1]],[[1312,7154],[-1,-1],[0,1],[0,1],[1,-1]],[[1286,7154],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,-1]],[[1284,7158],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,1],[0,-1],[0,-1],[0,1],[0,1],[-1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1289,7159],[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]],[[1288,7161],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,2],[1,0],[0,-1],[0,1],[0,1]],[[1289,7159],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1]],[[587,7162],[0,-1],[-1,0],[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]],[[1274,7165],[0,-1],[0,1],[0,-1],[2,-1],[0,-1],[0,2],[0,-1],[0,1],[1,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-6],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,1],[0,1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[-1,0],[0,-1],[0,-1],[1,0],[-1,-1],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,-2],[0,-1],[0,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[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],[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],[-1,1],[0,-1],[-1,0],[0,-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],[-1,1],[0,1],[0,-2],[-1,0],[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],[1,1],[0,2],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,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,-2],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,2],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,-1],[0,-1],[1,-1],[0,-2],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,1]],[[1272,7166],[0,-2],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[1288,7165],[0,-1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[1,1],[0,-1],[0,-1]],[[1271,7168],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[1287,7168],[0,-1],[-1,0],[0,1],[1,1],[0,-1]],[[1286,7167],[0,-3],[0,-1],[-1,1],[0,1],[0,2],[0,2],[1,0],[0,-1],[0,-1]],[[1287,7171],[0,-1],[-1,1],[0,-1],[0,1],[0,1],[1,-1]],[[1268,7171],[-1,0],[0,1],[1,1],[-1,0],[1,0],[0,-1],[0,-1]],[[623,7176],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[0,2],[1,0],[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]],[[1316,7174],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,-1],[0,-1],[0,-1]],[[1285,7180],[1,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-2],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[-1,2],[0,1]],[[1287,7185],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,-1]],[[597,7187],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,0]],[[573,7186],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-1]],[[1260,7187],[-1,0],[0,1],[0,1],[0,2],[0,-1],[1,-1],[0,-1],[0,-1]],[[1302,7197],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-2],[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],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[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],[0,1],[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],[0,-1],[1,1],[0,1],[0,1],[0,-1],[1,0],[-1,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-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],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,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,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[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,0],[0,1],[0,-1],[0,-1],[1,-4],[0,-1],[0,-2],[-1,0],[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],[0,1],[0,2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[-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],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[-1,0],[1,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],[1,0],[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],[-1,0],[1,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,3],[0,1],[0,6],[0,4],[1,0],[0,2],[-1,1],[0,-1],[0,-7],[0,-4],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[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,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[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],[-1,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,1],[-1,0],[0,1],[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,0],[0,1],[0,1],[0,2],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,2],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,-1],[0,-1],[0,-1]],[[1269,7201],[0,-1],[1,-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],[0,1],[0,1],[1,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-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],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[-1,1],[1,0],[0,1],[0,1],[1,-1],[0,-1],[1,1],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,1],[0,1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,-2],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,-2],[1,0],[0,1],[0,-1],[1,-1],[-1,-1],[1,-1],[0,-2],[0,-1],[-1,-4],[0,-1],[1,1],[0,1],[0,-1],[0,-1],[1,-1],[-1,-4],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[0,1],[0,-1],[0,-3],[0,-1],[0,-1],[-1,2],[0,2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-2],[0,1],[0,1],[1,2],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,-1],[-1,0],[1,-1],[0,1],[0,1],[0,-1],[0,-1],[0,2],[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],[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],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[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],[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],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[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],[-1,1],[0,-1],[0,1],[-1,1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[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],[1,1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,-1],[0,-1],[0,-2],[1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[1,-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,1],[0,1],[0,1],[0,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],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[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,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,1],[1,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[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,0],[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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-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],[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,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,0],[0,-1],[1,1],[0,1],[0,2],[0,1],[0,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],[1,0],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[1,-1],[0,-1],[0,-2],[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],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,1],[0,1],[-1,1],[0,2],[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],[1,0],[0,2],[0,1],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[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],[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],[1,0],[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,0],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-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],[-1,0],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,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,1],[1,0],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-3],[0,-1],[0,-1],[1,0],[0,-2],[0,-3],[0,-1],[0,-1],[0,2],[0,1],[0,2],[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,0],[0,1],[0,2],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,3],[0,1],[1,0],[0,1],[0,1],[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],[1,0],[0,-1],[0,1],[1,0],[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],[1,0],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-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],[0,-1],[0,-1],[0,-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],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[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],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[0,1],[0,1],[-1,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],[-1,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[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],[1,0],[0,-1],[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],[1,0],[0,1],[0,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,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,3],[0,1],[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],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-3],[0,-2],[0,-2],[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,0],[0,1],[0,-1],[0,-2],[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,-2],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,-2],[0,-1],[0,1],[0,1],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[-1,1],[-1,0],[0,-1],[1,0],[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,-1],[1,0],[0,2],[0,-1],[0,1],[0,-2],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[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],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[-1,0],[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,-2],[0,-1],[0,1],[0,1],[-1,-1],[0,1],[-1,0],[0,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,-1],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,2],[0,1],[-1,0],[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],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,1],[0,2],[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],[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],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,-1],[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],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-1],[1,-1],[0,1],[0,1],[0,-1],[-1,1],[1,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[-1,0],[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],[0,1],[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],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[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,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],[1,1],[-1,2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[1,-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],[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,0],[0,-1],[0,-1],[0,1],[0,-2],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[1,0],[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],[1,0],[-1,0],[0,-1],[-1,0],[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],[0,1],[0,1],[-1,1],[0,1],[1,1],[-1,0],[0,2],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[-1,0],[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,2],[1,1],[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],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,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],[0,-1],[0,-2],[-1,-2],[0,-2],[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,2],[0,2],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,-1],[0,2],[0,-1],[-1,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],[1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,1],[0,-1],[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],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[1,0],[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],[-1,0],[0,-1],[-1,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,1],[0,1],[0,1],[0,2],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[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],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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,2],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[1,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,1],[0,1],[0,-1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,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],[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],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,1],[1,1],[0,1],[-1,0],[0,1],[1,0],[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],[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,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[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],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[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,0],[1,-1],[-1,-1],[0,1],[0,-2],[-1,0],[0,-1],[1,0],[0,-1],[-1,1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[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],[1,0],[0,2],[0,-1],[0,2],[1,1],[0,1],[0,1],[-1,0],[0,-1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[-1,1],[1,1],[-1,-1],[0,1],[0,1],[0,-1],[1,1],[0,1],[-1,0],[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],[1,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[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,1],[0,1],[-1,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,1],[0,2],[-1,2],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-2],[0,1],[0,2],[-1,1],[1,0],[0,-1],[0,1],[0,1],[-1,0],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,3],[0,1],[0,1],[0,1],[0,1],[-1,4],[1,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[1,1],[-1,1],[-1,1],[0,2],[0,1],[0,1],[0,-1],[0,-3],[-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],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,3],[1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,3],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,-2],[0,-1],[0,-1],[0,-1],[0,2],[0,1],[0,1],[0,2],[-1,1],[1,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[1,0]],[[594,7198],[0,-2],[1,0],[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],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1263,7212],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[1256,7213],[0,-1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-2]],[[1301,7213],[0,-1],[1,0],[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],[0,-1],[0,-1],[0,-1],[-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],[0,1],[0,1],[1,0],[0,1],[-1,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,-1],[0,-1]],[[1257,7212],[-1,0],[0,1],[0,3],[-1,2],[0,1],[1,0],[0,-3],[1,-3],[0,-1]],[[1294,7218],[1,-2],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,1],[0,1],[0,-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],[1,-1],[-1,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,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],[0,1],[0,1],[0,2],[0,1],[1,0],[0,2],[0,1],[0,1],[0,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,2],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[1,-1],[1,-2],[1,-1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,-1],[1,-1]],[[1255,7215],[0,-1],[0,1],[-1,3],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1]],[[1283,7220],[0,-1],[-1,0],[0,1],[1,0]],[[1284,7220],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[1252,7221],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[1296,7225],[0,-1],[1,0],[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],[1,-1],[0,1]],[[1308,7168],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,2],[0,2],[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,2],[-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,0],[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],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[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],[1,-1],[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],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[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],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[1,0],[0,-1],[-1,-1],[0,-1],[0,1],[-1,-1],[-1,0],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-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],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,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],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0]],[[1264,7222],[0,-1],[0,-1],[0,-1],[-1,2],[0,1],[0,1],[-1,2],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[597,7227],[0,-1],[0,1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1]],[[1297,7230],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[-1,-1],[0,1],[-1,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0]],[[1284,7229],[0,-1],[0,1],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[1298,7230],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,0]],[[1284,7233],[0,1],[-1,1],[1,1],[0,-1],[0,-1],[0,-1]],[[1301,7230],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1298,7232],[0,1],[0,1],[0,1],[0,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]],[[704,7240],[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],[-1,-1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[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],[0,1],[0,1],[0,1],[1,2],[1,0],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[-1,0],[1,1],[1,1]],[[610,7242],[1,-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],[0,-1],[0,-1],[1,0],[0,-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,1],[0,-1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[1,0],[0,1],[0,-1]],[[1286,7245],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,1],[-1,1],[0,4],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0]],[[1284,7244],[0,1],[1,0],[0,-1],[-1,0]],[[687,7246],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,-1],[0,-2],[1,-2],[0,-1],[-1,0],[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],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[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,-2],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,-2],[1,-1],[0,-2],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[1,1],[-1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,2],[0,2],[0,1],[1,3],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,1],[0,2],[1,2],[0,1],[1,1],[1,4],[0,1],[0,1],[1,0],[0,1],[1,0]],[[1302,7246],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1]],[[698,7243],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[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,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,-1],[1,0],[1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1]],[[1250,7248],[0,-1],[-1,1],[0,1],[0,1],[0,-1],[1,0],[0,-1]],[[262,7249],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[1250,7251],[-1,0],[0,1],[0,1],[0,-1],[1,-1]],[[605,7255],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1]],[[1281,7258],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,-1]],[[1266,7259],[-1,0],[0,1],[1,0],[0,-1]],[[1302,7258],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[0,-1],[-1,-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,0],[0,1],[0,-1],[0,2],[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,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0]],[[1306,7261],[0,-1],[0,-1],[0,-1],[-1,-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,-1]],[[696,7261],[0,1],[1,1],[0,1],[0,-1],[0,-1],[-1,-1]],[[552,7265],[0,-1],[-1,0],[1,0],[0,1],[0,1],[1,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1]],[[702,7269],[0,1],[1,0],[-1,-1]],[[700,7268],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,-1],[1,-1]],[[1222,7270],[-1,-1],[0,1],[1,1],[0,-1]],[[703,7269],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0]],[[1224,7272],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[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],[1,1],[0,1],[-1,-1],[0,1],[1,0],[0,1],[0,1],[1,1]],[[1266,7271],[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,2],[0,-1],[1,-2]],[[1228,7271],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[1221,7272],[1,2],[0,1]],[[1222,7275],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1]],[[1221,7272],[0,1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[1279,7278],[-1,0],[0,1],[1,0],[0,-1]],[[621,7283],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[-1,1],[0,1],[1,1],[0,-1]],[[1263,7283],[0,-1],[-1,1],[0,-1],[0,1],[0,1],[1,0],[0,-1]],[[1220,7280],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1265,7281],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,-1],[1,0],[-1,-1],[0,-1]],[[1222,7275],[0,1],[0,1],[1,1],[-1,0],[0,-1],[0,1],[0,1],[1,1],[1,2],[0,2],[1,1],[0,-2],[0,-1],[0,-3],[0,-2],[-1,-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],[0,-1],[0,1],[0,1],[0,-1],[-1,-1]],[[1288,7285],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-3],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-2],[0,-2],[0,-1],[1,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[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],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[1,-2],[0,1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,2],[0,1],[0,2],[0,2],[0,-1],[0,-1],[0,2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,-1],[0,-1],[0,1],[0,1],[-1,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,-1],[0,2],[-1,0],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,3],[0,2],[1,2],[0,3],[0,1],[1,0],[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,2],[0,1],[1,0],[-1,3],[0,1],[0,1],[0,1],[0,1],[0,2],[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]],[[1219,7286],[0,-1],[0,-1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1]],[[1217,7288],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1]],[[1291,7291],[-1,0],[0,1],[1,0],[0,-1]],[[1249,7292],[0,-1],[-1,1],[0,1],[0,1],[0,-1],[1,0],[0,-1]],[[1215,7295],[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],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[1248,7297],[-1,0],[0,1],[1,0],[0,-1]],[[1260,7296],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1]],[[1218,7300],[0,-1],[0,-1],[0,1],[-1,1],[1,0],[-1,1],[1,0],[0,-1]],[[1288,7300],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[1257,7301],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,-1],[0,-1]],[[713,7300],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1262,7303],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1]],[[696,7306],[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],[0,-1],[0,1],[0,1],[0,-1]],[[1255,7306],[-1,0],[0,1],[1,-1]],[[1258,7305],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,-1],[1,-1],[0,-1]],[[1256,7307],[0,-1],[0,1],[-1,1],[1,0],[0,-1]],[[1255,7309],[0,-1],[-1,0],[1,1]],[[1261,7274],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,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],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,1],[0,-1],[1,2],[0,-1],[0,-1],[0,1],[0,-1],[0,-2],[0,1],[0,-2],[0,1],[1,-1],[-1,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[0,-2],[0,-2],[-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,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],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[1,-1],[0,-2],[0,1],[0,1],[1,-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],[-1,0],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[1,-1],[-1,0],[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,-1],[-1,0],[0,1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[0,1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,1],[0,2],[-1,-1],[-1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-5],[0,-1],[-1,2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[0,1],[0,1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,2],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,3],[-1,2],[0,2],[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,-4],[0,-1],[0,-1],[0,-2],[0,-1],[0,3],[0,2],[0,-1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,-3],[0,-1],[1,-4],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[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,2],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,3],[-1,2],[0,3],[0,1],[0,2],[0,1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[1,-1],[0,-3],[0,-3],[-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,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-2],[1,-1],[-1,0],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,1],[-1,-1],[1,0],[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],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[1,-2],[0,-1],[0,-1],[0,-2],[0,1],[0,1],[1,1],[0,1],[0,-1],[1,1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-2],[0,-2],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[1,-2],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-2],[-1,-3],[0,-2],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,3],[1,1],[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,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],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[1,2],[-1,1],[0,2],[0,3],[0,1],[0,1],[1,0],[0,-1],[0,-2],[1,-2],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,-2],[1,-1],[0,-1],[0,-1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[1,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,2],[1,0],[0,-1],[0,-1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[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,0],[0,1],[0,1],[0,1],[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],[1,1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,-1],[0,-2],[0,1],[1,0],[0,-1],[-1,-2],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,2],[0,1],[-1,1],[0,2],[1,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[-1,1],[0,4],[0,1],[0,1],[0,-1],[-1,1],[1,0],[0,1],[-1,0],[0,1],[0,2],[1,0],[0,-1],[0,-2],[1,0],[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,2],[0,2],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-2],[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],[-1,0],[0,1],[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],[0,-1],[-1,1],[-1,-1],[0,-1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,-1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[-1,-2],[0,-1],[1,-1],[0,4],[0,1],[0,1],[-1,1],[0,-1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-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],[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],[-1,-1],[1,-1],[0,-2],[-1,0],[0,-1],[-1,-2],[0,-1],[0,1],[-1,2],[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],[-1,-1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,3],[0,3],[0,2],[0,2],[1,1],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-2],[1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,-1],[0,1],[-1,1],[1,0],[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],[1,-1],[0,1],[0,-1],[1,0],[-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,0],[0,1],[-1,1],[1,0],[0,1],[-1,2],[0,1],[0,-1],[0,-1],[0,1],[-1,2],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[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,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[1,-1],[0,-3],[-1,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,3],[0,-1],[0,-1],[0,-1],[1,-2],[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,-2],[0,-2],[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],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,3],[0,1],[1,1],[0,2],[0,2],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[-1,0]],[[570,7308],[-1,-1],[0,-1],[0,1],[0,1],[1,1],[0,-1]],[[1260,7309],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,-1]],[[1255,7309],[-1,0],[0,1],[0,1],[0,-1],[1,-1]],[[1209,7319],[0,-1],[0,1],[0,1],[1,0],[0,-1],[-1,0]],[[631,7323],[1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,-1]],[[1291,7318],[0,-1],[0,-1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,-2],[-1,-1],[1,-2]],[[243,7330],[1,0],[0,-1],[-1,0],[0,1]],[[1220,7330],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[0,1],[-1,1],[1,0],[0,-1]],[[634,7335],[0,-1],[-1,0],[0,1],[1,0]],[[1261,7339],[0,-1],[1,-1],[1,-1],[0,-1],[0,1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[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,0],[0,-1],[1,0],[1,0],[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,-3],[0,-3],[0,1],[0,-3],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-2],[1,-2],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,-7],[0,-1],[-1,-1],[1,0],[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,0],[0,-1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-2],[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,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[0,1],[-1,1],[0,3],[0,1],[0,1],[-1,5],[-1,2],[-2,5],[0,4],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,4],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[-1,4],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,2],[-1,0],[0,-1],[0,-2],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-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],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[-1,-1],[1,0],[-1,-1],[1,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,1],[0,2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,1],[-1,0],[0,2],[0,-1],[0,-1],[0,1],[0,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],[0,-1],[0,-1],[-1,0],[0,1],[0,3],[-1,1],[0,1],[0,-1],[-1,0],[1,1],[-1,0],[0,-1],[0,1],[-1,1],[0,-1],[0,-1],[0,-2],[1,0],[0,-2],[-1,1],[0,-1],[1,-2],[-1,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[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,0],[0,-1],[0,1],[0,1],[1,0],[0,2],[0,-1],[0,2],[1,1],[-1,0],[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,1],[-1,0],[0,1],[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,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],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[-1,0],[0,-1],[0,1],[0,1],[1,1],[0,1],[-1,-1],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,-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],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,-1],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[1,-1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-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],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[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,0],[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,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1]],[[633,7340],[0,-1],[-1,1],[0,1],[1,0],[0,-1]],[[1217,7341],[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]],[[1217,7339],[-1,0],[0,1],[1,1],[0,1],[0,-1],[0,-1],[0,-1]],[[1217,7348],[0,1],[1,0],[-1,-1]],[[1250,7351],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,-2]],[[723,7358],[-1,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,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],[1,0],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[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,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,-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],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-3],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,1],[0,-1],[0,-1],[-1,0],[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],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[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],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,-1]],[[1216,7359],[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],[-1,0],[0,1],[0,-1],[1,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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]],[[635,7366],[0,-1],[-1,1],[1,0]],[[1217,7366],[1,0],[1,0],[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,0],[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,0],[0,-1]],[[1271,7361],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[251,7365],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-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],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[-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],[0,1],[1,1],[1,-1],[1,0],[1,1],[0,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[1257,7374],[1,0],[0,-1],[-1,0],[0,1],[0,1],[0,-1]],[[1233,7371],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1258,7375],[-1,0],[0,1],[0,1],[1,-1],[0,-1]],[[1272,7377],[0,1],[1,0],[0,-1],[-1,0]],[[1262,7372],[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,-1]],[[1278,7377],[-1,1],[1,0],[0,-1]],[[1263,7376],[0,-1],[0,-1],[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]],[[1212,7376],[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],[-1,0],[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],[0,-1],[1,-1],[0,-1],[0,-1]],[[1209,7384],[0,-1],[0,-1],[0,-1],[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],[1,-1],[0,-1],[0,-1],[0,-1],[0,-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],[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],[1,0],[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],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,-1],[-1,0],[-1,-1],[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],[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],[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],[-1,0],[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],[-1,-1],[0,-1],[-1,0],[1,1],[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,2],[-1,1],[1,0],[0,1],[-1,0],[0,1],[1,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,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,2],[0,1],[0,1],[0,1],[1,0]],[[636,7382],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,-1],[0,-1]],[[637,7386],[-1,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[638,7390],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[748,7388],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[1273,7398],[1,-1],[-1,0],[0,1]],[[1206,7397],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,-1],[1,0]],[[1241,7408],[1,0],[0,-1],[-1,0],[0,1],[0,1],[0,-1]],[[1270,7413],[-1,0],[0,1],[1,0],[0,-1]],[[1243,7411],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[1243,7416],[-1,0],[1,1],[0,-1]],[[705,7420],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[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,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1]],[[1228,7271],[1,0],[1,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-2],[0,-2],[-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],[0,-1],[0,1],[0,1],[-1,2],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,2],[0,1],[0,2],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[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],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,0],[0,-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],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-2],[0,-1],[1,0],[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,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,1],[0,2],[0,-1],[1,4],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,4],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[-1,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,1],[1,0],[-1,0],[0,1],[0,1],[-1,1],[0,2],[-1,2],[0,1],[1,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[-1,-1],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[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],[-1,1],[0,1],[0,1],[1,0],[-1,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],[0,1],[0,-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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,2],[1,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,-1],[0,-2],[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],[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],[-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],[0,1],[0,1],[0,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],[1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[1,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[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],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,2],[1,2],[0,1],[0,1],[1,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-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],[1,0],[0,1],[0,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],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-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],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[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],[0,-1],[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],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[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],[-1,0],[0,1],[0,2],[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,-2],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[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,0],[0,-1],[0,-1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,-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],[0,-1],[0,-1],[-1,0],[1,0],[-1,-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],[-1,-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,0],[1,-1],[0,1],[0,1],[0,-1],[0,1],[1,0],[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,0],[1,0],[-1,1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,-2],[1,-2],[0,-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],[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],[1,0],[0,-1],[0,-1],[0,-1],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[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,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[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,-1],[1,0],[0,-1],[1,-3],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[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],[1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,2],[-1,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,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,-1],[1,0],[0,1],[1,0],[1,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,1],[0,2],[1,0],[0,2],[0,1],[1,1],[0,-1],[0,1],[0,-1],[0,-1],[0,-2],[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],[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],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-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],[0,1],[0,1],[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],[-1,0],[0,1],[0,1],[1,1],[-1,0],[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],[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],[1,0],[0,1],[-1,0],[1,1],[0,1],[0,-1],[0,1],[0,2],[0,1],[1,1],[-1,0],[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,2],[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,-2],[-1,-2],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-2],[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,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[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],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,3],[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,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[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],[-1,0],[1,-1],[0,-1],[-1,1],[0,1],[0,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],[-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],[1,0],[0,-1],[0,1],[0,-2],[0,-2],[1,0],[-1,2],[0,2],[0,1],[0,1],[0,1],[0,1],[1,2],[0,2],[1,1],[0,1],[0,1],[0,3],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,2],[1,2],[0,3],[0,2],[1,2],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-2],[0,-2],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,2],[0,2],[0,3],[0,2],[0,1],[0,3],[1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-3],[0,-2],[0,-3],[0,-3],[-1,-3],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[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],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,1],[-1,1],[0,1]],[[1200,7424],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,1]],[[1215,7431],[0,-1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0]],[[1197,7438],[0,-1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[701,7440],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[703,7450],[-1,1],[1,0],[0,1],[0,-1],[0,-1]],[[1210,7452],[1,0],[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],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1]],[[1273,7450],[0,1],[-1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[1196,7454],[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,-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,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1]],[[720,7453],[-1,0],[0,1],[0,1],[0,-1],[1,0],[0,-1]],[[1195,7454],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1]],[[719,7454],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1268,7461],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,-1]],[[1195,7462],[0,-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],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,-2]],[[714,7464],[-1,0],[0,1],[1,0],[0,-1]],[[1256,7464],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[-1,-1]],[[750,7466],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,0]],[[747,7462],[-1,0],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1]],[[739,7484],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[1252,7483],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-2],[1,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[-1,3],[0,1],[0,2],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1251,7485],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[1253,7492],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[1,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[1251,7498],[0,-1],[0,-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],[0,-1],[0,1],[-1,-1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0]],[[726,7498],[1,-1],[-1,-1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,-1]],[[727,7499],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1]],[[744,7499],[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,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[-1,0],[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,1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[716,7500],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[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],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,2],[1,1],[0,1],[0,1],[-2,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1]],[[732,7501],[-1,0],[0,1],[0,1],[0,-1],[1,-1]],[[736,7505],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,-1],[0,1],[0,-1],[0,1],[0,1],[1,0]],[[721,7506],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[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,-1],[0,1],[0,1],[-1,1],[0,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],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,2],[1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[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,0],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[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],[1,0],[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],[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,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,2],[0,-3],[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],[1,-1],[0,-1],[1,-1],[0,-1],[0,-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],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-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],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[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],[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],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[-1,-1],[0,-1],[1,-2],[0,1],[0,1],[1,0],[0,-1],[0,-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],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,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],[0,1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-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],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[0,1],[-1,-1],[0,2],[0,1],[-1,-1],[0,1],[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],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,1],[0,-1],[0,-1],[1,0],[-1,-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],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,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],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-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],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-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],[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,0],[0,1],[1,1],[0,1],[0,2],[0,1],[-1,0],[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,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,3],[0,2],[0,2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,1],[0,-1],[-1,-1],[0,1],[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],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[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,-2],[0,-1],[0,-1],[0,-1],[-1,0],[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,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[1,1],[0,1],[1,0],[0,-1],[0,-1],[-1,-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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[0,1],[-1,-1],[0,1],[0,-1],[0,-1],[0,-1],[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],[0,1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[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],[-1,0],[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],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[0,1],[-1,0],[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,-3],[0,-4],[0,-2],[-1,-2],[-1,-1],[0,-1],[0,-2],[0,-2],[1,0],[0,2],[1,2],[0,-1],[1,0],[-1,-4],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,2],[0,1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-1],[0,-2],[-1,-1],[0,-3],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,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,2],[0,1],[0,1],[1,1],[0,1],[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],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[1,1],[0,2],[0,3],[0,1],[1,0],[0,4],[1,1],[0,2],[-1,-2],[0,-1],[-1,-2],[0,-2],[0,1],[0,2],[0,1],[0,2],[0,3],[0,1],[0,3],[0,-3],[-1,-3],[0,-4],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,1],[-1,-1],[0,2],[1,2],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,4],[0,2],[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],[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,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[-1,-2],[0,-1],[0,-2],[-1,-4],[0,-2],[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],[-1,3],[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],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,-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],[-1,1],[0,1],[-1,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[0,-1],[-1,0],[0,-2],[0,-2],[-1,-1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,-1],[1,-1],[0,1],[1,1],[0,1],[0,2],[0,2],[1,2],[0,3],[1,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,1],[0,-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,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-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],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[1,1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-2],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,-1],[0,-2],[0,-3],[0,-3],[0,-2],[0,-1],[1,0],[-1,1],[1,1],[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,-1],[0,-1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[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],[1,2],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,3],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,4],[0,2],[0,2],[0,3],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[-1,0],[0,1],[0,-1],[0,1],[-1,-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,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,2],[0,-1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[0,-2],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,1],[0,2],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[-1,2],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[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],[1,0],[0,1],[0,1],[1,-1],[0,1],[0,-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],[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],[-1,0],[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],[1,0],[0,-1],[1,0],[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,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-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,2],[-1,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,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],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[1,-1],[1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[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],[0,1],[0,1],[0,1],[1,1],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[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,1],[-1,0],[1,1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,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],[-1,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,4],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[1,-2],[0,-1],[1,0],[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],[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],[1,0],[0,3],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[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],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,0],[0,-1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[1,-1],[0,1],[0,-1],[1,0],[-1,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-2],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,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],[-1,1],[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,-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],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0]],[[731,7507],[0,-1],[0,-1],[0,1],[-1,1],[1,0]],[[674,7508],[0,-1],[-1,0],[0,-1],[-1,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[1250,7512],[1,0],[0,-1],[0,-1],[0,1],[-1,1]],[[1211,7515],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1]],[[687,7518],[0,1],[0,-1],[0,1],[1,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1]],[[1188,7525],[0,-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],[0,-1],[0,-1],[1,-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],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[1,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],[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],[0,1],[-1,0],[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],[-1,0],[0,1],[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],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,-1]],[[1255,7522],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[723,7526],[0,-1],[1,-1],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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],[0,-1],[0,-2],[0,-1],[1,0],[-1,0],[0,-1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,2],[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,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,-2]],[[1191,7543],[0,1],[1,0],[0,-1],[-1,0]],[[609,7545],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1]],[[1227,7544],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,-1]],[[1201,7545],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,-1]],[[1228,7545],[0,-1],[0,-1],[0,-1],[0,1],[-1,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]],[[1237,7552],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[-1,-1]],[[1228,7555],[-1,0],[0,1],[1,0],[0,-1]],[[762,7555],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[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,0],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,-1],[1,-1]],[[1193,7556],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[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,1],[1,0],[0,-1]],[[1192,7555],[-1,-1],[0,1],[0,1],[0,1],[1,-1],[0,-1]],[[1237,7556],[0,1],[1,0],[0,-1],[-1,0]],[[1181,7557],[-1,0],[1,1],[0,-1]],[[1211,7515],[-1,0],[0,-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],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[1208,7504],[0,1],[-1,0],[0,-1],[0,-1],[1,1],[0,-1],[1,0],[0,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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[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],[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],[1,0],[0,1],[0,1],[1,0],[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,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[1221,7529],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[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],[0,1],[1,-1],[1,1],[0,-1],[0,-1],[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],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[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,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,2],[0,1],[-1,1],[0,1],[-1,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],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[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],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,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,3],[-1,1],[0,-1],[0,1],[0,1],[-1,1],[0,2],[0,1],[-1,3],[0,1],[-1,1],[0,1],[-1,0],[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],[-1,1],[0,2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,2],[-1,1],[0,1],[-1,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[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],[0,1],[0,1],[0,-1],[1,0],[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],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,1],[1,0],[-1,1],[1,0],[0,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],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[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],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,-1],[0,1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[1,0],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,-1],[1,1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,2],[1,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,-1],[-1,0],[1,0],[-1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-2],[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],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-3],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,1],[-1,-1],[-1,-1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,2],[-1,2],[0,1],[-1,2],[0,1],[0,2],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,3],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-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],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-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],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,-1],[0,-1],[1,-3],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[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],[-1,-1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,3],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[-1,0],[1,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],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[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],[0,2],[-1,1],[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,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[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],[-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],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[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],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,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],[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],[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],[-1,-1],[0,-1],[0,1],[-1,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],[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],[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],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[1193,7468],[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],[0,-1],[-1,0],[0,1],[0,-1],[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],[1,0],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[1,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,-1],[1,-1],[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,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,3],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,1],[0,2],[0,1],[0,1],[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,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[1,1],[0,1],[0,-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],[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],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[1,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,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-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],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,1],[1,0],[0,-1],[1,0],[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],[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],[0,1],[0,1],[1,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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[-1,1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,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,-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],[0,-1],[0,-1],[-1,0],[-1,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],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1]],[[693,7560],[-1,0],[1,1],[0,1],[0,-1],[0,-1]],[[1189,7560],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1]],[[1201,7563],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[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],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-2]],[[746,7567],[0,-1],[-1,0],[0,2],[1,0],[0,-1]],[[745,7568],[0,1],[0,1],[0,-1],[1,0],[-1,-1]],[[1239,7568],[0,1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[1243,7571],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[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],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[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],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1]],[[732,7569],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,-1]],[[1212,7578],[1,-3],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,1],[0,1],[1,0],[0,1],[1,0]],[[1233,7571],[0,-1],[0,-1],[0,-1],[0,-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],[1,-1],[0,-1],[1,-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],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[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],[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],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[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],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[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],[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],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[1,0],[0,-2],[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,0],[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,-3],[1,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,3],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[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,2],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[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],[-1,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,2],[0,1],[-1,2],[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],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[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,-1],[0,-1],[1,-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],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-2],[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],[1,-2],[0,-2],[0,-2],[1,-4],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[1,-3],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-2],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[1,-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],[-1,1],[0,2],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[1,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,1],[0,1],[0,2],[-1,-1],[0,1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[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,-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,-2],[0,-1],[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],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-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],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,-1],[-1,0],[0,1],[0,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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[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],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[1,-1],[0,-1],[-1,-1],[1,-1],[0,-3],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[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,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[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],[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],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,2],[0,-1],[-1,0],[0,1],[0,3],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[1,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[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,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-2],[0,-1],[0,-1],[1,0],[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],[1,0],[0,-1],[0,-1],[0,-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],[0,1],[1,1],[0,1],[1,0],[0,1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,3],[0,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],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-4],[1,0],[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,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,2],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,2],[0,-3],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[-1,-1],[0,2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-3],[-1,-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],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[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],[-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,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,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],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-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],[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],[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],[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],[-1,0],[0,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],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[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],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2]],[[748,7585],[0,-1],[-1,0],[0,1],[1,0]],[[747,7587],[1,0],[-1,-1],[0,-1],[0,1],[0,1]],[[748,7585],[0,1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[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],[1,0],[0,-1],[0,1],[0,1],[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],[0,1],[1,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],[1,0],[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,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[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],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,2],[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],[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,-1],[0,-1],[0,-2],[-1,-1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,-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],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-2],[1,0],[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,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[1,1],[0,1],[-1,0],[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],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[-1,0],[1,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,-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],[-1,0],[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],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[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],[0,1],[0,1],[0,1],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,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,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[0,1],[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],[1,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[1,0],[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],[-1,0],[1,1],[0,1],[0,-1],[0,-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],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,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],[1,0],[0,1],[0,1],[0,1],[0,1],[0,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],[0,-1],[0,-2],[1,1],[-1,1],[1,1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[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],[1,0],[-1,0],[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,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[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],[0,1],[0,1],[-1,0],[0,1],[1,0],[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],[1,-1],[-1,-1],[1,0],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[1,0],[-1,0],[0,1],[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,-1],[1,-1],[0,1],[0,-1],[0,-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],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[1,0],[0,1],[0,-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],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[-1,-1],[1,0],[0,-1],[-1,-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],[1,0],[0,-1],[0,-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],[1,0],[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],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[-1,1],[0,2],[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,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1205,7597],[0,-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],[1,-1],[0,-1],[0,1],[0,1],[0,1]],[[1235,7576],[0,-1],[0,1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[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],[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,-2],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1203,7596],[0,-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],[0,1],[0,-1],[0,-1],[0,-1]],[[1204,7599],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,0]],[[745,7601],[0,-1],[0,-1],[-1,-2],[0,-1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1]],[[1230,7600],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,-1],[1,-1],[0,-1]],[[1206,7598],[0,-1],[-1,0],[0,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,-1]],[[1202,7602],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,-1],[0,-1]],[[1199,7605],[0,-1],[-1,0],[0,1],[1,0]],[[1204,7608],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[1,0]],[[1232,7612],[0,-1],[0,1],[1,-1],[0,-1],[-1,0],[0,1],[0,1]],[[1204,7615],[0,-1],[0,1],[0,-1],[1,0],[-1,-1],[0,-1],[1,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[1225,7615],[-1,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1]],[[1225,7618],[-1,1],[1,0],[0,-1]],[[1199,7611],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,2],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[713,7618],[-1,0],[1,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[534,7620],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,-1]],[[1198,7622],[-1,1],[1,0],[0,-1]],[[738,7613],[1,1],[-1,1],[0,1],[1,0],[-1,-1],[1,0],[0,1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[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],[0,-1],[0,-1],[-1,0],[1,0],[0,1],[0,1],[0,-1],[1,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,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],[0,1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-2],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[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,2],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-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,1],[1,0],[-1,1],[0,-1],[0,1],[0,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],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,2],[0,-1],[0,1],[0,1],[0,1],[1,0],[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,2],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,1],[0,1],[0,1]],[[748,7624],[-1,0],[0,1],[1,-1]],[[1196,7624],[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,-1],[0,-1]],[[1201,7640],[-1,1],[1,1],[0,-1],[0,-1]],[[526,7633],[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],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[522,7633],[-1,0],[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,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1]],[[1189,7649],[0,-1],[-1,1],[0,1],[0,1],[1,-1],[0,-1]],[[1198,7646],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1190,7649],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-2],[1,-1]],[[514,7656],[0,-1],[0,-2],[-1,-2],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-3],[-1,-2],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,1],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,2],[1,1],[-3,11],[0,2],[0,1],[0,-2],[2,-10],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-2],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[559,7663],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1]],[[1230,7661],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0]],[[528,7664],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,-1],[0,-1]],[[1187,7671],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1]],[[1206,7675],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0]],[[751,7674],[-1,-1],[0,1],[0,1],[1,0],[0,-1]],[[757,7678],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,-1]],[[1180,7677],[0,-1],[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],[1,0],[0,-1],[0,-1]],[[756,7683],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[1,-1]],[[748,7685],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,-1],[0,-1],[0,-1],[0,-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],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,-1]],[[1221,7681],[0,-1],[0,-1],[1,-1],[-1,0],[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,1],[-1,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[1222,7699],[0,-1],[0,1],[1,-1],[-1,0],[0,1],[0,1],[0,-1]],[[707,7706],[1,0],[-1,-1],[0,1],[0,1],[0,-1]],[[577,7707],[-1,1],[0,1],[0,-1],[1,0],[0,-1]],[[709,7709],[0,-1],[-1,0],[0,1],[1,0]],[[1134,7709],[-1,1],[0,1],[1,-2]],[[1133,7710],[-1,1],[0,1],[1,0],[0,-1],[0,-1]],[[766,7715],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[1,0]],[[771,7718],[1,-1],[0,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[-1,1],[1,0],[0,-1],[1,0],[0,-1]],[[762,7720],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,-1],[0,1],[0,1],[-1,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1]],[[1110,7757],[1,-1],[1,-1],[-1,0],[0,1],[-1,0],[0,1]],[[801,7759],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[1,0]],[[700,7761],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[1,0]],[[760,7761],[-1,0],[0,1],[1,0],[0,-1]],[[800,7762],[0,1],[1,0],[0,-1],[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,1],[0,-1],[0,1]],[[714,7766],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[0,-1],[-1,1],[0,1],[1,1],[0,1],[0,1],[1,0]],[[717,7770],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,-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],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0]],[[795,7767],[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,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[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,0],[0,1],[0,1],[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],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,-1]],[[803,7776],[0,1],[1,0],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-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,-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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,-1],[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],[1,0],[0,-1],[0,2],[0,-1],[1,1],[-1,0],[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],[0,-2]],[[914,7769],[0,-1],[0,1],[-1,-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,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-1]],[[770,7787],[-1,0],[1,1],[0,-1]],[[771,7788],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-2],[0,-1]],[[1097,7803],[0,-1],[0,-1],[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],[0,1],[0,1],[0,1],[0,1],[1,0]],[[778,7805],[0,-1],[0,-1],[-1,1],[1,1]],[[1099,7804],[0,1],[-1,0],[0,1],[1,0],[0,1]],[[1099,7807],[0,-1],[0,-1],[0,-1]],[[1097,7803],[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],[1,0],[-1,0],[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]],[[1099,7807],[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]],[[1100,7810],[0,-1],[0,-1],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,-1],[0,-1]],[[716,7811],[0,1],[1,-1],[-1,0]],[[1099,7812],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,0]],[[822,7813],[0,1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[817,7818],[0,-2],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[1,-3],[0,-1],[-1,3],[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,-1]],[[424,7818],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,-1],[1,-1],[0,-1],[0,-1]],[[822,7817],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1103,7825],[-1,0],[0,1],[0,1],[0,3],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[826,7835],[-1,0],[1,1],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[416,7844],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1]],[[362,7850],[0,-1],[-1,0],[0,1],[1,0]],[[361,7851],[0,-1],[-1,0],[1,1]],[[829,7854],[0,-1],[1,0],[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],[1,0],[0,1],[0,1],[0,1]],[[885,7856],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,0]],[[375,7858],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[1,0]],[[830,7857],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,-1]],[[831,7867],[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]],[[863,7874],[1,0],[0,-1],[-1,0],[0,1]],[[1104,7873],[0,-1],[0,1],[-1,1],[1,0],[0,1],[0,-1],[0,-1]],[[972,7876],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,0],[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],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[868,7886],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,-5],[-1,-3],[-1,-1],[-1,-1],[-1,1],[0,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[1,2],[-1,1],[0,1],[1,1],[0,-2],[0,-1],[0,-1],[1,1],[1,0],[0,2],[0,2],[1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0]],[[969,7879],[0,-2],[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],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[866,7887],[0,1],[1,1],[0,-1],[0,-1],[-1,0]],[[872,7891],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[0,-2],[-1,-1],[0,-2],[-1,-3],[-3,-5],[0,-2],[-1,2],[0,1],[1,1],[0,2],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,2],[1,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],[1,0],[0,1],[0,-1],[0,-1],[0,-1]],[[969,7906],[0,-1],[0,-1],[1,-1],[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],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,0]],[[866,7887],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[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],[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],[1,0],[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,-2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[739,7912],[1,0],[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],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[1,0],[0,1],[0,1],[0,1],[0,-1]],[[868,7912],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,-1]],[[866,7915],[1,0],[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,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[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],[0,-1],[1,0],[1,0],[1,1],[0,1],[0,1],[-1,-1],[-1,0],[-1,1],[0,1],[1,1],[0,1],[1,0],[1,-1],[0,1],[0,1],[1,0],[-1,1],[0,1],[1,1],[-1,1],[0,-2],[-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],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,2],[1,0],[0,1],[0,1],[0,-1],[0,-2],[0,-1],[1,0],[-1,-1],[1,-1],[-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],[1,0],[0,1],[0,1],[0,-1],[0,-1]],[[469,7919],[0,-1],[1,-1],[0,1],[0,-1],[1,-3],[1,-5],[0,-3],[-2,-5],[-1,-1],[0,-1],[0,1],[0,1],[-1,2],[0,4],[-1,2],[0,1],[1,2],[0,2],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[954,7921],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,-1]],[[955,7922],[1,0],[0,-1],[0,-1],[0,1],[1,-1],[0,-1],[0,1],[0,-1],[1,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1]],[[946,7922],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1]],[[870,7927],[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],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1]],[[884,7934],[0,1],[1,0],[-1,-1]],[[886,7935],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[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,0],[0,1],[0,1],[0,1],[0,1],[-1,-1],[1,2],[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],[1,0],[-1,0],[1,0]],[[939,7932],[1,-1],[1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1]],[[946,7939],[1,-1],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[0,1]],[[935,7939],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[0,1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,-1],[1,0]],[[948,7936],[0,-1],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[871,7941],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,-1]],[[946,7944],[0,-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],[-1,0],[0,1],[0,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,0],[-1,-1],[0,-1]],[[949,7939],[0,-1],[0,2],[0,1],[0,1],[0,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],[0,-1]],[[892,7943],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,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],[-1,0],[1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,-3],[0,3],[0,1],[1,0],[0,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],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-3],[-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,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-3],[-1,-1],[0,-3],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-2],[0,2],[0,-1],[-1,0],[0,2],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,2],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,-1],[0,-2],[0,-2],[-1,2],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,2],[0,2],[0,1],[-1,2],[0,1],[0,2],[1,1],[0,3],[1,1],[1,0],[1,1],[0,1],[0,1],[-1,0],[0,3],[0,1],[0,1],[1,2],[0,1],[0,2],[1,2],[1,0],[1,1],[0,1],[0,2],[-1,2],[0,-1],[0,2],[0,1],[1,1],[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],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[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],[-1,-1],[0,-1],[1,0],[0,1],[1,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],[0,1],[-1,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,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],[0,-1],[0,1],[-1,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[868,7950],[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],[0,-2],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[-1,1],[0,-1],[0,1],[0,1],[-1,0],[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],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[1,-1],[0,-2],[0,2],[0,1],[0,1],[-1,1],[1,0],[0,-1],[0,1],[0,1],[1,1],[0,-1]],[[953,7949],[1,2],[0,-1],[0,-1],[-1,0]],[[927,7952],[1,-1],[0,-2],[1,0],[1,-1],[0,1],[0,1],[0,-1],[-1,1],[1,1],[1,0],[0,-1],[-1,-4],[0,-2],[-1,0],[-1,0],[0,1],[-1,1],[0,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,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0]],[[948,7946],[0,-2],[0,1],[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],[0,1],[1,0],[0,4],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1]],[[933,7953],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,1],[1,0],[0,-1],[0,1]],[[948,7954],[0,-2],[-1,-1],[0,-3],[-1,0],[0,1],[1,2],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,-1]],[[362,7959],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[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,0],[0,-1],[1,0],[0,1],[1,0],[0,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,-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],[0,-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],[-1,-1],[0,-1],[0,-2],[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],[-1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,-1],[0,1],[1,0],[0,-1],[0,-2],[-1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-3],[-1,0],[0,1],[0,-1],[0,-1],[-1,1],[-1,-1],[0,-1],[0,1],[-1,-1],[0,1],[0,1],[-1,0],[1,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],[0,-2],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,1],[1,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,2],[-1,0],[0,-1],[0,-2],[0,1],[0,1],[-1,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,-2],[1,0],[0,1],[1,1],[0,-1],[0,1],[1,-1],[0,-3],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,2],[-1,1],[1,1],[-1,2],[0,1],[0,2],[-1,3],[-1,1],[-1,1],[-1,2],[0,1],[0,2],[-1,1],[-1,0],[0,1],[0,-1],[-1,0],[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],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[-1,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[1,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,1],[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,1],[0,1],[0,1],[0,1],[0,-1],[0,2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[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],[-1,1],[1,0],[0,-1],[1,-1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,-1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,1],[0,1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,1],[1,0],[1,0],[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],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[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,0],[0,1],[0,1],[-1,0],[1,0],[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,-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],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,1],[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],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,-1],[0,-2],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[949,7961],[0,1],[1,0],[0,-1],[-1,0]],[[957,7964],[0,-1],[-1,0],[0,1],[1,0]],[[954,7965],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[1,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1]],[[954,7964],[0,-1],[-1,1],[0,-1],[0,1],[0,1],[1,0],[0,-1]],[[954,7966],[-1,-1],[0,1],[1,1],[0,-1]],[[956,7964],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-2]],[[954,7968],[0,-1],[-1,1],[1,0]],[[954,7966],[1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-2]],[[955,7968],[0,-1],[1,0],[-1,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[908,7969],[1,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[-1,-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],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[-1,-1],[1,-1],[0,1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[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],[0,-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],[0,-1],[0,1],[0,1],[0,-1],[0,-2],[0,-1],[-1,0],[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],[0,-1],[0,1],[0,1],[0,1],[-1,0],[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,-1],[0,-1],[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,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],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,1],[0,1],[1,0],[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],[-1,-1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[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],[-1,0],[-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],[0,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],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1]],[[955,7967],[0,-1],[-1,1],[0,1],[1,0],[0,1],[0,-1],[0,-1]],[[878,7972],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,-1]],[[953,7970],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,0],[0,1],[1,2],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-2]],[[952,7971],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[951,7973],[0,-1],[0,-1],[0,1],[-1,0],[1,0],[-1,-1],[0,1],[0,1],[1,0],[0,1],[0,-1]],[[953,7972],[-1,0],[0,1],[1,1],[0,-2]],[[869,7971],[0,1],[0,1],[0,1],[1,0],[-1,-2],[0,-1]],[[955,7973],[-1,-1],[0,1],[1,1],[0,-1]],[[759,7961],[0,-1],[-1,0],[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,-2],[-1,0],[0,-1],[-1,-1],[0,1],[0,1],[0,2],[1,0],[1,1],[0,1],[0,1],[0,1],[0,2],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[870,7927],[0,1],[1,0],[0,1],[0,-2],[1,2],[0,1],[-1,-1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,-2],[0,2],[0,1],[1,0],[0,-2],[0,-1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,-1],[0,2],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,2],[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],[1,1],[0,1],[-1,-1],[-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],[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],[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],[-1,0],[1,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[1,0],[0,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[-1,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],[0,-1],[0,-1],[0,2],[0,1],[-1,0],[0,1],[1,-1],[0,1],[-1,1],[0,1],[1,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,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],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-2],[0,1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[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],[0,1],[0,1],[1,0],[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],[0,-1],[-1,-1],[0,2],[-1,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-2],[-1,-1],[1,-2],[-1,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[0,1],[0,1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-6],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,2],[-1,-1],[0,-1],[-1,3],[0,1],[1,0],[-1,1],[1,1],[0,-1],[1,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[-1,1],[1,0],[0,1],[-1,0],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[1,0],[0,1],[-1,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,2]],[[954,7975],[0,1],[0,1],[1,-1],[-1,-1]],[[954,7976],[0,-1],[-1,0],[1,1],[0,1],[0,-1]],[[887,7978],[-1,-1],[0,-1],[0,1],[-1,-1],[0,-1],[-1,1],[1,1],[1,1],[1,0]],[[878,7974],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1]],[[880,7986],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[-1,-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,3],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,0],[-1,1],[0,1],[1,1],[0,-1]],[[472,7989],[0,1],[0,1],[1,0],[0,-1],[-1,-1]],[[931,7989],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[173,7991],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,-2],[0,-1],[0,-1],[1,-1],[1,-2],[0,-2],[0,-1],[2,-5],[0,-1],[1,0],[0,-1],[1,-1],[1,-2],[0,-2],[2,-2],[1,0],[1,0],[1,0],[0,1],[0,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-3],[1,-5],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[-1,0],[0,1],[-1,1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,2],[-1,2],[-1,2],[-1,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[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],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,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],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,3],[1,0]],[[929,7989],[0,-2],[0,1],[0,-1],[1,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,-2],[0,-1],[1,1],[0,-1],[0,-1],[-1,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,0],[-1,-2],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-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],[-1,0],[0,1],[1,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[-1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,-2],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,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],[0,1],[0,1],[1,2],[0,1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1]],[[864,7994],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[170,7994],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[874,8002],[0,1],[0,1],[1,4],[0,1],[0,-1],[0,-1],[-1,-5]],[[883,8008],[1,-2],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,3],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[0,2],[1,1],[0,1],[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],[0,1],[-1,0],[0,2],[0,1],[1,-1],[0,1],[0,1],[0,-1]],[[885,8011],[1,-1],[0,-1],[-1,-2],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,-1]],[[849,8006],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[-1,0]],[[904,8011],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,-2],[0,-1]],[[885,8016],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,2],[1,-2],[0,1],[0,1],[1,0],[0,-1]],[[869,8014],[1,-3],[0,1],[0,2],[0,2],[1,-3],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[-1,1],[0,-1],[0,-1],[0,1],[-1,0],[0,2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,2],[-1,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,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[1,2],[0,-1],[0,-1],[0,-2],[0,-1]],[[862,8021],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[1,0],[1,2],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[0,1],[-1,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-2],[0,2],[0,2],[-1,2],[1,1],[-1,0],[0,1],[0,1],[-1,2],[0,2],[0,-1],[0,1],[0,2],[0,1],[1,1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,2],[0,2],[0,1]],[[876,8027],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,-1]],[[900,8036],[0,1],[0,1],[1,0],[-1,-1],[0,-1]],[[883,8039],[-1,-1],[0,1],[1,1],[0,-1]],[[406,8037],[0,-1],[0,-1],[0,1],[-1,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,2],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,-1],[0,-1]],[[397,8035],[0,-1],[-1,-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],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1]],[[904,8038],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,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],[-1,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1]],[[884,8040],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[902,8046],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,-1]],[[891,8047],[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],[0,-1],[0,-1],[1,1],[0,1],[1,2],[0,1],[0,1],[0,-2],[0,1],[1,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,2],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-2,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[1,2],[0,1],[0,1],[1,0],[0,-1],[-1,-1],[0,-2],[1,1],[0,2],[0,1],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[0,1],[0,-2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[-1,-1]],[[397,8052],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-2],[1,-1],[0,1],[1,3],[1,2],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,-2],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-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],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-5],[-1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,1],[-2,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-4],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[-2,1],[-1,2],[0,1],[0,1],[-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,0],[0,1],[0,1],[0,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],[0,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,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,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],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[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],[1,0],[0,1],[0,1],[1,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],[0,1],[0,2],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[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,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-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,0]],[[427,8049],[0,-1],[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,3],[1,1],[0,-1],[-1,0],[0,-1],[0,-1]],[[867,8051],[0,-1],[1,-2],[0,1],[0,-1],[1,-2],[0,1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[-1,0],[1,0],[-1,-1],[0,-2],[0,1],[-1,1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-2],[-1,0],[0,2],[1,3],[-1,-1],[0,-2],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,1],[0,-1],[0,-2],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[1,2],[0,1],[0,3],[0,2],[0,2],[0,1],[1,1],[0,-2],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,1],[1,0],[0,-1]],[[895,8061],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,-2]],[[806,8088],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1]],[[369,8134],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[1,1],[0,1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[395,8155],[0,-1],[-1,-1],[0,1],[0,1],[1,0]],[[368,8247],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[0,2],[0,2],[0,1],[1,2],[0,4],[0,2],[0,2],[0,1],[0,1],[1,0],[0,-1]],[[368,8252],[0,-2],[0,1],[0,-1],[-1,0],[0,2],[1,0]],[[367,8264],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[-1,-1]],[[397,8357],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0]],[[393,8362],[0,-1],[1,-1],[-1,0],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[395,8364],[1,-1],[0,-1],[-1,-1],[-1,-1],[0,1],[0,2],[-1,2],[0,1],[0,2],[1,2],[0,1],[0,-1],[0,-1],[1,-2],[0,-2],[0,-1]],[[397,8375],[0,-1],[0,1],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,-2],[-1,1],[0,1],[-1,1],[0,2],[0,2],[0,-1],[0,1],[1,0],[-1,0],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,-1],[1,-1]],[[398,8378],[0,-2],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,1],[0,-1],[0,-1]],[[401,8398],[1,0],[0,-1],[0,-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],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-1],[-1,-3],[-1,-2],[0,-1],[-1,-3],[-1,-2],[-1,-3],[0,-3],[-1,-1],[0,-2],[-1,0],[0,1],[-1,2],[0,2],[0,2],[0,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,2],[0,1],[0,2],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,2],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0]],[[409,8443],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[0,-2],[0,-1],[1,-3],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[1,-1],[0,-1],[1,0],[0,1],[0,1],[-1,1],[0,1],[1,-1],[0,-1],[0,-2],[0,-2],[1,0],[0,-4],[-1,-5],[0,-3],[1,-2],[0,-2],[0,-3],[0,-1],[1,0],[1,-3],[1,-2],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[1,-4],[-1,-6],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[1,-1],[1,-4],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,2],[-1,2],[0,1],[-1,3],[0,2],[0,2],[-1,1],[0,2],[0,2],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,-2],[-1,2],[0,2],[0,2],[0,1],[-1,1],[0,6],[-1,3],[-1,3],[-1,1],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,2],[0,-1],[1,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[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,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,7],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1],[1,0],[2,0],[0,1],[1,0],[0,-1],[1,-1],[0,1],[0,1]],[[406,8444],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[-1,-1],[0,-1]],[[404,8451],[0,1],[0,2],[1,2],[0,1],[1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0]],[[421,8486],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-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],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-2],[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,0],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,2],[0,-2],[0,-1],[-1,-1],[0,-2],[-1,0],[0,1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[-1,0],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[-2,-1],[-1,-2],[0,2],[0,2],[-1,1],[0,2],[0,1],[0,1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[0,3],[0,1],[0,-1],[-1,0],[0,2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[1,2],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,-1],[0,1],[0,2],[1,3],[0,1],[0,1],[1,1],[0,1],[1,1],[0,2],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,1],[1,0],[1,0]],[[231,8520],[0,-1],[-1,0],[1,1],[0,1],[0,-1]],[[477,8523],[0,-1],[-1,0],[0,1],[1,0]],[[228,8543],[-1,0],[0,1],[1,0],[0,-1]],[[218,8554],[0,-1],[1,0],[0,-1],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[1,1],[1,0]],[[466,8556],[0,-1],[1,0],[0,-1],[1,0],[-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],[0,-1],[0,-1],[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,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[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,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,-1],[0,-1],[0,1],[1,-1],[0,-1],[0,1],[0,-1],[1,0],[1,1],[0,1],[0,1]],[[216,8555],[0,-1],[0,1],[0,-1],[0,1],[-1,1],[1,0],[0,-1]],[[208,8583],[0,-1],[1,0],[0,-1],[0,-2],[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],[1,0],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[2,-1],[0,-2],[1,0],[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,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[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],[0,-1],[1,0],[2,-2],[1,-2],[-1,1],[-1,0],[0,1],[-1,1],[0,-2],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[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],[0,1],[0,-1],[0,-1],[1,1],[1,0],[1,1],[0,1],[0,1],[0,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],[0,-2],[1,-2],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[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],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[1,2],[0,1],[1,-1],[-1,-1],[0,-1],[1,-1],[-1,0],[1,-1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[2,-1],[-1,0],[-1,0],[-1,1],[0,-1],[1,-1],[0,1],[0,-2],[1,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[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],[0,-1],[1,0],[1,0],[0,1],[-1,0],[-2,2],[0,1],[-1,0],[0,1],[0,1],[1,-2],[2,-2],[1,-1],[0,1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[1,0],[1,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[1,0],[3,-1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[1,1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,1],[1,1],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-2,1],[-1,0],[-1,-1],[-4,-3],[-2,-2],[2,4],[1,1],[1,0],[1,1],[1,0],[1,0],[0,2],[-1,1],[-1,0],[-3,-2],[0,-2],[0,2],[-1,-1],[0,-2],[-1,-3],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[0,2],[0,-1],[0,-2],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,1],[-1,-2],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[1,1],[0,-1],[1,0],[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],[0,1],[0,1],[0,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],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[2,-4],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,3],[0,2],[-1,0],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,2],[-1,1],[0,1],[-1,2],[-1,2],[0,2],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[1,0],[0,1],[0,1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,2],[-1,0],[0,1],[1,-1],[0,1],[0,1],[0,1],[0,-2],[1,1],[0,1],[-1,0],[0,1],[1,2],[0,1],[0,2],[0,2],[-1,1],[1,1],[-1,3],[0,1],[-1,2],[-1,0],[0,1],[-1,2],[0,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[-1,3],[-1,1],[-1,1],[-1,3],[0,2],[-1,-1],[-1,-1],[0,1],[-1,1],[0,2],[0,1],[0,-2],[-1,2],[-2,-1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[0,1],[0,2],[-1,-1],[0,-1],[0,1],[-1,-2],[0,-1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,-1],[0,-1],[4,1],[1,-1],[2,-1],[2,-3],[3,-3],[1,-1],[0,-1],[1,-1],[1,-2],[1,1],[0,-1],[2,-5],[1,-1],[0,-1],[2,-5],[0,-2],[0,-1],[1,-1],[0,-2],[0,-2],[1,-2],[0,-1],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[-1,3],[0,2],[0,2],[-1,1],[-1,4],[-1,1],[-1,4],[-2,2],[-2,4],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-5,5],[-4,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[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],[0,1],[-1,1],[0,-1],[0,1],[0,1],[-1,0],[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,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],[1,0],[-1,1],[1,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,2],[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,0],[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,2],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[1,0],[1,0],[0,1],[0,-1]],[[497,8645],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[498,8698],[0,-2],[-1,1],[0,1],[1,0]],[[361,8716],[0,-2],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[309,8807],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1]],[[286,8947],[-1,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]],[[318,8953],[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],[1,1],[0,1],[2,2],[0,1],[0,-1],[0,-1]],[[323,8961],[0,-1],[0,1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,2],[1,2],[3,4],[0,1],[1,1],[0,-1]],[[344,9002],[0,-1],[-1,1],[0,1],[1,1],[0,-1],[0,-1]],[[342,9001],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-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,2],[1,3],[1,1],[1,4],[3,6],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,3],[0,-1],[0,-1],[0,-1],[-1,-1]],[[483,9002],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1]],[[429,9010],[1,-1],[0,-1],[-1,0],[0,1],[0,1]],[[344,9005],[0,1],[0,1],[1,2],[2,3],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[501,9016],[0,1],[1,0],[0,-1],[-1,0]],[[502,9018],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[505,9027],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[-1,2],[1,0],[1,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[420,9034],[1,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,1]],[[505,9032],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[-1,-1]],[[504,9035],[0,-1],[-1,1],[0,1],[1,0],[0,-1]],[[361,9034],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[1,0],[-1,-1],[-1,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[3,7],[0,1],[1,2],[1,2],[1,1],[1,1],[1,2],[1,2],[1,1],[1,2],[0,1],[1,0],[1,1],[1,0],[0,-1],[-1,0],[0,-1]],[[483,9036],[0,-1],[-1,1],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[366,9039],[0,-1],[0,1],[-1,1],[1,0],[0,-1]],[[365,9044],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[1,2],[0,1],[1,1],[0,1],[1,0],[0,1],[0,-1]],[[370,9051],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,2],[0,2],[1,0],[0,1],[1,2],[1,2],[1,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1]],[[375,9060],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[375,9060],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,-1],[-1,-2],[0,-1],[-1,-1]],[[380,9070],[1,0],[0,-1],[-1,-1],[0,1],[0,-1],[-1,-2],[-1,0],[0,-1],[0,-2],[0,1],[-1,1],[0,-1],[0,1],[1,2],[1,1],[0,1],[1,1]],[[528,9085],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[402,9096],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[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],[-1,0],[0,-1],[-1,0],[0,-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],[0,-1],[-1,0],[-1,-2],[-1,0],[-1,-3],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0]],[[500,9102],[-1,0],[0,1],[1,-1]],[[486,9173],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,0]],[[456,9189],[-1,0],[0,1],[1,0],[0,-1]],[[406,9320],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,2],[-1,2],[-1,4],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1]],[[446,9635],[1,1],[0,-1],[-1,0],[1,-1],[-1,0],[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]],[[446,9640],[0,-1],[0,1],[0,1],[0,4],[0,6],[0,5],[0,4],[-1,3],[0,4],[0,2],[1,1],[0,2],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-9],[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]],[[451,9701],[0,1],[1,0],[-1,-1]],[[1051,9685],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-2,5],[0,2],[-1,1],[-1,2],[0,1],[-1,2],[-1,1],[-1,2],[-1,1],[0,1],[-2,1],[-1,2],[0,1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,-2],[1,-1],[0,-1],[0,-1],[1,0]],[[1036,9709],[0,-1],[-1,2],[0,1],[1,0],[0,-2]],[[1035,9710],[-2,2],[0,1],[1,-1],[1,-1],[0,-1]],[[447,9680],[0,-1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,2],[1,7],[0,1],[0,2],[1,2],[0,1],[0,2],[0,2],[1,1],[0,2],[1,1],[0,2],[1,3],[0,1],[1,1],[0,2],[1,1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[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,-2]],[[1033,9713],[-1,0],[0,1],[-1,0],[0,1],[-1,2],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[0,1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1]],[[455,9722],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,-1],[0,-1],[0,-1]],[[954,9739],[0,-1],[-1,0],[0,1],[1,0]],[[456,9727],[-1,-1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,2],[1,1],[0,3],[1,1],[0,1],[0,2],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[972,9748],[0,-1],[-1,0],[0,1],[1,0],[0,1],[1,1],[0,-1],[-1,-1]],[[460,9742],[-1,-1],[0,1],[1,2],[0,2],[1,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],[-1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1]],[[1009,9755],[0,-1],[-1,1],[0,1],[0,-1],[1,0]],[[982,9755],[-1,-1],[0,1],[0,1],[1,0],[0,-1]],[[979,9756],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0]],[[1007,9758],[-1,0],[0,1],[-1,1],[-1,1],[1,0],[0,-1],[1,-1],[0,-1],[1,0]],[[999,9762],[0,-1],[-1,1],[1,2],[0,-2]],[[990,9763],[0,-2],[-1,-2],[-1,-2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[4,1],[2,0],[0,-1],[-2,0],[0,-1]],[[986,9765],[0,-1],[-1,-2],[-1,0],[0,1],[-1,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],[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],[0,2],[0,1],[1,1],[0,-1]],[[1000,9769],[-1,-1],[-1,-3],[0,1],[0,2],[1,1],[1,0]],[[991,9769],[2,-2],[0,-1],[1,-1],[1,-1],[-1,0],[-1,1],[-1,2],[-1,1],[-1,0],[0,-1],[0,1],[1,1]],[[923,9776],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,1],[-1,3],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,-1],[-1,1],[0,1],[1,-1],[1,0],[0,-1]],[[887,9778],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[1,0]],[[920,9778],[1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[1,-1]],[[888,9778],[-1,0],[0,1],[1,0],[0,-1]],[[891,9782],[0,-1],[0,-2],[0,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],[0,-1],[1,0]],[[888,9786],[1,-1],[-1,0],[0,1]],[[473,9784],[-1,-1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[0,2],[1,3],[0,3],[1,2],[1,1],[0,1],[1,3],[1,4],[0,1],[1,2],[2,3],[0,1],[1,2],[1,1],[1,3],[1,1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1]],[[872,9794],[-1,0],[0,1],[1,0],[0,-1]],[[476,9790],[-1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1]],[[871,9796],[-1,-1],[0,1],[1,0]],[[895,9797],[0,1],[1,-1],[-1,0]],[[894,9798],[0,-1],[-1,1],[0,-1],[0,1],[1,0]],[[537,9796],[0,-1],[-1,2],[1,1],[0,-2]],[[868,9800],[1,-1],[-1,-1],[0,1],[-1,0],[1,1]],[[500,9797],[-1,-1],[-1,0],[0,-1],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[0,1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1]],[[482,9802],[1,-1],[2,-1],[2,-1],[4,-3],[3,-1],[1,0],[2,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,1],[-2,2],[-3,2],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0]],[[511,9810],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,1]],[[534,9811],[-1,-1],[0,1],[0,1],[1,0],[0,-1]],[[796,9812],[-1,-3],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,-1],[0,5],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0]],[[883,9812],[0,1],[-1,0],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1]],[[881,9815],[1,0],[0,-1],[-1,0],[0,1]],[[798,9816],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,3],[1,2],[1,1]],[[845,9817],[0,-1],[0,-1],[-1,0],[0,1],[1,0],[0,1]],[[843,9817],[0,1],[0,1],[1,0],[0,-1],[-1,-1]],[[802,9817],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[805,9823],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0]],[[846,9825],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,-1],[0,-1]],[[796,9815],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,1],[0,2],[0,2],[1,1],[1,1],[1,2],[0,2],[0,1],[1,2],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[805,9825],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,-1],[1,-1],[0,-1]],[[802,9830],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[-1,-3],[-1,-2],[-1,0],[0,1],[0,-1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1]],[[869,9832],[0,-1],[0,1],[-1,0],[1,1],[0,-1]],[[797,9833],[1,0],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,2],[0,2],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[1,2],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,2],[0,-1],[1,0],[0,1],[1,0],[1,0]],[[835,9838],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[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],[-1,0],[0,1],[1,0],[0,-1]],[[833,9839],[0,-1],[0,1],[-1,0],[0,1],[1,-1]],[[832,9840],[-1,0],[0,1],[1,0],[0,-1]],[[816,9845],[1,0],[1,-1],[0,-1],[-2,2],[-1,0],[-1,0],[1,0],[1,0]],[[826,9844],[1,0],[2,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,1],[-1,1],[0,1],[1,-1],[1,-1],[2,-1]],[[760,9847],[0,-1],[-1,1],[-1,0],[0,1],[1,0],[1,0],[0,-1]],[[757,9849],[0,-1],[1,0],[0,-1],[0,1],[-1,-1],[0,1],[-1,0],[0,1],[1,0]],[[747,9852],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[736,9902],[0,-1],[-1,1],[0,2],[1,0],[0,-2]],[[733,9909],[0,-2],[1,1],[0,-2],[0,-1],[-1,0],[0,2],[-1,0],[0,1],[1,1]],[[567,9910],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[1,0]],[[727,9909],[0,-1],[0,-1],[-1,1],[0,1],[-1,0],[1,1],[0,1],[1,-1],[0,-1]],[[655,9917],[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,0],[0,1],[1,0],[0,1],[0,1],[0,-2],[0,-1]],[[656,9925],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[674,9950],[-1,1],[1,0],[0,-1]],[[671,9956],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[0,1],[1,0]],[[669,9957],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[658,9969],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[654,9971],[1,-1],[-1,0],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[-1,-1],[0,1],[1,1],[1,0]],[[647,9980],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,-1]],[[645,9985],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,-1],[1,-1],[1,-1]],[[1206,7598],[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,-1],[-1,0],[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,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[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],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,2],[0,1],[-1,2],[0,3],[0,1],[0,1],[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,1],[0,-1],[0,-1],[0,1],[-1,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,1],[1,0],[1,0],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,-1],[-1,0],[-1,1],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,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],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,3],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[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],[0,-1],[1,0],[0,-2],[1,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,-3],[0,-3],[0,-1],[1,-1],[0,-2],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,2],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-2],[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],[0,-1],[0,1],[-1,-1],[0,1],[0,-2],[0,-1],[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],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,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,0],[1,0],[0,1],[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],[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,2],[0,1],[0,3],[0,2],[1,1],[0,2],[0,1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-3],[0,-2],[0,-2],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,2],[-1,8],[-1,1],[0,2],[0,1],[0,-1],[0,-2],[0,-3],[1,-3],[0,-3],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,-1],[-1,0],[0,2],[-1,2],[0,2],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,2],[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,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],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,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],[0,-1],[0,-1],[0,-1],[-1,0],[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],[1,0],[0,1],[0,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,0],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,2],[0,1],[0,2],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,-1],[0,-2],[1,0],[0,-1],[1,-1],[0,-1],[1,1],[0,-1],[1,0],[0,-1],[1,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[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],[0,1],[0,1],[0,2],[0,1],[-1,2],[0,2],[0,1],[-1,0],[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,-1],[-1,0],[0,1],[-1,-1],[1,0],[-1,-1],[0,-1],[1,0],[0,1],[1,0],[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,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[-1,2],[0,1],[0,1],[-1,2],[0,1],[0,2],[0,2],[0,1],[0,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,-1],[0,-1],[1,0],[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],[-1,0],[0,-1],[-1,-1],[0,-1],[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,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,2],[0,1],[0,2],[-1,0],[0,2],[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,2],[0,1],[0,1],[1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-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],[-1,0],[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],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[-1,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-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],[0,-2],[-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],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,0],[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,1],[0,1],[-1,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,-1],[1,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,-1],[1,-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],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,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],[1,0],[0,1],[0,1],[-1,2],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,2],[0,1],[-1,3],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[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],[-1,0],[0,-1],[-1,0],[0,1],[1,4],[0,1],[-1,-2],[0,-4],[-1,0],[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],[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,0],[0,-1],[0,1],[-1,0],[1,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[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],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,-1],[0,3],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,4],[-1,2],[0,1],[0,1],[-1,1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,1],[0,1],[0,1],[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],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[-2,7],[-1,1],[0,2],[0,1],[-1,0],[-1,5],[-1,2],[-1,4],[0,2],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,2],[0,2],[0,1],[0,-1],[-2,6],[-1,3],[0,1],[-1,2],[0,1],[0,1],[-1,2],[0,2],[-1,1],[0,2],[0,1],[-1,1],[0,1],[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],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-2,2],[0,1],[1,0],[0,-1],[1,1],[0,1],[-1,0],[0,1],[1,0],[-1,1],[-1,-1],[0,1],[-1,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,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],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[1,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[-1,1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,3],[-2,5],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,3],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-2,3],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[1,-1],[1,-1],[0,-1],[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,2],[-1,1],[0,1],[1,0],[0,1],[-1,1],[1,0],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[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,1],[0,1],[-1,1],[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],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,1],[1,0],[0,1],[0,-1],[1,0],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,-1],[-1,1],[0,1]],[[1107,7769],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[1,-1],[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,0],[0,-1],[1,0],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-2,4],[0,1],[-1,1],[0,2],[-1,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,-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],[0,1],[0,1],[0,1]],[[1099,7803],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,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],[-1,2],[-1,2],[0,2],[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],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[0,3],[0,1],[0,1],[0,1],[1,1],[-1,1],[1,0],[0,-1],[1,-2],[0,-1],[0,-3],[1,-3],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,-3],[0,-1],[1,-4],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[1,-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],[1,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[1,1],[0,4],[1,2],[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,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,2],[0,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],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,-1],[1,-6],[0,-1],[1,0],[1,-2],[0,1],[0,2],[0,1],[-1,1],[-1,2],[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],[-1,0],[-1,-1],[-1,0],[0,3],[0,1],[-1,3],[0,1],[-2,11],[0,1],[-1,0],[0,1],[0,1],[0,4],[-1,1],[-1,0],[0,1],[0,2],[-1,2],[0,2],[0,1],[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,-1],[0,-1],[0,-5],[0,-2],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[0,-3],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-2,2],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,3],[-1,1],[-1,1],[-2,5],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[-1,1],[-2,3],[-2,3],[0,1],[0,3],[-1,1],[0,1],[0,2],[1,1],[0,-2],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[1,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,2],[0,-1],[0,-1],[0,-1],[1,1],[0,2],[1,-1],[0,1],[0,1],[1,-1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[-1,1],[0,2],[-1,5],[0,1],[0,1],[0,1],[-1,1],[1,0],[1,0],[0,1],[0,2],[1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,-1],[0,1],[0,1],[1,2],[0,3],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-5],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,2],[1,1],[-1,3],[0,1],[-1,-3],[0,-2],[-1,-1],[0,1],[0,1],[-1,2],[-1,-1],[0,-2],[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,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,2],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-5,1],[-3,0],[-1,0],[-2,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,1],[0,-1],[-1,0],[-1,0],[-2,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],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[1,-1],[0,-2],[1,0],[0,-1],[0,-3],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,1],[0,1],[0,1],[-1,0],[0,1],[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,-1],[0,1],[1,-1],[0,1],[0,-1],[1,0],[1,0],[0,-1],[0,1],[0,1],[0,1],[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],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,3],[1,0],[0,1],[0,-1],[0,2],[1,1],[0,1],[0,1],[0,2],[0,1],[0,2],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,1],[0,-1],[0,1],[0,-1],[-1,0],[-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],[0,-1],[-1,0],[0,1],[-1,2],[0,1],[-2,2],[0,1],[0,-1],[1,0],[1,-2],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,3],[-1,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-2],[-1,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[0,2],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,2],[1,1],[0,1],[0,1],[0,2],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,2],[0,1],[0,3],[0,-1],[-1,-2],[0,2],[-1,0],[0,2],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,-1],[1,0],[-1,0],[0,1],[0,1],[1,2],[0,2],[0,2],[-1,0],[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,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-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,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-4],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,1],[-1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,-1],[1,1],[1,1],[1,1],[0,-1],[1,1],[0,1],[-1,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,1],[0,-1],[0,1],[-1,0],[0,2],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-2],[-1,1],[0,1],[-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],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,2],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[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],[0,1],[1,0],[0,1],[0,1],[1,2],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[0,2],[0,3],[0,2],[1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[-1,-1],[-1,-3],[-1,-1],[0,1],[1,1],[0,1],[1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,2],[0,2],[1,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-4],[0,-1],[0,-1],[0,1],[-1,1],[0,-1],[-1,-1],[0,1],[1,2],[0,2],[0,1],[0,1],[0,1],[1,0],[0,2],[-1,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-2],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,-2],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[1,0],[0,1],[0,1],[0,-1],[0,2],[0,-1],[1,0],[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],[-1,-1],[0,-1],[0,-1],[0,-1],[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],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[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,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[-1,-1],[-1,1],[0,1],[0,2],[0,1],[-1,3],[0,2],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,3],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,-1],[-1,3],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[0,1],[0,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],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[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],[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],[-1,0],[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],[0,1],[-1,0],[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],[1,1],[0,1],[-1,2],[0,2],[0,2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,2],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,-1],[0,1],[0,1],[0,1],[-1,-1],[-1,2],[0,1],[-1,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[1,0],[0,-1],[0,1],[0,3],[0,2],[0,1],[0,2],[1,1],[0,1],[0,1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,-2],[1,0],[0,-2],[1,-1],[1,-1],[0,1],[0,1],[-1,0],[0,1],[-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],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,-1],[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],[1,0],[0,-1],[0,1],[1,0],[0,1],[-1,0],[0,2],[0,3],[-1,1],[0,1],[0,1],[-1,0],[0,-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],[-1,0],[0,-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],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-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],[0,-1],[0,-1],[0,1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-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],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,2],[0,-1],[0,-3],[1,-1],[0,-3],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,1],[-1,1],[0,2],[0,1],[0,2],[1,0],[-1,1],[1,1],[0,2],[0,2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,2],[0,2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[0,-1],[0,-2],[1,-1],[-1,0],[0,-1],[0,-1],[0,2],[0,-1],[0,-1],[-1,1],[0,1],[-1,1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,0],[0,-2],[0,-2],[-1,-2],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-2],[0,1],[-1,0],[0,1],[0,2],[1,1],[1,1],[0,2],[0,-1],[-1,-1],[-1,0],[0,-1],[0,1],[0,2],[1,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[-1,2],[1,1],[0,1],[0,4],[0,1],[0,1],[1,1],[0,-1],[1,0],[0,1],[-1,2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-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,-3],[0,-3],[0,-1],[0,-2],[-1,-1],[0,-2],[1,0],[0,-1],[0,-1],[-1,1],[0,-2],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,2],[-1,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[1,2],[1,-1],[0,1],[0,2],[-1,0],[0,-1],[-1,0],[0,-1],[0,-3],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-3],[0,-1],[0,-1],[-1,-1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-2],[0,-1],[-1,-1],[0,1],[0,-1],[0,-1],[1,1],[0,-1],[1,0],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,2],[0,1],[0,-1],[0,1],[0,1],[0,-2],[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],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-5],[-1,-1],[0,1],[0,1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1]],[[875,8033],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[1,1],[-1,-1],[0,-1],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,-2],[0,-2],[0,-1],[-1,1],[0,1],[-1,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[-1,-1],[-1,2],[-1,3],[0,1],[-1,0],[0,-1],[0,2],[0,1],[1,1],[0,2],[1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,-1],[1,2],[0,2],[1,2],[0,1],[1,4],[0,2],[0,1],[2,4],[0,2],[0,1],[0,1],[2,1],[0,1],[0,1],[0,2],[1,0],[0,2],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,2],[-1,1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[-1,0],[0,-2],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[-2,-5],[0,-1],[0,-1],[0,-2],[0,-1],[0,-5],[0,-1],[-1,-3],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,5],[0,1],[0,2],[0,1],[-1,3],[1,2],[0,1],[0,1],[0,1],[-1,-2],[0,-2],[0,-1],[-1,-3],[0,-1],[-1,1],[-1,0],[0,-2],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,-2],[-1,0],[-1,0],[0,-1],[1,-2],[1,-1],[0,-1],[-1,-2],[0,-4],[-1,-2],[-1,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,2],[1,2],[0,1],[0,1],[0,1],[1,3],[0,2],[1,0],[0,1],[0,1],[2,1],[1,2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-4],[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,-2],[0,-1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[-1,1],[0,1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[0,-1],[1,0],[-1,-3],[0,-2],[0,-1],[0,1],[0,-1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,1],[0,1],[-1,2],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,-2],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[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],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-6],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,-2],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[1,4],[0,1],[0,1],[0,2],[0,1],[1,2],[0,1],[1,2],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[0,1],[0,1],[1,2],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,1],[1,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[-1,-2],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[1,5],[1,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,3],[0,1],[0,2],[1,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-3],[0,-1],[0,-2],[-1,-1],[1,1],[0,2],[1,0],[0,-1],[0,-2],[0,-2],[1,-2],[0,-1],[0,-2],[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,-2],[0,-1],[-1,1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,1],[-1,1],[1,1],[0,3],[0,-2],[-1,-2],[-1,1],[0,2],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,-2],[0,-1],[-1,-2],[-1,-2],[0,-2],[-1,-2],[0,-2],[0,-1],[-1,0],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[0,1],[1,-1],[0,1],[0,1],[1,3],[0,2],[1,1],[0,2],[1,1],[1,1],[0,2],[1,2],[0,1],[0,-1],[1,-2],[0,-1],[-1,-1],[1,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[1,-1],[1,0],[0,2],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,-1],[0,-2],[0,-3],[0,-3],[0,-1],[0,-1],[0,2],[1,1],[0,3],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,3],[0,2],[1,2],[0,3],[1,-4],[0,-3],[0,-3],[-1,-1],[0,-2],[0,-1],[1,0],[0,3],[0,-1],[0,3],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,-1],[0,1],[1,2],[0,-1],[0,-2],[1,-2],[0,-1],[0,1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,2],[1,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-2],[1,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-2],[0,1],[0,1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[-1,1],[1,0],[0,1],[0,1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,1],[1,1],[-1,0],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[1,2],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[1,-1],[-1,-1],[0,-2],[0,-2],[0,-1],[0,2],[1,2],[0,1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,0],[0,3],[0,2],[0,2],[-1,0],[0,-1],[-1,-2],[0,-1],[1,0],[0,-2],[1,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-3],[0,-1],[-1,-1],[0,-1],[1,2],[1,1],[0,1],[0,1],[1,-2],[0,1],[0,1],[0,2],[1,1],[0,2],[1,2],[0,1],[1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[1,0],[1,3],[0,1],[1,-1],[0,-1],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,3],[1,1],[0,1],[0,3],[0,3],[0,1],[0,2],[0,1],[0,2],[1,0],[0,1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-3],[-1,-2],[-1,-2],[-1,0],[0,-1],[-1,0],[0,2],[1,2],[-1,0],[1,2],[0,1],[0,1],[0,2],[-1,-1],[0,1],[0,-1],[-1,2],[1,1],[0,1],[-1,1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[-1,0],[0,-1],[0,-2],[1,0],[-1,0],[0,-2],[0,-1],[0,-2],[1,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[1,1],[0,-1],[0,-1],[0,-2],[0,-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],[0,-1],[0,1],[1,-1],[-1,-2],[0,-1],[0,-2],[0,-2],[-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,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-2],[0,1],[0,1],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[-1,-2],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-2],[0,1],[-1,0],[1,1],[-1,1],[0,-1],[0,1],[0,1],[-1,0],[-1,-1],[0,-4],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,1],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,0],[0,1],[0,1],[-1,-1],[-1,0],[0,1],[-1,1],[1,2],[0,2],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,-1],[0,2],[1,1],[0,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],[0,-1],[0,-1],[0,-2],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-2],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,1],[0,-1],[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],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[-1,0],[0,1],[1,1],[-1,0],[1,1],[-1,1],[1,0],[-1,1],[0,1],[1,0],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,-1],[0,2],[0,1],[0,3],[-1,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-3],[-1,-5],[0,-4],[-1,2],[-1,0],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-2],[1,0],[0,2],[0,1],[1,0],[0,-2],[0,1],[-1,-1],[1,0],[0,-2],[0,-1],[-1,0],[0,-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,1],[0,-1],[0,2],[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],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,-1],[-1,-1],[0,-2],[0,-1],[0,1],[0,1],[0,2],[0,-1],[1,2],[0,1],[0,1],[0,2],[-1,-1],[0,-1],[0,-1],[0,1],[-1,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,2],[-1,0],[0,1],[0,2],[0,1],[1,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,1],[0,2],[-1,-1],[0,-1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[-1,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,0],[-1,0],[0,-1],[0,-2],[0,-2],[1,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,1],[-1,2],[0,3],[-1,0],[-1,0],[0,1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-2],[0,-1],[-1,-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],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,1],[1,1],[0,1],[0,1],[-1,-2],[0,1],[0,-1],[0,1],[0,1],[0,2],[0,-1],[-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],[0,-1],[-1,-1],[0,-1],[0,1],[0,2],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,3],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[1,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[1,1],[0,1],[0,1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-4],[-1,0],[0,-1],[1,-1],[-1,-1],[0,1],[0,1],[0,-1],[-1,2],[-1,0],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,2],[0,1],[-1,1],[1,0],[0,2],[-1,2],[0,1],[0,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],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,2],[0,2],[0,1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[1,-1],[-1,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],[0,-1],[-1,0],[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,2],[0,-1],[0,-2],[-1,0],[0,1],[-1,-1],[1,-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],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[-1,1],[-1,0],[0,2],[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,-3],[0,1],[0,2],[0,1],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[-1,0],[0,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[-1,2],[0,1],[1,2],[0,1],[0,3],[0,2],[1,3],[0,4],[0,1],[0,1],[-1,0],[0,-3],[0,-1],[-1,-4],[0,-3],[0,-2],[-1,-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],[0,-2],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,-2],[1,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-3],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[1,2],[0,2],[0,1],[0,1],[0,2],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,-1],[-1,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[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,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,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,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[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],[-1,0],[0,-1],[-1,0],[0,-3],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,1],[0,-1],[-1,0],[1,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-2],[0,-1],[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],[-1,0],[0,1],[0,-1],[0,-1],[-1,1],[0,1],[-1,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[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],[-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,2],[-1,0],[0,1],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[0,-2],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,3],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[-1,1],[0,1],[0,1],[1,0],[-1,1],[0,-1],[-1,1],[0,-1],[1,0],[0,-1],[-1,1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[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],[0,1],[0,2],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,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],[0,-1],[1,0],[-1,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[-1,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],[1,1],[0,1],[1,0],[0,2],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[1,0],[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,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,0],[0,1],[0,1],[1,-1],[0,-1],[1,0],[0,1],[0,1],[1,-1],[-1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-3],[0,-1],[1,0],[0,-1],[1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,-1],[0,2],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-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,0],[0,1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,2],[-1,0],[-1,0],[-1,0],[1,2],[0,2],[0,1],[0,1],[1,1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,2],[0,2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[-1,1],[1,-1],[1,-1],[0,1],[0,1],[0,-1],[1,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[1,1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[1,0],[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],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,2],[0,1],[0,-1],[0,-2],[-1,-1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,2],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,2],[1,2],[0,1],[0,1],[1,1],[0,1],[1,3],[0,1],[-1,-1],[-1,0],[0,1],[1,1],[0,1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,-3],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[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],[0,-1],[1,0],[0,-1],[-1,1],[0,1],[0,1],[-1,1],[0,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,1],[0,1],[-1,2],[-1,2],[-1,4],[-1,3],[0,1],[-1,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,2],[0,1],[1,1],[0,2],[0,1],[0,2],[0,1],[0,2],[1,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[1,4],[0,2],[0,1],[0,2],[1,6],[0,4],[0,1],[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],[1,1],[0,1],[0,2],[1,0],[0,1],[0,1],[1,2],[0,2],[1,2],[0,4],[1,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,4],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,2],[1,1],[0,1],[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],[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,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[-1,-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],[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],[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],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,2],[0,1],[1,0],[0,1],[1,2],[0,1],[1,1],[1,0],[0,-1],[0,-1],[1,-3],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,2],[0,1],[0,1],[1,1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,2],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[1,1],[0,-1],[0,-1],[1,0],[2,0],[1,0],[0,-1],[0,-1],[1,0],[1,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[1,-1],[0,1],[0,-1],[1,-1],[0,-1],[0,1],[0,-2],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,3],[-1,1],[0,2],[-1,2],[0,1],[0,1],[0,-1],[-1,1],[-1,3],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,3],[-2,1],[0,2],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,1],[-1,2],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,2],[-1,3],[0,1],[0,1],[-1,1],[0,1],[0,2],[-1,2],[-3,7],[0,1],[-2,3],[0,1],[-1,0],[0,1],[0,1],[1,4],[0,4],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,4],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,4],[0,2],[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],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,3],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[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],[0,1],[0,1],[1,0],[1,1],[0,1],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,-2],[0,1],[-1,0],[-1,-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],[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],[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],[-1,0],[0,-1],[0,-1],[0,-5],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,-1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,2],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,4],[0,3],[0,1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,1],[0,2],[0,1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-2],[-1,-3],[0,-1],[0,-2],[0,-1],[-1,0],[1,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[0,1],[-1,0],[0,-2],[0,-3],[1,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-3],[0,-2],[1,-2],[0,-1],[0,-1],[0,-2],[1,-2],[0,-3],[0,-3],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[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,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-2],[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],[-1,1],[0,-1],[0,-1],[1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[-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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-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,-1],[0,-1],[-1,0],[-1,0],[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,0],[-1,0],[0,1],[-1,0],[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],[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],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-3],[-1,-3],[0,-2],[0,-1],[1,1],[1,1],[0,3],[0,3],[1,2],[1,-1],[0,-2],[0,1],[1,0],[1,2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[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],[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,-1],[1,0],[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,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,-2],[-1,-4],[0,-1],[0,-4],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-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,1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[1,1],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-3],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,1],[-1,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],[0,-1],[-1,0],[0,-1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[-1,-1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,2],[-1,0],[1,-1],[0,-2],[0,-2],[0,-1],[0,-4],[0,-2],[0,-3],[0,-3],[0,-2],[0,-2],[0,-3],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,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],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-2],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-2],[-1,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],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[0,1],[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,-2],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-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],[1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-3],[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],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[0,-1],[-1,0],[1,-1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-2],[0,-2],[-1,0],[0,-2],[1,1],[0,-2],[-1,-1],[0,-1],[0,-2],[1,1],[-1,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,3],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[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],[0,1],[1,0],[0,1],[0,-2],[1,-2],[0,-1],[0,-2],[0,-2],[1,-1],[0,-3],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,1],[1,3],[0,-2],[1,-1],[0,-1],[0,-3],[1,0],[0,-1],[1,-2],[0,-3],[0,-1],[1,0],[-1,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,2],[0,1],[1,3],[0,-2],[0,-4],[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],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[-1,-1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[0,-2],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-2],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,1],[0,-1],[0,-1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,-1],[-1,-1],[1,-2],[0,-1],[-1,0],[1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,0],[-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,-2],[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,-1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[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],[1,0],[-1,-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],[-1,0],[0,-1],[0,-1],[0,-1],[0,-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],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-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],[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,0],[0,1],[0,1],[0,2],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[-1,-1],[0,-1],[1,-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,-1],[0,-1],[0,-1],[0,-1],[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,0],[0,1],[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],[0,-1],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-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,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-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,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[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,1],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-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],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[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],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[-1,0],[-1,0],[0,-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],[-1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,-2],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,-2],[0,-1],[1,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[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],[0,-1],[-1,-1],[0,-1],[0,1],[-1,-1],[0,-1],[0,-1],[0,1],[-1,0],[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,-2],[0,-2],[-1,1],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[1,-3],[0,-3],[0,-2],[0,-1],[0,-1],[0,-2],[-1,1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[1,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[-1,-1],[-1,0],[-1,-2],[-1,-1],[0,-1],[1,0],[0,1],[1,-1],[0,-1],[-1,0],[1,-2],[1,-3],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[-1,-1],[1,-1],[-1,0],[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,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[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],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,2],[-1,1],[0,1],[0,2],[-1,0],[1,-2],[0,-2],[1,-2],[-1,0],[0,1],[0,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],[1,-1],[-1,-1],[0,-1],[1,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[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],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-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],[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,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-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,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,-4],[0,-1],[1,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-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],[0,1],[-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,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-2],[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],[-1,-1],[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],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,1],[-1,1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,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,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[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],[0,1],[0,1],[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],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[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],[1,0],[0,1],[0,1],[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],[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],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[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,0],[0,1],[0,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],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,2],[0,1],[1,0],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[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,-2],[0,1],[0,-1],[-1,-1],[1,0],[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,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,-2],[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,-2],[0,-2],[0,-1],[0,1],[-1,0],[0,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],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[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],[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,2],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,2],[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],[0,1],[1,0],[0,-1],[1,0],[-1,0],[1,1],[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],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[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],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[1,-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],[-1,-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],[-1,-1],[0,-1],[0,-1],[1,0],[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],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[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],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-4],[0,1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-2],[0,-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],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,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],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-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],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[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],[-1,0],[0,1],[-1,-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],[1,0],[0,-1],[0,1],[0,-2],[0,-1],[0,-2],[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],[-1,0],[0,-2],[0,-1],[0,-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],[-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],[1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[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,2],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-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,-2],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-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],[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,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[0,-2],[1,-1],[0,-2],[-1,-2],[1,-2],[0,-2],[0,-1],[0,-2],[-1,0],[-1,-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],[1,-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],[0,1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,-1],[0,-1],[0,-2],[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],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-2],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,1],[0,2],[0,1],[0,2],[0,2],[0,2],[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],[-1,0],[0,-1],[-1,0],[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],[-1,0],[-1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[-1,0],[-1,1],[-1,-1],[0,-1],[-1,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,2],[1,2],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,2],[0,1],[-1,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,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,1],[0,1],[0,1],[0,1],[1,1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,-1],[0,-2],[0,-2],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[0,2],[-1,0],[0,2],[-1,3],[0,1],[-1,0],[0,-1],[-1,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[1,-1],[0,-1],[-1,0],[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],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[1,2],[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,-2],[0,-2],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-3],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-3],[-1,-2],[0,-3],[0,-1],[0,-2],[-1,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-2],[0,-1],[0,1],[0,1],[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],[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],[-1,1],[0,1],[0,1],[1,-1],[0,-1],[1,1],[0,1],[-1,0],[-1,1],[0,1],[0,-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,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[1,0],[0,-1],[0,1],[0,-1],[1,-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],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[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,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[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],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[1,1],[0,1],[-1,0],[0,-3],[0,-1],[0,-3],[-1,-1],[-1,0],[0,-1],[-1,0],[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],[1,1],[-1,0],[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],[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],[0,1],[0,1],[-1,0],[0,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],[-1,0],[0,1],[0,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],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,-4],[-1,-2],[1,0],[-1,-1],[0,-2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[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],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[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],[1,0],[0,1],[0,1],[-1,1],[1,0],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-2,2],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,-2],[1,1],[0,1],[0,2],[-1,3],[0,2],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[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],[-1,0],[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,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[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],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,-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],[1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-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],[0,1],[1,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],[0,1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,-2],[1,0],[1,0],[0,-2],[1,1],[0,1],[-1,2],[0,1],[-1,2],[0,1],[0,2],[0,2],[0,5],[0,2],[0,4],[-1,4],[0,2],[1,4],[0,1],[-1,-3],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,-1],[-1,-2],[-1,0],[0,3],[0,1],[1,1],[2,6],[0,1],[3,10],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,4],[1,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[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,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[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],[0,-1],[1,0],[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],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[1,-1],[0,-1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[1,0],[0,1],[1,4],[0,2],[0,-3],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,1],[1,2],[0,2],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,3],[1,1],[0,3],[-1,1],[-1,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[1,3],[1,5],[1,0],[1,6],[0,4],[2,6],[0,1],[0,2],[1,2],[0,2],[2,8],[0,2],[1,4],[1,4],[1,2],[1,3],[1,2],[0,2],[1,4],[1,1],[1,2],[1,2],[1,1],[1,2],[0,2],[0,1],[0,2],[1,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,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,1],[1,2],[0,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,1],[0,1],[1,-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],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,-1],[0,-1],[0,-2],[1,-1],[-1,-1],[0,-1],[0,-2],[1,-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,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[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],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[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,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[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,-1],[1,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,-1],[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,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[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],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[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],[0,1],[0,1],[0,2],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[1,2],[0,1],[0,1],[0,1],[0,2],[1,1],[0,2],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,2],[0,5],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,3],[0,2],[1,2],[0,1],[1,2],[0,1],[1,1],[0,2],[0,1],[1,1],[0,2],[1,2],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,2],[0,1],[1,1],[0,1],[0,1],[1,2],[1,4],[1,3],[0,1],[0,1],[1,1],[0,2],[0,2],[1,3],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,2],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,5],[1,1],[0,2],[1,1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-4],[-1,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[1,2],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[0,-1],[0,1],[1,0],[-1,1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,-1],[0,-2],[0,1],[1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[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],[1,1],[0,2],[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],[-1,-1],[0,-1],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[1,-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],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-2],[1,-1],[0,1],[-1,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[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],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,5],[0,3],[0,3],[0,1],[0,1],[0,1],[0,3],[1,0],[0,4],[0,2],[1,5],[1,2],[0,3],[1,8],[3,13],[1,5],[1,4],[1,7],[2,3],[0,2],[1,1],[0,1],[0,1],[0,-1],[1,1],[1,2],[0,1],[1,1],[0,-1],[0,-1],[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],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[2,5],[0,2],[0,1],[0,1],[1,2],[0,3],[1,4],[0,1],[0,1],[1,1],[1,2],[0,1],[1,2],[0,1],[0,1],[0,1],[1,1],[0,2],[1,2],[1,2],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[1,2],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,0],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-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],[0,-1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,2],[-1,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-2],[1,0],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,2],[0,1],[1,1],[0,2],[0,1],[1,-1],[1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[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,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,3],[0,1],[-1,3],[0,2],[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,0],[0,1],[-1,-1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,10],[0,3],[0,2],[1,2],[0,2],[0,5],[1,6],[0,9],[0,6],[1,13],[0,1],[0,11],[0,8],[0,3],[0,1],[0,1],[0,1],[1,1],[0,2],[0,2],[0,1],[0,1],[1,5],[0,5],[0,1],[0,1],[0,-2],[0,-2],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,1],[0,2],[0,3],[0,1],[0,1],[1,1],[0,-1],[1,-1],[1,-2],[0,-1],[1,0],[0,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,0],[0,1],[-1,0],[0,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],[0,-1],[0,1],[-1,1],[0,2],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,2],[0,2],[-1,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[1,2],[0,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[1,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[1,2],[0,2],[0,2],[0,1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,2],[0,-1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,3],[1,2],[0,2],[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,2],[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,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,0],[1,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,2],[0,1],[-1,0],[0,1],[-1,0],[0,2],[0,1],[0,1],[-1,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],[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],[0,1],[0,2],[0,1],[0,1],[1,2],[0,-1],[0,3],[0,2],[1,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,4],[0,1],[0,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],[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,0],[0,1],[0,2],[1,0],[0,1],[0,2],[0,1],[1,1],[0,4],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[-1,1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-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],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[1,-6],[0,-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],[-1,0],[0,-2],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,0],[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,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-2],[-1,-2],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,0],[-1,-1],[0,-1],[0,-1],[-2,-2],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,3],[0,2],[-1,3],[0,4],[-1,2],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,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,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,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,-2],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[2,2],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-2],[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],[0,-1],[1,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,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,2],[0,1],[-1,2],[-1,1],[-1,0],[-1,0],[-1,0],[0,2],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,-3],[0,-1],[0,-3],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,-1],[0,-1],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,-1],[0,-1],[-1,-2],[-1,0],[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,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,2],[-1,2],[0,1],[0,2],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[0,2],[0,1],[-1,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],[0,2],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,-1]],[[559,7663],[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],[-1,-1],[0,1],[0,-1],[0,-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,-2],[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],[0,1],[0,1],[1,1],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,1]],[[568,7612],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[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],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-4],[0,-2],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[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],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,3],[0,1],[0,-1],[0,-1],[1,-1],[1,1],[0,1],[-1,0],[1,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[1,-1],[0,-1],[0,-3],[0,-1],[0,1],[0,3],[-1,2],[0,3],[-1,2],[0,3],[0,3],[0,1],[-1,3],[0,5],[-1,5],[-1,3],[0,3],[0,2],[-1,1],[0,4],[-1,3],[0,3],[-1,3],[0,3],[-1,3],[-1,2],[-1,3],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[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],[1,1],[0,2],[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],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-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],[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],[-1,0],[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,0],[-1,0],[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],[-1,0],[0,1],[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],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[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],[1,0],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[1,1],[-1,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[-1,2],[-1,1],[0,2],[1,0],[0,1],[0,1],[0,-1],[0,1],[-1,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-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],[0,-2],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[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]],[[510,7668],[0,-1],[0,1],[0,1],[0,1],[-1,0],[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],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-2,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-2],[2,2],[1,0],[0,-1],[-3,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-3],[0,-1],[0,-1],[2,3],[0,-1],[-2,-4],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-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],[-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,1],[1,1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,-1],[1,-1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,-1],[1,-1],[0,1],[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],[0,1],[-1,0],[0,1],[0,1],[1,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],[1,0],[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,0],[0,1],[0,1],[0,1],[-1,0],[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,2],[1,1],[0,2],[0,1],[-1,1],[0,1],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,2],[0,1],[-1,2],[0,2],[0,2],[0,1],[1,1],[0,-1],[0,-1],[0,-2],[-1,-1],[1,-1],[0,-1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1]],[[490,7713],[0,1],[-1,1],[-1,3],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,1],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,2],[-1,2],[0,2],[0,1],[0,1],[-1,2],[0,2],[0,2],[-1,1],[0,1],[1,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[-1,6],[0,3],[0,3],[-1,2],[0,2],[0,1],[0,1],[0,1],[1,1],[0,3],[0,1],[0,2],[0,1],[1,1],[0,-2],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[-1,0],[0,2],[1,2],[0,1],[0,1],[0,-1],[0,1],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[1,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,3],[0,2],[0,2],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[1,2],[0,1],[0,1],[0,2],[0,1],[-1,3],[0,4],[0,1],[-1,2],[0,2],[-1,1],[0,2],[0,2],[-1,1],[0,1],[0,2],[0,3],[-1,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[0,1],[0,2],[-1,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,0],[0,2],[0,2],[-1,3],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,6],[0,2],[0,2],[-1,3],[0,1],[-1,2],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[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],[1,0],[-1,0],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[0,-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],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,-2],[0,-2],[0,-1],[-1,-2],[1,0],[0,-1],[0,-1],[-1,0],[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,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[2,4],[0,4],[0,11],[1,2],[0,3],[1,2],[0,1],[0,1],[0,2],[0,1],[0,1],[1,4],[0,1],[0,1],[0,3],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,2],[1,3],[0,1],[0,1],[0,1],[-1,1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-3],[-1,-7],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,-1],[0,-2],[0,-1],[0,-2],[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],[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],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[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],[-1,0],[0,1],[0,-1],[0,-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],[0,-1],[0,-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],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-4],[0,1],[0,-1],[0,1],[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],[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],[0,-1],[0,-2],[1,-1],[0,-2],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-3],[0,-4],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-4],[-3,-4],[-1,-1],[-2,-5],[0,-1],[-4,-5],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-2],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-2,-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],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,2],[0,2],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-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],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,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],[-1,1],[0,2],[0,2],[0,1],[-1,1],[0,2],[0,1],[1,-1],[0,-1],[1,0],[-1,1],[0,1],[0,1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,2],[-1,1],[0,1],[0,2],[-1,1],[0,2],[0,2],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[1,1],[-1,2],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-2],[-1,1],[0,1],[0,2],[1,2],[0,1],[0,1],[1,1],[-1,-2],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,3],[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,2],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[-1,0],[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,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[1,1],[1,2],[1,0],[0,-1],[1,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[-1,1],[0,-1],[0,-1],[1,-1],[0,1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-2],[1,-1],[0,-3],[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,0],[1,0],[1,1],[1,1],[0,1],[1,2],[1,2],[0,1],[0,1],[1,3],[1,1],[0,2],[1,2],[0,2],[1,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,-1],[1,0],[0,1],[0,1],[-1,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,2],[0,1],[1,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[0,1],[1,-2],[0,1],[0,1],[1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,-1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,-1],[0,1],[-1,1],[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],[0,1],[0,1],[1,0],[-1,-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],[1,0],[0,-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],[-1,1],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,3],[0,-1],[0,-1],[1,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,-1],[-1,-1],[0,1],[0,1],[0,-1],[-1,1],[0,1],[-1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,2],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-2],[1,2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,3],[-1,0],[-1,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,0],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-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],[-1,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,3],[0,1],[0,1],[0,1],[-1,0],[0,1],[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],[-1,0],[0,-1],[1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[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],[0,1],[-1,0],[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],[1,1],[1,0],[0,-1],[0,1],[0,-1],[1,1],[0,-1],[1,0],[0,1],[1,1],[0,1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,2],[1,1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[1,-1],[1,1],[0,1],[0,2],[-1,1],[0,2],[0,1],[1,-2],[0,-1],[1,0],[0,1],[1,-1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[1,-1],[0,1],[1,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,-1],[0,1],[0,2],[-1,0],[0,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-2],[0,1],[-1,1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[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],[0,-1],[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],[-1,0],[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,2],[0,1],[0,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],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[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],[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],[-1,-1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,2],[1,1],[1,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[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],[1,0],[0,1],[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],[1,-1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,2],[1,-1],[0,1],[1,1],[0,-1],[1,1],[0,1],[0,2],[0,2],[0,1],[1,0],[1,1],[0,1],[0,2],[1,0],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[1,2],[0,2],[-1,1],[-1,2],[-1,1],[0,1],[-1,2],[-1,1],[0,2],[-1,1],[0,-1],[0,-2],[2,-2],[0,-1],[1,-3],[1,-1],[1,-1],[-1,-1],[0,-2],[0,-1],[-1,0],[1,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-4],[0,-1],[-1,0],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[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],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[-1,1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[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],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-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,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-7],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[-2,0],[0,1],[0,1],[0,-2],[-1,-1],[-1,2],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,4],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[-1,5],[0,3],[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],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,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],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,2],[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],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,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],[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],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,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],[-1,1],[0,-1],[0,1],[0,1],[0,-1],[-1,1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,-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,2],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[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],[1,-1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[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],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[-1,1],[0,1],[0,-1],[0,1],[0,-1],[-1,1],[0,-1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,1],[0,-1],[0,1],[0,1],[0,1],[-1,3],[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],[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],[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],[0,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,1],[1,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],[-1,1],[0,1],[0,2],[-1,2],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,2],[0,2],[1,3],[1,3],[0,2],[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],[0,2],[1,3],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,2],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,1],[0,-1],[0,-2],[-1,-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],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[1,1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[0,-2],[0,-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],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,2],[0,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,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],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,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],[0,-1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,2],[0,2],[0,1],[0,1],[1,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],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[-1,0],[1,2],[1,1],[1,1],[0,2],[1,3],[0,3],[1,3],[1,3],[0,2],[1,2],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-2],[1,-3],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,-2],[1,-3],[1,-5],[0,-4],[1,-5],[1,-3],[0,-2],[1,-4],[0,-2],[1,-2],[0,-1],[0,2],[0,-2],[0,-2],[1,-2],[0,-1],[-1,0],[0,-1],[1,-1],[0,1],[0,2],[0,2],[0,1],[0,-3],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,2],[0,1],[-1,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,2],[-1,3],[0,2],[-1,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[1,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,5],[0,1],[-1,1],[0,1],[0,1],[-2,4],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,3],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[1,-1],[0,-2],[1,-1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[-1,1],[0,2],[1,1],[0,1],[0,1],[0,2],[-1,2],[1,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[2,2],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,2],[1,2],[0,1],[2,2],[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,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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[1,2],[0,2],[1,2],[0,1],[1,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[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],[1,1],[0,1],[0,1],[1,-1],[0,1],[-1,1],[1,1],[0,3],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[-1,0],[0,1],[1,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],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[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],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,1],[0,-1],[0,-1],[-1,0],[0,-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],[0,-1],[0,-1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[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],[1,1],[0,1],[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],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,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,0],[0,1],[0,-1],[1,0],[1,1],[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],[1,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[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],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[1,3],[0,1],[1,1],[0,3],[1,2],[0,4],[0,1],[1,1],[0,2],[0,1],[1,3],[0,1],[0,1],[1,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,4],[-1,3],[0,2],[0,1],[0,2],[0,2],[0,2],[-1,1],[0,1],[0,2],[0,3],[-1,2],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,2],[0,1],[-1,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[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,1],[-1,5],[0,2],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,1],[-1,4],[0,2],[-3,8],[0,1],[0,1],[0,-1],[1,0],[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],[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],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[-1,1],[1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,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,2],[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],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,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],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[0,-2],[-1,2],[0,2],[1,0],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[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,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,2],[-1,1],[1,0],[0,1],[-1,1],[1,0],[0,1],[-1,1],[0,2],[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],[-1,4],[1,0],[0,1],[0,-2],[1,0],[0,1],[-1,2],[-1,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,1],[0,1],[-1,1],[0,2],[-1,2],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,-1],[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,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[-1,2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-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,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1]],[[505,8797],[0,1],[0,-1],[0,-2],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[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],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,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],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,3],[1,2],[0,-1],[0,-1],[-2,-4],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,1],[-1,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[1,1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[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,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-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,-2],[0,-2],[0,-1],[-1,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,-2],[0,-1],[-1,0],[0,-2],[0,-2],[-1,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,3],[0,2],[0,2],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[-1,1],[1,0],[-1,2],[0,1],[-1,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,2],[-1,0],[0,1],[-1,0],[-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],[-1,0],[0,1],[-1,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],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[0,-1],[0,-2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,1],[0,-1],[0,-1],[0,-3],[1,-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],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[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,2],[-1,1],[-1,2],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,2],[-1,2],[-1,2],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,1],[0,-1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-2,-3],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[1,1],[0,-1],[0,1],[1,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],[1,0],[0,1],[0,1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-2,-1],[-1,-2],[-1,-2],[-1,-3],[-1,0],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[-1,0],[0,-1],[1,-3],[0,-2],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[2,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,-1],[0,-1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,2],[-1,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,1],[0,2],[0,2],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,2],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,2],[1,1],[0,2],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,2],[0,1],[0,1],[-1,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],[1,-2],[0,-3],[1,-1],[-1,0],[0,1],[0,2],[-1,2],[-1,3],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,2],[0,2],[-1,1],[-1,1],[-1,2],[0,1],[-1,2],[0,2],[-1,3],[0,2],[-1,3],[0,3],[0,1],[0,1],[0,5],[0,4],[1,3],[0,2],[0,1],[1,1],[0,1],[0,2],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-3],[0,-2],[-1,-1],[0,-5],[0,-1],[0,-1],[1,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,2],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[-1,1],[0,1],[0,1],[1,0],[1,-1],[0,-2],[0,-1],[0,1],[1,-1],[0,1],[0,-1],[1,0],[0,-1],[0,1],[1,-1],[2,0],[0,1],[1,0],[1,1],[0,1],[1,-1],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[1,1],[1,1],[1,0],[0,1],[0,1],[1,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[1,1],[1,1],[0,1],[1,1],[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,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[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],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[0,-1],[1,-2],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,2],[0,3],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,-1],[1,1],[0,1],[1,2],[-1,1],[0,1],[0,1],[0,1],[0,-1],[0,2],[0,1],[0,1],[0,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],[1,1],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,1],[-1,-1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,-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],[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,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,2],[-1,0],[0,2],[0,2],[-1,1],[0,-1],[-1,1],[0,1],[0,1],[-1,1],[-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],[-1,1],[0,2],[-1,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],[0,-1],[0,-1],[1,-2],[0,-1],[-1,2],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,-2],[0,1],[0,1],[0,1],[-1,1],[0,-1],[-1,1],[0,1],[-1,0],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,1],[0,-1],[-1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,1],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[-2,0],[-1,2],[-1,0],[-1,0],[-1,1],[0,2],[-2,2],[-1,1],[-1,1],[-1,1],[0,1],[-2,0],[0,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,2],[-1,0],[0,2],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-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],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,2],[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,2],[0,1],[1,0],[0,1],[0,2],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,2],[1,2],[2,1],[-1,0],[0,-1],[-1,-2],[0,-2],[0,-1],[0,1],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[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,2],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,-1],[1,0],[1,0],[0,-1],[0,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,2],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,-1],[0,1],[0,1],[1,0],[0,1],[1,2],[2,4],[2,4],[2,3],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-2],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,2],[1,1],[1,1],[0,1],[1,1],[1,1],[0,3],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,4],[0,1],[1,1],[0,1],[1,0],[0,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[1,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[1,2],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,2],[1,1],[1,1],[1,1],[0,2],[1,2],[1,1],[1,0],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-3],[0,-1],[-1,2],[0,2],[0,1],[-1,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,1],[0,1],[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,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,-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],[0,1],[0,1],[1,1],[0,1],[1,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[2,2],[2,4],[1,2],[0,1],[1,2],[1,0],[1,1],[0,1],[1,0],[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],[0,-1],[0,-1],[0,-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],[0,1],[0,1],[0,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],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,2],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[-1,-2],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[0,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,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,-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],[-1,1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-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,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-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],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[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],[1,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,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],[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,-2],[0,-2],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,-1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[1,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],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[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],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-2],[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],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,-1],[1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[1,0],[0,-1],[1,0],[1,-2],[-1,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,-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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,-1],[0,-1],[0,1],[1,0],[1,0],[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],[1,0],[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],[-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],[3,7],[0,2],[1,2],[0,3],[0,2],[0,3],[1,1],[0,1],[0,1],[0,1],[0,1],[1,3],[0,2],[0,1],[1,1],[0,1],[1,2],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[1,-1],[1,-1],[1,0],[2,2],[0,1],[1,1],[1,1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[-1,0],[0,-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,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[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,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[-1,2],[0,1],[0,1],[-1,0],[0,4],[-1,2],[0,1],[-1,1],[0,1],[-2,1],[-1,1],[0,1],[-1,0],[0,1],[-1,2],[-2,0],[-1,1],[0,1],[-2,1],[0,1],[-2,-1],[-1,1],[-2,0],[0,-1],[-1,-2],[-1,-2],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[-1,-1],[-1,0],[-1,0],[0,3],[0,2],[0,3],[0,2],[0,1],[-1,-1],[0,2],[1,2],[0,5],[1,5],[0,4],[0,4],[0,1],[0,4],[0,1],[0,3],[0,3],[0,2],[0,2],[-1,3],[0,2],[-1,1],[0,3],[-1,0],[0,2],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,3],[0,3],[-1,2],[0,3],[-1,2],[0,2],[-1,2],[0,1],[-1,0],[0,1],[-1,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],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,2],[-1,2],[0,2],[0,2],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[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],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-2],[0,-2],[1,-1],[0,-2],[1,-2],[0,-2],[1,-1],[0,-3],[0,-2],[1,-1],[0,-1],[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,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[1,-1],[0,-3],[1,-2],[0,-3],[1,-3],[0,-2],[1,-1],[1,-3],[1,-2],[1,-3],[1,-2],[1,-1],[1,-1],[1,-4],[1,-1],[0,-1],[1,-1],[0,1],[1,0],[1,1],[0,1],[1,0],[1,2],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[2,3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[1,-1],[0,-2],[1,-2],[0,-1],[1,-2],[0,-2],[0,-2],[1,0],[1,-2],[1,-1],[1,-2],[1,-4],[0,-1],[0,-1],[1,0],[1,-1],[1,1],[1,0],[0,-1],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,2],[0,1],[1,0],[1,0],[1,0],[1,1],[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],[1,1],[-1,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],[-1,2],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,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],[1,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[0,-2],[-1,0],[0,1],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,0],[0,2],[-1,-1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-2,2],[-1,0],[-1,3],[-1,3],[0,2],[-1,2],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-4],[-1,-1],[0,-1],[0,-3],[0,-2],[-1,0],[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,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[1,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,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,3],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,1],[0,1],[0,2],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,2],[0,2],[0,2],[0,1],[0,2],[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],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[1,2],[0,2],[1,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],[0,1],[1,1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[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,1],[0,-1],[-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],[-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],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[1,-1],[-1,-1],[-1,0],[-1,-1],[0,1],[-1,-1],[-2,-2],[-1,0],[-2,-3],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,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],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,1],[-1,0],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[1,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,1],[0,-1],[0,1],[0,-1],[1,-2],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-2,2],[0,1],[-2,1],[-2,3],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-2,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,4],[0,1],[0,3],[0,1],[0,1],[0,5],[0,4],[0,1],[0,2],[0,2],[0,1],[-1,5],[0,1],[0,2],[0,1],[0,1],[0,2],[0,3],[-1,1],[0,2],[0,2],[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],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,5],[0,3],[0,4],[-1,1],[0,2],[0,1],[0,1],[0,1],[-1,3],[0,1],[0,1],[0,1],[-1,5],[-1,3],[0,2],[0,1],[0,1],[-1,1],[0,3],[-1,2],[0,2],[0,1],[-1,1],[0,3],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,2],[0,1],[-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],[-1,0],[0,1],[-1,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,2],[-1,1],[-1,2],[-1,2],[-1,3],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,3],[-1,1],[-2,1],[-2,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,3],[-1,2],[-1,0],[-1,8],[-1,6],[-1,2],[-1,1],[0,1],[0,1],[-2,3],[-1,2],[-1,2],[-1,2],[-1,1],[-1,1],[-1,2],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-2,2],[-1,0],[-2,0],[-1,-1],[0,1],[0,1],[1,1],[1,1],[1,2],[1,1],[1,1],[3,3],[1,2],[2,2],[1,0],[0,-1],[-2,-2],[-1,0],[0,-1],[0,-1],[-2,-2],[-2,-2],[-2,-1],[0,-1],[0,-1],[2,-1],[0,-1],[1,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,2],[-1,1],[-1,0],[0,-1],[0,1],[1,1],[1,0],[1,2],[1,1],[0,2],[1,0],[0,-2],[0,1],[1,-1],[0,-1],[0,1],[-1,2],[0,2],[0,1],[0,-1],[1,-1],[0,1],[0,1],[0,-1],[0,-1],[1,-2],[0,-1],[0,2],[1,0],[0,-2],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[1,1],[0,1],[-1,-1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,2],[0,2],[0,1],[0,1],[-1,-1],[-1,-1],[0,1],[1,1],[1,2],[0,3],[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],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,3],[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,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[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,-1],[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,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[2,2],[2,0],[1,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1],[1,1],[1,0],[1,4],[1,1],[0,2],[1,2],[1,2],[1,2],[1,1],[1,2],[1,2],[1,2],[0,1],[0,1],[0,1],[1,0],[0,2],[1,1],[1,4],[1,2],[0,2],[0,2],[1,2],[0,1],[1,2],[1,3],[1,5],[1,1],[0,1],[0,1],[0,2],[1,1],[0,2],[1,2],[0,3],[0,1],[1,2],[0,2],[0,2],[1,2],[0,2],[0,4],[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,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[1,1],[1,1],[0,1],[0,2],[0,1],[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],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[0,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],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,-2],[0,-1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,2],[0,2],[0,1],[1,2],[0,1],[1,2],[0,1],[1,1],[0,1],[0,-1],[0,1],[1,1],[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,2],[0,2],[1,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,-1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,2],[0,2],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,2],[1,1],[1,2],[1,0],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[0,1],[0,1],[1,2],[0,1],[1,1],[0,3],[1,2],[0,1],[0,2],[1,3],[1,1],[0,1],[1,1],[0,-1],[0,-1],[0,1],[-1,-1],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-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],[1,-1],[0,1],[0,2],[0,1],[0,-1],[1,-1],[1,0],[1,-2],[0,-2],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[0,-1],[0,-1],[0,-2],[1,-1],[1,-1],[1,-1],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[0,2],[-1,0],[-1,-1],[0,-2],[1,-2],[1,-2],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[0,-1],[1,0],[0,-1]],[[476,9769],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,1],[-1,1],[0,1],[1,-1],[0,-1],[0,1],[0,1],[1,1],[0,1],[1,-1],[1,-1],[1,1],[1,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,-1],[0,-2],[0,-1],[1,-1],[-1,-1],[1,0],[0,2],[-1,1],[1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[1,-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],[0,1],[1,-1],[0,2],[1,1],[1,1],[0,1],[1,1],[1,2],[1,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,2],[1,1],[0,1],[1,-1],[0,-2],[1,0],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,2],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,3],[1,-1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[2,3],[0,2],[0,-1],[-2,-3],[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],[-1,0],[1,2],[1,2],[1,2],[1,0],[1,2],[2,4],[1,1],[1,3],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1],[1,3],[0,1],[1,1],[1,4],[1,3],[1,2],[1,2],[0,1],[0,1],[2,4],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[1,1],[0,-2],[0,-2],[1,0],[1,0],[1,3],[1,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-3],[-1,0],[0,-1],[1,-1],[0,1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,1],[0,-1],[1,0],[1,1],[0,-1],[0,1],[1,-1],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,0],[0,-2],[0,-1],[0,-2],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-2],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[1,-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],[-1,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,5],[-1,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,2],[0,1],[0,3],[0,2],[1,2],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[0,2],[0,1],[1,0],[0,1],[1,0],[0,-3],[0,-1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,-1],[0,1],[0,1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[1,1],[-1,0],[-1,0],[0,-1],[-1,1],[1,0],[0,1],[-1,-1],[0,-2],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,3],[-1,1],[0,3],[0,1],[-1,1],[0,3],[0,1],[0,2],[0,1],[0,-1],[1,0],[0,1],[-1,1],[0,1],[0,-1],[0,1],[-2,4],[0,1],[-1,1],[-1,1],[-1,0],[-1,-1],[-1,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[1,0],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,2],[1,2],[0,1],[1,1],[0,1],[1,2],[1,2],[1,3],[1,3],[2,4],[0,2],[1,2],[2,3],[2,2],[0,1],[1,1],[2,1],[2,2],[1,2],[1,1],[1,1],[1,1],[1,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],[-1,-1],[0,-1],[1,1],[1,-1],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,1],[0,-1],[1,-4],[0,-3],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,1],[0,2],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[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,-1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,2],[0,-1],[1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[1,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],[1,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[0,4],[0,1],[0,1],[0,2],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,1],[1,2],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[0,-1],[0,1],[-1,1],[0,2],[1,0],[1,-1],[1,-1],[1,-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],[0,-1],[1,0],[1,1],[0,1],[1,0],[0,-1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[-1,1],[-3,1],[0,1],[-1,1],[1,0],[0,-1],[3,-2],[3,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[2,3],[1,2],[1,2],[1,3],[1,2],[1,2],[0,2],[1,2],[0,1],[2,5],[1,4],[0,1],[3,10],[0,2],[1,2],[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],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[2,8],[1,2],[1,3],[1,3],[1,4],[0,1],[1,1],[0,1],[0,1],[1,0],[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,1],[1,1],[1,1],[0,1],[1,0],[1,4],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[-1,2],[-2,3],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,1],[0,-3],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[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],[1,0],[-1,-1],[0,-1],[-1,0],[1,0],[0,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],[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,-2],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[1,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,4],[0,-1],[0,-3],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,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],[0,1],[0,1],[0,-1],[1,-1],[0,-1],[1,1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,0],[-1,1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[0,-2],[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],[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],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,1],[-1,1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,0],[0,1],[0,-1],[-1,1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[1,1],[1,2],[0,-1],[1,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,-1],[0,1],[1,1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,-1],[0,-1],[0,1],[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,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[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],[1,0],[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],[1,0],[0,-1],[-1,0],[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],[0,1],[-1,-1],[1,0],[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],[0,1],[1,0],[1,0],[0,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,1],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[1,0],[0,2],[0,1],[0,1],[-1,2],[0,2],[0,1],[0,1],[1,1],[0,1],[0,2],[1,0],[0,-1],[1,1],[0,1],[1,-1],[1,0],[1,0],[1,-1],[0,1],[0,1],[-1,1],[0,1],[1,-1],[0,-2],[1,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,-3],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,-2],[0,-1],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[0,1],[-1,0],[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,0],[1,1],[-1,0],[0,1],[1,1],[0,2],[-1,1],[0,1],[0,2],[0,3],[0,3],[0,2],[0,2],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,1],[1,1],[1,2],[0,1],[1,-1],[0,-4],[1,-2],[0,-1],[1,0],[0,2],[0,2],[0,3],[0,2],[0,2],[-2,5],[-1,0],[0,1],[1,3],[1,2],[1,1],[0,1],[1,0],[0,-2],[0,-3],[1,-1],[0,-1],[0,-2],[1,-4],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,3],[0,2],[0,1],[-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,-2],[1,-2],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-2],[1,2],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[1,2],[0,-2],[0,-2],[1,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[1,-1],[0,-2],[0,-1],[1,1],[0,2],[0,2],[-1,1],[0,1],[-1,0],[0,2],[0,1],[0,-1],[1,0],[1,1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[-2,3],[2,-2],[3,-9],[0,-1],[1,0],[1,-3],[1,-4],[1,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-3],[0,-6],[0,-1],[0,-2],[-1,0],[0,-1],[-1,0],[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],[0,1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[-1,1],[1,1],[0,1],[0,-2],[1,0],[0,1],[0,-2],[0,-1],[1,-3],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[1,0],[0,-1],[3,2],[2,-1],[1,-2],[1,-2],[0,-2],[0,-1],[-1,0],[0,-2],[1,0],[1,-1],[0,-1],[1,0],[0,1],[1,1],[1,2],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,2],[0,1],[1,1],[0,2],[0,2],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[2,2],[1,0],[1,0],[2,-1],[2,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[-1,1],[1,0],[0,1],[0,-1],[1,1],[1,0],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[1,0],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[0,2],[0,1],[0,1],[0,-1],[1,-1],[0,-1],[1,0],[2,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,1],[0,2],[0,1],[0,2],[1,-1],[0,-2],[0,-1],[0,-4],[1,-10],[1,-8],[1,-1],[0,1],[1,1],[0,1],[0,1],[0,-1],[-1,-1],[0,1],[-1,1],[0,4],[-1,11],[0,3],[0,1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,3],[-1,1],[0,1],[-1,1],[0,-1],[-1,0],[0,1],[1,1],[2,-1],[1,0],[0,1],[1,-1],[1,0],[0,-1],[3,-3],[1,-1],[1,-1],[1,-1],[2,-2],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-3],[0,-3],[-1,-1],[0,-2],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,0],[-1,0],[0,-1],[1,-6],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,2],[0,1],[-1,0],[1,-3],[0,-1],[-1,0],[0,-1],[1,1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[1,-1],[0,-3],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,1],[0,1],[0,1],[1,0],[0,-2],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,-1],[-1,-3],[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,0],[0,-1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,1],[0,1],[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],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[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,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,-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],[0,-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],[0,1],[0,1],[1,-1],[0,1],[1,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,2],[-1,-1],[0,-1],[2,-1],[0,-1],[1,0],[1,3],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,-1],[-1,0],[-1,-2],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[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],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,-1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,3],[0,1],[0,2],[0,1],[1,2],[0,1],[1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[-1,-4],[0,-2],[1,0],[0,2],[0,4],[0,3],[-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],[-1,0],[0,3],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[2,1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,1],[1,0],[1,-6],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,2],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,2],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[1,1],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[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,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],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[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,0],[1,0],[0,-1],[0,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],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,-2],[1,0],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[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],[0,-1],[0,-1],[0,1],[1,0],[0,1],[-1,-1],[0,2],[1,0],[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],[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],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-3],[0,1],[0,2],[1,0],[0,1],[1,0],[0,1],[1,1],[0,-1],[1,1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-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],[1,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,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],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-2],[0,-1],[1,1],[0,-1],[0,-1],[1,0],[0,1],[1,-1],[-1,0],[0,-1],[-1,0],[1,-1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[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],[1,0],[0,-1],[1,0],[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],[0,-1],[-1,-1],[1,-1],[0,-2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,-1],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[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],[1,0],[0,1],[0,1],[1,1],[1,-1],[0,1],[1,0],[0,2],[0,-1],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,-1],[1,2],[1,0],[1,-1],[1,0],[0,1],[1,-1],[1,0],[0,-1],[0,1],[1,-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],[0,-1],[1,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],[0,-1],[0,-1],[0,1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[4,-8],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,1],[-1,2],[0,-1],[0,-2],[1,0],[1,-2],[1,0],[0,1],[1,1],[0,1],[0,3],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[1,0],[0,-1],[2,-2],[1,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,-1],[0,-1],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[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],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[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],[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,2],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,1],[2,1],[1,0],[1,1],[1,0],[1,1],[0,-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],[0,1],[1,0],[0,1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,2],[0,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],[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,1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,1],[-1,0],[1,1],[0,1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-3],[0,-1],[1,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[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],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[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],[0,-1],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[1,-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],[1,-2],[0,-1],[0,-1],[0,-3],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,-2],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-2],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[-1,-3],[1,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-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],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,-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,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[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],[0,1],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,2],[0,2],[1,2],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,-2],[0,1],[0,1],[1,0],[2,-1],[0,1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-5],[0,-5],[0,-2],[0,-5],[0,-4],[0,-10],[0,-11],[0,-6],[0,-3],[0,-3],[0,-1],[0,-9],[0,-8],[0,-7],[0,-2],[0,-4],[0,-2],[0,-1],[0,-1],[0,-3],[0,-4],[0,-5],[0,-1],[0,-5],[0,-2],[0,-1],[0,-4],[0,-5],[0,-1],[0,-1],[0,-8],[0,-4],[0,-1],[0,-4],[0,-10],[0,-2],[0,-1],[0,-4],[0,-11],[0,-6],[0,-4],[0,-1],[0,-3],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-8],[0,-6],[0,-6],[0,-4],[0,-1],[0,-12],[0,-8],[0,-7],[0,-8],[0,-17],[0,-1],[0,-5],[0,-8],[0,-9],[0,-6],[0,-1],[0,-2],[0,-1],[0,-7],[0,-1],[0,-5],[0,-3],[0,-10],[0,-4],[0,-4],[0,-6],[0,-3],[0,-1],[0,-3],[0,-11],[0,-3],[0,-10],[0,-3],[0,-9],[0,-5],[0,-10],[0,-1],[0,-3],[0,-6],[0,-2],[0,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-6],[0,-6],[0,-4],[0,-2],[0,-6],[0,-10],[0,-10],[0,-2],[0,-5],[0,-10],[0,-9],[0,-6],[0,-5],[0,-5],[0,-3],[0,-7],[0,-3],[0,-8],[0,-8],[0,-5],[0,-8],[0,-12],[0,-4],[0,-9],[0,-6],[0,-1],[0,-5],[0,-4],[0,-10],[0,-5],[0,-2],[0,-6],[0,-11],[0,-8],[0,-4],[0,-3],[0,-5],[0,-1],[0,-4],[0,-2],[0,-2],[0,-1],[0,-5],[0,-9],[0,-4],[0,-7],[0,-2],[0,-7],[0,-2],[0,-7],[0,-3],[0,-1],[0,-4],[0,-6],[0,-1],[0,-2],[0,-5],[0,-5],[0,-8],[0,-6],[0,-1],[0,-1],[0,-1],[0,-10],[0,-9],[0,-5],[0,-3],[0,-4],[0,-1],[0,-3],[0,-2],[0,-6],[0,-1],[0,-9],[0,-8],[0,-4],[0,-2],[0,-10],[0,-12],[0,-9],[0,-13],[0,-11],[0,-6],[0,-1],[0,-14],[0,-6],[0,-1],[0,-2],[0,-6],[0,-7],[0,-4],[0,-3],[0,-9],[0,-5],[0,-1],[0,-4],[0,-2],[0,-3],[0,-5],[0,-5],[0,-3],[0,-3],[0,-6],[0,-1],[0,-3],[0,-4],[0,-9],[0,-9],[0,-4],[0,-2],[0,-4],[0,-1],[0,-2],[0,-4],[0,-1],[0,-7],[0,-6],[0,-11],[0,-1],[0,-1],[0,-4],[0,-1],[0,-4],[0,-1],[0,-2],[0,-6],[0,-4],[0,-3],[0,-6],[0,-7],[0,-5],[0,-5],[0,-1],[0,-10],[0,-8],[0,-5],[0,-10],[0,-7],[0,-8],[0,-1],[0,-6],[0,-4],[0,-7],[0,-3],[0,-6],[0,-9],[0,-8],[0,-7],[0,-9],[0,-5],[0,-8],[0,-8],[0,-4],[0,-6],[0,-9],[0,-9],[0,-2],[0,-9],[0,-9],[0,-4],[0,-2],[0,-1],[0,-8],[0,-5],[0,-11],[0,-5],[0,-10],[0,-7],[0,-4],[0,-6],[0,-3],[0,-6],[0,-2],[0,-10],[0,-3],[0,-2],[0,-8],[0,-18],[0,-1],[0,-14],[0,-11],[0,-1],[0,-6],[0,-3],[0,-1],[0,-7],[0,-3],[0,-3],[0,-2],[0,-9],[0,-2],[0,-5],[0,-7],[0,-2],[0,-9],[0,-6],[0,-10],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-10],[0,-1],[0,-2],[0,-5],[0,-5],[0,-11],[0,-6],[0,-8],[0,-38],[0,-5],[0,-3],[0,-3],[0,-2],[0,-4],[0,-13],[0,-4],[0,-5],[0,-4],[0,-16],[0,-2],[0,-7],[0,-2],[0,-2],[0,-1],[0,-6],[0,-2],[0,-1],[0,-9],[0,-5],[0,-5],[0,-1],[0,-5],[0,-54],[0,-10],[0,-6],[2,-2],[2,-4],[2,-2],[0,-1],[2,-1],[0,-1],[1,-1],[4,-4],[1,8],[1,8],[1,-2],[8,-14],[2,-3],[1,-3],[1,-1],[0,1],[8,27],[17,4],[0,-7],[-3,-43],[4,-16],[0,-1],[7,-13],[3,-4],[0,-11],[1,-7],[1,-7],[3,-10],[12,-42],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-2],[0,-3],[0,-1],[1,-3],[1,-1],[1,-3],[1,-5],[1,-3],[1,-4],[0,-1],[1,-2],[0,-2],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-4],[0,-1],[2,-20],[0,-4],[0,-3],[1,-20],[-1,-15],[3,1],[4,15],[0,2],[2,2],[1,4],[3,5],[1,3],[2,5],[1,1],[2,5],[0,3],[1,2],[1,0],[2,0],[1,0],[2,1],[1,0],[2,17],[0,3],[1,2],[0,5],[0,1],[0,1],[0,9],[0,1],[0,2],[0,3],[0,4],[0,2],[0,5],[3,-3],[0,1],[2,2],[0,5],[1,6],[0,3],[0,4],[-3,7],[2,3],[0,1],[1,1],[0,1],[2,2],[3,2],[1,0],[0,1],[1,0],[1,1],[3,4],[0,1],[1,3],[1,1],[1,2],[0,1],[1,0],[1,3],[6,10],[1,-3],[0,-1],[0,-1],[1,-5],[1,-1],[1,-3],[1,-2],[0,-1],[1,-1],[0,-1],[0,-2],[1,-3],[0,-1],[1,-6],[0,-1],[1,0],[1,0],[0,-1],[0,-2],[1,-5],[1,-1],[0,-2],[0,-4],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[-1,-2],[-1,-2],[0,-3],[3,-7],[0,-2],[-1,-5],[0,-1],[1,-4],[0,-1],[0,-2],[0,-2],[1,-3],[3,-3],[2,-1],[2,-2],[0,-2],[0,-2],[1,-3],[0,-3],[3,-12],[2,0],[1,-8],[2,-9],[-1,-11],[2,-3],[1,0],[-1,-8],[1,-4],[2,-7],[7,-18],[4,-7],[1,-7],[1,-4],[0,-1],[1,-3],[1,-6],[1,-4],[0,-2],[0,-1],[1,-4],[1,-1],[1,-5],[5,-17],[-1,-3],[-1,-5],[0,-1],[0,-2],[0,-2],[1,-4],[0,-2],[1,-5],[1,-5],[0,-1],[1,-3],[1,-5],[0,-1],[1,-2],[0,-4],[1,-1],[0,-1],[0,-1],[1,-4],[0,-2],[0,-4],[1,-6],[1,-15],[1,-1],[0,-3],[5,-27],[1,-4],[0,-1],[0,-1],[0,-5],[1,-2],[0,-4],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[1,-1],[0,-1],[2,-14],[3,-22],[5,-25],[0,-1],[0,-1],[0,-1],[1,-6],[0,-2],[1,-2],[1,-14],[1,-1],[-1,-2],[-1,-6],[0,-2],[-1,-5],[0,-3],[-1,-3],[0,-2],[7,-6],[2,-2],[0,-2],[0,-3],[0,-1],[-1,-4],[0,-4],[0,-6],[0,-3],[-1,-4],[0,-2],[0,-3],[1,-1],[0,-1],[1,-1],[1,-2],[0,-1],[4,-7],[-1,-7],[0,-2],[1,-10],[1,-6],[0,-1],[0,-2],[0,-1],[0,-3],[0,-6],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[3,-11],[1,-2],[2,-4],[1,-4],[1,0],[0,-1],[3,-6],[0,-2],[2,-7],[1,-1],[0,-1],[1,0],[2,-2],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-3],[0,-2],[1,0],[0,-1],[0,-2],[0,-1],[1,-3],[0,-1],[1,-1],[0,-2],[1,-3],[1,-2],[1,-2],[1,0],[1,0],[0,-6],[1,-2],[0,-1],[0,-4],[0,-3],[0,-3],[2,-3],[3,-5],[0,-1],[1,1],[3,3],[0,1],[0,-1],[1,-2],[0,-1],[0,-4],[1,-1],[0,-1],[0,-4],[1,-5],[0,-2],[0,-1],[0,-1],[0,-1],[0,-9],[0,-3],[0,-2],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[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],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[1,-2],[0,-2],[1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-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,-2],[0,-1],[0,-1],[1,-3],[0,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-3],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-4],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-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],[1,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,0],[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,0],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,-2],[0,-2],[-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],[0,1],[0,1],[-1,1],[0,2],[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],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[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,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,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],[0,1],[0,1],[1,-1],[0,-2],[0,-1],[0,1],[0,4],[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],[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,2],[0,1],[0,1],[0,1],[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,-2],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-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,2],[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,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[-1,0],[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],[1,0],[0,1],[-1,1],[0,-1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[-1,1],[1,1],[0,2],[0,-1],[0,1],[1,0],[0,1],[0,1],[-1,0],[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],[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],[0,1],[0,1],[1,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],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-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,-2],[0,-2],[0,-1],[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],[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,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,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],[1,0],[0,1],[0,1],[0,-1],[-1,-1],[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],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[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,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],[-1,0],[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,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],[-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],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[1,-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],[-1,1],[0,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,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-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],[0,1],[-1,0],[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],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,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],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,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],[0,1],[-1,0],[0,1],[-1,1],[0,2],[0,1],[0,1],[1,0],[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],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[0,1],[-1,0],[-1,-1],[0,1],[0,-1],[-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],[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,1],[0,1],[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,2],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,4],[1,0],[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],[0,2],[0,1],[0,1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[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],[0,1],[-1,0],[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,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,-1],[-1,0],[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,0],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,2],[0,2],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[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],[0,1],[0,2],[-1,3],[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],[-1,1],[0,1],[1,0],[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,3],[0,1],[0,-1],[0,-1],[0,-1],[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],[0,1],[1,1],[0,1],[0,1],[1,1],[-1,0],[0,-1],[-1,0],[1,3],[0,1],[1,1],[0,1],[-1,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,1],[0,-1],[1,-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],[-1,0],[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],[-1,-2],[0,-1],[-1,0],[0,-1],[0,1],[0,2],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-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],[-1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[-1,0],[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],[1,-3],[1,-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],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[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],[0,-1],[0,-1],[0,-2],[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,0],[0,-1],[0,-1],[0,1],[-1,1],[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],[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],[-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],[1,-1],[0,-1],[-1,0],[0,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],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[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],[1,0],[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,-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,-2],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[0,1],[-1,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,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],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[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],[0,-1],[1,-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],[0,1],[0,1],[0,1],[0,2],[0,-1],[0,2],[0,1],[1,1],[0,-1],[0,-1],[0,1],[0,1],[1,1],[1,0],[1,-1],[0,-1],[1,0],[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],[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],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,-1],[0,1],[0,-1],[0,1],[0,-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],[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,1],[0,-1],[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,2],[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],[1,0],[0,-1],[0,1],[1,0],[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,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[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,0],[0,1],[0,1],[-1,-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],[0,1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[0,1],[-1,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],[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,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[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,1],[0,1],[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],[0,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],[0,1],[0,-1],[-1,0],[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],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,2],[0,3],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,0],[0,1],[-1,0],[-1,-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],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[1,0],[0,-1],[0,1],[1,2],[0,1],[0,1],[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],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[-2,5],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[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],[0,1],[-1,0],[0,1],[0,1],[0,4],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[0,-1],[1,0],[0,2],[-1,2],[0,1],[1,0],[0,2],[0,1],[-1,2],[0,2],[0,3],[-1,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[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],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,1],[0,2],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[1,5],[0,1],[0,2],[0,2],[1,-1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[1,1],[-1,0],[0,-1],[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],[-1,0],[0,2],[0,1],[0,4],[0,1],[-1,0],[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,0],[0,-1],[0,1],[-1,1],[0,1],[-1,0],[1,0],[-1,1],[0,1],[-1,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],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,1],[0,1],[0,1],[0,-1],[1,-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],[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],[1,0],[0,1],[0,2],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,-1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,2],[0,3],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,3],[1,2],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[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],[1,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],[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],[1,0],[0,2],[0,1],[0,-1],[1,0],[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],[-1,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[0,3],[-1,6],[0,1],[0,1],[1,0],[-1,0],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[1,3],[-1,3],[0,1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[1,0],[-1,-2],[1,-2],[0,-3],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[0,1],[1,-1],[2,-4],[1,-2],[1,-4],[2,-3],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,1],[-1,1],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,2],[-1,3],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,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],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[-1,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],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[-1,0],[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],[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],[1,1],[0,1],[0,1],[1,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],[0,-1],[0,-1],[1,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],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[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],[1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-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],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,2],[0,1],[0,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],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,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],[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],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-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],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,3],[1,2],[1,2],[0,1],[1,2],[-1,5],[0,3],[1,3],[0,2],[1,1],[-1,1],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[1,-3],[-1,-5],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[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],[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],[-1,1],[-1,0],[-1,0],[0,1],[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],[-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,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],[0,1],[0,1],[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],[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,0],[0,1],[0,1],[-1,0],[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],[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,0],[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],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[1,0],[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,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,1],[-1,0],[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],[0,1],[-1,0],[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,0],[0,2],[0,1],[1,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,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[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,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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[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,-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],[-1,0],[0,2],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[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],[-1,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,3],[0,2],[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,2],[0,2],[0,1],[0,2],[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,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,1],[0,1],[0,1],[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],[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,-2],[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],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[-1,0],[0,2],[0,1],[-1,1],[0,1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[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],[1,-1],[0,-1],[0,-1],[-1,0],[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],[-1,-1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[-1,2],[0,1],[-1,0],[0,1],[0,1],[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,0],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-3],[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,-3],[0,-1],[0,-2],[1,-2],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-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],[1,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[-1,-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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[1,-2],[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],[1,0],[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],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,1],[1,0],[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],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[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],[0,1],[1,-1],[0,-3],[0,-2],[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,-3],[1,-2],[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,-1],[1,-1],[-1,-2],[0,-1],[0,-1],[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,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,2],[-1,2],[0,2],[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],[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],[-1,0],[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],[-1,1],[0,-1],[0,-1],[1,-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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,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],[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]],[[2474,3420],[0,0]],[[2474,3420],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-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],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0]],[[2492,3412],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,2],[-1,0],[0,1],[-1,-2],[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],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,1],[0,2],[-1,1],[-1,-2],[0,-2],[0,-1],[0,-2],[0,-6],[0,-2],[0,-1],[0,-2],[1,-2],[0,-1],[0,1],[1,0],[0,2],[0,1],[1,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,-1],[-1,-2],[0,-1],[0,-4],[0,-3],[0,-2],[1,-3],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2482,3299],[0,-1]],[[2482,3298],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,2],[0,1],[1,2],[0,2],[0,1],[-1,1],[0,1],[-1,-1],[0,-2],[0,-2],[0,-2],[0,-1],[-1,0],[0,-2],[0,-1],[0,-2],[-1,-4],[1,-1],[0,-1],[1,0],[0,2],[-1,2],[0,1],[1,2],[0,-1],[1,-1],[0,-2],[0,-1]],[[2481,3297],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[1,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[0,-1],[0,-1],[0,-2],[-1,1],[0,-1],[0,-1],[0,-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],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-5],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1]],[[2443,2854],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,2],[0,1],[0,2],[0,1],[0,4],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,3],[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,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,4],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[-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],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,5],[0,2],[0,1],[0,2],[0,2],[0,2],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-3],[0,-2],[0,-1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,11],[0,1],[0,2],[0,2],[0,1],[0,1],[0,3],[0,1],[0,2],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,3],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,2],[-1,0]],[[2427,3130],[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,2],[0,3],[0,1],[-1,0],[-1,0],[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,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,4],[0,1],[0,1],[0,1],[0,1],[0,3],[0,2],[0,1],[0,1],[0,2],[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,2],[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],[-1,0],[-1,0],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,2],[1,0],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[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,0],[0,-1],[1,0],[0,1],[0,-1],[1,1],[0,2],[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],[1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,3],[0,1],[0,3],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[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],[0,-1],[1,0],[0,1],[0,1],[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,0],[0,1],[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],[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,2],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,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],[-1,0],[0,1],[1,0],[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,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[-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],[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,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[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,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0]],[[2405,3360],[-1,0],[-1,0],[-1,0],[-1,0],[0,3],[0,2],[0,1],[0,6],[0,3],[0,2],[0,2],[0,2],[0,1],[0,4],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[1,3],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,-1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,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,0],[1,0],[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,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[-1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,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],[0,1],[0,1],[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],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,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],[1,0],[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]],[[2413,3504],[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,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],[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],[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],[1,0],[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],[1,0],[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,-2],[0,-1],[0,-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],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[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],[0,-1],[0,-1],[0,-1]],[[2427,3130],[-1,0],[-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,-2],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,2],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[-1,0],[-1,0],[0,4],[0,1],[0,1],[0,2],[-1,0],[-1,0],[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,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[1,0],[0,3],[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],[1,0],[0,1],[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,2],[0,1],[1,0],[0,3],[0,2],[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,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],[0,1],[0,1],[0,1],[1,0]],[[2403,3257],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[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,2],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,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,2],[1,0],[0,2],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[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,2]],[[2406,3504],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2403,3257],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[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],[0,1],[1,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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,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],[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,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[1,0],[0,-1],[0,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,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,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,3],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0]],[[2393,3423],[0,0]],[[2393,3423],[0,2],[0,1],[-1,0],[1,2],[0,2],[0,2],[0,2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-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],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[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,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[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],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[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,-3],[0,-1],[0,-3],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-2],[-1,0],[-1,0],[-1,0],[0,-4],[0,-4],[0,-5],[-1,0],[0,-14],[1,0],[0,-12],[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],[-1,0],[1,0],[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,0],[0,-1],[-1,0],[0,-1],[1,0],[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],[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],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[1,0],[0,2],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,-1],[0,1],[0,-2],[-1,1],[0,-6],[-1,0],[1,1],[-1,2],[-1,0],[-2,0],[0,-2],[0,-1],[0,-1],[0,-9],[0,2],[0,-1],[0,-1],[0,-2],[0,-3],[-2,0]],[[2360,3237],[0,1],[0,1],[0,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,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,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,2],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,6],[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,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[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],[-1,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[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],[-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,3],[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,1],[0,4],[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,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,2]],[[2355,3504],[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,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2371,2856],[0,7],[0,10],[0,27],[0,3],[0,15],[0,6],[0,1],[0,5],[0,1],[0,2],[0,6],[0,1],[0,4],[0,4],[0,7],[0,1],[0,-1],[0,1],[-1,-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],[0,1],[0,1],[-1,0],[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],[1,1],[0,1],[-1,0],[0,1],[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,-1],[-1,0],[0,-1],[0,1],[0,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],[1,1],[-1,1],[0,-1],[0,-1],[0,1],[-1,0],[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],[-1,0],[0,-1]],[[2359,2972],[0,2],[0,1],[0,1],[0,3],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[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,2],[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,3],[0,3],[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,1],[0,2],[0,2],[0,2],[0,1],[0,3],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,3],[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,4],[0,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,2],[0,1],[0,6],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,4],[0,1]],[[1953,3597],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-3],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-3],[0,-2],[0,-1],[0,-2],[0,-3],[0,-3],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-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,-5],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[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,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-3]],[[1953,3258],[0,-2],[0,-3],[0,-5],[0,-5],[0,-8],[0,-6],[0,-1],[0,-3],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-4],[0,-2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-9],[0,-2],[0,-2],[0,-1],[0,-1],[0,-4],[0,-8],[0,-1],[0,-1],[0,-1],[0,-4],[0,-4],[0,-6],[0,-2],[0,-5],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-4],[0,-3],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-4],[0,-1],[0,-3],[0,-3],[0,-5],[0,-4],[0,-3],[0,-1],[0,-1],[0,-1],[0,-5],[0,-6],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-5],[0,-3],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-4],[0,-2],[0,-3],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1],[0,-4],[0,-1],[0,-5],[0,-3],[0,-8],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-4],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-4],[0,-1],[0,-2],[0,-1],[0,-1],[0,-5],[0,-1],[0,-2],[0,-2],[0,-1],[0,-5],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-3],[0,-1],[0,-4],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-4],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-6],[0,-2],[0,-1]],[[1953,2746],[-2,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],[-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],[0,1],[0,2],[0,2],[0,3],[0,2],[0,1],[0,1],[0,2],[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],[0,-3],[0,-3],[0,-8],[-1,0],[0,-5],[-1,0],[0,-3],[0,-2],[0,-1],[0,-6],[-1,0],[0,4],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,-1],[0,-3],[0,-3],[0,-2],[0,-1],[-1,1],[0,1],[0,-1],[1,-3],[0,-2],[0,-1],[0,-3]],[[1897,2724],[-1,0],[0,3],[0,1],[0,2],[-1,0],[0,-3],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,2],[1,0],[0,2],[-1,2],[-1,0],[0,-2],[-1,0],[0,-1],[0,7],[-1,0],[0,-2],[-1,0],[0,2],[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],[0,1],[0,1],[0,1],[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,0],[-1,0],[-1,0],[-1,0],[0,32],[1,0],[0,7],[0,1],[1,0],[0,8],[-1,0],[0,5],[-3,0],[0,-4],[-5,0],[0,-9],[-3,0],[0,-7],[-1,0],[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,4],[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,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,6],[0,1],[0,2],[0,1],[0,2],[0,3],[0,3],[0,1],[0,1],[0,1],[0,2],[0,6],[0,1],[0,2],[0,4],[0,4],[0,1],[0,1],[0,3],[0,1],[0,2],[0,1],[0,1],[0,3],[-1,0],[-2,0],[0,3],[0,19],[0,2],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1]],[[1864,2925],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1866,2910],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0]],[[1874,2907],[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,0],[1,0],[1,0],[1,0],[1,0]],[[1879,2891],[0,-1],[0,-15],[5,0],[0,-19],[1,0],[0,-1],[0,1],[0,-3],[1,0],[0,-2],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,-3],[0,2],[1,0],[0,-2],[0,1],[0,2],[1,0],[0,3],[0,3],[0,5],[-1,0],[1,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,7],[0,11],[0,-3],[1,0],[0,3],[2,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,5],[0,1],[0,1],[0,1],[1,2],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-2],[1,0],[0,1],[-1,4],[0,3],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,2],[-1,3],[0,2],[0,2],[0,2],[0,4],[0,1],[-1,3],[0,1],[0,1],[0,4],[0,2],[-1,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[0,1],[-1,2],[0,1],[0,1],[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],[-1,-1],[0,-1],[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],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,2],[0,2],[1,0],[0,1],[0,2],[1,2],[0,2],[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],[0,1],[1,3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[1,0],[0,-3],[0,-5],[0,-1],[0,-5],[0,-1],[0,-1],[0,-2],[0,-2],[1,-2],[-1,-2],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,3],[1,0],[0,1],[0,-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],[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],[0,-1],[1,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[-1,2],[1,1],[-1,27],[0,36],[0,42],[-1,6],[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,0],[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,0],[0,1],[0,1],[0,1],[0,1],[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],[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],[0,1],[-1,0],[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,0],[0,-1],[0,1],[0,1],[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],[1,0],[-1,0],[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],[0,-1],[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],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[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],[1,0],[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],[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,0],[0,-1],[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],[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],[-1,0],[1,0],[-1,0],[0,1],[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],[0,1],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[-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],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[1882,3117],[0,0]],[[1882,3117],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,2],[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],[0,1],[0,1],[0,1],[0,1],[0,2],[0,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],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,-1],[0,3],[-1,0],[0,8],[0,2],[0,1],[-1,0],[0,4],[0,2],[-1,0],[0,3],[1,-1],[0,-1],[0,2],[0,2],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,2],[1,0],[0,4],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,3],[-1,-1],[-2,-5],[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,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,3],[0,1],[0,4],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,4],[-1,0],[-1,0],[-1,0],[0,2],[0,2],[0,3],[0,2],[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],[-1,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[0,1],[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],[-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,1],[-1,1],[0,4],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-3,8],[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,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-3],[-7,0],[-6,38],[0,-5],[-1,1],[0,-3],[-1,0],[0,3],[0,1],[-1,-3],[0,-4],[-2,12],[-1,3],[1,7],[1,3],[0,-3],[1,1],[0,2],[0,2],[1,0],[-1,57],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[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,-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],[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,0],[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],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,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],[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,0],[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,0],[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,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[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],[0,1],[0,1],[1,0],[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],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[-1,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,2],[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,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],[0,1],[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],[0,-1],[0,1],[0,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,1],[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,0],[0,1],[1,0],[-1,1],[0,1],[1,0],[0,-1],[0,1],[-1,0],[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],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[0,3],[0,2],[0,1],[0,1],[0,1],[0,3],[-1,3],[0,1],[0,1]],[[1847,3598],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[3,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[1887,3598],[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],[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],[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],[2,0]],[[1879,2891],[1,0],[1,0],[1,0],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[-1,0],[-1,0],[-1,0],[0,1],[0,1]],[[1879,2947],[0,1],[0,1],[1,0],[0,1],[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,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[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],[0,1],[0,1],[0,1],[-1,2],[0,1],[-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],[-1,0],[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,2],[-1,0],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,1],[-1,0]],[[1870,3021],[-1,0],[0,1],[0,4],[0,3],[0,1],[0,1],[0,3],[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],[0,-3],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[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],[1,0],[0,1],[-1,1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[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],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1858,2939],[-1,0],[-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,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,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],[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],[0,1],[-1,0],[0,-1],[0,-1],[0,-4],[0,-1],[0,-5],[0,-3],[0,-1],[0,-3],[0,-4],[0,-4],[0,-1],[0,-5],[0,-2],[0,-2],[0,-7],[0,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-6],[0,-2],[0,-2],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,-5],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-8],[0,-7],[0,-1],[0,-2],[0,-2],[0,-4],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,-2],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-2],[0,-2],[-1,0],[-1,0],[0,-3],[-1,0],[-1,0],[0,-3],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,2],[0,1],[0,2],[0,1],[-1,0],[-1,0],[-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],[0,2],[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],[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]],[[1798,2802],[0,1],[1,1],[0,1],[0,1],[1,0],[0,2],[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,2],[0,1],[0,4],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-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],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,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],[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,0],[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,2],[0,1],[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],[0,1]],[[1797,2934],[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],[0,1],[0,1],[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],[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,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],[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,1],[0,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],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[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],[0,1],[0,1],[0,1]],[[1803,3055],[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],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[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],[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,2],[0,1],[-1,1],[0,1],[0,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,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-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],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,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],[-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,0],[0,1],[0,1],[0,1],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[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]],[[1797,3225],[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],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[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,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[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,3],[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,0],[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],[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],[-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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[0,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],[0,1],[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],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1794,3428],[0,1],[0,1],[0,1],[1,0],[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],[0,1],[1,0],[0,1],[0,1],[1,0],[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,0],[0,1],[0,1],[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],[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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,3],[0,1],[0,3],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[0,3],[0,2],[0,3],[0,3],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,3],[0,2],[0,2],[0,1],[0,2],[0,3],[0,1],[0,2],[0,3],[0,3],[0,1],[0,4],[0,3],[0,1],[-1,1],[0,3],[0,3],[0,2],[0,4],[0,2],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,6],[0,4],[0,1],[0,7],[0,2],[0,2],[0,8]],[[1813,3598],[1,0],[1,0],[1,-1],[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],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0]],[[1879,2947],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1]],[[1875,2938],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[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],[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],[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]],[[1867,2953],[-1,0],[0,1],[0,1],[0,1]],[[1866,2956],[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,2],[0,1],[1,0],[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,0],[-1,0],[1,0]],[[1868,2997],[0,0]],[[1868,2997],[0,1],[0,1],[-1,0],[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,2],[1,0],[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,3],[0,1],[0,1],[0,2],[0,1],[0,1]],[[1866,2956],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[1,0],[0,-1]],[[1864,2948],[-1,0],[0,-1],[0,1],[0,2],[-1,0],[0,-1],[0,-1],[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],[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,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1874,2907],[1,0],[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],[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],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[1866,2910],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,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],[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],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1864,2925],[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],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1953,2746],[0,-2],[0,-3],[0,-1],[0,-1],[0,-2],[0,-5],[0,-1],[0,-1],[0,-4],[0,-2],[0,-1],[0,-1],[0,-3],[0,-3],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-3],[0,-2],[0,-3],[0,-4],[0,-3],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-7],[0,-3],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[0,-2],[0,-4],[0,-5],[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,-6],[0,-2],[0,-3],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-4],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-3],[0,-4],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-4],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-4],[0,-1],[0,-3],[0,-2],[0,-2],[0,-4],[0,-1],[0,-3]],[[1953,2542],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1]],[[1914,2542],[0,3],[0,2],[0,2],[0,1],[0,2],[0,3],[0,1],[0,1],[0,2],[0,1],[0,3],[0,4],[0,1],[-1,0],[0,1],[0,4],[0,1],[0,1],[0,2],[0,1],[0,2],[0,4],[0,3],[0,2],[0,1],[0,1],[0,1],[0,3],[1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[-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],[0,1],[0,2],[0,3],[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,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[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],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[-1,0],[-1,0],[-1,0],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1914,2542],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-2,0],[0,1],[-1,3],[-1,2],[-2,3],[-1,4],[-1,1],[-1,2],[-1,2],[0,1],[-1,1],[0,1],[-1,2],[-2,3],[-1,2],[-1,3],[0,1],[-2,3],[-1,4],[-1,1],[-1,1],[0,2],[-3,5],[-2,4],[-1,3],[-1,2],[-2,3],[-1,2],[-1,3],[-1,2],[-2,4],[-1,3],[-2,3],[-1,1],[0,1],[0,1],[-1,2],[-1,2],[-1,2],[-1,1],[0,1],[-1,3],[-1,1],[-1,3],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[0,1],[-1,3],[-2,2],[0,2],[-2,3],[-1,3],[-1,2],[-2,2],[-1,3],[0,1],[-1,2],[-3,5],[-1,3],[-1,3],[-3,4],[-1,3],[-1,2],[-2,4],[-1,3],[-1,2],[-1,3],[-2,2],[-2,4],[0,1],[-1,3],[-1,2],[-1,2],[-1,2],[-2,3],[-1,3],[-1,1],[0,1],[-2,3],[0,1],[-2,4],[-2,4],[-2,4],[-2,5],[-2,3],[-1,3],[-1,2],[-2,3],[-1,1],[0,1],[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],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[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,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1795,2801],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[1648,4527],[0,-16],[0,-1],[0,-44],[0,-20],[0,-2],[0,-58],[0,-6],[0,-4],[0,-4],[0,-102],[0,-10],[0,-1],[0,-62],[0,-12],[0,-10],[0,-19],[0,-8],[0,-10],[0,-14],[0,-20],[0,-8],[0,-1],[0,-8],[0,-1],[0,-29],[0,-1],[0,-3],[0,-7],[0,-1],[0,-4],[0,-6],[0,-1],[0,-5]],[[1648,4029],[-1,0],[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],[0,-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],[0,2],[0,1],[-2,-9],[0,-1],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[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],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[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],[-1,0],[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,0],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-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],[0,-1],[0,-1]],[[1619,3954],[0,0]],[[1619,3954],[0,-1],[-1,0],[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,-4],[-1,3],[0,1],[-1,1],[0,-1],[0,-1],[0,1],[-1,0],[0,3],[-2,0],[0,11],[-1,0],[0,5],[-1,0],[0,3],[0,1]],[[1610,3976],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,4],[0,2],[0,1],[0,1],[0,2],[0,1],[0,3],[0,1],[0,2],[0,3],[0,1],[0,1],[0,1],[0,2],[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,0],[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,0],[1,0],[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],[0,-1],[0,1],[0,6],[0,9],[0,4],[0,4],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,14],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-3],[0,-1],[-1,0],[0,-2],[0,-5],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-3],[-1,0],[0,1],[0,1],[-1,0],[0,-2],[0,-2],[0,-2],[0,-3],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,-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],[-1,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-2,-1],[-1,0],[-3,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,0],[-1,0],[-1,0],[0,2],[0,1],[0,1],[0,2],[-1,0],[-1,0],[-2,0],[0,-5],[-1,0],[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,3],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,9],[0,-1],[0,1],[0,2],[1,0],[0,3],[-1,0],[0,2],[0,1],[1,0],[0,3],[-1,0],[0,1],[0,11],[1,0],[0,1],[0,-1],[2,0],[1,0],[0,2],[0,-1],[0,-1],[1,0],[0,2],[0,1],[0,-1],[1,0],[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,0],[0,1],[0,1],[0,1],[0,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],[-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],[0,-1],[-1,0]],[[1566,4118],[0,1],[0,1],[0,1],[0,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],[-1,0],[1,1],[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,0],[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,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],[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],[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],[-1,0],[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],[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],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,1],[0,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],[1,0],[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],[1,0],[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],[0,1],[0,1],[0,1],[-1,1],[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],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[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],[0,1],[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],[0,1],[1,0],[0,1],[0,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],[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,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[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],[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,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[-1,0],[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],[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],[0,-1],[0,-1],[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],[0,-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],[0,-1],[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],[0,-1],[1,0],[0,-1],[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],[-1,0],[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,0],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[-1,1],[-1,0],[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],[0,1],[-1,-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],[0,1],[0,1],[0,1],[-1,0],[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],[0,1],[-1,0],[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,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[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],[0,1],[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],[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],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[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,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],[1,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,1],[-1,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],[1,0],[0,1]],[[1550,4528],[1,0],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0]],[[1558,4529],[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],[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],[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,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,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]],[[1532,4308],[0,-1],[0,-1],[-1,0],[0,1],[1,1],[0,1],[0,-1]],[[1566,4118],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[1,0],[0,-7],[0,-12],[0,-5],[0,-3],[0,-4],[0,-1],[0,-1],[0,-2],[0,-3],[0,-2],[-1,0],[0,-3],[-1,0],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,-8],[0,-1],[0,-1],[0,-2],[0,-3],[0,-2],[1,0],[0,-6],[0,-1],[0,-1],[0,-5],[0,-1],[0,-2],[1,0],[0,-9],[0,1],[0,-4],[0,-4],[0,-3],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-3],[0,1],[0,-2],[-1,0],[0,-6],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-3],[1,0]],[[1563,3979],[0,-5],[0,-2],[0,-1],[0,-2],[1,0],[1,0],[0,-1],[0,-1],[0,-7],[0,-3],[0,-1],[1,0],[0,-5],[1,1],[0,-2],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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,-2],[0,-1],[-1,-2],[0,-2],[1,0],[-1,-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],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-3],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[1,-1],[-1,-2],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,2],[-1,2],[0,1],[-1,0],[0,-1],[0,-5],[0,-1],[0,1],[-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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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,-2],[0,-3],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,-1],[1,-1],[1,-4],[0,-2],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1577,3814],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-2],[-1,-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,0],[0,-1],[-1,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,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],[-1,0],[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],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[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],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,-2],[0,-1],[0,-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],[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],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[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],[0,-1],[-1,0],[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,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[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],[-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],[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,2],[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],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-1],[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],[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],[-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,0],[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],[0,1],[0,1],[0,1],[0,1],[0,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],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,-1],[0,-2],[0,-1],[-1,0],[1,-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],[0,1],[0,1],[0,1],[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,1],[0,1],[0,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],[0,1],[0,1],[-1,0],[0,1],[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],[-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,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[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],[-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],[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,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],[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,1],[0,1],[0,1],[0,1],[-1,0],[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],[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,0],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[1,1],[-1,0],[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],[0,2],[1,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],[-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],[-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],[-1,0],[0,1],[0,1],[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],[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,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[0,1],[0,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],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,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],[0,1],[-1,0],[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],[-1,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],[-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,0],[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,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],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,-2],[0,-1],[0,1],[0,2],[0,1],[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],[1,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[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,2],[0,2],[0,1],[1,0],[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],[1,0],[0,1],[0,-1],[0,-1],[1,0],[-1,1],[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],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-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],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[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],[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,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],[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,0],[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,0],[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],[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],[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],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[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],[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],[-1,0],[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],[1,1],[0,1],[0,1],[0,1],[0,1],[0,5],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[1530,4528],[1,0],[1,0],[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,1],[1,0],[2,-1],[0,1],[1,0],[1,0],[1,0],[1,0]],[[1589,3792],[1,-1],[0,-1],[0,-1],[0,1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,4],[-1,-1],[0,-2],[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]],[[1583,3784],[0,2],[1,0],[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],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,1],[0,1],[0,1]],[[1590,3809],[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],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[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],[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],[0,1],[0,1],[-1,0],[0,2],[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,-2],[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,0],[0,4],[0,1],[-1,4],[-1,3],[0,1],[-1,1],[0,2],[0,1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[1563,3979],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,-1],[0,-1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-6],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-3],[1,0],[0,-1],[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],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,-2],[0,-1],[-1,-2],[1,-1],[0,-1],[0,-1],[1,0],[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],[1,0],[0,1],[0,1],[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],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[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],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-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,-2],[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,-2],[0,-4],[0,-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],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[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],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-3],[1,0],[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,0]],[[1666,3883],[5,-22],[3,-15],[1,-5],[2,-7],[0,-1],[4,-20],[3,-13],[4,-20],[3,-13],[0,-2],[1,-1],[0,-3],[3,-14],[0,-1],[3,-13],[2,-11],[1,-2],[1,-4],[2,-12],[1,-6],[1,-3],[0,-1],[2,-9],[0,-1],[9,-44],[4,-20],[1,-3],[1,-8],[4,-17],[6,-33],[8,-38],[2,-9],[1,-5],[3,-20],[1,-1],[1,-8],[5,-25],[0,-2],[1,-2],[1,-7],[1,-2],[0,-3],[5,-26],[1,-7]],[[1763,3404],[1,-2],[5,-26],[0,-2],[7,-35],[0,-1],[1,-3],[4,-21],[4,-21],[0,-3],[4,-21],[1,-3],[1,-8],[2,-7],[4,-26]],[[1803,3055],[-1,0],[-1,0],[-7,0],[-1,0],[-1,0],[-1,0],[-8,-1],[-5,0],[0,-1],[0,-7],[-6,0],[-18,0],[-1,0],[-6,0],[-4,0],[-2,0],[-2,0],[-3,-1],[-1,0],[-2,0],[0,-1],[0,-2],[0,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[1728,3040],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,2],[-1,0],[0,2],[0,2],[1,0],[0,1],[0,1],[0,-1],[1,0],[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],[0,2],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[-1,-2],[0,3],[0,-1],[0,3],[1,0],[0,-1],[0,2],[0,-2],[0,1],[0,1],[1,-1],[-1,0],[1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,-1],[0,2],[-1,0],[0,-1],[0,3],[0,1],[-1,-1],[0,3],[0,2],[-1,0],[0,-2],[0,1],[0,1],[0,1],[-1,-1],[0,2],[0,1],[0,3],[0,1],[0,-2],[0,-2],[-1,1],[0,1],[0,2],[-1,-1],[0,-1],[0,1],[-1,2],[0,-1],[1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,-3],[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,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,3],[-2,0],[0,1],[0,-1]],[[1714,3070],[-2,0],[1,7],[0,2],[0,3],[0,9],[0,2],[0,8],[0,6],[0,4]],[[1713,3111],[0,2],[0,10],[0,7],[0,2],[0,2],[0,9],[0,49]],[[1713,3192],[1,0],[0,33],[0,2],[0,11],[0,57],[0,11],[0,1],[0,2],[0,1],[0,5],[0,4],[0,11],[0,11],[0,5],[0,5],[-1,0],[0,6],[1,0],[0,5],[0,11],[-7,1],[-1,0],[0,-2],[-1,0],[-2,0],[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],[1,0],[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,0],[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,0],[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,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[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],[1,0],[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],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[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],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[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],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1]],[[1693,3550],[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],[1,0],[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,2],[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],[-1,1],[0,1],[0,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],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-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],[0,1],[0,1],[-1,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],[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,0],[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],[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],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[-1,1],[0,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],[-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],[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,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[-1,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],[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],[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,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],[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],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[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],[-1,1],[0,1],[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,-1],[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],[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],[-1,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[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,0],[0,1],[-1,1],[0,1],[0,1],[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],[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],[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,1],[1,0],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1659,3916],[1,-4],[0,-1],[1,-2],[1,-4],[4,-22]],[[1609,3919],[1,0],[1,-1]],[[1611,3918],[0,-3],[0,-3],[-1,-2],[0,-3],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[-1,-1],[0,-5],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[1,-6],[-1,0],[0,1],[-1,0]],[[1607,3866],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,-1],[0,3],[0,4],[0,1],[0,1],[0,5],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,5],[0,1],[0,1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-10],[2,0],[0,-5],[0,-2],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[1,-1],[1,0],[0,1],[1,-1],[0,1],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1]],[[1611,3841],[0,-1],[0,-2],[1,0],[0,-5],[0,1],[0,-1],[0,-2],[0,-1],[0,1],[1,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,-1],[0,1]],[[1619,3839],[0,-4],[1,-6],[0,-3],[0,-3],[0,-1],[0,-2],[1,-3],[0,-2],[0,-1],[0,-6],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[1,-1],[0,-2]],[[1622,3798],[0,-1],[0,-24],[0,-5],[0,-3],[0,-15],[0,-5],[0,-6],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,-1],[0,1],[-1,1],[0,-3],[-1,0],[0,-1],[0,-4],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[0,1],[0,4],[0,4],[-1,0],[0,1],[0,2],[-1,1],[0,-1],[0,-3],[0,-4],[-1,0],[0,-1]],[[1612,3745],[0,0]],[[1612,3745],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-3],[-1,-2],[-1,1],[-1,0]],[[1604,3736],[0,10],[0,4],[0,-1]],[[1604,3749],[-1,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[-1,0],[0,3],[-1,1],[-1,2],[0,1],[0,4],[-1,0],[0,-1],[-1,2],[0,1],[0,5],[-1,1],[0,2],[1,0],[0,2],[0,3],[0,1],[1,0],[0,1]],[[1598,3787],[0,-1],[0,1],[1,0],[1,-1],[0,-1],[0,1],[1,0],[0,1],[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,2],[0,1],[0,1],[0,1],[1,-1],[0,-1],[0,1],[1,1],[0,1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[-1,0],[1,-2],[0,-2],[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],[0,-1],[1,0],[0,2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1604,3804],[0,1],[0,1],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,2],[1,0],[0,1]],[[1581,3729],[-1,0],[0,2],[0,2],[0,1],[0,-1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,-2],[-1,0],[0,-1]],[[1578,3734],[0,1],[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],[0,-1],[0,1],[1,0],[1,0],[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,0],[-1,0],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[0,1],[0,-1]],[[1582,3749],[-1,2],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[1581,3729],[0,-3],[0,-2],[0,-2],[0,-1],[0,1],[0,-1],[1,0],[-1,-1],[1,0],[-1,-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],[0,-1],[0,1],[-1,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[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],[-1,0],[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],[0,-1],[0,-1],[1,0],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1]],[[1589,3684],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,1],[1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,-2],[0,-1],[-1,-4],[0,1],[-1,0],[0,-1]],[[1581,3658],[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],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[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],[0,1],[0,1],[0,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,2],[0,2],[0,3],[0,1],[0,2],[0,2],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1]],[[1562,3739],[-1,0],[0,1],[1,0],[0,-1]],[[1589,3684],[0,-1],[0,1],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1]],[[1590,3680],[0,-1],[0,-2],[1,0],[0,-1],[0,-2],[0,-2],[0,-3],[-1,0],[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],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[1,0],[0,-4],[0,1],[0,-1],[0,1],[0,2],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[-1,0],[0,1],[0,1],[1,0]],[[1594,3660],[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,-2],[0,1],[0,-1],[1,0],[0,-2],[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],[1,-1],[0,1],[0,-1],[0,-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],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1597,3610],[-1,0],[0,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],[0,-1],[0,1],[0,1],[0,2],[-1,2],[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],[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]],[[1590,3588],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,3],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,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],[0,1],[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],[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,1],[0,1],[0,1],[0,1]],[[1583,3745],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[1588,3747],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,1],[0,-1],[-1,0],[1,-2],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1588,3722],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,2],[0,-1],[-1,2],[1,0],[-1,0],[0,-2],[-1,3],[0,2],[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],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-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],[1,0],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,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]],[[1583,3765],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1]],[[1607,3687],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0]],[[1596,3688],[0,1],[0,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],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,-1],[-1,-1],[0,-1],[0,-3],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-2]],[[1589,3693],[0,1],[0,2],[0,3],[-1,3],[0,1],[0,1],[0,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,2],[0,1],[0,1]],[[1588,3747],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,2],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,-1],[0,2],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[2,4],[3,5],[3,5]],[[1604,3736],[0,-1],[0,-7],[0,-12],[0,-4],[0,-5],[0,-9],[1,-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]],[[1596,3688],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-5],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,-4],[0,2],[-1,-1],[0,1],[-1,1],[0,1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-4]],[[1590,3680],[1,1],[0,1],[0,1],[0,-1],[0,1],[1,1],[0,1],[-1,-1],[0,1],[0,-1],[0,1],[0,1],[-1,3],[1,0],[-1,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1]],[[1596,3790],[-1,1],[0,1],[1,0],[0,-1],[0,-1]],[[1583,3765],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,2],[0,-1],[0,-2],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,-1],[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],[1,0]],[[1589,3792],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0]],[[1596,3789],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[-1,0]],[[1637,3716],[-2,-5],[0,-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,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-3],[-1,-2],[-2,-7],[-1,-1],[0,-1],[-1,-1],[0,-1],[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],[0,-1],[0,-1],[0,-1],[-1,-6],[-1,0],[-2,-11],[-3,-20]],[[1614,3623],[-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],[-1,1],[0,-1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[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],[-1,0],[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,0],[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],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,3],[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],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[1,1]],[[1622,3798],[0,-1],[2,-13],[2,-8],[0,-4],[2,-11],[2,-9],[0,-1],[2,-12],[1,-4],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[2,-7]],[[1656,3596],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[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],[-1,0],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,2],[0,4],[1,-2],[0,1],[0,1],[0,-3],[3,0],[0,-1],[0,-1],[0,-13],[0,-1],[1,0],[0,-1]],[[1657,3542],[-2,-1],[0,-1],[0,1],[0,-2],[0,-3],[0,1],[-1,1],[0,2],[-1,0],[-1,0],[0,-3],[-1,0],[0,-2],[-1,0],[0,2],[0,17],[-2,0],[0,2],[0,-1],[-1,0],[0,1],[0,1],[0,2],[-1,0],[0,3],[0,2],[0,1],[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],[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],[-1,0],[0,-1],[0,1],[0,-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],[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,2],[0,-1],[0,1],[-1,0],[0,1],[0,2],[0,-1],[0,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,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-2,-9],[0,-1],[0,-1],[0,-1],[0,-5],[-2,0],[-3,-18],[-4,-22]],[[1622,3549],[0,2],[-3,8],[0,1],[-1,0],[0,1],[0,2],[-1,0],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1]],[[1614,3590],[0,1],[-1,0],[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,0],[0,1],[0,1],[0,1],[0,1],[0,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],[0,1],[0,1],[0,1],[0,1]],[[1637,3716],[1,-8],[0,-3],[1,-10],[0,-1],[1,-14],[0,-1],[0,-3],[0,-4],[1,-6],[0,-2],[1,-3],[0,-4],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[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,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-4],[1,-1],[0,1],[0,-1],[1,-2],[0,-3],[0,-1],[0,-2],[1,1],[0,-2],[1,0],[1,-2],[0,1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-3],[1,0],[-1,-4],[1,-2],[0,-1],[1,3],[0,2],[1,2],[0,-1]],[[1597,3610],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,-2],[0,-2],[1,-1],[0,1],[-1,-2],[1,-1],[0,1],[0,-1],[0,-2],[0,-1],[-1,0],[1,1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-2],[0,-2],[1,0],[0,-2],[0,-1],[0,-1],[0,2],[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],[0,4],[0,1],[0,-1],[0,1],[0,4],[-1,0],[1,2],[-1,0],[0,1],[0,1],[1,1],[0,-1],[0,1],[0,1],[0,-2],[0,1],[0,1],[0,1],[1,0],[0,-3],[0,-1],[0,-3],[1,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,1],[0,1],[1,-1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0]],[[1622,3549],[2,-9],[3,-16],[1,-7],[3,-13],[0,-2],[0,-10],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[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],[-1,0],[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],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[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],[1,0],[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],[1,-1],[0,-1],[1,0],[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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1642,3372],[-3,0],[-5,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],[-3,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[1610,3373],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[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],[-1,0],[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,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],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,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],[-1,0],[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,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],[0,1],[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],[1,0],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[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],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[0,2],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,3],[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],[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,-2],[0,-1],[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],[-1,1],[0,1],[0,1],[0,1],[1,1],[-1,-1],[0,1],[0,1],[0,2],[0,1],[-1,3],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,2],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[0,1],[0,-1],[-1,0]],[[1675,2940],[-1,0],[0,1],[0,2],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1646,3046],[1,0],[-1,-1],[1,-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],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-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],[0,1],[0,1],[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,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1]],[[1636,3050],[0,-1],[-1,0],[0,1],[1,0]],[[1639,3050],[-1,-1],[0,1],[1,0]],[[1638,3049],[0,-1],[1,0],[0,-2],[0,-2],[0,-1],[-1,0],[0,-2],[-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],[0,2],[0,-2],[1,0],[0,1],[0,3],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[1650,3053],[1,0],[1,-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,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[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],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,1],[-1,0],[0,-1],[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],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,-1]],[[1668,3087],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[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],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,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,1],[0,1],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,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,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[0,1],[0,2],[0,1],[-1,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],[0,1],[-1,0],[0,1],[0,1],[0,1],[-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],[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],[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,0],[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,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],[0,1],[0,1],[0,1],[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,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[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],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[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],[-1,0],[0,1],[0,1],[0,1],[-1,0],[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],[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,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],[1,0],[0,1],[-1,1],[0,1],[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,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],[0,1],[-1,0],[0,1],[0,1],[0,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],[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],[-1,0],[0,-1],[0,-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],[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]],[[1642,3372],[0,-2],[0,-10],[0,-20],[3,-1],[0,-16],[1,0],[0,-2],[0,-3],[1,0],[0,-3],[0,-3],[1,1],[0,-6],[2,0]],[[1650,3307],[1,0],[0,-17],[1,0],[1,0],[0,-16],[4,0],[0,-16],[3,1],[0,-17],[2,0],[0,-3],[0,-25],[0,-7],[1,-1],[2,0],[0,-1],[0,-1],[0,-1],[2,0],[1,0],[0,-4],[1,-1],[0,-7],[2,-1],[1,0],[1,0],[2,0],[1,0],[0,-4],[2,0],[1,0]],[[1679,3186],[0,-2],[0,-4],[1,-7],[0,-1],[0,-1],[0,-1],[1,-7],[0,-2],[0,-1],[0,-6],[0,-1],[0,-3],[1,-8],[1,-9],[0,-1],[0,-1]],[[1683,3131],[-1,-2],[0,-3],[-5,0],[0,-4],[0,-1],[0,-3],[-3,0],[0,1],[-1,0],[0,2],[0,22],[0,1],[0,-1],[-5,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-2,0],[0,1],[0,-9],[0,-4],[0,-4],[0,-2],[4,0],[0,-3],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-5],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[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],[0,-1],[1,0],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[1673,3534],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-3],[0,-3],[0,-3],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-4],[0,-3],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,2],[1,0],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-11],[1,-3],[0,-5],[1,-1],[0,-4],[-1,0],[0,-3],[0,1],[0,-1],[-1,0],[0,-1],[0,-10],[0,-4]],[[1672,3430],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,-3],[-1,1],[0,-1],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[0,3],[0,3],[0,4],[0,3],[0,24],[1,0],[0,11],[0,5],[0,7],[0,2],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,5],[-1,0],[0,1],[0,3],[0,1],[1,1],[1,8],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[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],[1,0],[0,-1],[0,1],[0,2],[-1,0],[1,3],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-6],[-2,1],[0,4]],[[1656,3596],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[0,-2],[1,-3],[0,-1],[1,-3],[0,-2],[0,-1],[1,-2],[0,-2],[0,-1],[0,-3],[0,-2],[0,1],[1,0],[1,0],[0,2],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-2],[0,-3],[1,-8],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,-1],[1,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,-2],[1,-1],[0,1],[0,1],[0,-2],[0,1],[1,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[-1,-1],[0,-2],[0,-2],[0,-1],[0,-1]],[[1713,3192],[-3,0],[0,-10],[-3,-1],[0,3],[-5,0],[0,-3],[-3,0],[0,-5],[1,0],[0,-8],[-1,-1],[0,-2],[-1,0],[0,-3],[0,-3],[0,-3],[-1,0],[0,3],[-2,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,7],[0,11],[0,1],[0,7],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,-3],[0,-2]],[[1650,3307],[0,2],[1,4],[1,2],[1,0],[0,3],[5,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[1,-3],[0,-1],[0,-1],[1,-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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-5],[0,-1],[0,-8],[1,0],[0,-2],[3,0],[0,-16],[3,0],[0,-3],[1,-4],[0,-2],[0,-3],[0,-8],[0,1],[0,2],[1,8],[2,0],[0,8],[0,11],[1,0],[0,6],[0,2],[0,3],[1,0],[1,16],[-1,0],[0,1],[0,2],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[0,-2],[-2,0],[0,6],[0,1],[-1,3],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,2],[1,0],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-5],[0,-1],[0,-1],[0,-1],[1,0],[0,-3],[-2,0],[0,3],[-1,0],[0,-1],[0,-1],[0,-1],[0,5],[-1,0],[1,0],[0,1],[-1,0],[0,5],[-2,0],[0,5],[0,-3],[-1,0],[0,1],[0,1],[0,2],[0,4],[0,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,2],[0,1],[0,2],[4,-1],[1,0],[0,1],[0,3],[0,4],[0,2],[-1,3],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[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,1],[1,3],[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,1],[0,2],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,3],[0,3],[0,2],[0,2],[-1,2],[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],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,7],[-2,0],[0,9],[1,0],[0,6]],[[1673,3534],[1,0],[1,0],[1,0],[0,1],[0,1],[0,8],[0,1],[0,2],[0,3],[1,0],[0,-1],[5,0],[2,0],[2,0],[2,0],[0,1],[5,0]],[[1661,2906],[0,-1],[0,-1],[1,0],[0,-1],[0,-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],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,1]],[[1664,3042],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[1,0]],[[1683,3131],[1,-16],[0,-1],[1,-15],[0,-4],[-1,0],[0,1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-3],[-1,0],[0,1],[0,1],[0,-2],[-1,0],[0,-2],[0,-1],[1,-1],[0,-3],[0,-1],[1,-1],[0,-1],[1,2],[0,1]],[[1683,3081],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-6],[-1,0]],[[1684,3070],[-1,0],[-2,0],[0,-4],[0,-3],[-1,-3],[0,1],[0,1],[0,1],[-3,-10],[0,-3],[0,-2],[0,-1]],[[1677,3047],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[1,0],[-1,0],[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],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,2],[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,-2],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1]],[[1693,3073],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[1693,3062],[-1,-1],[0,2],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,4],[0,-1],[0,3],[0,-1],[-1,0],[0,-1],[-1,0],[0,3]],[[1683,3081],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[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],[1,-3],[0,-1],[0,-1],[1,0],[0,1],[0,2],[-1,2],[0,3],[1,0],[0,3]],[[1689,3101],[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],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[1,0],[0,-2],[0,-1],[0,-1],[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],[0,1],[-1,1],[0,1]],[[1692,3110],[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,2],[1,0],[0,-2],[1,-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,-2],[0,-1],[0,-3],[1,0],[0,-1],[0,-1],[0,-1],[-1,2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2]],[[1689,3101],[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],[1,0],[0,-1],[1,0],[0,1]],[[1710,3118],[0,0]],[[1710,3118],[1,0],[1,0],[0,-4],[1,0],[0,-1],[0,-1],[0,-1]],[[1714,3070],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,2],[0,-3],[0,-2]],[[1712,3057],[0,-1],[-1,-2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1710,3060],[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,0],[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],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,3],[-1,0],[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],[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]],[[1703,3057],[0,0]],[[1703,3057],[0,1],[0,-1]],[[1703,3057],[0,1],[0,-1]],[[1703,3057],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1]],[[1702,3051],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[1701,3046],[0,0]],[[1701,3046],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0]],[[1699,3045],[0,1],[0,1],[0,1]],[[1699,3048],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1]],[[1699,3057],[0,0]],[[1699,3057],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[1699,3062],[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],[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,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,-1],[0,1]],[[1698,3110],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1]],[[1698,3115],[0,0]],[[1698,3115],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[1,0],[1,0],[0,1],[0,1],[0,4],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-3],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0]],[[1728,3040],[0,0]],[[1728,3040],[-1,0],[-1,0],[-1,0],[0,2],[-1,0],[-1,1],[-1,0],[-1,0]],[[1721,3043],[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],[-1,0],[0,-1],[0,4],[-1,0],[0,2],[-1,0],[0,1],[-1,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[0,1]],[[1699,3062],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-4],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,-5],[0,1],[-1,1],[0,-1],[0,2],[0,-1],[-1,0]],[[1694,3054],[0,1],[0,-1],[-1,0],[0,-1],[0,2],[-1,1],[0,1],[1,0],[0,3],[0,2]],[[1692,3110],[0,8],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,-10],[2,0],[1,0],[1,0]],[[1697,2991],[0,-3],[-1,0],[1,-2],[-1,0],[0,2],[0,1],[1,0],[0,2],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,1],[0,-1],[0,1],[0,-1],[0,-2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1]],[[1697,2995],[0,-1],[0,-1],[0,-2]],[[1699,3017],[0,-2],[0,-2],[0,-1]],[[1699,3012],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-7],[0,-1],[0,-2],[0,-1]],[[1697,2996],[-1,-1],[0,1],[1,0],[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],[-1,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,1]],[[1694,2987],[0,1],[1,1],[0,3],[0,-1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1695,3001],[0,1],[0,1],[0,1],[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],[-1,0],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,4],[0,2]],[[1696,3032],[1,0],[0,1],[0,1],[1,0],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[0,-2],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1]],[[1687,2858],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[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],[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],[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],[-1,0],[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],[-1,0],[0,1],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1]],[[1687,2942],[0,-1],[1,0],[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,0],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[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],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[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],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1697,2995],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-2],[0,1],[0,-1]],[[1699,3012],[0,-1],[1,0],[0,-3],[1,0],[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]],[[1703,3011],[0,-1],[0,-1],[0,-1]],[[1703,3008],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,1],[0,-2],[1,-1],[0,-1],[0,-3]],[[1706,2994],[-1,0],[0,1],[-1,0],[0,-3],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[-1,-1],[0,5],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1]],[[1700,2992],[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],[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,1],[0,-1],[0,-1],[0,1],[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],[0,1],[0,1],[1,1],[-1,-1],[0,1],[1,0],[-1,0],[0,-1]],[[1694,3054],[0,-1],[1,0],[-1,-1],[0,-1]],[[1694,3051],[-1,0],[0,-1],[-1,0],[0,-1],[0,3],[-1,-3],[0,-1],[-1,-1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[1692,3035],[-1,-1],[1,-1],[-1,-1],[0,-2],[1,-4],[1,0],[0,-7],[0,-4],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1]],[[1694,2987],[0,1],[0,1],[-1,1],[0,1],[-1,-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],[1,2],[0,2],[0,2],[0,1],[-1,0],[0,1],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,5],[0,1],[0,1],[0,2],[0,1],[0,2],[0,-2],[0,-1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,1],[-1,1],[0,1],[-1,-1]],[[1699,3048],[0,-1],[-1,0],[0,-1],[0,-4],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1]],[[1696,3045],[0,1],[-1,0],[0,2],[-1,1],[1,1],[-1,1]],[[1696,3045],[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]],[[1696,3033],[-1,0],[0,-1],[0,2],[-1,0],[0,-1],[0,1],[0,2],[-1,0],[0,-1],[-1,1],[0,-1],[0,1],[0,-1],[0,-1],[0,1]],[[1696,3033],[0,-1]],[[1721,3043],[0,2],[-4,0],[-1,0]],[[1716,3045],[0,-1],[0,-7],[-2,-3],[0,-1],[0,-1],[0,-7],[-1,0]],[[1713,3025],[0,1],[0,2],[0,1],[0,1],[-1,2],[0,2],[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],[0,1],[0,2],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,3],[1,-1],[0,1],[-1,0],[1,1],[0,1]],[[1709,3051],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,1],[-1,0],[0,1],[1,-1],[0,2],[0,-1],[0,2],[0,1],[0,1],[0,-1],[0,1]],[[1713,3025],[0,-7],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1]],[[1713,3014],[0,0]],[[1713,3014],[-1,0],[0,1],[-1,-1],[0,1],[-1,1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,1],[0,-1],[0,-1]],[[1709,3009],[0,0]],[[1709,3009],[-1,0],[0,-1],[0,1]],[[1708,3009],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,2],[0,-2],[-1,0],[-1,0],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[-1,-1]],[[1703,3011],[-1,0],[0,1],[1,0],[0,1],[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],[0,1],[0,1],[0,1],[0,1],[0,2],[0,3],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[1703,3041],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,-1],[0,-2],[0,-2],[1,
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment