Skip to content

Instantly share code, notes, and snippets.

@rveciana
Last active September 23, 2016 22:24
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/ced3109b372039afbcf7278ba3d14250 to your computer and use it in GitHub Desktop.
Save rveciana/ced3109b372039afbcf7278ba3d14250 to your computer and use it in GitHub Desktop.
geoConicConformalEurope example

This file shows how to use the geoConicConformalEurope projection from d3-composite-projections.

To change the file, edit draw.js and run

browserify draw.js| uglifyjs > bundle.js

The dependencies are installed with:

npm install d3-composite-projections d3-geo d3-request d3-selection d3-transition topojson

(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){var d3_composite=require("d3-composite-projections");var d3_geo=require("d3-geo");var d3_request=require("d3-request");var d3_selection=require("d3-selection");var d3_transition=require("d3-transition");var topojson=require("topojson");var width=960;var height=500;var projection=d3_composite.geoConicConformalEurope();var path=d3_geo.geoPath().projection(projection);var svg=d3_selection.select("body").append("svg").attr("width",width).attr("height",height);var t=d3_transition.transition().on("interrupt",function(d,i){console.info(i)});d3_request.json("nuts0.json",function(error,topojsonData){var us=topojson.feature(topojsonData,topojsonData.objects.nuts0);svg.selectAll(".region").data(us.features).enter().append("path").attr("d",path).attr("class","region").style("fill","#aca").style("stroke","#000").style("stroke-width","0.5px").on("mouseover",function(d,i){d3_selection.select(this).transition(t).style("fill","red")}).on("mouseout",function(d,i){d3_selection.select(this).interrupt();d3_selection.select(this).transition(t).style("fill","#aca")});svg.append("path").style("fill","none").style("stroke","#f00").attr("d",projection.getCompositionBorders())})},{"d3-composite-projections":5,"d3-geo":10,"d3-request":13,"d3-selection":14,"d3-transition":16,topojson:17}],2:[function(require,module,exports){(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory(exports):typeof define==="function"&&define.amd?define(["exports"],factory):factory(global.d3=global.d3||{})})(this,function(exports){"use strict";function ascending(a,b){return a<b?-1:a>b?1:a>=b?0:NaN}function bisector(compare){if(compare.length===1)compare=ascendingComparator(compare);return{left:function(a,x,lo,hi){if(lo==null)lo=0;if(hi==null)hi=a.length;while(lo<hi){var mid=lo+hi>>>1;if(compare(a[mid],x)<0)lo=mid+1;else hi=mid}return lo},right:function(a,x,lo,hi){if(lo==null)lo=0;if(hi==null)hi=a.length;while(lo<hi){var mid=lo+hi>>>1;if(compare(a[mid],x)>0)hi=mid;else lo=mid+1}return lo}}}function ascendingComparator(f){return function(d,x){return ascending(f(d),x)}}var ascendingBisect=bisector(ascending);var bisectRight=ascendingBisect.right;var bisectLeft=ascendingBisect.left;function descending(a,b){return b<a?-1:b>a?1:b>=a?0:NaN}function number(x){return x===null?NaN:+x}function variance(array,f){var n=array.length,m=0,a,d,s=0,i=-1,j=0;if(f==null){while(++i<n){if(!isNaN(a=number(array[i]))){d=a-m;m+=d/++j;s+=d*(a-m)}}}else{while(++i<n){if(!isNaN(a=number(f(array[i],i,array)))){d=a-m;m+=d/++j;s+=d*(a-m)}}}if(j>1)return s/(j-1)}function deviation(array,f){var v=variance(array,f);return v?Math.sqrt(v):v}function extent(array,f){var i=-1,n=array.length,a,b,c;if(f==null){while(++i<n)if((b=array[i])!=null&&b>=b){a=c=b;break}while(++i<n)if((b=array[i])!=null){if(a>b)a=b;if(c<b)c=b}}else{while(++i<n)if((b=f(array[i],i,array))!=null&&b>=b){a=c=b;break}while(++i<n)if((b=f(array[i],i,array))!=null){if(a>b)a=b;if(c<b)c=b}}return[a,c]}var array=Array.prototype;var slice=array.slice;var map=array.map;function constant(x){return function(){return x}}function identity(x){return x}function range(start,stop,step){start=+start,stop=+stop,step=(n=arguments.length)<2?(stop=start,start=0,1):n<3?1:+step;var i=-1,n=Math.max(0,Math.ceil((stop-start)/step))|0,range=new Array(n);while(++i<n){range[i]=start+i*step}return range}var e10=Math.sqrt(50);var e5=Math.sqrt(10);var e2=Math.sqrt(2);function ticks(start,stop,count){var step=tickStep(start,stop,count);return range(Math.ceil(start/step)*step,Math.floor(stop/step)*step+step/2,step)}function tickStep(start,stop,count){var step0=Math.abs(stop-start)/Math.max(0,count),step1=Math.pow(10,Math.floor(Math.log(step0)/Math.LN10)),error=step0/step1;if(error>=e10)step1*=10;else if(error>=e5)step1*=5;else if(error>=e2)step1*=2;return stop<start?-step1:step1}function sturges(values){return Math.ceil(Math.log(values.length)/Math.LN2)+1}function histogram(){var value=identity,domain=extent,threshold=sturges;function histogram(data){var i,n=data.length,x,values=new Array(n);for(i=0;i<n;++i){values[i]=value(data[i],i,data)}var xz=domain(values),x0=xz[0],x1=xz[1],tz=threshold(values,x0,x1);if(!Array.isArray(tz))tz=ticks(x0,x1,tz);var m=tz.length;while(tz[0]<=x0)tz.shift(),--m;while(tz[m-1]>=x1)tz.pop(),--m;var bins=new Array(m+1),bin;for(i=0;i<=m;++i){bin=bins[i]=[];bin.x0=i>0?tz[i-1]:x0;bin.x1=i<m?tz[i]:x1}for(i=0;i<n;++i){x=values[i];if(x0<=x&&x<=x1){bins[bisectRight(tz,x,0,m)].push(data[i])}}return bins}histogram.value=function(_){return arguments.length?(value=typeof _==="function"?_:constant(_),histogram):value};histogram.domain=function(_){return arguments.length?(domain=typeof _==="function"?_:constant([_[0],_[1]]),histogram):domain};histogram.thresholds=function(_){return arguments.length?(threshold=typeof _==="function"?_:Array.isArray(_)?constant(slice.call(_)):constant(_),histogram):threshold};return histogram}function quantile(array,p,f){if(f==null)f=number;if(!(n=array.length))return;if((p=+p)<=0||n<2)return+f(array[0],0,array);if(p>=1)return+f(array[n-1],n-1,array);var n,h=(n-1)*p,i=Math.floor(h),a=+f(array[i],i,array),b=+f(array[i+1],i+1,array);return a+(b-a)*(h-i)}function freedmanDiaconis(values,min,max){values=map.call(values,number).sort(ascending);return Math.ceil((max-min)/(2*(quantile(values,.75)-quantile(values,.25))*Math.pow(values.length,-1/3)))}function scott(values,min,max){return Math.ceil((max-min)/(3.5*deviation(values)*Math.pow(values.length,-1/3)))}function max(array,f){var i=-1,n=array.length,a,b;if(f==null){while(++i<n)if((b=array[i])!=null&&b>=b){a=b;break}while(++i<n)if((b=array[i])!=null&&b>a)a=b}else{while(++i<n)if((b=f(array[i],i,array))!=null&&b>=b){a=b;break}while(++i<n)if((b=f(array[i],i,array))!=null&&b>a)a=b}return a}function mean(array,f){var s=0,n=array.length,a,i=-1,j=n;if(f==null){while(++i<n)if(!isNaN(a=number(array[i])))s+=a;else--j}else{while(++i<n)if(!isNaN(a=number(f(array[i],i,array))))s+=a;else--j}if(j)return s/j}function median(array,f){var numbers=[],n=array.length,a,i=-1;if(f==null){while(++i<n)if(!isNaN(a=number(array[i])))numbers.push(a)}else{while(++i<n)if(!isNaN(a=number(f(array[i],i,array))))numbers.push(a)}return quantile(numbers.sort(ascending),.5)}function merge(arrays){var n=arrays.length,m,i=-1,j=0,merged,array;while(++i<n)j+=arrays[i].length;merged=new Array(j);while(--n>=0){array=arrays[n];m=array.length;while(--m>=0){merged[--j]=array[m]}}return merged}function min(array,f){var i=-1,n=array.length,a,b;if(f==null){while(++i<n)if((b=array[i])!=null&&b>=b){a=b;break}while(++i<n)if((b=array[i])!=null&&a>b)a=b}else{while(++i<n)if((b=f(array[i],i,array))!=null&&b>=b){a=b;break}while(++i<n)if((b=f(array[i],i,array))!=null&&a>b)a=b}return a}function pairs(array){var i=0,n=array.length-1,p=array[0],pairs=new Array(n<0?0:n);while(i<n)pairs[i]=[p,p=array[++i]];return pairs}function permute(array,indexes){var i=indexes.length,permutes=new Array(i);while(i--)permutes[i]=array[indexes[i]];return permutes}function scan(array,compare){if(!(n=array.length))return;var i=0,n,j=0,xi,xj=array[j];if(!compare)compare=ascending;while(++i<n)if(compare(xi=array[i],xj)<0||compare(xj,xj)!==0)xj=xi,j=i;if(compare(xj,xj)===0)return j}function shuffle(array,i0,i1){var m=(i1==null?array.length:i1)-(i0=i0==null?0:+i0),t,i;while(m){i=Math.random()*m--|0;t=array[m+i0];array[m+i0]=array[i+i0];array[i+i0]=t}return array}function sum(array,f){var s=0,n=array.length,a,i=-1;if(f==null){while(++i<n)if(a=+array[i])s+=a}else{while(++i<n)if(a=+f(array[i],i,array))s+=a}return s}function transpose(matrix){if(!(n=matrix.length))return[];for(var i=-1,m=min(matrix,length),transpose=new Array(m);++i<m;){for(var j=-1,n,row=transpose[i]=new Array(n);++j<n;){row[j]=matrix[j][i]}}return transpose}function length(d){return d.length}function zip(){return transpose(arguments)}exports.bisect=bisectRight;exports.bisectRight=bisectRight;exports.bisectLeft=bisectLeft;exports.ascending=ascending;exports.bisector=bisector;exports.descending=descending;exports.deviation=deviation;exports.extent=extent;exports.histogram=histogram;exports.thresholdFreedmanDiaconis=freedmanDiaconis;exports.thresholdScott=scott;exports.thresholdSturges=sturges;exports.max=max;exports.mean=mean;exports.median=median;exports.merge=merge;exports.min=min;exports.pairs=pairs;exports.permute=permute;exports.quantile=quantile;exports.range=range;exports.scan=scan;exports.shuffle=shuffle;exports.sum=sum;exports.ticks=ticks;exports.tickStep=tickStep;exports.transpose=transpose;exports.variance=variance;exports.zip=zip;Object.defineProperty(exports,"__esModule",{value:true})})},{}],3:[function(require,module,exports){(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory(exports):typeof define==="function"&&define.amd?define(["exports"],factory):factory(global.d3=global.d3||{})})(this,function(exports){"use strict";var prefix="$";function Map(){}Map.prototype=map.prototype={constructor:Map,has:function(key){return prefix+key in this},get:function(key){return this[prefix+key]},set:function(key,value){this[prefix+key]=value;return this},remove:function(key){var property=prefix+key;return property in this&&delete this[property]},clear:function(){for(var property in this)if(property[0]===prefix)delete this[property]},keys:function(){var keys=[];for(var property in this)if(property[0]===prefix)keys.push(property.slice(1));return keys},values:function(){var values=[];for(var property in this)if(property[0]===prefix)values.push(this[property]);return values},entries:function(){var entries=[];for(var property in this)if(property[0]===prefix)entries.push({key:property.slice(1),value:this[property]});return entries},size:function(){var size=0;for(var property in this)if(property[0]===prefix)++size;return size},empty:function(){for(var property in this)if(property[0]===prefix)return false;return true},each:function(f){for(var property in this)if(property[0]===prefix)f(this[property],property.slice(1),this)}};function map(object,f){var map=new Map;if(object instanceof Map)object.each(function(value,key){map.set(key,value)});else if(Array.isArray(object)){var i=-1,n=object.length,o;if(f==null)while(++i<n)map.set(i,object[i]);else while(++i<n)map.set(f(o=object[i],i,object),o)}else if(object)for(var key in object)map.set(key,object[key]);return map}function nest(){var keys=[],sortKeys=[],sortValues,rollup,nest;function apply(array,depth,createResult,setResult){if(depth>=keys.length)return rollup!=null?rollup(array):sortValues!=null?array.sort(sortValues):array;var i=-1,n=array.length,key=keys[depth++],keyValue,value,valuesByKey=map(),values,result=createResult();while(++i<n){if(values=valuesByKey.get(keyValue=key(value=array[i])+"")){values.push(value)}else{valuesByKey.set(keyValue,[value])}}valuesByKey.each(function(values,key){setResult(result,key,apply(values,depth,createResult,setResult))});return result}function entries(map,depth){if(++depth>keys.length)return map;var array,sortKey=sortKeys[depth-1];if(rollup!=null&&depth>=keys.length)array=map.entries();else array=[],map.each(function(v,k){array.push({key:k,values:entries(v,depth)})});return sortKey!=null?array.sort(function(a,b){return sortKey(a.key,b.key)}):array}return nest={object:function(array){return apply(array,0,createObject,setObject)},map:function(array){return apply(array,0,createMap,setMap)},entries:function(array){return entries(apply(array,0,createMap,setMap),0)},key:function(d){keys.push(d);return nest},sortKeys:function(order){sortKeys[keys.length-1]=order;return nest},sortValues:function(order){sortValues=order;return nest},rollup:function(f){rollup=f;return nest}}}function createObject(){return{}}function setObject(object,key,value){object[key]=value}function createMap(){return map()}function setMap(map,key,value){map.set(key,value)}function Set(){}var proto=map.prototype;Set.prototype=set.prototype={constructor:Set,has:proto.has,add:function(value){value+="";this[prefix+value]=value;return this},remove:proto.remove,clear:proto.clear,values:proto.keys,size:proto.size,empty:proto.empty,each:proto.each};function set(object,f){var set=new Set;if(object instanceof Set)object.each(function(value){set.add(value)});else if(object){var i=-1,n=object.length;if(f==null)while(++i<n)set.add(object[i]);else while(++i<n)set.add(f(object[i],i,object))}return set}function keys(map){var keys=[];for(var key in map)keys.push(key);return keys}function values(map){var values=[];for(var key in map)values.push(map[key]);return values}function entries(map){var entries=[];for(var key in map)entries.push({key:key,value:map[key]});return entries}exports.nest=nest;exports.set=set;exports.map=map;exports.keys=keys;exports.values=values;exports.entries=entries;Object.defineProperty(exports,"__esModule",{value:true})})},{}],4:[function(require,module,exports){(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory(exports):typeof define==="function"&&define.amd?define(["exports"],factory):factory(global.d3=global.d3||{})})(this,function(exports){"use strict";function define(constructor,factory,prototype){constructor.prototype=factory.prototype=prototype;prototype.constructor=constructor}function extend(parent,definition){var prototype=Object.create(parent.prototype);for(var key in definition)prototype[key]=definition[key];return prototype}function Color(){}var darker=.7;var brighter=1/darker;var reHex3=/^#([0-9a-f]{3})$/;var reHex6=/^#([0-9a-f]{6})$/;var reRgbInteger=/^rgb\(\s*([-+]?\d+)\s*,\s*([-+]?\d+)\s*,\s*([-+]?\d+)\s*\)$/;var reRgbPercent=/^rgb\(\s*([-+]?\d+(?:\.\d+)?)%\s*,\s*([-+]?\d+(?:\.\d+)?)%\s*,\s*([-+]?\d+(?:\.\d+)?)%\s*\)$/;var reRgbaInteger=/^rgba\(\s*([-+]?\d+)\s*,\s*([-+]?\d+)\s*,\s*([-+]?\d+)\s*,\s*([-+]?\d+(?:\.\d+)?)\s*\)$/;var reRgbaPercent=/^rgba\(\s*([-+]?\d+(?:\.\d+)?)%\s*,\s*([-+]?\d+(?:\.\d+)?)%\s*,\s*([-+]?\d+(?:\.\d+)?)%\s*,\s*([-+]?\d+(?:\.\d+)?)\s*\)$/;var reHslPercent=/^hsl\(\s*([-+]?\d+(?:\.\d+)?)\s*,\s*([-+]?\d+(?:\.\d+)?)%\s*,\s*([-+]?\d+(?:\.\d+)?)%\s*\)$/;var reHslaPercent=/^hsla\(\s*([-+]?\d+(?:\.\d+)?)\s*,\s*([-+]?\d+(?:\.\d+)?)%\s*,\s*([-+]?\d+(?:\.\d+)?)%\s*,\s*([-+]?\d+(?:\.\d+)?)\s*\)$/;var named={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};define(Color,color,{displayable:function(){return this.rgb().displayable()},toString:function(){return this.rgb()+""}});function color(format){var m;format=(format+"").trim().toLowerCase();return(m=reHex3.exec(format))?(m=parseInt(m[1],16),new Rgb(m>>8&15|m>>4&240,m>>4&15|m&240,(m&15)<<4|m&15,1)):(m=reHex6.exec(format))?rgbn(parseInt(m[1],16)):(m=reRgbInteger.exec(format))?new Rgb(m[1],m[2],m[3],1):(m=reRgbPercent.exec(format))?new Rgb(m[1]*255/100,m[2]*255/100,m[3]*255/100,1):(m=reRgbaInteger.exec(format))?rgba(m[1],m[2],m[3],m[4]):(m=reRgbaPercent.exec(format))?rgba(m[1]*255/100,m[2]*255/100,m[3]*255/100,m[4]):(m=reHslPercent.exec(format))?hsla(m[1],m[2]/100,m[3]/100,1):(m=reHslaPercent.exec(format))?hsla(m[1],m[2]/100,m[3]/100,m[4]):named.hasOwnProperty(format)?rgbn(named[format]):format==="transparent"?new Rgb(NaN,NaN,NaN,0):null}function rgbn(n){return new Rgb(n>>16&255,n>>8&255,n&255,1)}function rgba(r,g,b,a){if(a<=0)r=g=b=NaN;return new Rgb(r,g,b,a)}function rgbConvert(o){if(!(o instanceof Color))o=color(o);if(!o)return new Rgb;o=o.rgb();return new Rgb(o.r,o.g,o.b,o.opacity)}function rgb(r,g,b,opacity){return arguments.length===1?rgbConvert(r):new Rgb(r,g,b,opacity==null?1:opacity)}function Rgb(r,g,b,opacity){this.r=+r;this.g=+g;this.b=+b;this.opacity=+opacity}define(Rgb,rgb,extend(Color,{brighter:function(k){k=k==null?brighter:Math.pow(brighter,k);return new Rgb(this.r*k,this.g*k,this.b*k,this.opacity)},darker:function(k){k=k==null?darker:Math.pow(darker,k);return new Rgb(this.r*k,this.g*k,this.b*k,this.opacity)},rgb:function(){return this},displayable:function(){return 0<=this.r&&this.r<=255&&(0<=this.g&&this.g<=255)&&(0<=this.b&&this.b<=255)&&(0<=this.opacity&&this.opacity<=1)},toString:function(){var a=this.opacity;a=isNaN(a)?1:Math.max(0,Math.min(1,a));return(a===1?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(a===1?")":", "+a+")")}}));function hsla(h,s,l,a){if(a<=0)h=s=l=NaN;else if(l<=0||l>=1)h=s=NaN;else if(s<=0)h=NaN;return new Hsl(h,s,l,a)}function hslConvert(o){if(o instanceof Hsl)return new Hsl(o.h,o.s,o.l,o.opacity);if(!(o instanceof Color))o=color(o);if(!o)return new Hsl;if(o instanceof Hsl)return o;o=o.rgb();var r=o.r/255,g=o.g/255,b=o.b/255,min=Math.min(r,g,b),max=Math.max(r,g,b),h=NaN,s=max-min,l=(max+min)/2;if(s){if(r===max)h=(g-b)/s+(g<b)*6;else if(g===max)h=(b-r)/s+2;else h=(r-g)/s+4;s/=l<.5?max+min:2-max-min;h*=60}else{s=l>0&&l<1?0:h}return new Hsl(h,s,l,o.opacity)}function hsl(h,s,l,opacity){return arguments.length===1?hslConvert(h):new Hsl(h,s,l,opacity==null?1:opacity)}function Hsl(h,s,l,opacity){this.h=+h;this.s=+s;this.l=+l;this.opacity=+opacity}define(Hsl,hsl,extend(Color,{brighter:function(k){k=k==null?brighter:Math.pow(brighter,k);return new Hsl(this.h,this.s,this.l*k,this.opacity)},darker:function(k){k=k==null?darker:Math.pow(darker,k);return new Hsl(this.h,this.s,this.l*k,this.opacity)},rgb:function(){var h=this.h%360+(this.h<0)*360,s=isNaN(h)||isNaN(this.s)?0:this.s,l=this.l,m2=l+(l<.5?l:1-l)*s,m1=2*l-m2;return new Rgb(hsl2rgb(h>=240?h-240:h+120,m1,m2),hsl2rgb(h,m1,m2),hsl2rgb(h<120?h+240:h-120,m1,m2),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&(0<=this.l&&this.l<=1)&&(0<=this.opacity&&this.opacity<=1)}}));function hsl2rgb(h,m1,m2){return(h<60?m1+(m2-m1)*h/60:h<180?m2:h<240?m1+(m2-m1)*(240-h)/60:m1)*255}var deg2rad=Math.PI/180;var rad2deg=180/Math.PI;var Kn=18;var Xn=.95047;var Yn=1;var Zn=1.08883;var t0=4/29;var t1=6/29;var t2=3*t1*t1;var t3=t1*t1*t1;function labConvert(o){if(o instanceof Lab)return new Lab(o.l,o.a,o.b,o.opacity);if(o instanceof Hcl){var h=o.h*deg2rad;return new Lab(o.l,Math.cos(h)*o.c,Math.sin(h)*o.c,o.opacity)}if(!(o instanceof Rgb))o=rgbConvert(o);var b=rgb2xyz(o.r),a=rgb2xyz(o.g),l=rgb2xyz(o.b),x=xyz2lab((.4124564*b+.3575761*a+.1804375*l)/Xn),y=xyz2lab((.2126729*b+.7151522*a+.072175*l)/Yn),z=xyz2lab((.0193339*b+.119192*a+.9503041*l)/Zn);return new Lab(116*y-16,500*(x-y),200*(y-z),o.opacity)}function lab(l,a,b,opacity){return arguments.length===1?labConvert(l):new Lab(l,a,b,opacity==null?1:opacity)}function Lab(l,a,b,opacity){this.l=+l;this.a=+a;this.b=+b;this.opacity=+opacity}define(Lab,lab,extend(Color,{brighter:function(k){return new Lab(this.l+Kn*(k==null?1:k),this.a,this.b,this.opacity)},darker:function(k){return new Lab(this.l-Kn*(k==null?1:k),this.a,this.b,this.opacity)},rgb:function(){var y=(this.l+16)/116,x=isNaN(this.a)?y:y+this.a/500,z=isNaN(this.b)?y:y-this.b/200;y=Yn*lab2xyz(y);x=Xn*lab2xyz(x);z=Zn*lab2xyz(z);return new Rgb(xyz2rgb(3.2404542*x-1.5371385*y-.4985314*z),xyz2rgb(-.969266*x+1.8760108*y+.041556*z),xyz2rgb(.0556434*x-.2040259*y+1.0572252*z),this.opacity)}}));function xyz2lab(t){return t>t3?Math.pow(t,1/3):t/t2+t0}function lab2xyz(t){return t>t1?t*t*t:t2*(t-t0)}function xyz2rgb(x){return 255*(x<=.0031308?12.92*x:1.055*Math.pow(x,1/2.4)-.055)}function rgb2xyz(x){return(x/=255)<=.04045?x/12.92:Math.pow((x+.055)/1.055,2.4)}function hclConvert(o){if(o instanceof Hcl)return new Hcl(o.h,o.c,o.l,o.opacity);if(!(o instanceof Lab))o=labConvert(o);var h=Math.atan2(o.b,o.a)*rad2deg;return new Hcl(h<0?h+360:h,Math.sqrt(o.a*o.a+o.b*o.b),o.l,o.opacity)}function hcl(h,c,l,opacity){return arguments.length===1?hclConvert(h):new Hcl(h,c,l,opacity==null?1:opacity)}function Hcl(h,c,l,opacity){this.h=+h;this.c=+c;this.l=+l;this.opacity=+opacity}define(Hcl,hcl,extend(Color,{brighter:function(k){return new Hcl(this.h,this.c,this.l+Kn*(k==null?1:k),this.opacity)},darker:function(k){return new Hcl(this.h,this.c,this.l-Kn*(k==null?1:k),this.opacity)},rgb:function(){return labConvert(this).rgb()}}));var A=-.14861;var B=+1.78277;var C=-.29227;var D=-.90649;var E=+1.97294;var ED=E*D;var EB=E*B;var BC_DA=B*C-D*A;function cubehelixConvert(o){if(o instanceof Cubehelix)return new Cubehelix(o.h,o.s,o.l,o.opacity);if(!(o instanceof Rgb))o=rgbConvert(o);var r=o.r/255,g=o.g/255,b=o.b/255,l=(BC_DA*b+ED*r-EB*g)/(BC_DA+ED-EB),bl=b-l,k=(E*(g-l)-C*bl)/D,s=Math.sqrt(k*k+bl*bl)/(E*l*(1-l)),h=s?Math.atan2(k,bl)*rad2deg-120:NaN;return new Cubehelix(h<0?h+360:h,s,l,o.opacity)}function cubehelix(h,s,l,opacity){return arguments.length===1?cubehelixConvert(h):new Cubehelix(h,s,l,opacity==null?1:opacity)}function Cubehelix(h,s,l,opacity){this.h=+h;this.s=+s;this.l=+l;this.opacity=+opacity}define(Cubehelix,cubehelix,extend(Color,{brighter:function(k){k=k==null?brighter:Math.pow(brighter,k);return new Cubehelix(this.h,this.s,this.l*k,this.opacity)},darker:function(k){k=k==null?darker:Math.pow(darker,k);return new Cubehelix(this.h,this.s,this.l*k,this.opacity)},rgb:function(){var h=isNaN(this.h)?0:(this.h+120)*deg2rad,l=+this.l,a=isNaN(this.s)?0:this.s*l*(1-l),cosh=Math.cos(h),sinh=Math.sin(h);return new Rgb(255*(l+a*(A*cosh+B*sinh)),255*(l+a*(C*cosh+D*sinh)),255*(l+a*(E*cosh)),this.opacity)}}));exports.color=color;exports.rgb=rgb;exports.hsl=hsl;exports.lab=lab;exports.hcl=hcl;exports.cubehelix=cubehelix;Object.defineProperty(exports,"__esModule",{value:true})})},{}],5:[function(require,module,exports){(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;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()}}}function albersUsa(){var cache,cacheStream,lower48=d3Geo.geoAlbers(),lower48Point,alaska=d3Geo.geoConicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),alaskaPoint,hawaii=d3Geo.geoConicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),hawaiiPoint,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>=.12&&y<.234&&x>=-.425&&x<-.214?alaska:y>=.166&&y<.234&&x>=-.214&&x<-.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(_*.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-.455*k,y-.238*k],[x+.455*k,y+.238*k]]).stream(pointStream);alaskaPoint=alaska.translate([x-.307*k,y+.201*k]).clipExtent([[x-.425*k+epsilon,y+.12*k+epsilon],[x-.214*k-epsilon,y+.234*k-epsilon]]).stream(pointStream);hawaiiPoint=hawaii.translate([x-.205*k,y+.212*k]).clipExtent([[x-.214*k+epsilon,y+.166*k+epsilon],[x-.115*k-epsilon,y+.234*k-epsilon]]).stream(pointStream);return albersUsa};albersUsa.drawCompositionBorders=function(context){var hawaii1=lower48([-102.91,26.3]);var hawaii2=lower48([-104,27.5]);var hawaii3=lower48([-108,29.1]);var hawaii4=lower48([-110,29.1]);var alaska1=lower48([-110,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)}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()}}}function albersUsaTerritories(){var cache,cacheStream,lower48=d3Geo.geoAlbers(),lower48Point,alaska=d3Geo.geoConicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),alaskaPoint,hawaii=d3Geo.geoConicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),hawaiiPoint,puertoRico=d3Geo.geoConicEqualArea().rotate([66,0]).center([0,18]).parallels([8,18]),puertoRicoPoint,samoa=d3Geo.geoEquirectangular().rotate([173,14]),samoaPoint,guam=d3Geo.geoEquirectangular().rotate([-145,-16.8]),guamPoint,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)||(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;return(y>=.12&&y<.234&&x>=-.425&&x<-.214?alaska:y>=.166&&y<.234&&x>=-.214&&x<-.115?hawaii:y>=.2064&&y<.2413&&x>=.312&&x<.385?puertoRico:y>=.09&&y<.1197&&x>=-.4243&&x<-.3232?samoa:y>=-.0518&&y<.0895&&x>=-.4243&&x<-.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(_*.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];lower48Point=lower48.translate(_).clipExtent([[x-.455*k,y-.238*k],[x+.455*k,y+.238*k]]).stream(pointStream);alaskaPoint=alaska.translate([x-.307*k,y+.201*k]).clipExtent([[x-.425*k+epsilon,y+.12*k+epsilon],[x-.214*k-epsilon,y+.233*k-epsilon]]).stream(pointStream);hawaiiPoint=hawaii.translate([x-.205*k,y+.212*k]).clipExtent([[x-.214*k+epsilon,y+.166*k+epsilon],[x-.115*k-epsilon,y+.233*k-epsilon]]).stream(pointStream);puertoRicoPoint=puertoRico.translate([x+.35*k,y+.224*k]).clipExtent([[x+.312*k+epsilon,y+.2064*k+epsilon],[x+.385*k-epsilon,y+.233*k-epsilon]]).stream(pointStream);samoaPoint=samoa.translate([x-.492*k,y+.09*k]).clipExtent([[x-.4243*k+epsilon,y+.0903*k+epsilon],[x-.3233*k-epsilon,y+.1197*k-epsilon]]).stream(pointStream);guamPoint=guam.translate([x-.408*k,y+.018*k]).clipExtent([[x-.4244*k+epsilon,y-.0519*k+epsilon],[x-.3824*k-epsilon,y+.0895*k-epsilon]]).stream(pointStream);return albersUsa};albersUsa.drawCompositionBorders=function(context){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)}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()}}}}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]}};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;return(y>=.05346&&y<.0897&&x>=-.13388&&x<-.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];iberianPeninsulePoint=iberianPeninsule.translate(_).clipExtent([[x-.06857*k,y-.1288*k],[x+.13249*k,y+.05292*k]]).stream(pointStream);canaryIslandsPoint=canaryIslands.translate([x+.1*k,y-.094*k]).clipExtent([[x-.1331*k+epsilon,y+.053457*k+epsilon],[x-.0354*k-epsilon,y+.08969*k-epsilon]]).stream(pointStream);return conicConformalSpain};conicConformalSpain.drawCompositionBorders=function(context){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)}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()}}}}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]}};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;return(y>=.0093&&y<.03678&&x>=-.03875&&x<-.0116?madeira:y>=-.0412&&y<.0091&&x>=-.07782&&x<-.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(_*.6);return conicConformalPortugal.translate(iberianPeninsule.translate())};conicConformalPortugal.translate=function(_){if(!arguments.length){return iberianPeninsule.translate()}var k=iberianPeninsule.scale(),x=+_[0],y=+_[1];iberianPeninsulePoint=iberianPeninsule.translate(_).clipExtent([[x-.0115*k,y-.1138*k],[x+.2105*k,y+.0673*k]]).stream(pointStream);madeiraPoint=madeira.translate([x-.0265*k,y+.025*k]).clipExtent([[x-.0388*k+epsilon,y+.0093*k+epsilon],[x-.0116*k-epsilon,y+.0368*k-epsilon]]).stream(pointStream);azoresPoint=azores.translate([x-.045*k,y+-.02*k]).clipExtent([[x-.0778*k+epsilon,y-.0413*k+epsilon],[x-.0117*k-epsilon,y+.0091*k-epsilon]]).stream(pointStream);return conicConformalPortugal};conicConformalPortugal.drawCompositionBorders=function(context){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)}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()}}}}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]}};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;return(y>=-.0676&&y<-.026&&x>=-.0857&&x<-.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];mainlandPoint=mainland.translate(_).clipExtent([[x-.0262*k,y-.0734*k],[x+.1741*k,y+.079*k]]).stream(pointStream);galapagosPoint=galapagos.translate([x-.06*k,y-.04*k]).clipExtent([[x-.0857*k+epsilon,y-.0676*k+epsilon],[x-.0263*k-epsilon,y-.026*k-epsilon]]).stream(pointStream);return mercatorEcuador};mercatorEcuador.drawCompositionBorders=function(context){var ulgalapagos=mainland([-84.9032,2.3757]);var urgalapagos=mainland([-81.5047,2.3708]);var ldgalapagos=mainland([-81.5063,-.01]);var llgalapagos=mainland([-84.9086,-.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)}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()}}}}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]}};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;return(y>=.2582&&y<.32&&x>=-.1036&&x<-.087?antarctic:y>=-.01298&&y<.0133&&x>=-.11396&&x<-.05944?juanFernandez:y>=.01539&&y<.03911&&x>=-.089&&x<-.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(_*.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];mainlandPoint=mainland.translate(_).clipExtent([[x-.059*k,y-.3835*k],[x+.4498*k,y+.3375*k]]).stream(pointStream);antarcticPoint=antarctic.translate([x-.087*k,y+.17*k]).clipExtent([[x-.1166*k+epsilon,y+.2582*k+epsilon],[x-.06*k-epsilon,y+.32*k-epsilon]]).stream(pointStream);juanFernandezPoint=juanFernandez.translate([x-.092*k,y-0*k]).clipExtent([[x-.114*k+epsilon,y-.013*k+epsilon],[x-.0594*k-epsilon,y+.0133*k-epsilon]]).stream(pointStream);pascuaPoint=pascua.translate([x-.089*k,y-.0265*k]).clipExtent([[x-.089*k+epsilon,y+.0154*k+epsilon],[x-.0588*k-epsilon,y+.0391*k-epsilon]]).stream(pointStream);return transverseMercatorChile};transverseMercatorChile.drawCompositionBorders=function(context){var ulantarctic=mainland([-82.6999,-51.3043]);var urantarctic=mainland([-77.5442,-51.6631]);var ldantarctic=mainland([-78.0254,-55.186]);var llantarctic=mainland([-83.6106,-54.7785]);var uljuanFernandez=mainland([-80.0638,-35.984]);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)}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()}}}}function conicEquidistantJapan(){var cache,cacheStream,mainland=d3Geo.geoConicEquidistant().rotate([-136,-22]).parallels([40,34]),mainlandPoint,hokkaido=d3Geo.geoConicEquidistant().rotate([-146,-26]).parallels([40,34]),hokkaidoPoint,okinawa=d3Geo.geoConicEquidistant().rotate([-126,-19]).parallels([40,34]),okinawaPoint,point,pointStream={point:function(x,y){point=[x,y]}};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;return(y>=-.10925&&y<-.02701&&x>=-.135&&x<-.0397?hokkaido:y>=.04713&&y<.11138&&x>=-.03986&&x<.051?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(_*.7);return conicEquidistantJapan.translate(mainland.translate())};conicEquidistantJapan.translate=function(_){if(!arguments.length){return mainland.translate()}var k=mainland.scale(),x=+_[0],y=+_[1];mainlandPoint=mainland.translate(_).clipExtent([[x-.1352*k,y-.1091*k],[x+.117*k,y+.098*k]]).stream(pointStream);hokkaidoPoint=hokkaido.translate([x-.0425*k,y-.005*k]).clipExtent([[x-.135*k+epsilon,y-.1093*k+epsilon],[x-.0397*k-epsilon,y-.027*k-epsilon]]).stream(pointStream);okinawaPoint=okinawa.translate(_).clipExtent([[x-.0399*k+epsilon,y+.0471*k+epsilon],[x+.051*k-epsilon,y+.1114*k-epsilon]]).stream(pointStream);return conicEquidistantJapan};conicEquidistantJapan.drawCompositionBorders=function(context){var ulhokkaido=mainland([126.01320483689143,41.621090310215585]);var urhokkaido=mainland([133.04304387025903,42.15087523707186]);var ldhokkaido=mainland([133.3021766080688,37.43975444725098]);var llhokkaido=mainland([126.87889168628224,36.95488945159779]);var llokinawa=mainland([132.9,29.8]);var lmokinawa=mainland([134,33]);var lrokinawa=mainland([139.3,33.2]);var llrokinawa=mainland([139.16,30.5]);context.moveTo(ulhokkaido[0],ulhokkaido[1]);context.lineTo(urhokkaido[0],urhokkaido[1]);context.lineTo(ldhokkaido[0],ldhokkaido[1]);context.lineTo(llhokkaido[0],llhokkaido[1]);context.closePath();context.moveTo(llokinawa[0],llokinawa[1]);context.lineTo(lmokinawa[0],lmokinawa[1]);context.lineTo(lrokinawa[0],lrokinawa[1]);context.lineTo(llrokinawa[0],llrokinawa[1])};conicEquidistantJapan.getCompositionBorders=function(){var context=d3Path.path();this.drawCompositionBorders(context);return context.toString()};return conicEquidistantJapan.scale(2200)}function multiplex$7(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()}}}}function conicConformalFrance(){var cache,cacheStream,europe=d3Geo.geoConicConformal().rotate([-3,-46.2]).parallels([0,60]),europePoint,guyane=d3Geo.geoMercator().center([-53.2,3.9]),guyanePoint,martinique=d3Geo.geoMercator().center([-61.03,14.67]),martiniquePoint,guadeloupe=d3Geo.geoMercator().center([-61.46,16.14]),guadeloupePoint,saintBarthlemy=d3Geo.geoMercator().center([-62.85,17.92]),saintBarthlemyPoint,stPierreMichelon=d3Geo.geoMercator().center([-56.23,46.93]),stPierreMichelonPoint,mayotte=d3Geo.geoMercator().center([45.16,-12.8]),mayottePoint,reunion=d3Geo.geoMercator().center([55.52,-21.13]),reunionPoint,nouvelleCaledonie=d3Geo.geoMercator().center([165.8,-21.07]),nouvelleCaledoniePoint,wallisFutuna=d3Geo.geoMercator().center([-178.1,-14.3]),wallisFutunaPoint,polynesie=d3Geo.geoMercator().center([-150.55,-17.11]),polynesiePoint,polynesie2=d3Geo.geoMercator().center([-150.55,-17.11]),polynesie2Point,point,pointStream={point:function(x,y){point=[x,y]}};function conicConformalFrance(coordinates){var x=coordinates[0],y=coordinates[1];return point=null,(europePoint.point(x,y),point)||(guyanePoint.point(x,y),point)||(martiniquePoint.point(x,y),point)||(guadeloupePoint.point(x,y),point)||(saintBarthlemyPoint.point(x,y),point)||(stPierreMichelonPoint.point(x,y),point)||(mayottePoint.point(x,y),point)||(reunionPoint.point(x,y),point)||(nouvelleCaledoniePoint.point(x,y),point)||(wallisFutunaPoint.point(x,y),point)||(polynesiePoint.point(x,y),point)||(polynesie2Point.point(x,y),point)}conicConformalFrance.invert=function(coordinates){var k=europe.scale(),t=europe.translate(),x=(coordinates[0]-t[0])/k,y=(coordinates[1]-t[1])/k;return(y>=.029&&y<.0864&&x>=-.14&&x<-.0996?guyane:y>=0&&y<.029&&x>=-.14&&x<-.0996?martinique:y>=-.032&&y<0&&x>=-.14&&x<-.0996?guadeloupe:y>=-.052&&y<-.032&&x>=-.14&&x<-.0996?saintBarthlemy:y>=-.076&&y<.052&&x>=-.14&&x<-.0996?stPierreMichelon:y>=-.076&&y<-.052&&x>=.0967&&x<.1371?mayotte:y>=-.052&&y<-.02&&x>=.0967&&x<.1371?reunion:y>=-.02&&y<.012&&x>=.0967&&x<.1371?nouvelleCaledonie:y>=.012&&y<.033&&x>=.0967&&x<.1371?wallisFutuna:y>=.033&&y<.0864&&x>=.0967&&x<.1371?polynesie:europe).invert(coordinates)};conicConformalFrance.stream=function(stream){return cache&&cacheStream===stream?cache:cache=multiplex$7([europe.stream(cacheStream=stream),guyane.stream(stream),martinique.stream(stream),guadeloupe.stream(stream),saintBarthlemy.stream(stream),stPierreMichelon.stream(stream),mayotte.stream(stream),reunion.stream(stream),nouvelleCaledonie.stream(stream),wallisFutuna.stream(stream),polynesie.stream(stream),polynesie2.stream(stream)])};conicConformalFrance.precision=function(_){if(!arguments.length){return europe.precision()}europe.precision(_);guyane.precision(_);martinique.precision(_);guadeloupe.precision(_);saintBarthlemy.precision(_);stPierreMichelon.precision(_);mayotte.precision(_);reunion.precision(_);nouvelleCaledonie.precision(_);wallisFutuna.precision(_);polynesie.precision(_);polynesie2.precision(_);return conicConformalFrance};conicConformalFrance.scale=function(_){if(!arguments.length){return europe.scale()}europe.scale(_);guyane.scale(_*.6);martinique.scale(_*1.6);guadeloupe.scale(_*1.4);saintBarthlemy.scale(_*5);stPierreMichelon.scale(_*1.3);mayotte.scale(_*1.6);reunion.scale(_*1.2);nouvelleCaledonie.scale(_*.3);wallisFutuna.scale(_*2.7);polynesie.scale(_*.5);polynesie2.scale(_*.06);return conicConformalFrance.translate(europe.translate())};conicConformalFrance.translate=function(_){if(!arguments.length){return europe.translate()}var k=europe.scale(),x=+_[0],y=+_[1];europePoint=europe.translate(_).clipExtent([[x-.0996*k,y-.0908*k],[x+.0967*k,y+.0864*k]]).stream(pointStream);guyanePoint=guyane.translate([x-.12*k,y+.0575*k]).clipExtent([[x-.14*k+epsilon,y+.029*k+epsilon],[x-.0996*k-epsilon,y+.0864*k-epsilon]]).stream(pointStream);martiniquePoint=martinique.translate([x-.12*k,y+.013*k]).clipExtent([[x-.14*k+epsilon,y+0*k+epsilon],[x-.0996*k-epsilon,y+.029*k-epsilon]]).stream(pointStream);guadeloupePoint=guadeloupe.translate([x-.12*k,y-.014*k]).clipExtent([[x-.14*k+epsilon,y-.032*k+epsilon],[x-.0996*k-epsilon,y+0*k-epsilon]]).stream(pointStream);saintBarthlemyPoint=saintBarthlemy.translate([x-.12*k,y-.044*k]).clipExtent([[x-.14*k+epsilon,y-.052*k+epsilon],[x-.0996*k-epsilon,y-.032*k-epsilon]]).stream(pointStream);stPierreMichelonPoint=stPierreMichelon.translate([x-.12*k,y-.065*k]).clipExtent([[x-.14*k+epsilon,y-.076*k+epsilon],[x-.0996*k-epsilon,y-.052*k-epsilon]]).stream(pointStream);mayottePoint=mayotte.translate([x+.117*k,y-.064*k]).clipExtent([[x+.0967*k+epsilon,y-.076*k+epsilon],[x+.1371*k-epsilon,y-.052*k-epsilon]]).stream(pointStream);reunionPoint=reunion.translate([x+.116*k,y-.0355*k]).clipExtent([[x+.0967*k+epsilon,y-.052*k+epsilon],[x+.1371*k-epsilon,y-.02*k-epsilon]]).stream(pointStream);nouvelleCaledoniePoint=nouvelleCaledonie.translate([x+.116*k,y-.0048*k]).clipExtent([[x+.0967*k+epsilon,y-.02*k+epsilon],[x+.1371*k-epsilon,y+.012*k-epsilon]]).stream(pointStream);wallisFutunaPoint=wallisFutuna.translate([x+.116*k,y+.022*k]).clipExtent([[x+.0967*k+epsilon,y+.012*k+epsilon],[x+.1371*k-epsilon,y+.033*k-epsilon]]).stream(pointStream);polynesie2Point=polynesie2.translate([x+.11*k,y+.045*k]).clipExtent([[x+.0967*k+epsilon,y+.033*k+epsilon],[x+.1371*k-epsilon,y+.06*k-epsilon]]).stream(pointStream);polynesiePoint=polynesie.translate([x+.115*k,y+.075*k]).clipExtent([[x+.0967*k+epsilon,y+.06*k+epsilon],[x+.1371*k-epsilon,y+.0864*k-epsilon]]).stream(pointStream);return conicConformalFrance};conicConformalFrance.drawCompositionBorders=function(context){var ul,ur,ld,ll;ul=europe([-7.938886725111036,43.7219460918835]);ur=europe([-4.832080896458295,44.12930268549372]);ld=europe([-4.205299743793263,40.98096346967365]);ll=europe([-7.071796453126152,40.610037319181444]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([-8.42751373617692,45.32889452553031]);ur=europe([-5.18599305777107,45.7566442062976]);ld=europe([-4.832080905154431,44.129302726751426]);ll=europe([-7.938886737126192,43.72194613263854]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([-9.012656899657046,47.127733821030176]);ur=europe([-5.6105244772793155,47.579777861410626]);ld=europe([-5.185993067168585,45.756644248170346]);ll=europe([-8.427513749141811,45.32889456686326]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([-9.405747558985553,48.26506375557457]);ur=europe([-5.896175018439575,48.733352850851624]);ld=europe([-5.610524487556043,47.57977790393761]);ll=europe([-9.012656913808351,47.127733862971255]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([-9.908436061346974,49.642448789505856]);ur=europe([-6.262026716233124,50.131426841787174]);ld=europe([-5.896175029331232,48.73335289377258]);ll=europe([-9.40574757396393,48.26506379787767]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([11.996907706504462,50.16039028163579]);ur=europe([15.649907879773343,49.68279246765253]);ld=europe([15.156712840526632,48.30371557625831]);ll=europe([11.64122661754411,48.761078240546816]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([11.641226606955788,48.7610781975889]);ur=europe([15.156712825832164,48.30371553390465]);ld=europe([14.549932166241172,46.4866532486199]);ll=europe([11.204443787952183,46.91899233914248]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([11.204443778297161,46.918992296823646]);ur=europe([14.549932152815039,46.486653206856396]);ld=europe([13.994409796764009,44.695833444323256]);ll=europe([10.805306599253848,45.105133870684924]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([10.805306590412085,45.10513382903308]);ur=europe([13.99440978444733,44.695833403183606]);ld=europe([13.654633799024392,43.53552468558152]);ll=europe([10.561516803980956,43.930671459798624]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([10.561516795617383,43.93067141859757]);ur=europe([13.654633787361952,43.5355246448671]);ld=europe([12.867691604239901,40.640701985019405]);ll=europe([9.997809515987688,41.00288343254471]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([10.8,42.4]);ur=europe([12.8,42.13]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1])};conicConformalFrance.getCompositionBorders=function(){var context=d3Path.path();this.drawCompositionBorders(context);return context.toString()};return conicConformalFrance.scale(2700)}function multiplex$8(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()}}}}function conicConformalEurope(){var cache,cacheStream,europe=d3Geo.geoConicConformal().rotate([-10,-53]).parallels([0,60]),europePoint,guadeloupe=d3Geo.geoMercator().center([-61.46,16.14]),guadeloupePoint,guyane=d3Geo.geoMercator().center([-53.2,3.9]),guyanePoint,azores=d3Geo.geoConicConformal().rotate([27.8,-38.9]).parallels([0,60]),azoresPoint,azores2=d3Geo.geoConicConformal().rotate([25.43,-37.398]).parallels([0,60]),azores2Point,azores3=d3Geo.geoConicConformal().rotate([31.17,-39.539]).parallels([0,60]),azores3Point,madeira=d3Geo.geoConicConformal().rotate([17,-32.7]).parallels([0,60]),madeiraPoint,canaryIslands=d3Geo.geoConicConformal().rotate([16,-28.5]).parallels([0,60]),canaryIslandsPoint,martinique=d3Geo.geoMercator().center([-61.03,14.67]),martiniquePoint,mayotte=d3Geo.geoMercator().center([45.16,-12.8]),mayottePoint,reunion=d3Geo.geoMercator().center([55.52,-21.13]),reunionPoint,malta=d3Geo.geoConicConformal().rotate([-14.4,-35.95]).parallels([0,60]),maltaPoint,point,pointStream={point:function(x,y){point=[x,y]}};function conicConformalEurope(coordinates){var x=coordinates[0],y=coordinates[1];return point=null,(europePoint.point(x,y),point)||(guyanePoint.point(x,y),point)||(martiniquePoint.point(x,y),point)||(guadeloupePoint.point(x,y),point)||(canaryIslandsPoint.point(x,y),point)||(madeiraPoint.point(x,y),point)||(mayottePoint.point(x,y),point)||(reunionPoint.point(x,y),point)||(maltaPoint.point(x,y),point)||(azoresPoint.point(x,y),point)||(azores2Point.point(x,y),point)||(azores3Point.point(x,y),point)}conicConformalEurope.invert=function(coordinates){var k=europe.scale(),t=europe.translate(),x=(coordinates[0]-(t[0]+.08*k))/k,y=(coordinates[1]-t[1])/k;return(y>=-.31&&y<-.24&&x>=.14&&x<.24?guadeloupe:y>=-.24&&y<-.17&&x>=.14&&x<.24?guyane:y>=-.17&&y<-.12&&x>=.21&&x<.24?azores2:y>=-.17&&y<-.14&&x>=.14&&x<.165?azores3:y>=-.17&&y<-.1&&x>=.14&&x<.24?azores:y>=-.1&&y<-.03&&x>=.14&&x<.24?madeira:y>=-.03&&y<.04&&x>=.14&&x<.24?canaryIslands:y>=-.31&&y<-.24&&x>=.24&&x<.34?martinique:y>=-.24&&y<-.17&&x>=.24&&x<.34?mayotte:y>=-.17&&y<-.1&&x>=.24&&x<.34?reunion:y>=-.1&&y<-.03&&x>=.24&&x<.34?malta:europe).invert(coordinates)};conicConformalEurope.stream=function(stream){return cache&&cacheStream===stream?cache:cache=multiplex$8([europe.stream(cacheStream=stream),guyane.stream(stream),martinique.stream(stream),guadeloupe.stream(stream),canaryIslands.stream(stream),madeira.stream(stream),mayotte.stream(stream),reunion.stream(stream),malta.stream(stream),azores.stream(stream),azores2.stream(stream),azores3.stream(stream)])};conicConformalEurope.precision=function(_){if(!arguments.length){return europe.precision()}europe.precision(_);guyane.precision(_);martinique.precision(_);guadeloupe.precision(_);canaryIslands.precision(_);madeira.precision(_);mayotte.precision(_);reunion.precision(_);malta.precision(_);azores.precision(_);azores2.precision(_);azores3.precision(_);return conicConformalEurope};conicConformalEurope.scale=function(_){if(!arguments.length){return europe.scale()}europe.scale(_);guadeloupe.scale(_*3);guyane.scale(_*.8);martinique.scale(_*3.5);reunion.scale(_*2.7);azores.scale(_*2);azores2.scale(_*2);azores3.scale(_*2);madeira.scale(_*3);canaryIslands.scale(_);mayotte.scale(_*5.5);
malta.scale(_*6);return conicConformalEurope.translate(europe.translate())};conicConformalEurope.translate=function(_){if(!arguments.length){return europe.translate()}var k=europe.scale(),x=+_[0],y=+_[1];europePoint=europe.translate([x-.08*k,y]).clipExtent([[x-.51*k,y-.33*k],[x+.5*k,y+.33*k]]).stream(pointStream);guadeloupePoint=guadeloupe.translate([x+.19*k,y-.275*k]).clipExtent([[x+.14*k+epsilon,y-.31*k+epsilon],[x+.24*k-epsilon,y-.24*k-epsilon]]).stream(pointStream);guyanePoint=guyane.translate([x+.19*k,y-.205*k]).clipExtent([[x+.14*k+epsilon,y-.24*k+epsilon],[x+.24*k-epsilon,y-.17*k-epsilon]]).stream(pointStream);azoresPoint=azores.translate([x+.19*k,y-.135*k]).clipExtent([[x+.14*k+epsilon,y-.17*k+epsilon],[x+.24*k-epsilon,y-.1*k-epsilon]]).stream(pointStream);azores2Point=azores2.translate([x+.225*k,y-.147*k]).clipExtent([[x+.21*k+epsilon,y-.17*k+epsilon],[x+.24*k-epsilon,y-.12*k-epsilon]]).stream(pointStream);azores3Point=azores3.translate([x+.153*k,y-.15*k]).clipExtent([[x+.14*k+epsilon,y-.17*k+epsilon],[x+.165*k-epsilon,y-.14*k-epsilon]]).stream(pointStream);madeiraPoint=madeira.translate([x+.19*k,y-.065*k]).clipExtent([[x+.14*k+epsilon,y-.1*k+epsilon],[x+.24*k-epsilon,y-.03*k-epsilon]]).stream(pointStream);canaryIslandsPoint=canaryIslands.translate([x+.19*k,y+.005*k]).clipExtent([[x+.14*k+epsilon,y-.03*k+epsilon],[x+.24*k-epsilon,y+.04*k-epsilon]]).stream(pointStream);martiniquePoint=martinique.translate([x+.29*k,y-.275*k]).clipExtent([[x+.24*k+epsilon,y-.31*k+epsilon],[x+.34*k-epsilon,y-.24*k-epsilon]]).stream(pointStream);mayottePoint=mayotte.translate([x+.29*k,y-.205*k]).clipExtent([[x+.24*k+epsilon,y-.24*k+epsilon],[x+.34*k-epsilon,y-.17*k-epsilon]]).stream(pointStream);reunionPoint=reunion.translate([x+.29*k,y-.135*k]).clipExtent([[x+.24*k+epsilon,y-.17*k+epsilon],[x+.34*k-epsilon,y-.1*k-epsilon]]).stream(pointStream);maltaPoint=malta.translate([x+.29*k,y-.065*k]).clipExtent([[x+.24*k+epsilon,y-.1*k+epsilon],[x+.34*k-epsilon,y-.03*k-epsilon]]).stream(pointStream);return conicConformalEurope};conicConformalEurope.drawCompositionBorders=function(context){var ul,ur,ld,ll;ul=europe([42.45755610828648,63.343658547914934]);ur=europe([52.65837266667029,59.35045080290929]);ld=europe([47.19754502247785,56.12653496548117]);ll=europe([37.673034273363044,59.61638268506111]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([59.41110754003403,62.35069727399336]);ur=europe([66.75050228640794,57.11797303636038]);ld=europe([60.236065725110436,54.63331433818992]);ll=europe([52.65837313153311,59.350450804599355]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([48.81091130080243,66.93353402634641]);ur=europe([59.41110730654679,62.35069740653086]);ld=europe([52.6583728974441,59.3504509222445]);ll=europe([42.45755631675751,63.34365868805821]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([31.054198418446475,52.1080673766184]);ur=europe([39.09869284884117,49.400700047190554]);ld=europe([36.0580811499175,46.02944174908498]);ll=europe([28.690508588835726,48.433126979386415]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([33.977877745912025,55.849945501331]);ur=europe([42.75328432167726,52.78455122462353]);ld=europe([39.09869297540224,49.400700176148625]);ll=europe([31.05419851807008,52.10806751810923]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([52.658372900759296,59.35045068526415]);ur=europe([60.23606549583304,54.63331423800264]);ld=europe([54.6756370953122,51.892298789399455]);ll=europe([47.19754524788189,56.126534861222794]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([47.19754506082455,56.126534735591456]);ur=europe([54.675636900123514,51.892298681337095]);ld=europe([49.94448648951486,48.98775484983285]);ll=europe([42.75328468716108,52.78455126060818]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([42.75328453416769,52.78455113209101]);ur=europe([49.94448632339758,48.98775473706457]);ld=europe([45.912339990394315,45.99361784987003]);ll=europe([39.09869317356607,49.40070009378711]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([37.673034114296634,59.61638254183119]);ur=europe([47.197544835420544,56.126534839849846]);ld=europe([42.75328447467064,52.78455135314068]);ll=europe([33.977877870363905,55.849945644671145]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([44.56748486446032,57.26489367845818]);ld=europe([43.9335791193588,53.746540942601726]);ll=europe([43,56]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath();ul=europe([37.673034114296634,59.61638254183119]);ur=europe([40.25902691953466,58.83002044222639]);ld=europe([38.458270492742024,57.26232178028002]);ll=europe([35.97754948030156,58.00266637992386]);context.moveTo(ul[0],ul[1]);context.lineTo(ur[0],ur[1]);context.lineTo(ld[0],ld[1]);context.lineTo(ll[0],ll[1]);context.closePath()};conicConformalEurope.getCompositionBorders=function(){var context=d3Path.path();this.drawCompositionBorders(context);return context.toString()};return conicConformalEurope.scale(750)}exports.geoAlbersUsa=albersUsa;exports.geoAlbersUsaTerritories=albersUsaTerritories;exports.geoConicConformalSpain=conicConformalSpain;exports.geoConicConformalPortugal=conicConformalPortugal;exports.geoMercatorEcuador=mercatorEcuador;exports.geoTransverseMercatorChile=transverseMercatorChile;exports.geoConicEquidistantJapan=conicEquidistantJapan;exports.geoConicConformalFrance=conicConformalFrance;exports.geoConicConformalEurope=conicConformalEurope;Object.defineProperty(exports,"__esModule",{value:true})})},{"d3-geo":6,"d3-path":12}],6:[function(require,module,exports){(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory(exports,require("d3-array")):typeof define==="function"&&define.amd?define(["exports","d3-array"],factory):factory(global.d3=global.d3||{},global.d3)})(this,function(exports,d3Array){"use strict";function adder(){return new Adder}function Adder(){this.reset()}Adder.prototype={constructor:Adder,reset:function(){this.s=this.t=0},add:function(y){add(temp,y,this.t);add(this,temp.s,this.s);if(this.s)this.t+=temp.t;else this.s=temp.t},valueOf:function(){return this.s}};var temp=new Adder;function add(adder,a,b){var x=adder.s=a+b,bv=x-a,av=x-bv;adder.t=a-av+(b-bv)}var epsilon=1e-6;var epsilon2=1e-12;var pi=Math.PI;var halfPi=pi/2;var quarterPi=pi/4;var tau=pi*2;var degrees=180/pi;var radians=pi/180;var abs=Math.abs;var atan=Math.atan;var atan2=Math.atan2;var cos=Math.cos;var ceil=Math.ceil;var exp=Math.exp;var log=Math.log;var pow=Math.pow;var sin=Math.sin;var sign=Math.sign||function(x){return x>0?1:x<0?-1:0};var sqrt=Math.sqrt;var tan=Math.tan;function acos(x){return x>1?0:x<-1?pi:Math.acos(x)}function asin(x){return x>1?halfPi:x<-1?-halfPi:Math.asin(x)}function haversin(x){return(x=sin(x/2))*x}function noop(){}function streamGeometry(geometry,stream){if(geometry&&streamGeometryType.hasOwnProperty(geometry.type)){streamGeometryType[geometry.type](geometry,stream)}}var streamObjectType={Feature:function(feature,stream){streamGeometry(feature.geometry,stream)},FeatureCollection:function(object,stream){var features=object.features,i=-1,n=features.length;while(++i<n)streamGeometry(features[i].geometry,stream)}};var streamGeometryType={Sphere:function(object,stream){stream.sphere()},Point:function(object,stream){object=object.coordinates;stream.point(object[0],object[1],object[2])},MultiPoint:function(object,stream){var coordinates=object.coordinates,i=-1,n=coordinates.length;while(++i<n)object=coordinates[i],stream.point(object[0],object[1],object[2])},LineString:function(object,stream){streamLine(object.coordinates,stream,0)},MultiLineString:function(object,stream){var coordinates=object.coordinates,i=-1,n=coordinates.length;while(++i<n)streamLine(coordinates[i],stream,0)},Polygon:function(object,stream){streamPolygon(object.coordinates,stream)},MultiPolygon:function(object,stream){var coordinates=object.coordinates,i=-1,n=coordinates.length;while(++i<n)streamPolygon(coordinates[i],stream)},GeometryCollection:function(object,stream){var geometries=object.geometries,i=-1,n=geometries.length;while(++i<n)streamGeometry(geometries[i],stream)}};function streamLine(coordinates,stream,closed){var i=-1,n=coordinates.length-closed,coordinate;stream.lineStart();while(++i<n)coordinate=coordinates[i],stream.point(coordinate[0],coordinate[1],coordinate[2]);stream.lineEnd()}function streamPolygon(coordinates,stream){var i=-1,n=coordinates.length;stream.polygonStart();while(++i<n)streamLine(coordinates[i],stream,1);stream.polygonEnd()}function geoStream(object,stream){if(object&&streamObjectType.hasOwnProperty(object.type)){streamObjectType[object.type](object,stream)}else{streamGeometry(object,stream)}}var areaRingSum=adder();var areaSum=adder();var lambda00;var phi00;var lambda0;var cosPhi0;var sinPhi0;var areaStream={point:noop,lineStart:noop,lineEnd:noop,polygonStart:function(){areaRingSum.reset();areaStream.lineStart=areaRingStart;areaStream.lineEnd=areaRingEnd},polygonEnd:function(){var areaRing=+areaRingSum;areaSum.add(areaRing<0?tau+areaRing:areaRing);this.lineStart=this.lineEnd=this.point=noop},sphere:function(){areaSum.add(tau)}};function areaRingStart(){areaStream.point=areaPointFirst}function areaRingEnd(){areaPoint(lambda00,phi00)}function areaPointFirst(lambda,phi){areaStream.point=areaPoint;lambda00=lambda,phi00=phi;lambda*=radians,phi*=radians;lambda0=lambda,cosPhi0=cos(phi=phi/2+quarterPi),sinPhi0=sin(phi)}function areaPoint(lambda,phi){lambda*=radians,phi*=radians;phi=phi/2+quarterPi;var dLambda=lambda-lambda0,sdLambda=dLambda>=0?1:-1,adLambda=sdLambda*dLambda,cosPhi=cos(phi),sinPhi=sin(phi),k=sinPhi0*sinPhi,u=cosPhi0*cosPhi+k*cos(adLambda),v=k*sdLambda*sin(adLambda);areaRingSum.add(atan2(v,u));lambda0=lambda,cosPhi0=cosPhi,sinPhi0=sinPhi}function area(object){areaSum.reset();geoStream(object,areaStream);return areaSum*2}function spherical(cartesian){return[atan2(cartesian[1],cartesian[0]),asin(cartesian[2])]}function cartesian(spherical){var lambda=spherical[0],phi=spherical[1],cosPhi=cos(phi);return[cosPhi*cos(lambda),cosPhi*sin(lambda),sin(phi)]}function cartesianDot(a,b){return a[0]*b[0]+a[1]*b[1]+a[2]*b[2]}function cartesianCross(a,b){return[a[1]*b[2]-a[2]*b[1],a[2]*b[0]-a[0]*b[2],a[0]*b[1]-a[1]*b[0]]}function cartesianAddInPlace(a,b){a[0]+=b[0],a[1]+=b[1],a[2]+=b[2]}function cartesianScale(vector,k){return[vector[0]*k,vector[1]*k,vector[2]*k]}function cartesianNormalizeInPlace(d){var l=sqrt(d[0]*d[0]+d[1]*d[1]+d[2]*d[2]);d[0]/=l,d[1]/=l,d[2]/=l}var lambda0$1;var phi0;var lambda1;var phi1;var lambda2;var lambda00$1;var phi00$1;var p0;var deltaSum=adder();var ranges;var range$1;var boundsStream={point:boundsPoint,lineStart:boundsLineStart,lineEnd:boundsLineEnd,polygonStart:function(){boundsStream.point=boundsRingPoint;boundsStream.lineStart=boundsRingStart;boundsStream.lineEnd=boundsRingEnd;deltaSum.reset();areaStream.polygonStart()},polygonEnd:function(){areaStream.polygonEnd();boundsStream.point=boundsPoint;boundsStream.lineStart=boundsLineStart;boundsStream.lineEnd=boundsLineEnd;if(areaRingSum<0)lambda0$1=-(lambda1=180),phi0=-(phi1=90);else if(deltaSum>epsilon)phi1=90;else if(deltaSum<-epsilon)phi0=-90;range$1[0]=lambda0$1,range$1[1]=lambda1}};function boundsPoint(lambda,phi){ranges.push(range$1=[lambda0$1=lambda,lambda1=lambda]);if(phi<phi0)phi0=phi;if(phi>phi1)phi1=phi}function linePoint(lambda,phi){var p=cartesian([lambda*radians,phi*radians]);if(p0){var normal=cartesianCross(p0,p),equatorial=[normal[1],-normal[0],0],inflection=cartesianCross(equatorial,normal);cartesianNormalizeInPlace(inflection);inflection=spherical(inflection);var delta=lambda-lambda2,sign=delta>0?1:-1,lambdai=inflection[0]*degrees*sign,phii,antimeridian=abs(delta)>180;if(antimeridian^(sign*lambda2<lambdai&&lambdai<sign*lambda)){phii=inflection[1]*degrees;if(phii>phi1)phi1=phii}else if(lambdai=(lambdai+360)%360-180,antimeridian^(sign*lambda2<lambdai&&lambdai<sign*lambda)){phii=-inflection[1]*degrees;if(phii<phi0)phi0=phii}else{if(phi<phi0)phi0=phi;if(phi>phi1)phi1=phi}if(antimeridian){if(lambda<lambda2){if(angle(lambda0$1,lambda)>angle(lambda0$1,lambda1))lambda1=lambda}else{if(angle(lambda,lambda1)>angle(lambda0$1,lambda1))lambda0$1=lambda}}else{if(lambda1>=lambda0$1){if(lambda<lambda0$1)lambda0$1=lambda;if(lambda>lambda1)lambda1=lambda}else{if(lambda>lambda2){if(angle(lambda0$1,lambda)>angle(lambda0$1,lambda1))lambda1=lambda}else{if(angle(lambda,lambda1)>angle(lambda0$1,lambda1))lambda0$1=lambda}}}}else{boundsPoint(lambda,phi)}p0=p,lambda2=lambda}function boundsLineStart(){boundsStream.point=linePoint}function boundsLineEnd(){range$1[0]=lambda0$1,range$1[1]=lambda1;boundsStream.point=boundsPoint;p0=null}function boundsRingPoint(lambda,phi){if(p0){var delta=lambda-lambda2;deltaSum.add(abs(delta)>180?delta+(delta>0?360:-360):delta)}else{lambda00$1=lambda,phi00$1=phi}areaStream.point(lambda,phi);linePoint(lambda,phi)}function boundsRingStart(){areaStream.lineStart()}function boundsRingEnd(){boundsRingPoint(lambda00$1,phi00$1);areaStream.lineEnd();if(abs(deltaSum)>epsilon)lambda0$1=-(lambda1=180);range$1[0]=lambda0$1,range$1[1]=lambda1;p0=null}function angle(lambda0,lambda1){return(lambda1-=lambda0)<0?lambda1+360:lambda1}function rangeCompare(a,b){return a[0]-b[0]}function rangeContains(range,x){return range[0]<=range[1]?range[0]<=x&&x<=range[1]:x<range[0]||range[1]<x}function bounds(feature){var i,n,a,b,merged,deltaMax,delta;phi1=lambda1=-(lambda0$1=phi0=Infinity);ranges=[];geoStream(feature,boundsStream);if(n=ranges.length){ranges.sort(rangeCompare);for(i=1,a=ranges[0],merged=[a];i<n;++i){b=ranges[i];if(rangeContains(a,b[0])||rangeContains(a,b[1])){if(angle(a[0],b[1])>angle(a[0],a[1]))a[1]=b[1];if(angle(b[0],a[1])>angle(a[0],a[1]))a[0]=b[0]}else{merged.push(a=b)}}for(deltaMax=-Infinity,n=merged.length-1,i=0,a=merged[n];i<=n;a=b,++i){b=merged[i];if((delta=angle(a[1],b[0]))>deltaMax)deltaMax=delta,lambda0$1=b[0],lambda1=a[1]}}ranges=range$1=null;return lambda0$1===Infinity||phi0===Infinity?[[NaN,NaN],[NaN,NaN]]:[[lambda0$1,phi0],[lambda1,phi1]]}var W0;var W1;var X0;var Y0;var Z0;var X1;var Y1;var Z1;var X2;var Y2;var Z2;var lambda00$2;var phi00$2;var x0;var y0;var z0;var centroidStream={sphere:noop,point:centroidPoint,lineStart:centroidLineStart,lineEnd:centroidLineEnd,polygonStart:function(){centroidStream.lineStart=centroidRingStart;centroidStream.lineEnd=centroidRingEnd},polygonEnd:function(){centroidStream.lineStart=centroidLineStart;centroidStream.lineEnd=centroidLineEnd}};function centroidPoint(lambda,phi){lambda*=radians,phi*=radians;var cosPhi=cos(phi);centroidPointCartesian(cosPhi*cos(lambda),cosPhi*sin(lambda),sin(phi))}function centroidPointCartesian(x,y,z){++W0;X0+=(x-X0)/W0;Y0+=(y-Y0)/W0;Z0+=(z-Z0)/W0}function centroidLineStart(){centroidStream.point=centroidLinePointFirst}function centroidLinePointFirst(lambda,phi){lambda*=radians,phi*=radians;var cosPhi=cos(phi);x0=cosPhi*cos(lambda);y0=cosPhi*sin(lambda);z0=sin(phi);centroidStream.point=centroidLinePoint;centroidPointCartesian(x0,y0,z0)}function centroidLinePoint(lambda,phi){lambda*=radians,phi*=radians;var cosPhi=cos(phi),x=cosPhi*cos(lambda),y=cosPhi*sin(lambda),z=sin(phi),w=atan2(sqrt((w=y0*z-z0*y)*w+(w=z0*x-x0*z)*w+(w=x0*y-y0*x)*w),x0*x+y0*y+z0*z);W1+=w;X1+=w*(x0+(x0=x));Y1+=w*(y0+(y0=y));Z1+=w*(z0+(z0=z));centroidPointCartesian(x0,y0,z0)}function centroidLineEnd(){centroidStream.point=centroidPoint}function centroidRingStart(){centroidStream.point=centroidRingPointFirst}function centroidRingEnd(){centroidRingPoint(lambda00$2,phi00$2);centroidStream.point=centroidPoint}function centroidRingPointFirst(lambda,phi){lambda00$2=lambda,phi00$2=phi;lambda*=radians,phi*=radians;centroidStream.point=centroidRingPoint;var cosPhi=cos(phi);x0=cosPhi*cos(lambda);y0=cosPhi*sin(lambda);z0=sin(phi);centroidPointCartesian(x0,y0,z0)}function centroidRingPoint(lambda,phi){lambda*=radians,phi*=radians;var cosPhi=cos(phi),x=cosPhi*cos(lambda),y=cosPhi*sin(lambda),z=sin(phi),cx=y0*z-z0*y,cy=z0*x-x0*z,cz=x0*y-y0*x,m=sqrt(cx*cx+cy*cy+cz*cz),u=x0*x+y0*y+z0*z,v=m&&-acos(u)/m,w=atan2(m,u);X2+=v*cx;Y2+=v*cy;Z2+=v*cz;W1+=w;X1+=w*(x0+(x0=x));Y1+=w*(y0+(y0=y));Z1+=w*(z0+(z0=z));centroidPointCartesian(x0,y0,z0)}function centroid(object){W0=W1=X0=Y0=Z0=X1=Y1=Z1=X2=Y2=Z2=0;geoStream(object,centroidStream);var x=X2,y=Y2,z=Z2,m=x*x+y*y+z*z;if(m<epsilon2){x=X1,y=Y1,z=Z1;if(W1<epsilon)x=X0,y=Y0,z=Z0;m=x*x+y*y+z*z;if(m<epsilon2)return[NaN,NaN]}return[atan2(y,x)*degrees,asin(z/sqrt(m))*degrees]}function constant(x){return function(){return x}}function compose(a,b){function compose(x,y){return x=a(x,y),b(x[0],x[1])}if(a.invert&&b.invert)compose.invert=function(x,y){return x=b.invert(x,y),x&&a.invert(x[0],x[1])};return compose}function rotationIdentity(lambda,phi){return[lambda>pi?lambda-tau:lambda<-pi?lambda+tau:lambda,phi]}rotationIdentity.invert=rotationIdentity;function rotateRadians(deltaLambda,deltaPhi,deltaGamma){return(deltaLambda%=tau)?deltaPhi||deltaGamma?compose(rotationLambda(deltaLambda),rotationPhiGamma(deltaPhi,deltaGamma)):rotationLambda(deltaLambda):deltaPhi||deltaGamma?rotationPhiGamma(deltaPhi,deltaGamma):rotationIdentity}function forwardRotationLambda(deltaLambda){return function(lambda,phi){return lambda+=deltaLambda,[lambda>pi?lambda-tau:lambda<-pi?lambda+tau:lambda,phi]}}function rotationLambda(deltaLambda){var rotation=forwardRotationLambda(deltaLambda);rotation.invert=forwardRotationLambda(-deltaLambda);return rotation}function rotationPhiGamma(deltaPhi,deltaGamma){var cosDeltaPhi=cos(deltaPhi),sinDeltaPhi=sin(deltaPhi),cosDeltaGamma=cos(deltaGamma),sinDeltaGamma=sin(deltaGamma);function rotation(lambda,phi){var cosPhi=cos(phi),x=cos(lambda)*cosPhi,y=sin(lambda)*cosPhi,z=sin(phi),k=z*cosDeltaPhi+x*sinDeltaPhi;return[atan2(y*cosDeltaGamma-k*sinDeltaGamma,x*cosDeltaPhi-z*sinDeltaPhi),asin(k*cosDeltaGamma+y*sinDeltaGamma)]}rotation.invert=function(lambda,phi){var cosPhi=cos(phi),x=cos(lambda)*cosPhi,y=sin(lambda)*cosPhi,z=sin(phi),k=z*cosDeltaGamma-y*sinDeltaGamma;return[atan2(y*cosDeltaGamma+z*sinDeltaGamma,x*cosDeltaPhi+k*sinDeltaPhi),asin(k*cosDeltaPhi-x*sinDeltaPhi)]};return rotation}function rotation(rotate){rotate=rotateRadians(rotate[0]*radians,rotate[1]*radians,rotate.length>2?rotate[2]*radians:0);function forward(coordinates){coordinates=rotate(coordinates[0]*radians,coordinates[1]*radians);return coordinates[0]*=degrees,coordinates[1]*=degrees,coordinates}forward.invert=function(coordinates){coordinates=rotate.invert(coordinates[0]*radians,coordinates[1]*radians);return coordinates[0]*=degrees,coordinates[1]*=degrees,coordinates};return forward}function circleStream(stream,radius,delta,direction,t0,t1){if(!delta)return;var cosRadius=cos(radius),sinRadius=sin(radius),step=direction*delta;if(t0==null){t0=radius+direction*tau;t1=radius-step/2}else{t0=circleRadius(cosRadius,t0);t1=circleRadius(cosRadius,t1);if(direction>0?t0<t1:t0>t1)t0+=direction*tau}for(var point,t=t0;direction>0?t>t1:t<t1;t-=step){point=spherical([cosRadius,-sinRadius*cos(t),-sinRadius*sin(t)]);stream.point(point[0],point[1])}}function circleRadius(cosRadius,point){point=cartesian(point),point[0]-=cosRadius;cartesianNormalizeInPlace(point);var radius=acos(-point[1]);return((-point[2]<0?-radius:radius)+tau-epsilon)%tau}function circle(){var center=constant([0,0]),radius=constant(90),precision=constant(6),ring,rotate,stream={point:point};function point(x,y){ring.push(x=rotate(x,y));x[0]*=degrees,x[1]*=degrees}function circle(){var c=center.apply(this,arguments),r=radius.apply(this,arguments)*radians,p=precision.apply(this,arguments)*radians;ring=[];rotate=rotateRadians(-c[0]*radians,-c[1]*radians,0).invert;circleStream(stream,r,p,1);c={type:"Polygon",coordinates:[ring]};ring=rotate=null;return c}circle.center=function(_){return arguments.length?(center=typeof _==="function"?_:constant([+_[0],+_[1]]),circle):center};circle.radius=function(_){return arguments.length?(radius=typeof _==="function"?_:constant(+_),circle):radius};circle.precision=function(_){return arguments.length?(precision=typeof _==="function"?_:constant(+_),circle):precision};return circle}function clipBuffer(){var lines=[],line;return{point:function(x,y){line.push([x,y])},lineStart:function(){lines.push(line=[])},lineEnd:noop,rejoin:function(){if(lines.length>1)lines.push(lines.pop().concat(lines.shift()))},result:function(){var result=lines;lines=[];line=null;return result}}}function clipLine(a,b,x0,y0,x1,y1){var ax=a[0],ay=a[1],bx=b[0],by=b[1],t0=0,t1=1,dx=bx-ax,dy=by-ay,r;r=x0-ax;if(!dx&&r>0)return;r/=dx;if(dx<0){if(r<t0)return;if(r<t1)t1=r}else if(dx>0){if(r>t1)return;if(r>t0)t0=r}r=x1-ax;if(!dx&&r<0)return;r/=dx;if(dx<0){if(r>t1)return;if(r>t0)t0=r}else if(dx>0){if(r<t0)return;if(r<t1)t1=r}r=y0-ay;if(!dy&&r>0)return;r/=dy;if(dy<0){if(r<t0)return;if(r<t1)t1=r}else if(dy>0){if(r>t1)return;if(r>t0)t0=r}r=y1-ay;if(!dy&&r<0)return;r/=dy;if(dy<0){if(r>t1)return;if(r>t0)t0=r}else if(dy>0){if(r<t0)return;if(r<t1)t1=r}if(t0>0)a[0]=ax+t0*dx,a[1]=ay+t0*dy;if(t1<1)b[0]=ax+t1*dx,b[1]=ay+t1*dy;return true}function pointEqual(a,b){return abs(a[0]-b[0])<epsilon&&abs(a[1]-b[1])<epsilon}function Intersection(point,points,other,entry){this.x=point;this.z=points;this.o=other;this.e=entry;this.v=false;this.n=this.p=null}function clipPolygon(segments,compareIntersection,startInside,interpolate,stream){var subject=[],clip=[],i,n;segments.forEach(function(segment){if((n=segment.length-1)<=0)return;var n,p0=segment[0],p1=segment[n],x;if(pointEqual(p0,p1)){stream.lineStart();for(i=0;i<n;++i)stream.point((p0=segment[i])[0],p0[1]);stream.lineEnd();return}subject.push(x=new Intersection(p0,segment,null,true));clip.push(x.o=new Intersection(p0,null,x,false));subject.push(x=new Intersection(p1,segment,null,false));clip.push(x.o=new Intersection(p1,null,x,true))});if(!subject.length)return;clip.sort(compareIntersection);link(subject);link(clip);for(i=0,n=clip.length;i<n;++i){clip[i].e=startInside=!startInside}var start=subject[0],points,point;while(1){var current=start,isSubject=true;while(current.v)if((current=current.n)===start)return;points=current.z;stream.lineStart();do{current.v=current.o.v=true;if(current.e){if(isSubject){for(i=0,n=points.length;i<n;++i)stream.point((point=points[i])[0],point[1])}else{interpolate(current.x,current.n.x,1,stream)}current=current.n}else{if(isSubject){points=current.p.z;for(i=points.length-1;i>=0;--i)stream.point((point=points[i])[0],point[1])}else{interpolate(current.x,current.p.x,-1,stream)}current=current.p}current=current.o;points=current.z;isSubject=!isSubject}while(!current.v);stream.lineEnd()}}function link(array){if(!(n=array.length))return;var n,i=0,a=array[0],b;while(++i<n){a.n=b=array[i];b.p=a;a=b}a.n=b=array[0];b.p=a}var clipMax=1e9;var clipMin=-clipMax;function clipExtent(x0,y0,x1,y1){function visible(x,y){return x0<=x&&x<=x1&&y0<=y&&y<=y1}function interpolate(from,to,direction,stream){var a=0,a1=0;if(from==null||(a=corner(from,direction))!==(a1=corner(to,direction))||comparePoint(from,to)<0^direction>0){do stream.point(a===0||a===3?x0:x1,a>1?y1:y0);while((a=(a+direction+4)%4)!==a1)}else{stream.point(to[0],to[1])}}function corner(p,direction){return abs(p[0]-x0)<epsilon?direction>0?0:3:abs(p[0]-x1)<epsilon?direction>0?2:1:abs(p[1]-y0)<epsilon?direction>0?1:0:direction>0?3:2}function compareIntersection(a,b){return comparePoint(a.x,b.x)}function comparePoint(a,b){var ca=corner(a,1),cb=corner(b,1);return ca!==cb?ca-cb:ca===0?b[1]-a[1]:ca===1?a[0]-b[0]:ca===2?a[1]-b[1]:b[0]-a[0]}return function(stream){var activeStream=stream,bufferStream=clipBuffer(),segments,polygon,ring,x__,y__,v__,x_,y_,v_,first,clean;var clipStream={point:point,lineStart:lineStart,lineEnd:lineEnd,polygonStart:polygonStart,polygonEnd:polygonEnd};function point(x,y){if(visible(x,y))activeStream.point(x,y)}function polygonInside(){var winding=0;for(var i=0,n=polygon.length;i<n;++i){for(var ring=polygon[i],j=1,m=ring.length,point=ring[0],a0,a1,b0=point[0],b1=point[1];j<m;++j){a0=b0,a1=b1,point=ring[j],b0=point[0],b1=point[1];if(a1<=y1){if(b1>y1&&(b0-a0)*(y1-a1)>(b1-a1)*(x0-a0))++winding}else{if(b1<=y1&&(b0-a0)*(y1-a1)<(b1-a1)*(x0-a0))--winding}}}return winding}function polygonStart(){activeStream=bufferStream,segments=[],polygon=[],clean=true}function polygonEnd(){var startInside=polygonInside(),cleanInside=clean&&startInside,visible=(segments=d3Array.merge(segments)).length;if(cleanInside||visible){stream.polygonStart();if(cleanInside){stream.lineStart();interpolate(null,null,1,stream);stream.lineEnd()}if(visible){clipPolygon(segments,compareIntersection,startInside,interpolate,stream)}stream.polygonEnd()}activeStream=stream,segments=polygon=ring=null}function lineStart(){clipStream.point=linePoint;if(polygon)polygon.push(ring=[]);first=true;v_=false;x_=y_=NaN}function lineEnd(){if(segments){linePoint(x__,y__);if(v__&&v_)bufferStream.rejoin();segments.push(bufferStream.result())}clipStream.point=point;if(v_)activeStream.lineEnd()}function linePoint(x,y){var v=visible(x,y);if(polygon)ring.push([x,y]);if(first){x__=x,y__=y,v__=v;first=false;if(v){activeStream.lineStart();activeStream.point(x,y)}}else{if(v&&v_)activeStream.point(x,y);else{var a=[x_=Math.max(clipMin,Math.min(clipMax,x_)),y_=Math.max(clipMin,Math.min(clipMax,y_))],b=[x=Math.max(clipMin,Math.min(clipMax,x)),y=Math.max(clipMin,Math.min(clipMax,y))];if(clipLine(a,b,x0,y0,x1,y1)){if(!v_){activeStream.lineStart();activeStream.point(a[0],a[1])}activeStream.point(b[0],b[1]);if(!v)activeStream.lineEnd();clean=false}else if(v){activeStream.lineStart();activeStream.point(x,y);clean=false}}}x_=x,y_=y,v_=v}return clipStream}}function extent(){var x0=0,y0=0,x1=960,y1=500,cache,cacheStream,clip;return clip={stream:function(stream){return cache&&cacheStream===stream?cache:cache=clipExtent(x0,y0,x1,y1)(cacheStream=stream)},extent:function(_){return arguments.length?(x0=+_[0][0],y0=+_[0][1],x1=+_[1][0],y1=+_[1][1],cache=cacheStream=null,clip):[[x0,y0],[x1,y1]]}}}var lengthSum=adder();var lambda0$2;var sinPhi0$1;var cosPhi0$1;var lengthStream={sphere:noop,point:noop,lineStart:lengthLineStart,lineEnd:noop,polygonStart:noop,polygonEnd:noop};function lengthLineStart(){lengthStream.point=lengthPointFirst;lengthStream.lineEnd=lengthLineEnd}function lengthLineEnd(){lengthStream.point=lengthStream.lineEnd=noop}function lengthPointFirst(lambda,phi){lambda*=radians,phi*=radians;lambda0$2=lambda,sinPhi0$1=sin(phi),cosPhi0$1=cos(phi);lengthStream.point=lengthPoint}function lengthPoint(lambda,phi){lambda*=radians,phi*=radians;var sinPhi=sin(phi),cosPhi=cos(phi),delta=abs(lambda-lambda0$2),cosDelta=cos(delta),sinDelta=sin(delta),x=cosPhi*sinDelta,y=cosPhi0$1*sinPhi-sinPhi0$1*cosPhi*cosDelta,z=sinPhi0$1*sinPhi+cosPhi0$1*cosPhi*cosDelta;lengthSum.add(atan2(sqrt(x*x+y*y),z));lambda0$2=lambda,sinPhi0$1=sinPhi,cosPhi0$1=cosPhi}function length(object){lengthSum.reset();geoStream(object,lengthStream);return+lengthSum}var coordinates=[null,null];var object={type:"LineString",coordinates:coordinates};function distance(a,b){coordinates[0]=a;coordinates[1]=b;return length(object)}function graticuleX(y0,y1,dy){var y=d3Array.range(y0,y1-epsilon,dy).concat(y1);return function(x){return y.map(function(y){return[x,y]})}}function graticuleY(x0,x1,dx){var x=d3Array.range(x0,x1-epsilon,dx).concat(x1);return function(y){return x.map(function(x){return[x,y]})}}function graticule(){var x1,x0,X1,X0,y1,y0,Y1,Y0,dx=10,dy=dx,DX=90,DY=360,x,y,X,Y,precision=2.5;function graticule(){return{type:"MultiLineString",coordinates:lines()}}function lines(){return d3Array.range(ceil(X0/DX)*DX,X1,DX).map(X).concat(d3Array.range(ceil(Y0/DY)*DY,Y1,DY).map(Y)).concat(d3Array.range(ceil(x0/dx)*dx,x1,dx).filter(function(x){return abs(x%DX)>epsilon}).map(x)).concat(d3Array.range(ceil(y0/dy)*dy,y1,dy).filter(function(y){return abs(y%DY)>epsilon}).map(y))}graticule.lines=function(){return lines().map(function(coordinates){return{type:"LineString",coordinates:coordinates}})};graticule.outline=function(){return{type:"Polygon",coordinates:[X(X0).concat(Y(Y1).slice(1),X(X1).reverse().slice(1),Y(Y0).reverse().slice(1))]}};graticule.extent=function(_){if(!arguments.length)return graticule.extentMinor();return graticule.extentMajor(_).extentMinor(_)};graticule.extentMajor=function(_){if(!arguments.length)return[[X0,Y0],[X1,Y1]];X0=+_[0][0],X1=+_[1][0];Y0=+_[0][1],Y1=+_[1][1];if(X0>X1)_=X0,X0=X1,X1=_;if(Y0>Y1)_=Y0,Y0=Y1,Y1=_;return graticule.precision(precision)};graticule.extentMinor=function(_){if(!arguments.length)return[[x0,y0],[x1,y1]];x0=+_[0][0],x1=+_[1][0];y0=+_[0][1],y1=+_[1][1];if(x0>x1)_=x0,x0=x1,x1=_;if(y0>y1)_=y0,y0=y1,y1=_;return graticule.precision(precision)};graticule.step=function(_){if(!arguments.length)return graticule.stepMinor();return graticule.stepMajor(_).stepMinor(_)};graticule.stepMajor=function(_){if(!arguments.length)return[DX,DY];DX=+_[0],DY=+_[1];return graticule};graticule.stepMinor=function(_){if(!arguments.length)return[dx,dy];dx=+_[0],dy=+_[1];return graticule};graticule.precision=function(_){if(!arguments.length)return precision;precision=+_;x=graticuleX(y0,y1,90);y=graticuleY(x0,x1,precision);X=graticuleX(Y0,Y1,90);Y=graticuleY(X0,X1,precision);return graticule};return graticule.extentMajor([[-180,-90+epsilon],[180,90-epsilon]]).extentMinor([[-180,-80-epsilon],[180,80+epsilon]])}function interpolate(a,b){var x0=a[0]*radians,y0=a[1]*radians,x1=b[0]*radians,y1=b[1]*radians,cy0=cos(y0),sy0=sin(y0),cy1=cos(y1),sy1=sin(y1),kx0=cy0*cos(x0),ky0=cy0*sin(x0),kx1=cy1*cos(x1),ky1=cy1*sin(x1),d=2*asin(sqrt(haversin(y1-y0)+cy0*cy1*haversin(x1-x0))),k=sin(d);var interpolate=d?function(t){var B=sin(t*=d)/k,A=sin(d-t)/k,x=A*kx0+B*kx1,y=A*ky0+B*ky1,z=A*sy0+B*sy1;return[atan2(y,x)*degrees,atan2(z,sqrt(x*x+y*y))*degrees]}:function(){return[x0*degrees,y0*degrees]};interpolate.distance=d;return interpolate}function identity(x){return x}var areaSum$1=adder();var areaRingSum$1=adder();var x00;var y00;var x0$1;var y0$1;var areaStream$1={point:noop,lineStart:noop,lineEnd:noop,polygonStart:function(){areaStream$1.lineStart=areaRingStart$1;areaStream$1.lineEnd=areaRingEnd$1},polygonEnd:function(){areaStream$1.lineStart=areaStream$1.lineEnd=areaStream$1.point=noop;areaSum$1.add(abs(areaRingSum$1));areaRingSum$1.reset()},result:function(){var area=areaSum$1/2;areaSum$1.reset();return area}};function areaRingStart$1(){areaStream$1.point=areaPointFirst$1}function areaPointFirst$1(x,y){areaStream$1.point=areaPoint$1;x00=x0$1=x,y00=y0$1=y}function areaPoint$1(x,y){areaRingSum$1.add(y0$1*x-x0$1*y);x0$1=x,y0$1=y}function areaRingEnd$1(){areaPoint$1(x00,y00)}var x0$2=Infinity;var y0$2=x0$2;var x1=-x0$2;var y1=x1;var boundsStream$1={point:boundsPoint$1,lineStart:noop,lineEnd:noop,polygonStart:noop,polygonEnd:noop,result:function(){var bounds=[[x0$2,y0$2],[x1,y1]];x1=y1=-(y0$2=x0$2=Infinity);return bounds}};function boundsPoint$1(x,y){if(x<x0$2)x0$2=x;if(x>x1)x1=x;if(y<y0$2)y0$2=y;if(y>y1)y1=y}var X0$1=0;var Y0$1=0;var Z0$1=0;var X1$1=0;var Y1$1=0;var Z1$1=0;var X2$1=0;var Y2$1=0;var Z2$1=0;var x00$1;var y00$1;var x0$3;var y0$3;var centroidStream$1={point:centroidPoint$1,lineStart:centroidLineStart$1,lineEnd:centroidLineEnd$1,polygonStart:function(){centroidStream$1.lineStart=centroidRingStart$1;
centroidStream$1.lineEnd=centroidRingEnd$1},polygonEnd:function(){centroidStream$1.point=centroidPoint$1;centroidStream$1.lineStart=centroidLineStart$1;centroidStream$1.lineEnd=centroidLineEnd$1},result:function(){var centroid=Z2$1?[X2$1/Z2$1,Y2$1/Z2$1]:Z1$1?[X1$1/Z1$1,Y1$1/Z1$1]:Z0$1?[X0$1/Z0$1,Y0$1/Z0$1]:[NaN,NaN];X0$1=Y0$1=Z0$1=X1$1=Y1$1=Z1$1=X2$1=Y2$1=Z2$1=0;return centroid}};function centroidPoint$1(x,y){X0$1+=x;Y0$1+=y;++Z0$1}function centroidLineStart$1(){centroidStream$1.point=centroidPointFirstLine}function centroidPointFirstLine(x,y){centroidStream$1.point=centroidPointLine;centroidPoint$1(x0$3=x,y0$3=y)}function centroidPointLine(x,y){var dx=x-x0$3,dy=y-y0$3,z=sqrt(dx*dx+dy*dy);X1$1+=z*(x0$3+x)/2;Y1$1+=z*(y0$3+y)/2;Z1$1+=z;centroidPoint$1(x0$3=x,y0$3=y)}function centroidLineEnd$1(){centroidStream$1.point=centroidPoint$1}function centroidRingStart$1(){centroidStream$1.point=centroidPointFirstRing}function centroidRingEnd$1(){centroidPointRing(x00$1,y00$1)}function centroidPointFirstRing(x,y){centroidStream$1.point=centroidPointRing;centroidPoint$1(x00$1=x0$3=x,y00$1=y0$3=y)}function centroidPointRing(x,y){var dx=x-x0$3,dy=y-y0$3,z=sqrt(dx*dx+dy*dy);X1$1+=z*(x0$3+x)/2;Y1$1+=z*(y0$3+y)/2;Z1$1+=z;z=y0$3*x-x0$3*y;X2$1+=z*(x0$3+x);Y2$1+=z*(y0$3+y);Z2$1+=z*3;centroidPoint$1(x0$3=x,y0$3=y)}function PathContext(context){this._context=context}PathContext.prototype={_radius:4.5,pointRadius:function(_){return this._radius=_,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){if(this._line===0)this._context.closePath();this._point=NaN},point:function(x,y){switch(this._point){case 0:{this._context.moveTo(x,y);this._point=1;break}case 1:{this._context.lineTo(x,y);break}default:{this._context.moveTo(x+this._radius,y);this._context.arc(x,y,this._radius,0,tau);break}}},result:noop};function PathString(){this._string=[]}PathString.prototype={_circle:circle$1(4.5),pointRadius:function(_){return this._circle=circle$1(_),this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){if(this._line===0)this._string.push("Z");this._point=NaN},point:function(x,y){switch(this._point){case 0:{this._string.push("M",x,",",y);this._point=1;break}case 1:{this._string.push("L",x,",",y);break}default:{this._string.push("M",x,",",y,this._circle);break}}},result:function(){if(this._string.length){var result=this._string.join("");this._string=[];return result}}};function circle$1(radius){return"m0,"+radius+"a"+radius+","+radius+" 0 1,1 0,"+-2*radius+"a"+radius+","+radius+" 0 1,1 0,"+2*radius+"z"}function index(){var pointRadius=4.5,projection,projectionStream,context,contextStream;function path(object){if(object){if(typeof pointRadius==="function")contextStream.pointRadius(+pointRadius.apply(this,arguments));geoStream(object,projectionStream(contextStream))}return contextStream.result()}path.area=function(object){geoStream(object,projectionStream(areaStream$1));return areaStream$1.result()};path.bounds=function(object){geoStream(object,projectionStream(boundsStream$1));return boundsStream$1.result()};path.centroid=function(object){geoStream(object,projectionStream(centroidStream$1));return centroidStream$1.result()};path.projection=function(_){return arguments.length?(projectionStream=(projection=_)==null?identity:_.stream,path):projection};path.context=function(_){if(!arguments.length)return context;contextStream=(context=_)==null?new PathString:new PathContext(_);if(typeof pointRadius!=="function")contextStream.pointRadius(pointRadius);return path};path.pointRadius=function(_){if(!arguments.length)return pointRadius;pointRadius=typeof _==="function"?_:(contextStream.pointRadius(+_),+_);return path};return path.projection(null).context(null)}var sum=adder();function polygonContains(polygon,point){var lambda=point[0],phi=point[1],normal=[sin(lambda),-cos(lambda),0],angle=0,winding=0;sum.reset();for(var i=0,n=polygon.length;i<n;++i){if(!(m=(ring=polygon[i]).length))continue;var ring,m,point0=ring[m-1],lambda0=point0[0],phi0=point0[1]/2+quarterPi,sinPhi0=sin(phi0),cosPhi0=cos(phi0);for(var j=0;j<m;++j,lambda0=lambda1,sinPhi0=sinPhi1,cosPhi0=cosPhi1,point0=point1){var point1=ring[j],lambda1=point1[0],phi1=point1[1]/2+quarterPi,sinPhi1=sin(phi1),cosPhi1=cos(phi1),delta=lambda1-lambda0,sign=delta>=0?1:-1,absDelta=sign*delta,antimeridian=absDelta>pi,k=sinPhi0*sinPhi1;sum.add(atan2(k*sign*sin(absDelta),cosPhi0*cosPhi1+k*cos(absDelta)));angle+=antimeridian?delta+sign*tau:delta;if(antimeridian^lambda0>=lambda^lambda1>=lambda){var arc=cartesianCross(cartesian(point0),cartesian(point1));cartesianNormalizeInPlace(arc);var intersection=cartesianCross(normal,arc);cartesianNormalizeInPlace(intersection);var phiArc=(antimeridian^delta>=0?-1:1)*asin(intersection[2]);if(phi>phiArc||phi===phiArc&&(arc[0]||arc[1])){winding+=antimeridian^delta>=0?1:-1}}}}return(angle<-epsilon||angle<epsilon&&sum<-epsilon)^winding&1}function clip(pointVisible,clipLine,interpolate,start){return function(rotate,sink){var line=clipLine(sink),rotatedStart=rotate.invert(start[0],start[1]),ringBuffer=clipBuffer(),ringSink=clipLine(ringBuffer),polygonStarted=false,polygon,segments,ring;var clip={point:point,lineStart:lineStart,lineEnd:lineEnd,polygonStart:function(){clip.point=pointRing;clip.lineStart=ringStart;clip.lineEnd=ringEnd;segments=[];polygon=[]},polygonEnd:function(){clip.point=point;clip.lineStart=lineStart;clip.lineEnd=lineEnd;segments=d3Array.merge(segments);var startInside=polygonContains(polygon,rotatedStart);if(segments.length){if(!polygonStarted)sink.polygonStart(),polygonStarted=true;clipPolygon(segments,compareIntersection,startInside,interpolate,sink)}else if(startInside){if(!polygonStarted)sink.polygonStart(),polygonStarted=true;sink.lineStart();interpolate(null,null,1,sink);sink.lineEnd()}if(polygonStarted)sink.polygonEnd(),polygonStarted=false;segments=polygon=null},sphere:function(){sink.polygonStart();sink.lineStart();interpolate(null,null,1,sink);sink.lineEnd();sink.polygonEnd()}};function point(lambda,phi){var point=rotate(lambda,phi);if(pointVisible(lambda=point[0],phi=point[1]))sink.point(lambda,phi)}function pointLine(lambda,phi){var point=rotate(lambda,phi);line.point(point[0],point[1])}function lineStart(){clip.point=pointLine;line.lineStart()}function lineEnd(){clip.point=point;line.lineEnd()}function pointRing(lambda,phi){ring.push([lambda,phi]);var point=rotate(lambda,phi);ringSink.point(point[0],point[1])}function ringStart(){ringSink.lineStart();ring=[]}function ringEnd(){pointRing(ring[0][0],ring[0][1]);ringSink.lineEnd();var clean=ringSink.clean(),ringSegments=ringBuffer.result(),i,n=ringSegments.length,m,segment,point;ring.pop();polygon.push(ring);ring=null;if(!n)return;if(clean&1){segment=ringSegments[0];if((m=segment.length-1)>0){if(!polygonStarted)sink.polygonStart(),polygonStarted=true;sink.lineStart();for(i=0;i<m;++i)sink.point((point=segment[i])[0],point[1]);sink.lineEnd()}return}if(n>1&&clean&2)ringSegments.push(ringSegments.pop().concat(ringSegments.shift()));segments.push(ringSegments.filter(validSegment))}return clip}}function validSegment(segment){return segment.length>1}function compareIntersection(a,b){return((a=a.x)[0]<0?a[1]-halfPi-epsilon:halfPi-a[1])-((b=b.x)[0]<0?b[1]-halfPi-epsilon:halfPi-b[1])}var clipAntimeridian=clip(function(){return true},clipAntimeridianLine,clipAntimeridianInterpolate,[-pi,-halfPi]);function clipAntimeridianLine(stream){var lambda0=NaN,phi0=NaN,sign0=NaN,clean;return{lineStart:function(){stream.lineStart();clean=1},point:function(lambda1,phi1){var sign1=lambda1>0?pi:-pi,delta=abs(lambda1-lambda0);if(abs(delta-pi)<epsilon){stream.point(lambda0,phi0=(phi0+phi1)/2>0?halfPi:-halfPi);stream.point(sign0,phi0);stream.lineEnd();stream.lineStart();stream.point(sign1,phi0);stream.point(lambda1,phi0);clean=0}else if(sign0!==sign1&&delta>=pi){if(abs(lambda0-sign0)<epsilon)lambda0-=sign0*epsilon;if(abs(lambda1-sign1)<epsilon)lambda1-=sign1*epsilon;phi0=clipAntimeridianIntersect(lambda0,phi0,lambda1,phi1);stream.point(sign0,phi0);stream.lineEnd();stream.lineStart();stream.point(sign1,phi0);clean=0}stream.point(lambda0=lambda1,phi0=phi1);sign0=sign1},lineEnd:function(){stream.lineEnd();lambda0=phi0=NaN},clean:function(){return 2-clean}}}function clipAntimeridianIntersect(lambda0,phi0,lambda1,phi1){var cosPhi0,cosPhi1,sinLambda0Lambda1=sin(lambda0-lambda1);return abs(sinLambda0Lambda1)>epsilon?atan((sin(phi0)*(cosPhi1=cos(phi1))*sin(lambda1)-sin(phi1)*(cosPhi0=cos(phi0))*sin(lambda0))/(cosPhi0*cosPhi1*sinLambda0Lambda1)):(phi0+phi1)/2}function clipAntimeridianInterpolate(from,to,direction,stream){var phi;if(from==null){phi=direction*halfPi;stream.point(-pi,phi);stream.point(0,phi);stream.point(pi,phi);stream.point(pi,0);stream.point(pi,-phi);stream.point(0,-phi);stream.point(-pi,-phi);stream.point(-pi,0);stream.point(-pi,phi)}else if(abs(from[0]-to[0])>epsilon){var lambda=from[0]<to[0]?pi:-pi;phi=direction*lambda/2;stream.point(-lambda,phi);stream.point(0,phi);stream.point(lambda,phi)}else{stream.point(to[0],to[1])}}function clipCircle(radius,delta){var cr=cos(radius),smallRadius=cr>0,notHemisphere=abs(cr)>epsilon;function interpolate(from,to,direction,stream){circleStream(stream,radius,delta,direction,from,to)}function visible(lambda,phi){return cos(lambda)*cos(phi)>cr}function clipLine(stream){var point0,c0,v0,v00,clean;return{lineStart:function(){v00=v0=false;clean=1},point:function(lambda,phi){var point1=[lambda,phi],point2,v=visible(lambda,phi),c=smallRadius?v?0:code(lambda,phi):v?code(lambda+(lambda<0?pi:-pi),phi):0;if(!point0&&(v00=v0=v))stream.lineStart();if(v!==v0){point2=intersect(point0,point1);if(pointEqual(point0,point2)||pointEqual(point1,point2)){point1[0]+=epsilon;point1[1]+=epsilon;v=visible(point1[0],point1[1])}}if(v!==v0){clean=0;if(v){stream.lineStart();point2=intersect(point1,point0);stream.point(point2[0],point2[1])}else{point2=intersect(point0,point1);stream.point(point2[0],point2[1]);stream.lineEnd()}point0=point2}else if(notHemisphere&&point0&&smallRadius^v){var t;if(!(c&c0)&&(t=intersect(point1,point0,true))){clean=0;if(smallRadius){stream.lineStart();stream.point(t[0][0],t[0][1]);stream.point(t[1][0],t[1][1]);stream.lineEnd()}else{stream.point(t[1][0],t[1][1]);stream.lineEnd();stream.lineStart();stream.point(t[0][0],t[0][1])}}}if(v&&(!point0||!pointEqual(point0,point1))){stream.point(point1[0],point1[1])}point0=point1,v0=v,c0=c},lineEnd:function(){if(v0)stream.lineEnd();point0=null},clean:function(){return clean|(v00&&v0)<<1}}}function intersect(a,b,two){var pa=cartesian(a),pb=cartesian(b);var n1=[1,0,0],n2=cartesianCross(pa,pb),n2n2=cartesianDot(n2,n2),n1n2=n2[0],determinant=n2n2-n1n2*n1n2;if(!determinant)return!two&&a;var c1=cr*n2n2/determinant,c2=-cr*n1n2/determinant,n1xn2=cartesianCross(n1,n2),A=cartesianScale(n1,c1),B=cartesianScale(n2,c2);cartesianAddInPlace(A,B);var u=n1xn2,w=cartesianDot(A,u),uu=cartesianDot(u,u),t2=w*w-uu*(cartesianDot(A,A)-1);if(t2<0)return;var t=sqrt(t2),q=cartesianScale(u,(-w-t)/uu);cartesianAddInPlace(q,A);q=spherical(q);if(!two)return q;var lambda0=a[0],lambda1=b[0],phi0=a[1],phi1=b[1],z;if(lambda1<lambda0)z=lambda0,lambda0=lambda1,lambda1=z;var delta=lambda1-lambda0,polar=abs(delta-pi)<epsilon,meridian=polar||delta<epsilon;if(!polar&&phi1<phi0)z=phi0,phi0=phi1,phi1=z;if(meridian?polar?phi0+phi1>0^q[1]<(abs(q[0]-lambda0)<epsilon?phi0:phi1):phi0<=q[1]&&q[1]<=phi1:delta>pi^(lambda0<=q[0]&&q[0]<=lambda1)){var q1=cartesianScale(u,(-w+t)/uu);cartesianAddInPlace(q1,A);return[q,spherical(q1)]}}function code(lambda,phi){var r=smallRadius?radius:pi-radius,code=0;if(lambda<-r)code|=1;else if(lambda>r)code|=2;if(phi<-r)code|=4;else if(phi>r)code|=8;return code}return clip(visible,clipLine,interpolate,smallRadius?[0,-radius]:[-pi,radius-pi])}function transform(prototype){return{stream:transform$1(prototype)}}function transform$1(prototype){function T(){}var p=T.prototype=Object.create(Transform.prototype);for(var k in prototype)p[k]=prototype[k];return function(stream){var t=new T;t.stream=stream;return t}}function Transform(){}Transform.prototype={point:function(x,y){this.stream.point(x,y)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};function fit(project,extent,object){var w=extent[1][0]-extent[0][0],h=extent[1][1]-extent[0][1],clip=project.clipExtent&&project.clipExtent();project.scale(150).translate([0,0]);if(clip!=null)project.clipExtent(null);geoStream(object,project.stream(boundsStream$1));var b=boundsStream$1.result(),k=Math.min(w/(b[1][0]-b[0][0]),h/(b[1][1]-b[0][1])),x=+extent[0][0]+(w-k*(b[1][0]+b[0][0]))/2,y=+extent[0][1]+(h-k*(b[1][1]+b[0][1]))/2;if(clip!=null)project.clipExtent(clip);return project.scale(k*150).translate([x,y])}function fitSize(project){return function(size,object){return fit(project,[[0,0],size],object)}}function fitExtent(project){return function(extent,object){return fit(project,extent,object)}}var maxDepth=16;var cosMinDistance=cos(30*radians);function resample(project,delta2){return+delta2?resample$1(project,delta2):resampleNone(project)}function resampleNone(project){return transform$1({point:function(x,y){x=project(x,y);this.stream.point(x[0],x[1])}})}function resample$1(project,delta2){function resampleLineTo(x0,y0,lambda0,a0,b0,c0,x1,y1,lambda1,a1,b1,c1,depth,stream){var dx=x1-x0,dy=y1-y0,d2=dx*dx+dy*dy;if(d2>4*delta2&&depth--){var a=a0+a1,b=b0+b1,c=c0+c1,m=sqrt(a*a+b*b+c*c),phi2=asin(c/=m),lambda2=abs(abs(c)-1)<epsilon||abs(lambda0-lambda1)<epsilon?(lambda0+lambda1)/2:atan2(b,a),p=project(lambda2,phi2),x2=p[0],y2=p[1],dx2=x2-x0,dy2=y2-y0,dz=dy*dx2-dx*dy2;if(dz*dz/d2>delta2||abs((dx*dx2+dy*dy2)/d2-.5)>.3||a0*a1+b0*b1+c0*c1<cosMinDistance){resampleLineTo(x0,y0,lambda0,a0,b0,c0,x2,y2,lambda2,a/=m,b/=m,c,depth,stream);stream.point(x2,y2);resampleLineTo(x2,y2,lambda2,a,b,c,x1,y1,lambda1,a1,b1,c1,depth,stream)}}}return function(stream){var lambda00,x00,y00,a00,b00,c00,lambda0,x0,y0,a0,b0,c0;var resampleStream={point:point,lineStart:lineStart,lineEnd:lineEnd,polygonStart:function(){stream.polygonStart();resampleStream.lineStart=ringStart},polygonEnd:function(){stream.polygonEnd();resampleStream.lineStart=lineStart}};function point(x,y){x=project(x,y);stream.point(x[0],x[1])}function lineStart(){x0=NaN;resampleStream.point=linePoint;stream.lineStart()}function linePoint(lambda,phi){var c=cartesian([lambda,phi]),p=project(lambda,phi);resampleLineTo(x0,y0,lambda0,a0,b0,c0,x0=p[0],y0=p[1],lambda0=lambda,a0=c[0],b0=c[1],c0=c[2],maxDepth,stream);stream.point(x0,y0)}function lineEnd(){resampleStream.point=point;stream.lineEnd()}function ringStart(){lineStart();resampleStream.point=ringPoint;resampleStream.lineEnd=ringEnd}function ringPoint(lambda,phi){linePoint(lambda00=lambda,phi),x00=x0,y00=y0,a00=a0,b00=b0,c00=c0;resampleStream.point=linePoint}function ringEnd(){resampleLineTo(x0,y0,lambda0,a0,b0,c0,x00,y00,lambda00,a00,b00,c00,maxDepth,stream);resampleStream.lineEnd=lineEnd;lineEnd()}return resampleStream}}var transformRadians=transform$1({point:function(x,y){this.stream.point(x*radians,y*radians)}});function projection(project){return projectionMutator(function(){return project})()}function projectionMutator(projectAt){var project,k=150,x=480,y=250,dx,dy,lambda=0,phi=0,deltaLambda=0,deltaPhi=0,deltaGamma=0,rotate,projectRotate,theta=null,preclip=clipAntimeridian,x0=null,y0,x1,y1,postclip=identity,delta2=.5,projectResample=resample(projectTransform,delta2),cache,cacheStream;function projection(point){point=projectRotate(point[0]*radians,point[1]*radians);return[point[0]*k+dx,dy-point[1]*k]}function invert(point){point=projectRotate.invert((point[0]-dx)/k,(dy-point[1])/k);return point&&[point[0]*degrees,point[1]*degrees]}function projectTransform(x,y){return x=project(x,y),[x[0]*k+dx,dy-x[1]*k]}projection.stream=function(stream){return cache&&cacheStream===stream?cache:cache=transformRadians(preclip(rotate,projectResample(postclip(cacheStream=stream))))};projection.clipAngle=function(_){return arguments.length?(preclip=+_?clipCircle(theta=_*radians,6*radians):(theta=null,clipAntimeridian),reset()):theta*degrees};projection.clipExtent=function(_){return arguments.length?(postclip=_==null?(x0=y0=x1=y1=null,identity):clipExtent(x0=+_[0][0],y0=+_[0][1],x1=+_[1][0],y1=+_[1][1]),reset()):x0==null?null:[[x0,y0],[x1,y1]]};projection.scale=function(_){return arguments.length?(k=+_,recenter()):k};projection.translate=function(_){return arguments.length?(x=+_[0],y=+_[1],recenter()):[x,y]};projection.center=function(_){return arguments.length?(lambda=_[0]%360*radians,phi=_[1]%360*radians,recenter()):[lambda*degrees,phi*degrees]};projection.rotate=function(_){return arguments.length?(deltaLambda=_[0]%360*radians,deltaPhi=_[1]%360*radians,deltaGamma=_.length>2?_[2]%360*radians:0,recenter()):[deltaLambda*degrees,deltaPhi*degrees,deltaGamma*degrees]};projection.precision=function(_){return arguments.length?(projectResample=resample(projectTransform,delta2=_*_),reset()):sqrt(delta2)};projection.fitExtent=fitExtent(projection);projection.fitSize=fitSize(projection);function recenter(){projectRotate=compose(rotate=rotateRadians(deltaLambda,deltaPhi,deltaGamma),project);var center=project(lambda,phi);dx=x-center[0]*k;dy=y+center[1]*k;return reset()}function reset(){cache=cacheStream=null;return projection}return function(){project=projectAt.apply(this,arguments);projection.invert=project.invert&&invert;return recenter()}}function conicProjection(projectAt){var phi0=0,phi1=pi/3,m=projectionMutator(projectAt),p=m(phi0,phi1);p.parallels=function(_){return arguments.length?m(phi0=_[0]*radians,phi1=_[1]*radians):[phi0*degrees,phi1*degrees]};return p}function conicEqualAreaRaw(y0,y1){var sy0=sin(y0),n=(sy0+sin(y1))/2,c=1+sy0*(2*n-sy0),r0=sqrt(c)/n;function project(x,y){var r=sqrt(c-2*n*sin(y))/n;return[r*sin(x*=n),r0-r*cos(x)]}project.invert=function(x,y){var r0y=r0-y;return[atan2(x,r0y)/n,asin((c-(x*x+r0y*r0y)*n*n)/(2*n))]};return project}function conicEqualArea(){return conicProjection(conicEqualAreaRaw).scale(155.424).center([0,33.6442])}function albers(){return conicEqualArea().parallels([29.5,45.5]).scale(1070).translate([480,250]).rotate([96,0]).center([-.6,38.7])}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()}}}function albersUsa(){var cache,cacheStream,lower48=albers(),lower48Point,alaska=conicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),alaskaPoint,hawaii=conicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),hawaiiPoint,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>=.12&&y<.234&&x>=-.425&&x<-.214?alaska:y>=.166&&y<.234&&x>=-.214&&x<-.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(_*.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-.455*k,y-.238*k],[x+.455*k,y+.238*k]]).stream(pointStream);alaskaPoint=alaska.translate([x-.307*k,y+.201*k]).clipExtent([[x-.425*k+epsilon,y+.12*k+epsilon],[x-.214*k-epsilon,y+.234*k-epsilon]]).stream(pointStream);hawaiiPoint=hawaii.translate([x-.205*k,y+.212*k]).clipExtent([[x-.214*k+epsilon,y+.166*k+epsilon],[x-.115*k-epsilon,y+.234*k-epsilon]]).stream(pointStream);return albersUsa};albersUsa.fitExtent=fitExtent(albersUsa);albersUsa.fitSize=fitSize(albersUsa);return albersUsa.scale(1070)}function azimuthalRaw(scale){return function(x,y){var cx=cos(x),cy=cos(y),k=scale(cx*cy);return[k*cy*sin(x),k*sin(y)]}}function azimuthalInvert(angle){return function(x,y){var z=sqrt(x*x+y*y),c=angle(z),sc=sin(c),cc=cos(c);return[atan2(x*sc,z*cc),asin(z&&y*sc/z)]}}var azimuthalEqualAreaRaw=azimuthalRaw(function(cxcy){return sqrt(2/(1+cxcy))});azimuthalEqualAreaRaw.invert=azimuthalInvert(function(z){return 2*asin(z/2)});function azimuthalEqualArea(){return projection(azimuthalEqualAreaRaw).scale(124.75).clipAngle(180-.001)}var azimuthalEquidistantRaw=azimuthalRaw(function(c){return(c=acos(c))&&c/sin(c)});azimuthalEquidistantRaw.invert=azimuthalInvert(function(z){return z});function azimuthalEquidistant(){return projection(azimuthalEquidistantRaw).scale(79.4188).clipAngle(180-.001)}function mercatorRaw(lambda,phi){return[lambda,log(tan((halfPi+phi)/2))]}mercatorRaw.invert=function(x,y){return[x,2*atan(exp(y))-halfPi]};function mercator(){return mercatorProjection(mercatorRaw).scale(961/tau)}function mercatorProjection(project){var m=projection(project),scale=m.scale,translate=m.translate,clipExtent=m.clipExtent,clipAuto;m.scale=function(_){return arguments.length?(scale(_),clipAuto&&m.clipExtent(null),m):scale()};m.translate=function(_){return arguments.length?(translate(_),clipAuto&&m.clipExtent(null),m):translate()};m.clipExtent=function(_){if(!arguments.length)return clipAuto?null:clipExtent();if(clipAuto=_==null){var k=pi*scale(),t=translate();_=[[t[0]-k,t[1]-k],[t[0]+k,t[1]+k]]}clipExtent(_);return m};return m.clipExtent(null)}function tany(y){return tan((halfPi+y)/2)}function conicConformalRaw(y0,y1){var cy0=cos(y0),n=y0===y1?sin(y0):log(cy0/cos(y1))/log(tany(y1)/tany(y0)),f=cy0*pow(tany(y0),n)/n;if(!n)return mercatorRaw;function project(x,y){if(f>0){if(y<-halfPi+epsilon)y=-halfPi+epsilon}else{if(y>halfPi-epsilon)y=halfPi-epsilon}var r=f/pow(tany(y),n);return[r*sin(n*x),f-r*cos(n*x)]}project.invert=function(x,y){var fy=f-y,r=sign(n)*sqrt(x*x+fy*fy);return[atan2(x,fy)/n,2*atan(pow(f/r,1/n))-halfPi]};return project}function conicConformal(){return conicProjection(conicConformalRaw).scale(109.5).parallels([30,30])}function equirectangularRaw(lambda,phi){return[lambda,phi]}equirectangularRaw.invert=equirectangularRaw;function equirectangular(){return projection(equirectangularRaw).scale(152.63)}function conicEquidistantRaw(y0,y1){var cy0=cos(y0),n=y0===y1?sin(y0):(cy0-cos(y1))/(y1-y0),g=cy0/n+y0;if(abs(n)<epsilon)return equirectangularRaw;function project(x,y){var gy=g-y,nx=n*x;return[gy*sin(nx),g-gy*cos(nx)]}project.invert=function(x,y){var gy=g-y;return[atan2(x,gy)/n,g-sign(n)*sqrt(x*x+gy*gy)]};return project}function conicEquidistant(){return conicProjection(conicEquidistantRaw).scale(131.154).center([0,13.9389])}function gnomonicRaw(x,y){var cy=cos(y),k=cos(x)*cy;return[cy*sin(x)/k,sin(y)/k]}gnomonicRaw.invert=azimuthalInvert(atan);function gnomonic(){return projection(gnomonicRaw).scale(144.049).clipAngle(60)}function orthographicRaw(x,y){return[cos(y)*sin(x),sin(y)]}orthographicRaw.invert=azimuthalInvert(asin);function orthographic(){return projection(orthographicRaw).scale(249.5).clipAngle(90+epsilon)}function stereographicRaw(x,y){var cy=cos(y),k=1+cos(x)*cy;return[cy*sin(x)/k,sin(y)/k]}stereographicRaw.invert=azimuthalInvert(function(z){return 2*atan(z)});function stereographic(){return projection(stereographicRaw).scale(250).clipAngle(142)}function transverseMercatorRaw(lambda,phi){return[log(tan((halfPi+phi)/2)),-lambda]}transverseMercatorRaw.invert=function(x,y){return[-y,2*atan(exp(x))-halfPi]};function transverseMercator(){var m=mercatorProjection(transverseMercatorRaw),center=m.center,rotate=m.rotate;m.center=function(_){return arguments.length?center([-_[1],_[0]]):(_=center(),[_[1],-_[0]])};m.rotate=function(_){return arguments.length?rotate([_[0],_[1],_.length>2?_[2]+90:90]):(_=rotate(),[_[0],_[1],_[2]-90])};return rotate([0,0,90]).scale(159.155)}exports.geoArea=area;exports.geoBounds=bounds;exports.geoCentroid=centroid;exports.geoCircle=circle;exports.geoClipExtent=extent;exports.geoDistance=distance;exports.geoGraticule=graticule;exports.geoInterpolate=interpolate;exports.geoLength=length;exports.geoPath=index;exports.geoAlbers=albers;exports.geoAlbersUsa=albersUsa;exports.geoAzimuthalEqualArea=azimuthalEqualArea;exports.geoAzimuthalEqualAreaRaw=azimuthalEqualAreaRaw;exports.geoAzimuthalEquidistant=azimuthalEquidistant;exports.geoAzimuthalEquidistantRaw=azimuthalEquidistantRaw;exports.geoConicConformal=conicConformal;exports.geoConicConformalRaw=conicConformalRaw;exports.geoConicEqualArea=conicEqualArea;exports.geoConicEqualAreaRaw=conicEqualAreaRaw;exports.geoConicEquidistant=conicEquidistant;exports.geoConicEquidistantRaw=conicEquidistantRaw;exports.geoEquirectangular=equirectangular;exports.geoEquirectangularRaw=equirectangularRaw;exports.geoGnomonic=gnomonic;exports.geoGnomonicRaw=gnomonicRaw;exports.geoProjection=projection;exports.geoProjectionMutator=projectionMutator;exports.geoMercator=mercator;exports.geoMercatorRaw=mercatorRaw;exports.geoOrthographic=orthographic;exports.geoOrthographicRaw=orthographicRaw;exports.geoStereographic=stereographic;exports.geoStereographicRaw=stereographicRaw;exports.geoTransverseMercator=transverseMercator;exports.geoTransverseMercatorRaw=transverseMercatorRaw;exports.geoRotation=rotation;exports.geoStream=geoStream;exports.geoTransform=transform;Object.defineProperty(exports,"__esModule",{value:true})})},{"d3-array":2}],7:[function(require,module,exports){(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory(exports):typeof define==="function"&&define.amd?define(["exports"],factory):factory(global.d3=global.d3||{})})(this,function(exports){"use strict";var noop={value:function(){}};function dispatch(){for(var i=0,n=arguments.length,_={},t;i<n;++i){if(!(t=arguments[i]+"")||t in _)throw new Error("illegal type: "+t);_[t]=[]}return new Dispatch(_)}function Dispatch(_){this._=_}function parseTypenames(typenames,types){return typenames.trim().split(/^|\s+/).map(function(t){var name="",i=t.indexOf(".");if(i>=0)name=t.slice(i+1),t=t.slice(0,i);if(t&&!types.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:name}})}Dispatch.prototype=dispatch.prototype={constructor:Dispatch,on:function(typename,callback){var _=this._,T=parseTypenames(typename+"",_),t,i=-1,n=T.length;if(arguments.length<2){while(++i<n)if((t=(typename=T[i]).type)&&(t=get(_[t],typename.name)))return t;return}if(callback!=null&&typeof callback!=="function")throw new Error("invalid callback: "+callback);while(++i<n){if(t=(typename=T[i]).type)_[t]=set(_[t],typename.name,callback);else if(callback==null)for(t in _)_[t]=set(_[t],typename.name,null)}return this},copy:function(){var copy={},_=this._;for(var t in _)copy[t]=_[t].slice();return new Dispatch(copy)},call:function(type,that){if((n=arguments.length-2)>0)for(var args=new Array(n),i=0,n,t;i<n;++i)args[i]=arguments[i+2];if(!this._.hasOwnProperty(type))throw new Error("unknown type: "+type);for(t=this._[type],i=0,n=t.length;i<n;++i)t[i].value.apply(that,args)},apply:function(type,that,args){if(!this._.hasOwnProperty(type))throw new Error("unknown type: "+type);for(var t=this._[type],i=0,n=t.length;i<n;++i)t[i].value.apply(that,args)}};function get(type,name){for(var i=0,n=type.length,c;i<n;++i){if((c=type[i]).name===name){return c.value}}}function set(type,name,callback){for(var i=0,n=type.length;i<n;++i){if(type[i].name===name){type[i]=noop,type=type.slice(0,i).concat(type.slice(i+1));break}}if(callback!=null)type.push({name:name,value:callback});return type}exports.dispatch=dispatch;Object.defineProperty(exports,"__esModule",{value:true})})},{}],8:[function(require,module,exports){(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory(exports):typeof define==="function"&&define.amd?define(["exports"],factory):factory(global.d3=global.d3||{})})(this,function(exports){"use strict";function objectConverter(columns){return new Function("d","return {"+columns.map(function(name,i){return JSON.stringify(name)+": d["+i+"]"}).join(",")+"}")}function customConverter(columns,f){var object=objectConverter(columns);return function(row,i){return f(object(row),i,columns)}}function inferColumns(rows){var columnSet=Object.create(null),columns=[];rows.forEach(function(row){for(var column in row){if(!(column in columnSet)){columns.push(columnSet[column]=column)}}});return columns}function dsv(delimiter){var reFormat=new RegExp('["'+delimiter+"\n]"),delimiterCode=delimiter.charCodeAt(0);function parse(text,f){var convert,columns,rows=parseRows(text,function(row,i){if(convert)return convert(row,i-1);columns=row,convert=f?customConverter(row,f):objectConverter(row)});rows.columns=columns;return rows}function parseRows(text,f){var EOL={},EOF={},rows=[],N=text.length,I=0,n=0,t,eol;function token(){if(I>=N)return EOF;if(eol)return eol=false,EOL;var j=I,c;if(text.charCodeAt(j)===34){var i=j;while(i++<N){if(text.charCodeAt(i)===34){if(text.charCodeAt(i+1)!==34)break;++i}}I=i+2;c=text.charCodeAt(i+1);if(c===13){eol=true;if(text.charCodeAt(i+2)===10)++I}else if(c===10){eol=true}return text.slice(j+1,i).replace(/""/g,'"')}while(I<N){var k=1;c=text.charCodeAt(I++);if(c===10)eol=true;else if(c===13){eol=true;if(text.charCodeAt(I)===10)++I,++k}else if(c!==delimiterCode)continue;return text.slice(j,I-k)}return text.slice(j)}while((t=token())!==EOF){var a=[];while(t!==EOL&&t!==EOF){a.push(t);t=token()}if(f&&(a=f(a,n++))==null)continue;rows.push(a)}return rows}function format(rows,columns){if(columns==null)columns=inferColumns(rows);return[columns.map(formatValue).join(delimiter)].concat(rows.map(function(row){return columns.map(function(column){return formatValue(row[column])}).join(delimiter)})).join("\n")}function formatRows(rows){return rows.map(formatRow).join("\n")}function formatRow(row){return row.map(formatValue).join(delimiter)}function formatValue(text){return text==null?"":reFormat.test(text+="")?'"'+text.replace(/\"/g,'""')+'"':text}return{parse:parse,parseRows:parseRows,format:format,formatRows:formatRows}}var csv=dsv(",");var csvParse=csv.parse;var csvParseRows=csv.parseRows;var csvFormat=csv.format;var csvFormatRows=csv.formatRows;var tsv=dsv("\t");var tsvParse=tsv.parse;var tsvParseRows=tsv.parseRows;var tsvFormat=tsv.format;var tsvFormatRows=tsv.formatRows;exports.dsvFormat=dsv;exports.csvParse=csvParse;exports.csvParseRows=csvParseRows;exports.csvFormat=csvFormat;exports.csvFormatRows=csvFormatRows;exports.tsvParse=tsvParse;exports.tsvParseRows=tsvParseRows;exports.tsvFormat=tsvFormat;exports.tsvFormatRows=tsvFormatRows;Object.defineProperty(exports,"__esModule",{value:true})})},{}],9:[function(require,module,exports){(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory(exports):typeof define==="function"&&define.amd?define(["exports"],factory):factory(global.d3=global.d3||{})})(this,function(exports){"use strict";function linear(t){return+t}function quadIn(t){return t*t}function quadOut(t){return t*(2-t)}function quadInOut(t){return((t*=2)<=1?t*t:--t*(2-t)+1)/2}function cubicIn(t){return t*t*t}function cubicOut(t){return--t*t*t+1}function cubicInOut(t){
return((t*=2)<=1?t*t*t:(t-=2)*t*t+2)/2}var exponent=3;var polyIn=function custom(e){e=+e;function polyIn(t){return Math.pow(t,e)}polyIn.exponent=custom;return polyIn}(exponent);var polyOut=function custom(e){e=+e;function polyOut(t){return 1-Math.pow(1-t,e)}polyOut.exponent=custom;return polyOut}(exponent);var polyInOut=function custom(e){e=+e;function polyInOut(t){return((t*=2)<=1?Math.pow(t,e):2-Math.pow(2-t,e))/2}polyInOut.exponent=custom;return polyInOut}(exponent);var pi=Math.PI;var halfPi=pi/2;function sinIn(t){return 1-Math.cos(t*halfPi)}function sinOut(t){return Math.sin(t*halfPi)}function sinInOut(t){return(1-Math.cos(pi*t))/2}function expIn(t){return Math.pow(2,10*t-10)}function expOut(t){return 1-Math.pow(2,-10*t)}function expInOut(t){return((t*=2)<=1?Math.pow(2,10*t-10):2-Math.pow(2,10-10*t))/2}function circleIn(t){return 1-Math.sqrt(1-t*t)}function circleOut(t){return Math.sqrt(1- --t*t)}function circleInOut(t){return((t*=2)<=1?1-Math.sqrt(1-t*t):Math.sqrt(1-(t-=2)*t)+1)/2}var b1=4/11;var b2=6/11;var b3=8/11;var b4=3/4;var b5=9/11;var b6=10/11;var b7=15/16;var b8=21/22;var b9=63/64;var b0=1/b1/b1;function bounceIn(t){return 1-bounceOut(1-t)}function bounceOut(t){return(t=+t)<b1?b0*t*t:t<b3?b0*(t-=b2)*t+b4:t<b6?b0*(t-=b5)*t+b7:b0*(t-=b8)*t+b9}function bounceInOut(t){return((t*=2)<=1?1-bounceOut(1-t):bounceOut(t-1)+1)/2}var overshoot=1.70158;var backIn=function custom(s){s=+s;function backIn(t){return t*t*((s+1)*t-s)}backIn.overshoot=custom;return backIn}(overshoot);var backOut=function custom(s){s=+s;function backOut(t){return--t*t*((s+1)*t+s)+1}backOut.overshoot=custom;return backOut}(overshoot);var backInOut=function custom(s){s=+s;function backInOut(t){return((t*=2)<1?t*t*((s+1)*t-s):(t-=2)*t*((s+1)*t+s)+2)/2}backInOut.overshoot=custom;return backInOut}(overshoot);var tau=2*Math.PI;var amplitude=1;var period=.3;var elasticIn=function custom(a,p){var s=Math.asin(1/(a=Math.max(1,a)))*(p/=tau);function elasticIn(t){return a*Math.pow(2,10*--t)*Math.sin((s-t)/p)}elasticIn.amplitude=function(a){return custom(a,p*tau)};elasticIn.period=function(p){return custom(a,p)};return elasticIn}(amplitude,period);var elasticOut=function custom(a,p){var s=Math.asin(1/(a=Math.max(1,a)))*(p/=tau);function elasticOut(t){return 1-a*Math.pow(2,-10*(t=+t))*Math.sin((t+s)/p)}elasticOut.amplitude=function(a){return custom(a,p*tau)};elasticOut.period=function(p){return custom(a,p)};return elasticOut}(amplitude,period);var elasticInOut=function custom(a,p){var s=Math.asin(1/(a=Math.max(1,a)))*(p/=tau);function elasticInOut(t){return((t=t*2-1)<0?a*Math.pow(2,10*t)*Math.sin((s-t)/p):2-a*Math.pow(2,-10*t)*Math.sin((s+t)/p))/2}elasticInOut.amplitude=function(a){return custom(a,p*tau)};elasticInOut.period=function(p){return custom(a,p)};return elasticInOut}(amplitude,period);exports.easeLinear=linear;exports.easeQuad=quadInOut;exports.easeQuadIn=quadIn;exports.easeQuadOut=quadOut;exports.easeQuadInOut=quadInOut;exports.easeCubic=cubicInOut;exports.easeCubicIn=cubicIn;exports.easeCubicOut=cubicOut;exports.easeCubicInOut=cubicInOut;exports.easePoly=polyInOut;exports.easePolyIn=polyIn;exports.easePolyOut=polyOut;exports.easePolyInOut=polyInOut;exports.easeSin=sinInOut;exports.easeSinIn=sinIn;exports.easeSinOut=sinOut;exports.easeSinInOut=sinInOut;exports.easeExp=expInOut;exports.easeExpIn=expIn;exports.easeExpOut=expOut;exports.easeExpInOut=expInOut;exports.easeCircle=circleInOut;exports.easeCircleIn=circleIn;exports.easeCircleOut=circleOut;exports.easeCircleInOut=circleInOut;exports.easeBounce=bounceOut;exports.easeBounceIn=bounceIn;exports.easeBounceOut=bounceOut;exports.easeBounceInOut=bounceInOut;exports.easeBack=backInOut;exports.easeBackIn=backIn;exports.easeBackOut=backOut;exports.easeBackInOut=backInOut;exports.easeElastic=elasticOut;exports.easeElasticIn=elasticIn;exports.easeElasticOut=elasticOut;exports.easeElasticInOut=elasticInOut;Object.defineProperty(exports,"__esModule",{value:true})})},{}],10:[function(require,module,exports){(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory(exports,require("d3-array")):typeof define==="function"&&define.amd?define(["exports","d3-array"],factory):factory(global.d3=global.d3||{},global.d3)})(this,function(exports,d3Array){"use strict";var adder=function(){return new Adder};function Adder(){this.reset()}Adder.prototype={constructor:Adder,reset:function(){this.s=this.t=0},add:function(y){add(temp,y,this.t);add(this,temp.s,this.s);if(this.s)this.t+=temp.t;else this.s=temp.t},valueOf:function(){return this.s}};var temp=new Adder;function add(adder,a,b){var x=adder.s=a+b,bv=x-a,av=x-bv;adder.t=a-av+(b-bv)}var epsilon=1e-6;var epsilon2=1e-12;var pi=Math.PI;var halfPi=pi/2;var quarterPi=pi/4;var tau=pi*2;var degrees=180/pi;var radians=pi/180;var abs=Math.abs;var atan=Math.atan;var atan2=Math.atan2;var cos=Math.cos;var ceil=Math.ceil;var exp=Math.exp;var log=Math.log;var pow=Math.pow;var sin=Math.sin;var sign=Math.sign||function(x){return x>0?1:x<0?-1:0};var sqrt=Math.sqrt;var tan=Math.tan;function acos(x){return x>1?0:x<-1?pi:Math.acos(x)}function asin(x){return x>1?halfPi:x<-1?-halfPi:Math.asin(x)}function haversin(x){return(x=sin(x/2))*x}function noop(){}function streamGeometry(geometry,stream){if(geometry&&streamGeometryType.hasOwnProperty(geometry.type)){streamGeometryType[geometry.type](geometry,stream)}}var streamObjectType={Feature:function(feature,stream){streamGeometry(feature.geometry,stream)},FeatureCollection:function(object,stream){var features=object.features,i=-1,n=features.length;while(++i<n)streamGeometry(features[i].geometry,stream)}};var streamGeometryType={Sphere:function(object,stream){stream.sphere()},Point:function(object,stream){object=object.coordinates;stream.point(object[0],object[1],object[2])},MultiPoint:function(object,stream){var coordinates=object.coordinates,i=-1,n=coordinates.length;while(++i<n)object=coordinates[i],stream.point(object[0],object[1],object[2])},LineString:function(object,stream){streamLine(object.coordinates,stream,0)},MultiLineString:function(object,stream){var coordinates=object.coordinates,i=-1,n=coordinates.length;while(++i<n)streamLine(coordinates[i],stream,0)},Polygon:function(object,stream){streamPolygon(object.coordinates,stream)},MultiPolygon:function(object,stream){var coordinates=object.coordinates,i=-1,n=coordinates.length;while(++i<n)streamPolygon(coordinates[i],stream)},GeometryCollection:function(object,stream){var geometries=object.geometries,i=-1,n=geometries.length;while(++i<n)streamGeometry(geometries[i],stream)}};function streamLine(coordinates,stream,closed){var i=-1,n=coordinates.length-closed,coordinate;stream.lineStart();while(++i<n)coordinate=coordinates[i],stream.point(coordinate[0],coordinate[1],coordinate[2]);stream.lineEnd()}function streamPolygon(coordinates,stream){var i=-1,n=coordinates.length;stream.polygonStart();while(++i<n)streamLine(coordinates[i],stream,1);stream.polygonEnd()}var geoStream=function(object,stream){if(object&&streamObjectType.hasOwnProperty(object.type)){streamObjectType[object.type](object,stream)}else{streamGeometry(object,stream)}};var areaRingSum=adder();var areaSum=adder();var lambda00;var phi00;var lambda0;var cosPhi0;var sinPhi0;var areaStream={point:noop,lineStart:noop,lineEnd:noop,polygonStart:function(){areaRingSum.reset();areaStream.lineStart=areaRingStart;areaStream.lineEnd=areaRingEnd},polygonEnd:function(){var areaRing=+areaRingSum;areaSum.add(areaRing<0?tau+areaRing:areaRing);this.lineStart=this.lineEnd=this.point=noop},sphere:function(){areaSum.add(tau)}};function areaRingStart(){areaStream.point=areaPointFirst}function areaRingEnd(){areaPoint(lambda00,phi00)}function areaPointFirst(lambda,phi){areaStream.point=areaPoint;lambda00=lambda,phi00=phi;lambda*=radians,phi*=radians;lambda0=lambda,cosPhi0=cos(phi=phi/2+quarterPi),sinPhi0=sin(phi)}function areaPoint(lambda,phi){lambda*=radians,phi*=radians;phi=phi/2+quarterPi;var dLambda=lambda-lambda0,sdLambda=dLambda>=0?1:-1,adLambda=sdLambda*dLambda,cosPhi=cos(phi),sinPhi=sin(phi),k=sinPhi0*sinPhi,u=cosPhi0*cosPhi+k*cos(adLambda),v=k*sdLambda*sin(adLambda);areaRingSum.add(atan2(v,u));lambda0=lambda,cosPhi0=cosPhi,sinPhi0=sinPhi}var area=function(object){areaSum.reset();geoStream(object,areaStream);return areaSum*2};function spherical(cartesian){return[atan2(cartesian[1],cartesian[0]),asin(cartesian[2])]}function cartesian(spherical){var lambda=spherical[0],phi=spherical[1],cosPhi=cos(phi);return[cosPhi*cos(lambda),cosPhi*sin(lambda),sin(phi)]}function cartesianDot(a,b){return a[0]*b[0]+a[1]*b[1]+a[2]*b[2]}function cartesianCross(a,b){return[a[1]*b[2]-a[2]*b[1],a[2]*b[0]-a[0]*b[2],a[0]*b[1]-a[1]*b[0]]}function cartesianAddInPlace(a,b){a[0]+=b[0],a[1]+=b[1],a[2]+=b[2]}function cartesianScale(vector,k){return[vector[0]*k,vector[1]*k,vector[2]*k]}function cartesianNormalizeInPlace(d){var l=sqrt(d[0]*d[0]+d[1]*d[1]+d[2]*d[2]);d[0]/=l,d[1]/=l,d[2]/=l}var lambda0$1;var phi0;var lambda1;var phi1;var lambda2;var lambda00$1;var phi00$1;var p0;var deltaSum=adder();var ranges;var range$1;var boundsStream={point:boundsPoint,lineStart:boundsLineStart,lineEnd:boundsLineEnd,polygonStart:function(){boundsStream.point=boundsRingPoint;boundsStream.lineStart=boundsRingStart;boundsStream.lineEnd=boundsRingEnd;deltaSum.reset();areaStream.polygonStart()},polygonEnd:function(){areaStream.polygonEnd();boundsStream.point=boundsPoint;boundsStream.lineStart=boundsLineStart;boundsStream.lineEnd=boundsLineEnd;if(areaRingSum<0)lambda0$1=-(lambda1=180),phi0=-(phi1=90);else if(deltaSum>epsilon)phi1=90;else if(deltaSum<-epsilon)phi0=-90;range$1[0]=lambda0$1,range$1[1]=lambda1}};function boundsPoint(lambda,phi){ranges.push(range$1=[lambda0$1=lambda,lambda1=lambda]);if(phi<phi0)phi0=phi;if(phi>phi1)phi1=phi}function linePoint(lambda,phi){var p=cartesian([lambda*radians,phi*radians]);if(p0){var normal=cartesianCross(p0,p),equatorial=[normal[1],-normal[0],0],inflection=cartesianCross(equatorial,normal);cartesianNormalizeInPlace(inflection);inflection=spherical(inflection);var delta=lambda-lambda2,sign$$1=delta>0?1:-1,lambdai=inflection[0]*degrees*sign$$1,phii,antimeridian=abs(delta)>180;if(antimeridian^(sign$$1*lambda2<lambdai&&lambdai<sign$$1*lambda)){phii=inflection[1]*degrees;if(phii>phi1)phi1=phii}else if(lambdai=(lambdai+360)%360-180,antimeridian^(sign$$1*lambda2<lambdai&&lambdai<sign$$1*lambda)){phii=-inflection[1]*degrees;if(phii<phi0)phi0=phii}else{if(phi<phi0)phi0=phi;if(phi>phi1)phi1=phi}if(antimeridian){if(lambda<lambda2){if(angle(lambda0$1,lambda)>angle(lambda0$1,lambda1))lambda1=lambda}else{if(angle(lambda,lambda1)>angle(lambda0$1,lambda1))lambda0$1=lambda}}else{if(lambda1>=lambda0$1){if(lambda<lambda0$1)lambda0$1=lambda;if(lambda>lambda1)lambda1=lambda}else{if(lambda>lambda2){if(angle(lambda0$1,lambda)>angle(lambda0$1,lambda1))lambda1=lambda}else{if(angle(lambda,lambda1)>angle(lambda0$1,lambda1))lambda0$1=lambda}}}}else{boundsPoint(lambda,phi)}p0=p,lambda2=lambda}function boundsLineStart(){boundsStream.point=linePoint}function boundsLineEnd(){range$1[0]=lambda0$1,range$1[1]=lambda1;boundsStream.point=boundsPoint;p0=null}function boundsRingPoint(lambda,phi){if(p0){var delta=lambda-lambda2;deltaSum.add(abs(delta)>180?delta+(delta>0?360:-360):delta)}else{lambda00$1=lambda,phi00$1=phi}areaStream.point(lambda,phi);linePoint(lambda,phi)}function boundsRingStart(){areaStream.lineStart()}function boundsRingEnd(){boundsRingPoint(lambda00$1,phi00$1);areaStream.lineEnd();if(abs(deltaSum)>epsilon)lambda0$1=-(lambda1=180);range$1[0]=lambda0$1,range$1[1]=lambda1;p0=null}function angle(lambda0,lambda1){return(lambda1-=lambda0)<0?lambda1+360:lambda1}function rangeCompare(a,b){return a[0]-b[0]}function rangeContains(range$$1,x){return range$$1[0]<=range$$1[1]?range$$1[0]<=x&&x<=range$$1[1]:x<range$$1[0]||range$$1[1]<x}var bounds=function(feature){var i,n,a,b,merged,deltaMax,delta;phi1=lambda1=-(lambda0$1=phi0=Infinity);ranges=[];geoStream(feature,boundsStream);if(n=ranges.length){ranges.sort(rangeCompare);for(i=1,a=ranges[0],merged=[a];i<n;++i){b=ranges[i];if(rangeContains(a,b[0])||rangeContains(a,b[1])){if(angle(a[0],b[1])>angle(a[0],a[1]))a[1]=b[1];if(angle(b[0],a[1])>angle(a[0],a[1]))a[0]=b[0]}else{merged.push(a=b)}}for(deltaMax=-Infinity,n=merged.length-1,i=0,a=merged[n];i<=n;a=b,++i){b=merged[i];if((delta=angle(a[1],b[0]))>deltaMax)deltaMax=delta,lambda0$1=b[0],lambda1=a[1]}}ranges=range$1=null;return lambda0$1===Infinity||phi0===Infinity?[[NaN,NaN],[NaN,NaN]]:[[lambda0$1,phi0],[lambda1,phi1]]};var W0;var W1;var X0;var Y0;var Z0;var X1;var Y1;var Z1;var X2;var Y2;var Z2;var lambda00$2;var phi00$2;var x0;var y0;var z0;var centroidStream={sphere:noop,point:centroidPoint,lineStart:centroidLineStart,lineEnd:centroidLineEnd,polygonStart:function(){centroidStream.lineStart=centroidRingStart;centroidStream.lineEnd=centroidRingEnd},polygonEnd:function(){centroidStream.lineStart=centroidLineStart;centroidStream.lineEnd=centroidLineEnd}};function centroidPoint(lambda,phi){lambda*=radians,phi*=radians;var cosPhi=cos(phi);centroidPointCartesian(cosPhi*cos(lambda),cosPhi*sin(lambda),sin(phi))}function centroidPointCartesian(x,y,z){++W0;X0+=(x-X0)/W0;Y0+=(y-Y0)/W0;Z0+=(z-Z0)/W0}function centroidLineStart(){centroidStream.point=centroidLinePointFirst}function centroidLinePointFirst(lambda,phi){lambda*=radians,phi*=radians;var cosPhi=cos(phi);x0=cosPhi*cos(lambda);y0=cosPhi*sin(lambda);z0=sin(phi);centroidStream.point=centroidLinePoint;centroidPointCartesian(x0,y0,z0)}function centroidLinePoint(lambda,phi){lambda*=radians,phi*=radians;var cosPhi=cos(phi),x=cosPhi*cos(lambda),y=cosPhi*sin(lambda),z=sin(phi),w=atan2(sqrt((w=y0*z-z0*y)*w+(w=z0*x-x0*z)*w+(w=x0*y-y0*x)*w),x0*x+y0*y+z0*z);W1+=w;X1+=w*(x0+(x0=x));Y1+=w*(y0+(y0=y));Z1+=w*(z0+(z0=z));centroidPointCartesian(x0,y0,z0)}function centroidLineEnd(){centroidStream.point=centroidPoint}function centroidRingStart(){centroidStream.point=centroidRingPointFirst}function centroidRingEnd(){centroidRingPoint(lambda00$2,phi00$2);centroidStream.point=centroidPoint}function centroidRingPointFirst(lambda,phi){lambda00$2=lambda,phi00$2=phi;lambda*=radians,phi*=radians;centroidStream.point=centroidRingPoint;var cosPhi=cos(phi);x0=cosPhi*cos(lambda);y0=cosPhi*sin(lambda);z0=sin(phi);centroidPointCartesian(x0,y0,z0)}function centroidRingPoint(lambda,phi){lambda*=radians,phi*=radians;var cosPhi=cos(phi),x=cosPhi*cos(lambda),y=cosPhi*sin(lambda),z=sin(phi),cx=y0*z-z0*y,cy=z0*x-x0*z,cz=x0*y-y0*x,m=sqrt(cx*cx+cy*cy+cz*cz),u=x0*x+y0*y+z0*z,v=m&&-acos(u)/m,w=atan2(m,u);X2+=v*cx;Y2+=v*cy;Z2+=v*cz;W1+=w;X1+=w*(x0+(x0=x));Y1+=w*(y0+(y0=y));Z1+=w*(z0+(z0=z));centroidPointCartesian(x0,y0,z0)}var centroid=function(object){W0=W1=X0=Y0=Z0=X1=Y1=Z1=X2=Y2=Z2=0;geoStream(object,centroidStream);var x=X2,y=Y2,z=Z2,m=x*x+y*y+z*z;if(m<epsilon2){x=X1,y=Y1,z=Z1;if(W1<epsilon)x=X0,y=Y0,z=Z0;m=x*x+y*y+z*z;if(m<epsilon2)return[NaN,NaN]}return[atan2(y,x)*degrees,asin(z/sqrt(m))*degrees]};var constant=function(x){return function(){return x}};var compose=function(a,b){function compose(x,y){return x=a(x,y),b(x[0],x[1])}if(a.invert&&b.invert)compose.invert=function(x,y){return x=b.invert(x,y),x&&a.invert(x[0],x[1])};return compose};function rotationIdentity(lambda,phi){return[lambda>pi?lambda-tau:lambda<-pi?lambda+tau:lambda,phi]}rotationIdentity.invert=rotationIdentity;function rotateRadians(deltaLambda,deltaPhi,deltaGamma){return(deltaLambda%=tau)?deltaPhi||deltaGamma?compose(rotationLambda(deltaLambda),rotationPhiGamma(deltaPhi,deltaGamma)):rotationLambda(deltaLambda):deltaPhi||deltaGamma?rotationPhiGamma(deltaPhi,deltaGamma):rotationIdentity}function forwardRotationLambda(deltaLambda){return function(lambda,phi){return lambda+=deltaLambda,[lambda>pi?lambda-tau:lambda<-pi?lambda+tau:lambda,phi]}}function rotationLambda(deltaLambda){var rotation=forwardRotationLambda(deltaLambda);rotation.invert=forwardRotationLambda(-deltaLambda);return rotation}function rotationPhiGamma(deltaPhi,deltaGamma){var cosDeltaPhi=cos(deltaPhi),sinDeltaPhi=sin(deltaPhi),cosDeltaGamma=cos(deltaGamma),sinDeltaGamma=sin(deltaGamma);function rotation(lambda,phi){var cosPhi=cos(phi),x=cos(lambda)*cosPhi,y=sin(lambda)*cosPhi,z=sin(phi),k=z*cosDeltaPhi+x*sinDeltaPhi;return[atan2(y*cosDeltaGamma-k*sinDeltaGamma,x*cosDeltaPhi-z*sinDeltaPhi),asin(k*cosDeltaGamma+y*sinDeltaGamma)]}rotation.invert=function(lambda,phi){var cosPhi=cos(phi),x=cos(lambda)*cosPhi,y=sin(lambda)*cosPhi,z=sin(phi),k=z*cosDeltaGamma-y*sinDeltaGamma;return[atan2(y*cosDeltaGamma+z*sinDeltaGamma,x*cosDeltaPhi+k*sinDeltaPhi),asin(k*cosDeltaPhi-x*sinDeltaPhi)]};return rotation}var rotation=function(rotate){rotate=rotateRadians(rotate[0]*radians,rotate[1]*radians,rotate.length>2?rotate[2]*radians:0);function forward(coordinates){coordinates=rotate(coordinates[0]*radians,coordinates[1]*radians);return coordinates[0]*=degrees,coordinates[1]*=degrees,coordinates}forward.invert=function(coordinates){coordinates=rotate.invert(coordinates[0]*radians,coordinates[1]*radians);return coordinates[0]*=degrees,coordinates[1]*=degrees,coordinates};return forward};function circleStream(stream,radius,delta,direction,t0,t1){if(!delta)return;var cosRadius=cos(radius),sinRadius=sin(radius),step=direction*delta;if(t0==null){t0=radius+direction*tau;t1=radius-step/2}else{t0=circleRadius(cosRadius,t0);t1=circleRadius(cosRadius,t1);if(direction>0?t0<t1:t0>t1)t0+=direction*tau}for(var point,t=t0;direction>0?t>t1:t<t1;t-=step){point=spherical([cosRadius,-sinRadius*cos(t),-sinRadius*sin(t)]);stream.point(point[0],point[1])}}function circleRadius(cosRadius,point){point=cartesian(point),point[0]-=cosRadius;cartesianNormalizeInPlace(point);var radius=acos(-point[1]);return((-point[2]<0?-radius:radius)+tau-epsilon)%tau}var circle=function(){var center=constant([0,0]),radius=constant(90),precision=constant(6),ring,rotate,stream={point:point};function point(x,y){ring.push(x=rotate(x,y));x[0]*=degrees,x[1]*=degrees}function circle(){var c=center.apply(this,arguments),r=radius.apply(this,arguments)*radians,p=precision.apply(this,arguments)*radians;ring=[];rotate=rotateRadians(-c[0]*radians,-c[1]*radians,0).invert;circleStream(stream,r,p,1);c={type:"Polygon",coordinates:[ring]};ring=rotate=null;return c}circle.center=function(_){return arguments.length?(center=typeof _==="function"?_:constant([+_[0],+_[1]]),circle):center};circle.radius=function(_){return arguments.length?(radius=typeof _==="function"?_:constant(+_),circle):radius};circle.precision=function(_){return arguments.length?(precision=typeof _==="function"?_:constant(+_),circle):precision};return circle};var clipBuffer=function(){var lines=[],line;return{point:function(x,y){line.push([x,y])},lineStart:function(){lines.push(line=[])},lineEnd:noop,rejoin:function(){if(lines.length>1)lines.push(lines.pop().concat(lines.shift()))},result:function(){var result=lines;lines=[];line=null;return result}}};var clipLine=function(a,b,x0,y0,x1,y1){var ax=a[0],ay=a[1],bx=b[0],by=b[1],t0=0,t1=1,dx=bx-ax,dy=by-ay,r;r=x0-ax;if(!dx&&r>0)return;r/=dx;if(dx<0){if(r<t0)return;if(r<t1)t1=r}else if(dx>0){if(r>t1)return;if(r>t0)t0=r}r=x1-ax;if(!dx&&r<0)return;r/=dx;if(dx<0){if(r>t1)return;if(r>t0)t0=r}else if(dx>0){if(r<t0)return;if(r<t1)t1=r}r=y0-ay;if(!dy&&r>0)return;r/=dy;if(dy<0){if(r<t0)return;if(r<t1)t1=r}else if(dy>0){if(r>t1)return;if(r>t0)t0=r}r=y1-ay;if(!dy&&r<0)return;r/=dy;if(dy<0){if(r>t1)return;if(r>t0)t0=r}else if(dy>0){if(r<t0)return;if(r<t1)t1=r}if(t0>0)a[0]=ax+t0*dx,a[1]=ay+t0*dy;if(t1<1)b[0]=ax+t1*dx,b[1]=ay+t1*dy;return true};var pointEqual=function(a,b){return abs(a[0]-b[0])<epsilon&&abs(a[1]-b[1])<epsilon};function Intersection(point,points,other,entry){this.x=point;this.z=points;this.o=other;this.e=entry;this.v=false;this.n=this.p=null}var clipPolygon=function(segments,compareIntersection,startInside,interpolate,stream){var subject=[],clip=[],i,n;segments.forEach(function(segment){if((n=segment.length-1)<=0)return;var n,p0=segment[0],p1=segment[n],x;if(pointEqual(p0,p1)){stream.lineStart();for(i=0;i<n;++i)stream.point((p0=segment[i])[0],p0[1]);stream.lineEnd();return}subject.push(x=new Intersection(p0,segment,null,true));clip.push(x.o=new Intersection(p0,null,x,false));subject.push(x=new Intersection(p1,segment,null,false));clip.push(x.o=new Intersection(p1,null,x,true))});if(!subject.length)return;clip.sort(compareIntersection);link(subject);link(clip);for(i=0,n=clip.length;i<n;++i){clip[i].e=startInside=!startInside}var start=subject[0],points,point;while(1){var current=start,isSubject=true;while(current.v)if((current=current.n)===start)return;points=current.z;stream.lineStart();do{current.v=current.o.v=true;if(current.e){if(isSubject){for(i=0,n=points.length;i<n;++i)stream.point((point=points[i])[0],point[1])}else{interpolate(current.x,current.n.x,1,stream)}current=current.n}else{if(isSubject){points=current.p.z;for(i=points.length-1;i>=0;--i)stream.point((point=points[i])[0],point[1])}else{interpolate(current.x,current.p.x,-1,stream)}current=current.p}current=current.o;points=current.z;isSubject=!isSubject}while(!current.v);stream.lineEnd()}};function link(array){if(!(n=array.length))return;var n,i=0,a=array[0],b;while(++i<n){a.n=b=array[i];b.p=a;a=b}a.n=b=array[0];b.p=a}var clipMax=1e9;var clipMin=-clipMax;function clipExtent(x0,y0,x1,y1){function visible(x,y){return x0<=x&&x<=x1&&y0<=y&&y<=y1}function interpolate(from,to,direction,stream){var a=0,a1=0;if(from==null||(a=corner(from,direction))!==(a1=corner(to,direction))||comparePoint(from,to)<0^direction>0){do stream.point(a===0||a===3?x0:x1,a>1?y1:y0);while((a=(a+direction+4)%4)!==a1)}else{stream.point(to[0],to[1])}}function corner(p,direction){return abs(p[0]-x0)<epsilon?direction>0?0:3:abs(p[0]-x1)<epsilon?direction>0?2:1:abs(p[1]-y0)<epsilon?direction>0?1:0:direction>0?3:2}function compareIntersection(a,b){return comparePoint(a.x,b.x)}function comparePoint(a,b){var ca=corner(a,1),cb=corner(b,1);return ca!==cb?ca-cb:ca===0?b[1]-a[1]:ca===1?a[0]-b[0]:ca===2?a[1]-b[1]:b[0]-a[0]}return function(stream){var activeStream=stream,bufferStream=clipBuffer(),segments,polygon,ring,x__,y__,v__,x_,y_,v_,first,clean;var clipStream={point:point,lineStart:lineStart,lineEnd:lineEnd,polygonStart:polygonStart,polygonEnd:polygonEnd};function point(x,y){if(visible(x,y))activeStream.point(x,y)}function polygonInside(){var winding=0;for(var i=0,n=polygon.length;i<n;++i){for(var ring=polygon[i],j=1,m=ring.length,point=ring[0],a0,a1,b0=point[0],b1=point[1];j<m;++j){a0=b0,a1=b1,point=ring[j],b0=point[0],b1=point[1];if(a1<=y1){if(b1>y1&&(b0-a0)*(y1-a1)>(b1-a1)*(x0-a0))++winding}else{if(b1<=y1&&(b0-a0)*(y1-a1)<(b1-a1)*(x0-a0))--winding}}}return winding}function polygonStart(){activeStream=bufferStream,segments=[],polygon=[],clean=true}function polygonEnd(){var startInside=polygonInside(),cleanInside=clean&&startInside,visible=(segments=d3Array.merge(segments)).length;if(cleanInside||visible){stream.polygonStart();if(cleanInside){stream.lineStart();interpolate(null,null,1,stream);stream.lineEnd()}if(visible){clipPolygon(segments,compareIntersection,startInside,interpolate,stream)}stream.polygonEnd()}activeStream=stream,segments=polygon=ring=null}function lineStart(){clipStream.point=linePoint;if(polygon)polygon.push(ring=[]);first=true;v_=false;x_=y_=NaN}function lineEnd(){if(segments){linePoint(x__,y__);if(v__&&v_)bufferStream.rejoin();segments.push(bufferStream.result())}clipStream.point=point;if(v_)activeStream.lineEnd()}function linePoint(x,y){var v=visible(x,y);if(polygon)ring.push([x,y]);if(first){x__=x,y__=y,v__=v;first=false;if(v){activeStream.lineStart();activeStream.point(x,y)}}else{if(v&&v_)activeStream.point(x,y);else{var a=[x_=Math.max(clipMin,Math.min(clipMax,x_)),y_=Math.max(clipMin,Math.min(clipMax,y_))],b=[x=Math.max(clipMin,Math.min(clipMax,x)),y=Math.max(clipMin,Math.min(clipMax,y))];if(clipLine(a,b,x0,y0,x1,y1)){if(!v_){activeStream.lineStart();activeStream.point(a[0],a[1])}activeStream.point(b[0],b[1]);if(!v)activeStream.lineEnd();clean=false}else if(v){activeStream.lineStart();activeStream.point(x,y);clean=false}}}x_=x,y_=y,v_=v}return clipStream}}var extent=function(){var x0=0,y0=0,x1=960,y1=500,cache,cacheStream,clip;return clip={stream:function(stream){return cache&&cacheStream===stream?cache:cache=clipExtent(x0,y0,x1,y1)(cacheStream=stream)},extent:function(_){return arguments.length?(x0=+_[0][0],y0=+_[0][1],x1=+_[1][0],y1=+_[1][1],cache=cacheStream=null,clip):[[x0,y0],[x1,y1]]}}};var lengthSum=adder();var lambda0$2;var sinPhi0$1;var cosPhi0$1;var lengthStream={sphere:noop,point:noop,lineStart:lengthLineStart,lineEnd:noop,polygonStart:noop,polygonEnd:noop};function lengthLineStart(){lengthStream.point=lengthPointFirst;lengthStream.lineEnd=lengthLineEnd}function lengthLineEnd(){lengthStream.point=lengthStream.lineEnd=noop}function lengthPointFirst(lambda,phi){lambda*=radians,phi*=radians;lambda0$2=lambda,sinPhi0$1=sin(phi),cosPhi0$1=cos(phi);lengthStream.point=lengthPoint}function lengthPoint(lambda,phi){lambda*=radians,phi*=radians;var sinPhi=sin(phi),cosPhi=cos(phi),delta=abs(lambda-lambda0$2),cosDelta=cos(delta),sinDelta=sin(delta),x=cosPhi*sinDelta,y=cosPhi0$1*sinPhi-sinPhi0$1*cosPhi*cosDelta,z=sinPhi0$1*sinPhi+cosPhi0$1*cosPhi*cosDelta;lengthSum.add(atan2(sqrt(x*x+y*y),z));lambda0$2=lambda,sinPhi0$1=sinPhi,cosPhi0$1=cosPhi}var length=function(object){lengthSum.reset();geoStream(object,lengthStream);return+lengthSum};var coordinates=[null,null];var object={type:"LineString",coordinates:coordinates};var distance=function(a,b){coordinates[0]=a;coordinates[1]=b;return length(object)};function graticuleX(y0,y1,dy){var y=d3Array.range(y0,y1-epsilon,dy).concat(y1);return function(x){return y.map(function(y){return[x,y]})}}function graticuleY(x0,x1,dx){var x=d3Array.range(x0,x1-epsilon,dx).concat(x1);return function(y){return x.map(function(x){return[x,y]})}}var graticule=function(){var x1,x0,X1,X0,y1,y0,Y1,Y0,dx=10,dy=dx,DX=90,DY=360,x,y,X,Y,precision=2.5;function graticule(){return{type:"MultiLineString",coordinates:lines()}}function lines(){return d3Array.range(ceil(X0/DX)*DX,X1,DX).map(X).concat(d3Array.range(ceil(Y0/DY)*DY,Y1,DY).map(Y)).concat(d3Array.range(ceil(x0/dx)*dx,x1,dx).filter(function(x){return abs(x%DX)>epsilon}).map(x)).concat(d3Array.range(ceil(y0/dy)*dy,y1,dy).filter(function(y){return abs(y%DY)>epsilon}).map(y))}graticule.lines=function(){return lines().map(function(coordinates){return{type:"LineString",coordinates:coordinates}})};graticule.outline=function(){return{type:"Polygon",coordinates:[X(X0).concat(Y(Y1).slice(1),X(X1).reverse().slice(1),Y(Y0).reverse().slice(1))]}};graticule.extent=function(_){if(!arguments.length)return graticule.extentMinor();return graticule.extentMajor(_).extentMinor(_)};graticule.extentMajor=function(_){if(!arguments.length)return[[X0,Y0],[X1,Y1]];X0=+_[0][0],X1=+_[1][0];Y0=+_[0][1],Y1=+_[1][1];if(X0>X1)_=X0,X0=X1,X1=_;if(Y0>Y1)_=Y0,Y0=Y1,Y1=_;return graticule.precision(precision)};graticule.extentMinor=function(_){if(!arguments.length)return[[x0,y0],[x1,y1]];x0=+_[0][0],x1=+_[1][0];y0=+_[0][1],y1=+_[1][1];if(x0>x1)_=x0,x0=x1,x1=_;if(y0>y1)_=y0,y0=y1,y1=_;return graticule.precision(precision)};graticule.step=function(_){if(!arguments.length)return graticule.stepMinor();return graticule.stepMajor(_).stepMinor(_)};graticule.stepMajor=function(_){if(!arguments.length)return[DX,DY];DX=+_[0],DY=+_[1];return graticule};graticule.stepMinor=function(_){if(!arguments.length)return[dx,dy];dx=+_[0],dy=+_[1];return graticule};graticule.precision=function(_){if(!arguments.length)return precision;precision=+_;x=graticuleX(y0,y1,90);y=graticuleY(x0,x1,precision);X=graticuleX(Y0,Y1,90);Y=graticuleY(X0,X1,precision);return graticule};return graticule.extentMajor([[-180,-90+epsilon],[180,90-epsilon]]).extentMinor([[-180,-80-epsilon],[180,80+epsilon]])};var interpolate=function(a,b){var x0=a[0]*radians,y0=a[1]*radians,x1=b[0]*radians,y1=b[1]*radians,cy0=cos(y0),sy0=sin(y0),cy1=cos(y1),sy1=sin(y1),kx0=cy0*cos(x0),ky0=cy0*sin(x0),kx1=cy1*cos(x1),ky1=cy1*sin(x1),d=2*asin(sqrt(haversin(y1-y0)+cy0*cy1*haversin(x1-x0))),k=sin(d);var interpolate=d?function(t){var B=sin(t*=d)/k,A=sin(d-t)/k,x=A*kx0+B*kx1,y=A*ky0+B*ky1,z=A*sy0+B*sy1;return[atan2(y,x)*degrees,atan2(z,sqrt(x*x+y*y))*degrees]}:function(){return[x0*degrees,y0*degrees]};interpolate.distance=d;return interpolate};var identity=function(x){return x};var areaSum$1=adder();var areaRingSum$1=adder();var x00;var y00;var x0$1;var y0$1;var areaStream$1={point:noop,lineStart:noop,lineEnd:noop,polygonStart:function(){areaStream$1.lineStart=areaRingStart$1;areaStream$1.lineEnd=areaRingEnd$1},polygonEnd:function(){areaStream$1.lineStart=areaStream$1.lineEnd=areaStream$1.point=noop;areaSum$1.add(abs(areaRingSum$1));areaRingSum$1.reset()},result:function(){var area=areaSum$1/2;areaSum$1.reset();return area}};function areaRingStart$1(){areaStream$1.point=areaPointFirst$1}function areaPointFirst$1(x,y){areaStream$1.point=areaPoint$1;x00=x0$1=x,y00=y0$1=y}function areaPoint$1(x,y){areaRingSum$1.add(y0$1*x-x0$1*y);x0$1=x,y0$1=y}function areaRingEnd$1(){areaPoint$1(x00,y00)}var x0$2=Infinity;var y0$2=x0$2;var x1=-x0$2;var y1=x1;var boundsStream$1={point:boundsPoint$1,lineStart:noop,lineEnd:noop,polygonStart:noop,polygonEnd:noop,result:function(){var bounds=[[x0$2,y0$2],[x1,y1]];x1=y1=-(y0$2=x0$2=Infinity);return bounds}};function boundsPoint$1(x,y){if(x<x0$2)x0$2=x;if(x>x1)x1=x;if(y<y0$2)y0$2=y;if(y>y1)y1=y}var X0$1=0;var Y0$1=0;var Z0$1=0;var X1$1=0;var Y1$1=0;var Z1$1=0;var X2$1=0;var Y2$1=0;var Z2$1=0;var x00$1;var y00$1;var x0$3;var y0$3;var centroidStream$1={point:centroidPoint$1,lineStart:centroidLineStart$1,lineEnd:centroidLineEnd$1,polygonStart:function(){centroidStream$1.lineStart=centroidRingStart$1;centroidStream$1.lineEnd=centroidRingEnd$1},polygonEnd:function(){centroidStream$1.point=centroidPoint$1;centroidStream$1.lineStart=centroidLineStart$1;centroidStream$1.lineEnd=centroidLineEnd$1},result:function(){var centroid=Z2$1?[X2$1/Z2$1,Y2$1/Z2$1]:Z1$1?[X1$1/Z1$1,Y1$1/Z1$1]:Z0$1?[X0$1/Z0$1,Y0$1/Z0$1]:[NaN,NaN];X0$1=Y0$1=Z0$1=X1$1=Y1$1=Z1$1=X2$1=Y2$1=Z2$1=0;return centroid}};function centroidPoint$1(x,y){X0$1+=x;Y0$1+=y;++Z0$1}function centroidLineStart$1(){centroidStream$1.point=centroidPointFirstLine}function centroidPointFirstLine(x,y){centroidStream$1.point=centroidPointLine;centroidPoint$1(x0$3=x,y0$3=y)}function centroidPointLine(x,y){var dx=x-x0$3,dy=y-y0$3,z=sqrt(dx*dx+dy*dy);X1$1+=z*(x0$3+x)/2;Y1$1+=z*(y0$3+y)/2;Z1$1+=z;centroidPoint$1(x0$3=x,y0$3=y)}function centroidLineEnd$1(){centroidStream$1.point=centroidPoint$1}function centroidRingStart$1(){centroidStream$1.point=centroidPointFirstRing}function centroidRingEnd$1(){centroidPointRing(x00$1,y00$1)}function centroidPointFirstRing(x,y){centroidStream$1.point=centroidPointRing;centroidPoint$1(x00$1=x0$3=x,y00$1=y0$3=y)}function centroidPointRing(x,y){var dx=x-x0$3,dy=y-y0$3,z=sqrt(dx*dx+dy*dy);X1$1+=z*(x0$3+x)/2;Y1$1+=z*(y0$3+y)/2;Z1$1+=z;z=y0$3*x-x0$3*y;X2$1+=z*(x0$3+x);Y2$1+=z*(y0$3+y);Z2$1+=z*3;centroidPoint$1(x0$3=x,y0$3=y)}function PathContext(context){this._context=context}PathContext.prototype={_radius:4.5,pointRadius:function(_){return this._radius=_,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){if(this._line===0)this._context.closePath();this._point=NaN},point:function(x,y){switch(this._point){case 0:{this._context.moveTo(x,y);this._point=1;break}case 1:{this._context.lineTo(x,y);break}default:{this._context.moveTo(x+this._radius,y);this._context.arc(x,y,this._radius,0,tau);break}}},result:noop};function PathString(){this._string=[]}PathString.prototype={_circle:circle$1(4.5),pointRadius:function(_){return this._circle=circle$1(_),this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){if(this._line===0)this._string.push("Z");this._point=NaN},point:function(x,y){switch(this._point){
case 0:{this._string.push("M",x,",",y);this._point=1;break}case 1:{this._string.push("L",x,",",y);break}default:{this._string.push("M",x,",",y,this._circle);break}}},result:function(){if(this._string.length){var result=this._string.join("");this._string=[];return result}}};function circle$1(radius){return"m0,"+radius+"a"+radius+","+radius+" 0 1,1 0,"+-2*radius+"a"+radius+","+radius+" 0 1,1 0,"+2*radius+"z"}var index=function(){var pointRadius=4.5,projection,projectionStream,context,contextStream;function path(object){if(object){if(typeof pointRadius==="function")contextStream.pointRadius(+pointRadius.apply(this,arguments));geoStream(object,projectionStream(contextStream))}return contextStream.result()}path.area=function(object){geoStream(object,projectionStream(areaStream$1));return areaStream$1.result()};path.bounds=function(object){geoStream(object,projectionStream(boundsStream$1));return boundsStream$1.result()};path.centroid=function(object){geoStream(object,projectionStream(centroidStream$1));return centroidStream$1.result()};path.projection=function(_){return arguments.length?(projectionStream=(projection=_)==null?identity:_.stream,path):projection};path.context=function(_){if(!arguments.length)return context;contextStream=(context=_)==null?new PathString:new PathContext(_);if(typeof pointRadius!=="function")contextStream.pointRadius(pointRadius);return path};path.pointRadius=function(_){if(!arguments.length)return pointRadius;pointRadius=typeof _==="function"?_:(contextStream.pointRadius(+_),+_);return path};return path.projection(null).context(null)};var sum=adder();var polygonContains=function(polygon,point){var lambda=point[0],phi=point[1],normal=[sin(lambda),-cos(lambda),0],angle=0,winding=0;sum.reset();for(var i=0,n=polygon.length;i<n;++i){if(!(m=(ring=polygon[i]).length))continue;var ring,m,point0=ring[m-1],lambda0=point0[0],phi0=point0[1]/2+quarterPi,sinPhi0=sin(phi0),cosPhi0=cos(phi0);for(var j=0;j<m;++j,lambda0=lambda1,sinPhi0=sinPhi1,cosPhi0=cosPhi1,point0=point1){var point1=ring[j],lambda1=point1[0],phi1=point1[1]/2+quarterPi,sinPhi1=sin(phi1),cosPhi1=cos(phi1),delta=lambda1-lambda0,sign$$1=delta>=0?1:-1,absDelta=sign$$1*delta,antimeridian=absDelta>pi,k=sinPhi0*sinPhi1;sum.add(atan2(k*sign$$1*sin(absDelta),cosPhi0*cosPhi1+k*cos(absDelta)));angle+=antimeridian?delta+sign$$1*tau:delta;if(antimeridian^lambda0>=lambda^lambda1>=lambda){var arc=cartesianCross(cartesian(point0),cartesian(point1));cartesianNormalizeInPlace(arc);var intersection=cartesianCross(normal,arc);cartesianNormalizeInPlace(intersection);var phiArc=(antimeridian^delta>=0?-1:1)*asin(intersection[2]);if(phi>phiArc||phi===phiArc&&(arc[0]||arc[1])){winding+=antimeridian^delta>=0?1:-1}}}}return(angle<-epsilon||angle<epsilon&&sum<-epsilon)^winding&1};var clip=function(pointVisible,clipLine,interpolate,start){return function(rotate,sink){var line=clipLine(sink),rotatedStart=rotate.invert(start[0],start[1]),ringBuffer=clipBuffer(),ringSink=clipLine(ringBuffer),polygonStarted=false,polygon,segments,ring;var clip={point:point,lineStart:lineStart,lineEnd:lineEnd,polygonStart:function(){clip.point=pointRing;clip.lineStart=ringStart;clip.lineEnd=ringEnd;segments=[];polygon=[]},polygonEnd:function(){clip.point=point;clip.lineStart=lineStart;clip.lineEnd=lineEnd;segments=d3Array.merge(segments);var startInside=polygonContains(polygon,rotatedStart);if(segments.length){if(!polygonStarted)sink.polygonStart(),polygonStarted=true;clipPolygon(segments,compareIntersection,startInside,interpolate,sink)}else if(startInside){if(!polygonStarted)sink.polygonStart(),polygonStarted=true;sink.lineStart();interpolate(null,null,1,sink);sink.lineEnd()}if(polygonStarted)sink.polygonEnd(),polygonStarted=false;segments=polygon=null},sphere:function(){sink.polygonStart();sink.lineStart();interpolate(null,null,1,sink);sink.lineEnd();sink.polygonEnd()}};function point(lambda,phi){var point=rotate(lambda,phi);if(pointVisible(lambda=point[0],phi=point[1]))sink.point(lambda,phi)}function pointLine(lambda,phi){var point=rotate(lambda,phi);line.point(point[0],point[1])}function lineStart(){clip.point=pointLine;line.lineStart()}function lineEnd(){clip.point=point;line.lineEnd()}function pointRing(lambda,phi){ring.push([lambda,phi]);var point=rotate(lambda,phi);ringSink.point(point[0],point[1])}function ringStart(){ringSink.lineStart();ring=[]}function ringEnd(){pointRing(ring[0][0],ring[0][1]);ringSink.lineEnd();var clean=ringSink.clean(),ringSegments=ringBuffer.result(),i,n=ringSegments.length,m,segment,point;ring.pop();polygon.push(ring);ring=null;if(!n)return;if(clean&1){segment=ringSegments[0];if((m=segment.length-1)>0){if(!polygonStarted)sink.polygonStart(),polygonStarted=true;sink.lineStart();for(i=0;i<m;++i)sink.point((point=segment[i])[0],point[1]);sink.lineEnd()}return}if(n>1&&clean&2)ringSegments.push(ringSegments.pop().concat(ringSegments.shift()));segments.push(ringSegments.filter(validSegment))}return clip}};function validSegment(segment){return segment.length>1}function compareIntersection(a,b){return((a=a.x)[0]<0?a[1]-halfPi-epsilon:halfPi-a[1])-((b=b.x)[0]<0?b[1]-halfPi-epsilon:halfPi-b[1])}var clipAntimeridian=clip(function(){return true},clipAntimeridianLine,clipAntimeridianInterpolate,[-pi,-halfPi]);function clipAntimeridianLine(stream){var lambda0=NaN,phi0=NaN,sign0=NaN,clean;return{lineStart:function(){stream.lineStart();clean=1},point:function(lambda1,phi1){var sign1=lambda1>0?pi:-pi,delta=abs(lambda1-lambda0);if(abs(delta-pi)<epsilon){stream.point(lambda0,phi0=(phi0+phi1)/2>0?halfPi:-halfPi);stream.point(sign0,phi0);stream.lineEnd();stream.lineStart();stream.point(sign1,phi0);stream.point(lambda1,phi0);clean=0}else if(sign0!==sign1&&delta>=pi){if(abs(lambda0-sign0)<epsilon)lambda0-=sign0*epsilon;if(abs(lambda1-sign1)<epsilon)lambda1-=sign1*epsilon;phi0=clipAntimeridianIntersect(lambda0,phi0,lambda1,phi1);stream.point(sign0,phi0);stream.lineEnd();stream.lineStart();stream.point(sign1,phi0);clean=0}stream.point(lambda0=lambda1,phi0=phi1);sign0=sign1},lineEnd:function(){stream.lineEnd();lambda0=phi0=NaN},clean:function(){return 2-clean}}}function clipAntimeridianIntersect(lambda0,phi0,lambda1,phi1){var cosPhi0,cosPhi1,sinLambda0Lambda1=sin(lambda0-lambda1);return abs(sinLambda0Lambda1)>epsilon?atan((sin(phi0)*(cosPhi1=cos(phi1))*sin(lambda1)-sin(phi1)*(cosPhi0=cos(phi0))*sin(lambda0))/(cosPhi0*cosPhi1*sinLambda0Lambda1)):(phi0+phi1)/2}function clipAntimeridianInterpolate(from,to,direction,stream){var phi;if(from==null){phi=direction*halfPi;stream.point(-pi,phi);stream.point(0,phi);stream.point(pi,phi);stream.point(pi,0);stream.point(pi,-phi);stream.point(0,-phi);stream.point(-pi,-phi);stream.point(-pi,0);stream.point(-pi,phi)}else if(abs(from[0]-to[0])>epsilon){var lambda=from[0]<to[0]?pi:-pi;phi=direction*lambda/2;stream.point(-lambda,phi);stream.point(0,phi);stream.point(lambda,phi)}else{stream.point(to[0],to[1])}}var clipCircle=function(radius,delta){var cr=cos(radius),smallRadius=cr>0,notHemisphere=abs(cr)>epsilon;function interpolate(from,to,direction,stream){circleStream(stream,radius,delta,direction,from,to)}function visible(lambda,phi){return cos(lambda)*cos(phi)>cr}function clipLine(stream){var point0,c0,v0,v00,clean;return{lineStart:function(){v00=v0=false;clean=1},point:function(lambda,phi){var point1=[lambda,phi],point2,v=visible(lambda,phi),c=smallRadius?v?0:code(lambda,phi):v?code(lambda+(lambda<0?pi:-pi),phi):0;if(!point0&&(v00=v0=v))stream.lineStart();if(v!==v0){point2=intersect(point0,point1);if(pointEqual(point0,point2)||pointEqual(point1,point2)){point1[0]+=epsilon;point1[1]+=epsilon;v=visible(point1[0],point1[1])}}if(v!==v0){clean=0;if(v){stream.lineStart();point2=intersect(point1,point0);stream.point(point2[0],point2[1])}else{point2=intersect(point0,point1);stream.point(point2[0],point2[1]);stream.lineEnd()}point0=point2}else if(notHemisphere&&point0&&smallRadius^v){var t;if(!(c&c0)&&(t=intersect(point1,point0,true))){clean=0;if(smallRadius){stream.lineStart();stream.point(t[0][0],t[0][1]);stream.point(t[1][0],t[1][1]);stream.lineEnd()}else{stream.point(t[1][0],t[1][1]);stream.lineEnd();stream.lineStart();stream.point(t[0][0],t[0][1])}}}if(v&&(!point0||!pointEqual(point0,point1))){stream.point(point1[0],point1[1])}point0=point1,v0=v,c0=c},lineEnd:function(){if(v0)stream.lineEnd();point0=null},clean:function(){return clean|(v00&&v0)<<1}}}function intersect(a,b,two){var pa=cartesian(a),pb=cartesian(b);var n1=[1,0,0],n2=cartesianCross(pa,pb),n2n2=cartesianDot(n2,n2),n1n2=n2[0],determinant=n2n2-n1n2*n1n2;if(!determinant)return!two&&a;var c1=cr*n2n2/determinant,c2=-cr*n1n2/determinant,n1xn2=cartesianCross(n1,n2),A=cartesianScale(n1,c1),B=cartesianScale(n2,c2);cartesianAddInPlace(A,B);var u=n1xn2,w=cartesianDot(A,u),uu=cartesianDot(u,u),t2=w*w-uu*(cartesianDot(A,A)-1);if(t2<0)return;var t=sqrt(t2),q=cartesianScale(u,(-w-t)/uu);cartesianAddInPlace(q,A);q=spherical(q);if(!two)return q;var lambda0=a[0],lambda1=b[0],phi0=a[1],phi1=b[1],z;if(lambda1<lambda0)z=lambda0,lambda0=lambda1,lambda1=z;var delta=lambda1-lambda0,polar=abs(delta-pi)<epsilon,meridian=polar||delta<epsilon;if(!polar&&phi1<phi0)z=phi0,phi0=phi1,phi1=z;if(meridian?polar?phi0+phi1>0^q[1]<(abs(q[0]-lambda0)<epsilon?phi0:phi1):phi0<=q[1]&&q[1]<=phi1:delta>pi^(lambda0<=q[0]&&q[0]<=lambda1)){var q1=cartesianScale(u,(-w+t)/uu);cartesianAddInPlace(q1,A);return[q,spherical(q1)]}}function code(lambda,phi){var r=smallRadius?radius:pi-radius,code=0;if(lambda<-r)code|=1;else if(lambda>r)code|=2;if(phi<-r)code|=4;else if(phi>r)code|=8;return code}return clip(visible,clipLine,interpolate,smallRadius?[0,-radius]:[-pi,radius-pi])};var transform=function(prototype){return{stream:transform$1(prototype)}};function transform$1(prototype){function T(){}var p=T.prototype=Object.create(Transform.prototype);for(var k in prototype)p[k]=prototype[k];return function(stream){var t=new T;t.stream=stream;return t}}function Transform(){}Transform.prototype={point:function(x,y){this.stream.point(x,y)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};function fit(project,extent,object){var w=extent[1][0]-extent[0][0],h=extent[1][1]-extent[0][1],clip=project.clipExtent&&project.clipExtent();project.scale(150).translate([0,0]);if(clip!=null)project.clipExtent(null);geoStream(object,project.stream(boundsStream$1));var b=boundsStream$1.result(),k=Math.min(w/(b[1][0]-b[0][0]),h/(b[1][1]-b[0][1])),x=+extent[0][0]+(w-k*(b[1][0]+b[0][0]))/2,y=+extent[0][1]+(h-k*(b[1][1]+b[0][1]))/2;if(clip!=null)project.clipExtent(clip);return project.scale(k*150).translate([x,y])}function fitSize(project){return function(size,object){return fit(project,[[0,0],size],object)}}function fitExtent(project){return function(extent,object){return fit(project,extent,object)}}var maxDepth=16;var cosMinDistance=cos(30*radians);var resample=function(project,delta2){return+delta2?resample$1(project,delta2):resampleNone(project)};function resampleNone(project){return transform$1({point:function(x,y){x=project(x,y);this.stream.point(x[0],x[1])}})}function resample$1(project,delta2){function resampleLineTo(x0,y0,lambda0,a0,b0,c0,x1,y1,lambda1,a1,b1,c1,depth,stream){var dx=x1-x0,dy=y1-y0,d2=dx*dx+dy*dy;if(d2>4*delta2&&depth--){var a=a0+a1,b=b0+b1,c=c0+c1,m=sqrt(a*a+b*b+c*c),phi2=asin(c/=m),lambda2=abs(abs(c)-1)<epsilon||abs(lambda0-lambda1)<epsilon?(lambda0+lambda1)/2:atan2(b,a),p=project(lambda2,phi2),x2=p[0],y2=p[1],dx2=x2-x0,dy2=y2-y0,dz=dy*dx2-dx*dy2;if(dz*dz/d2>delta2||abs((dx*dx2+dy*dy2)/d2-.5)>.3||a0*a1+b0*b1+c0*c1<cosMinDistance){resampleLineTo(x0,y0,lambda0,a0,b0,c0,x2,y2,lambda2,a/=m,b/=m,c,depth,stream);stream.point(x2,y2);resampleLineTo(x2,y2,lambda2,a,b,c,x1,y1,lambda1,a1,b1,c1,depth,stream)}}}return function(stream){var lambda00,x00,y00,a00,b00,c00,lambda0,x0,y0,a0,b0,c0;var resampleStream={point:point,lineStart:lineStart,lineEnd:lineEnd,polygonStart:function(){stream.polygonStart();resampleStream.lineStart=ringStart},polygonEnd:function(){stream.polygonEnd();resampleStream.lineStart=lineStart}};function point(x,y){x=project(x,y);stream.point(x[0],x[1])}function lineStart(){x0=NaN;resampleStream.point=linePoint;stream.lineStart()}function linePoint(lambda,phi){var c=cartesian([lambda,phi]),p=project(lambda,phi);resampleLineTo(x0,y0,lambda0,a0,b0,c0,x0=p[0],y0=p[1],lambda0=lambda,a0=c[0],b0=c[1],c0=c[2],maxDepth,stream);stream.point(x0,y0)}function lineEnd(){resampleStream.point=point;stream.lineEnd()}function ringStart(){lineStart();resampleStream.point=ringPoint;resampleStream.lineEnd=ringEnd}function ringPoint(lambda,phi){linePoint(lambda00=lambda,phi),x00=x0,y00=y0,a00=a0,b00=b0,c00=c0;resampleStream.point=linePoint}function ringEnd(){resampleLineTo(x0,y0,lambda0,a0,b0,c0,x00,y00,lambda00,a00,b00,c00,maxDepth,stream);resampleStream.lineEnd=lineEnd;lineEnd()}return resampleStream}}var transformRadians=transform$1({point:function(x,y){this.stream.point(x*radians,y*radians)}});function projection(project){return projectionMutator(function(){return project})()}function projectionMutator(projectAt){var project,k=150,x=480,y=250,dx,dy,lambda=0,phi=0,deltaLambda=0,deltaPhi=0,deltaGamma=0,rotate,projectRotate,theta=null,preclip=clipAntimeridian,x0=null,y0,x1,y1,postclip=identity,delta2=.5,projectResample=resample(projectTransform,delta2),cache,cacheStream;function projection(point){point=projectRotate(point[0]*radians,point[1]*radians);return[point[0]*k+dx,dy-point[1]*k]}function invert(point){point=projectRotate.invert((point[0]-dx)/k,(dy-point[1])/k);return point&&[point[0]*degrees,point[1]*degrees]}function projectTransform(x,y){return x=project(x,y),[x[0]*k+dx,dy-x[1]*k]}projection.stream=function(stream){return cache&&cacheStream===stream?cache:cache=transformRadians(preclip(rotate,projectResample(postclip(cacheStream=stream))))};projection.clipAngle=function(_){return arguments.length?(preclip=+_?clipCircle(theta=_*radians,6*radians):(theta=null,clipAntimeridian),reset()):theta*degrees};projection.clipExtent=function(_){return arguments.length?(postclip=_==null?(x0=y0=x1=y1=null,identity):clipExtent(x0=+_[0][0],y0=+_[0][1],x1=+_[1][0],y1=+_[1][1]),reset()):x0==null?null:[[x0,y0],[x1,y1]]};projection.scale=function(_){return arguments.length?(k=+_,recenter()):k};projection.translate=function(_){return arguments.length?(x=+_[0],y=+_[1],recenter()):[x,y]};projection.center=function(_){return arguments.length?(lambda=_[0]%360*radians,phi=_[1]%360*radians,recenter()):[lambda*degrees,phi*degrees]};projection.rotate=function(_){return arguments.length?(deltaLambda=_[0]%360*radians,deltaPhi=_[1]%360*radians,deltaGamma=_.length>2?_[2]%360*radians:0,recenter()):[deltaLambda*degrees,deltaPhi*degrees,deltaGamma*degrees]};projection.precision=function(_){return arguments.length?(projectResample=resample(projectTransform,delta2=_*_),reset()):sqrt(delta2)};projection.fitExtent=fitExtent(projection);projection.fitSize=fitSize(projection);function recenter(){projectRotate=compose(rotate=rotateRadians(deltaLambda,deltaPhi,deltaGamma),project);var center=project(lambda,phi);dx=x-center[0]*k;dy=y+center[1]*k;return reset()}function reset(){cache=cacheStream=null;return projection}return function(){project=projectAt.apply(this,arguments);projection.invert=project.invert&&invert;return recenter()}}function conicProjection(projectAt){var phi0=0,phi1=pi/3,m=projectionMutator(projectAt),p=m(phi0,phi1);p.parallels=function(_){return arguments.length?m(phi0=_[0]*radians,phi1=_[1]*radians):[phi0*degrees,phi1*degrees]};return p}function conicEqualAreaRaw(y0,y1){var sy0=sin(y0),n=(sy0+sin(y1))/2,c=1+sy0*(2*n-sy0),r0=sqrt(c)/n;function project(x,y){var r=sqrt(c-2*n*sin(y))/n;return[r*sin(x*=n),r0-r*cos(x)]}project.invert=function(x,y){var r0y=r0-y;return[atan2(x,r0y)/n,asin((c-(x*x+r0y*r0y)*n*n)/(2*n))]};return project}var conicEqualArea=function(){return conicProjection(conicEqualAreaRaw).scale(155.424).center([0,33.6442])};var albers=function(){return conicEqualArea().parallels([29.5,45.5]).scale(1070).translate([480,250]).rotate([96,0]).center([-.6,38.7])};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()}}}var albersUsa=function(){var cache,cacheStream,lower48=albers(),lower48Point,alaska=conicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),alaskaPoint,hawaii=conicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),hawaiiPoint,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>=.12&&y<.234&&x>=-.425&&x<-.214?alaska:y>=.166&&y<.234&&x>=-.214&&x<-.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 reset()};albersUsa.scale=function(_){if(!arguments.length)return lower48.scale();lower48.scale(_),alaska.scale(_*.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-.455*k,y-.238*k],[x+.455*k,y+.238*k]]).stream(pointStream);alaskaPoint=alaska.translate([x-.307*k,y+.201*k]).clipExtent([[x-.425*k+epsilon,y+.12*k+epsilon],[x-.214*k-epsilon,y+.234*k-epsilon]]).stream(pointStream);hawaiiPoint=hawaii.translate([x-.205*k,y+.212*k]).clipExtent([[x-.214*k+epsilon,y+.166*k+epsilon],[x-.115*k-epsilon,y+.234*k-epsilon]]).stream(pointStream);return reset()};albersUsa.fitExtent=fitExtent(albersUsa);albersUsa.fitSize=fitSize(albersUsa);function reset(){cache=cacheStream=null;return albersUsa}return albersUsa.scale(1070)};function azimuthalRaw(scale){return function(x,y){var cx=cos(x),cy=cos(y),k=scale(cx*cy);return[k*cy*sin(x),k*sin(y)]}}function azimuthalInvert(angle){return function(x,y){var z=sqrt(x*x+y*y),c=angle(z),sc=sin(c),cc=cos(c);return[atan2(x*sc,z*cc),asin(z&&y*sc/z)]}}var azimuthalEqualAreaRaw=azimuthalRaw(function(cxcy){return sqrt(2/(1+cxcy))});azimuthalEqualAreaRaw.invert=azimuthalInvert(function(z){return 2*asin(z/2)});var azimuthalEqualArea=function(){return projection(azimuthalEqualAreaRaw).scale(124.75).clipAngle(180-.001)};var azimuthalEquidistantRaw=azimuthalRaw(function(c){return(c=acos(c))&&c/sin(c)});azimuthalEquidistantRaw.invert=azimuthalInvert(function(z){return z});var azimuthalEquidistant=function(){return projection(azimuthalEquidistantRaw).scale(79.4188).clipAngle(180-.001)};function mercatorRaw(lambda,phi){return[lambda,log(tan((halfPi+phi)/2))]}mercatorRaw.invert=function(x,y){return[x,2*atan(exp(y))-halfPi]};var mercator=function(){return mercatorProjection(mercatorRaw).scale(961/tau)};function mercatorProjection(project){var m=projection(project),scale=m.scale,translate=m.translate,clipExtent=m.clipExtent,clipAuto;m.scale=function(_){return arguments.length?(scale(_),clipAuto&&m.clipExtent(null),m):scale()};m.translate=function(_){return arguments.length?(translate(_),clipAuto&&m.clipExtent(null),m):translate()};m.clipExtent=function(_){if(!arguments.length)return clipAuto?null:clipExtent();if(clipAuto=_==null){var k=pi*scale(),t=translate();_=[[t[0]-k,t[1]-k],[t[0]+k,t[1]+k]]}clipExtent(_);return m};return m.clipExtent(null)}function tany(y){return tan((halfPi+y)/2)}function conicConformalRaw(y0,y1){var cy0=cos(y0),n=y0===y1?sin(y0):log(cy0/cos(y1))/log(tany(y1)/tany(y0)),f=cy0*pow(tany(y0),n)/n;if(!n)return mercatorRaw;function project(x,y){if(f>0){if(y<-halfPi+epsilon)y=-halfPi+epsilon}else{if(y>halfPi-epsilon)y=halfPi-epsilon}var r=f/pow(tany(y),n);return[r*sin(n*x),f-r*cos(n*x)]}project.invert=function(x,y){var fy=f-y,r=sign(n)*sqrt(x*x+fy*fy);return[atan2(x,fy)/n,2*atan(pow(f/r,1/n))-halfPi]};return project}var conicConformal=function(){return conicProjection(conicConformalRaw).scale(109.5).parallels([30,30])};function equirectangularRaw(lambda,phi){return[lambda,phi]}equirectangularRaw.invert=equirectangularRaw;var equirectangular=function(){return projection(equirectangularRaw).scale(152.63)};function conicEquidistantRaw(y0,y1){var cy0=cos(y0),n=y0===y1?sin(y0):(cy0-cos(y1))/(y1-y0),g=cy0/n+y0;if(abs(n)<epsilon)return equirectangularRaw;function project(x,y){var gy=g-y,nx=n*x;return[gy*sin(nx),g-gy*cos(nx)]}project.invert=function(x,y){var gy=g-y;return[atan2(x,gy)/n,g-sign(n)*sqrt(x*x+gy*gy)]};return project}var conicEquidistant=function(){return conicProjection(conicEquidistantRaw).scale(131.154).center([0,13.9389])};function gnomonicRaw(x,y){var cy=cos(y),k=cos(x)*cy;return[cy*sin(x)/k,sin(y)/k]}gnomonicRaw.invert=azimuthalInvert(atan);var gnomonic=function(){return projection(gnomonicRaw).scale(144.049).clipAngle(60)};function orthographicRaw(x,y){return[cos(y)*sin(x),sin(y)]}orthographicRaw.invert=azimuthalInvert(asin);var orthographic=function(){return projection(orthographicRaw).scale(249.5).clipAngle(90+epsilon)};function stereographicRaw(x,y){var cy=cos(y),k=1+cos(x)*cy;return[cy*sin(x)/k,sin(y)/k]}stereographicRaw.invert=azimuthalInvert(function(z){return 2*atan(z)});var stereographic=function(){return projection(stereographicRaw).scale(250).clipAngle(142)};function transverseMercatorRaw(lambda,phi){return[log(tan((halfPi+phi)/2)),-lambda]}transverseMercatorRaw.invert=function(x,y){return[-y,2*atan(exp(x))-halfPi]};var transverseMercator=function(){var m=mercatorProjection(transverseMercatorRaw),center=m.center,rotate=m.rotate;m.center=function(_){return arguments.length?center([-_[1],_[0]]):(_=center(),[_[1],-_[0]])};m.rotate=function(_){return arguments.length?rotate([_[0],_[1],_.length>2?_[2]+90:90]):(_=rotate(),[_[0],_[1],_[2]-90])};return rotate([0,0,90]).scale(159.155)};exports.geoArea=area;exports.geoBounds=bounds;exports.geoCentroid=centroid;exports.geoCircle=circle;exports.geoClipExtent=extent;exports.geoDistance=distance;exports.geoGraticule=graticule;exports.geoInterpolate=interpolate;exports.geoLength=length;exports.geoPath=index;exports.geoAlbers=albers;exports.geoAlbersUsa=albersUsa;exports.geoAzimuthalEqualArea=azimuthalEqualArea;exports.geoAzimuthalEqualAreaRaw=azimuthalEqualAreaRaw;exports.geoAzimuthalEquidistant=azimuthalEquidistant;exports.geoAzimuthalEquidistantRaw=azimuthalEquidistantRaw;exports.geoConicConformal=conicConformal;exports.geoConicConformalRaw=conicConformalRaw;exports.geoConicEqualArea=conicEqualArea;exports.geoConicEqualAreaRaw=conicEqualAreaRaw;exports.geoConicEquidistant=conicEquidistant;exports.geoConicEquidistantRaw=conicEquidistantRaw;exports.geoEquirectangular=equirectangular;exports.geoEquirectangularRaw=equirectangularRaw;exports.geoGnomonic=gnomonic;exports.geoGnomonicRaw=gnomonicRaw;exports.geoProjection=projection;exports.geoProjectionMutator=projectionMutator;exports.geoMercator=mercator;exports.geoMercatorRaw=mercatorRaw;exports.geoOrthographic=orthographic;exports.geoOrthographicRaw=orthographicRaw;exports.geoStereographic=stereographic;exports.geoStereographicRaw=stereographicRaw;exports.geoTransverseMercator=transverseMercator;exports.geoTransverseMercatorRaw=transverseMercatorRaw;exports.geoRotation=rotation;exports.geoStream=geoStream;exports.geoTransform=transform;Object.defineProperty(exports,"__esModule",{value:true})})},{"d3-array":2}],11:[function(require,module,exports){(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory(exports,require("d3-color")):typeof define==="function"&&define.amd?define(["exports","d3-color"],factory):factory(global.d3=global.d3||{},global.d3)})(this,function(exports,d3Color){"use strict";function basis(t1,v0,v1,v2,v3){var t2=t1*t1,t3=t2*t1;return((1-3*t1+3*t2-t3)*v0+(4-6*t2+3*t3)*v1+(1+3*t1+3*t2-3*t3)*v2+t3*v3)/6}function basis$1(values){var n=values.length-1;return function(t){var i=t<=0?t=0:t>=1?(t=1,n-1):Math.floor(t*n),v1=values[i],v2=values[i+1],v0=i>0?values[i-1]:2*v1-v2,v3=i<n-1?values[i+2]:2*v2-v1;return basis((t-i/n)*n,v0,v1,v2,v3)}}function basisClosed(values){var n=values.length;return function(t){var i=Math.floor(((t%=1)<0?++t:t)*n),v0=values[(i+n-1)%n],v1=values[i%n],v2=values[(i+1)%n],v3=values[(i+2)%n];return basis((t-i/n)*n,v0,v1,v2,v3)}}function constant(x){return function(){return x}}function linear(a,d){return function(t){return a+t*d}}function exponential(a,b,y){return a=Math.pow(a,y),b=Math.pow(b,y)-a,y=1/y,function(t){return Math.pow(a+t*b,y)}}function hue(a,b){var d=b-a;return d?linear(a,d>180||d<-180?d-360*Math.round(d/360):d):constant(isNaN(a)?b:a)}function gamma(y){return(y=+y)===1?nogamma:function(a,b){return b-a?exponential(a,b,y):constant(isNaN(a)?b:a)}}function nogamma(a,b){var d=b-a;return d?linear(a,d):constant(isNaN(a)?b:a)}var rgb$1=function rgbGamma(y){var color=gamma(y);function rgb(start,end){var r=color((start=d3Color.rgb(start)).r,(end=d3Color.rgb(end)).r),g=color(start.g,end.g),b=color(start.b,end.b),opacity=color(start.opacity,end.opacity);return function(t){start.r=r(t);start.g=g(t);start.b=b(t);start.opacity=opacity(t);return start+""}}rgb.gamma=rgbGamma;return rgb}(1);function rgbSpline(spline){return function(colors){var n=colors.length,r=new Array(n),g=new Array(n),b=new Array(n),i,color;for(i=0;i<n;++i){color=d3Color.rgb(colors[i]);r[i]=color.r||0;g[i]=color.g||0;b[i]=color.b||0}r=spline(r);g=spline(g);b=spline(b);color.opacity=1;return function(t){color.r=r(t);color.g=g(t);color.b=b(t);return color+""}}}var rgbBasis=rgbSpline(basis$1);var rgbBasisClosed=rgbSpline(basisClosed);function array(a,b){var nb=b?b.length:0,na=a?Math.min(nb,a.length):0,x=new Array(nb),c=new Array(nb),i;for(i=0;i<na;++i)x[i]=value(a[i],b[i]);for(;i<nb;++i)c[i]=b[i];return function(t){for(i=0;i<na;++i)c[i]=x[i](t);return c}}function date(a,b){var d=new Date;return a=+a,b-=a,function(t){return d.setTime(a+b*t),d}}function number(a,b){return a=+a,b-=a,function(t){return a+b*t}}function object(a,b){var i={},c={},k;if(a===null||typeof a!=="object")a={};if(b===null||typeof b!=="object")b={};for(k in b){if(k in a){i[k]=value(a[k],b[k])}else{c[k]=b[k]}}return function(t){for(k in i)c[k]=i[k](t);return c}}var reA=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g;var reB=new RegExp(reA.source,"g");function zero(b){return function(){return b}}function one(b){return function(t){return b(t)+""}}function string(a,b){var bi=reA.lastIndex=reB.lastIndex=0,am,bm,bs,i=-1,s=[],q=[];a=a+"",b=b+"";while((am=reA.exec(a))&&(bm=reB.exec(b))){if((bs=bm.index)>bi){bs=b.slice(bi,bs);if(s[i])s[i]+=bs;else s[++i]=bs}if((am=am[0])===(bm=bm[0])){if(s[i])s[i]+=bm;else s[++i]=bm}else{s[++i]=null;q.push({i:i,x:number(am,bm)})}bi=reB.lastIndex}if(bi<b.length){bs=b.slice(bi);if(s[i])s[i]+=bs;else s[++i]=bs}return s.length<2?q[0]?one(q[0].x):zero(b):(b=q.length,function(t){for(var i=0,o;i<b;++i)s[(o=q[i]).i]=o.x(t);return s.join("")})}function value(a,b){var t=typeof b,c;return b==null||t==="boolean"?constant(b):(t==="number"?number:t==="string"?(c=d3Color.color(b))?(b=c,rgb$1):string:b instanceof d3Color.color?rgb$1:b instanceof Date?date:Array.isArray(b)?array:isNaN(b)?object:number)(a,b)}function round(a,b){return a=+a,b-=a,function(t){return Math.round(a+b*t)}}var degrees=180/Math.PI;var identity={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function decompose(a,b,c,d,e,f){var scaleX,scaleY,skewX;if(scaleX=Math.sqrt(a*a+b*b))a/=scaleX,b/=scaleX;if(skewX=a*c+b*d)c-=a*skewX,d-=b*skewX;if(scaleY=Math.sqrt(c*c+d*d))c/=scaleY,d/=scaleY,skewX/=scaleY;if(a*d<b*c)a=-a,b=-b,skewX=-skewX,scaleX=-scaleX;return{translateX:e,translateY:f,rotate:Math.atan2(b,a)*degrees,skewX:Math.atan(skewX)*degrees,scaleX:scaleX,scaleY:scaleY}}var cssNode;var cssRoot;var cssView;var svgNode;function parseCss(value){if(value==="none")return identity;if(!cssNode)cssNode=document.createElement("DIV"),cssRoot=document.documentElement,cssView=document.defaultView;cssNode.style.transform=value;value=cssView.getComputedStyle(cssRoot.appendChild(cssNode),null).getPropertyValue("transform");cssRoot.removeChild(cssNode);value=value.slice(7,-1).split(",");return decompose(+value[0],+value[1],+value[2],+value[3],+value[4],+value[5])}function parseSvg(value){if(value==null)return identity;if(!svgNode)svgNode=document.createElementNS("http://www.w3.org/2000/svg","g");svgNode.setAttribute("transform",value);if(!(value=svgNode.transform.baseVal.consolidate()))return identity;value=value.matrix;return decompose(value.a,value.b,value.c,value.d,value.e,value.f)}function interpolateTransform(parse,pxComma,pxParen,degParen){function pop(s){return s.length?s.pop()+" ":""}function translate(xa,ya,xb,yb,s,q){if(xa!==xb||ya!==yb){var i=s.push("translate(",null,pxComma,null,pxParen);q.push({i:i-4,x:number(xa,xb)},{i:i-2,x:number(ya,yb)})}else if(xb||yb){s.push("translate("+xb+pxComma+yb+pxParen)}}function rotate(a,b,s,q){if(a!==b){if(a-b>180)b+=360;else if(b-a>180)a+=360;q.push({i:s.push(pop(s)+"rotate(",null,degParen)-2,x:number(a,b)})}else if(b){s.push(pop(s)+"rotate("+b+degParen)}}function skewX(a,b,s,q){if(a!==b){q.push({i:s.push(pop(s)+"skewX(",null,degParen)-2,x:number(a,b)})}else if(b){s.push(pop(s)+"skewX("+b+degParen)}}function scale(xa,ya,xb,yb,s,q){if(xa!==xb||ya!==yb){var i=s.push(pop(s)+"scale(",null,",",null,")");q.push({i:i-4,x:number(xa,xb)},{i:i-2,x:number(ya,yb)})}else if(xb!==1||yb!==1){s.push(pop(s)+"scale("+xb+","+yb+")")}}return function(a,b){var s=[],q=[];a=parse(a),b=parse(b);translate(a.translateX,a.translateY,b.translateX,b.translateY,s,q);rotate(a.rotate,b.rotate,s,q);skewX(a.skewX,b.skewX,s,q);scale(a.scaleX,a.scaleY,b.scaleX,b.scaleY,s,q);a=b=null;return function(t){var i=-1,n=q.length,o;while(++i<n)s[(o=q[i]).i]=o.x(t);return s.join("")}}}var interpolateTransformCss=interpolateTransform(parseCss,"px, ","px)","deg)");var interpolateTransformSvg=interpolateTransform(parseSvg,", ",")",")");var rho=Math.SQRT2;var rho2=2;var rho4=4;var epsilon2=1e-12;function cosh(x){return((x=Math.exp(x))+1/x)/2}function sinh(x){return((x=Math.exp(x))-1/x)/2}function tanh(x){return((x=Math.exp(2*x))-1)/(x+1)}function zoom(p0,p1){var ux0=p0[0],uy0=p0[1],w0=p0[2],ux1=p1[0],uy1=p1[1],w1=p1[2],dx=ux1-ux0,dy=uy1-uy0,d2=dx*dx+dy*dy,i,S;if(d2<epsilon2){S=Math.log(w1/w0)/rho;i=function(t){return[ux0+t*dx,uy0+t*dy,w0*Math.exp(rho*t*S)]}}else{var d1=Math.sqrt(d2),b0=(w1*w1-w0*w0+rho4*d2)/(2*w0*rho2*d1),b1=(w1*w1-w0*w0-rho4*d2)/(2*w1*rho2*d1),r0=Math.log(Math.sqrt(b0*b0+1)-b0),r1=Math.log(Math.sqrt(b1*b1+1)-b1);S=(r1-r0)/rho;i=function(t){var s=t*S,coshr0=cosh(r0),u=w0/(rho2*d1)*(coshr0*tanh(rho*s+r0)-sinh(r0));return[ux0+u*dx,uy0+u*dy,w0*coshr0/cosh(rho*s+r0)]}}i.duration=S*1e3;return i}function hsl$1(hue){return function(start,end){var h=hue((start=d3Color.hsl(start)).h,(end=d3Color.hsl(end)).h),s=nogamma(start.s,end.s),l=nogamma(start.l,end.l),opacity=nogamma(start.opacity,end.opacity);return function(t){start.h=h(t);start.s=s(t);start.l=l(t);start.opacity=opacity(t);return start+""}}}var hsl$2=hsl$1(hue);var hslLong=hsl$1(nogamma);function lab$1(start,end){var l=nogamma((start=d3Color.lab(start)).l,(end=d3Color.lab(end)).l),a=nogamma(start.a,end.a),b=nogamma(start.b,end.b),opacity=nogamma(start.opacity,end.opacity);return function(t){
start.l=l(t);start.a=a(t);start.b=b(t);start.opacity=opacity(t);return start+""}}function hcl$1(hue){return function(start,end){var h=hue((start=d3Color.hcl(start)).h,(end=d3Color.hcl(end)).h),c=nogamma(start.c,end.c),l=nogamma(start.l,end.l),opacity=nogamma(start.opacity,end.opacity);return function(t){start.h=h(t);start.c=c(t);start.l=l(t);start.opacity=opacity(t);return start+""}}}var hcl$2=hcl$1(hue);var hclLong=hcl$1(nogamma);function cubehelix$1(hue){return function cubehelixGamma(y){y=+y;function cubehelix(start,end){var h=hue((start=d3Color.cubehelix(start)).h,(end=d3Color.cubehelix(end)).h),s=nogamma(start.s,end.s),l=nogamma(start.l,end.l),opacity=nogamma(start.opacity,end.opacity);return function(t){start.h=h(t);start.s=s(t);start.l=l(Math.pow(t,y));start.opacity=opacity(t);return start+""}}cubehelix.gamma=cubehelixGamma;return cubehelix}(1)}var cubehelix$2=cubehelix$1(hue);var cubehelixLong=cubehelix$1(nogamma);function quantize(interpolator,n){var samples=new Array(n);for(var i=0;i<n;++i)samples[i]=interpolator(i/(n-1));return samples}exports.interpolate=value;exports.interpolateArray=array;exports.interpolateBasis=basis$1;exports.interpolateBasisClosed=basisClosed;exports.interpolateDate=date;exports.interpolateNumber=number;exports.interpolateObject=object;exports.interpolateRound=round;exports.interpolateString=string;exports.interpolateTransformCss=interpolateTransformCss;exports.interpolateTransformSvg=interpolateTransformSvg;exports.interpolateZoom=zoom;exports.interpolateRgb=rgb$1;exports.interpolateRgbBasis=rgbBasis;exports.interpolateRgbBasisClosed=rgbBasisClosed;exports.interpolateHsl=hsl$2;exports.interpolateHslLong=hslLong;exports.interpolateLab=lab$1;exports.interpolateHcl=hcl$2;exports.interpolateHclLong=hclLong;exports.interpolateCubehelix=cubehelix$2;exports.interpolateCubehelixLong=cubehelixLong;exports.quantize=quantize;Object.defineProperty(exports,"__esModule",{value:true})})},{"d3-color":4}],12:[function(require,module,exports){(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory(exports):typeof define==="function"&&define.amd?define(["exports"],factory):factory(global.d3=global.d3||{})})(this,function(exports){"use strict";var pi=Math.PI;var tau=2*pi;var epsilon=1e-6;var tauEpsilon=tau-epsilon;function Path(){this._x0=this._y0=this._x1=this._y1=null;this._=[]}function path(){return new Path}Path.prototype=path.prototype={constructor:Path,moveTo:function(x,y){this._.push("M",this._x0=this._x1=+x,",",this._y0=this._y1=+y)},closePath:function(){if(this._x1!==null){this._x1=this._x0,this._y1=this._y0;this._.push("Z")}},lineTo:function(x,y){this._.push("L",this._x1=+x,",",this._y1=+y)},quadraticCurveTo:function(x1,y1,x,y){this._.push("Q",+x1,",",+y1,",",this._x1=+x,",",this._y1=+y)},bezierCurveTo:function(x1,y1,x2,y2,x,y){this._.push("C",+x1,",",+y1,",",+x2,",",+y2,",",this._x1=+x,",",this._y1=+y)},arcTo:function(x1,y1,x2,y2,r){x1=+x1,y1=+y1,x2=+x2,y2=+y2,r=+r;var x0=this._x1,y0=this._y1,x21=x2-x1,y21=y2-y1,x01=x0-x1,y01=y0-y1,l01_2=x01*x01+y01*y01;if(r<0)throw new Error("negative radius: "+r);if(this._x1===null){this._.push("M",this._x1=x1,",",this._y1=y1)}else if(!(l01_2>epsilon)){}else if(!(Math.abs(y01*x21-y21*x01)>epsilon)||!r){this._.push("L",this._x1=x1,",",this._y1=y1)}else{var x20=x2-x0,y20=y2-y0,l21_2=x21*x21+y21*y21,l20_2=x20*x20+y20*y20,l21=Math.sqrt(l21_2),l01=Math.sqrt(l01_2),l=r*Math.tan((pi-Math.acos((l21_2+l01_2-l20_2)/(2*l21*l01)))/2),t01=l/l01,t21=l/l21;if(Math.abs(t01-1)>epsilon){this._.push("L",x1+t01*x01,",",y1+t01*y01)}this._.push("A",r,",",r,",0,0,",+(y01*x20>x01*y20),",",this._x1=x1+t21*x21,",",this._y1=y1+t21*y21)}},arc:function(x,y,r,a0,a1,ccw){x=+x,y=+y,r=+r;var dx=r*Math.cos(a0),dy=r*Math.sin(a0),x0=x+dx,y0=y+dy,cw=1^ccw,da=ccw?a0-a1:a1-a0;if(r<0)throw new Error("negative radius: "+r);if(this._x1===null){this._.push("M",x0,",",y0)}else if(Math.abs(this._x1-x0)>epsilon||Math.abs(this._y1-y0)>epsilon){this._.push("L",x0,",",y0)}if(!r)return;if(da>tauEpsilon){this._.push("A",r,",",r,",0,1,",cw,",",x-dx,",",y-dy,"A",r,",",r,",0,1,",cw,",",this._x1=x0,",",this._y1=y0)}else{if(da<0)da=da%tau+tau;this._.push("A",r,",",r,",0,",+(da>=pi),",",cw,",",this._x1=x+r*Math.cos(a1),",",this._y1=y+r*Math.sin(a1))}},rect:function(x,y,w,h){this._.push("M",this._x0=this._x1=+x,",",this._y0=this._y1=+y,"h",+w,"v",+h,"h",-w,"Z")},toString:function(){return this._.join("")}};exports.path=path;Object.defineProperty(exports,"__esModule",{value:true})})},{}],13:[function(require,module,exports){(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory(exports,require("d3-collection"),require("d3-dispatch"),require("d3-dsv")):typeof define==="function"&&define.amd?define(["exports","d3-collection","d3-dispatch","d3-dsv"],factory):factory(global.d3=global.d3||{},global.d3,global.d3,global.d3)})(this,function(exports,d3Collection,d3Dispatch,d3Dsv){"use strict";function request(url,callback){var request,event=d3Dispatch.dispatch("beforesend","progress","load","error"),mimeType,headers=d3Collection.map(),xhr=new XMLHttpRequest,user=null,password=null,response,responseType,timeout=0;if(typeof XDomainRequest!=="undefined"&&!("withCredentials"in xhr)&&/^(http(s)?:)?\/\//.test(url))xhr=new XDomainRequest;"onload"in xhr?xhr.onload=xhr.onerror=xhr.ontimeout=respond:xhr.onreadystatechange=function(o){xhr.readyState>3&&respond(o)};function respond(o){var status=xhr.status,result;if(!status&&hasResponse(xhr)||status>=200&&status<300||status===304){if(response){try{result=response.call(request,xhr)}catch(e){event.call("error",request,e);return}}else{result=xhr}event.call("load",request,result)}else{event.call("error",request,o)}}xhr.onprogress=function(e){event.call("progress",request,e)};request={header:function(name,value){name=(name+"").toLowerCase();if(arguments.length<2)return headers.get(name);if(value==null)headers.remove(name);else headers.set(name,value+"");return request},mimeType:function(value){if(!arguments.length)return mimeType;mimeType=value==null?null:value+"";return request},responseType:function(value){if(!arguments.length)return responseType;responseType=value;return request},timeout:function(value){if(!arguments.length)return timeout;timeout=+value;return request},user:function(value){return arguments.length<1?user:(user=value==null?null:value+"",request)},password:function(value){return arguments.length<1?password:(password=value==null?null:value+"",request)},response:function(value){response=value;return request},get:function(data,callback){return request.send("GET",data,callback)},post:function(data,callback){return request.send("POST",data,callback)},send:function(method,data,callback){xhr.open(method,url,true,user,password);if(mimeType!=null&&!headers.has("accept"))headers.set("accept",mimeType+",*/*");if(xhr.setRequestHeader)headers.each(function(value,name){xhr.setRequestHeader(name,value)});if(mimeType!=null&&xhr.overrideMimeType)xhr.overrideMimeType(mimeType);if(responseType!=null)xhr.responseType=responseType;if(timeout>0)xhr.timeout=timeout;if(callback==null&&typeof data==="function")callback=data,data=null;if(callback!=null&&callback.length===1)callback=fixCallback(callback);if(callback!=null)request.on("error",callback).on("load",function(xhr){callback(null,xhr)});event.call("beforesend",request,xhr);xhr.send(data==null?null:data);return request},abort:function(){xhr.abort();return request},on:function(){var value=event.on.apply(event,arguments);return value===event?request:value}};if(callback!=null){if(typeof callback!=="function")throw new Error("invalid callback: "+callback);return request.get(callback)}return request}function fixCallback(callback){return function(error,xhr){callback(error==null?xhr:null)}}function hasResponse(xhr){var type=xhr.responseType;return type&&type!=="text"?xhr.response:xhr.responseText}function type(defaultMimeType,response){return function(url,callback){var r=request(url).mimeType(defaultMimeType).response(response);if(callback!=null){if(typeof callback!=="function")throw new Error("invalid callback: "+callback);return r.get(callback)}return r}}var html=type("text/html",function(xhr){return document.createRange().createContextualFragment(xhr.responseText)});var json=type("application/json",function(xhr){return JSON.parse(xhr.responseText)});var text=type("text/plain",function(xhr){return xhr.responseText});var xml=type("application/xml",function(xhr){var xml=xhr.responseXML;if(!xml)throw new Error("parse error");return xml});function dsv(defaultMimeType,parse){return function(url,row,callback){if(arguments.length<3)callback=row,row=null;var r=request(url).mimeType(defaultMimeType);r.row=function(_){return arguments.length?r.response(responseOf(parse,row=_)):row};r.row(row);return callback?r.get(callback):r}}function responseOf(parse,row){return function(request){return parse(request.responseText,row)}}var csv=dsv("text/csv",d3Dsv.csvParse);var tsv=dsv("text/tab-separated-values",d3Dsv.tsvParse);exports.request=request;exports.html=html;exports.json=json;exports.text=text;exports.xml=xml;exports.csv=csv;exports.tsv=tsv;Object.defineProperty(exports,"__esModule",{value:true})})},{"d3-collection":3,"d3-dispatch":7,"d3-dsv":8}],14:[function(require,module,exports){(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory(exports):typeof define==="function"&&define.amd?define(["exports"],factory):factory(global.d3=global.d3||{})})(this,function(exports){"use strict";var xhtml="http://www.w3.org/1999/xhtml";var namespaces={svg:"http://www.w3.org/2000/svg",xhtml:xhtml,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function namespace(name){var prefix=name+="",i=prefix.indexOf(":");if(i>=0&&(prefix=name.slice(0,i))!=="xmlns")name=name.slice(i+1);return namespaces.hasOwnProperty(prefix)?{space:namespaces[prefix],local:name}:name}function creatorInherit(name){return function(){var document=this.ownerDocument,uri=this.namespaceURI;return uri===xhtml&&document.documentElement.namespaceURI===xhtml?document.createElement(name):document.createElementNS(uri,name)}}function creatorFixed(fullname){return function(){return this.ownerDocument.createElementNS(fullname.space,fullname.local)}}function creator(name){var fullname=namespace(name);return(fullname.local?creatorFixed:creatorInherit)(fullname)}var nextId=0;function local(){return new Local}function Local(){this._="@"+(++nextId).toString(36)}Local.prototype=local.prototype={constructor:Local,get:function(node){var id=this._;while(!(id in node))if(!(node=node.parentNode))return;return node[id]},set:function(node,value){return node[this._]=value},remove:function(node){return this._ in node&&delete node[this._]},toString:function(){return this._}};var matcher=function(selector){return function(){return this.matches(selector)}};if(typeof document!=="undefined"){var element=document.documentElement;if(!element.matches){var vendorMatches=element.webkitMatchesSelector||element.msMatchesSelector||element.mozMatchesSelector||element.oMatchesSelector;matcher=function(selector){return function(){return vendorMatches.call(this,selector)}}}}var matcher$1=matcher;var filterEvents={};exports.event=null;if(typeof document!=="undefined"){var element$1=document.documentElement;if(!("onmouseenter"in element$1)){filterEvents={mouseenter:"mouseover",mouseleave:"mouseout"}}}function filterContextListener(listener,index,group){listener=contextListener(listener,index,group);return function(event){var related=event.relatedTarget;if(!related||related!==this&&!(related.compareDocumentPosition(this)&8)){listener.call(this,event)}}}function contextListener(listener,index,group){return function(event1){var event0=exports.event;exports.event=event1;try{listener.call(this,this.__data__,index,group)}finally{exports.event=event0}}}function parseTypenames(typenames){return typenames.trim().split(/^|\s+/).map(function(t){var name="",i=t.indexOf(".");if(i>=0)name=t.slice(i+1),t=t.slice(0,i);return{type:t,name:name}})}function onRemove(typename){return function(){var on=this.__on;if(!on)return;for(var j=0,i=-1,m=on.length,o;j<m;++j){if(o=on[j],(!typename.type||o.type===typename.type)&&o.name===typename.name){this.removeEventListener(o.type,o.listener,o.capture)}else{on[++i]=o}}if(++i)on.length=i;else delete this.__on}}function onAdd(typename,value,capture){var wrap=filterEvents.hasOwnProperty(typename.type)?filterContextListener:contextListener;return function(d,i,group){var on=this.__on,o,listener=wrap(value,i,group);if(on)for(var j=0,m=on.length;j<m;++j){if((o=on[j]).type===typename.type&&o.name===typename.name){this.removeEventListener(o.type,o.listener,o.capture);this.addEventListener(o.type,o.listener=listener,o.capture=capture);o.value=value;return}}this.addEventListener(typename.type,listener,capture);o={type:typename.type,name:typename.name,value:value,listener:listener,capture:capture};if(!on)this.__on=[o];else on.push(o)}}function selection_on(typename,value,capture){var typenames=parseTypenames(typename+""),i,n=typenames.length,t;if(arguments.length<2){var on=this.node().__on;if(on)for(var j=0,m=on.length,o;j<m;++j){for(i=0,o=on[j];i<n;++i){if((t=typenames[i]).type===o.type&&t.name===o.name){return o.value}}}return}on=value?onAdd:onRemove;if(capture==null)capture=false;for(i=0;i<n;++i)this.each(on(typenames[i],value,capture));return this}function customEvent(event1,listener,that,args){var event0=exports.event;event1.sourceEvent=exports.event;exports.event=event1;try{return listener.apply(that,args)}finally{exports.event=event0}}function sourceEvent(){var current=exports.event,source;while(source=current.sourceEvent)current=source;return current}function point(node,event){var svg=node.ownerSVGElement||node;if(svg.createSVGPoint){var point=svg.createSVGPoint();point.x=event.clientX,point.y=event.clientY;point=point.matrixTransform(node.getScreenCTM().inverse());return[point.x,point.y]}var rect=node.getBoundingClientRect();return[event.clientX-rect.left-node.clientLeft,event.clientY-rect.top-node.clientTop]}function mouse(node){var event=sourceEvent();if(event.changedTouches)event=event.changedTouches[0];return point(node,event)}function none(){}function selector(selector){return selector==null?none:function(){return this.querySelector(selector)}}function selection_select(select){if(typeof select!=="function")select=selector(select);for(var groups=this._groups,m=groups.length,subgroups=new Array(m),j=0;j<m;++j){for(var group=groups[j],n=group.length,subgroup=subgroups[j]=new Array(n),node,subnode,i=0;i<n;++i){if((node=group[i])&&(subnode=select.call(node,node.__data__,i,group))){if("__data__"in node)subnode.__data__=node.__data__;subgroup[i]=subnode}}}return new Selection(subgroups,this._parents)}function empty(){return[]}function selectorAll(selector){return selector==null?empty:function(){return this.querySelectorAll(selector)}}function selection_selectAll(select){if(typeof select!=="function")select=selectorAll(select);for(var groups=this._groups,m=groups.length,subgroups=[],parents=[],j=0;j<m;++j){for(var group=groups[j],n=group.length,node,i=0;i<n;++i){if(node=group[i]){subgroups.push(select.call(node,node.__data__,i,group));parents.push(node)}}}return new Selection(subgroups,parents)}function selection_filter(match){if(typeof match!=="function")match=matcher$1(match);for(var groups=this._groups,m=groups.length,subgroups=new Array(m),j=0;j<m;++j){for(var group=groups[j],n=group.length,subgroup=subgroups[j]=[],node,i=0;i<n;++i){if((node=group[i])&&match.call(node,node.__data__,i,group)){subgroup.push(node)}}}return new Selection(subgroups,this._parents)}function sparse(update){return new Array(update.length)}function selection_enter(){return new Selection(this._enter||this._groups.map(sparse),this._parents)}function EnterNode(parent,datum){this.ownerDocument=parent.ownerDocument;this.namespaceURI=parent.namespaceURI;this._next=null;this._parent=parent;this.__data__=datum}EnterNode.prototype={constructor:EnterNode,appendChild:function(child){return this._parent.insertBefore(child,this._next)},insertBefore:function(child,next){return this._parent.insertBefore(child,next)},querySelector:function(selector){return this._parent.querySelector(selector)},querySelectorAll:function(selector){return this._parent.querySelectorAll(selector)}};function constant(x){return function(){return x}}var keyPrefix="$";function bindIndex(parent,group,enter,update,exit,data){var i=0,node,groupLength=group.length,dataLength=data.length;for(;i<dataLength;++i){if(node=group[i]){node.__data__=data[i];update[i]=node}else{enter[i]=new EnterNode(parent,data[i])}}for(;i<groupLength;++i){if(node=group[i]){exit[i]=node}}}function bindKey(parent,group,enter,update,exit,data,key){var i,node,nodeByKeyValue={},groupLength=group.length,dataLength=data.length,keyValues=new Array(groupLength),keyValue;for(i=0;i<groupLength;++i){if(node=group[i]){keyValues[i]=keyValue=keyPrefix+key.call(node,node.__data__,i,group);if(keyValue in nodeByKeyValue){exit[i]=node}else{nodeByKeyValue[keyValue]=node}}}for(i=0;i<dataLength;++i){keyValue=keyPrefix+key.call(parent,data[i],i,data);if(node=nodeByKeyValue[keyValue]){update[i]=node;node.__data__=data[i];nodeByKeyValue[keyValue]=null}else{enter[i]=new EnterNode(parent,data[i])}}for(i=0;i<groupLength;++i){if((node=group[i])&&nodeByKeyValue[keyValues[i]]===node){exit[i]=node}}}function selection_data(value,key){if(!value){data=new Array(this.size()),j=-1;this.each(function(d){data[++j]=d});return data}var bind=key?bindKey:bindIndex,parents=this._parents,groups=this._groups;if(typeof value!=="function")value=constant(value);for(var m=groups.length,update=new Array(m),enter=new Array(m),exit=new Array(m),j=0;j<m;++j){var parent=parents[j],group=groups[j],groupLength=group.length,data=value.call(parent,parent&&parent.__data__,j,parents),dataLength=data.length,enterGroup=enter[j]=new Array(dataLength),updateGroup=update[j]=new Array(dataLength),exitGroup=exit[j]=new Array(groupLength);bind(parent,group,enterGroup,updateGroup,exitGroup,data,key);for(var i0=0,i1=0,previous,next;i0<dataLength;++i0){if(previous=enterGroup[i0]){if(i0>=i1)i1=i0+1;while(!(next=updateGroup[i1])&&++i1<dataLength);previous._next=next||null}}}update=new Selection(update,parents);update._enter=enter;update._exit=exit;return update}function selection_exit(){return new Selection(this._exit||this._groups.map(sparse),this._parents)}function selection_merge(selection){for(var groups0=this._groups,groups1=selection._groups,m0=groups0.length,m1=groups1.length,m=Math.min(m0,m1),merges=new Array(m0),j=0;j<m;++j){for(var group0=groups0[j],group1=groups1[j],n=group0.length,merge=merges[j]=new Array(n),node,i=0;i<n;++i){if(node=group0[i]||group1[i]){merge[i]=node}}}for(;j<m0;++j){merges[j]=groups0[j]}return new Selection(merges,this._parents)}function selection_order(){for(var groups=this._groups,j=-1,m=groups.length;++j<m;){for(var group=groups[j],i=group.length-1,next=group[i],node;--i>=0;){if(node=group[i]){if(next&&next!==node.nextSibling)next.parentNode.insertBefore(node,next);next=node}}}return this}function selection_sort(compare){if(!compare)compare=ascending;function compareNode(a,b){return a&&b?compare(a.__data__,b.__data__):!a-!b}for(var groups=this._groups,m=groups.length,sortgroups=new Array(m),j=0;j<m;++j){for(var group=groups[j],n=group.length,sortgroup=sortgroups[j]=new Array(n),node,i=0;i<n;++i){if(node=group[i]){sortgroup[i]=node}}sortgroup.sort(compareNode)}return new Selection(sortgroups,this._parents).order()}function ascending(a,b){return a<b?-1:a>b?1:a>=b?0:NaN}function selection_call(){var callback=arguments[0];arguments[0]=this;callback.apply(null,arguments);return this}function selection_nodes(){var nodes=new Array(this.size()),i=-1;this.each(function(){nodes[++i]=this});return nodes}function selection_node(){for(var groups=this._groups,j=0,m=groups.length;j<m;++j){for(var group=groups[j],i=0,n=group.length;i<n;++i){var node=group[i];if(node)return node}}return null}function selection_size(){var size=0;this.each(function(){++size});return size}function selection_empty(){return!this.node()}function selection_each(callback){for(var groups=this._groups,j=0,m=groups.length;j<m;++j){for(var group=groups[j],i=0,n=group.length,node;i<n;++i){if(node=group[i])callback.call(node,node.__data__,i,group)}}return this}function attrRemove(name){return function(){this.removeAttribute(name)}}function attrRemoveNS(fullname){return function(){this.removeAttributeNS(fullname.space,fullname.local)}}function attrConstant(name,value){return function(){this.setAttribute(name,value)}}function attrConstantNS(fullname,value){return function(){this.setAttributeNS(fullname.space,fullname.local,value)}}function attrFunction(name,value){return function(){var v=value.apply(this,arguments);if(v==null)this.removeAttribute(name);else this.setAttribute(name,v)}}function attrFunctionNS(fullname,value){return function(){var v=value.apply(this,arguments);if(v==null)this.removeAttributeNS(fullname.space,fullname.local);else this.setAttributeNS(fullname.space,fullname.local,v)}}function selection_attr(name,value){var fullname=namespace(name);if(arguments.length<2){var node=this.node();return fullname.local?node.getAttributeNS(fullname.space,fullname.local):node.getAttribute(fullname)}return this.each((value==null?fullname.local?attrRemoveNS:attrRemove:typeof value==="function"?fullname.local?attrFunctionNS:attrFunction:fullname.local?attrConstantNS:attrConstant)(fullname,value))}function defaultView(node){return node.ownerDocument&&node.ownerDocument.defaultView||node.document&&node||node.defaultView}function styleRemove(name){return function(){this.style.removeProperty(name)}}function styleConstant(name,value,priority){return function(){this.style.setProperty(name,value,priority)}}function styleFunction(name,value,priority){return function(){var v=value.apply(this,arguments);if(v==null)this.style.removeProperty(name);else this.style.setProperty(name,v,priority)}}function selection_style(name,value,priority){var node;return arguments.length>1?this.each((value==null?styleRemove:typeof value==="function"?styleFunction:styleConstant)(name,value,priority==null?"":priority)):defaultView(node=this.node()).getComputedStyle(node,null).getPropertyValue(name)}function propertyRemove(name){return function(){delete this[name]}}function propertyConstant(name,value){return function(){this[name]=value}}function propertyFunction(name,value){return function(){var v=value.apply(this,arguments);if(v==null)delete this[name];else this[name]=v}}function selection_property(name,value){return arguments.length>1?this.each((value==null?propertyRemove:typeof value==="function"?propertyFunction:propertyConstant)(name,value)):this.node()[name]}function classArray(string){return string.trim().split(/^|\s+/)}function classList(node){return node.classList||new ClassList(node)}function ClassList(node){this._node=node;this._names=classArray(node.getAttribute("class")||"")}ClassList.prototype={add:function(name){var i=this._names.indexOf(name);if(i<0){this._names.push(name);this._node.setAttribute("class",this._names.join(" "))}},remove:function(name){var i=this._names.indexOf(name);if(i>=0){this._names.splice(i,1);this._node.setAttribute("class",this._names.join(" "))}},contains:function(name){return this._names.indexOf(name)>=0}};function classedAdd(node,names){var list=classList(node),i=-1,n=names.length;while(++i<n)list.add(names[i])}function classedRemove(node,names){var list=classList(node),i=-1,n=names.length;while(++i<n)list.remove(names[i])}function classedTrue(names){return function(){classedAdd(this,names)}}function classedFalse(names){return function(){classedRemove(this,names)}}function classedFunction(names,value){return function(){(value.apply(this,arguments)?classedAdd:classedRemove)(this,names)}}function selection_classed(name,value){var names=classArray(name+"");if(arguments.length<2){var list=classList(this.node()),i=-1,n=names.length;while(++i<n)if(!list.contains(names[i]))return false;return true}return this.each((typeof value==="function"?classedFunction:value?classedTrue:classedFalse)(names,value))}function textRemove(){this.textContent=""}function textConstant(value){return function(){this.textContent=value}}function textFunction(value){return function(){var v=value.apply(this,arguments);this.textContent=v==null?"":v}}function selection_text(value){return arguments.length?this.each(value==null?textRemove:(typeof value==="function"?textFunction:textConstant)(value)):this.node().textContent}function htmlRemove(){this.innerHTML=""}function htmlConstant(value){return function(){this.innerHTML=value}}function htmlFunction(value){return function(){var v=value.apply(this,arguments);this.innerHTML=v==null?"":v}}function selection_html(value){return arguments.length?this.each(value==null?htmlRemove:(typeof value==="function"?htmlFunction:htmlConstant)(value)):this.node().innerHTML}function raise(){if(this.nextSibling)this.parentNode.appendChild(this)}function selection_raise(){return this.each(raise)}function lower(){if(this.previousSibling)this.parentNode.insertBefore(this,this.parentNode.firstChild)}function selection_lower(){return this.each(lower)}function selection_append(name){var create=typeof name==="function"?name:creator(name);return this.select(function(){return this.appendChild(create.apply(this,arguments))})}function constantNull(){return null}function selection_insert(name,before){var create=typeof name==="function"?name:creator(name),select=before==null?constantNull:typeof before==="function"?before:selector(before);return this.select(function(){return this.insertBefore(create.apply(this,arguments),select.apply(this,arguments)||null)})}function remove(){var parent=this.parentNode;if(parent)parent.removeChild(this)}function selection_remove(){return this.each(remove)}function selection_datum(value){return arguments.length?this.property("__data__",value):this.node().__data__}function dispatchEvent(node,type,params){var window=defaultView(node),event=window.CustomEvent;if(event){event=new event(type,params)}else{event=window.document.createEvent("Event");if(params)event.initEvent(type,params.bubbles,params.cancelable),event.detail=params.detail;else event.initEvent(type,false,false)}node.dispatchEvent(event)}function dispatchConstant(type,params){return function(){return dispatchEvent(this,type,params)}}function dispatchFunction(type,params){return function(){return dispatchEvent(this,type,params.apply(this,arguments))}}function selection_dispatch(type,params){return this.each((typeof params==="function"?dispatchFunction:dispatchConstant)(type,params))}var root=[null];function Selection(groups,parents){this._groups=groups;this._parents=parents}function selection(){return new Selection([[document.documentElement]],root)}Selection.prototype=selection.prototype={constructor:Selection,select:selection_select,selectAll:selection_selectAll,filter:selection_filter,data:selection_data,enter:selection_enter,exit:selection_exit,merge:selection_merge,order:selection_order,sort:selection_sort,call:selection_call,nodes:selection_nodes,node:selection_node,size:selection_size,empty:selection_empty,each:selection_each,attr:selection_attr,style:selection_style,property:selection_property,classed:selection_classed,text:selection_text,html:selection_html,raise:selection_raise,lower:selection_lower,append:selection_append,insert:selection_insert,remove:selection_remove,datum:selection_datum,on:selection_on,dispatch:selection_dispatch};function select(selector){return typeof selector==="string"?new Selection([[document.querySelector(selector)]],[document.documentElement]):new Selection([[selector]],root)}function selectAll(selector){return typeof selector==="string"?new Selection([document.querySelectorAll(selector)],[document.documentElement]):new Selection([selector==null?[]:selector],root)}function touch(node,touches,identifier){if(arguments.length<3)identifier=touches,touches=sourceEvent().changedTouches;for(var i=0,n=touches?touches.length:0,touch;i<n;++i){if((touch=touches[i]).identifier===identifier){return point(node,touch)}}return null}function touches(node,touches){if(touches==null)touches=sourceEvent().touches;for(var i=0,n=touches?touches.length:0,points=new Array(n);i<n;++i){points[i]=point(node,touches[i])}return points}exports.creator=creator;exports.local=local;exports.matcher=matcher$1;exports.mouse=mouse;exports.namespace=namespace;exports.namespaces=namespaces;exports.select=select;exports.selectAll=selectAll;exports.selection=selection;exports.selector=selector;exports.selectorAll=selectorAll;exports.touch=touch;exports.touches=touches;exports.window=defaultView;exports.customEvent=customEvent;Object.defineProperty(exports,"__esModule",{value:true})})},{}],15:[function(require,module,exports){(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory(exports):typeof define==="function"&&define.amd?define(["exports"],factory):factory(global.d3=global.d3||{})})(this,function(exports){"use strict";var frame=0;var timeout=0;var interval=0;var pokeDelay=1e3;var taskHead;var taskTail;var clockLast=0;var clockNow=0;var clockSkew=0;var clock=typeof performance==="object"&&performance.now?performance:Date;var setFrame=typeof requestAnimationFrame==="function"?requestAnimationFrame:function(f){setTimeout(f,17)};function now(){return clockNow||(setFrame(clearNow),clockNow=clock.now()+clockSkew)}function clearNow(){clockNow=0}function Timer(){this._call=this._time=this._next=null}Timer.prototype=timer.prototype={constructor:Timer,restart:function(callback,delay,time){if(typeof callback!=="function")throw new TypeError("callback is not a function");time=(time==null?now():+time)+(delay==null?0:+delay);if(!this._next&&taskTail!==this){if(taskTail)taskTail._next=this;else taskHead=this;taskTail=this}this._call=callback;this._time=time;sleep()},stop:function(){if(this._call){this._call=null;this._time=Infinity;sleep()}}};function timer(callback,delay,time){var t=new Timer;t.restart(callback,delay,time);return t}function timerFlush(){now();++frame;var t=taskHead,e;while(t){if((e=clockNow-t._time)>=0)t._call.call(null,e);t=t._next}--frame}function wake(){clockNow=(clockLast=clock.now())+clockSkew;frame=timeout=0;try{timerFlush()}finally{frame=0;nap();clockNow=0}}function poke(){var now=clock.now(),delay=now-clockLast;if(delay>pokeDelay)clockSkew-=delay,clockLast=now}function nap(){var t0,t1=taskHead,t2,time=Infinity;while(t1){if(t1._call){if(time>t1._time)time=t1._time;t0=t1,t1=t1._next}else{t2=t1._next,t1._next=null;t1=t0?t0._next=t2:taskHead=t2}}taskTail=t0;sleep(time)}function sleep(time){if(frame)return;if(timeout)timeout=clearTimeout(timeout);var delay=time-clockNow;if(delay>24){if(time<Infinity)timeout=setTimeout(wake,delay);if(interval)interval=clearInterval(interval)}else{if(!interval)interval=setInterval(poke,pokeDelay);frame=1,setFrame(wake)}}function timeout$1(callback,delay,time){var t=new Timer;delay=delay==null?0:+delay;t.restart(function(elapsed){t.stop();callback(elapsed+delay)},delay,time);return t}function interval$1(callback,delay,time){var t=new Timer,total=delay;if(delay==null)return t.restart(callback,delay,time),t;delay=+delay,time=time==null?now():+time;t.restart(function tick(elapsed){elapsed+=total;t.restart(tick,total+=delay,time);callback(elapsed)},delay,time);return t}exports.now=now;exports.timer=timer;exports.timerFlush=timerFlush;exports.timeout=timeout$1;exports.interval=interval$1;Object.defineProperty(exports,"__esModule",{value:true})})},{}],16:[function(require,module,exports){(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory(exports,require("d3-selection"),require("d3-dispatch"),require("d3-timer"),require("d3-interpolate"),require("d3-color"),require("d3-ease")):typeof define==="function"&&define.amd?define(["exports","d3-selection","d3-dispatch","d3-timer","d3-interpolate","d3-color","d3-ease"],factory):factory(global.d3=global.d3||{},global.d3,global.d3,global.d3,global.d3,global.d3,global.d3);
})(this,function(exports,d3Selection,d3Dispatch,d3Timer,d3Interpolate,d3Color,d3Ease){"use strict";var emptyOn=d3Dispatch.dispatch("start","end","interrupt");var emptyTween=[];var CREATED=0;var SCHEDULED=1;var STARTING=2;var STARTED=3;var RUNNING=4;var ENDING=5;var ENDED=6;function schedule(node,name,id,index,group,timing){var schedules=node.__transition;if(!schedules)node.__transition={};else if(id in schedules)return;create(node,id,{name:name,index:index,group:group,on:emptyOn,tween:emptyTween,time:timing.time,delay:timing.delay,duration:timing.duration,ease:timing.ease,timer:null,state:CREATED})}function init(node,id){var schedule=node.__transition;if(!schedule||!(schedule=schedule[id])||schedule.state>CREATED)throw new Error("too late");return schedule}function set(node,id){var schedule=node.__transition;if(!schedule||!(schedule=schedule[id])||schedule.state>STARTING)throw new Error("too late");return schedule}function get(node,id){var schedule=node.__transition;if(!schedule||!(schedule=schedule[id]))throw new Error("too late");return schedule}function create(node,id,self){var schedules=node.__transition,tween;schedules[id]=self;self.timer=d3Timer.timer(schedule,0,self.time);function schedule(elapsed){self.state=SCHEDULED;self.timer.restart(start,self.delay,self.time);if(self.delay<=elapsed)start(elapsed-self.delay)}function start(elapsed){var i,j,n,o;if(self.state!==SCHEDULED)return stop();for(i in schedules){o=schedules[i];if(o.name!==self.name)continue;if(o.state===STARTED)return d3Timer.timeout(start);if(o.state===RUNNING){o.state=ENDED;o.timer.stop();o.on.call("interrupt",node,node.__data__,o.index,o.group);delete schedules[i]}else if(+i<id){o.state=ENDED;o.timer.stop();delete schedules[i]}}d3Timer.timeout(function(){if(self.state===STARTED){self.state=RUNNING;self.timer.restart(tick,self.delay,self.time);tick(elapsed)}});self.state=STARTING;self.on.call("start",node,node.__data__,self.index,self.group);if(self.state!==STARTING)return;self.state=STARTED;tween=new Array(n=self.tween.length);for(i=0,j=-1;i<n;++i){if(o=self.tween[i].value.call(node,node.__data__,self.index,self.group)){tween[++j]=o}}tween.length=j+1}function tick(elapsed){var t=elapsed<self.duration?self.ease.call(null,elapsed/self.duration):(self.timer.restart(stop),self.state=ENDING,1),i=-1,n=tween.length;while(++i<n){tween[i].call(null,t)}if(self.state===ENDING){self.on.call("end",node,node.__data__,self.index,self.group);stop()}}function stop(){self.state=ENDED;self.timer.stop();delete schedules[id];for(var i in schedules)return;delete node.__transition}}function interrupt(node,name){var schedules=node.__transition,schedule,active,empty=true,i;if(!schedules)return;name=name==null?null:name+"";for(i in schedules){if((schedule=schedules[i]).name!==name){empty=false;continue}active=schedule.state===STARTED;schedule.state=ENDED;schedule.timer.stop();if(active)schedule.on.call("interrupt",node,node.__data__,schedule.index,schedule.group);delete schedules[i]}if(empty)delete node.__transition}function selection_interrupt(name){return this.each(function(){interrupt(this,name)})}function tweenRemove(id,name){var tween0,tween1;return function(){var schedule=set(this,id),tween=schedule.tween;if(tween!==tween0){tween1=tween0=tween;for(var i=0,n=tween1.length;i<n;++i){if(tween1[i].name===name){tween1=tween1.slice();tween1.splice(i,1);break}}}schedule.tween=tween1}}function tweenFunction(id,name,value){var tween0,tween1;if(typeof value!=="function")throw new Error;return function(){var schedule=set(this,id),tween=schedule.tween;if(tween!==tween0){tween1=(tween0=tween).slice();for(var t={name:name,value:value},i=0,n=tween1.length;i<n;++i){if(tween1[i].name===name){tween1[i]=t;break}}if(i===n)tween1.push(t)}schedule.tween=tween1}}function transition_tween(name,value){var id=this._id;name+="";if(arguments.length<2){var tween=get(this.node(),id).tween;for(var i=0,n=tween.length,t;i<n;++i){if((t=tween[i]).name===name){return t.value}}return null}return this.each((value==null?tweenRemove:tweenFunction)(id,name,value))}function tweenValue(transition,name,value){var id=transition._id;transition.each(function(){var schedule=set(this,id);(schedule.value||(schedule.value={}))[name]=value.apply(this,arguments)});return function(node){return get(node,id).value[name]}}function interpolate(a,b){var c;return(typeof b==="number"?d3Interpolate.interpolateNumber:b instanceof d3Color.color?d3Interpolate.interpolateRgb:(c=d3Color.color(b))?(b=c,d3Interpolate.interpolateRgb):d3Interpolate.interpolateString)(a,b)}function attrRemove(name){return function(){this.removeAttribute(name)}}function attrRemoveNS(fullname){return function(){this.removeAttributeNS(fullname.space,fullname.local)}}function attrConstant(name,interpolate,value1){var value00,interpolate0;return function(){var value0=this.getAttribute(name);return value0===value1?null:value0===value00?interpolate0:interpolate0=interpolate(value00=value0,value1)}}function attrConstantNS(fullname,interpolate,value1){var value00,interpolate0;return function(){var value0=this.getAttributeNS(fullname.space,fullname.local);return value0===value1?null:value0===value00?interpolate0:interpolate0=interpolate(value00=value0,value1)}}function attrFunction(name,interpolate,value){var value00,value10,interpolate0;return function(){var value0,value1=value(this);if(value1==null)return void this.removeAttribute(name);value0=this.getAttribute(name);return value0===value1?null:value0===value00&&value1===value10?interpolate0:interpolate0=interpolate(value00=value0,value10=value1)}}function attrFunctionNS(fullname,interpolate,value){var value00,value10,interpolate0;return function(){var value0,value1=value(this);if(value1==null)return void this.removeAttributeNS(fullname.space,fullname.local);value0=this.getAttributeNS(fullname.space,fullname.local);return value0===value1?null:value0===value00&&value1===value10?interpolate0:interpolate0=interpolate(value00=value0,value10=value1)}}function transition_attr(name,value){var fullname=d3Selection.namespace(name),i=fullname==="transform"?d3Interpolate.interpolateTransformSvg:interpolate;return this.attrTween(name,typeof value==="function"?(fullname.local?attrFunctionNS:attrFunction)(fullname,i,tweenValue(this,"attr."+name,value)):value==null?(fullname.local?attrRemoveNS:attrRemove)(fullname):(fullname.local?attrConstantNS:attrConstant)(fullname,i,value))}function attrTweenNS(fullname,value){function tween(){var node=this,i=value.apply(node,arguments);return i&&function(t){node.setAttributeNS(fullname.space,fullname.local,i(t))}}tween._value=value;return tween}function attrTween(name,value){function tween(){var node=this,i=value.apply(node,arguments);return i&&function(t){node.setAttribute(name,i(t))}}tween._value=value;return tween}function transition_attrTween(name,value){var key="attr."+name;if(arguments.length<2)return(key=this.tween(key))&&key._value;if(value==null)return this.tween(key,null);if(typeof value!=="function")throw new Error;var fullname=d3Selection.namespace(name);return this.tween(key,(fullname.local?attrTweenNS:attrTween)(fullname,value))}function delayFunction(id,value){return function(){init(this,id).delay=+value.apply(this,arguments)}}function delayConstant(id,value){return value=+value,function(){init(this,id).delay=value}}function transition_delay(value){var id=this._id;return arguments.length?this.each((typeof value==="function"?delayFunction:delayConstant)(id,value)):get(this.node(),id).delay}function durationFunction(id,value){return function(){set(this,id).duration=+value.apply(this,arguments)}}function durationConstant(id,value){return value=+value,function(){set(this,id).duration=value}}function transition_duration(value){var id=this._id;return arguments.length?this.each((typeof value==="function"?durationFunction:durationConstant)(id,value)):get(this.node(),id).duration}function easeConstant(id,value){if(typeof value!=="function")throw new Error;return function(){set(this,id).ease=value}}function transition_ease(value){var id=this._id;return arguments.length?this.each(easeConstant(id,value)):get(this.node(),id).ease}function transition_filter(match){if(typeof match!=="function")match=d3Selection.matcher(match);for(var groups=this._groups,m=groups.length,subgroups=new Array(m),j=0;j<m;++j){for(var group=groups[j],n=group.length,subgroup=subgroups[j]=[],node,i=0;i<n;++i){if((node=group[i])&&match.call(node,node.__data__,i,group)){subgroup.push(node)}}}return new Transition(subgroups,this._parents,this._name,this._id)}function transition_merge(transition){if(transition._id!==this._id)throw new Error;for(var groups0=this._groups,groups1=transition._groups,m0=groups0.length,m1=groups1.length,m=Math.min(m0,m1),merges=new Array(m0),j=0;j<m;++j){for(var group0=groups0[j],group1=groups1[j],n=group0.length,merge=merges[j]=new Array(n),node,i=0;i<n;++i){if(node=group0[i]||group1[i]){merge[i]=node}}}for(;j<m0;++j){merges[j]=groups0[j]}return new Transition(merges,this._parents,this._name,this._id)}function start(name){return(name+"").trim().split(/^|\s+/).every(function(t){var i=t.indexOf(".");if(i>=0)t=t.slice(0,i);return!t||t==="start"})}function onFunction(id,name,listener){var on0,on1,sit=start(name)?init:set;return function(){var schedule=sit(this,id),on=schedule.on;if(on!==on0)(on1=(on0=on).copy()).on(name,listener);schedule.on=on1}}function transition_on(name,listener){var id=this._id;return arguments.length<2?get(this.node(),id).on.on(name):this.each(onFunction(id,name,listener))}function removeFunction(id){return function(){var parent=this.parentNode;for(var i in this.__transition)if(+i!==id)return;if(parent)parent.removeChild(this)}}function transition_remove(){return this.on("end.remove",removeFunction(this._id))}function transition_select(select){var name=this._name,id=this._id;if(typeof select!=="function")select=d3Selection.selector(select);for(var groups=this._groups,m=groups.length,subgroups=new Array(m),j=0;j<m;++j){for(var group=groups[j],n=group.length,subgroup=subgroups[j]=new Array(n),node,subnode,i=0;i<n;++i){if((node=group[i])&&(subnode=select.call(node,node.__data__,i,group))){if("__data__"in node)subnode.__data__=node.__data__;subgroup[i]=subnode;schedule(subgroup[i],name,id,i,subgroup,get(node,id))}}}return new Transition(subgroups,this._parents,name,id)}function transition_selectAll(select){var name=this._name,id=this._id;if(typeof select!=="function")select=d3Selection.selectorAll(select);for(var groups=this._groups,m=groups.length,subgroups=[],parents=[],j=0;j<m;++j){for(var group=groups[j],n=group.length,node,i=0;i<n;++i){if(node=group[i]){for(var children=select.call(node,node.__data__,i,group),child,inherit=get(node,id),k=0,l=children.length;k<l;++k){if(child=children[k]){schedule(child,name,id,k,children,inherit)}}subgroups.push(children);parents.push(node)}}}return new Transition(subgroups,parents,name,id)}var Selection=d3Selection.selection.prototype.constructor;function transition_selection(){return new Selection(this._groups,this._parents)}function styleRemove(name,interpolate){var value00,value10,interpolate0;return function(){var style=d3Selection.window(this).getComputedStyle(this,null),value0=style.getPropertyValue(name),value1=(this.style.removeProperty(name),style.getPropertyValue(name));return value0===value1?null:value0===value00&&value1===value10?interpolate0:interpolate0=interpolate(value00=value0,value10=value1)}}function styleRemoveEnd(name){return function(){this.style.removeProperty(name)}}function styleConstant(name,interpolate,value1){var value00,interpolate0;return function(){var value0=d3Selection.window(this).getComputedStyle(this,null).getPropertyValue(name);return value0===value1?null:value0===value00?interpolate0:interpolate0=interpolate(value00=value0,value1)}}function styleFunction(name,interpolate,value){var value00,value10,interpolate0;return function(){var style=d3Selection.window(this).getComputedStyle(this,null),value0=style.getPropertyValue(name),value1=value(this);if(value1==null)value1=(this.style.removeProperty(name),style.getPropertyValue(name));return value0===value1?null:value0===value00&&value1===value10?interpolate0:interpolate0=interpolate(value00=value0,value10=value1)}}function transition_style(name,value,priority){var i=(name+="")==="transform"?d3Interpolate.interpolateTransformCss:interpolate;return value==null?this.styleTween(name,styleRemove(name,i)).on("end.style."+name,styleRemoveEnd(name)):this.styleTween(name,typeof value==="function"?styleFunction(name,i,tweenValue(this,"style."+name,value)):styleConstant(name,i,value),priority)}function styleTween(name,value,priority){function tween(){var node=this,i=value.apply(node,arguments);return i&&function(t){node.style.setProperty(name,i(t),priority)}}tween._value=value;return tween}function transition_styleTween(name,value,priority){var key="style."+(name+="");if(arguments.length<2)return(key=this.tween(key))&&key._value;if(value==null)return this.tween(key,null);if(typeof value!=="function")throw new Error;return this.tween(key,styleTween(name,value,priority==null?"":priority))}function textConstant(value){return function(){this.textContent=value}}function textFunction(value){return function(){var value1=value(this);this.textContent=value1==null?"":value1}}function transition_text(value){return this.tween("text",typeof value==="function"?textFunction(tweenValue(this,"text",value)):textConstant(value==null?"":value+""))}function transition_transition(){var name=this._name,id0=this._id,id1=newId();for(var groups=this._groups,m=groups.length,j=0;j<m;++j){for(var group=groups[j],n=group.length,node,i=0;i<n;++i){if(node=group[i]){var inherit=get(node,id0);schedule(node,name,id1,i,group,{time:inherit.time+inherit.delay+inherit.duration,delay:0,duration:inherit.duration,ease:inherit.ease})}}}return new Transition(groups,this._parents,name,id1)}var id=0;function Transition(groups,parents,name,id){this._groups=groups;this._parents=parents;this._name=name;this._id=id}function transition(name){return d3Selection.selection().transition(name)}function newId(){return++id}var selection_prototype=d3Selection.selection.prototype;Transition.prototype=transition.prototype={constructor:Transition,select:transition_select,selectAll:transition_selectAll,filter:transition_filter,merge:transition_merge,selection:transition_selection,transition:transition_transition,call:selection_prototype.call,nodes:selection_prototype.nodes,node:selection_prototype.node,size:selection_prototype.size,empty:selection_prototype.empty,each:selection_prototype.each,on:transition_on,attr:transition_attr,attrTween:transition_attrTween,style:transition_style,styleTween:transition_styleTween,text:transition_text,remove:transition_remove,tween:transition_tween,delay:transition_delay,duration:transition_duration,ease:transition_ease};var defaultTiming={time:null,delay:0,duration:250,ease:d3Ease.easeCubicInOut};function inherit(node,id){var timing;while(!(timing=node.__transition)||!(timing=timing[id])){if(!(node=node.parentNode)){return defaultTiming.time=d3Timer.now(),defaultTiming}}return timing}function selection_transition(name){var id,timing;if(name instanceof Transition){id=name._id,name=name._name}else{id=newId(),(timing=defaultTiming).time=d3Timer.now(),name=name==null?null:name+""}for(var groups=this._groups,m=groups.length,j=0;j<m;++j){for(var group=groups[j],n=group.length,node,i=0;i<n;++i){if(node=group[i]){schedule(node,name,id,i,group,timing||inherit(node,id))}}}return new Transition(groups,this._parents,name,id)}d3Selection.selection.prototype.interrupt=selection_interrupt;d3Selection.selection.prototype.transition=selection_transition;var root=[null];function active(node,name){var schedules=node.__transition,schedule,i;if(schedules){name=name==null?null:name+"";for(i in schedules){if((schedule=schedules[i]).state>SCHEDULED&&schedule.name===name){return new Transition([[node]],root,name,+i)}}}return null}exports.transition=transition;exports.active=active;exports.interrupt=interrupt;Object.defineProperty(exports,"__esModule",{value:true})})},{"d3-color":4,"d3-dispatch":7,"d3-ease":9,"d3-interpolate":11,"d3-selection":14,"d3-timer":15}],17:[function(require,module,exports){(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory(exports):typeof define==="function"&&define.amd?define(["exports"],factory):factory(global.topojson=global.topojson||{})})(this,function(exports){"use strict";function noop(){}function transformAbsolute(transform){if(!transform)return noop;var x0,y0,kx=transform.scale[0],ky=transform.scale[1],dx=transform.translate[0],dy=transform.translate[1];return function(point,i){if(!i)x0=y0=0;point[0]=(x0+=point[0])*kx+dx;point[1]=(y0+=point[1])*ky+dy}}function transformRelative(transform){if(!transform)return noop;var x0,y0,kx=transform.scale[0],ky=transform.scale[1],dx=transform.translate[0],dy=transform.translate[1];return function(point,i){if(!i)x0=y0=0;var x1=Math.round((point[0]-dx)/kx),y1=Math.round((point[1]-dy)/ky);point[0]=x1-x0;point[1]=y1-y0;x0=x1;y0=y1}}function reverse(array,n){var t,j=array.length,i=j-n;while(i<--j)t=array[i],array[i++]=array[j],array[j]=t}function bisect(a,x){var lo=0,hi=a.length;while(lo<hi){var mid=lo+hi>>>1;if(a[mid]<x)lo=mid+1;else hi=mid}return lo}function feature(topology,o){return o.type==="GeometryCollection"?{type:"FeatureCollection",features:o.geometries.map(function(o){return feature$1(topology,o)})}:feature$1(topology,o)}function feature$1(topology,o){var f={type:"Feature",id:o.id,properties:o.properties||{},geometry:object(topology,o)};if(o.id==null)delete f.id;return f}function object(topology,o){var absolute=transformAbsolute(topology.transform),arcs=topology.arcs;function arc(i,points){if(points.length)points.pop();for(var a=arcs[i<0?~i:i],k=0,n=a.length,p;k<n;++k){points.push(p=a[k].slice());absolute(p,k)}if(i<0)reverse(points,n)}function point(p){p=p.slice();absolute(p,0);return p}function line(arcs){var points=[];for(var i=0,n=arcs.length;i<n;++i)arc(arcs[i],points);if(points.length<2)points.push(points[0].slice());return points}function ring(arcs){var points=line(arcs);while(points.length<4)points.push(points[0].slice());return points}function polygon(arcs){return arcs.map(ring)}function geometry(o){var t=o.type;return t==="GeometryCollection"?{type:t,geometries:o.geometries.map(geometry)}:t in geometryType?{type:t,coordinates:geometryType[t](o)}:null}var geometryType={Point:function(o){return point(o.coordinates)},MultiPoint:function(o){return o.coordinates.map(point)},LineString:function(o){return line(o.arcs)},MultiLineString:function(o){return o.arcs.map(line)},Polygon:function(o){return polygon(o.arcs)},MultiPolygon:function(o){return o.arcs.map(polygon)}};return geometry(o)}function stitchArcs(topology,arcs){var stitchedArcs={},fragmentByStart={},fragmentByEnd={},fragments=[],emptyIndex=-1;arcs.forEach(function(i,j){var arc=topology.arcs[i<0?~i:i],t;if(arc.length<3&&!arc[1][0]&&!arc[1][1]){t=arcs[++emptyIndex],arcs[emptyIndex]=i,arcs[j]=t}});arcs.forEach(function(i){var e=ends(i),start=e[0],end=e[1],f,g;if(f=fragmentByEnd[start]){delete fragmentByEnd[f.end];f.push(i);f.end=end;if(g=fragmentByStart[end]){delete fragmentByStart[g.start];var fg=g===f?f:f.concat(g);fragmentByStart[fg.start=f.start]=fragmentByEnd[fg.end=g.end]=fg}else{fragmentByStart[f.start]=fragmentByEnd[f.end]=f}}else if(f=fragmentByStart[end]){delete fragmentByStart[f.start];f.unshift(i);f.start=start;if(g=fragmentByEnd[start]){delete fragmentByEnd[g.end];var gf=g===f?f:g.concat(f);fragmentByStart[gf.start=g.start]=fragmentByEnd[gf.end=f.end]=gf}else{fragmentByStart[f.start]=fragmentByEnd[f.end]=f}}else{f=[i];fragmentByStart[f.start=start]=fragmentByEnd[f.end=end]=f}});function ends(i){var arc=topology.arcs[i<0?~i:i],p0=arc[0],p1;if(topology.transform)p1=[0,0],arc.forEach(function(dp){p1[0]+=dp[0],p1[1]+=dp[1]});else p1=arc[arc.length-1];return i<0?[p1,p0]:[p0,p1]}function flush(fragmentByEnd,fragmentByStart){for(var k in fragmentByEnd){var f=fragmentByEnd[k];delete fragmentByStart[f.start];delete f.start;delete f.end;f.forEach(function(i){stitchedArcs[i<0?~i:i]=1});fragments.push(f)}}flush(fragmentByEnd,fragmentByStart);flush(fragmentByStart,fragmentByEnd);arcs.forEach(function(i){if(!stitchedArcs[i<0?~i:i])fragments.push([i])});return fragments}function mesh(topology){return object(topology,meshArcs.apply(this,arguments))}function meshArcs(topology,o,filter){var arcs=[];function arc(i){var j=i<0?~i:i;(geomsByArc[j]||(geomsByArc[j]=[])).push({i:i,g:geom})}function line(arcs){arcs.forEach(arc)}function polygon(arcs){arcs.forEach(line)}function geometry(o){if(o.type==="GeometryCollection")o.geometries.forEach(geometry);else if(o.type in geometryType)geom=o,geometryType[o.type](o.arcs)}if(arguments.length>1){var geomsByArc=[],geom;var geometryType={LineString:line,MultiLineString:polygon,Polygon:polygon,MultiPolygon:function(arcs){arcs.forEach(polygon)}};geometry(o);geomsByArc.forEach(arguments.length<3?function(geoms){arcs.push(geoms[0].i)}:function(geoms){if(filter(geoms[0].g,geoms[geoms.length-1].g))arcs.push(geoms[0].i)})}else{for(var i=0,n=topology.arcs.length;i<n;++i)arcs.push(i)}return{type:"MultiLineString",arcs:stitchArcs(topology,arcs)}}function cartesianTriangleArea(triangle){var a=triangle[0],b=triangle[1],c=triangle[2];return Math.abs((a[0]-c[0])*(b[1]-a[1])-(a[0]-b[0])*(c[1]-a[1]))}function ring(ring){var i=-1,n=ring.length,a,b=ring[n-1],area=0;while(++i<n){a=b;b=ring[i];area+=a[0]*b[1]-a[1]*b[0]}return area/2}function merge(topology){return object(topology,mergeArcs.apply(this,arguments))}function mergeArcs(topology,objects){var polygonsByArc={},polygons=[],components=[];objects.forEach(function(o){if(o.type==="Polygon")register(o.arcs);else if(o.type==="MultiPolygon")o.arcs.forEach(register)});function register(polygon){polygon.forEach(function(ring$$){ring$$.forEach(function(arc){(polygonsByArc[arc=arc<0?~arc:arc]||(polygonsByArc[arc]=[])).push(polygon)})});polygons.push(polygon)}function area(ring$$){return Math.abs(ring(object(topology,{type:"Polygon",arcs:[ring$$]}).coordinates[0]))}polygons.forEach(function(polygon){if(!polygon._){var component=[],neighbors=[polygon];polygon._=1;components.push(component);while(polygon=neighbors.pop()){component.push(polygon);polygon.forEach(function(ring$$){ring$$.forEach(function(arc){polygonsByArc[arc<0?~arc:arc].forEach(function(polygon){if(!polygon._){polygon._=1;neighbors.push(polygon)}})})})}}});polygons.forEach(function(polygon){delete polygon._});return{type:"MultiPolygon",arcs:components.map(function(polygons){var arcs=[],n;polygons.forEach(function(polygon){polygon.forEach(function(ring$$){ring$$.forEach(function(arc){if(polygonsByArc[arc<0?~arc:arc].length<2){arcs.push(arc)}})})});arcs=stitchArcs(topology,arcs);if((n=arcs.length)>1){for(var i=1,k=area(arcs[0]),ki,t;i<n;++i){if((ki=area(arcs[i]))>k){t=arcs[0],arcs[0]=arcs[i],arcs[i]=t,k=ki}}}return arcs})}}function neighbors(objects){var indexesByArc={},neighbors=objects.map(function(){return[]});function line(arcs,i){arcs.forEach(function(a){if(a<0)a=~a;var o=indexesByArc[a];if(o)o.push(i);else indexesByArc[a]=[i]})}function polygon(arcs,i){arcs.forEach(function(arc){line(arc,i)})}function geometry(o,i){if(o.type==="GeometryCollection")o.geometries.forEach(function(o){geometry(o,i)});else if(o.type in geometryType)geometryType[o.type](o.arcs,i)}var geometryType={LineString:line,MultiLineString:polygon,Polygon:polygon,MultiPolygon:function(arcs,i){arcs.forEach(function(arc){polygon(arc,i)})}};objects.forEach(geometry);for(var i in indexesByArc){for(var indexes=indexesByArc[i],m=indexes.length,j=0;j<m;++j){for(var k=j+1;k<m;++k){var ij=indexes[j],ik=indexes[k],n;if((n=neighbors[ij])[i=bisect(n,ik)]!==ik)n.splice(i,0,ik);if((n=neighbors[ik])[i=bisect(n,ij)]!==ij)n.splice(i,0,ij)}}}return neighbors}function compareArea(a,b){return a[1][2]-b[1][2]}function minAreaHeap(){var heap={},array=[],size=0;heap.push=function(object){up(array[object._=size]=object,size++);return size};heap.pop=function(){if(size<=0)return;var removed=array[0],object;if(--size>0)object=array[size],down(array[object._=0]=object,0);return removed};heap.remove=function(removed){var i=removed._,object;if(array[i]!==removed)return;if(i!==--size)object=array[size],(compareArea(object,removed)<0?up:down)(array[object._=i]=object,i);return i};function up(object,i){while(i>0){var j=(i+1>>1)-1,parent=array[j];if(compareArea(object,parent)>=0)break;array[parent._=i]=parent;array[object._=i=j]=object}}function down(object,i){while(true){var r=i+1<<1,l=r-1,j=i,child=array[j];if(l<size&&compareArea(array[l],child)<0)child=array[j=l];if(r<size&&compareArea(array[r],child)<0)child=array[j=r];if(j===i)break;array[child._=i]=child;array[object._=i=j]=object}}return heap}function presimplify(topology,triangleArea){var absolute=transformAbsolute(topology.transform),relative=transformRelative(topology.transform),heap=minAreaHeap();if(!triangleArea)triangleArea=cartesianTriangleArea;topology.arcs.forEach(function(arc){var triangles=[],maxArea=0,triangle,i,n,p;for(i=0,n=arc.length;i<n;++i){p=arc[i];absolute(arc[i]=[p[0],p[1],Infinity],i)}for(i=1,n=arc.length-1;i<n;++i){triangle=arc.slice(i-1,i+2);triangle[1][2]=triangleArea(triangle);triangles.push(triangle);heap.push(triangle)}for(i=0,n=triangles.length;i<n;++i){triangle=triangles[i];triangle.previous=triangles[i-1];triangle.next=triangles[i+1]}while(triangle=heap.pop()){var previous=triangle.previous,next=triangle.next;if(triangle[1][2]<maxArea)triangle[1][2]=maxArea;else maxArea=triangle[1][2];if(previous){previous.next=next;previous[2]=triangle[2];update(previous)}if(next){next.previous=previous;next[0]=triangle[0];update(next)}}arc.forEach(relative)});function update(triangle){heap.remove(triangle);triangle[1][2]=triangleArea(triangle);heap.push(triangle)}return topology}var version="1.6.27";exports.version=version;exports.mesh=mesh;exports.meshArcs=meshArcs;exports.merge=merge;exports.mergeArcs=mergeArcs;exports.feature=feature;exports.neighbors=neighbors;exports.presimplify=presimplify;Object.defineProperty(exports,"__esModule",{value:true})})},{}]},{},[1]);
var d3_composite = require("d3-composite-projections");
var d3_geo = require("d3-geo");
var d3_request = require("d3-request");
var d3_selection = require("d3-selection");
var d3_transition = require("d3-transition");
var topojson = require("topojson");
var width = 960;
var height = 500;
var projection = d3_composite.geoConicConformalEurope();
var path = d3_geo.geoPath()
.projection(projection);
var svg = d3_selection.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var t = d3_transition.transition()
.on("interrupt", function(d,i){
console.info(i);
});
d3_request.json("nuts0.json", function(error, topojsonData) {
var us = topojson.feature(topojsonData, topojsonData.objects.nuts0);
svg.selectAll(".region")
.data(us.features)
.enter()
.append("path")
.attr("d", path)
.attr("class","region")
.style("fill", "#aca")
.style("stroke", "#000")
.style("stroke-width", "0.5px")
.on("mouseover", function(d,i) {
d3_selection.select(this)
.transition(t)
.style("fill", "red");
})
.on("mouseout", function(d,i) {
d3_selection.select(this).interrupt();
d3_selection.select(this)
.transition(t)
.style("fill", "#aca");
});
svg
.append("path")
.style("fill","none")
.style("stroke","#f00")
.attr("d", projection.getCompositionBorders());
});
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<div id="map"></div>
<script src="bundle.js"></script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"nuts0":{"type":"GeometryCollection","bbox":[-63.15345500000001,-21.387309500000015,55.83662850000002,71.18531800099998],"geometries":[{"type":"Polygon","properties":{"nuts_id":"AT","name":"Austria","population":8451860},"id":"AT","arcs":[[0,1,2,3,4,5,6,7,8]]},{"type":"MultiPolygon","properties":{"nuts_id":"BE","name":"Belgium","population":11161642},"id":"BE","arcs":[[[9,10,11,12,13,14,15]],[[16]],[[17]]]},{"type":"Polygon","properties":{"nuts_id":"BG","name":"Bulgaria","population":7284552},"id":"BG","arcs":[[18,19,20,21,22,23]]},{"type":"Polygon","properties":{"nuts_id":"CH","name":"Switzerland","population":8039060},"id":"CH","arcs":[[-7,24,-5,25,26,27],[28],[29]]},{"type":"Polygon","properties":{"nuts_id":"CY","name":"Cyprus","population":865878},"id":"CY","arcs":[[30]]},{"type":"Polygon","properties":{"nuts_id":"CZ","name":"Czech Republic","population":10516125},"id":"CZ","arcs":[[31,32,-9,33]]},{"type":"MultiPolygon","properties":{"nuts_id":"DE","name":"Germany (until 1990 former territory of the FRG)","population":82020578},"id":"DE","arcs":[[[34,35,36,-34,-8,-28,37,38,-10,39,40]],[[41]],[[42,43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[-29]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]]]},{"type":"MultiPolygon","properties":{"nuts_id":"DK","name":"Denmark","population":5602628},"id":"DK","arcs":[[[-35,84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[-164]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]]]},{"type":"MultiPolygon","properties":{"nuts_id":"EE","name":"Estonia","population":1320174},"id":"EE","arcs":[[[175,176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[-219]],[[219]],[[220]],[[221]],[[-223]],[[223]]]},{"type":"MultiPolygon","properties":{"nuts_id":"EL","name":"Greece","population":11062508},"id":"EL","arcs":[[[224,225,226,-21]],[[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]],[[293]],[[294]],[[295]],[[296]],[[297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[324]],[[325]],[[326]],[[327]],[[328]],[[329]],[[330]],[[331]],[[332]],[[333]],[[334]],[[335]],[[336]],[[337]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351]],[[352]],[[353]],[[354]],[[355]],[[356]],[[357]],[[358]],[[359]],[[360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370]],[[371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379]],[[380]],[[381]],[[382]],[[383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[-418]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[-446]],[[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]],[[472]],[[473]],[[474]],[[475]],[[476]],[[477]],[[478]],[[479]],[[480]],[[481]],[[482]],[[483]],[[484]],[[485]],[[486]]]},{"type":"MultiPolygon","properties":{"nuts_id":"ES","name":"Spain","population":46727890},"id":"ES","arcs":[[[487,488,489,490,491,492]],[[493]],[[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]]]},{"type":"MultiPolygon","properties":{"nuts_id":"FI","name":"Finland","population":5426674},"id":"FI","arcs":[[[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]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[634]],[[635]],[[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]],[[-913]],[[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]],[[-958]],[[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]],[[-1032]],[[1032]],[[1033]],[[1034]],[[1035]],[[-1037]],[[1037]],[[1038]],[[1039]],[[1040]],[[1041]],[[1042]],[[1043]],[[1044]],[[1045]],[[1046]],[[1047]],[[1048]],[[1049]],[[1050]],[[1051]],[[1052]],[[-1054]],[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[-1073]],[[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]],[[-1100]],[[-1101]],[[1101]],[[1102]],[[1103]],[[1104]],[[1105]],[[1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112]],[[1113]],[[1114]],[[1115]],[[1116]],[[1117]],[[1118]],[[-1120]],[[1120]],[[1121]],[[1122]],[[1123]],[[1124]],[[1125]],[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[1136]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141]],[[-1143]],[[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]],[[-1192]],[[1192]],[[1193]],[[1194]],[[1195]],[[1196]],[[1197]],[[1198]],[[1199]],[[-1201]],[[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]],[[-1230]],[[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]],[[-1277]],[[1277]],[[1278]],[[1279]],[[1280]],[[1281]],[[1282]],[[-1284]],[[1284]],[[1285]],[[1286]],[[1287]],[[1288]],[[-1290]],[[1290]],[[1291]],[[1292]],[[1293]],[[1294]],[[1295]],[[1296]],[[1297]],[[1298]],[[1299]],[[1300]],[[1301]],[[1302]],[[-1304]],[[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]],[[-1356]],[[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]],[[-1385]],[[1385]],[[1386]],[[1387]],[[1388]],[[1389]],[[1390]],[[1391]],[[1392]],[[-1394]],[[1394]],[[1395]],[[1396]],[[1397]],[[1398]],[[1399]],[[1400]],[[1401]],[[1402]],[[1403]],[[1404]],[[1405]],[[1406]],[[1407]],[[1408]],[[1409]],[[-1411]],[[1411]],[[1412]],[[1413]],[[1414]],[[1415]],[[1416]],[[1417]],[[1418]],[[1419]],[[1420]],[[1421]],[[1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]],[[1428]],[[1429]],[[1430]],[[1431]],[[1432]],[[-1434]],[[1434]]]},{"type":"MultiPolygon","properties":{"nuts_id":"FR","name":"France","population":65560721},"id":"FR","arcs":[[[1435,-38,-27,1436,1437,-490,1438,-488,1439,-12],[-507]],[[1440]],[[1441]],[[1442]],[[1443]],[[1444]],[[1445]],[[1446]],[[1447]],[[1448]],[[1449]],[[1450]],[[1451]],[[1452]],[[1453]],[[1454]],[[1455]],[[1456]],[[1457]],[[1458]],[[1459]],[[1460]],[[1461]],[[1462]],[[1463]],[[1464]],[[1465]],[[1466]],[[1467]],[[1468]],[[1469]],[[1470]],[[1471]],[[1472]],[[1473]],[[1474]],[[1475]],[[1476]],[[1477]],[[1478]],[[1479]],[[1480]],[[1481]],[[1482]],[[1483]],[[1484]],[[1485]],[[1486]],[[1487]],[[1488]],[[1489]],[[1490]],[[1491]],[[1492]],[[-1494]],[[1494]],[[1495]],[[1496]],[[1497]],[[1498]],[[1499]],[[1500]],[[1501]],[[1502]],[[1503]],[[1504]]]},{"type":"MultiPolygon","properties":{"nuts_id":"HR","name":"Croatia","population":4262140},"id":"HR","arcs":[[[1505,1506,1507]],[[1508,1509]],[[1510]],[[1511]],[[1512]],[[1513]],[[1514]],[[1515]],[[1516]],[[1517]],[[1518]],[[1519]],[[1520]],[[1521]],[[1522]],[[1523]],[[1524]],[[1525]],[[1526]],[[1527]],[[1528]],[[1529]],[[1530]],[[1531]],[[1532]],[[1533]],[[1534]],[[1535]],[[1536]],[[1537]],[[1538]],[[1539]],[[1540]],[[1541]],[[1542]],[[1543]],[[1544]],[[1545]],[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554]],[[1555]],[[1556]],[[1557]],[[1558]],[[1559]],[[1560]],[[1561]],[[1562]],[[1563]],[[1564]],[[1565]],[[1566]],[[1567]],[[1568]],[[1569]],[[1570]],[[1571]],[[1572]],[[1573]],[[1574]],[[1575]],[[1576]],[[1577]],[[1578]],[[1579]],[[1580]],[[-1582]],[[1582]],[[1583]],[[1584]],[[1585]],[[1586]],[[1587]],[[1588]],[[1589]],[[1590]],[[1591]],[[1592]],[[1593]],[[1594]],[[1595]],[[1596]],[[1597]],[[1598]],[[1599]],[[1600]],[[1601]],[[1602]],[[1603]],[[1604]],[[1605]],[[1606]],[[-1608]],[[1608]],[[1609]],[[1610]],[[1611]],[[1612]],[[1613]],[[1614]],[[1615]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624]]]},{"type":"Polygon","properties":{"nuts_id":"HU","name":"Hungary","population":9908798},"id":"HU","arcs":[[1625,1626,1627,-1506,1628,-2,1629]]},{"type":"MultiPolygon","properties":{"nuts_id":"IE","name":"Ireland","population":4591087},"id":"IE","arcs":[[[1630,1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636]],[[1637]],[[1638]],[[1639]],[[1640]],[[1641]],[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[1651]],[[1652]],[[1653]],[[1654]],[[1655]],[[1656]],[[1657]],[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]],[[1668]],[[1669]],[[1670]],[[1671]],[[1672]],[[1673]],[[1674]],[[1675]],[[1676]],[[1677]],[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1686]],[[1687]],[[1688]],[[1689]],[[1690]],[[1691]],[[1692]],[[1693]],[[1694]],[[1695]],[[1696]],[[1697]],[[1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[-1704]],[[1704]],[[1705]],[[1706]],[[1707]],[[1708]],[[1709]],[[1710]],[[1711]],[[1712]],[[1713]],[[1714]],[[1715]],[[1716]],[[1717]],[[-1719]],[[1719]],[[1720]],[[1721]],[[1722]],[[1723]]]},{"type":"MultiPolygon","properties":{"nuts_id":"IS","name":"Iceland","population":321857},"id":"IS","arcs":[[[1724]],[[1725]],[[1726]],[[1727]],[[1728]],[[1729]],[[1730]],[[1731]],[[1732]],[[1733]],[[1734]],[[1735]],[[1736]],[[1737]],[[1738]],[[1739]],[[1740]],[[1741]],[[1742]],[[1743]],[[1744]],[[1745]],[[1746]],[[1747]],[[1748]],[[1749]],[[1750]],[[1751]],[[1752]],[[1753]],[[1754]],[[1755]],[[1756]],[[1757]],[[1758]],[[1759]],[[1760]],[[1761]]]},{"type":"MultiPolygon","properties":{"nuts_id":"IT","name":"Italy","population":59685227},"id":"IT","arcs":[[[1762,1763,-1437,-26,-4],[1764],[1765]],[[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]],[[1791]],[[1792]],[[1793]],[[1794]],[[1795]],[[1796]],[[1797]],[[1798]],[[1799]],[[1800]],[[1801]],[[1802]],[[1803]],[[1804]],[[1805]],[[-30]],[[1806]],[[1807]],[[1808]],[[1809]],[[1810]],[[1811]],[[1812]],[[1813]],[[1814]],[[1815]],[[-1817]],[[1817]],[[1818]],[[1819]],[[1820]],[[1821]],[[1822]],[[1823]],[[1824]],[[1825]],[[1826]],[[1827]],[[1828]],[[1829]],[[1830]],[[1831]],[[1832]]]},{"type":"Polygon","properties":{"nuts_id":"LI","name":"Liechtenstein","population":36838},"id":"LI","arcs":[[-25,-6]]},{"type":"MultiPolygon","properties":{"nuts_id":"LT","name":"Lithuania","population":2971905},"id":"LT","arcs":[[[1833,1834,1835,1836]],[[1837]]]},{"type":"Polygon","properties":{"nuts_id":"LU","name":"Luxembourg","population":537039},"id":"LU","arcs":[[-39,-1436,-11]]},{"type":"Polygon","properties":{"nuts_id":"LV","name":"Latvia","population":2023825},"id":"LV","arcs":[[1838,-1837,1839,-176]]},{"type":"MultiPolygon","properties":{"nuts_id":"ME","name":"Montenegro","population":620893},"id":"ME","arcs":[[[-1509,1840]]]},{"type":"Polygon","properties":{"nuts_id":"MK","name":"Former Yugoslav Republic of Macedonia, the","population":2062294},"id":"MK","arcs":[[-22,-227,1841]]},{"type":"MultiPolygon","properties":{"nuts_id":"MT","name":"Malta","population":421364},"id":"MT","arcs":[[[1842]],[[1843]],[[1844]]]},{"type":"MultiPolygon","properties":{"nuts_id":"NL","name":"Netherlands","population":16779575},"id":"NL","arcs":[[[-40,-16,1845],[-17],[-18]],[[-14,1846]],[[1847]],[[1848]],[[1849]],[[1850]],[[1851]],[[1852]],[[1853]],[[1854]],[[1855]],[[1856]]]},{"type":"MultiPolygon","properties":{"nuts_id":"NO","name":"Norway","population":5051275},"id":"NO","arcs":[[[-534,1857,1858]],[[1859]],[[1860]],[[1861]],[[1862]],[[1863]],[[1864]],[[1865]],[[1866]],[[1867]],[[1868]],[[1869]],[[1870]],[[1871]],[[1872]],[[1873]],[[1874]],[[1875]],[[1876]],[[1877]],[[1878]],[[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]],[[1934]],[[1935]],[[1936]],[[1937]],[[1938]],[[1939]],[[1940]],[[1941]],[[1942]],[[1943]],[[1944]],[[1945]],[[1946]],[[1947]],[[1948]],[[1949]],[[1950]],[[1951]],[[1952]],[[1953]],[[1954]],[[1955]],[[1956]],[[1957]],[[1958]],[[1959]],[[1960]],[[1961]],[[1962]],[[1963]],[[1964]],[[1965]],[[1966]],[[1967]],[[1968]],[[1969]],[[1970]],[[1971]],[[1972]],[[1973]],[[1974]],[[1975]],[[1976]],[[1977]],[[1978]],[[1979]],[[1980]],[[1981]],[[1982]],[[1983]],[[1984]],[[1985]],[[1986]],[[1987]],[[1988]],[[1989]],[[1990]],[[1991]],[[1992]],[[1993]],[[1994]],[[1995]],[[1996]],[[1997]],[[1998]],[[1999]],[[2000]],[[2001]],[[2002]],[[2003]],[[2004]],[[2005]],[[2006]],[[2007]],[[2008]],[[2009]],[[2010]],[[2011]],[[2012]],[[2013]],[[2014]],[[2015]],[[2016]],[[2017]],[[2018]],[[2019]],[[2020]],[[2021]],[[2022]],[[2023]],[[2024]],[[2025]],[[2026]],[[2027]],[[2028]],[[2029]],[[2030]],[[2031]],[[2032]],[[2033]],[[2034]],[[2035]],[[2036]],[[2037]],[[2038]],[[2039]],[[2040]],[[2041]],[[2042]],[[2043]],[[2044]],[[2045]],[[2046]],[[2047]],[[2048]],[[2049]],[[2050]],[[2051]],[[2052]],[[2053]],[[2054]],[[2055]],[[2056]],[[2057]],[[2058]],[[2059]],[[2060]],[[2061]],[[2062]],[[2063]],[[2064]],[[2065]],[[2066]],[[2067]],[[2068]],[[2069]],[[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]],[[2103]],[[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]],[[2131]],[[2132]],[[2133]],[[2134]],[[2135]],[[2136]],[[2137]],[[2138]],[[2139]],[[2140]],[[2141]],[[2142]],[[2143]],[[2144]],[[2145]],[[2146]],[[2147]],[[2148]],[[2149]],[[2150]],[[2151]],[[2152]],[[2153]],[[2154]],[[2155]],[[2156]],[[2157]],[[2158]],[[2159]],[[2160]],[[2161]],[[2162]],[[2163]],[[2164]],[[2165]],[[2166]],[[2167]],[[2168]],[[2169]],[[2170]],[[2171]],[[2172]],[[2173]],[[2174]],[[2175]],[[2176]],[[2177]],[[2178]],[[2179]],[[2180]],[[2181]],[[2182]],[[2183]],[[2184]],[[2185]],[[2186]],[[2187]],[[2188]],[[2189]],[[2190]],[[2191]],[[2192]],[[2193]],[[2194]],[[2195]],[[2196]],[[2197]],[[2198]],[[2199]],[[2200]],[[2201]],[[2202]],[[2203]],[[2204]],[[2205]],[[2206]],[[2207]],[[2208]],[[2209]],[[2210]],[[2211]],[[2212]],[[2213]],[[2214]],[[2215]],[[2216]],[[2217]],[[2218]],[[2219]],[[2220]],[[2221]],[[2222]],[[2223]],[[2224]],[[2225]],[[2226]],[[2227]],[[2228]],[[2229]],[[2230]],[[2231]],[[2232]],[[2233]],[[2234]],[[2235]],[[2236]],[[2237]],[[2238]],[[2239]],[[2240]],[[2241]],[[2242]],[[2243]],[[2244]],[[2245]],[[2246]],[[2247]],[[2248]],[[2249]],[[2250]],[[2251]],[[2252]],[[2253]],[[2254]],[[2255]],[[2256]],[[2257]],[[2258]],[[2259]],[[2260]],[[2261]],[[2262]],[[2263]],[[2264]],[[2265]],[[2266]],[[2267]],[[2268]],[[2269]],[[2270]],[[2271]],[[2272]],[[2273]],[[2274]],[[2275]],[[2276]],[[2277]],[[2278]],[[2279]],[[2280]],[[2281]],[[2282]],[[2283]],[[2284]],[[2285]],[[2286]],[[2287]],[[2288]],[[2289]],[[2290]],[[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]],[[2323]],[[2324]],[[2325]],[[2326]],[[2327]],[[2328]],[[2329]],[[2330]],[[2331]],[[2332]],[[2333]],[[2334]],[[2335]],[[2336]],[[2337]],[[2338]],[[2339]],[[2340]],[[2341]],[[2342]],[[2343]],[[2344]],[[2345]],[[2346]],[[2347]],[[2348]],[[2349]],[[2350]],[[2351]],[[2352]],[[2353]],[[2354]],[[2355]],[[2356]],[[2357]],[[2358]],[[2359]],[[2360]],[[2361]],[[2362]],[[2363]],[[2364]],[[2365]],[[2366]],[[2367]],[[2368]],[[2369]],[[2370]],[[2371]],[[2372]],[[2373]],[[2374]],[[2375]],[[2376]],[[2377]],[[2378]],[[2379]],[[2380]],[[2381]],[[2382]],[[2383]],[[2384]],[[2385]],[[2386]],[[2387]],[[2388]],[[2389]],[[2390]],[[2391]],[[2392]],[[2393]],[[2394]],[[2395]],[[2396]],[[2397]],[[-2399]],[[2399]],[[2400]],[[2401]],[[2402]],[[2403]],[[2404]],[[2405]],[[2406]],[[2407]],[[2408]],[[2409]],[[2410]],[[2411]],[[2412]],[[2413]],[[2414]],[[2415]],[[2416]],[[2417]],[[2418]],[[2419]],[[2420]],[[2421]],[[2422]],[[2423]],[[2424]],[[2425]],[[2426]],[[2427]],[[2428]],[[2429]],[[2430]],[[2431]],[[2432]],[[2433]],[[2434]],[[2435]],[[2436]],[[2437]],[[2438]],[[2439]],[[2440]],[[2441]],[[2442]],[[2443]],[[2444]],[[2445]],[[2446]],[[2447]],[[2448]],[[2449]],[[2450]],[[2451]],[[2452]],[[2453]],[[2454]],[[2455]],[[2456]],[[2457]],[[2458]],[[2459]],[[2460]],[[2461]],[[2462]],[[2463]],[[2464]],[[2465]],[[2466]],[[2467]],[[2468]],[[2469]],[[2470]],[[2471]],[[2472]],[[2473]],[[2474]],[[2475]],[[2476]],[[2477]],[[2478]],[[2479]],[[2480]],[[2481]],[[2482]],[[2483]],[[2484]],[[2485]],[[2486]],[[2487]],[[2488]],[[2489]],[[2490]],[[2491]],[[2492]],[[2493]],[[2494]],[[2495]],[[2496]],[[2497]],[[2498]],[[2499]],[[2500]],[[2501]],[[2502]],[[2503]],[[2504]],[[2505]],[[2506]],[[2507]],[[-2509]],[[2509]],[[2510]],[[2511]],[[2512]],[[2513]],[[2514]],[[2515]],[[2516]],[[2517]],[[2518]],[[2519]],[[2520]],[[2521]],[[2522]],[[2523]],[[2524]],[[2525]],[[2526]],[[2527]],[[2528]],[[2529]],[[2530]],[[2531]],[[2532]],[[2533]],[[2534]],[[2535]],[[2536]],[[2537]],[[2538]],[[2539]],[[2540]],[[2541]],[[2542]],[[2543]],[[2544]],[[2545]],[[2546]],[[2547]],[[2548]],[[2549]],[[2550]],[[2551]],[[2552]],[[2553]],[[2554]],[[2555]],[[2556]],[[2557]],[[2558]],[[2559]],[[2560]],[[2561]],[[2562]],[[2563]],[[2564]],[[2565]],[[2566]],[[2567]],[[2568]],[[2569]],[[2570]],[[2571]],[[2572]],[[2573]],[[2574]],[[2575]],[[2576]],[[2577]],[[2578]],[[2579]],[[2580]],[[2581]],[[2582]],[[2583]],[[2584]],[[2585]],[[2586]],[[2587]],[[2588]],[[2589]],[[2590]],[[2591]],[[2592]],[[2593]],[[2594]],[[2595]],[[2596]],[[2597]],[[2598]],[[2599]],[[2600]],[[2601]],[[2602]],[[2603]],[[2604]],[[2605]],[[2606]],[[2607]],[[2608]],[[2609]],[[2610]],[[2611]],[[2612]],[[2613]],[[2614]],[[2615]],[[2616]],[[2617]],[[2618]],[[2619]],[[2620]],[[2621]],[[2622]],[[2623]],[[2624]],[[2625]],[[2626]],[[2627]],[[2628]],[[2629]],[[2630]],[[2631]],[[2632]],[[2633]],[[2634]],[[2635]],[[2636]],[[2637]],[[2638]],[[2639]],[[2640]],[[2641]],[[2642]],[[2643]],[[2644]],[[2645]],[[2646]],[[2647]],[[2648]],[[2649]],[[2650]],[[2651]],[[2652]],[[2653]],[[2654]],[[2655]],[[2656]],[[2657]],[[2658]],[[-2660]],[[2660]],[[2661]],[[2662]],[[2663]],[[2664]],[[2665]],[[2666]],[[2667]],[[2668]],[[2669]],[[2670]],[[2671]],[[2672]],[[2673]],[[2674]],[[2675]],[[-2677]],[[2677]],[[2678]],[[2679]],[[2680]],[[2681]],[[2682]],[[2683]],[[2684]],[[2685]],[[2686]],[[2687]],[[2688]],[[2689]],[[2690]],[[2691]],[[2692]],[[2693]],[[-2695]],[[2695]],[[2696]],[[2697]],[[2698]],[[2699]],[[2700]],[[2701]],[[2702]],[[2703]],[[2704]],[[2705]],[[2706]],[[2707]],[[2708]],[[2709]],[[2710]],[[2711]],[[2712]],[[2713]],[[2714]],[[2715]],[[2716]],[[2717]],[[2718]],[[2719]],[[2720]],[[2721]],[[2722]],[[2723]],[[2724]],[[2725]],[[2726]],[[2727]],[[2728]],[[2729]],[[2730]],[[2731]],[[2732]],[[2733]],[[2734]],[[2735]],[[2736]],[[2737]],[[2738]],[[2739]],[[2740]],[[2741]],[[2742]],[[-2744]],[[2744]],[[2745]],[[2746]],[[2747]],[[2748]],[[2749]],[[2750]],[[2751]],[[2752]],[[2753]],[[-2755]],[[2755]],[[-2757]],[[2757]],[[2758]],[[2759]],[[2760]],[[2761]],[[2762]],[[2763]],[[2764]],[[-2766]],[[2766]],[[2767]],[[2768]],[[2769]],[[2770]],[[2771]],[[2772]],[[2773]],[[2774]],[[2775]],[[2776]],[[2777]],[[2778]],[[2779]],[[2780]],[[2781]],[[2782]],[[2783]],[[2784]],[[2785]],[[2786]],[[2787]],[[2788]],[[2789]],[[2790]],[[2791]],[[2792]],[[2793]],[[2794]],[[2795]],[[2796]],[[2797]],[[2798]],[[2799]],[[2800]],[[-2802]],[[2802]],[[2803]],[[2804]],[[2805]],[[2806]],[[2807]],[[2808]],[[2809]],[[2810]],[[2811]],[[-2813]],[[2813]],[[2814]],[[2815]],[[2816]],[[2817]],[[2818]],[[2819]],[[2820]],[[-2822]],[[2822]],[[2823]],[[2824]],[[2825]],[[2826]],[[2827]],[[2828]],[[2829]],[[2830]],[[2831]],[[2832]],[[2833]],[[2834]],[[2835]],[[2836]],[[2837]],[[2838]],[[-2840]],[[2840]],[[2841]],[[2842]],[[2843]],[[2844]],[[2845]],[[2846]],[[2847]],[[2848]],[[2849]],[[2850]],[[2851]],[[2852]],[[2853]],[[2854]],[[2855]],[[2856]],[[2857]],[[2858]],[[2859]],[[2860]],[[-2862]],[[2862]],[[2863]],[[2864]],[[2865]],[[2866]],[[2867]],[[2868]],[[2869]],[[2870]],[[2871]],[[2872]],[[2873]],[[2874]],[[2875]],[[2876]],[[2877]],[[2878]],[[-2880]],[[2880]],[[2881]],[[2882]],[[2883]],[[2884]],[[-2886]],[[2886]],[[2887]],[[2888]],[[2889]],[[2890]],[[2891]],[[2892]],[[2893]],[[2894]],[[2895]],[[2896]],[[2897]],[[2898]],[[2899]],[[2900]],[[2901]],[[2902]],[[-2904]],[[2904]],[[2905]],[[2906]],[[2907]],[[2908]],[[2909]],[[2910]],[[2911]],[[2912]],[[2913]],[[2914]],[[2915]],[[2916]],[[-2918]],[[2918]],[[2919]],[[2920]],[[2921]],[[2922]],[[2923]],[[2924]],[[2925]],[[2926]],[[2927]],[[2928]],[[2929]],[[-2931]],[[2931]],[[2932]],[[2933]],[[2934]],[[2935]],[[2936]],[[2937]],[[2938]],[[2939]],[[2940]],[[2941]],[[2942]],[[2943]],[[2944]],[[2945]],[[2946]],[[2947]],[[-2949]],[[-2950]],[[2950]],[[2951]],[[2952]],[[-2954]],[[2954]],[[2955]],[[2956]],[[2957]],[[2958]],[[2959]],[[2960]],[[2961]],[[2962]],[[2963]],[[2964]],[[2965]],[[2966]],[[2967]],[[2968]],[[2969]],[[-2971]],[[-2972]],[[2972]],[[2973]],[[2974]],[[2975]],[[2976]],[[2977]],[[2978]],[[2979]],[[2980]],[[2981]],[[2982]],[[2983]],[[2984]],[[2985]],[[2986]],[[2987]],[[2988]],[[2989]],[[2990]],[[2991]],[[2992]],[[2993]],[[2994]],[[-2996]],[[2996]],[[2997]],[[2998]],[[2999]],[[3000]],[[3001]],[[3002]],[[3003]],[[3004]],[[3005]],[[3006]],[[3007]],[[3008]],[[3009]],[[3010]],[[3011]],[[3012]],[[3013]],[[3014]]]},{"type":"MultiPolygon","properties":{"nuts_id":"PL","name":"Poland","population":38062535},"id":"PL","arcs":[[[-1835,3015,3016,-32,-37,3017]],[[3018]],[[-43,3019]],[[3020]],[[3021]],[[3022]],[[3023]],[[3024]],[[3025]]]},{"type":"MultiPolygon","properties":{"nuts_id":"PT","name":"Portugal","population":10487289},"id":"PT","arcs":[[[3026,-492]],[[3027]],[[3028]],[[3029]],[[3030]],[[3031]],[[3032]],[[3033]],[[3034]],[[3035]],[[3036]],[[3037]],[[3038]],[[3039]],[[3040]],[[3041]],[[3042]],[[3043]],[[3044]]]},{"type":"MultiPolygon","properties":{"nuts_id":"RO","name":"Romania","population":20020074},"id":"RO","arcs":[[[-24,3045,-1627,3046]],[[3047]]]},{"type":"MultiPolygon","properties":{"nuts_id":"SE","name":"Sweden","population":9555893},"id":"SE","arcs":[[[3048,-1858,-533]],[[3049]],[[3050]],[[3051]],[[3052]],[[3053]],[[3054]],[[3055]],[[3056]],[[3057]],[[3058]],[[3059]],[[3060]],[[3061]],[[3062]],[[3063]],[[3064]],[[3065]],[[3066]],[[3067]],[[3068]],[[3069]],[[3070]],[[3071]],[[3072]],[[3073]],[[3074]],[[3075]],[[3076]],[[3077]],[[3078]],[[3079]],[[3080]],[[3081]],[[3082]],[[3083]],[[3084]],[[3085]],[[3086]],[[3087]],[[3088]],[[3089]],[[3090]],[[3091]],[[3092]],[[3093]],[[3094]],[[3095]],[[3096]],[[3097]],[[3098]],[[3099]],[[3100]],[[3101]],[[3102]],[[3103]],[[3104]],[[3105]],[[3106]],[[3107]],[[3108]],[[3109]],[[3110]],[[3111]],[[3112]],[[3113]],[[3114]],[[3115]],[[3116]],[[3117]],[[3118]],[[3119]],[[3120]],[[3121]],[[3122]],[[3123]],[[3124]],[[3125]],[[3126]],[[3127]],[[3128]],[[3129]],[[3130]],[[3131]],[[3132]],[[3133]],[[3134]],[[3135]],[[3136]],[[3137]],[[3138]],[[3139]],[[3140]],[[3141]],[[3142]],[[3143]],[[3144]],[[3145]],[[3146]],[[3147]],[[3148]],[[3149]],[[3150]],[[3151]],[[3152]],[[3153]],[[3154]],[[3155]],[[3156]],[[3157]],[[3158]],[[3159]],[[3160]],[[3161]],[[3162]],[[3163]],[[3164]],[[3165]],[[3166]],[[3167]],[[3168]],[[3169]],[[3170]],[[3171]],[[3172]],[[3173]],[[3174]],[[3175]],[[3176]],[[3177]],[[3178]],[[3179]],[[3180]],[[3181]],[[3182]],[[3183]],[[3184]],[[3185]],[[3186]],[[3187]],[[3188]],[[3189]],[[3190]],[[3191]],[[3192]],[[3193]],[[3194]],[[3195]],[[3196]],[[3197]],[[3198]],[[3199]],[[3200]],[[3201]],[[3202]],[[3203]],[[3204]],[[3205]],[[3206]],[[3207]],[[3208]],[[3209]],[[3210]],[[3211]],[[3212]],[[3213]],[[3214]],[[3215]],[[3216]],[[3217]],[[3218]],[[3219]],[[3220]],[[3221]],[[3222]],[[3223]],[[3224]],[[3225]],[[3226]],[[3227]],[[3228]],[[3229]],[[3230]],[[3231]],[[3232]],[[3233]],[[3234]],[[3235]],[[3236]],[[3237]],[[3238]],[[3239]],[[3240]],[[3241]],[[3242]],[[3243]],[[3244]],[[3245]],[[3246]],[[3247]],[[3248]],[[3249]],[[3250]],[[3251]],[[3252]],[[3253]],[[3254]],[[3255]],[[3256]],[[3257]],[[3258]],[[3259]],[[3260]],[[3261]],[[3262]],[[3263]],[[3264]],[[3265]],[[3266]],[[3267]],[[3268]],[[3269]],[[3270]],[[3271]],[[3272]],[[3273]],[[3274]],[[3275]],[[3276]],[[3277]],[[3278]],[[3279]],[[3280]],[[3281]],[[3282]],[[3283]],[[3284]],[[3285]],[[3286]],[[3287]],[[3288]],[[3289]],[[3290]],[[3291]],[[3292]],[[3293]],[[3294]],[[3295]],[[3296]],[[3297]],[[3298]],[[3299]],[[3300]],[[3301]],[[3302]],[[3303]],[[3304]],[[3305]],[[3306]],[[3307]],[[3308]],[[3309]],[[3310]],[[3311]],[[3312]],[[3313]],[[3314]],[[3315]],[[3316]],[[3317]],[[3318]],[[3319]],[[3320]],[[3321]],[[3322]],[[3323]],[[3324]],[[3325]],[[3326]],[[3327]],[[3328]],[[3329]],[[3330]],[[3331]],[[3332]],[[3333]],[[3334]],[[3335]],[[3336]],[[3337]],[[3338]],[[3339]],[[3340]],[[3341]],[[3342]],[[3343]],[[3344]],[[3345]],[[3346]],[[3347]],[[3348]],[[3349]],[[3350]],[[3351]],[[3352]],[[3353]],[[3354]],[[3355]],[[3356]],[[3357]],[[3358]],[[3359]],[[3360]],[[3361]],[[3362]],[[3363]],[[3364]],[[3365]],[[3366]],[[3367]],[[3368]],[[3369]],[[3370]],[[3371]],[[3372]],[[3373]],[[3374]],[[3375]],[[3376]],[[3377]],[[3378]],[[3379]],[[3380]],[[3381]],[[3382]],[[3383]],[[3384]],[[3385]],[[3386]],[[3387]],[[3388]],[[3389]],[[-3391]],[[3391]],[[3392]],[[3393]],[[3394]],[[3395]],[[3396]],[[3397]],[[3398]],[[3399]],[[3400]],[[3401]],[[3402]],[[3403]],[[3404]],[[3405]],[[3406]],[[3407]],[[3408]],[[3409]],[[3410]],[[3411]],[[3412]],[[3413]],[[3414]],[[3415]],[[3416]],[[3417]],[[3418]],[[3419]],[[3420]],[[3421]],[[3422]],[[3423]],[[3424]],[[3425]],[[3426]],[[3427]],[[3428]],[[3429]],[[3430]],[[3431]],[[3432]],[[3433]],[[3434]],[[3435]],[[3436]],[[3437]],[[3438]],[[3439]],[[3440]],[[3441]],[[3442]],[[3443]],[[3444]],[[3445]],[[3446]],[[3447]],[[3448]],[[3449]],[[3450]],[[3451]],[[3452]],[[3453]],[[3454]],[[3455]],[[3456]],[[3457]],[[3458]],[[3459]],[[3460]],[[3461]],[[3462]],[[3463]],[[3464]],[[3465]],[[3466]],[[3467]],[[3468]],[[3469]],[[3470]],[[3471]],[[3472]],[[3473]],[[3474]],[[3475]],[[3476]],[[3477]],[[3478]],[[3479]],[[3480]],[[3481]],[[3482]],[[3483]],[[3484]],[[3485]],[[3486]],[[3487]],[[3488]],[[3489]],[[3490]],[[3491]],[[3492]],[[3493]],[[3494]],[[3495]],[[3496]],[[3497]],[[3498]],[[3499]],[[3500]],[[3501]],[[3502]],[[3503]],[[3504]],[[3505]],[[3506]],[[3507]],[[3508]],[[3509]],[[3510]],[[3511]],[[3512]],[[3513]],[[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]],[[3560]],[[3561]],[[3562]],[[3563]],[[3564]],[[3565]],[[3566]],[[3567]],[[3568]],[[3569]],[[3570]],[[3571]],[[-3573]],[[3573]],[[3574]],[[3575]],[[3576]],[[3577]],[[3578]],[[3579]],[[3580]],[[3581]],[[3582]],[[3583]],[[3584]],[[3585]],[[3586]],[[3587]],[[3588]],[[3589]],[[3590]],[[3591]],[[3592]],[[3593]],[[3594]],[[3595]],[[3596]],[[3597]],[[3598]],[[3599]],[[3600]],[[3601]],[[3602]],[[3603]],[[3604]],[[3605]],[[3606]],[[3607]],[[3608]],[[3609]],[[3610]],[[3611]],[[3612]],[[-3614]],[[3614]],[[3615]],[[3616]],[[3617]],[[3618]],[[3619]],[[3620]],[[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]],[[-3648]],[[3648]],[[3649]],[[3650]],[[3651]],[[3652]],[[3653]],[[3654]],[[-3656]],[[3656]],[[3657]],[[3658]],[[3659]],[[3660]],[[3661]],[[3662]],[[3663]],[[3664]],[[3665]],[[3666]],[[3667]],[[3668]],[[3669]],[[3670]],[[-3672]],[[3672]],[[3673]],[[3674]],[[3675]],[[3676]],[[3677]],[[3678]],[[3679]],[[3680]],[[3681]],[[3682]],[[3683]],[[3684]],[[3685]],[[3686]],[[3687]],[[3688]],[[3689]],[[3690]],[[3691]],[[3692]],[[3693]],[[3694]],[[3695]],[[3696]],[[3697]],[[3698]],[[3699]],[[3700]],[[3701]],[[3702]],[[3703]],[[3704]],[[3705]],[[3706]],[[-3708]],[[3708]],[[3709]],[[3710]],[[3711]],[[3712]],[[3713]],[[3714]],[[3715]],[[3716]],[[3717]],[[3718]],[[3719]],[[3720]],[[3721]],[[3722]],[[3723]],[[3724]],[[3725]],[[3726]],[[3727]],[[3728]],[[3729]],[[3730]],[[3731]],[[3732]],[[3733]],[[3734]],[[3735]],[[3736]],[[3737]],[[3738]],[[3739]],[[3740]],[[3741]],[[3742]],[[3743]],[[3744]],[[3745]],[[-3747]],[[3747]],[[3748]],[[3749]],[[3750]],[[3751]],[[3752]],[[3753]],[[3754]],[[3755]],[[3756]],[[3757]],[[3758]],[[3759]],[[3760]],[[-3762]],[[3762]],[[3763]],[[3764]],[[3765]],[[3766]],[[3767]],[[3768]],[[3769]],[[3770]],[[3771]],[[3772]],[[-3774]],[[3774]],[[3775]],[[3776]],[[-3778]],[[3778]],[[3779]],[[3780]],[[3781]],[[3782]],[[3783]],[[3784]],[[3785]],[[3786]],[[3787]],[[3788]],[[3789]],[[3790]],[[3791]],[[3792]],[[3793]],[[3794]],[[3795]],[[3796]],[[3797]],[[3798]],[[3799]],[[3800]],[[3801]],[[-3803]],[[3803]],[[3804]],[[3805]],[[3806]],[[3807]],[[3808]],[[3809]],[[3810]],[[3811]],[[3812]],[[3813]],[[-3815]],[[3815]],[[3816]],[[3817]],[[-3819]],[[3819]],[[3820]],[[3821]],[[3822]],[[3823]],[[3824]],[[3825]],[[3826]],[[3827]],[[3828]],[[3829]],[[3830]],[[3831]],[[3832]],[[-3834]],[[3834]],[[3835]],[[3836]],[[3837]],[[3838]],[[3839]],[[3840]],[[3841]],[[3842]],[[3843]],[[3844]],[[3845]],[[3846]],[[3847]],[[3848]],[[3849]],[[-3851]],[[3851]],[[3852]],[[3853]],[[3854]],[[3855]],[[3856]],[[3857]],[[3858]],[[3859]]]},{"type":"Polygon","properties":{"nuts_id":"SI","name":"Slovenia","population":2058821},"id":"SI","arcs":[[-1508,3860,-1763,-3,-1629]]},{"type":"Polygon","properties":{"nuts_id":"SK","name":"Slovakia","population":5410836},"id":"SK","arcs":[[3861,-1630,-1,-33,-3017]]},{"type":"MultiPolygon","properties":{"nuts_id":"TR","name":"Turkey","population":75627384},"id":"TR","arcs":[[[3862]],[[3863,-225,-20]],[[3864]],[[3865]],[[3866]],[[3867]],[[3868]],[[3869]],[[3870]],[[3871]],[[3872]],[[3873]],[[3874]],[[3875]],[[3876]],[[3877]],[[3878]],[[3879]],[[3880]],[[3881]],[[3882]],[[3883]],[[3884]],[[3885]],[[3886]],[[3887]],[[3888]],[[3889]],[[3890]],[[3891]],[[3892]],[[3893]],[[3894]],[[3895]],[[3896]],[[3897]],[[3898]],[[3899]],[[3900]]]},{"type":"MultiPolygon","properties":{"nuts_id":"UK","name":"United Kingdom","population":63905297},"id":"UK","arcs":[[[3901]],[[-1631,3902]],[[3903]],[[3904]],[[3905]],[[3906]],[[3907]],[[3908]],[[3909]],[[3910]],[[3911]],[[3912]],[[3913]],[[3914]],[[3915]],[[3916]],[[3917]],[[3918]],[[3919]],[[3920]],[[3921]],[[3922]],[[3923]],[[3924]],[[3925]],[[3926]],[[3927]],[[3928]],[[3929]],[[3930]],[[3931]],[[3932]],[[3933]],[[3934]],[[3935]],[[3936]],[[3937]],[[3938]],[[3939]],[[3940]],[[3941]],[[3942]],[[3943]],[[3944]],[[3945]],[[3946]],[[3947]],[[3948]],[[3949]],[[3950]],[[3951]],[[3952]],[[3953]],[[3954]],[[3955]],[[3956]],[[3957]],[[3958]],[[3959]],[[3960]],[[3961]],[[3962]],[[3963]],[[3964]],[[3965]],[[3966]],[[3967]],[[3968]],[[3969]],[[3970]],[[3971]],[[3972]],[[3973]],[[3974]],[[3975]],[[3976]],[[3977]],[[3978]],[[3979]],[[3980]],[[3981]],[[3982]],[[3983]],[[3984]],[[3985]],[[3986]],[[3987]],[[3988]],[[3989]],[[3990]],[[3991]],[[3992]],[[3993]],[[3994]],[[3995]],[[3996]],[[3997]],[[3998]],[[3999]],[[4000]],[[4001]],[[4002]],[[4003]],[[4004]],[[4005]],[[4006]],[[4007]],[[4008]],[[4009]],[[4010]],[[4011]],[[4012]],[[4013]],[[4014]],[[4015]],[[4016]],[[4017]],[[4018]],[[4019]],[[4020]],[[4021]],[[4022]],[[4023]],[[4024]],[[4025]],[[4026]],[[4027]],[[4028]],[[4029]],[[4030]],[[4031]],[[4032]],[[4033]],[[4034]],[[4035]],[[4036]],[[4037]],[[4038]],[[4039]],[[4040]],[[4041]],[[4042]],[[4043]],[[4044]],[[4045]],[[4046]],[[4047]],[[4048]],[[4049]],[[4050]],[[4051]],[[4052]],[[4053]],[[4054]],[[4055]],[[4056]],[[4057]],[[4058]],[[4059]],[[4060]],[[4061]],[[4062]],[[4063]],[[4064]],[[4065]],[[4066]],[[4067]],[[4068]],[[4069]],[[4070]],[[4071]],[[4072]],[[4073]],[[4074]],[[4075]],[[4076]],[[4077]],[[4078]],[[4079]],[[4080]],[[4081]],[[4082]],[[4083]],[[4084]],[[4085]],[[4086]],[[4087]],[[4088]],[[4089]],[[4090]],[[4091]],[[4092]],[[4093]],[[4094]],[[4095]],[[4096]],[[4097]],[[4098]],[[4099]],[[4100]],[[4101]],[[4102]],[[4103]],[[4104]],[[4105]],[[4106]],[[4107]],[[4108]],[[4109]],[[4110]],[[4111]],[[4112]],[[4113]],[[4114]],[[4115]],[[4116]],[[4117]],[[4118]],[[4119]],[[4120]],[[4121]],[[4122]],[[-4124]],[[4124]],[[4125]],[[4126]],[[4127]],[[4128]],[[-4130]],[[4130]],[[4131]],[[4132]],[[4133]],[[4134]],[[4135]],[[4136]],[[4137]],[[4138]],[[4139]],[[4140]],[[4141]],[[4142]],[[4143]],[[4144]]]}]}},"arcs":[[[6730,7561],[1,-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],[-2,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[0,1],[-1,-1],[-1,0],[1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[1,-2],[0,-1],[3,-1],[-1,0],[1,-1],[3,-1],[-1,-1],[0,-1],[0,-1],[2,-2],[0,-1],[1,0],[1,0],[1,-1],[-1,-1],[0,-2],[1,-1],[0,-1],[2,-3],[-1,-2],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[2,0],[1,-2],[0,-1],[1,-1],[1,-1],[-1,-1],[-1,-1],[1,-1],[1,0],[-2,-1],[2,-1],[-2,-2],[1,0],[1,-1],[2,1],[1,-1],[1,0],[1,0],[1,-2]],[[6749,7495],[-6,-3],[2,-2],[-2,-2],[2,-1],[-1,-2],[0,-1],[-1,-3],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[4,-2],[0,-1],[-1,0],[1,-1],[2,-1],[-2,-2],[1,-1],[0,-1],[0,-2],[0,-3],[2,-2],[-2,0],[-2,0],[-3,-1],[-4,0],[-4,-1],[-3,0],[-1,4],[-1,-2],[-1,0],[-1,-3],[-7,0],[0,2],[-2,3],[0,1],[-4,1],[-1,0],[-2,1],[0,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-2,-1],[-2,0],[1,-1],[-1,0],[0,-1],[1,-1],[-2,-1],[-1,0],[0,-1],[-2,0],[-1,-2],[-1,-1],[-1,1],[0,1],[-1,0],[0,-2],[-2,-1],[0,-1],[2,0],[1,-1],[2,0],[0,-1],[1,0],[1,0],[1,0],[3,-1],[2,-1],[1,-1],[3,1],[1,1],[1,-1],[1,-2],[1,0],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[-2,-1],[-1,-1],[-1,1],[-1,-1],[2,-3],[-1,-1],[0,-1],[-1,-1],[-2,-1],[0,-1],[-1,0],[-2,-1],[-1,0],[0,-1],[-3,-1],[0,1],[-2,0],[-1,-1],[-1,-1],[-1,1],[1,0],[-1,1],[-2,0],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[1,-1],[1,-1],[1,-2],[1,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,-2],[-1,0],[0,-2],[0,-1],[-1,0],[-1,0],[1,-1],[0,-1],[2,0],[1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[2,1],[2,0],[0,-1],[1,0],[0,-2],[-3,0],[1,-1],[-2,-1],[-2,-1],[1,-2],[1,0],[0,-1],[1,0],[1,0],[1,-1],[-1,-1],[-3,0],[-2,-1],[-1,0],[0,-1],[1,-1],[1,1],[1,0],[1,-1],[1,-1],[1,-1],[-1,0],[-1,-1],[-3,1],[0,-1],[-2,0],[-1,1],[-2,0],[-1,0],[-2,1],[-1,-1],[0,-1],[-1,1],[-2,0],[-1,1],[-1,-1],[0,-2],[0,-2],[-1,-1],[-1,1],[-1,-1],[-1,-1],[0,-1],[0,1],[-1,-1],[-1,0],[-1,0],[-2,-3],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-2,0]],[[6661,7373],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[1,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,0],[0,2],[-2,1],[-2,0],[-1,0],[-1,1],[-1,1],[-2,1],[-2,0],[-3,1],[-2,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-2,0],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-2,0],[-1,1],[-1,1],[-1,-1],[-1,1],[0,-1],[-2,1],[-1,-1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,-1],[-1,1],[-2,0],[-2,-1],[-2,-2],[0,-1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,-1],[-1,1],[0,-1],[0,-1],[-3,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-3,-1],[-2,0],[-1,-1],[0,1],[-1,-1],[-1,0],[-1,1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-2,0],[-4,-1],[0,-1],[-1,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[-1,1],[0,1],[-1,2],[-2,2],[-1,-1],[-1,-1],[-1,0],[-1,1],[-2,0],[0,1],[-1,1],[0,1],[-1,0],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[0,1],[-2,1],[-2,-1],[-2,-1],[-1,1],[0,1],[-1,-1],[-2,1],[-1,-1],[-2,0],[0,1],[-1,0],[0,1],[-1,2],[-1,0],[-1,0],[0,1],[-1,0],[-3,1],[-1,0],[-2,-1],[-1,0],[-3,1],[-2,2],[-2,0],[0,1],[-1,0],[-1,0],[-2,0],[-2,-1],[-2,1],[0,-1],[-1,-1],[-2,0],[-1,1],[-2,1],[-2,0],[-1,0],[-1,0]],[[6459,7335],[-3,0],[-4,2],[-3,1],[-1,-1],[-1,0],[0,1],[-2,0],[-2,0],[-1,2],[-2,-1],[-1,0],[-4,0],[-1,0],[0,1],[-2,1],[-1,0],[-1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-2,-2],[-1,0],[-1,1],[-2,0],[-1,0],[-2,-1],[0,1],[-1,1],[-1,0],[-1,0],[-2,1],[0,1],[-2,0],[-3,1],[-1,0],[-1,1],[-2,-1],[-1,0],[-2,0],[-1,1],[-1,-1],[-1,1],[-1,-1],[-2,1],[-1,0],[-2,1],[-3,-1],[-2,1],[-1,-1],[-1,0],[-1,1],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-2,0],[-1,-1],[-1,-1],[-1,2],[-2,0],[-1,1],[-2,0],[-2,-1],[-1,1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-2,0],[-1,0],[-1,0],[0,1],[-3,0],[-1,1],[-1,0],[-2,2],[-1,1],[-1,2],[0,2],[-1,1],[-2,1],[-1,0],[-3,0],[0,1],[0,1],[1,0],[-1,2],[1,0],[1,2],[0,1],[-1,0],[0,1],[0,1],[-2,1],[1,1],[-1,0],[-2,1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,2],[-1,2],[-1,0],[-1,0],[-2,0],[1,1],[1,1],[0,1],[0,1],[-2,1],[-1,1],[1,0],[0,1],[-1,3],[0,1],[2,1],[1,0],[1,0],[3,1],[1,2],[0,1],[1,1],[1,0],[-1,1],[-1,1],[-3,1],[-3,-2],[-1,0],[-2,0],[-2,0],[-1,-1],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-3,0],[-2,0],[-1,-1],[0,-1],[-2,-1],[-2,1],[0,1],[-1,1],[-2,0],[-2,0],[-2,1],[-1,1],[-3,-1],[-1,0],[0,-1],[-3,-1],[-1,0],[0,1],[-1,1],[-1,0],[-2,1],[-1,-1],[0,-1],[-2,0],[0,-1],[0,-1],[-1,0],[-2,-1],[-1,0],[-2,1],[-2,2],[-1,0],[0,-1],[-2,1],[-1,-1],[-2,0],[-2,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[0,-2],[0,-1],[-2,-1],[-2,0],[-1,0],[-1,-2],[1,-1],[0,-1],[-1,-1],[-2,-3],[1,-2],[0,-2],[-2,-1],[-1,0],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,1],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-2,2],[-1,1],[0,-1],[-2,-1],[-2,1],[-1,1],[2,0],[0,2],[1,1],[0,1],[-3,0],[-2,1],[0,1],[-1,0],[1,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[0,1],[-3,0],[-2,0],[-2,1]],[[6187,7371],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,2],[1,1],[0,1],[0,1],[-1,0],[-1,1],[-2,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,-1],[-2,0],[-2,-3],[0,-1],[-2,-1],[0,-1],[1,-1],[-1,0],[-1,-1],[-3,1],[-1,0],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[-3,0],[-1,-1],[-3,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-3,0],[0,1],[-2,1],[-1,1],[0,1],[-1,0],[-2,0],[-1,2],[-1,-1],[0,1],[-2,-1],[-2,1],[0,1],[-1,0],[-1,0],[-1,1],[0,2],[-1,1],[1,1],[1,1],[0,2],[-1,0],[-1,1],[1,1],[-1,0],[-1,-1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,1],[-3,0],[-3,1],[-2,1],[-1,0],[-1,0],[-2,0],[0,-1],[-2,0],[-1,1]],[[6114,7393],[1,1],[0,1],[1,1],[1,1],[0,1],[-1,0],[-1,1],[1,0],[1,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,2],[1,1],[0,1],[-1,1],[-1,1],[0,1],[1,1],[-1,1],[-2,1],[0,1]],[[6108,7416],[1,1],[1,2],[1,1],[1,0],[1,1],[0,2],[1,1],[1,2],[1,0],[2,0],[1,1],[1,0],[0,1],[0,1],[-1,1],[-1,0],[0,2],[-1,2],[1,1],[1,0],[-1,1],[-2,0],[-2,2],[0,-1],[-1,0],[-1,2],[-2,2],[0,4]],[[6110,7445],[1,0],[3,-1],[2,0],[1,0],[2,-1],[1,0],[5,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[3,0],[1,-1],[1,-1],[0,-2],[-1,-1],[1,0],[2,-1],[0,-1],[2,0],[0,1],[0,1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[2,-1],[0,1],[1,1],[-1,-3],[3,-2],[-1,0],[1,-2],[1,0],[3,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[-2,-1],[2,-1],[-1,-1],[1,-3],[1,-1],[1,2],[2,-1],[2,1],[0,1],[2,1],[2,-1],[1,1],[1,-1],[0,-1],[-2,-2],[-1,-2],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[-1,1],[0,-1],[0,-1],[0,-1],[2,1],[2,-1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[2,1],[1,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[1,2],[3,2],[0,2],[1,0],[1,0],[1,1],[1,0],[-1,1],[1,2],[2,1],[0,1],[1,0],[0,2],[-1,1],[1,2],[-1,1],[-2,0],[0,1],[-1,1],[1,1],[0,1],[1,4],[0,1],[-1,0],[-1,1],[1,1],[2,0],[1,0],[1,0],[-1,-2],[-2,-1],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[3,1],[1,0],[0,-1],[1,2],[0,1],[1,0],[1,1],[1,0],[1,-1],[1,0],[3,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[-1,0],[2,-1],[1,1],[1,0],[1,1],[1,0],[1,-1],[1,1],[3,1],[0,-1],[1,-1],[1,0],[0,-1],[-4,-1],[0,-2],[2,0],[2,0],[2,0],[-1,-1],[1,-1],[2,-2],[2,-2],[0,-1],[-1,0],[0,-1],[0,-1],[2,-1],[2,1],[0,-1],[1,0],[1,0],[1,0],[5,0],[1,1],[0,1],[3,1],[3,1],[1,1],[0,-1],[1,0],[2,0],[1,0],[-2,-1],[0,-1],[-1,-1],[0,-1],[1,1],[3,0],[1,0],[1,1],[0,1],[0,1],[2,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[4,0],[-1,1],[0,1],[-2,0],[0,1],[0,1],[1,1],[1,0],[1,1],[1,2],[1,-2],[3,1],[2,-1],[1,1],[1,0],[3,0],[2,1],[0,2],[0,2],[1,1],[0,2],[2,0],[0,1],[1,0],[2,-1],[2,0],[1,0],[4,0],[2,0],[6,-1],[0,1],[1,2],[3,0],[1,0],[1,1],[2,0],[3,0],[1,1],[2,0],[1,-1],[1,0],[2,0],[0,1],[2,-1],[3,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[0,-1],[3,1],[-1,2],[0,1],[-1,2],[0,1],[-1,1],[-1,1],[0,1],[2,0],[1,1],[1,0],[1,1],[2,3],[1,0],[1,-1],[-2,-3],[0,-1],[0,-1],[1,-1],[2,1],[4,1],[1,0],[0,-1],[1,0],[1,0],[4,1],[1,0],[2,-1],[-1,-1],[0,-1],[2,-2],[3,-2],[0,-1],[1,0],[1,1],[1,0],[3,0],[1,0],[0,2],[2,2],[1,0],[3,0],[1,1],[2,0],[1,0],[1,0],[2,0],[1,0],[1,-2],[1,1],[1,1],[0,-1],[0,-1],[-2,-1],[2,-2],[1,0],[0,-1],[3,-1],[-1,0],[-1,0],[-1,-2],[-1,-2],[0,-1],[1,0],[0,-1],[1,-1],[2,0],[2,0],[0,-2],[2,-1],[1,0],[0,-1],[2,-2],[2,-1],[3,-1],[0,1],[1,-1],[1,0],[1,-1],[1,1],[1,1],[1,1],[0,2],[0,1],[-1,1],[1,2],[1,2],[-1,1],[0,1],[2,0],[0,2],[2,3],[1,0],[-1,1],[0,1],[-1,1],[0,1],[0,2],[-1,1],[-2,1],[0,1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,1],[-2,-1],[-2,2],[1,1],[1,1],[1,0],[0,2],[1,0],[0,1],[-2,0],[1,1],[1,1],[1,1],[2,2],[0,2],[2,1],[-1,1],[-1,2],[-1,3],[-2,2],[-1,2],[0,1],[0,-1],[-1,0],[0,1],[-1,1],[-3,1],[-1,0],[0,3],[-1,2],[-2,2],[-2,1],[-4,4],[0,1],[-1,1],[0,2],[1,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[2,0],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,1],[6,0],[1,0],[3,3],[1,2],[1,1],[4,1],[1,1],[2,0],[2,0],[1,0],[3,1],[2,1],[1,0],[4,-1],[5,3],[2,2],[3,2],[2,2],[1,0],[0,1],[1,2],[0,1],[1,2],[0,1],[0,1],[-1,0],[0,1],[1,2],[1,1],[0,1],[1,2],[-1,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[1,-1],[1,0],[1,1],[0,-1],[0,1],[2,1],[0,1],[0,1],[2,-1],[2,-2],[1,-1],[1,0],[1,1],[1,0],[2,-1],[1,-1],[1,0],[1,-2],[1,0],[1,0],[2,-1],[1,-1],[1,1],[1,1],[0,1],[0,1],[1,2],[1,-1],[1,1],[2,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[1,-1],[1,1],[-2,0],[0,1],[-1,0],[-1,1],[1,1],[1,1],[0,2],[1,1],[1,1]],[[6470,7578],[3,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[2,0],[0,-1],[1,-1],[1,0],[-1,0],[1,-1],[2,-1],[0,-1],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[2,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[2,0],[2,-1],[2,1],[1,0],[1,-1],[1,1],[1,0],[3,-1],[1,0],[1,-1],[1,1],[1,-1],[1,0],[4,-2],[0,-1],[1,1],[1,2],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,2],[2,0],[2,-1],[1,2],[0,1],[1,1],[-1,2],[2,1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,1],[1,-1],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,1],[1,1],[0,-1],[1,-2],[2,1],[1,-2],[0,-1],[2,0],[1,0],[1,0],[0,1],[1,1],[-1,1],[1,3],[-1,1],[1,3],[0,1],[1,1],[2,1],[1,1],[1,0],[1,2],[1,0],[0,1],[1,2],[-1,1],[0,1],[2,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[2,-1],[2,0],[2,1],[0,1],[-2,1],[-1,0],[1,0],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,2],[1,2],[1,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,2],[1,1],[1,1],[0,1],[0,1],[1,0],[1,1],[2,-1],[1,0],[1,0],[0,-1],[3,-1],[1,1],[1,-1],[1,1],[2,-1],[0,-1],[0,-1],[1,-1],[-2,-2],[1,-1],[1,1],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,-1],[1,1],[0,-1],[1,1],[3,0],[2,-1],[0,-1],[4,-2],[1,0],[1,0],[1,0],[1,0],[2,-1],[0,-2],[3,-1],[1,-1],[2,-1],[1,0],[2,1],[0,-1],[1,-1],[1,0],[0,1],[1,-1],[3,-3],[1,0],[1,1],[4,-1],[2,2],[1,0],[3,0],[1,0],[1,-1],[-1,0],[1,-1],[1,0],[1,0],[0,1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,1],[0,-1],[2,0],[2,0],[-1,-1],[1,-1],[0,1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[2,-1],[2,-2],[5,-2],[1,-1],[2,-1],[1,0],[1,1],[0,-1],[2,0],[1,0],[0,1],[4,-1],[2,0],[4,-1],[0,1],[2,-1],[1,1],[1,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,-1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,1],[1,0],[1,4],[1,1],[2,-1],[3,0],[1,1],[1,1],[0,-1],[2,-2],[1,0],[1,-1],[3,0],[1,1],[1,0],[1,-1],[0,-1],[1,0],[1,-2],[-1,-1],[1,-2],[1,1],[2,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[0,1],[1,-1],[1,1],[1,0],[3,0],[0,1],[1,0],[-1,0],[1,-1],[1,0],[1,0],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1]],[[5813,7792],[2,-1],[-1,-1],[0,-1],[1,-1],[0,1],[1,0],[5,0],[1,-1],[-1,-1],[2,-2],[1,-1],[1,-1],[0,-1],[2,0],[-1,0],[-1,0],[2,-1],[1,1],[-1,-1],[-1,0],[-1,-1],[2,-1],[-1,-1],[1,1],[2,0],[2,-1],[1,0],[2,0],[0,1],[-1,1],[-1,0],[-2,1],[0,-1],[0,1],[2,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-2],[2,0],[0,-1],[-1,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[2,1],[2,0],[1,0],[1,-1],[1,1],[1,0],[0,-1],[1,0],[2,-1],[-1,0],[0,-2],[1,-1],[1,0],[1,0],[0,-2],[0,-1],[-1,-2],[-1,-2],[-1,-1],[1,-1],[2,-2],[2,-1],[0,-1],[0,-1],[-2,0],[-2,-1],[0,-1],[-2,1],[0,1],[-2,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[1,0],[-1,-1],[-1,-1],[-1,0],[-3,0],[-1,-1],[-1,-2],[-2,0],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[-2,0],[0,-1],[-1,0],[-1,1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[5823,7725],[-2,0],[0,1],[0,2],[-1,1],[-2,0],[0,-1],[-2,-1],[-1,1],[-1,0],[-1,2],[-2,0],[-2,0],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-2,-1],[-3,-1],[0,-1],[0,-1],[0,-2],[-2,0],[-1,-1],[0,-1],[1,-1],[-1,-2],[0,-1],[-3,-1],[0,-1],[0,-1],[1,0],[1,0],[-1,-1],[0,-1],[-2,0],[0,-1],[-1,0],[-2,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[4,-2],[0,-1],[-1,0],[-1,0],[-1,0],[1,-1],[0,-1],[-1,0],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-3],[1,0],[2,1],[1,-1],[2,-3],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[1,0],[2,0],[0,-1],[1,-1],[-2,-1],[0,-2],[2,-1],[2,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-2,0],[1,-1],[-1,0],[0,-2],[-3,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0]],[[5796,7662],[-2,0],[-2,2],[-1,-1],[0,-2],[-2,0],[0,1],[-2,-1],[-1,0],[-1,1],[-2,0],[0,1],[-3,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,1],[-2,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-3,-1],[-1,0],[-1,0],[0,-1],[-1,1],[0,1],[-1,1],[1,1],[0,1],[-2,1],[1,1],[0,1],[-1,0],[-1,2],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[0,-2],[-2,0],[-1,2],[1,2],[1,0],[-1,1],[-3,2],[0,1],[-1,1],[-1,0],[-2,-1],[-2,0],[-1,1],[0,-1],[-1,1],[-2,0],[0,2],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[1,1],[-1,1],[-2,3],[-1,0],[-2,0],[0,1],[-1,0],[-3,1],[0,1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[1,1],[0,3],[0,2],[-1,0],[0,1],[0,1],[1,3],[2,1],[0,1],[-1,1],[0,1],[-2,0],[-1,2],[-1,0],[-2,1],[-1,0],[-1,1],[1,2],[1,0],[1,1],[0,2],[0,2],[2,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[-1,0],[1,1],[1,-1],[1,-1],[1,1],[-1,1],[0,2],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-3,0],[-1,1],[0,1],[-1,-2],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,-2],[1,-1],[1,0],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-2,0],[-3,-1],[-3,0],[-2,0],[0,-1],[-2,-1],[-1,0],[-1,-2],[-1,0],[-3,0],[-2,-1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-3,0],[-1,1],[-1,0],[-1,0],[-2,0],[-2,0],[-2,-1],[-3,0],[-1,0],[1,1],[-2,1],[-2,0],[-1,0],[1,1],[1,1],[0,1],[-1,0],[-1,0],[-1,1],[1,1],[2,3],[1,0],[2,1],[2,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-4,0],[-2,0],[0,1],[1,1],[1,1],[0,1],[0,3],[0,-1],[1,2],[-1,0],[0,1],[1,0],[1,0],[0,2],[1,1],[1,0],[2,1],[-2,2],[-2,0],[0,1],[-1,1],[-1,-2],[1,0],[0,-1],[-2,-1],[-1,1],[1,0],[0,1],[-2,0],[1,2],[-1,1],[0,1],[-2,1],[-1,-1],[0,1],[-2,2],[-1,0],[-1,1],[-1,1],[-1,0],[1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[0,1],[-4,-2],[-1,-1],[-2,0],[1,0],[0,2],[-2,-1],[-1,1],[-1,1],[-2,0],[0,-1],[-1,0],[1,0],[-1,1],[-1,0],[-3,0],[0,-1],[-1,1],[-1,-1],[0,-1],[0,-3],[-1,0],[-1,1],[0,-1],[0,-1],[0,1],[-2,1],[0,1],[-1,1],[-1,2],[-1,1],[0,1],[1,1],[1,1],[0,2],[0,1],[-1,2],[-1,3],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-3,-1],[-1,0],[-1,0],[0,1],[1,1],[1,1],[-2,1],[-1,0],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-2,1],[-1,1],[-1,0],[-2,1],[0,3],[-1,0],[1,0],[-1,1],[1,1],[-1,1],[0,1],[0,1],[0,1],[-2,1],[1,1],[-1,0],[0,1],[0,1],[-1,2],[1,0],[1,1],[-1,1],[1,0],[0,1],[-1,1],[0,1],[-2,-1],[-1,1],[-2,1],[1,1],[-1,2],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-2,0],[-1,0],[0,1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,1],[-2,-1],[-1,0],[-3,-1],[-1,-1],[-1,0],[-2,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[-1,0],[0,-1],[-2,1],[-1,0],[-2,2],[-2,-1],[-1,0],[-2,1],[0,2],[0,1],[-2,0],[0,1],[0,1],[-1,0],[-1,1],[-1,2],[0,1],[-1,1],[-3,0],[-1,1],[0,-1],[-3,0],[0,2],[-1,1],[-2,0],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[1,1],[1,1],[1,1],[-1,2],[-1,1],[0,1],[0,1],[-1,0],[-2,1],[0,1],[0,4],[-1,1],[0,1],[-1,2]],[[5521,7828],[5,3],[4,2],[4,1],[4,2],[8,4],[6,4],[2,1],[4,2],[6,3],[1,1],[3,1],[4,2],[2,0],[-1,2],[0,1],[2,1],[1,0],[2,-1],[0,-2],[2,1],[4,1],[6,2]],[[5590,7859],[1,-1],[-1,-2],[1,0],[0,-1],[-2,-2],[1,-1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-2],[1,1],[1,-1],[0,-1],[4,0],[4,0],[-1,5],[1,0],[1,-1],[1,1],[1,0],[0,1],[2,-1],[0,1],[1,1],[2,-2],[2,0],[1,0],[2,-1],[1,0],[5,-1],[1,-1],[1,0],[2,-1],[-1,-1],[0,-2],[0,-1],[1,0],[1,-1],[0,1],[1,-1],[1,1],[2,0],[3,1],[0,-1],[-1,-1],[1,-1],[2,1],[0,1],[1,1],[1,-1],[2,0],[0,1],[1,0],[1,1],[2,1],[1,0],[3,0],[1,1],[8,4],[6,6]],[[5663,7856],[0,1],[-1,1],[-1,1],[3,0]],[[5664,7859],[3,0],[4,1],[0,-1],[1,-2],[2,0],[1,0],[1,0],[2,1],[1,0],[0,1],[-3,4],[-1,1],[1,1],[1,1],[-1,1],[-1,0],[1,0],[4,2],[2,1],[1,0],[1,0],[4,1],[1,-1],[-1,-2],[0,-1],[0,-3],[3,1],[1,0],[4,0],[1,-1],[1,1],[1,0],[0,2],[2,1],[1,1],[1,0],[1,2],[1,0],[1,1],[1,1],[2,0],[1,0],[2,-1],[0,-1],[2,0],[-1,-2],[0,-1],[-1,-1],[1,-3],[-4,1],[-1,0],[0,-1],[0,-1],[1,0],[5,1],[1,-1],[1,0],[0,1],[2,0],[0,-1],[1,0],[1,-1],[1,0],[-1,-1],[1,0],[3,3],[3,3],[1,1],[0,1],[0,1],[2,1],[1,-1],[3,0],[2,-5],[-3,-4],[5,-5],[0,-3],[3,-1],[3,2],[1,-1],[2,-1],[-1,-4],[1,-1],[2,1],[3,-1],[3,0],[1,0],[0,1],[6,-1],[2,2],[2,0],[1,1],[0,1],[1,0],[2,0],[1,-1],[3,-2],[0,-1],[0,-2],[0,-2],[1,0],[7,-3],[0,-1],[4,0],[1,-1],[3,1],[2,-1],[1,-1],[-1,0],[0,-2],[4,1],[1,1],[0,-1],[0,-1],[2,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[0,-1],[0,-1],[2,0],[-1,-1],[-1,0],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[-2,0],[0,-1],[-1,-2],[1,0],[0,-1],[-1,-1],[1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[2,1],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[0,-1],[-2,-2],[-1,0],[-2,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[2,0],[1,-1],[1,0],[-1,-1],[1,-2],[0,-1],[-1,-1],[-1,0],[2,-1],[2,1],[1,0],[1,1],[1,1],[1,0],[1,-1],[1,0],[1,-2],[2,1],[1,0],[0,-1],[2,1],[2,1],[0,-1],[0,-1],[1,0],[1,0],[2,0],[2,1],[1,0],[0,-1],[1,0],[3,0]],[[5722,7866],[0,-1],[-2,1],[0,1],[1,0],[1,0],[0,-1]],[[5723,7867],[-1,0],[-1,0],[2,0],[0,1],[0,-1]],[[7708,7034],[0,-1],[0,-2],[0,-1],[-1,0],[0,-2],[1,-3],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[3,-3],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,-2],[-2,-4],[-2,-2],[-1,-1],[-2,0],[-1,-2],[-1,-1],[0,-2],[-1,2],[-3,0],[-3,2],[0,1],[-2,0],[-1,0],[-1,1],[-2,0],[-2,-1],[-1,0],[-4,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-4,-2],[-1,-1],[-1,-1],[-1,-3],[0,-1],[-1,-1],[-1,-2],[0,-2],[-2,-4],[-1,-2],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,-2],[1,-1],[0,-1],[1,1],[1,-1],[0,-4],[-1,-1],[-1,-2],[-1,-5],[-1,-1],[0,-1],[0,-2],[0,-4],[1,-4],[0,-2],[-1,-1],[0,-1],[1,-3],[-1,-1],[1,-2],[-1,0],[-1,-2],[0,-2],[1,-5],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[-1,0],[-4,0],[-1,1],[-1,-1],[-4,1],[-2,0],[-1,0],[-1,-1],[0,-2],[0,-1],[1,-1],[-1,0],[-1,-2],[0,1],[-1,0],[-1,-2],[-1,1],[-1,-1],[0,1],[-1,0],[-1,-2],[0,-2],[0,-3],[1,-1],[1,-1],[-1,-1],[-1,1],[-1,1],[-1,0],[-1,-1],[0,1],[-1,0],[-2,-2],[-2,1],[-1,0],[-1,-1],[-2,-2],[0,-2],[-1,-2],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-2],[1,0],[1,-2],[1,1],[-1,1],[1,1],[1,-2],[2,-1],[0,-1],[1,0],[1,2],[0,1],[2,-1],[1,0],[1,0],[0,1],[0,1],[0,-1],[1,-1],[2,0],[1,0],[2,0],[-1,-1],[0,-1],[1,-1],[0,-1],[1,0],[2,1],[0,1],[0,-1],[0,1],[1,0],[-1,-1],[1,-1],[1,0],[1,0],[0,-1],[-2,0],[0,-1],[0,-3],[1,-2],[1,0],[0,-1],[1,-1],[1,0],[1,1],[1,0],[1,0],[-1,-1],[0,-1],[0,-1],[0,-2],[-2,-1],[0,-3],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[2,-1],[0,-1],[1,0],[2,-3],[-1,0],[0,-1],[2,-1],[1,-1],[1,0],[1,-1],[0,-2],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-2],[0,-1],[1,-1]],[[7663,6845],[-2,-1],[-2,0],[-1,2],[0,-1],[-2,-1],[0,1],[-1,-1],[-1,1],[0,-1],[-1,1],[0,-1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,-1],[-1,-1],[-1,2],[0,-1],[-1,1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[1,1],[-1,0],[-1,0],[-3,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,-1],[0,1],[-1,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,-1],[0,1],[-2,-2],[0,1],[-1,0],[0,-1],[-1,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,2],[-1,0],[0,-1],[0,1],[-1,-1],[0,1],[-2,0],[0,1],[-2,0],[0,1],[-1,2],[-1,-1],[0,1],[0,1],[-1,0],[-1,0],[0,2],[-1,0],[0,1],[-1,1],[1,1],[-2,1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-2,-1],[-1,1],[-2,-1],[0,-1],[-1,0],[-1,-1],[1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-2,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-2,-2],[-1,0],[-1,0],[0,-2],[1,0],[-2,-2],[-1,-1],[0,1],[-2,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[0,-2],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,-2],[-1,-1],[-1,-1],[-2,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[0,-1],[-3,-2],[-2,-2],[1,-2],[1,-1],[-1,-2],[0,-1],[1,0],[-2,-1],[0,-1],[-1,-1],[-1,-2],[-3,0],[-4,0],[-3,-1],[-4,0],[-2,-3],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[2,-1],[1,-2]],[[7522,6815],[-2,1],[-2,-1],[-2,0],[-1,1],[-2,1],[-2,1],[0,1],[-1,-1],[-2,0],[-1,1],[-1,1],[0,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-3],[1,-1],[1,-1],[1,-1],[-1,0],[1,-1],[2,0],[0,1],[1,0],[0,-2],[1,-1],[0,-1],[0,-4],[1,-1],[2,1],[0,-1],[0,-3],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[-1,0],[-2,-1],[-1,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-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,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,-1],[-1,0],[-2,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-2],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,-1],[-2,-1],[-3,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,1],[-1,1],[-3,0],[0,-1],[-3,-1],[0,-1],[-4,0],[0,-1],[-1,1],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-3,0],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,2],[0,1],[-2,0],[-2,1],[-2,0],[-1,0],[-2,2],[-1,-1],[-2,2],[0,1],[-2,0],[-1,-1],[0,-1],[-1,0],[-2,1],[-1,0],[-1,0],[0,-2],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[-1,1],[0,1],[-2,0],[0,1],[-2,1],[0,2],[-1,0],[1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[0,1],[-1,1],[0,-1],[-2,0],[0,-1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,3],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[0,2],[-1,1],[-2,1],[1,1],[-1,1],[-2,-2],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,2],[0,1],[-1,0],[-1,-1],[-1,1],[-1,1],[-1,0],[-2,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[-2,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,-1],[-2,-2],[-1,0],[-1,1],[-1,1],[-1,1],[-1,2],[-1,-1],[0,-1],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,1],[-1,0],[-2,1],[-3,-1],[-2,1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,1],[-1,1],[-2,-1],[-1,1],[0,1],[-1,0],[-4,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-2],[-1,0],[-1,4],[-1,0],[-1,0],[-2,0],[-2,-2],[-2,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,1],[-2,1],[-2,-1],[-2,1],[-1,0],[-3,0]],[[7234,6775],[1,2],[2,0],[-1,3],[1,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,1],[0,2],[1,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,2],[0,1],[-1,1],[-1,1],[1,3],[-1,1],[1,1],[2,1],[0,-1],[0,1],[0,1],[1,1],[1,1],[1,1],[1,2],[0,-1],[1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,2],[0,1],[-1,2],[-1,2],[0,1],[-1,0],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[0,2],[0,2],[-1,1],[0,1],[1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,-1],[-1,0],[-2,0],[0,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,0],[-1,-1],[-1,1],[0,-1],[-2,2],[-1,0],[0,1],[-1,1],[-2,0],[-1,0],[-1,2],[-1,0],[-1,0],[-1,2],[-2,1],[0,1],[-1,0],[0,1],[-1,1],[0,2],[0,1],[-2,0],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[1,1],[-1,0],[-1,2],[-1,-1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,0]],[[7186,6880],[0,1],[1,0],[2,1],[1,1],[1,-1],[0,1],[1,-1],[2,1],[1,1],[-1,0],[0,2],[1,0],[0,1],[1,1],[0,1],[2,1],[1,-1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,3],[1,1],[1,1],[-1,1],[0,2],[-3,2],[-1,0],[-1,2],[-1,0],[-1,1],[-2,1],[0,2],[0,1],[1,2],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,2],[1,1],[-1,0],[-1,0],[0,1],[1,1],[1,1],[1,2],[1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[2,1],[0,-1],[2,2],[2,1],[0,1],[0,1],[1,0],[1,1],[3,-2],[0,1],[0,1],[1,1],[1,0],[2,0],[1,-2],[1,1],[1,0],[1,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,1],[1,-1],[1,1],[0,1],[1,1],[1,1],[0,1],[-1,1],[0,1],[1,0],[1,1],[-1,1],[1,2],[1,0],[4,2],[1,2],[2,1],[1,0],[0,2],[1,1],[1,2],[1,1],[2,1],[2,2],[1,2],[0,2],[0,1],[0,1],[1,2],[-1,1],[-1,1],[-2,0],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,2],[-1,0],[-1,0],[-1,2],[1,1],[-1,0],[-1,1],[0,2],[-3,2],[-1,1],[-1,1],[0,1],[-2,1],[-1,1],[-1,0],[-3,0],[-1,1],[0,1],[-1,1],[0,1],[-2,0],[-1,0],[-2,1],[-1,0],[0,2],[-1,1],[-2,0],[-2,1],[0,1],[-2,3],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[1,1],[0,1],[-1,1],[0,1],[-2,0],[-1,1],[-2,1],[-1,2],[0,2],[-1,1],[0,1],[0,2],[0,1],[-1,1],[-2,4],[0,2],[1,0],[1,2],[0,5],[1,2],[-1,2],[2,1],[0,1],[0,1],[0,2],[0,1],[0,2],[3,1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[1,0],[1,1],[1,-1],[1,1],[3,0],[0,1],[0,1],[-1,0],[1,1],[0,1],[-1,1],[0,1],[1,4],[0,1],[-1,1],[1,0],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,-1],[0,1]],[[7212,7086],[1,-1],[1,0],[1,0],[4,-1],[1,-1],[3,-3],[1,-1],[2,0],[0,-1],[3,-1],[1,-1],[1,-1],[2,-1],[4,-1],[3,0],[1,0],[1,-1],[1,-1],[1,-1],[-1,-3],[-1,-1],[-1,-1],[0,-1],[-3,-1],[-1,0],[0,1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[0,-4],[-1,-2],[0,-1],[-1,-2],[-1,-2],[0,-1],[1,-1],[0,-2],[1,0],[0,-1],[2,0],[2,-1],[2,0],[1,-1],[1,-1],[2,0],[1,0],[1,0],[3,-1],[1,0],[6,1],[6,2],[3,1],[1,0],[2,1],[1,0],[1,0],[5,0],[2,0],[2,1],[1,0],[1,0],[1,0],[3,-2],[1,0],[1,0],[2,-1],[2,-1],[0,-1],[3,-1],[5,-1],[1,0],[1,1],[5,0],[3,0],[1,-1],[1,-1],[3,-1],[1,0],[1,0],[0,-1],[2,-1],[1,0],[1,0],[2,-1],[6,0],[4,-2],[2,-1],[2,0],[0,-1],[1,-1],[1,0],[1,0],[5,-2],[2,1],[5,0],[1,0],[5,1],[1,0],[2,0],[2,2],[1,1],[1,1],[3,1],[5,2],[1,0],[5,-1],[2,0],[0,-1],[2,0],[2,-1],[2,-2],[3,-2],[2,-1],[1,0],[3,1],[2,1],[1,0],[1,1],[3,-1],[6,1],[0,1],[2,0],[1,0],[3,0],[1,0],[0,-1],[2,-2],[2,-1],[4,0],[2,0],[3,1],[1,0],[1,0],[2,-1],[3,-1],[1,-1],[2,-2],[3,-1],[2,-2],[3,0],[2,0],[1,0],[2,0],[3,2],[3,0],[1,0],[2,0],[1,0],[5,3],[4,2],[3,0],[1,0],[1,0],[2,1],[3,2],[1,2],[0,1],[2,1],[1,0],[2,1],[2,2],[0,1],[0,1],[2,1],[1,2],[1,2],[1,1],[1,0],[2,2],[2,1],[3,1],[1,1],[2,3],[2,2],[0,1],[1,1],[0,1],[3,1],[2,0],[2,0],[7,3],[2,2],[3,0],[2,1],[2,0],[3,0],[2,-1],[3,1],[4,1],[2,1],[4,-1],[1,1],[5,0],[-1,1],[2,0],[2,1],[2,0],[4,0],[1,1],[1,1],[4,2],[2,1],[1,0],[2,1],[2,0],[3,0],[2,0],[1,0],[1,1],[3,0],[1,-1],[2,0],[2,1],[2,0],[3,-1],[1,-1],[2,0],[2,-1],[1,0],[2,1],[1,0],[1,-1],[-1,-1],[0,-1],[1,-2],[4,-1],[2,-1],[1,-2],[2,-3],[1,0],[2,1],[2,0],[1,0],[2,0],[8,-1],[1,0],[1,0],[3,4],[2,-2],[2,-5],[1,-2],[0,-1],[2,0],[1,0],[1,0],[6,1],[1,0],[1,0],[2,2],[4,3],[1,-2],[1,-1],[0,-2],[1,-1],[0,-2],[2,-4],[0,-2],[1,-1],[0,-3],[1,-1],[3,-1],[7,-3],[1,-1],[3,-1],[4,-2],[2,0],[3,-1],[6,0],[3,-1],[5,-1],[10,0],[1,0]],[[6108,7416],[0,-1],[-1,-2],[-1,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[1,-2],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,-2],[-3,-2],[0,-2],[0,1],[1,0],[1,0],[1,0],[2,0],[1,1],[1,-1],[0,-1],[3,1],[1,0]],[[6187,7371],[0,-1],[-1,-1],[0,-2],[-1,-1],[-2,-2],[1,-1],[0,-1],[1,-1],[-1,-1],[-3,-2],[1,-2],[0,-1],[-1,0],[-1,-2],[-1,0],[1,-2],[0,-2],[1,-1],[0,-1],[1,0],[3,1],[3,-3],[1,0],[-1,-3],[-1,-2],[0,-1],[0,-2],[-1,0],[-1,-1],[-1,1],[-2,1],[-1,-1],[-3,2],[-1,0],[0,-1],[-1,-1],[-1,1],[-2,0],[-1,0],[0,1],[-1,1],[-1,1],[-1,-1],[-1,1],[0,2],[1,2],[-1,1],[-1,1],[-1,0],[-1,-2],[-1,1],[-1,0],[-4,-1],[0,-1],[-1,0],[-2,1],[-1,-2],[1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[2,-1],[2,0],[1,1],[1,0],[1,0],[2,-1],[0,-1],[0,-2],[0,-1],[-2,0],[-1,-1],[0,-1],[-2,-1],[0,-1],[0,-1],[1,-2],[2,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-2,-1],[0,-1],[-1,-1],[-1,0],[-2,0],[-2,0],[-1,-1],[-2,1],[1,2],[0,3],[-2,1],[-3,0],[0,2],[0,1],[-1,2],[0,1],[1,1],[0,1],[-1,0],[-2,1],[0,1],[0,1],[-2,-1],[-1,0],[0,-1],[-1,1],[0,1],[-2,-1],[-2,-1],[-3,0],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-2,2],[-1,0],[-1,-2],[-1,-1],[1,-1],[0,-1],[-1,-2],[-1,0],[-1,0],[-1,1],[-1,0],[-2,-1],[-2,0],[0,1],[-3,-1],[-2,1],[0,1],[-1,-1],[-1,1],[-1,2],[-1,1],[0,2],[-1,1],[-1,0],[-2,1],[0,1],[1,1],[-1,2],[0,1],[-1,0],[1,2],[0,3],[0,2],[-1,0],[1,0],[0,1],[0,1],[0,1],[-2,-2],[-1,-1],[0,-1],[-1,-1],[-2,1],[0,1],[-2,1],[1,1],[-1,1],[-1,-1],[-4,0],[-2,-1],[-1,-1],[0,-2],[1,-1],[-1,-1],[-2,0],[0,-2],[1,-1],[1,0],[1,-1],[0,-1],[-1,-1],[1,0],[0,-1],[-1,-2],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-3],[0,-1],[-1,0],[-1,-1],[0,-1],[-2,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-2,-2],[-3,-1],[-1,-1],[1,-1],[1,-2],[-1,-1],[0,-1],[-2,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[0,-1],[1,-2],[0,-1],[1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[1,-1],[1,-1],[1,-1],[-1,0],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,2],[2,2],[1,0],[-1,1],[-1,2],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,2],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-2,1],[-1,-1],[1,2],[0,1],[1,1],[1,0],[1,1],[0,1],[0,1],[1,0],[1,1],[0,2],[-1,0],[-3,3],[-1,-1],[-1,0],[-2,1],[-1,2],[-2,-1],[0,-1],[-1,-1],[-1,1],[-1,0],[-1,1],[-1,-1],[-1,1],[0,1],[-2,0],[-1,0],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,0],[1,1],[0,1],[-1,2],[-1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,1],[-1,2],[1,1],[0,2],[-1,1],[0,2],[0,1],[-1,1],[0,1],[-1,0],[-2,-1],[-2,-1],[0,1],[-2,-1],[-1,0],[0,-1],[-2,-1],[-1,-1],[-1,1],[-1,-2],[-1,0],[3,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,1],[-1,-1],[-1,0],[-2,0],[-2,-1],[0,-1],[-1,-1],[-2,-1],[0,-1],[2,0],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-2],[-1,0],[-4,-1],[-2,0],[-1,-3],[0,-1],[1,-3],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[-1,-2],[-1,1],[-1,-1],[-4,0],[-1,-1],[-1,-1],[-2,-3],[0,-1],[1,-1],[-1,-1],[-1,0],[-2,0],[-1,1],[-2,-1],[-2,2],[-2,0],[-1,-2],[-1,1],[-1,1],[0,1],[-1,1],[-2,0],[0,1],[-1,1],[-1,0],[-1,-1],[-2,1],[-1,-1],[-2,1],[0,1],[-1,0],[-2,0],[0,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-2,-1],[0,1],[-2,0],[-2,-2],[-1,-1],[-1,0],[-3,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1],[-1,1],[-1,1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0]],[[5899,7270],[0,1],[-1,2],[0,1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[-1,2],[-1,0],[-1,0],[0,2],[-2,1],[-1,2],[-1,0],[0,1],[0,1],[-1,0],[-1,-2],[-2,0],[-1,-1],[-1,1],[1,2],[1,1],[0,1],[-1,1],[1,1],[0,1],[1,1],[-2,0],[-2,0],[-1,1],[-2,0],[-1,0],[-1,0],[0,2],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,2],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[0,2],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,1],[-1,0],[1,1],[1,4],[-12,3],[-13,0],[-8,-4],[-8,-2],[-7,-4],[-1,-2],[0,-2],[-1,-2],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[1,-2],[2,-2],[1,1],[1,1],[0,-1],[1,0],[0,-1],[-1,-2],[-2,-1],[-1,0],[-1,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-3,0],[0,1],[-2,0],[-2,0],[0,-1],[-1,-1],[-1,1],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,1],[1,0],[0,1],[1,2],[1,1],[0,1],[1,0],[-1,1],[-2,1],[1,1],[0,1],[2,0],[-1,1],[1,0],[2,1],[1,0],[1,0],[1,1],[1,0],[2,0],[1,-1],[0,1],[2,1],[-1,1],[-1,2],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[-1,2],[0,-1],[-3,3],[-1,0],[-1,1],[-2,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[2,2],[2,3],[0,1],[2,1],[1,1],[0,1],[-1,1],[-3,2],[3,2],[2,2],[1,0],[0,1],[2,1],[1,0],[0,1],[1,0],[0,1],[1,0],[2,2],[1,1],[1,1],[1,1],[1,0],[3,1],[1,1],[0,1],[1,0],[0,1],[2,0],[0,1],[2,1],[1,0],[1,1],[1,1],[0,1],[1,1],[-2,1],[-1,1],[1,1],[0,1],[0,1],[2,2],[0,1],[0,1],[0,2],[-1,2],[-1,1],[-1,1],[1,0],[2,2],[1,1],[1,1],[0,1],[1,0],[1,-1],[4,1],[2,1],[1,1],[2,0],[1,1],[1,0],[1,3],[2,0],[2,1],[2,1],[-2,1],[-1,1],[1,0],[1,1],[-1,1],[2,1],[1,-1],[1,1],[-1,1],[1,1],[1,1],[3,0],[1,1],[1,1],[1,0],[1,1],[1,1],[0,1],[-1,0],[2,1],[0,1],[1,1],[1,1],[2,1],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[-1,2],[1,0],[2,0],[0,1],[2,0],[1,0],[1,2],[-1,0],[0,1],[2,0],[1,0],[1,1],[0,1],[-1,2],[-1,0],[-2,1],[0,-1],[-2,0],[-4,-1],[-1,0],[-2,0],[-2,0],[0,2],[1,1],[1,0],[1,1],[0,1],[1,0],[1,1],[0,1],[0,2],[2,0],[1,1],[2,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[3,1],[1,0],[0,-1],[1,0],[2,0],[0,-1],[2,1],[1,0],[1,0],[1,1],[2,-1],[1,0],[3,0],[-1,-1],[-1,-2],[0,-1],[-1,-1],[1,-1],[2,0],[2,0],[1,0],[1,-2],[2,1],[1,1],[1,-1],[1,1],[1,0],[1,0],[1,0],[3,-1],[2,1],[2,1],[0,1],[2,1],[0,1],[-2,1],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,1],[0,1],[-1,0],[0,1],[0,-1],[2,1],[0,-1],[1,2],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[3,2],[0,1],[1,0],[1,0],[1,1]],[[5945,7450],[1,0],[0,-1],[1,0],[1,0],[1,2],[1,0],[2,0],[1,0],[0,1],[-1,-2],[0,-1],[1,-1],[-1,0],[-2,-1],[-1,1],[-1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,1],[1,0],[2,1],[4,1],[1,1],[1,2],[1,0],[1,0],[4,0],[1,0],[0,-1],[1,-1],[-1,-1],[1,0],[0,-1],[2,-1],[1,1],[0,1],[1,0],[3,0],[1,0],[1,-1],[1,0],[1,1],[1,1],[1,0],[1,-1],[1,0],[1,1],[0,1],[0,1],[2,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[2,1],[1,-1],[0,-1],[1,1],[2,0],[2,0],[1,-1],[0,-1],[0,-1],[2,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[2,1],[0,-1],[1,1],[1,0],[1,0],[-1,1],[-2,0],[0,1],[0,1],[1,0],[0,1],[1,0],[2,0],[0,1],[1,1],[1,0],[1,-1],[1,0],[1,-1],[-1,-1],[0,-1],[2,0],[1,1],[1,1],[-1,2],[0,1],[1,1],[1,0],[0,-1],[-1,0],[1,0],[1,1],[-1,1],[-1,1],[-1,0],[-1,-1],[-1,1],[-2,0],[-2,-1],[1,-2],[-3,1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[1,0],[1,1],[-1,1],[-1,0],[1,1],[1,0],[2,2],[1,0],[-1,1],[1,2],[1,1],[1,1],[1,0],[1,1],[1,-1],[0,1],[3,0],[1,0],[1,0],[-1,1],[-1,1],[1,1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[1,-1],[1,0],[1,1],[0,1],[-1,1],[1,1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[2,1],[1,0],[1,0],[-1,0],[1,-1],[0,-1],[-1,0],[-1,-1],[1,-1],[1,-1],[-1,-2],[1,0],[2,-1],[2,-1],[1,0],[0,1],[1,1],[-1,1],[-2,0],[0,1],[1,1],[1,0],[1,1],[0,-1],[1,-1],[2,0],[0,-1],[2,0],[1,0],[-1,-1],[-1,0],[0,-2],[2,-1],[0,-1],[1,-1],[1,0],[3,1],[4,2],[2,1],[2,0],[2,0],[1,-1],[2,0],[3,-1],[1,0],[1,0],[1,-1],[1,-1],[1,1],[2,-1],[4,1],[5,-2],[6,-2],[9,-8],[2,0],[3,-1]],[[6038,7464],[-1,-1],[-1,0],[0,-1],[-1,-1],[1,0],[1,1],[1,-1],[1,0],[0,1],[-1,2]],[[6061,7275],[0,1],[0,1],[-1,0],[0,-2],[1,0]],[[8212,6164],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,0],[-2,-1],[-1,-1],[-2,-1],[-3,-1],[-1,-1],[-1,-2],[-1,-2],[-2,-2],[-2,-1],[-1,0],[0,-1],[-2,-1],[-1,-2],[-1,0],[-1,-2],[-2,0],[-4,-3],[-2,0],[-1,-1],[-4,-2],[-1,-3],[-1,-1],[-1,0],[-1,-2],[-1,-2],[0,-1],[-1,-1],[-3,-1],[-1,0],[-1,1],[-1,-1],[-1,1],[-1,-1],[-2,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,-3],[-1,0],[1,-1],[2,-3],[1,-1],[0,-1],[1,-1],[2,-3],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[2,-3],[2,-3],[-1,0],[1,-2],[-1,0],[0,-1],[-2,1],[-1,1],[-2,1],[-2,0],[-2,0],[-1,0],[-1,-1],[-3,-1],[-1,-1],[-2,-1],[-1,-1],[-1,1],[-1,1],[-2,1],[-3,1],[-2,1],[0,-1],[-1,1],[-1,-1],[-2,0],[-2,-1],[-1,0],[-1,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-2],[1,0],[0,-1],[-1,-2],[-2,-1],[0,-2],[-2,0],[-2,0],[-1,0],[-1,-2],[-1,0],[-1,-1],[-1,0],[0,-2],[-2,0],[-1,0],[-3,-1],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-3,-1],[-3,-1],[-1,-1],[-2,-1],[-2,-2],[0,-1],[1,0],[-1,0],[0,-2],[-1,-1],[1,-2],[0,-1],[2,-2],[0,-1],[-5,1],[-1,0],[-2,0],[0,1],[0,1],[-2,5],[-1,0],[0,1],[-2,2],[-1,1],[-1,-1],[-1,1],[0,-1],[-2,1],[0,-1],[-1,0],[-2,0],[-1,-1],[-1,1],[-1,-1],[0,-1],[-2,1],[-1,-1],[-1,0],[-2,1],[-3,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,-1],[0,1],[-1,0],[0,1],[-2,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[0,2],[-1,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,3],[-1,2],[-1,0],[1,1],[0,1],[0,1],[-1,2],[-1,0],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[-1,1],[-1,0],[-1,3],[0,1],[0,1],[0,1],[0,2],[1,2],[1,-1],[1,-2],[1,-1],[1,0],[2,-2],[2,-1],[1,0],[1,0],[2,0],[3,3],[1,0],[1,2],[1,2],[1,3],[1,1],[1,1],[1,2],[1,1],[1,-1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[0,-1],[1,1],[1,-1],[0,1],[0,-1],[1,0],[2,-1],[1,0],[3,-1],[3,-1],[1,-1],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,2],[1,1],[1,5],[1,3],[0,4],[0,1],[0,3],[-1,0],[-1,1],[1,2],[-1,1],[0,2],[3,-1],[1,-1],[2,-1],[0,-1],[2,0],[2,0],[1,-1],[2,0],[2,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[2,0],[1,-1],[1,1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[2,0],[1,0],[3,-1],[1,0],[1,1],[1,0],[1,0],[1,-1],[4,1],[1,1],[3,0],[2,1],[1,0],[1,0],[3,0],[2,1],[2,1],[0,1],[2,1],[1,1],[1,1],[1,0],[1,0],[2,0],[1,0],[2,0],[2,0],[2,1],[1,1],[0,-1],[2,1],[1,1],[1,0],[1,1],[1,0],[0,-1],[1,1],[1,1],[2,0],[1,1],[2,1],[1,0],[1,1],[0,1],[1,0],[3,1],[1,0],[1,2],[0,1],[1,1],[1,0],[0,1],[1,1],[1,0],[3,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[2,1],[0,2],[1,-1],[0,1],[1,0],[0,2],[2,0],[0,1],[1,0],[2,0],[3,2],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[0,-1],[1,0],[2,2],[1,0],[2,1],[-1,-2]],[[6553,7805],[1,0],[1,0],[1,0],[3,-1],[0,1],[5,-1],[3,1],[1,0],[-1,2],[0,1],[1,1],[-1,1],[2,2],[0,2],[0,1],[-1,2],[-2,-1],[-1,2],[1,1],[0,1],[2,0],[1,0],[0,1],[1,0],[0,-1],[2,0],[1,1],[1,-1],[2,0],[0,-1],[0,-1],[1,0],[2,0],[1,2],[2,1],[0,-3],[0,-1],[2,0],[0,1],[1,0],[2,1],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[-1,-1],[1,-1],[1,0],[0,-1],[-2,-1],[0,-1],[0,-1],[1,-3],[2,-3],[1,0],[3,-1],[1,-2],[1,-3],[0,-1],[0,-2],[1,-1],[1,1],[1,1],[1,2],[1,0],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[2,0],[1,-1],[1,0],[1,-1],[4,-1],[0,-1],[1,0],[2,0],[2,-1],[1,1],[2,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,-2],[1,0],[0,-1],[1,-1],[1,-3],[2,-1],[0,1],[3,1],[2,0],[1,0],[3,0],[0,-1],[1,-2],[0,-3],[1,0],[-2,-1],[-1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,2],[1,0],[0,1],[1,2],[2,1],[1,1],[2,0],[1,-1],[1,0],[2,-1],[1,-1],[0,-1],[3,1],[0,2],[1,2],[3,0],[1,0],[0,-1],[2,0],[2,1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[2,-1],[0,-1],[2,-1],[2,-2],[0,-1],[-2,-1],[-2,0],[1,-1],[0,-1],[-2,-1],[1,-1],[-2,-1],[-1,-2],[-2,-1],[-2,2],[0,-1],[-2,-3],[-2,1],[0,-1],[-1,1],[-1,-1],[1,-1],[-2,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,1],[1,1],[1,0],[2,0],[2,0],[0,-2],[0,-1],[1,-1],[1,-2],[1,-1],[1,0],[0,1],[1,0],[1,-1],[1,-1],[2,-2],[2,-3],[1,0],[1,-1],[0,-1],[2,-1],[1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,-2],[-1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[4,-2],[1,0],[1,1],[2,3],[1,0],[2,2],[1,2],[1,1],[1,1],[1,0],[0,1],[1,1],[1,0],[1,-1],[2,0],[0,2],[1,1],[2,0],[3,0],[0,2],[2,0],[0,-1],[1,-1],[0,-1],[2,0],[1,2],[-2,1],[0,1],[1,2],[0,1],[-1,2],[-1,0],[-2,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[-2,2],[1,1],[-1,2],[-1,0],[-1,1],[-2,1],[1,3],[0,1],[2,0],[1,0],[1,-1],[2,-1],[2,-1],[2,1],[2,-1],[1,0],[2,-1],[5,-1],[0,-1],[1,0],[2,-1],[1,0],[2,1],[1,0],[1,-1],[-1,-1],[0,-1],[1,-1],[2,-1],[1,-1],[4,-2],[2,0],[1,1],[2,0],[-1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[1,0],[-1,-1],[1,-1],[0,-1],[1,0],[0,2],[2,0],[1,0],[1,-1],[1,1],[1,-2],[-1,0],[1,-1],[1,0],[1,1],[0,1],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,1],[1,0],[1,-1],[1,0],[2,0],[1,1],[1,1],[2,1],[0,3],[3,-1],[1,-2],[2,0],[-2,-2],[-1,-1],[0,-1],[0,-1],[2,-1],[2,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-2,0],[-1,-2],[-1,0],[-5,-1],[-1,-1],[-2,0],[-1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-2],[2,-1],[1,1],[1,0],[1,0],[2,-2],[0,-1],[1,-1],[1,-1],[0,-1],[1,-2],[0,-2],[1,0],[1,0],[0,-1],[3,0],[1,-1],[-1,-1],[1,-1],[1,0],[1,0],[0,-1],[2,1],[2,-1],[1,0],[3,3],[1,1],[1,-1],[1,1],[1,1],[0,-1],[3,0],[0,-1],[0,1],[0,1],[1,1],[-1,1],[-1,0],[-1,-1],[-1,0],[0,1],[0,2],[2,1],[1,-1],[2,0],[0,-1],[2,-1],[0,-1],[1,0],[0,-1],[-1,-1],[1,-1],[1,0],[0,-1],[2,0],[1,0],[0,-1],[2,0],[0,1],[0,1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[4,-1],[0,-2],[0,-1],[1,-1],[1,-1],[2,0],[1,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,-1],[2,0],[3,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[3,0],[1,1],[0,1],[0,1],[1,-1],[2,0],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-1],[2,0],[0,-1],[-1,0],[0,-1],[-2,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,-2],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,-1],[1,0],[1,-1],[-1,0],[1,-2],[0,-3],[1,-1],[0,-1],[0,-1],[1,0],[-1,-1],[1,-1],[0,-2],[1,0],[1,-1],[0,-1],[-2,-1],[0,-1],[1,0]],[[6891,7659],[-3,-1],[-2,0],[-3,-3],[-2,1],[-2,1],[-2,0],[-1,1],[-1,-1],[-2,0],[-1,-1],[-2,0],[0,1],[0,1],[-2,-1],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[2,-2],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-2],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-2,1],[-1,0],[1,-1],[0,-3],[-1,-2],[-2,-2],[-1,0],[-3,-1],[-2,-1],[-2,0],[-2,-1],[-1,0],[-3,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-2,-1],[-1,-2],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[-1,-2],[1,-1],[-2,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-2,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-2,-1],[-1,1],[-1,0],[-2,0],[-3,0],[0,-1],[0,-1],[-2,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,-1],[-2,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[0,1],[-1,-1],[0,1],[-2,2],[-2,0],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,2],[-1,1],[-1,0],[-2,1],[0,1],[-2,0],[-1,0],[-2,1],[-1,0],[-1,1],[0,-1],[-2,-1],[-1,-1],[0,-1],[-1,0],[-3,-2],[-1,0],[0,-2],[0,-1],[-1,0],[0,-2],[-2,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-3],[0,-1],[0,-1],[-2,-1]],[[6470,7578],[-2,0],[-1,1],[1,2],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-2,3],[0,2],[-1,0],[0,1],[-1,-1],[-1,0],[-3,0],[-1,1],[1,0],[-1,0],[-1,0],[0,2],[-1,1],[0,1],[-1,1],[0,1],[-2,0],[0,-1],[-1,2],[0,1],[-1,1],[-1,0],[-1,-1],[-2,1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[-2,1],[-1,1],[-2,2],[-2,2],[-3,2],[-4,-1],[-2,1],[-3,2],[0,2],[0,1],[-1,1],[-1,1],[-2,1],[-1,1],[0,1],[-2,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-2,0],[0,2],[0,1],[0,2],[-2,0],[-3,3],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-2,1],[0,-1],[1,-1],[-3,0],[-1,1],[-1,0],[-4,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-2,2],[-2,0],[0,2],[-3,0],[-2,1],[1,1],[-1,2],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-2,1],[0,1],[-1,1],[-1,1],[1,2],[-1,1],[0,2],[-1,1],[-1,0],[-1,-1],[0,1],[-1,1],[1,2],[0,2],[-1,2],[-3,0],[0,1],[-3,1],[-2,2],[0,1],[-1,0],[-1,1],[0,1],[0,1],[6,3],[0,1],[-1,1],[1,1],[0,1],[0,1],[1,1],[1,-1],[0,2],[1,0],[1,1],[0,2],[2,1],[1,1],[-1,2],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[0,1],[2,0],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-2,-1],[-1,1],[1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,2],[-1,0],[-1,-1],[-1,1],[0,1],[-2,1],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[-2,2],[-1,0],[-1,0],[1,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,2],[-1,1],[1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-3,0],[0,1],[-1,1],[1,1],[2,1],[1,1],[-1,1],[-1,1],[1,1],[-2,1],[0,1],[1,-1],[1,0],[2,0],[2,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[4,0],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[2,-1],[1,0],[2,-1],[0,-2],[-1,-1],[-1,0],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,2],[0,2],[0,1],[2,-1],[1,1],[-1,0],[0,1],[1,3],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[3,0],[0,1],[0,1],[2,1],[1,0],[1,-1],[0,1],[1,0],[-1,1],[0,1],[3,3],[2,0],[1,0],[2,1],[2,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,1],[2,-2],[1,0],[0,1],[2,1],[0,1],[2,1],[3,1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,1],[6,-3],[1,-1],[1,0],[2,-1],[0,-1],[1,0],[0,1],[-1,0],[1,0],[3,1],[1,1],[2,2],[0,1],[0,1],[0,2],[1,2],[0,1],[1,0],[1,-1],[4,0],[2,2],[1,0],[0,-2],[1,1],[2,-1],[1,0],[1,0],[0,1],[1,2],[1,1],[1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[2,2],[2,0],[1,-2],[3,1],[-1,1],[0,1],[2,1],[1,0],[1,1],[0,-1],[1,2],[0,2],[0,-1],[1,1],[2,-3],[0,-1],[1,0],[2,0],[1,-1],[2,1],[1,1],[1,1],[1,1],[0,1],[-1,0],[1,1],[1,1],[1,0],[0,1],[0,1],[-1,1],[-1,1],[2,0],[1,1],[3,0],[1,-1],[2,1],[0,1],[2,1],[1,0],[2,-2],[2,0],[0,1],[2,1],[1,-1],[1,1],[1,0],[1,0],[2,0],[2,-1],[2,0],[1,1],[0,1],[2,0],[1,0],[0,1],[-1,1],[0,1],[1,1],[0,1],[2,0],[1,0],[2,1],[-1,1],[4,1],[1,-1],[1,0],[1,0],[1,0],[3,0],[0,1],[1,1],[3,1],[2,1],[4,1],[2,1],[1,1],[0,1],[0,1],[2,0],[1,0],[1,0],[1,-1],[2,1],[1,0],[2,0],[0,1],[2,0],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,1],[-2,1],[-1,0],[0,1],[1,1],[1,0],[0,1],[-2,0],[-2,-1],[-2,1],[0,1],[1,0],[0,1],[-1,1],[2,0],[0,1],[0,1],[-1,1],[1,0],[2,2],[1,0],[2,-2],[2,1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[2,0],[3,2],[1,-1],[0,-1],[2,0],[0,2],[0,1],[1,-1],[-1,-1],[0,-1],[3,0],[1,-1],[-1,-1],[3,1],[0,-1],[1,-1],[2,-1],[0,-2],[-1,0],[0,-1],[-1,-2],[-1,0],[-1,-1],[1,-1],[1,-1],[6,2],[0,-2],[-1,-1],[0,-1],[-2,-4],[1,0],[2,-1],[1,1],[1,-1],[1,0],[0,-1],[2,1],[0,-1],[1,0],[0,-1],[2,0],[2,-1],[2,1],[0,-1],[1,1],[0,1],[0,2],[1,1],[1,1]],[[6033,8241],[2,0],[1,0],[4,-1],[1,-1],[2,1],[1,-1],[2,1],[3,1],[2,-1],[2,0],[1,1],[5,-1],[2,0],[4,-2],[1,-1],[1,0],[3,0],[3,0],[2,0],[3,-1],[1,0],[4,-1],[1,-1],[-1,-1],[1,-2],[0,-1],[2,0],[2,0],[4,-1],[0,1],[1,1],[2,0],[0,1],[0,1],[3,1],[0,-1],[1,0]],[[6099,8233],[0,-1],[0,-2],[1,0],[1,0],[1,1],[3,1],[2,1],[1,1],[3,1],[1,1],[1,0],[-1,1],[1,0],[2,1],[-2,-2],[0,-1],[0,-1],[1,-1],[2,0],[0,-1],[2,-1],[1,1],[5,-2],[4,-1],[2,0],[1,-2],[2,-2],[1,0],[3,-1],[1,2],[1,-1],[0,1],[0,2],[1,1],[4,-2],[0,-1],[1,-1],[0,-1],[1,-3],[0,-1],[4,-3],[0,-2],[0,1],[0,1],[-1,1],[-2,-1],[0,1],[-1,0],[-1,-2],[-1,0],[-1,0],[-1,0],[0,-1],[0,-2],[0,-2],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-3,-1],[-1,-1],[-1,0],[2,1],[-1,0],[-1,-1],[0,-1],[0,1],[1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[1,0],[-1,-1],[-2,-2],[0,-1],[-2,0],[1,0],[-1,-1],[-1,0],[0,1],[-2,0],[-3,-1],[0,-1],[-1,1],[0,1],[-2,0],[0,-1],[-1,-1],[-3,0],[-1,0],[1,-1],[2,0],[4,1],[1,0],[2,0],[1,-2],[2,0],[1,0],[0,1],[0,1],[-1,1],[1,0],[2,0],[0,1],[1,2],[1,0],[1,1],[1,0],[2,1],[1,2],[1,0],[3,1],[1,0],[2,2],[3,1],[0,1],[1,1],[-1,1],[0,1],[1,1],[2,1],[2,-1],[1,-1],[1,1],[1,-1],[0,1],[0,-1],[-1,0],[-1,0],[2,0],[0,-2],[0,-2],[0,-2],[-1,-1],[0,-3],[0,-2],[-1,0],[-1,-3],[-3,-2],[-3,-1],[-4,-2],[-1,0],[-2,0],[-1,0],[1,-1],[2,-2],[4,1],[1,1],[1,0],[5,0],[2,1],[9,1],[3,-1],[3,-2],[0,-1],[-1,0],[-2,-1],[2,-3],[0,-1],[0,-1],[-2,-1],[-1,-2],[-1,-1],[1,-1],[1,-1],[-1,-1],[-1,-1],[1,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[2,0],[1,3],[0,1],[1,1],[2,1],[3,0],[1,0],[0,1],[-2,-1],[3,2],[2,0],[2,-1],[3,0],[3,-2],[2,-1],[3,-1],[5,-1],[4,-2],[3,-1],[2,-2],[2,-2],[1,-1],[2,0],[2,0],[3,0],[2,1],[4,2],[3,2],[2,1],[2,2],[2,0],[6,0],[0,-1],[-2,0],[-1,1],[0,-1],[1,0],[1,0],[1,0],[5,1],[1,1],[1,1],[1,-1],[1,0],[0,-2],[-4,-2],[-1,0],[-1,0],[1,-1],[0,-1],[1,-4],[0,-2],[0,-1],[0,-3],[1,-3],[0,-2],[-1,0],[-1,-1],[-2,-1],[-7,-4],[-1,-1],[-5,-4],[-1,-1],[-1,0],[-1,0],[-3,1],[-1,0],[-1,-1],[0,-1],[-3,-2],[-1,-1],[0,-1],[2,-3],[1,-2],[1,0],[2,0],[2,0],[2,0],[1,-1],[1,0],[-1,-2],[1,0],[1,-1],[3,1],[3,2],[6,3],[4,0],[3,0],[2,0],[3,0],[1,-1],[1,-1],[2,-1],[2,0],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[2,-1],[1,0],[3,1],[1,2],[1,0],[1,-1],[1,-1],[2,0],[2,0],[-1,-1],[0,-1],[3,-1],[0,-1],[2,0],[-1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,1],[0,1],[1,2],[2,1],[0,1],[-1,0],[1,0],[1,-1],[1,1],[2,1],[1,1],[-1,2],[3,0],[1,1],[0,1],[-1,2],[-1,0],[0,-1],[-2,0],[0,-1],[-3,-2],[0,-1],[-1,-1],[0,1],[0,2],[-1,-1],[3,3],[1,0],[2,1],[1,0],[5,4],[1,1],[2,0],[5,0],[2,0],[2,0],[4,0],[6,1],[5,1],[1,1],[1,0],[4,0],[3,1],[0,-2],[0,-2],[-1,-3],[1,-1],[1,-2],[1,0],[3,0],[0,-1],[0,1],[-3,0],[-1,2],[-1,3],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,2],[-1,0],[-2,0],[2,1],[2,2],[2,3],[2,1],[7,3],[4,3],[3,3],[2,3],[1,2],[4,3],[2,2],[1,4],[2,3],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[3,-1],[7,-1],[3,0],[11,-1],[10,1],[-1,-1],[1,-1],[-1,-1],[-3,0],[-4,0],[-1,0],[-1,-1],[-2,1],[-3,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,2],[-2,-1],[0,-1],[-3,-1],[2,-1],[-1,0],[-1,0],[-3,0],[-1,-1],[-1,-1],[-1,1],[-1,0],[-5,0],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[1,-1],[0,-1],[-1,0],[-1,-2],[-1,0],[-1,-1],[1,-1],[1,-1],[0,-1],[-1,0],[1,-1],[2,-1],[2,-1],[3,1],[-1,0],[-3,1],[0,1],[0,1],[0,1],[2,1],[3,1],[1,1],[-1,1],[5,1],[1,1],[-1,0],[1,1],[1,0],[0,1],[-2,0],[2,1],[1,0],[1,-1],[1,-1],[1,1],[0,1],[1,0],[3,1],[2,1],[-1,1],[0,1],[2,0],[2,0],[0,-1],[-2,0],[0,-1],[0,-1],[-1,-1],[1,0],[1,1],[0,2],[1,0],[0,-1],[1,-2],[1,0],[3,0],[0,2],[1,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[1,1],[1,0],[2,0],[2,1],[1,1],[0,1],[1,2],[2,1],[2,1],[1,0],[2,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[3,0],[1,-2],[-1,-2],[1,-3],[2,-1],[0,-1],[-1,-1],[1,-1],[1,-1],[2,0],[1,1],[1,-1],[-1,0],[-2,-1],[0,-1],[2,1],[1,0],[1,1],[2,-2],[0,-1],[4,0],[3,-1],[1,-3],[1,-1],[1,-1],[1,-1],[2,1],[1,-1],[-2,1],[-1,-1],[-2,-2],[2,1],[1,0],[2,1],[3,-1],[0,-1],[-3,-1],[1,-1],[1,1],[1,0],[1,-1],[1,-2],[0,-1],[2,-2],[2,-1],[1,0],[1,0],[-1,0],[0,1],[-1,1],[-1,2],[2,0],[5,1],[2,0],[4,1],[2,1],[4,2],[1,0],[1,-1],[-2,0],[0,-1],[2,-1],[1,-1],[1,1],[1,-1],[0,-1],[1,0],[2,-1],[-1,0],[-1,0],[1,0],[1,-1],[1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[1,-1],[-2,-1],[-1,-1],[1,0],[0,-1],[1,-1],[2,-2],[2,0],[1,-1],[1,0],[1,-2],[0,-1],[0,-1],[2,1],[1,-1],[2,-2],[0,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[0,-1],[-2,0],[-1,-1],[1,-1],[-1,0],[-1,-1],[1,-1],[3,0],[1,-1],[1,-2],[1,0],[1,-1],[1,-1],[0,1],[1,-1],[1,0],[1,-1],[2,-2],[1,0],[4,-1],[2,-1],[2,-1],[2,0],[3,0],[2,0],[1,-1],[1,0],[3,2],[1,1],[2,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[1,-1],[2,0],[2,0]],[[6506,8110],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-3],[1,0],[2,-1],[0,-4],[0,-1],[0,-1],[-1,-1],[0,-1],[2,-5],[2,-1],[0,-1],[0,-3],[2,0],[-1,-2],[1,-3],[0,-1],[1,-1],[1,-2],[-1,-2],[1,-1],[1,-2],[0,-2],[0,-1],[1,-2],[2,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-2,0],[0,-2],[-1,-2],[1,-1],[1,-2],[-1,-1],[0,-2],[-1,-3],[-1,-2],[-1,-2],[-2,-1],[-2,-2],[-3,-2],[-3,-1],[-1,-1],[-3,-1],[-1,-1],[-2,0],[0,-2],[0,-1],[1,-4],[1,-1],[0,-2],[-3,-3],[0,-1],[1,-1],[7,-1],[3,-3],[2,-2],[4,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[3,-1],[6,-3],[3,-1],[1,-2],[0,-1],[2,-1],[0,-1],[-2,-1],[0,-1],[-1,-2],[1,-2],[1,-1],[1,-1],[-1,-1],[-1,-1],[0,-1],[-3,-3],[-2,0],[-1,-1],[0,-2],[-1,-1],[0,-1],[2,-2],[0,-2],[1,-3],[1,-1],[1,-1],[-1,-1],[0,-1],[1,-2],[1,0],[1,0],[2,-1],[5,-1],[2,-2],[-1,-2],[0,-1],[-2,-1],[1,-2],[1,-1],[-3,-3],[1,-2],[0,-1],[1,-2],[3,-1],[1,0],[1,-2],[-1,-4],[0,-1],[-2,-1],[-1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-2],[-1,0],[-1,-1],[0,-2],[0,-1],[-2,-1],[-1,0],[-1,-1],[0,-1],[-2,-2],[-1,0],[-1,0],[1,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[3,-1],[1,0],[0,-1],[0,-1],[1,-3],[0,-1],[1,-2],[1,-2],[4,-2],[1,-1],[1,-1],[0,-1],[-1,-1],[1,-2],[1,-1],[0,-2],[-3,-2],[0,-1],[-2,-1],[1,-1],[1,-1],[-1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[2,-1],[1,-1],[0,1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-3],[-1,-1],[1,-1],[1,-1],[-1,-1],[-1,0],[2,-2],[0,-2],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-3],[0,-3],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-4],[-1,-1],[0,-1],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[1,-2],[-1,0],[-1,0],[0,-2],[0,-2],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[1,-1]],[[5945,7450],[0,1],[0,1],[-2,1],[0,2],[-3,2],[-1,1],[0,1],[0,2],[-1,1],[0,1],[2,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,2],[0,1],[0,2],[1,1],[0,2],[0,2],[0,1],[1,1],[1,1],[0,2],[0,1],[2,2],[1,1],[0,1],[0,1],[0,2],[-1,1],[-2,2],[-1,2],[0,1],[0,1],[0,2],[0,2],[1,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,2],[1,2],[1,1],[0,1],[2,2],[1,1],[0,2],[1,3],[0,2],[1,1],[3,1],[1,2],[-1,3],[0,2],[0,2],[1,2],[0,1],[0,1],[1,1],[1,2],[0,2],[0,1],[2,1],[1,1],[0,1],[0,2],[0,2],[-1,3],[1,1],[2,3],[0,1],[1,1],[3,2],[1,1],[3,2],[3,3],[0,2],[1,2],[1,1],[2,0],[1,0],[0,1],[0,1],[1,1],[1,0],[2,0],[1,1],[1,0],[1,2],[0,1],[1,3],[0,1],[2,3],[2,3],[0,1],[2,2],[1,1],[3,1],[-1,1],[-1,0],[-1,-1],[0,1],[-3,0],[-3,1],[-2,1],[-1,0],[-2,0],[0,1],[-2,1],[-2,1],[-2,1],[-2,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,-2],[-1,0],[0,1],[-2,0],[-2,-2],[-1,1],[-2,1],[-1,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,-1],[-2,0],[0,-1],[0,1],[0,1],[-2,-1],[-1,1],[0,-1],[-2,0],[-2,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-3,-1],[-1,1],[-2,1],[0,1],[-1,0],[-1,2],[-1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[-1,0],[-2,-1],[-1,1],[-1,-1],[0,1],[0,1],[1,1],[-3,-1],[-3,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-3,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-3,-1],[-1,0],[0,-1],[0,1],[-1,1],[-2,-1],[-1,0],[-2,1],[0,1],[-2,0],[1,1],[-1,1],[-2,-1],[0,-1],[1,-1],[-2,-1],[0,-1],[-1,0],[-1,1],[0,1],[-1,3],[-1,1],[1,1],[0,1],[-1,1],[-1,-1],[0,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[-2,-1],[0,1],[-3,1],[-1,-1],[1,-2],[0,-2],[-1,-1],[0,-1],[-1,-1],[-4,2],[-1,0],[-2,0],[-1,-1],[-1,1],[0,1],[-1,1],[2,2],[-1,1],[0,1],[-2,-1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-2,1],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[1,0],[1,0],[1,1],[1,0],[-1,1],[-1,0],[0,1],[0,1],[-2,0],[-1,1],[-1,1],[2,1],[-2,2],[-1,0],[-1,1],[-2,1],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-2,0],[-1,0]],[[5842,7653],[0,3],[0,1],[-1,3],[0,1],[2,1],[0,1],[-2,2],[1,0],[1,0],[0,1],[0,1],[1,1],[1,0],[2,2],[0,1],[1,2],[0,1],[-1,0],[0,1],[2,1],[1,1],[1,1],[2,1],[1,1],[-1,1],[1,0],[1,0],[-2,1],[0,1],[0,1],[2,1],[-1,1],[1,1],[-1,1],[1,1],[1,1],[-1,1],[0,-1],[-1,-1],[0,1],[-2,0],[-1,1],[0,1],[-2,-2],[-1,1],[-1,-1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,2],[-2,-1],[-1,-1],[-1,0],[0,2],[0,1],[-1,1],[-1,-1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[1,1],[0,2],[-1,1],[-1,0],[0,-1],[-1,2],[-1,0],[1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,2],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[-1,0],[0,2],[1,0],[1,1],[-1,1],[0,1],[1,0],[0,1]],[[5813,7792],[0,1],[0,1],[-4,3],[0,1],[1,0],[1,-1],[2,2],[0,2],[0,1],[3,1],[1,-1],[1,2],[1,1],[-1,1],[-1,1],[1,2],[1,1],[-2,0],[-1,0],[0,1],[-1,0],[-2,1],[-1,1],[0,1],[0,1],[1,2],[-3,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-2,0],[0,1],[1,0],[0,2],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[2,1],[2,1],[1,-2],[1,-1],[1,0],[1,1],[1,1],[2,3],[1,1],[2,0],[1,1],[1,1],[2,1],[1,1],[2,1],[1,0],[2,1],[2,1],[-3,1],[3,2],[-1,1],[-4,-2],[-1,-1],[-1,0],[-1,0],[-1,1],[0,5],[1,0],[-1,2],[1,0],[4,3],[0,1],[0,1],[2,2],[1,1],[0,2],[2,0],[3,3],[-1,3],[1,1],[-2,0],[1,4],[1,1],[0,3],[0,1],[-1,1],[0,2],[-1,2],[-2,1],[-2,3],[-2,2],[-1,1],[-2,1],[0,1],[0,1],[1,0],[0,3],[1,0],[0,1],[-3,0],[-4,2],[0,2],[-1,1],[1,1],[1,0],[-1,0],[0,1],[-3,1],[-4,0],[0,1],[0,1],[3,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[1,0],[-1,1],[1,1],[2,-1],[2,1],[1,1],[1,0],[2,1],[0,1],[3,-2],[4,0],[2,0],[0,1],[0,1],[-2,1],[0,1],[-2,1],[-1,0],[1,1],[1,0],[2,1],[1,-1],[2,-1],[-1,-1],[1,-1],[2,0],[4,0],[1,0],[2,-1],[1,-2],[3,1],[1,-1],[1,-1],[2,0],[1,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[2,0],[1,-1],[2,0],[1,-1],[1,0],[2,1],[3,1],[1,1],[1,1],[0,-1],[2,1],[4,1],[3,1],[2,1],[1,0],[0,-1],[2,-1],[2,1],[2,1],[1,1],[1,1],[0,1],[0,1],[3,1],[0,1],[0,1],[0,1],[-2,0],[0,1],[-3,2],[-2,1],[-3,1],[-2,0],[0,1],[1,2],[3,1],[1,1],[1,1],[0,3],[7,0],[1,0],[1,1],[1,3],[1,0],[1,1],[0,1],[4,0],[2,3],[1,2],[1,0],[2,0],[1,0],[2,1],[1,1],[-2,1],[-1,2],[-1,2],[1,1],[1,2],[0,1],[1,1],[1,2],[0,2],[-1,3],[-2,0],[-1,3],[-1,0],[-1,3],[0,1],[-1,0],[-1,0],[-1,-2],[-1,-1],[-7,2],[-1,-1],[0,1],[-7,0],[-2,1],[-2,1],[-1,0],[-1,1],[0,1],[0,2],[0,1],[-2,4],[3,-1],[1,2],[2,-1],[2,0],[-4,3],[0,3],[-1,2],[1,0],[2,2],[1,0],[1,0],[1,0],[3,0],[1,0],[3,0],[3,0],[1,0],[0,-1],[3,0],[2,1],[3,-1],[3,-1],[1,1],[1,12],[0,6],[2,3],[-1,2],[3,3],[3,3],[2,3],[2,5],[1,2],[0,1],[-1,5],[0,3],[0,3],[-1,1],[-1,2],[1,1],[0,1],[1,2],[2,0],[-1,1],[0,1],[0,2],[0,1],[0,2]],[[5913,8061],[-2,8],[5,0],[0,1],[1,0],[-8,1],[-9,0],[-1,0],[-1,0],[-1,1],[-2,2],[0,1],[1,1],[0,2],[0,3],[1,5],[0,1],[2,3],[-1,1],[0,1],[1,1],[2,-2],[1,0],[1,-1],[1,0],[-1,1],[1,0],[1,0],[2,2],[-2,2],[-1,0],[-2,1],[1,1],[1,2],[3,1],[1,1],[0,1],[0,1],[1,0],[1,0],[0,1],[6,3],[6,2],[3,0],[2,-1],[8,1],[4,-2],[2,1],[1,0],[1,0],[2,0],[1,1],[8,2],[1,-1],[2,0],[3,1],[1,0],[2,1],[0,-1],[0,1],[9,0],[9,0],[1,-1],[0,-1],[-1,0],[0,-1],[1,-3],[1,-2],[2,1],[1,-1],[1,0],[2,-3],[1,-2],[2,1],[0,-2],[-1,-1],[2,-3],[0,-1],[-1,-1],[1,0],[0,1],[1,0],[-1,-2],[-1,-1],[-5,-1],[-3,0],[0,-1],[1,-2],[0,-1],[1,-1],[2,-1],[1,1],[3,-1],[4,-4],[0,-1],[2,0],[2,0],[1,0],[3,3],[0,1],[1,1],[0,1],[1,1],[0,4],[0,1],[-1,2],[-3,-1],[-4,0],[1,0],[0,6],[1,1],[2,2],[3,1],[2,0],[1,-1],[3,-3],[1,-1],[6,-2],[1,1],[2,-1],[2,1],[0,-1],[1,-1],[1,0],[1,-2],[0,1],[0,1],[-4,4],[-1,2],[-1,1],[3,0],[-1,2],[-2,4],[0,2],[0,1],[0,1],[1,1],[1,4],[1,0],[0,1],[1,4],[1,2],[0,2],[2,2],[1,0],[2,3],[1,1],[5,1],[1,0],[0,-1],[0,-1],[1,1],[2,-2],[0,-1],[3,-1],[3,-1],[3,0],[6,-1],[4,1],[3,0],[3,0],[0,-1],[1,0],[-1,1],[-1,1],[-1,3],[2,1],[0,2],[-4,-1],[-2,1],[0,1],[-1,0],[-1,1],[-1,1],[-2,3],[-1,2],[0,1],[-4,4],[-2,0],[2,1],[1,1],[3,1],[4,-1],[2,-1],[1,0],[1,1],[1,1],[0,1],[-2,1],[1,0],[-2,2],[-1,2],[0,2],[-1,1],[-2,0],[-1,0],[-3,-1],[1,1],[-2,0],[-1,2],[-1,2],[-1,0],[0,1],[1,2],[0,1],[1,1],[1,2],[-1,0],[0,1],[0,1],[1,0],[0,2],[0,1],[-1,1],[-1,0],[-3,-1],[-1,0],[0,1],[-3,0],[-1,-1],[-1,1],[-2,-2],[0,1],[-2,0],[-3,2],[-2,1],[0,1],[0,1],[0,2],[1,0],[2,-1],[1,1],[1,0],[2,1],[0,1],[0,1],[-3,0],[0,1],[0,1],[1,1],[1,0],[2,0],[8,1],[3,1],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,1],[2,2],[1,0],[1,1],[1,1],[3,1],[0,1],[1,0],[1,0],[-1,1],[0,1],[-1,2],[0,1],[-1,0],[-2,0],[-1,-1],[0,-1],[-2,-1],[0,-2],[-1,0],[1,-1],[-2,-1],[-5,1],[-3,1],[1,1],[-1,1],[0,1],[1,0],[1,1],[2,1],[1,0],[0,1],[1,1],[0,2],[-1,0],[0,1],[2,3],[0,2],[-4,1],[-1,3],[-4,2],[-2,1],[-1,1],[0,2],[-1,1],[-1,1],[-3,0],[0,1],[1,0],[1,1],[-2,4],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-2,3],[0,3],[-1,1],[-2,0],[-5,0],[-2,-1],[-3,-1],[0,-1],[-3,-1],[-3,2],[-1,1],[-2,0],[0,1],[-1,-1],[0,-1],[-2,0],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-2],[-1,1],[0,5],[0,6],[1,4],[0,2],[1,2],[1,2],[3,5],[2,5],[2,2],[1,0],[4,-1],[-1,-1],[-1,1],[-4,0],[1,-1],[2,-1],[1,-1],[-4,-2],[-2,-1],[-1,-3],[0,-2],[1,0],[0,-2],[0,-2],[1,-1],[4,-2],[5,0],[1,0],[6,1],[2,0],[3,0],[1,1],[0,1]],[[6432,8213],[-1,-1],[0,-2],[1,-1],[0,-2],[3,-2],[3,-1],[1,1],[2,0],[4,0],[5,1],[3,0],[2,-1],[1,-1],[1,-3],[-1,-1],[-1,-1],[-4,-2],[-2,-2],[-1,-1],[-1,-1],[0,-2],[2,-2],[1,-2],[2,-1],[3,0],[1,0],[3,-2],[0,-2],[2,-1],[1,-1],[2,0],[-2,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-2],[-1,0],[-1,1],[-1,0],[0,1],[1,-1],[1,0],[0,1],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,1],[1,1],[2,0],[0,1],[1,0],[1,1],[-2,0],[-1,0],[-3,-1],[-2,0],[2,1],[3,1],[1,1],[0,1],[-3,-1],[-1,0],[-1,-1],[-1,-1],[-1,2],[-1,1],[-1,0],[-1,-1],[-1,-1],[-1,1],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-3,-2],[0,-1],[-2,-2],[0,1],[-3,-1],[0,-2],[1,0],[0,1],[0,-1],[0,1],[1,-1],[1,1],[1,0],[1,-1],[1,-1],[0,-1],[-3,-1],[-1,1],[-5,0],[-1,2],[-1,0],[2,-1],[1,1],[1,3],[-1,0],[0,-1],[-2,-1],[1,0],[-2,0],[-2,-1],[-2,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,2],[0,1],[-1,-1],[-2,0],[-2,-1],[0,2],[1,1],[1,0],[2,-1],[-1,1],[-3,1],[-1,0],[-1,2],[0,1],[1,1],[0,1],[0,1],[1,0],[2,0],[1,0],[2,0],[2,-1],[1,1],[0,1],[2,0],[-2,1],[0,1],[1,0],[1,1],[-1,0],[-1,-1],[-1,1],[-1,1],[0,1],[-2,-1],[-1,1],[-1,-1],[-1,1],[2,3],[1,0],[1,-1],[1,1],[1,1],[3,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[1,2],[-1,0],[-2,-1],[-3,1],[1,-1],[-1,0],[-1,1],[1,0],[0,3],[-1,0],[-1,0],[0,1],[3,0],[3,0],[3,1],[3,-2],[1,-1],[0,-1],[1,-1],[1,1],[-1,2],[0,1],[-1,0],[1,1],[3,2],[1,0],[1,0],[-1,-3],[-1,0],[2,-1],[-2,-2],[1,0],[1,0],[1,0],[1,1],[0,1],[-1,1],[-2,0],[1,1],[1,0],[0,-1],[1,-1],[2,-2],[-1,-1],[1,-1],[0,-1],[2,0],[1,-1],[0,-1],[1,1],[2,0],[1,0],[1,0],[-2,-1],[-1,-2],[3,0],[0,-1],[1,0],[-1,-1],[-2,0],[1,1],[-1,0],[0,-1],[-1,-1],[2,-1],[1,1],[0,-1],[2,0],[1,0],[0,1],[-2,0],[0,1],[2,0],[1,0],[0,1],[-2,0],[-1,0],[2,1],[0,2],[-1,1],[-2,0],[0,-1],[0,1],[-1,1],[1,2],[1,0],[-1,1],[0,2],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,-1],[-1,0],[0,-1],[-3,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,2],[-1,0],[-1,0],[0,-1],[-2,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[1,4],[2,2],[1,2],[-1,1],[0,1],[-1,-1],[-4,-2],[1,-3],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[0,1],[3,1],[2,1],[0,2],[0,2],[1,2],[3,2],[2,1],[1,0],[3,0],[2,0],[5,1],[1,-1],[0,-1],[-1,-1],[-3,-1]],[[6502,8135],[-1,-1],[-2,0],[0,-1],[2,0],[0,-2],[0,-3]],[[6501,8128],[-2,1],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,-3],[-1,1],[-4,-1],[-1,0],[0,1],[1,-1],[1,1],[1,0],[0,1],[-2,1],[-1,0],[1,0],[-1,-2],[-1,-1],[-1,0],[-3,0],[-1,0],[-1,1],[-1,0],[-1,0],[1,0],[0,2],[1,0],[1,0],[2,1],[1,-1],[3,2],[1,1],[0,1],[0,1],[0,2],[-1,1],[-2,2],[0,2],[1,1],[2,0],[1,0],[1,0],[1,-3],[-2,-1],[0,-1],[0,-1],[1,0],[1,1],[-1,1],[2,1],[0,-1],[1,1],[1,-1],[0,-1],[2,-1],[1,0],[0,1],[-1,1],[1,1],[0,2],[0,2],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,2],[-1,1],[-2,2],[0,1],[0,-1],[-2,0],[-2,1],[-1,0],[0,-1],[0,-2],[0,1],[2,-2],[-1,-1],[-1,0],[1,1],[0,1],[-1,-1],[0,-1],[-1,-1],[-3,0],[0,-1],[-1,0],[0,1],[1,1],[0,1],[0,1],[1,-1],[0,1],[-1,1],[-1,0],[-4,-2],[0,-1],[-1,0],[-2,0],[0,1],[0,1],[2,1],[0,2],[1,1],[0,1],[1,2],[-1,0],[-2,1],[-2,2],[-1,2],[1,1],[0,1],[1,0],[3,0],[1,0],[0,-2],[2,-3],[1,-1],[4,-3],[4,-1],[2,-1],[4,-1],[1,-1],[1,-2],[6,-4],[6,-5],[3,-2]],[[6254,8192],[1,-1],[1,-1],[1,-2],[0,-1],[1,-1],[-6,1],[-3,0],[-1,0],[1,1],[-2,0],[-1,0],[-1,-1],[1,0],[1,0],[-1,-1],[-5,0],[-1,1],[-1,1],[1,1],[0,1],[-1,1],[-2,1],[-4,-1],[0,-1],[2,-1],[-3,1],[0,1],[0,4],[1,1],[1,3],[3,2],[1,-1],[7,-1],[3,-1],[2,-1],[2,-1],[1,-2],[1,-1],[0,-1]],[[6028,8219],[0,-2],[-1,-1],[-4,0],[-4,0],[-2,2],[-2,0],[-2,1],[-1,1],[1,2],[2,1],[1,1],[6,0],[3,0],[3,-1],[1,0],[-1,-1],[0,-1],[1,-1],[-1,-1]],[[6035,8196],[-3,0],[-1,0],[-2,2],[0,1],[0,1],[3,1],[2,1],[3,1],[2,0],[0,-2],[-1,-2],[-1,0],[1,-1],[-1,0],[0,-1],[-2,-1]],[[6273,8144],[0,-1],[-1,0],[0,1],[-1,-1],[0,-2],[-1,-3],[-1,0],[-1,1],[1,1],[0,2],[-2,-1],[0,-2],[-1,0],[-2,1],[0,-1],[2,0],[-1,0],[-1,0],[-1,1],[0,2],[2,1],[4,2],[2,0],[2,0],[0,-1]],[[5873,8097],[2,-1],[-1,-1],[0,1],[0,-1],[-1,0],[1,0],[0,1],[-1,0],[-3,0],[2,-1],[-5,2],[-1,1],[0,1],[1,1],[8,1],[1,0],[3,-1],[-2,-1],[-2,0],[-3,-1],[1,-1]],[[6011,8211],[1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,-1],[-2,0],[-2,2],[-3,2],[-1,2],[0,1],[1,1],[1,0],[2,2],[1,1],[-1,-2],[0,-1],[1,-1],[1,-3],[1,-1],[0,-1]],[[5923,8112],[-5,-1],[-5,0],[-2,-1],[-2,1],[0,-1],[-1,0],[-1,0],[0,1],[1,1],[3,1],[12,0],[1,0],[-1,-1]],[[6416,8195],[2,0],[0,-1],[-1,-1],[-2,0],[0,-1],[-2,0],[0,-1],[-1,0],[-2,0],[-1,0],[1,1],[1,2],[2,2],[2,0],[1,0],[0,-1]],[[5948,8116],[0,-1],[-5,1],[-5,-1],[-1,-1],[1,-1],[-1,1],[-1,-1],[-1,0],[-1,0],[1,2],[0,1],[1,0],[9,1],[3,-1]],[[5964,8119],[-5,-2],[-5,0],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[1,0],[2,1],[10,0]],[[6412,8208],[0,-1],[0,-2],[-1,0],[0,2],[-2,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-2],[0,-2],[-1,-2],[0,-1],[0,1],[-1,1],[1,2],[3,8],[0,1],[0,1],[0,1],[2,1],[2,0]],[[5904,8108],[-1,0],[-4,0],[-4,-1],[-1,1],[-1,-1],[-10,-1],[1,1],[9,1],[8,1],[3,-1]],[[6034,8212],[-4,-1],[-2,0],[-2,-1],[-1,0],[-1,1],[1,1],[5,0],[3,1],[1,1],[1,0],[0,-1],[-1,-1]],[[5971,8121],[5,-1],[1,-1],[-1,0],[-1,0],[-3,0],[-3,1],[-1,0],[0,-1],[0,-1],[-2,2],[2,1],[3,0]],[[6022,8205],[3,0],[1,0],[2,-1],[0,-1],[-3,0],[-1,1],[-2,0],[0,1]],[[5931,8113],[-5,0],[-1,0],[3,1],[4,0],[-1,-1]],[[5887,8103],[-1,-1],[-1,1],[-1,1],[3,1],[1,-1],[-1,0],[-1,-1],[1,0]],[[5993,8113],[-1,-1],[-1,0],[-1,0],[1,2],[2,0],[2,-1],[-2,0]],[[6377,8188],[-3,0],[-1,0],[-1,0],[1,1],[1,0],[2,0],[1,-1]],[[6404,8191],[-1,0],[-3,0],[-3,-2],[0,1],[1,0],[1,1],[2,0],[1,0],[1,1],[1,0],[0,-1]],[[6038,8148],[-1,0],[-1,0],[0,2],[1,0],[1,0],[0,-1],[0,-1]],[[6023,8134],[-1,0],[1,0],[-2,-1],[-1,1],[0,1],[1,0],[2,-1]],[[6016,8137],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,-2]],[[6040,8211],[-1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0]],[[6049,8202],[-1,-1],[-2,1],[1,1],[2,-1]],[[5980,8117],[-1,1],[1,1],[1,0],[0,-1],[-1,-1]],[[6435,8161],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[2,0],[1,-1]],[[6039,8216],[-2,-1],[-1,1],[2,0],[1,0]],[[5981,8116],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,-1]],[[5970,8162],[0,-1],[-1,2],[-1,0],[1,0],[1,0],[0,-1]],[[6410,8176],[0,-1],[-1,1],[0,1],[1,0],[0,-1]],[[6394,8190],[-1,-1],[0,1],[1,1],[2,-1],[-2,0]],[[6443,8177],[0,-1],[0,1],[1,1],[1,1],[0,-1],[-1,-1],[-1,0]],[[6048,8208],[0,-1],[-1,1],[1,0],[1,0],[-1,0]],[[6506,8111],[-1,0],[-1,0],[1,1],[1,-1]],[[5973,8163],[-1,-1],[-1,1],[1,0],[1,0]],[[6275,8149],[0,-2],[-1,0],[0,1],[0,1],[1,1],[0,-1]],[[6026,8193],[-1,-1],[0,1],[1,0]],[[6410,8202],[-1,-1],[0,1],[1,0]],[[6273,8146],[0,-1],[-1,0],[1,1]],[[6033,8241],[2,6],[0,2],[-1,2],[-2,3],[0,1],[0,1],[2,4],[0,1],[2,4],[1,1],[-2,1],[-3,0],[-6,0],[-1,-1],[1,-1],[0,-1],[0,-2],[1,-2],[-2,-2],[-2,-1],[-1,0],[-2,1],[-1,3],[-1,2],[1,4],[0,3],[1,1],[0,1],[2,2],[3,-1],[2,-1],[2,-1],[-2,-2],[0,-2],[5,0],[2,0],[0,1],[3,0],[-1,3],[-1,4],[-1,0],[1,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,2],[-1,0],[-5,-2],[-1,-2],[-1,-1],[-1,1],[-1,0],[0,1],[1,1],[2,1],[1,-1],[2,1],[3,1],[1,0],[1,2],[1,1],[-1,0],[-1,3],[-1,3],[-1,1],[1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[-2,1],[-1,1],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,0],[1,0],[0,1],[-1,-1],[-1,1],[1,0],[-1,1],[0,1],[-1,-1],[0,1],[-1,0],[-2,3],[-5,4],[-2,2],[0,1],[2,0],[1,1],[-1,-1],[0,1],[-1,0],[-3,1],[-2,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[2,-1],[-2,-1],[3,-1],[2,-2],[0,-2],[-1,0],[-1,1],[-8,5],[-2,0],[-7,3],[-1,1],[1,0],[1,3],[3,5],[3,8],[1,4],[0,2],[0,2],[0,3],[-1,3],[-2,11],[-1,2],[0,2],[-1,2],[1,0],[1,-2],[2,-3],[1,-1],[0,-2],[0,-2],[-1,0],[2,-3],[1,-2],[-2,-1],[0,-1],[0,-2],[1,-1],[-1,1],[0,1],[2,0],[-2,0],[1,1],[2,1],[0,1],[-1,1],[0,1],[1,0],[-1,1],[1,1],[2,0],[0,-1],[-1,0],[2,-1],[1,0],[2,0],[-2,-2],[0,-1],[-2,1],[0,-1],[-1,-2],[2,0],[-1,1],[1,1],[1,0],[0,-1],[1,0],[3,2],[2,1],[1,1],[1,1],[2,1],[1,1],[-1,0],[-1,0],[0,1],[1,0],[0,2],[0,1],[0,1],[-2,0],[-1,1],[-2,2],[0,1],[-1,3],[0,1],[0,2],[0,1],[-3,2],[-2,1],[-1,0],[0,1],[-6,1],[-3,2],[1,-1],[0,-1],[-1,-2],[0,-3],[0,-1],[0,-2],[0,-2],[1,0],[-2,-1],[-1,1],[0,3],[-1,2],[1,3],[0,2],[1,7],[1,5],[0,4],[0,1],[-1,4],[0,8],[2,0],[0,-1],[-1,-1],[0,-1],[0,-2],[3,1],[1,0],[-1,0],[0,-1],[2,0],[2,-1],[2,0],[1,-2],[-1,0],[1,-1],[1,0],[2,1],[2,2],[-1,0],[0,1],[0,-1],[-4,1],[1,1],[3,-1],[-3,1],[-1,1],[0,1],[-1,0],[-3,2],[-1,1],[-2,2],[0,1],[1,1],[-1,0],[0,1],[0,1],[-1,-1],[-2,1],[0,-1],[0,-3],[1,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,3],[0,4],[0,5],[0,2],[0,2],[0,2],[1,2],[3,8],[0,2],[3,4],[1,1],[1,0],[0,-1],[-1,0],[1,0],[1,-1],[-1,0],[-1,-2],[1,-1],[-2,-1],[-1,-2],[3,0],[1,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[4,-1],[1,-1],[-2,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,2],[2,0],[3,0],[2,0],[6,-2],[2,-1],[2,-1],[1,0],[1,1],[2,2],[0,1],[1,1],[0,-3],[0,-1],[2,-3],[2,0],[-2,-1],[-1,-1],[1,-1],[1,0],[1,1],[0,-2],[1,-1],[1,-1],[2,0],[4,1],[2,0],[0,1],[1,1],[-1,3],[0,1],[1,2],[1,0],[0,1],[-1,1],[-4,2],[-1,2],[-1,1],[0,1],[1,1],[3,-1],[3,2],[1,2],[1,1],[0,1],[3,2],[2,-1],[0,1],[2,-1],[0,1],[1,1],[1,-1],[1,0],[1,0],[0,1],[-1,1],[-1,-1],[-1,1],[0,-1],[-1,1],[-1,-1],[-2,0],[2,4],[1,1],[0,1],[1,0],[3,2],[1,1],[2,1],[1,0],[6,-1],[1,0],[-1,0],[-1,1],[4,0],[4,-1],[-1,-1],[2,-3],[1,-2],[3,-3],[-2,-1],[-1,-1],[-2,-1],[0,-1],[-1,0],[-1,0],[1,-2],[0,-1],[-2,0],[-2,-1],[-1,-2],[0,-2],[0,-1],[1,-1],[0,-1],[-1,-1],[1,0],[2,0],[1,2],[0,1],[0,2],[2,0],[1,0],[1,0],[1,1],[0,1],[-2,-1],[-2,1],[1,0],[2,1],[1,3],[0,-2],[0,-1],[1,-1],[1,0],[1,0],[2,1],[4,0],[1,-1],[1,0],[1,-1],[-1,-1],[-2,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[3,-3],[1,0],[-1,-1],[1,0],[0,1],[2,1],[1,0],[2,-1],[0,1],[0,1],[0,2],[1,0],[-1,0],[-1,0],[-3,-2],[-2,1],[-1,1],[1,3],[1,2],[1,3],[1,1],[0,1],[-1,1],[-1,3],[-1,0],[-1,0],[-3,-1],[-1,0],[-1,-1],[-2,0],[-2,-1],[-1,0],[0,1],[1,1],[1,1],[2,1],[1,1],[1,1],[1,2],[0,1],[-1,0],[-1,1],[-3,1],[0,1],[0,1],[-1,2],[-1,0],[3,3],[1,1],[0,1],[0,1],[-1,1],[-3,1],[0,1],[1,3],[2,1],[0,1],[2,1],[1,1],[0,1],[1,0],[3,1],[0,1],[0,1],[1,1],[8,1],[4,1],[5,0],[3,-1],[0,-1],[4,-2],[-1,-1],[0,-1],[1,0],[-1,-1],[-1,1],[-2,-1],[1,-1],[1,-1],[2,-2],[-1,1],[1,3],[3,2],[1,0],[0,2],[1,0],[1,1],[2,1],[-1,1],[1,1],[1,1],[8,1],[3,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,1],[0,1],[1,1],[2,0],[1,0],[1,0],[1,-2],[1,-1],[1,0],[0,-1],[2,0],[1,-1],[2,-2],[1,0],[2,-1],[2,-2],[4,0],[5,0],[1,0],[-1,-2],[-1,-1],[1,0],[-2,-2],[0,-2],[-1,-2],[1,-2],[0,-3],[1,-6],[0,-1],[1,-2],[0,-2],[3,-3],[0,-2],[-1,0],[-1,1],[-6,0],[-1,1],[-2,-1],[0,-1],[-1,0],[-2,1],[-1,0],[-2,0],[-2,-1],[0,-1],[-2,0],[-2,1],[-3,-1],[-1,-1],[0,-1],[-2,0],[-2,-1],[-1,0],[-1,0],[0,-1],[1,1],[1,-1],[-1,0],[-1,-1],[-8,0],[-2,0],[-1,-1],[3,0],[1,0],[2,1],[1,-1],[5,1],[2,1],[1,-1],[0,1],[2,1],[2,0],[0,1],[1,1],[1,0],[2,0],[1,0],[1,1],[1,0],[0,1],[1,1],[2,-1],[1,0],[3,-2],[0,-1],[5,2],[2,0],[2,1],[3,0],[1,-1],[1,-4],[-1,0],[1,-1],[-1,-1],[-1,-2],[-3,-1],[-2,-1],[-1,-2],[-2,-1],[0,-1],[-1,-1],[-1,0],[0,-2],[0,-3],[0,-1],[0,-1],[-1,-2],[-2,0],[-5,-2],[-1,0],[0,1],[-2,0],[-2,0],[-2,-1],[3,1],[1,0],[3,-1],[4,1],[1,1],[1,0],[2,0],[2,-1],[2,0],[1,0],[1,1],[-5,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[2,2],[1,2],[3,2],[0,1],[3,-1],[0,-2],[1,-1],[4,-4],[2,0],[0,-1],[4,0],[1,0],[2,-1],[3,0],[7,2],[6,0],[7,1],[1,0],[4,-1],[2,-1],[0,-1],[1,-2],[1,-1],[3,-1],[1,-1],[1,-1],[1,-1],[0,-1],[-2,0],[-1,-1],[1,0],[-1,-2],[0,-1],[-1,-2],[0,-4],[-3,-4],[-1,-1],[-2,0],[-1,-1],[-2,-3],[-1,-2],[-1,0],[-3,-1],[0,-1],[-1,-2],[0,-3],[-1,-2],[-1,-2],[-2,0],[-1,1],[-2,2],[-1,1],[0,1],[1,0],[1,0],[1,2],[0,1],[-1,0],[-1,1],[-1,0],[-2,0],[-2,0],[-1,-1],[0,-1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[2,-2],[0,-3],[0,-1],[-1,-1],[-3,-1],[-2,5],[1,1],[2,0],[1,2],[-1,0],[-1,0],[-3,1],[-2,0],[-1,0],[0,-1],[-1,-1],[-3,0],[-1,1],[0,2],[-3,1],[1,0],[2,0],[2,1],[1,1],[2,1],[-1,-1],[1,-1],[2,-1],[2,1],[-1,1],[0,1],[-1,1],[-1,-1],[1,2],[1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[-2,1],[-1,0],[-2,0],[0,1],[-1,1],[-2,-1],[-2,0],[-1,0],[1,-1],[-1,-1],[-1,0],[-2,-1],[1,-1],[-1,-1],[0,-1],[-3,-1],[-1,-1],[-1,-1],[0,-1],[-2,0],[-2,-2],[-1,-1],[1,0],[0,-1],[-1,-2],[1,1],[1,1],[0,-1],[-2,-1],[-1,0],[0,-2],[1,0],[1,-1],[1,-2],[0,-1],[1,-3],[1,-1],[0,-2],[-1,0],[1,-1],[1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[1,-2],[1,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-1,0],[1,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[-3,1],[-2,2],[0,1],[-1,1],[-1,-2],[-1,0],[-2,-2],[-4,0],[0,1],[1,1],[1,1],[1,0],[4,-1],[0,1],[0,1],[-2,0],[-4,0],[-3,-1],[-1,1],[-2,0],[-1,-1],[0,-1],[1,0],[-1,0],[-2,0],[-2,-1],[-1,1],[-2,0],[0,-1],[-2,0],[2,0],[0,-1],[-2,1],[0,-1],[1,0],[8,-1],[1,0],[1,-1],[2,0],[1,1],[0,1],[0,-1],[0,-2],[2,1],[1,-1],[1,-1],[-4,-3],[0,-1],[0,-1],[5,-1],[0,-1],[-2,0],[-2,-1],[-3,-1],[0,-1],[2,0],[1,-2],[-2,0],[-1,0],[-4,0],[-5,-1],[-4,-1],[-2,-1],[-1,1],[-2,0],[-3,0],[-3,3],[-1,0],[-2,1],[-4,-1],[-4,0],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[2,-1],[1,1],[3,0],[1,-1],[1,1],[2,-1],[0,-1],[1,-1],[1,0],[2,-1],[1,-1],[0,-2],[1,-1],[5,1],[4,-1],[-2,-1],[-4,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[1,-1],[1,-2],[-2,0],[-2,1],[-2,0],[-1,-1],[-2,-1],[-1,0],[-2,0],[0,1],[-2,1],[-1,0],[0,-1],[2,0],[-1,-1],[-2,1],[0,-1],[2,0],[1,-1],[-4,-1],[-3,1],[-1,0],[-1,-1],[1,0],[-1,-1],[1,1],[1,-1],[3,1],[2,0],[2,-1],[1,2],[1,-1],[1,1],[1,-1],[5,-3],[-1,-1],[-3,-2],[-1,-1],[-2,0],[-2,0],[0,-1],[1,-1],[1,-2],[0,-2],[-1,-1],[-1,1],[-2,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[0,-2],[-2,-1],[-1,-1],[2,1],[3,-3],[-4,0],[-2,-2],[-2,0],[-1,-2],[-4,0],[-1,0],[5,0],[2,1],[-1,1],[3,0],[1,1],[1,1],[0,-1],[2,0],[4,-2],[1,-1],[-1,-2],[-3,-2],[0,1],[-1,0],[-1,-1],[0,-1],[3,1],[0,1],[1,-3],[-6,-2],[-1,0],[0,1],[1,0],[0,-1],[1,0],[-1,1],[-1,0],[-2,1],[-5,-3],[-3,-1],[0,-1],[1,-2],[1,0],[-1,-1],[-3,1],[-1,-2],[1,1],[1,-1],[1,1],[1,-1],[1,-1],[2,-1],[0,-1],[1,-1],[-1,-1],[-4,-2],[-3,0],[0,-1],[-3,0],[0,-1],[1,-1],[0,1],[1,-1],[4,-1],[1,1],[1,0],[2,1],[2,0],[1,1],[-1,0],[1,1],[2,-1],[0,-1],[1,-1],[1,-1],[2,-1],[3,-1],[2,0],[2,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[2,-1],[0,-1],[-2,0],[-3,0],[-2,0],[0,-1],[2,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-2],[-2,0],[0,1],[-2,0],[1,1],[-3,0],[-1,0],[-1,0],[-1,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[-2,2],[3,1],[1,-1],[1,0],[1,0],[0,1],[-3,1],[-2,1],[0,-1],[0,-1],[-1,0],[-1,0],[1,-1],[-2,-1],[-1,0],[1,-1],[-1,-1],[-1,-1],[-2,1],[-1,-1],[-1,0],[-2,-2],[0,-1],[-2,-1],[-3,0]],[[6342,8372],[2,0],[3,-2],[1,0],[2,-1],[2,0],[2,0],[4,-1],[3,-1],[2,-1],[0,-1],[5,-2],[-1,-1],[-1,-1],[0,-1],[-3,-2],[-1,-2],[-2,-3],[0,-1],[-1,0],[0,-2],[0,-1],[1,-1],[3,-4],[1,-2],[0,-3],[0,-1],[1,0],[0,-2],[0,-1],[1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[1,1],[2,-1],[-1,-1],[-2,1],[0,-1],[1,-2],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,1],[0,-1],[1,0],[-1,-1],[-1,-1],[0,1],[-2,-1],[0,1],[0,-1],[-1,-1],[1,-1],[-1,-1],[-4,0],[-1,1],[-3,0],[-1,0],[-1,-1],[2,0],[-3,-1],[-4,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-2],[-1,-2],[-1,-1],[-1,-3],[0,-1],[0,-3],[2,-3],[0,1],[7,-3],[3,0],[2,0],[3,-2],[4,-4],[0,-1],[1,0],[-1,-1],[0,-2],[0,-1],[1,-1],[-1,-1],[-2,-1],[-2,-2],[-3,0],[0,-1],[-1,0],[0,-1],[-6,1],[-1,0],[-2,0],[-3,-2],[-1,0],[-3,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-2],[1,-2],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[1,1],[0,1],[-2,0],[-1,-1],[-1,0],[-1,0],[-2,-2],[2,-1],[1,-1],[-1,0],[0,-1],[2,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[3,-1],[2,-1],[-1,-2],[0,-1],[-2,-1],[-1,1],[-1,-1],[-1,1],[-1,0],[1,0],[1,-1],[0,-1],[-1,0],[1,-2],[1,0],[0,-1],[0,-1],[3,-3],[0,-1],[-5,0],[-3,-2],[-2,-1],[-3,0],[-1,0],[-4,2],[-1,1],[-3,1],[1,-1],[-2,0],[-1,1],[-2,1],[-1,0],[-2,1],[-1,1],[-1,1],[-3,1],[-3,1],[-5,2],[-5,1],[2,0],[1,-1],[8,-1],[6,-2],[1,-1],[0,2],[-2,1],[0,1],[-2,1],[-1,0],[0,-1],[1,0],[-2,0],[-1,1],[1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[1,-1],[2,0],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-3,-1],[-2,1],[0,1],[3,1],[-1,1],[-1,0],[1,1],[1,0],[0,1],[0,-1],[-1,0],[-2,1],[3,1],[1,1],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,-1],[-2,-1],[0,-1],[-1,0],[-4,1],[-3,0],[-2,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,-1],[3,0],[1,-2],[2,1],[-2,-1],[-2,0],[-3,0],[-1,0],[0,1],[3,-1],[-1,2],[-2,0],[-1,-1],[-1,0],[-1,1],[-2,0],[-1,0],[0,-1],[3,0],[-5,0],[-1,0],[-2,1],[-1,0],[-1,1],[0,1],[1,0],[-1,2],[1,0],[3,-1],[0,2],[1,0],[-2,-1],[-1,1],[-1,-1],[-1,1],[1,1],[-1,1],[0,1],[0,1],[-3,1],[-2,1],[-2,1],[-2,1],[0,1],[1,0],[3,-1],[1,0],[0,1],[2,0],[0,1],[-3,1],[-1,0],[-1,0],[0,-1],[1,-1],[-2,0],[-2,0],[0,1],[-2,0],[0,1],[2,2],[0,-1],[2,0],[1,1],[2,1],[2,0],[1,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,2],[-2,2],[-1,1],[-1,1],[1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-2,0],[-1,1],[1,1],[3,1],[1,-1],[1,0],[1,1],[-1,0],[-1,0],[1,1],[1,1],[0,1],[-1,2],[-2,3],[-1,1],[-6,3],[-3,1],[-5,0],[-1,0],[0,1],[0,1],[3,-1],[2,0],[5,-1],[1,0],[2,1],[0,1],[-2,0],[1,-1],[-1,1],[-2,1],[-2,2],[-2,1],[0,1],[-2,1],[-5,0],[-2,0],[-2,1],[3,0],[1,1],[3,0],[4,-1],[2,-1],[2,0],[3,0],[5,2],[3,0],[1,-1],[-1,1],[0,-1],[1,-1],[2,0],[1,1],[-1,0],[1,1],[2,-2],[2,0],[1,1],[1,1],[-1,0],[1,0],[1,0],[-1,0],[0,-1],[1,0],[0,1],[2,0],[2,1],[1,0],[1,2],[0,1],[0,1],[0,2],[0,2],[-1,1],[-1,0],[1,0],[2,-1],[1,0],[4,1],[2,0],[2,0],[1,1],[1,2],[0,1],[1,0],[0,-1],[0,2],[0,1],[0,-2],[-1,1],[0,2],[0,2],[0,1],[-5,1],[-7,1],[-4,2],[-2,0],[-1,0],[0,1],[-1,2],[0,1],[1,-2],[2,-1],[6,-2],[3,0],[3,0],[2,0],[3,-1],[6,1],[1,-2],[2,-1],[6,1],[4,3],[3,0],[1,-2],[0,-1],[0,1],[-1,0],[-2,-2],[-1,-1],[1,-2],[-1,0],[-1,-1],[-2,0],[0,1],[-3,1],[0,-1],[0,-1],[-1,-1],[1,-1],[1,-1],[2,-1],[0,-1],[1,-2],[1,-1],[-2,-2],[-3,1],[-1,0],[-1,-1],[0,-1],[-3,-1],[0,-1],[1,0],[0,-1],[2,0],[2,1],[1,0],[1,1],[3,1],[1,-1],[0,-2],[1,-1],[-1,1],[-1,-1],[1,0],[2,-1],[0,-1],[-2,0],[-1,0],[-1,-1],[-5,0],[-1,0],[0,-1],[2,-1],[3,1],[2,-1],[2,1],[1,0],[-1,1],[1,0],[1,-1],[1,-1],[1,-2],[0,-2],[-1,0],[-1,-1],[-1,-1],[1,0],[2,0],[0,1],[1,1],[1,1],[1,2],[1,3],[1,0],[1,0],[-2,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,4],[1,0],[0,2],[3,0],[1,0],[1,0],[1,1],[1,3],[-1,1],[0,1],[-1,0],[-1,1],[1,1],[-3,3],[0,2],[1,0],[4,-1],[2,-2],[2,1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[3,-1],[0,-1],[0,-1],[0,-1],[0,-1],[2,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-4],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,1],[-1,1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-2],[-1,-1],[-2,-3],[0,-1],[1,0],[0,1],[1,1],[0,1],[4,0],[0,2],[0,1],[0,-1],[1,0],[2,0],[1,-1],[1,-1],[-3,0],[0,1],[-2,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[2,1],[0,-1],[0,-1],[2,-1],[1,2],[-1,0],[-1,1],[1,2],[2,0],[1,1],[-1,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,1],[1,1],[-2,1],[1,2],[-2,1],[1,1],[-1,1],[0,2],[-1,0],[0,2],[-1,0],[0,1],[2,1],[0,1],[0,1],[-2,1],[0,1],[0,1],[0,2],[-2,2],[0,1],[-1,0],[1,1],[-1,-1],[0,1],[-1,0],[-2,0],[-2,-1],[-1,0],[-4,-2],[-3,1],[-1,2],[1,1],[3,1],[3,2],[7,3],[4,3],[3,2],[6,3],[3,1],[4,1],[1,0],[4,1],[1,-1]],[[6183,8530],[0,-1],[0,-1],[2,-3],[2,-3],[1,0],[1,-2],[1,-1],[2,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-2],[0,-2],[0,-3],[1,-2],[0,-1],[0,-3],[1,-3],[1,-2],[0,-1],[-1,-2],[-1,-1],[-3,-1],[-5,-4],[-1,-2],[-2,-3],[-1,-4],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,-3],[-2,-2],[-2,0],[-1,0],[-5,-1],[-3,2],[-5,3],[-4,2],[-5,3],[-1,1],[-1,0],[-4,-1],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-3,1],[-3,3],[-5,2],[0,-1],[1,-1],[-2,0],[-1,-2],[-1,-1],[-4,-1],[-2,2],[-1,0],[-3,-2],[-1,-1],[-3,0],[0,-1],[-7,0],[-1,1],[-5,-1],[-4,-2],[-1,0],[-6,-1],[0,-1],[-2,-1],[-3,0],[-2,1],[-4,2],[0,1],[0,-1],[-1,1],[-2,1],[2,-1],[-1,1],[-4,-1],[-3,-1],[2,0],[-3,-1],[-1,0],[0,1],[-1,0],[-3,0],[-1,-1],[-1,-1],[-2,1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,0],[2,-1],[0,-1],[-1,-1],[-3,-1],[-1,0],[-2,-1],[-5,1],[-1,0],[1,-1],[-3,0],[-1,-1],[1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-4,-3],[-3,0],[0,-1],[-1,0],[-2,-1],[-2,-1],[0,-1],[0,-1],[2,-2],[-1,0],[0,-2],[-1,-1],[0,-1],[4,0],[-1,-2],[2,0],[-2,-1],[0,-1],[-5,2],[-2,-1],[-1,-1],[-1,0],[2,-1],[1,1],[3,1],[1,0],[-1,0],[0,-1],[1,-1],[2,0],[2,1],[0,1],[1,0],[1,0],[2,0],[0,1],[0,-2],[-1,-2],[2,-2],[1,0],[-1,1],[-1,0],[1,1],[2,0],[1,0],[1,0],[0,-1],[-1,0],[1,-1],[-1,-1],[1,-1],[1,0],[-1,0],[-3,2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-4,0],[-1,-1],[0,-1],[1,0],[-1,0],[2,-1],[-1,0],[-1,1],[-2,1],[-1,1],[0,2],[-1,1],[-1,1],[-1,1],[-3,2],[-2,0],[-2,1],[-2,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,2],[0,1],[-1,1],[-2,2],[-1,0],[-1,-8],[-1,0],[-1,3],[0,2],[0,4],[1,1],[1,2],[0,2],[2,2],[0,1],[3,4],[3,4],[2,3],[1,0],[4,4],[3,3],[1,2],[2,0],[1,0],[3,4],[4,4],[2,0],[2,0],[6,-2],[3,0],[6,1],[5,1],[3,1],[5,3],[5,0],[6,-2],[1,0],[3,0],[7,0],[4,1],[10,2],[3,1],[4,3],[5,3],[5,5],[3,3],[4,5],[4,5],[1,2],[2,4],[2,2],[2,2],[4,3],[2,2],[3,4],[1,1],[2,1],[2,0],[-1,0],[1,0],[1,0],[5,0],[3,-1],[4,1],[4,0],[7,3],[4,1],[2,2],[11,6],[4,3],[4,1],[5,1],[1,-1],[-4,-3],[-1,0],[-2,-1],[-4,-3],[-4,-4],[-1,-2],[-1,-2],[-1,-2]],[[6174,8318],[8,-3],[3,-3],[1,0],[7,-4],[1,-1],[0,-1],[-1,1],[-2,2],[-2,1],[0,-1],[0,-1],[-2,0],[1,-2],[2,-1],[-2,-2],[-2,1],[-1,-1],[1,0],[-1,-1],[0,1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[-2,-1],[-1,-1],[0,-1],[0,1],[1,1],[2,0],[1,1],[0,1],[0,1],[1,1],[1,0],[-1,0],[0,-1],[-1,-2],[0,-1],[1,-1],[-1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[2,2],[-1,0],[1,0],[-1,0],[0,2],[3,-1],[1,1],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[0,1],[-1,1],[-4,2],[0,1],[2,0],[2,-1],[1,0],[0,1],[-1,0],[0,2],[-1,1],[0,2],[-1,1],[1,1],[0,-1],[0,-1],[1,-1],[1,-1],[1,1],[-1,2],[-1,2],[0,1],[-1,-1],[-1,1],[0,1],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[1,0],[1,-1],[4,-5],[0,-1],[1,0],[1,-2],[0,-1],[1,-2],[2,-2],[1,-1],[0,-1],[-1,0],[-2,0],[-3,-1],[-1,-1],[-1,-1],[0,1],[-1,0],[-1,-1],[1,0],[-2,0],[0,1],[-1,0],[-1,1],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[1,-1],[1,-1],[1,0],[0,1],[0,1],[1,1],[1,0],[0,-1],[3,-1],[1,1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[2,-1],[1,-1],[2,-2],[0,-1],[1,-1],[1,-3],[1,-2],[2,0],[0,-1],[-2,0],[-1,0],[0,1],[-2,1],[-1,0],[0,-1],[-1,0],[1,0],[1,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[2,-2],[-1,-1],[0,-1],[1,-1],[-1,-3],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-3,-1],[-2,1],[0,-1],[-1,0],[-2,0],[-3,0],[-1,0],[0,-1],[-3,-1],[-4,-1],[-2,0],[-1,1],[-1,0],[-4,0],[-1,0],[-2,1],[0,1],[-1,0],[-1,1],[0,-1],[0,-1],[-1,0],[-3,1],[-1,1],[-1,0],[0,1],[-2,1],[-3,1],[-1,1],[-1,-1],[1,-1],[1,-1],[-2,-1],[0,-1],[-1,0],[0,1],[-1,1],[-2,0],[-3,2],[-4,-2],[-1,0],[0,1],[1,2],[1,1],[0,-1],[1,0],[1,1],[2,1],[2,0],[1,1],[-1,0],[-2,2],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,-1],[-2,0],[-4,0],[0,1],[0,1],[-2,1],[-1,-1],[2,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[3,-3],[-2,-1],[-3,1],[-1,0],[1,1],[0,1],[0,2],[0,1],[0,1],[0,2],[-1,1],[-1,0],[-3,0],[0,1],[-1,1],[-4,2],[1,0],[1,-1],[1,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[0,3],[0,1],[1,0],[-1,0],[-1,2],[0,1],[0,-1],[1,0],[1,0],[-2,1],[0,1],[-1,0],[-2,0],[-5,1],[0,1],[1,0],[2,0],[2,1],[-1,2],[-1,1],[-3,0],[1,1],[2,-1],[1,1],[0,1],[-3,0],[-4,1],[-1,0],[1,1],[-3,2],[1,1],[0,-1],[3,-1],[1,-1],[1,0],[3,-1],[-1,1],[-1,0],[-2,1],[1,1],[1,-1],[-1,2],[-2,-1],[-2,1],[0,1],[-1,1],[-2,0],[0,1],[-2,1],[1,1],[1,0],[3,-2],[2,1],[0,1],[1,1],[-1,1],[3,1],[1,0],[2,1],[2,-1],[0,-1],[0,-1],[1,-2],[4,0],[2,0],[4,2],[3,2],[1,1],[1,0],[3,0],[0,1],[3,1],[1,0],[1,0],[3,1],[1,0],[-1,0],[2,1],[1,0],[1,1],[5,1],[0,-1],[0,-1],[0,-1],[2,0],[1,0],[-1,1],[0,1],[-1,2],[2,0]],[[6254,8246],[2,-1],[2,-2],[2,-1],[1,0],[1,-1],[0,-1],[1,-2],[4,-1],[1,0],[-1,-1],[1,0],[1,0],[2,0],[-1,-2],[1,-1],[0,1],[1,-1],[1,0],[1,0],[3,-1],[1,0],[1,0],[2,0],[2,-2],[2,-1],[-4,3],[-1,1],[-2,1],[1,1],[1,1],[2,-1],[1,0],[3,1],[-1,1],[1,2],[-1,1],[2,0],[4,-3],[3,0],[-1,-1],[1,-2],[3,-1],[1,0],[-1,-2],[0,-1],[6,-4],[1,-1],[0,-2],[0,-1],[-1,-1],[-2,0],[-1,1],[0,-2],[-1,0],[0,-1],[3,-1],[1,0],[1,-1],[-2,0],[0,-1],[1,0],[-1,-1],[-2,-1],[0,-1],[-1,-1],[-4,1],[-3,0],[1,1],[-1,0],[-1,-1],[-1,1],[-1,1],[-1,-1],[-1,0],[-3,0],[-2,0],[-1,1],[-1,-1],[1,0],[-2,0],[0,-1],[-1,0],[-1,-1],[-4,-1],[-1,-1],[-2,-1],[3,-2],[0,1],[1,-1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[-3,2],[-5,2],[-4,2],[-3,2],[-1,1],[-2,1],[-3,2],[-2,0],[-2,1],[-5,2],[-6,1],[-1,0],[-5,2],[-1,2],[-2,2],[0,2],[-1,2],[1,0],[2,-1],[-2,1],[0,-1],[0,-1],[0,-1],[1,-1],[2,0],[1,0],[0,1],[-2,2],[3,-1],[2,0],[0,-1],[0,-1],[2,0],[1,1],[-1,1],[0,1],[0,-1],[1,-1],[1,1],[1,1],[1,0],[-1,1],[3,-1],[-1,1],[-2,0],[-2,0],[0,1],[-1,0],[-1,2],[-1,1],[-1,0],[-1,1],[0,1],[1,2],[2,2],[1,1],[2,1],[2,-1],[0,-1],[0,1],[-1,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[3,1],[2,1],[3,-1],[1,0],[2,0]],[[6561,8274],[2,-1],[1,1],[1,0],[1,-1],[1,-1],[2,-2],[6,-3],[1,0],[2,-1],[1,0],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-2],[-2,0],[-2,-3],[-5,1],[-5,1],[-2,1],[-1,0],[-3,2],[-4,1],[-1,0],[-1,1],[-2,1],[-1,-1],[-3,2],[-1,1],[-1,0],[-1,1],[-2,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[-1,3],[1,0],[0,3],[1,1],[2,2],[1,3],[0,1],[1,1],[1,0],[0,-1],[2,-1],[1,-2],[1,-1],[3,-1],[1,-1],[1,-1],[3,-1]],[[6305,8244],[1,-1],[0,-1],[1,0],[2,0],[-1,1],[1,1],[3,0],[2,-1],[0,-1],[0,-1],[0,-1],[2,0],[4,-1],[2,0],[3,0],[1,-1],[0,-2],[2,-1],[1,-1],[0,-1],[0,-1],[-2,0],[-1,-2],[-1,-1],[-3,-1],[-2,-2],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-3,-2],[-1,-3],[-1,-1],[0,-2],[1,-5],[0,-3],[0,-2],[-4,2],[0,2],[-1,2],[-3,4],[-1,1],[0,1],[1,1],[0,1],[2,2],[1,1],[-4,1],[0,1],[1,0],[1,1],[-2,2],[0,2],[-1,0],[-1,1],[-1,1],[-1,0],[-2,1],[1,1],[1,1],[0,1],[-2,0],[1,1],[-2,1],[-2,0],[0,1],[0,1],[-1,0],[1,1],[-1,0],[0,1],[0,1],[1,2],[-1,1],[-4,0],[2,2],[1,0],[1,1],[2,1],[1,-1],[1,-1],[0,-1],[1,0],[1,0],[0,1],[1,1],[-1,1],[1,0],[4,-2],[0,-1]],[[6055,8456],[0,-1],[-1,-3],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,-1],[0,-1],[1,-1],[0,-2],[1,-2],[2,-1],[0,-1],[0,-1],[-1,1],[-1,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-4,-3],[-1,-1],[0,-1],[-3,-2],[-2,1],[-6,-2],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[1,0],[1,0],[0,1],[-2,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[1,0],[0,-2],[-3,-1],[0,3],[1,0],[0,1],[-2,1],[-2,-2],[-2,0],[1,2],[3,2],[1,0],[-1,2],[0,1],[1,0],[2,1],[1,0],[2,-1],[2,1],[2,0],[0,1],[0,1],[-5,1],[1,1],[2,0],[1,0],[-2,0],[2,2],[0,1],[-1,1],[0,1],[3,1],[3,0],[2,0],[1,1],[6,0],[0,1],[1,2],[2,2],[1,0],[3,1],[1,1],[1,1],[-1,0],[2,1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[2,-3],[-1,-1],[-1,-1]],[[6135,8256],[1,-1],[0,-1],[3,-1],[2,0],[2,-1],[4,-3],[2,-4],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-4,0],[-1,-1],[-1,-1],[-1,0],[-4,0],[-2,1],[-2,0],[-2,2],[2,1],[1,1],[1,-1],[0,-1],[3,-1],[2,0],[1,-1],[1,-1],[0,1],[-1,1],[-3,2],[-4,2],[-1,0],[-1,-1],[1,0],[-1,0],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,4],[0,1],[1,-1],[2,-1],[2,-3],[1,0],[3,1],[1,0],[-2,0],[-2,0],[2,1],[-1,0],[-1,0],[1,1],[1,0],[0,1],[0,-1],[-1,0],[-2,2],[-3,0],[0,1],[2,0],[-2,0],[-1,0],[0,1],[2,1],[-1,0],[-3,0],[-5,0],[-2,1],[0,1],[2,0],[1,1],[0,-1],[1,0],[0,1],[-1,0],[1,0],[-1,1],[-1,-1],[-3,0],[-1,0],[0,1],[1,1],[1,1],[3,1],[4,1],[3,-1],[3,-1],[2,-2],[1,0]],[[6218,8246],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-2,-4],[-1,-2],[-1,-2],[0,-1],[-2,-5],[-1,-2],[-2,0],[-1,0],[-1,2],[-1,1],[1,0],[0,1],[-1,2],[0,1],[0,1],[-2,2],[-3,1],[-1,1],[1,1],[0,-1],[4,-1],[1,2],[0,1],[0,3],[1,0],[2,-1],[1,0],[0,1],[0,1],[1,0],[-1,1],[-1,0],[-2,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[2,2],[2,1],[1,0],[2,1],[1,2],[1,1],[1,2],[1,1],[1,1],[0,2],[1,1],[0,2],[2,2],[0,1],[0,1],[2,1],[1,1],[0,1],[2,-1],[0,-1],[-2,-4],[0,-2],[-1,-4],[-1,-1],[0,-2],[-1,-2],[-1,-2],[-2,-2],[-2,-2]],[[6339,8256],[0,-1],[3,-1],[3,0],[6,-1],[1,0],[3,0],[1,0],[3,-1],[2,-2],[1,-2],[0,-1],[-1,-2],[-3,0],[-8,2],[-2,0],[-3,0],[-2,-1],[-4,-2],[-3,-3],[-1,-1],[-2,-2],[-2,0],[-4,0],[-1,2],[1,0],[1,0],[-4,0],[2,1],[-1,1],[0,2],[3,1],[-2,0],[-1,1],[3,1],[1,1],[2,-1],[0,1],[-2,1],[1,0],[2,-1],[1,-1],[5,2],[1,0],[-1,-2],[2,0],[1,1],[1,1],[3,0],[-3,0],[-1,0],[-2,0],[-1,2],[1,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[3,1],[1,-1]],[[6196,8353],[2,-2],[2,0],[2,-1],[-2,-1],[-1,0],[0,-2],[1,0],[0,-1],[1,-1],[3,2],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,-2],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,-2],[-4,1],[-2,0],[-1,1],[0,2],[-1,2],[1,2],[0,2],[1,1],[3,0],[0,1],[1,1],[0,1],[1,2],[-1,1],[-1,1],[-2,1],[-2,0],[0,1],[-1,2],[0,1],[0,1],[3,2],[1,0],[0,-1],[0,-3],[1,-2]],[[6248,8501],[0,-1],[0,-2],[-1,0],[1,1],[-1,0],[0,1],[-1,-1],[-2,0],[-3,0],[-3,-1],[-1,-1],[2,0],[0,-2],[-1,-2],[-1,0],[-5,0],[-2,0],[-1,0],[-2,0],[-1,0],[-4,1],[-2,1],[3,2],[3,2],[4,1],[2,0],[2,1],[1,0],[5,0],[4,1],[4,0],[0,-1]],[[6368,8326],[-1,-1],[1,0],[1,0],[-2,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-2],[-1,-1],[0,-1],[1,-1],[-4,-1],[-1,0],[-1,-1],[-2,-1],[-2,0],[-1,2],[-1,0],[-1,0],[-2,2],[0,2],[4,3],[1,1],[0,1],[1,1],[1,0],[2,2],[-1,0],[0,1],[1,0],[1,0]],[[6178,8238],[1,0],[0,1],[1,0],[1,1],[-1,2],[2,-2],[0,-1],[0,-1],[2,-2],[1,0],[1,0],[-1,1],[1,0],[2,-1],[-2,2],[-1,1],[2,0],[-1,0],[1,0],[4,-3],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[-4,0],[-3,-1],[0,-1],[-1,-1],[-6,3],[-3,3],[-3,2],[-3,3],[0,2],[-1,0],[-2,3],[-1,1],[1,0],[1,-1],[1,-1],[2,-1],[2,-1],[2,-1],[3,-3],[2,-1],[0,-1]],[[6203,8254],[-1,-1],[-1,-2],[-1,-1],[0,-1],[1,0],[1,-1],[1,1],[1,1],[1,1],[0,-1],[0,-2],[-3,0],[-2,-1],[-1,-2],[-3,1],[-1,-1],[-1,0],[-1,1],[1,1],[-3,1],[0,2],[1,0],[-1,1],[-1,1],[1,0],[1,0],[1,1],[2,1],[0,-1],[1,2],[1,0],[1,1],[2,0],[-1,1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[1,0]],[[6014,8301],[-1,-3],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,-3],[0,-1],[-1,0],[0,-1],[1,-1],[1,-3],[0,-2],[-2,1],[-2,0],[0,1],[-2,4],[-3,4],[-3,1],[0,2],[2,1],[-1,-1],[1,-1],[0,2],[1,0],[2,1],[2,-1]],[[6287,8438],[-4,-2],[-3,-2],[-1,-1],[-2,0],[-1,0],[-1,2],[-1,1],[2,1],[3,0],[7,2],[1,-1]],[[6070,8448],[-2,-1],[-2,0],[-1,-1],[-1,-1],[-3,1],[-1,2],[-1,1],[1,0],[7,1],[3,0],[-1,0],[-1,-1],[0,-1],[2,0]],[[6266,8247],[1,0],[1,0],[1,0],[2,-2],[-3,0],[-3,-3],[-2,2],[-1,2],[-1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[2,-1],[1,1],[0,1]],[[6381,8317],[0,-1],[-2,0],[-1,2],[-1,1],[0,1],[0,1],[1,1],[2,1],[1,0],[0,-1],[0,-5],[1,0],[-1,0]],[[6302,8336],[1,-1],[-2,-2],[0,-1],[-2,0],[-2,2],[-1,1],[1,1],[1,0],[2,-1],[0,1],[1,1],[-1,1],[1,0],[1,-2]],[[6316,8244],[1,0],[1,0],[3,0],[2,-1],[0,-1],[-1,-1],[2,0],[-8,1],[-1,2],[0,1],[-1,1],[1,0],[0,-1],[1,-1]],[[6249,8344],[0,-1],[0,1],[-1,0],[-3,1],[-3,1],[-1,2],[-3,1],[0,1],[3,-1],[0,-1],[3,0],[3,-3],[2,-1]],[[6174,8335],[1,-1],[-1,-3],[-1,0],[-2,1],[-3,-1],[-1,1],[1,1],[2,0],[3,0],[0,1],[-1,-1],[0,1],[1,2],[1,0],[0,-1]],[[6277,8246],[-1,-1],[-1,1],[0,1],[0,1],[-2,1],[2,1],[2,0],[2,-2],[-2,-2]],[[6237,8493],[-2,-1],[-4,1],[4,-1],[-3,-2],[-1,0],[-1,1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[2,1],[5,0]],[[6248,8272],[1,-1],[0,1],[1,0],[-1,-1],[-3,1],[0,6],[1,-1],[0,-1],[-1,0],[2,-1],[1,-3],[-1,0]],[[6207,8256],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[1,1],[2,0],[-3,0],[-1,0],[0,1],[1,1],[1,-1],[2,1],[1,-1]],[[6033,8415],[-2,-1],[0,2],[0,1],[0,2],[2,3],[2,0],[-1,0],[-1,-1],[1,-1],[-2,-2],[0,-1],[1,0],[0,-2]],[[6132,8286],[1,-1],[0,-1],[0,-1],[-3,0],[0,2],[0,1],[1,0],[1,0]],[[6159,8257],[3,-1],[0,-1],[-2,-1],[-1,1],[-1,1],[0,1],[2,1],[-1,-1]],[[6292,8269],[-3,0],[0,1],[1,1],[0,2],[1,0],[2,-1],[-1,-1],[0,-2]],[[6135,8473],[-1,0],[-2,0],[0,1],[2,1],[2,0],[1,-1],[0,-1],[-2,0]],[[6128,8279],[-1,-1],[-2,0],[-1,1],[0,1],[2,0],[1,0],[0,-1],[0,-1],[1,1],[0,1],[0,1],[1,-1],[-1,-1]],[[6171,8253],[2,0],[1,-1],[2,1],[0,-2],[-3,1],[-1,1],[-3,0],[-2,1],[0,1],[1,0],[3,-2]],[[6335,8257],[0,-1],[-1,0],[0,-2],[-3,1],[-1,1],[2,0],[1,1],[2,0]],[[6200,8240],[-1,-1],[-1,0],[-1,2],[0,1],[2,0],[1,0],[0,-2]],[[6246,8270],[0,-1],[-1,-1],[-1,-2],[-1,2],[2,1],[1,1]],[[6123,8302],[-1,0],[-1,0],[-1,2],[0,1],[1,0],[2,-2],[0,-1]],[[6274,8241],[-1,0],[-1,0],[3,-2],[-3,-1],[-1,1],[0,1],[1,0],[-1,1],[2,0],[1,0]],[[6183,8249],[1,-1],[-1,-1],[-3,1],[-2,0],[2,1],[3,-1],[0,1]],[[6288,8270],[0,-1],[0,-1],[2,0],[1,-1],[0,-1],[-3,2],[-1,0],[-1,2],[1,0],[0,-1],[1,1]],[[6072,8454],[2,-2],[-3,2],[-1,1],[-1,0],[1,1],[1,1],[1,-2],[-1,-1],[1,0]],[[6155,8339],[-2,0],[-1,1],[2,1],[1,-1],[1,0],[-1,-1]],[[6186,8354],[-2,-1],[-2,0],[-1,1],[1,1],[4,-1]],[[6111,8263],[-1,0],[-1,1],[0,1],[1,0],[1,-1],[0,-1]],[[6257,8335],[0,-2],[-1,1],[-1,2],[0,1],[1,-1],[1,-1]],[[6163,8316],[-1,0],[0,3],[-1,1],[0,1],[2,-1],[0,-1],[0,-2],[0,-1]],[[6189,8251],[-2,0],[-2,0],[1,1],[1,1],[-1,-1],[3,-1]],[[6234,8489],[-3,-1],[0,1],[3,1],[0,-1]],[[6325,8248],[-1,-1],[0,1],[0,1],[2,1],[-1,-2]],[[6231,8287],[-4,-1],[2,1],[1,1],[0,-1],[1,0]],[[6124,8289],[-2,0],[-1,0],[1,1],[1,0],[1,-1]],[[6324,8246],[-2,-1],[-2,1],[4,1],[0,-1]],[[6377,8317],[3,-2],[-1,0],[-2,1],[-1,0],[0,1],[1,0]],[[6263,8255],[-3,-2],[0,1],[1,1],[1,0],[1,0]],[[6306,8250],[1,-2],[-1,1],[-1,1],[1,0]],[[6292,8264],[-1,0],[0,1],[0,2],[1,0],[0,-1],[0,-2]],[[6230,8492],[-1,0],[-2,1],[1,0],[1,0],[1,-1]],[[6206,8246],[0,-1],[-1,0],[0,1],[-2,1],[3,-1]],[[6169,8257],[2,0],[-2,0],[-2,1],[0,1],[1,-1],[1,-1]],[[6187,8301],[-1,0],[0,1],[2,1],[-1,0],[-1,-1],[1,-1]],[[6322,8331],[1,-1],[-2,0],[1,1]],[[6370,8324],[-1,-1],[-1,1],[1,1],[0,-1],[1,0]],[[6189,8244],[2,-1],[-2,0],[0,1]],[[6187,8247],[2,0],[-1,-1],[-1,1]],[[6007,8306],[0,-1],[-2,1],[0,1],[2,-1]],[[6215,8306],[-2,0],[0,1],[1,0],[1,-1]],[[6233,8234],[0,-2],[-1,2],[1,1],[0,-1]],[[6111,8467],[-1,0],[-1,1],[1,0],[1,-1]],[[6054,8465],[1,0],[1,0],[-2,-1],[0,1]],[[6188,8243],[1,-1],[-2,0],[1,1]],[[6258,8247],[-1,0],[0,1],[1,-1]],[[6215,8373],[-1,0],[1,1],[0,-1]],[[6148,8345],[0,-1],[-1,0],[0,1],[1,0]],[[6004,8359],[-1,-2],[0,1],[1,1]],[[6001,8347],[1,-1],[-2,1],[1,0]],[[6236,8234],[-1,0],[1,1],[0,-1]],[[6201,8347],[1,0],[-1,0],[-1,1],[0,-1],[1,0]],[[6224,8493],[-1,0],[-1,0],[1,1],[1,-1]],[[6025,8435],[0,-1],[-1,0],[0,1],[1,0]],[[6157,8265],[-5,0],[3,0],[1,1],[1,-1]],[[6198,8521],[1,-1],[-1,0],[-1,0],[1,1]],[[6176,8256],[-1,-1],[-1,0],[2,1]],[[6370,8322],[0,-1],[-1,0],[1,0],[-1,1],[0,1],[1,-1]],[[6196,8240],[0,-1],[-1,1],[1,0]],[[6199,8313],[-1,0],[0,1],[1,-1]],[[6300,8331],[0,-1],[-1,1],[1,0]],[[5995,8395],[-1,0],[1,1],[0,-1]],[[6584,8285],[-1,0],[0,1],[1,0],[-1,0],[1,0],[0,-1]],[[7605,8523],[-2,0],[-2,2],[-3,1],[-1,0],[-2,1],[-3,-1],[-3,1],[-1,0],[-2,1],[-2,0],[-1,1],[-1,0],[0,1],[-2,0],[-1,0],[1,1],[-2,1],[-3,0],[0,1],[-1,0],[-1,-1],[-2,0],[0,1],[1,0],[0,1],[-2,0],[0,1],[-2,0],[-2,-1],[-2,-1],[0,-1],[0,-1],[-2,-1],[-3,0],[-2,-1],[0,-2],[-2,1],[2,1],[-2,0],[-1,1],[-1,-1],[1,0],[-1,-1],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[-3,-2],[1,-2],[-3,1],[0,1],[0,1],[-1,-1],[-1,0],[0,-1],[0,-1],[-3,1],[-2,0],[-1,3],[-2,3],[-5,0],[-4,1],[-1,0],[-1,-1],[-2,1],[0,1],[-2,0],[-1,0],[-2,3],[0,1],[-1,1],[0,1],[0,1],[-2,1],[0,1],[-1,1],[-2,0],[2,3],[-2,1],[-3,1],[-1,1],[1,0],[-1,1],[-2,0],[-3,2],[-2,-1],[-1,1],[-1,0],[-1,0],[1,1],[1,2],[0,1],[2,3],[0,1],[-2,1],[-1,-1],[-1,2],[-1,0],[-3,-2],[-3,1],[-4,-1],[0,1],[-1,1],[-1,-1],[-3,1],[-3,4],[0,1],[-4,2],[-1,-1],[-1,0],[-1,-2],[-2,0],[0,1],[-3,1],[-1,1],[-4,2],[0,1],[1,0],[-2,2],[-1,-1],[-1,1],[-2,0],[0,-1],[-1,0],[0,1],[1,0],[-1,1],[-2,-1],[-1,1],[-2,1],[-1,0],[0,1],[2,0],[-1,1],[-4,2],[-4,0],[-1,2],[-2,2],[-2,2],[-1,0],[-1,-2],[-1,0],[0,-1],[2,-1],[1,-1],[0,-3],[0,-1],[0,-1],[-2,0],[-2,0],[0,1],[-1,0],[-1,1],[0,1],[1,0],[-1,1],[0,-1],[-1,1],[0,1],[1,1],[0,1],[-1,-1],[0,1],[-1,0],[0,1],[1,1],[0,1],[-1,0],[-1,-1],[-7,0],[0,-1],[-2,0],[-1,0],[-2,-3],[-3,-2],[-2,-1],[-4,0],[-9,-4],[-2,2],[-6,-1],[0,-2],[-2,0],[-2,-2],[-1,1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,1],[-2,1],[-1,-1],[-2,-1],[-2,0],[-1,0],[0,-1],[0,-1],[-4,0],[-2,-2],[1,-1],[0,-2],[-4,-2],[0,1],[-2,0],[-2,0],[-1,0]],[[7353,8561],[1,1],[0,2],[2,2],[0,2],[2,4],[1,2],[2,2],[1,2],[1,2],[1,2],[0,1],[0,1],[0,5],[0,1],[0,1],[-1,3],[-1,-1],[0,4],[1,1],[1,1],[0,1],[0,1],[0,1],[1,1],[2,1],[3,1],[2,1],[1,1],[0,1],[0,2],[-2,2],[-2,2],[-1,0],[-4,2],[-1,-1],[-1,1],[-7,1],[-6,-1],[-1,-2],[0,-3],[0,-2],[-1,-2],[-1,-2],[-4,-1],[-3,-1],[-1,0],[-2,-1],[-2,-1],[-1,0],[-2,1],[-2,1],[0,1],[-2,3],[-1,1],[-1,1],[-1,0],[0,-1],[0,-1],[-2,2],[0,-1],[-3,2],[-3,1],[0,-2],[-3,1],[-2,2],[-1,2],[-1,-1],[0,-1],[0,-1],[-1,1],[-1,0],[-1,0],[-2,1],[0,-1],[1,0],[-1,-1],[-1,0],[-1,2],[0,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,2],[-1,1],[0,1],[0,3],[1,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[-2,1],[-1,-1],[-1,0],[-1,0],[-2,2],[-1,1],[-2,0],[0,2],[1,1],[-1,1],[-1,-1],[-1,-1],[1,0],[-1,-1],[0,-1],[-1,1],[-1,1],[-1,-1],[-1,1],[1,1],[1,0],[0,3],[0,1],[-1,2],[-1,3],[-1,3],[2,1],[-1,1],[1,0],[1,-1],[3,1],[1,1],[-4,1],[0,1],[1,1],[5,-2],[2,1],[1,1],[1,-1],[1,2],[2,0],[1,0],[1,-1],[1,1],[3,-2],[0,1],[-3,1],[5,-1],[2,0],[0,1],[-2,0],[-1,1],[-1,1],[-1,1],[1,0],[-3,1],[-2,-1],[-3,0],[-2,1],[-2,0],[-2,-1],[-1,-1],[-2,0],[-3,1],[-3,-1],[-2,0],[0,2],[1,1],[1,0],[0,1],[1,1],[0,-1],[2,0],[2,0],[0,1],[-1,1],[0,1],[-2,1],[-1,2],[-1,1],[-3,2],[1,0],[0,1],[-1,0],[-2,1],[0,1],[1,2],[1,0],[1,1],[1,-1],[2,0],[2,1],[1,0],[0,1],[-2,0],[1,1],[2,-1],[2,-1],[1,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,-1],[2,0],[0,1],[0,1],[-2,1],[-1,1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,2],[-1,1],[-1,1],[-1,-1],[0,-1],[0,-2],[-2,-1],[-1,0],[1,0],[-1,1],[-3,1],[-2,-1],[-2,1],[-3,2],[-1,3],[1,-1],[2,0],[0,1],[0,1],[-1,0],[0,3],[0,1],[4,0],[2,1],[0,1],[3,0],[-1,1],[0,2],[-1,2],[0,2],[0,1],[-2,1],[-1,1],[1,2],[0,1],[1,0],[1,0],[0,1],[1,0],[1,-1],[2,0],[3,1],[5,3],[1,-2],[2,0],[1,0],[2,0],[1,2],[0,1],[-1,0],[0,1],[3,0],[1,0],[0,1],[1,1],[3,0],[3,-1],[1,0],[1,-1],[2,1],[3,-1],[2,0],[2,1],[3,1],[3,-1],[2,0],[-1,-1],[1,0],[2,2],[0,1],[0,-1],[1,2],[-1,0],[-1,2],[-1,1],[-3,2],[-1,1],[0,2],[0,1],[3,-1],[7,-2],[0,-1],[2,-1],[2,0],[1,0],[2,0],[0,1],[0,1],[-1,2],[-1,1],[-2,0],[-1,1],[1,1],[1,0],[0,-1],[1,0],[1,-1],[3,1],[2,1],[2,1],[2,1],[1,1],[0,1],[0,1],[0,1],[2,1],[8,-1],[2,-2],[5,-1],[2,1],[0,1],[0,1],[7,-4],[1,1],[1,0],[0,1],[-3,2],[0,1],[2,-1],[2,0],[0,1],[-1,1],[1,0],[1,0],[1,-1],[0,-1],[-1,-1],[1,0],[2,0],[1,-1],[2,0],[-1,0],[2,0],[1,0],[2,2],[1,0],[0,2],[-1,1],[-1,1],[0,1],[-1,1],[-1,2],[0,3],[1,1],[0,-1],[2,0],[1,-1],[2,-1],[2,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,1],[2,-1],[1,0],[1,0],[1,1],[-1,0],[0,1],[4,-1],[1,0],[3,1],[0,-1],[1,-1],[4,-2],[0,1],[2,1],[1,1],[-1,1],[-1,0],[-2,1],[1,1],[0,1],[2,-1],[2,-1],[0,-1],[1,-1],[1,0],[1,1],[3,1],[0,1],[1,-1],[0,-1],[5,-2],[3,1],[3,-1],[3,0],[2,1],[-1,2],[2,0],[4,0],[1,1],[1,1],[0,1],[-2,1],[0,1],[0,1],[-2,2],[-1,1],[0,1],[0,3],[1,1],[2,-1],[0,-1],[-1,-1],[1,-1],[2,0],[2,0],[0,-1],[1,-1],[2,1],[0,-2],[2,-2],[3,0],[2,1],[1,0],[0,1],[0,1],[1,1],[-1,1],[-2,0],[0,1],[0,1],[1,1],[0,1],[-2,1],[2,1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,1],[1,0],[2,-2],[-1,-1],[1,0],[2,-1],[-2,-1],[1,-4],[1,-1],[1,1],[1,-1],[1,0],[3,0],[1,1],[0,1],[0,2],[-1,1],[1,1],[1,-1],[2,0],[1,-1],[-1,-1],[0,-1],[1,0],[2,-1],[2,1],[1,1],[0,2],[-1,2],[2,0],[-1,-1],[1,-1],[1,0],[2,1],[3,1],[-1,-1],[1,-2],[3,0],[-1,-1],[1,-1],[14,0],[5,-3],[3,0],[1,-1],[4,0],[2,-1],[2,-1],[1,-1],[2,-1],[1,0],[-1,1],[3,0],[1,1],[-1,-1],[1,0],[2,0],[1,1],[0,1],[1,1],[0,1],[0,-1],[1,0],[1,0],[2,0],[2,-1],[2,0],[2,-1],[0,-1],[2,0],[1,-1],[-1,0],[1,-1],[1,0],[2,-1],[6,-3],[3,-2],[6,-1],[7,0],[10,0],[17,1],[7,-1],[12,-2],[9,0],[2,1],[0,-1],[1,0],[1,-2],[4,0],[1,0],[4,0],[5,0],[3,2],[4,2],[3,4],[1,-1],[1,0],[2,-1],[3,-2],[2,-2],[4,-2],[1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-2,-1],[-1,-2],[-2,-3],[-7,0],[-4,-1],[-4,-1],[-4,-3],[-1,-1],[0,-2],[0,-1],[-1,-2],[-1,-1],[-1,-2],[-2,-2],[-2,-1],[-1,-2],[1,-1],[-2,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-2,-1],[0,-1],[0,-1],[0,-2],[-1,0],[1,-1],[-1,-1],[-31,-20],[16,-46],[-3,-3],[-2,-9],[0,-3],[8,-11],[4,-3],[-2,-4],[1,-6],[2,0],[1,1],[0,1],[1,-1],[2,-1],[1,-1],[-1,0],[-1,-2],[0,-1],[-2,-1],[2,-3],[3,-1],[0,-1],[-1,0],[-1,0],[1,-1],[2,1],[2,-1],[1,0],[3,0],[1,0],[1,-1],[0,-3],[-1,0],[-2,-2],[-1,-1],[-2,0],[-1,-1],[-3,2],[-1,-1],[-6,1],[-2,-1],[-4,0],[-1,-4],[-1,-1],[-1,0],[-2,0],[1,-1],[1,0],[-1,-1],[0,-1],[2,-1],[2,-2],[-2,0],[0,-1],[0,-1],[-2,-1],[-1,1],[0,1],[-2,-1],[0,-1],[-2,1],[-2,-2],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-2],[-2,-1],[0,-1],[-2,0],[-2,0],[-2,-2],[2,-1],[1,-4],[0,-1]],[[7256,8649],[7,-2],[1,-1],[5,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[2,-3],[2,-3],[-1,-1],[-3,-1],[1,-1],[1,-1],[-2,0],[-1,1],[1,0],[0,1],[-2,1],[-1,2],[-1,-2],[-1,-1],[-1,1],[-1,1],[-2,0],[0,-1],[1,0],[1,-1],[-2,-1],[-2,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[1,1],[-1,0],[-2,-1],[-2,-2],[1,-2],[1,0],[4,-1],[7,-3],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[0,1],[-1,1],[-2,1],[-3,0],[-1,0],[2,-1],[1,0],[0,-1],[0,-1],[-2,1],[-1,0],[-1,2],[-1,0],[-1,-1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[1,-1],[-2,-1],[-1,-2],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[1,-2],[1,1],[1,-1],[-1,-1],[-2,0],[-1,0],[1,1],[1,0],[-1,0],[-2,0],[0,-1],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,-1],[0,-1],[2,0],[0,-1],[-2,-1],[0,-1],[-1,-2],[-1,-1],[-4,-1],[1,1],[0,1],[-1,0],[-1,0],[-3,-3],[0,-1],[0,-1],[0,-1],[-2,1],[-4,0],[-2,1],[-2,0],[-1,-1],[0,-1],[1,0],[3,-2],[0,-1],[0,-1],[0,-1],[-2,0],[-1,0],[-1,0],[-1,1],[-2,1],[-1,-1],[-1,1],[0,1],[1,-1],[0,1],[1,0],[-1,1],[-3,0],[0,-1],[0,-1],[-2,-1],[0,1],[-2,-1],[-1,0],[-1,1],[0,1],[1,0],[-1,1],[-1,-1],[-1,-2],[-1,-1],[-1,1],[0,1],[-1,1],[0,1],[-2,-1],[-1,-2],[-1,-1],[-1,0],[-2,0],[-4,0],[-3,-1],[-3,-1],[-1,-1],[-1,-1],[0,-3],[0,-3],[-1,-3],[-1,-2],[-1,0],[0,-1],[1,-1],[0,-1],[-2,-1],[-2,-2],[0,-1],[2,-2],[0,-1],[-2,-2],[-3,0],[-2,-1],[-2,-3],[-2,0],[-2,-1],[-2,-1],[-1,2],[-1,1],[0,1],[-1,0],[-1,1],[0,2],[1,1],[1,-1],[1,1],[0,1],[0,1],[2,0],[0,1],[0,1],[1,1],[2,2],[0,2],[1,1],[1,1],[1,0],[2,0],[0,-2],[3,0],[0,3],[1,2],[1,2],[1,0],[2,1],[-1,2],[-5,0],[-1,0],[0,1],[-3,1],[-1,0],[-1,0],[-2,0],[-1,1],[0,1],[-1,1],[1,0],[-1,2],[-1,1],[-1,1],[-2,1],[0,-1],[0,-1],[1,0],[-1,-1],[-1,1],[1,0],[-3,1],[-1,0],[-2,0],[-5,2],[-1,1],[-1,2],[0,1],[-1,1],[1,1],[5,-2],[1,1],[0,1],[-2,1],[-1,0],[0,1],[0,1],[1,-1],[0,1],[-2,1],[1,0],[4,-2],[0,-1],[0,-1],[0,-1],[2,0],[1,1],[0,1],[-2,3],[1,0],[1,-1],[1,1],[1,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[-2,1],[0,1],[1,0],[2,-1],[1,0],[-1,1],[-2,2],[0,1],[-1,0],[-2,1],[0,1],[-1,1],[-1,1],[-2,1],[0,1],[0,1],[-2,1],[-1,0],[-1,-1],[1,0],[1,1],[-1,-1],[-1,0],[-2,1],[0,1],[0,2],[3,-2],[2,0],[2,0],[0,1],[0,1],[-1,0],[1,2],[4,-1],[2,0],[2,-1],[3,-4],[0,-2],[2,-3],[2,0],[1,0],[1,1],[0,2],[-1,0],[0,1],[0,2],[1,1],[1,2],[3,1],[2,0],[1,1],[0,1],[-1,0],[1,2],[1,0],[1,-1],[1,-4],[0,-1],[1,-1],[3,0],[1,1],[1,3],[-1,2],[-1,0],[0,-1],[-1,3],[1,1],[2,0],[2,1],[1,0],[1,0],[2,0],[3,0],[1,0],[3,1],[3,1],[1,1],[1,1],[0,1],[0,1],[1,1],[0,-1],[2,1],[1,-1],[3,-4],[2,-2],[3,0],[2,2],[-1,0],[1,1],[2,-1],[0,-1],[0,-1],[3,0],[0,1],[2,2],[0,1],[1,1],[1,0],[4,-1],[2,1],[2,-1],[4,1],[1,-1],[1,-1],[1,0],[3,-1],[2,-2],[1,0],[1,-1],[1,-1],[2,0],[2,0],[1,-1],[1,1],[2,1],[-2,2],[-1,-1],[-4,1],[-1,2],[0,2],[2,1],[2,-1],[2,0],[0,1],[-1,1],[0,2],[1,1],[1,1],[3,1]],[[7205,8692],[3,0],[3,0],[3,-1],[1,-1],[-1,0],[-1,-2],[1,-2],[0,-1],[1,-1],[1,0],[3,0],[1,-1],[3,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[2,1],[0,-1],[1,0],[2,1],[-1,-1],[0,-1],[2,-1],[-2,0],[0,-1],[1,0],[2,-2],[0,-1],[1,0],[1,-1],[1,1],[0,-1],[2,-2],[0,-1],[2,-2],[1,-3],[-3,-1],[-1,2],[-1,-1],[-2,1],[-1,1],[-2,-1],[1,-1],[0,-1],[-2,1],[-1,1],[-1,-1],[1,0],[0,-1],[-1,-1],[-2,1],[-2,1],[0,-1],[-1,0],[-2,0],[1,-1],[1,0],[2,1],[1,0],[0,-1],[-2,-1],[1,0],[1,-2],[-3,0],[-1,0],[-1,-1],[-1,-1],[-2,-1],[2,1],[0,1],[-2,-1],[-3,4],[1,-1],[1,-1],[1,0],[2,1],[1,3],[-1,0],[-2,-1],[-2,0],[-1,0],[0,-1],[0,-1],[1,-1],[-3,2],[-1,-1],[0,-2],[0,-2],[-3,-3],[-1,-2],[0,-2],[-9,-1],[-6,2],[-2,1],[-1,1],[4,0],[0,1],[-2,2],[0,1],[0,1],[0,1],[-3,1],[2,1],[-1,3],[0,2],[-2,2],[0,1],[-2,1],[-1,1],[-3,1],[-3,-1],[-1,-1],[-2,1],[-2,0],[-1,-1],[-4,0],[-3,0],[-3,2],[0,1],[-7,1],[-1,1],[1,1],[0,1],[2,0],[2,-1],[3,1],[1,-1],[5,0],[3,0],[3,1],[2,0],[1,0],[5,-1],[2,0],[1,1],[1,2],[1,0],[1,-1],[2,1],[-1,1],[-2,2],[3,0],[2,1],[-1,0],[0,3],[1,0],[3,-1],[1,0],[0,1],[1,0],[2,0],[0,1],[0,3],[1,2],[0,1],[0,-1]],[[7256,8689],[0,-2],[2,0],[1,0],[1,0],[2,-2],[1,0],[0,1],[2,1],[1,-1],[2,1],[2,-2],[0,-1],[2,-2],[-1,-2],[-1,1],[-1,0],[-2,0],[0,-1],[-1,0],[-2,0],[-1,-1],[1,0],[2,-1],[-2,0],[-4,3],[-2,0],[0,-1],[0,-1],[-1,0],[-1,1],[-1,-1],[-1,-1],[-1,1],[-1,1],[1,1],[1,-1],[0,1],[-2,1],[-2,2],[-1,2],[1,0],[1,1],[1,0],[1,0],[0,1],[3,-1],[0,2]],[[7371,8741],[-2,0],[-2,0],[-2,1],[0,1],[-1,1],[1,2],[2,2],[1,-2],[2,-2],[1,-3]],[[7323,8586],[-2,0],[-1,2],[1,3],[3,1],[1,-1],[0,-1],[0,-2],[-1,-1],[-1,-1]],[[7325,8717],[-2,0],[-2,0],[0,1],[0,1],[-2,1],[-1,0],[2,2],[2,-1],[2,-1],[0,-1],[1,-1],[0,-1]],[[7316,8721],[1,-2],[2,0],[0,1],[0,-1],[-3,1],[2,-1],[1,-1],[1,-2],[-2,-1],[-1,1],[-5,4],[0,1],[4,0]],[[7263,8553],[0,-2],[-2,0],[-2,1],[-1,0],[-1,2],[1,0],[0,2],[1,0],[3,-2],[1,-1]],[[7199,8590],[-1,-2],[-2,2],[0,1],[2,2],[0,1],[1,0],[0,-2],[2,-1],[0,-1],[-2,0]],[[7148,8618],[1,-2],[-2,-1],[-1,0],[-5,0],[-2,1],[4,1],[3,-1],[2,2]],[[7408,8752],[3,-3],[-1,0],[-2,1],[-2,-1],[0,1],[2,0],[0,1],[-2,1],[-1,0],[1,1],[0,-1],[2,0]],[[7243,8673],[-1,-1],[-1,1],[-1,1],[1,0],[-1,2],[3,-2],[0,-1]],[[7276,8713],[-2,0],[-1,1],[-2,0],[-1,1],[0,1],[3,-1],[3,-2]],[[7280,8663],[-2,-1],[-1,1],[-1,1],[1,1],[3,-1],[0,-1]],[[7390,8746],[-3,-1],[-1,1],[2,0],[1,0],[0,1],[1,-1]],[[7334,8597],[-2,0],[0,1],[3,2],[1,0],[-2,-3]],[[7243,8643],[-1,-1],[-2,1],[1,1],[0,1],[1,-1],[1,-1]],[[7206,8597],[-1,-1],[-1,0],[-1,1],[1,1],[1,0],[1,-1]],[[7277,8643],[-1,-1],[-2,1],[1,1],[1,0],[1,-1]],[[7246,8663],[-1,-1],[0,1],[0,1],[1,0],[0,-1]],[[7241,8661],[-1,-1],[0,1],[-2,1],[0,1],[1,0],[0,-1],[2,0],[0,-1]],[[7274,8666],[0,-2],[-1,1],[-2,1],[1,1],[0,-1],[2,0]],[[7251,8664],[-1,0],[-1,0],[0,1],[1,1],[0,-1],[1,0],[0,-1]],[[7139,8610],[-1,0],[-1,1],[-1,0],[1,0],[2,-1]],[[7425,8745],[1,0],[1,0],[1,-1],[-1,1],[-1,-1],[-2,2],[1,-1]],[[7306,8611],[0,-1],[0,1],[-2,1],[1,1],[1,-1],[0,-1]],[[7297,8658],[-1,-1],[-1,1],[1,0],[1,0]],[[7273,8678],[-1,-2],[0,1],[0,1],[1,0]],[[7244,8659],[0,-1],[-1,1],[1,1],[0,-1]],[[7277,8634],[-1,-1],[-1,0],[0,1],[1,0],[1,0]],[[7440,8738],[-2,1],[1,0],[1,-1]],[[7202,8590],[-1,-1],[0,1],[0,1],[1,0],[0,-1]],[[7195,8590],[0,-1],[0,1],[0,1],[1,1],[0,-1],[-1,-1]],[[7263,8621],[1,1],[0,-1],[-1,-1],[-1,1],[0,1],[1,-1]],[[7230,8659],[-2,1],[1,0],[1,0],[0,-1]],[[7474,8757],[2,-1],[1,0],[0,-1],[-2,1],[-1,1]],[[7415,8749],[1,-2],[-1,1],[0,1]],[[7150,8614],[-1,0],[1,0],[-1,1],[1,0],[0,-1]],[[7264,8676],[-1,1],[1,0],[0,-1]],[[7265,8687],[-1,0],[1,1],[0,-1]],[[7148,8615],[-2,0],[2,1],[0,-1]],[[7255,8656],[-2,0],[1,0],[1,0]],[[7206,8599],[-2,-1],[1,1],[1,0]],[[7138,8609],[-1,-1],[0,1],[1,0]],[[7284,8635],[-1,-1],[0,1],[1,0]],[[7252,8655],[-1,0],[-1,0],[1,0],[1,0]],[[7268,8658],[1,-1],[-1,0],[0,1]],[[7522,6815],[1,-1],[1,0],[0,-1],[2,-1],[2,0],[0,1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[3,-3],[4,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[2,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-1,1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-3,-3],[-2,0],[-1,0],[-3,0],[0,1],[-1,-1],[-1,-1],[0,-1],[1,0],[1,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,-2],[0,-1],[-1,0],[-1,-1],[1,-1],[2,1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[2,-3],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[2,-1],[-1,-2],[-1,-1],[-1,0],[-1,-1],[0,-1],[2,-1],[1,-2],[-1,-1],[-2,1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,1],[0,1],[-1,-1],[0,-2],[-1,0],[-1,0],[1,-1],[-1,0],[0,1],[0,1],[-1,-1],[1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0]],[[7495,6709],[-1,1],[1,1],[0,3],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-3,2],[-3,0],[-2,0],[0,-1],[-6,2],[-3,0],[-4,-1],[-2,0],[-6,2],[-2,0],[-2,0],[-2,-1],[-1,0],[-2,1],[-2,1],[1,0],[-1,1],[-2,0],[-2,2],[-6,1],[-1,1],[0,1],[-1,1],[-4,1],[-2,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-3,0],[-4,0],[-1,1],[-2,1],[-1,1],[1,1],[1,1],[-1,1],[-2,1],[-3,0],[-3,-1],[-1,-2],[-2,-2],[-1,0],[1,-1],[-1,0],[0,-2],[-2,0],[-2,0],[-3,-1],[-3,-1],[-1,-2],[-3,-3],[-1,-1],[-1,-1],[-3,1],[-2,0],[-3,0],[-2,0],[2,0],[-1,1],[-2,1],[-4,-2],[0,1],[-1,2],[-2,3],[-2,2],[0,1],[-1,1],[0,1],[-4,0],[-3,-1],[-1,-1],[-1,1],[-1,0],[-1,-1],[1,0],[-1,0],[-1,-1],[0,1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[2,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[-1,-1],[0,1],[-4,-2],[0,-1],[-3,-1],[-1,-1],[-2,-1],[-5,-3],[-3,-1],[-2,-1],[-2,-1],[-1,0],[-3,1],[-1,0],[-3,1],[-2,2],[-3,0],[-3,3],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-2,-2],[-2,1],[-1,-1],[-2,-3],[0,-2],[-1,-2],[0,-2],[2,-1],[2,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-2],[0,-2],[1,0],[1,-2],[2,0],[0,-1],[1,-1],[1,0],[2,0],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[-2,0],[-5,0],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,-2],[2,-2],[2,-3],[2,0],[2,-1],[3,-1],[1,0],[1,1],[2,1],[-1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-2],[-1,0],[-1,1],[-1,2],[-2,1],[-2,1],[-1,0],[-2,0],[-2,1],[-3,-1],[-1,-1],[-2,-2],[-2,1],[-2,1],[-1,-1],[0,-1],[0,-1],[-2,1],[0,-1],[-1,-1],[0,-2],[0,-2],[1,-2],[1,-2],[1,-1],[1,-1],[1,0],[1,-2],[1,-2],[2,0],[0,1],[1,-1],[1,-1],[5,-1],[1,-1],[1,0],[2,-1],[0,-1],[3,-2],[1,0],[1,-1],[0,-1],[-1,0],[0,-2],[1,-1],[1,-1],[0,-2],[-1,0],[0,-1],[0,-1],[1,1],[1,0],[1,-3],[-1,0],[0,-1],[-1,-1],[0,1],[-1,-1],[0,-1],[1,-1],[0,-1],[-3,0],[1,-1],[1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,2],[1,0],[0,1],[-1,1],[-2,0],[0,1],[-1,1],[-2,1],[-1,0],[0,-1],[0,1],[-1,0],[0,2],[-1,2],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-2,2],[-2,1],[0,2],[-2,2],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-2,2],[-3,0],[-2,0],[-3,1],[-1,0],[-2,1],[0,1],[-2,1],[-1,0],[-2,0],[-1,1],[-1,1],[-1,0],[-2,0],[-1,-1],[-2,-2],[-1,-2],[-1,-1],[0,-2],[0,-1],[-1,0],[-1,2],[-1,2],[-4,2],[-2,0],[-1,0],[-2,0],[-1,2],[-1,0],[-3,0],[-1,2],[-1,0],[-5,2],[-3,2],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-2,1],[-1,1],[-2,0],[-3,-1],[1,2],[0,1],[-1,1],[0,2],[-2,0],[0,1],[0,1],[0,1],[-1,1],[-3,1],[0,2],[0,1],[1,0],[2,0],[1,0],[2,0],[2,0],[2,1],[3,2],[1,1],[0,1],[-1,1],[-3,2],[0,1],[1,1],[1,3],[-1,0],[-1,1],[-2,1],[-1,0],[-1,0],[-2,-1],[-1,0],[1,-1],[0,-3],[0,-1],[-1,0],[-1,-1],[-1,0],[-3,-2],[-1,1],[-1,0],[-2,-1],[0,-2],[0,-1],[1,-2],[-1,0],[-1,-1],[-1,0],[-2,2],[-1,0],[1,1],[-1,0],[-2,-1],[-1,0],[0,-1],[1,-2],[1,-1],[-2,-1],[-1,0],[0,-1],[-2,0],[-1,1],[-1,-1],[0,-1],[1,-1],[1,-1],[0,-2],[1,-4],[0,-1],[3,-1],[0,-1],[-1,-2],[-2,-3],[-2,-4],[-1,-4],[0,-2],[1,-1],[-1,0],[-3,-4],[0,-1],[0,-2],[1,-3],[0,-2],[0,-2],[1,-2],[1,-2],[1,-3],[1,-2],[2,-1],[2,-1],[4,-2],[1,-2],[0,-1],[-1,-1],[0,-1],[2,-3],[0,-2],[3,-1],[1,-1],[2,-1],[0,-2],[1,0],[3,-2],[1,-3],[1,-5],[1,-5],[1,-4],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[2,-2],[1,0],[0,-1],[2,0],[1,-2],[2,0],[1,-1],[1,0],[3,-2],[2,-5],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[0,-1],[1,0],[0,-1],[1,-1],[2,-1],[2,-2],[1,-3],[-1,-1],[0,-1],[2,-1],[1,-1],[0,-1],[1,-2],[1,-2],[1,-2],[0,-2],[-2,-2],[-2,-1],[-2,0],[-2,-2],[-2,0],[-1,1],[-1,-1],[0,-1],[2,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-3,0],[-1,0],[0,1],[-2,0],[0,1],[1,0],[0,1],[0,3],[1,1],[2,0],[1,-1],[1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[3,2],[1,0],[1,0],[1,0],[-1,1],[0,2],[1,1],[1,0],[0,-1],[1,-1],[1,0],[0,1],[0,3],[0,1],[-1,1],[-1,1],[-1,2],[0,1],[0,1],[-2,3],[-1,2],[-2,1],[0,1],[-4,1],[-1,-1],[-1,1],[-3,0],[0,2],[-2,1],[-2,0],[-1,1],[-1,1],[-1,-1],[0,-1],[1,0],[-1,-2],[-1,-1],[1,0],[0,-1],[1,-1],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-2],[0,-3],[0,-1],[1,-2],[1,-2],[1,-2],[0,-2],[1,0],[1,2],[0,1],[0,1],[1,0],[0,-2],[1,0],[1,0],[0,-1],[0,-1],[0,-2],[1,-2],[1,-1],[1,1],[0,1],[1,0],[1,0],[1,-3],[0,-1],[1,-2],[1,0],[-1,-2],[0,-1],[0,-1],[-2,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[2,1],[1,0],[1,1],[0,1],[3,0],[0,-2],[-1,0],[-2,-1],[-1,-1],[0,-3],[-2,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-2,-1],[0,-1],[-2,-1],[-3,0],[-1,0],[-1,1],[-2,-2],[0,-2],[-2,-1],[-2,-1],[-1,1],[-2,-1],[-2,0],[-2,2],[0,-1],[-1,-1],[-2,1],[-1,1],[-1,1],[-2,1],[-2,0],[-2,-2],[-2,-1],[-1,0],[1,-1],[1,0],[-1,0],[-1,-2],[-1,0],[1,0],[2,1],[1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[2,-1],[1,0],[1,1],[-1,1],[1,-1],[0,-1],[1,-1],[2,2],[0,-1],[2,1],[1,0],[1,0],[1,2],[0,-1],[1,-2],[2,-1],[1,-1],[1,-3],[1,0],[1,0],[1,0],[2,0],[1,1],[1,-2],[2,-1],[0,-1],[1,0],[1,2],[1,1],[2,-1],[1,-1],[0,-1],[3,-1],[2,0],[2,0],[2,1],[2,-3],[0,-1],[0,-1],[0,-1],[0,-2],[2,-3],[0,-1],[1,-1],[1,0],[-1,1],[0,1],[2,-1],[-1,-1],[-1,0],[0,-1],[1,0],[1,1],[1,1],[1,0],[1,0],[3,1],[0,1],[-2,1],[2,1],[2,-1],[1,-2],[2,-1],[1,1],[2,0],[3,-1],[1,-2],[0,-2],[-1,-2],[-2,0],[-1,-2],[0,-1],[1,1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,1],[1,-1],[1,0],[0,-1],[-1,0],[-2,-1],[0,1],[-1,-1],[0,-1],[1,-1],[3,2],[1,-1],[2,1],[0,-2],[2,0],[1,1],[1,-1],[1,1],[1,-2],[2,0],[1,-1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,-1],[1,0],[2,-3],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[2,-1],[0,-1],[0,-1],[-1,0],[1,-1],[1,1],[2,-1],[-1,-2],[1,-2],[0,-1],[2,-1],[0,-1],[1,0],[1,-1],[1,0],[2,0],[1,0],[0,-1],[3,1],[1,0],[0,-1],[1,-1],[1,0],[1,1],[2,-2],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,1],[1,-1],[1,0],[1,0],[1,-1],[2,-2],[2,-2],[1,-1],[1,-1],[2,-2],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,-2],[-1,0],[-3,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[2,-2],[-1,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-1],[2,0],[2,-2],[-1,-1],[-1,0],[-1,0],[-1,-1],[1,-1],[1,0],[1,-1],[2,-1],[-1,0],[0,-2],[0,-2],[1,0],[2,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[1,-2],[1,-2],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-2,1],[-3,1],[0,-1],[-2,1],[-1,0],[0,2],[1,1],[0,2],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,2],[0,3],[-2,3],[-1,0],[-1,1],[-1,1],[0,-1],[-1,0],[-1,1],[-1,0],[0,-2],[-1,0],[-1,1],[0,-1],[-1,0],[1,1],[-1,0],[-1,0],[0,1],[1,0],[0,2],[-1,1],[-1,0],[0,1],[1,0],[-2,2],[-1,0],[1,0],[-1,2],[0,1],[-1,2],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,1],[1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,-1],[-1,1],[0,1],[-1,0],[-1,0],[-2,1],[-1,0],[0,1],[1,1],[1,1],[-1,0],[2,0],[1,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[-2,1],[0,-1],[-1,-1],[-3,1],[-1,0],[-1,-1],[-1,-1],[-2,0],[-3,-2],[0,-2],[-1,0],[-1,0],[-1,-1],[3,0],[0,-1],[-1,0],[-2,1],[-1,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-3,1],[-3,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-2,-1],[-1,-2],[-3,-1],[-1,1],[-1,-1],[-2,0],[0,1],[-2,0],[-1,0],[-1,0],[-4,3],[1,2],[1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,0],[-5,2],[3,2],[1,0],[1,1],[1,0],[-1,0],[1,1],[1,0],[1,1],[1,0],[2,0],[1,-1],[0,-1],[2,0],[1,0],[1,0],[1,-1],[2,1],[4,0],[2,1],[1,0],[1,1],[1,1],[1,0],[2,1],[0,2],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[2,0],[2,0],[1,1],[-1,0],[-3,2],[-2,0],[-1,-1],[-1,0],[-1,0],[0,1],[1,1],[1,0],[-2,1],[0,1],[-1,1],[-3,-4],[-1,0],[0,1],[-3,0],[1,1],[1,0],[0,1],[-3,1],[-5,1],[0,1],[-2,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,-1],[1,-1],[-2,-1],[-1,1],[-2,1],[0,-1],[0,1],[-1,1],[0,3],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,-1],[-3,1],[1,-1],[-1,0],[-2,1],[-1,1],[2,2],[1,1],[-2,1],[-1,0],[-1,0],[0,1],[0,1],[-3,0],[-2,2],[-1,2],[-1,1],[1,0],[1,0],[-1,1],[0,1],[0,1],[-2,1],[-1,0],[-2,-1],[1,0],[1,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[-1,-1],[-1,0],[-1,-3],[1,-1],[1,0],[-2,-1],[0,-2],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,2],[-1,0],[-1,1],[1,1],[1,0],[0,1],[-2,2],[0,1],[-1,1],[-2,1],[-1,2],[-1,1],[0,1],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-2],[1,-1],[1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[1,-1],[1,1],[0,-2],[-1,0],[0,-1],[0,-1],[0,1],[1,-1],[-2,-2],[0,1],[-1,0],[0,1],[-3,0],[-1,0],[-1,1],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,2],[-2,-1],[-2,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[0,2],[-1,0],[-1,0],[-1,0],[1,0],[-1,1],[-1,1],[-1,0],[-3,1],[-1,1],[0,1],[-1,0],[-2,0],[-2,0],[-1,1],[-4,0],[-1,0],[-2,-2],[-1,-1],[-2,-1],[-1,1],[-1,0],[0,1],[-1,1],[-3,-2],[-1,0],[-1,-2],[-1,-3],[-1,0],[-2,1],[-1,1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,3],[-1,2],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-3],[-1,0],[1,3],[0,1],[0,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[-2,2],[-1,2],[-1,1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,-2],[0,-2],[0,-3],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-2,1],[-1,-1],[1,-1],[0,-1],[-3,-1],[-1,0],[-1,-2],[2,0],[2,-1],[0,1],[-1,-1],[-3,1],[-3,-1],[-2,0],[-1,1],[1,0],[-1,0],[1,-1],[1,0],[0,1],[-1,0],[-1,1],[0,2],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[-1,1],[-1,0],[0,1],[1,1],[0,-1],[1,0],[1,1],[0,1],[1,1],[-1,1],[-1,0],[2,0],[1,0],[-2,1],[-1,0],[0,2],[0,1],[0,1],[-1,0],[-1,0],[0,2],[-1,1],[1,3],[1,2],[-1,0],[-3,-2],[-1,-1],[-1,0],[-1,2],[0,1],[0,3],[0,2],[1,3],[-1,1],[-1,1],[-1,2],[0,1],[0,1],[0,1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,2],[1,2],[-1,1],[-2,1],[-1,-1],[0,-1],[-2,-2],[-1,0],[0,1],[-1,-1],[-1,-1],[-1,1],[-1,1],[0,1],[0,1],[-2,0],[0,3],[0,1],[1,1],[-1,1],[1,1],[1,0],[1,1],[2,0],[1,0],[0,1],[-2,0],[-1,2],[-1,1],[-1,2],[0,1],[1,0],[1,2],[0,1],[2,-3],[0,-1],[2,0],[2,0],[1,1],[1,1],[0,1],[0,1],[1,-1],[1,-3],[-2,0],[1,0],[1,0],[2,0],[1,1],[0,1],[1,0],[1,-1],[1,1],[1,1],[1,0],[1,-1],[0,-2],[1,0],[0,1],[2,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[2,0],[2,-2],[1,-1],[1,0],[-1,1],[1,0],[0,2],[0,1],[1,1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,-3],[1,0],[0,1],[-1,4],[-1,0],[-1,1],[1,2],[-1,3],[2,1],[1,0],[-1,0],[0,1],[0,1],[-2,2],[-1,2],[0,1],[-1,1],[-2,0],[2,0],[-1,0],[-2,0],[-2,-1],[-1,-2],[2,-1],[1,0],[-1,-1],[-3,2],[0,-1],[3,-1],[-2,1],[1,-1],[-2,0],[-2,1],[-2,0],[-1,1],[0,1],[0,1],[-1,-1],[-1,0],[-1,2],[1,1],[0,1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-2],[1,0],[0,-1],[-1,0],[0,3],[-1,1],[-1,1],[-1,-1],[-1,1],[1,0],[1,2],[-1,2],[-1,-1],[-1,1],[-1,0],[1,0],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[2,-1],[2,0],[-2,0],[-1,-2],[2,0],[1,0],[1,-1],[-1,1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-2],[2,-1],[1,0],[2,-1],[1,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-1,2],[-1,-1],[-2,1],[0,-3],[-1,0],[-1,0],[-3,5],[0,1],[1,0],[1,1],[0,2],[-1,2],[-2,2],[-2,2],[-1,1],[-1,0],[-1,1],[-2,2],[-3,3],[-1,3],[-3,2],[-2,1],[-2,1],[0,2],[0,2],[0,1],[1,1],[-1,1],[0,-1],[-1,0],[-1,1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[-2,0],[-2,0],[0,1],[-3,3],[-1,1],[0,1],[-1,3],[0,2],[-1,1],[-1,1],[-2,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[-2,2],[2,0],[2,-1],[1,1],[1,0],[-2,1],[-1,2],[-1,1],[-1,0],[-1,1],[2,0],[2,-1],[1,1],[0,2],[-3,1],[-1,-1],[-1,0],[-2,1],[-1,-1],[-1,1],[1,0],[1,0],[1,0],[-1,0],[-1,2],[-1,-1],[-1,0],[1,0],[-1,0],[-1,0],[1,2],[1,0],[1,3],[0,1],[1,2],[0,2],[-1,1],[-1,1],[-2,-1],[0,1],[-2,1],[-1,0],[-1,1],[1,0],[-1,1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[1,0],[0,-1],[1,0],[2,0],[1,-1],[1,0],[1,-1],[2,-1],[1,-1],[1,0],[4,-1],[3,1],[-1,1],[1,2],[0,1],[1,-1],[1,0],[1,-1],[0,1],[0,2],[1,1],[2,1],[2,1],[0,1],[-2,1],[0,1],[-1,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[1,0],[0,-1],[1,0],[2,-1],[2,-2],[1,0],[0,1],[1,0],[1,3],[1,2],[-1,1],[-2,3],[-2,3],[0,1],[-2,1],[1,3],[-1,1],[-1,2],[-1,0],[0,2],[5,-1],[2,1],[1,3],[0,1],[0,1],[0,1],[1,1],[3,2],[1,0],[0,-1],[2,0],[1,0],[1,2],[0,-1],[3,-2],[4,1],[2,2],[2,0],[2,1],[1,0],[0,1],[-1,2],[1,2],[1,1],[-2,1],[1,3],[2,1],[1,2],[0,1],[0,3],[-1,1],[0,1],[1,1],[1,2],[0,1],[1,0],[1,1],[1,0],[-1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,2],[0,2],[0,2],[0,1],[2,1],[1,1],[0,1],[0,1],[1,1],[1,0],[2,0],[3,0],[2,-1],[2,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[1,0],[2,1],[0,1],[0,1],[2,1],[1,0],[1,1],[0,1],[-1,1],[0,1],[1,1],[-1,1],[1,0],[0,1],[0,1],[0,4],[-2,4],[-2,2],[-1,1],[-1,0],[0,2],[0,1],[-1,0],[-1,1],[2,1],[0,1],[0,7]],[[7070,6723],[12,0],[3,0],[1,1],[0,1],[2,0],[1,1],[3,-1],[1,-1],[0,-1],[2,1],[2,0],[4,1],[1,1],[2,2],[3,2],[2,0],[2,-1],[2,0],[1,0],[2,0],[0,-1],[2,-1],[0,-1],[1,-1],[0,-1],[2,0],[2,1],[1,2],[1,0],[1,1],[2,0],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[2,-2],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[0,2],[1,1],[1,0],[1,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,1],[0,1],[1,0],[1,1],[0,2],[0,1],[0,1],[1,1],[1,0],[0,1],[1,1],[2,0],[0,1],[1,1],[0,-1],[2,0],[1,1],[1,0],[1,1],[2,1],[0,1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,2],[1,1],[1,1],[2,0],[1,1],[1,-1],[3,1],[1,-1],[0,-1],[1,0],[1,-1],[2,1],[0,-2],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[2,-2],[4,0],[0,1],[1,-1],[2,1],[3,1],[2,0],[1,-2],[1,0],[2,1],[0,1],[1,0],[1,2],[1,1],[0,1],[0,1],[2,1],[1,-3],[2,-2],[1,0],[1,0],[1,2],[1,1],[0,8],[1,2],[-1,1],[1,2],[-1,1],[0,1],[1,1],[0,1],[1,0],[1,0],[1,1],[1,1],[0,-1],[1,0],[5,0],[1,0],[1,0],[2,0]],[[7145,6451],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[0,-1],[2,0],[1,0],[1,-1],[0,-2],[1,0],[0,-1],[1,1],[1,-1],[1,-2],[1,0],[2,1],[1,-1],[2,-3],[0,-1],[2,-2],[2,1],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[2,0],[2,0],[2,1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[3,0],[1,0],[1,0],[4,0],[1,0],[1,-2],[3,-1],[1,0],[3,-1],[1,-1],[2,-1],[2,-1],[0,-1],[2,0],[2,-2],[2,0],[1,-2],[1,-1],[0,-1],[2,0],[0,-2],[1,-1],[1,-1],[2,-1],[1,-1],[2,-1],[1,-1],[1,1],[1,-1],[1,1],[1,0],[1,0],[1,0],[1,1],[2,-1],[2,-2],[0,-1],[1,0],[0,-1],[0,-1],[-2,-1],[0,-1],[0,-1],[1,-2],[1,0],[1,0],[2,0],[1,-1],[1,0],[2,1],[1,0],[1,0],[1,-1],[1,0],[1,-2],[1,-1],[1,-1],[0,-3],[-2,-1],[-1,0],[1,0],[-1,-1],[-2,0],[1,1],[-1,0],[0,-1],[0,-2],[0,-1],[1,0],[2,-1],[1,0],[0,-1],[0,-1],[-1,-2],[0,-3],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[3,-2],[1,-1],[2,0],[2,-2],[0,-1],[2,-1],[1,0],[1,-1],[0,-1],[2,0],[2,1],[1,1],[-1,2],[-1,1],[-1,2],[-2,2],[-1,0],[1,0],[1,1],[2,1],[3,1],[2,-1],[0,-2],[1,0],[-1,-2],[-1,-1],[-1,-1],[0,-2],[-1,0],[-1,0],[1,-1],[1,-1],[2,0],[1,-1],[-1,-1],[-2,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,-1],[1,0],[2,-2],[0,-1],[1,-1],[-1,-1],[-2,-1],[-3,-1],[-3,0],[-1,-1],[-2,1],[-4,0],[-1,-1],[-2,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,-1],[2,0],[-1,0],[-2,0],[0,-1],[0,-1],[2,-1],[1,0],[1,-1],[-1,0],[-2,0],[-3,-1],[-1,0],[-1,0],[0,-2],[1,0],[0,-1],[0,-2],[-1,0],[-1,-1],[-2,2],[-1,1],[1,1],[1,0],[-1,1],[-1,-1],[1,0],[-2,-1],[0,1],[-1,2],[1,-1],[0,1],[0,1],[-1,1],[-4,0],[1,1],[0,1],[-1,2],[1,0],[1,-1],[1,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[-1,3],[-1,1],[-2,1],[-2,0],[-1,-1],[-2,1],[1,1],[0,1],[-1,0],[-2,-1],[-1,-1],[0,1],[-1,2],[0,2],[-1,1],[-4,1],[1,1],[-1,0],[-3,1],[1,-1],[1,0],[1,0],[0,-1],[-3,1],[-3,-1],[0,-1],[-1,0],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,2],[-1,0],[-1,0],[-2,0],[-1,-2],[-1,-1],[0,-2],[1,-2],[1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[-1,-1],[-1,0],[0,-2],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-2],[0,-1],[2,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[2,-3],[-1,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-3],[0,-1],[0,-1],[0,-2],[1,0],[1,-1],[1,1],[0,1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-2],[0,-1],[0,-1],[1,-1],[1,-2],[0,-4],[-1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[1,-1],[1,-2],[0,-1],[1,-2],[-1,-1],[1,0],[1,-1],[-1,-1],[2,-1],[1,-2],[0,-1],[0,-2],[2,-1],[-1,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[-1,0],[-2,-2],[0,-1],[0,-3],[1,0],[1,0],[1,0],[-1,0],[-1,0],[-1,-2],[0,-1],[0,-3],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[3,-3],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[-1,-1],[-2,0],[-2,0],[-1,0],[0,-1],[-4,1],[-2,3],[0,1],[1,1],[-1,1],[0,1],[-3,2],[-1,1],[-1,0],[-1,-1],[-1,-1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-2,1],[1,1],[-1,2],[-1,1],[-2,1],[-1,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[-3,4],[-1,0],[-1,0],[0,-2],[0,-2],[-1,0],[-1,2],[0,1],[1,1],[1,1],[0,2],[-1,2],[-1,1],[0,1],[-1,1],[1,0],[-1,2],[0,1],[0,1],[-1,0],[-2,1],[-6,-1],[-4,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[1,-2],[0,-2],[-2,-1],[-1,-1],[-2,-1],[0,-2],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[1,1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[1,-2],[1,0],[0,-2],[-1,-1],[-1,0],[0,1],[-2,0],[-1,-2],[0,-1],[1,-1],[0,-1],[0,-2],[-1,-2],[2,-3],[0,-1],[1,0],[0,-1],[0,-3],[0,-2],[-1,0],[-1,-1],[1,-1],[0,-2],[-1,-1],[-1,1],[0,1],[0,1],[-1,3],[-2,2],[-1,0],[-2,2],[0,-2],[-2,1],[-2,4],[0,2],[1,-1],[1,1],[1,1],[0,1],[0,2],[-1,1],[0,1],[1,0],[0,1],[-2,1],[0,4],[2,0],[-1,1],[-1,0],[0,1],[0,2],[1,0],[1,1],[0,1],[-1,-1],[-2,1],[-1,1],[-1,3],[0,1],[-1,2],[0,1],[-1,2],[0,1],[0,1],[-2,2],[-1,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[-2,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,1],[-1,1],[1,2],[1,0],[0,1],[0,1],[0,1],[-1,1],[1,1],[1,2],[0,1],[-1,1],[0,1],[-3,0],[-3,1],[-2,0],[-3,-1],[-5,-2],[-1,-2],[-1,0],[0,-2],[-1,0],[1,-1],[0,-3],[0,-2],[-1,-1],[0,-2],[0,-2],[0,-2],[1,-1],[0,-2],[0,-1],[2,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,-2],[-1,-1],[0,2],[-1,1],[0,1],[-2,1],[-1,1],[0,2],[0,1],[-1,1],[-3,-1],[-1,-1],[-1,0],[0,1],[-2,0],[-1,1],[0,1],[-1,0],[0,-1],[-1,3],[-1,2],[0,4],[1,3],[1,0],[0,2],[0,1],[-2,1],[-1,0],[-1,-1],[1,-3],[0,-1],[-1,0],[0,1],[1,0],[-1,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[-1,0],[0,1],[0,1],[0,2],[0,3],[-1,3],[0,2],[1,3],[1,2],[2,2],[2,1],[1,1],[0,1],[2,1],[1,3],[1,0],[0,2],[0,2],[0,3],[-1,2],[-2,5],[-2,3],[-2,4],[-2,4],[-3,3],[-2,2],[-7,5],[-3,3],[-3,2],[-1,0],[-3,0],[-1,-1],[0,-1],[0,-1],[-1,1],[1,2],[-1,1],[0,1],[1,0],[0,1],[1,2],[-1,1],[-1,1],[1,1],[-1,1],[0,1],[0,1],[-1,2],[-3,1],[-4,3],[-5,1],[-3,1],[-1,1],[0,1],[1,0],[0,2],[1,5],[0,1],[0,1],[1,0],[1,-1],[1,0],[2,0],[2,1],[2,3],[2,1],[3,4],[1,2],[3,4],[0,3],[1,1],[1,1],[1,2],[0,1],[-1,3],[1,4],[0,1],[1,0],[1,-2],[1,-1],[1,0],[1,1],[2,0],[2,-2],[2,-2],[2,-1],[1,1],[5,-2],[2,0],[0,1],[1,0],[2,1],[1,1],[1,2],[1,1],[1,1],[1,1],[0,2],[1,1],[0,1],[1,2],[0,1],[1,0],[2,3],[1,0],[2,1],[1,0],[2,2],[2,0]],[[7305,6149],[3,-1],[1,1],[0,-1],[1,0],[6,-1],[2,0],[1,-1],[2,0],[2,0],[1,0],[1,1],[1,0],[0,-1],[2,1],[0,2],[0,1],[1,1],[1,-1],[1,0],[0,1],[-1,1],[0,1],[0,2],[1,-1],[2,1],[1,1],[4,-2],[2,-2],[1,-3],[-1,-1],[-1,-2],[-1,-2],[-1,0],[-4,1],[-1,0],[-1,1],[-2,-2],[0,-1],[2,0],[2,-1],[1,-1],[1,0],[1,1],[1,-1],[1,-2],[1,0],[2,0],[0,1],[1,1],[0,-1],[1,1],[1,1],[1,-2],[1,-4],[0,-1],[0,-2],[-1,-1],[1,-2],[3,-1],[1,0],[3,0],[1,0],[1,1],[1,-1],[1,1],[1,0],[1,0],[2,0],[0,1],[1,-1],[1,0],[0,1],[1,0],[0,-1],[2,0],[7,2],[2,1],[2,1],[0,1],[1,0],[0,1],[3,0],[1,0],[0,1],[1,0],[2,-1],[0,1],[1,-1],[1,0],[1,0],[2,0],[1,-1],[3,-1],[2,1],[1,0],[0,1],[1,0],[2,-1],[2,0],[0,-1],[1,1],[1,-1],[1,3],[1,0],[-1,0],[1,-1],[1,-1],[1,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[1,-1],[3,0],[3,1],[1,0],[-1,0],[4,0],[1,-1],[0,-1],[3,1],[0,-1],[1,1],[5,0],[2,0],[3,0],[2,0],[1,-2],[1,-1],[1,-1],[0,-1],[3,0],[3,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,2],[1,-1],[2,1],[1,0],[2,1],[3,-1],[3,0],[4,0],[-1,-1],[0,-1],[-1,-1],[-2,-1],[-1,-4],[1,-2],[1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-2],[1,-1],[0,-2],[1,-1],[0,1],[2,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,2],[1,1],[1,2],[1,1],[0,-1],[1,1],[1,1],[1,1],[0,1],[1,-1],[1,0],[2,0],[1,0],[0,1],[1,1],[2,0],[1,1],[0,1],[2,1],[1,1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[-1,-1],[0,-1],[1,-1],[1,0],[2,0],[1,0],[1,1],[0,2],[1,0],[1,0],[1,1],[1,2],[-1,0],[1,1],[0,2],[1,0],[1,-1],[1,1],[1,0],[1,0],[0,1],[-1,0],[1,2],[1,0],[1,1],[0,-1],[0,-2],[-2,-2],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,1],[1,0],[0,-2],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-2],[0,-1],[1,-1],[-1,-2],[-1,-2],[1,-1],[-2,-1],[-1,-3],[-1,-1],[-1,-1],[-2,-2],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[0,1],[0,1],[-1,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,1],[-2,-1],[-2,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,-1],[-1,1],[-2,0],[-1,1],[0,-1],[-3,1],[-1,0],[-2,0],[0,-1],[-1,0],[-5,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,1],[-2,-1],[-2,0],[-2,1],[-2,-1],[-1,0],[-2,1],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-2,-1],[-1,0],[-2,-1],[0,-1],[-1,1],[-3,0],[-1,0],[-1,0],[-1,-1],[-3,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,1],[-4,0],[-2,0],[-1,-1],[-1,-1],[-2,1],[-1,-1],[-1,0],[-1,0],[0,1],[2,1],[0,2],[0,3],[-1,0],[0,1],[1,1],[1,0],[0,2],[-1,4],[-1,2],[-2,2],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,1],[-1,0],[-1,1],[-2,2],[-1,1],[-3,1],[-1,0],[-1,0],[-3,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[-2,-1],[-1,0],[1,-1],[-1,0],[-2,1],[-2,0],[-1,-1],[0,-1],[-1,1],[-2,0],[-2,0],[-1,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,3],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,1],[-2,1],[-1,0],[-2,1],[-3,0],[-1,0],[0,-1],[-1,0],[-2,-1],[0,1],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-2,0],[-1,1],[0,1],[0,1],[-1,1],[-1,-1],[-1,1],[0,1],[-2,1],[0,2],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,1],[0,5],[1,0],[1,1],[0,1],[-1,0],[1,1],[0,1],[1,-1],[0,1],[1,3],[-1,0],[-1,1],[0,1],[1,1],[1,1],[0,1],[0,2],[-1,1],[1,1],[0,2],[1,1],[0,1],[-1,2],[1,0],[1,1],[0,2],[0,1],[1,-1],[0,-1],[-1,-2],[1,-2],[0,-1],[0,-1],[0,-3],[1,-1],[1,0],[1,-1],[1,-1],[2,1],[3,0],[0,1],[1,2],[0,2],[0,2],[-1,1],[0,1],[-1,1],[0,1],[0,4],[0,2],[1,1],[1,1],[1,2],[0,-1],[2,-1],[1,-1],[-1,-2],[0,-1],[0,-1],[1,-4],[0,-3],[0,-2],[0,-1]],[[7266,6527],[1,-1],[1,-2],[1,0],[2,-1],[1,-1],[-1,-1],[1,-2],[1,-1],[1,0],[1,0],[1,0],[0,-2],[-1,-2],[0,-2],[2,-3],[1,-2],[1,-2],[1,-1],[2,-1],[1,0],[0,-1],[2,-1],[1,0],[2,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[1,1],[1,1],[0,-1],[1,0],[1,-2],[1,-1],[1,-1],[0,-1],[0,-1],[2,-1],[1,0],[1,0],[1,0],[1,-2],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,1],[2,-1],[1,0],[2,-1],[2,1],[1,1],[1,0],[1,0],[2,1],[1,0],[0,-1],[1,0],[1,0],[3,-1],[1,0],[1,-1],[2,-1],[0,-1],[-2,0],[-1,-2],[0,-2],[0,-1],[1,-1],[2,-2],[3,-2],[2,-2],[1,-1],[-1,-1],[-1,0],[-1,-2],[-1,-1],[1,-2],[0,-1],[-1,-1],[0,-2],[1,0],[1,-1],[0,-1],[0,-1],[-1,1],[-1,-1],[0,-1],[1,-1],[2,0],[0,-2],[0,-2],[-1,-1],[1,-1],[1,-1],[0,-2],[1,0],[0,-1],[1,1],[0,-1],[0,-1],[-1,-4],[1,-2],[1,-2],[1,-1],[2,0],[0,-1],[1,-1],[1,1],[1,-1],[-1,-1],[1,-1],[1,0],[0,-1],[1,1],[1,0],[2,1],[0,-1],[0,-1],[2,-1],[3,0],[2,0],[1,1],[1,-1],[1,0],[1,0],[2,0],[1,0],[2,2],[0,-1],[1,0],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-3],[0,-1],[1,-2],[0,-1],[0,-2],[-2,-1],[1,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[-2,0],[-1,1],[-1,0],[1,1],[-2,3],[0,1],[-2,1],[-1,0],[-2,-1],[-1,-1],[0,-1],[1,-1],[-1,-2],[-1,1],[-2,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[2,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,3],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[0,2],[-1,1],[-1,3],[-2,1],[-2,0],[0,-1],[-1,-1],[0,1],[1,2],[0,2],[1,1],[1,0],[0,1],[0,1],[-2,0],[0,-1],[-1,-2],[-1,0],[-1,3],[1,1],[0,1],[0,2],[-2,1],[0,-1],[-1,0],[-2,0],[-2,1],[0,1],[2,0],[1,0],[0,1],[-1,2],[0,1],[1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,-2],[-2,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-3,0],[-1,0],[-1,-2],[0,1],[-2,0],[-2,1],[-1,0],[-2,1],[-2,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,1],[0,2],[-1,2],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[1,2],[1,-1],[1,0],[0,1],[0,1],[0,1],[1,2],[-1,2],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-2,-1],[-1,2],[-3,-1],[-1,1],[-1,2],[-1,2],[0,1],[-2,2],[-2,0],[0,2],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-3,3],[-1,2],[-1,2],[-2,1],[-2,-1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,2],[-1,1],[-1,1],[-1,0],[-1,1],[-3,1],[-1,-1],[-3,-1],[-2,1],[-2,1],[-1,3],[-3,0],[-2,1],[-1,-1],[-1,-1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-2,-2],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,-1],[0,1],[-3,-1],[1,2],[0,1],[1,2],[1,-1],[1,1],[2,0],[1,1],[1,1],[1,0],[4,1],[2,1],[2,1],[1,1],[0,1],[1,1],[2,-1],[1,0],[0,1],[1,2],[-1,2],[3,1],[1,1],[2,1],[1,-1],[1,0],[2,0],[1,1],[1,1],[2,0],[1,1],[1,1],[2,0],[1,0]],[[7522,6563],[-1,-2],[1,-1],[1,-1],[1,1],[2,0],[1,-1],[0,-1],[-1,-1],[-2,-3],[0,-1],[0,-1],[2,-1],[1,-1],[1,-1],[2,-1],[0,-1],[2,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[1,-1],[2,0],[0,-1],[-1,0],[0,-2],[1,-1],[1,1],[0,-4],[1,-1],[3,-3],[1,-2],[0,-3],[0,-1],[-1,-1],[-3,2],[-1,-1],[-1,0],[-1,2],[-1,2],[0,1],[1,0],[0,1],[0,1],[-1,2],[-1,2],[-1,0],[-3,0],[-1,-1],[0,-1],[1,-2],[1,-1],[2,-1],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[-3,-3],[-1,0],[0,1],[-1,0],[-2,0],[-4,-2],[-2,1],[-1,0],[-2,1],[-3,0],[-2,2],[-1,1],[-4,1],[-2,1],[-2,0],[-1,-1],[-1,0],[-2,2],[-2,2],[0,1],[-1,1],[-2,0],[0,1],[1,0],[1,2],[1,0],[1,-1],[2,1],[1,0],[0,1],[2,2],[1,0],[1,1],[1,1],[2,0],[0,1],[1,0],[1,0],[1,1],[1,2],[0,1],[-1,1],[-3,1],[-3,-1],[-1,1],[-2,-1],[-1,0],[-1,-2],[0,-2],[-1,-1],[-2,-1],[0,-1],[-1,-1],[0,-2],[-1,1],[-1,-1],[0,-2],[-1,0],[-7,2],[-2,0],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-2,0],[-2,1],[0,1],[0,1],[-2,1],[-1,0],[0,1],[1,-1],[1,1],[-1,1],[0,3],[1,1],[0,1],[0,1],[1,1],[1,2],[2,0],[0,1],[1,1],[0,-2],[1,0],[2,-1],[1,1],[1,0],[-1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,1],[2,0],[0,1],[1,0],[1,0],[2,1],[2,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[3,1],[1,0],[1,-1],[5,0],[2,1],[1,1],[0,-1],[1,-1]],[[7679,6244],[0,-2],[2,-2],[-1,-1],[-1,0],[0,-1],[-2,-2],[0,-1],[1,-1],[0,-1],[-1,0],[-1,-1],[-2,-3],[0,-2],[0,-1],[0,-1],[-2,-2],[0,-2],[-1,-1],[1,-1],[-1,-1],[-1,1],[-1,-1],[-1,-1],[-2,-3],[0,-4],[1,0],[1,0],[0,-1],[-1,-2],[-1,-1],[1,-1],[0,-1],[-3,1],[0,1],[0,1],[-2,0],[-1,0],[-4,-3],[-1,-1],[-1,-1],[-2,-4],[-2,-4],[-1,0],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,-2],[-2,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,2],[-1,0],[1,2],[2,6],[1,4],[0,1],[0,3],[-1,1],[0,1],[-1,0],[-2,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[2,0],[2,1],[1,0],[1,2],[1,0],[1,2],[1,1],[0,3],[1,1],[1,2],[1,0],[2,1],[1,2],[2,2],[1,2],[2,1],[3,1],[2,1],[3,1],[1,1],[2,2],[6,2],[3,0],[2,0],[1,0],[0,1],[2,3],[1,-2],[1,0],[-1,-1],[0,-1]],[[7494,6479],[1,-1],[2,1],[1,-2],[0,-1],[1,-1],[2,-1],[1,1],[1,1],[1,-1],[1,-1],[1,-1],[-2,-2],[1,-2],[0,-1],[-1,-1],[-2,1],[0,-2],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-2],[0,-1],[1,-3],[0,-3],[1,-1],[0,-2],[0,-1],[-1,0],[-2,-2],[-2,-1],[0,-1],[0,-2],[2,-1],[-2,-3],[-3,0],[-2,-1],[-1,-2],[0,-2],[-1,-2],[0,1],[-1,0],[-1,1],[-2,1],[-1,1],[0,2],[-1,0],[-1,-1],[-2,2],[0,1],[1,1],[-1,0],[-1,-1],[-1,1],[0,2],[-1,0],[-1,0],[1,1],[0,1],[0,1],[2,1],[2,2],[1,0],[2,0],[0,-1],[1,1],[1,1],[-1,1],[0,1],[1,0],[1,0],[0,2],[0,5],[-1,1],[-1,0],[-1,0],[0,2],[0,1],[0,1],[-1,2],[-2,1],[-2,1],[-3,2],[-1,3],[0,1],[-1,1],[0,1],[1,3],[1,0],[3,1],[4,0],[2,1],[2,0],[1,1],[1,-1],[1,0]],[[7035,6466],[2,-1],[0,-2],[0,-1],[0,-1],[1,-2],[1,-1],[0,-3],[1,-2],[0,-3],[0,-1],[0,-1],[-1,0],[-1,-1],[1,-1],[0,-2],[1,-1],[1,-1],[1,0],[1,1],[1,1],[0,1],[1,0],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[2,-3],[2,-3],[1,-2],[0,-1],[3,-4],[1,0],[1,-2],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,1],[-1,0],[-1,0],[-1,-1],[-3,1],[-1,0],[0,1],[-2,2],[-1,0],[-2,1],[-1,1],[-2,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,1],[-2,1],[-1,0],[-1,0],[-2,2],[1,1],[-1,2],[0,1],[0,1],[-1,2],[1,1],[0,-1],[1,-1],[1,-2],[0,1],[-1,3],[-1,2],[-2,3],[-1,2],[0,2],[-1,0],[-1,-1],[0,-1],[1,-2],[0,-2],[1,-7],[-3,0],[-2,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[1,1],[1,2],[0,1],[-1,2],[1,1],[1,0],[1,1],[0,1],[0,2],[1,1],[0,2],[0,2],[0,1],[1,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-2],[0,-1],[3,-2],[1,0],[1,1],[1,2],[1,0],[1,2],[1,1],[-1,1],[-1,1],[1,0],[0,-1],[0,1],[1,0],[-1,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[1,0],[1,0]],[[6980,6608],[1,-1],[1,0],[1,0],[0,1],[1,-2],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-2],[1,-1],[1,0],[-1,-1],[-1,0],[1,-2],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,2],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-3],[1,-2],[0,-1],[3,-2],[2,0],[1,0],[0,-2],[1,-1],[1,1],[2,1],[1,0],[1,1],[1,-2],[1,-2],[0,-1],[0,-1],[1,-1],[1,-1],[-1,-2],[-1,0],[-1,0],[-5,3],[-3,1],[-1,1],[-1,1],[-2,1],[-1,0],[-2,0],[0,1],[-1,0],[-2,2],[-1,2],[-1,2],[0,1],[0,2],[-1,1],[0,1],[1,0],[-1,2],[-1,2],[-2,2],[-2,1],[-1,0],[1,0],[0,1],[-3,1],[0,1],[-1,2],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,1],[0,2],[1,1],[0,1],[-1,0],[-1,1],[0,-2],[-1,0],[0,1],[1,1],[0,1],[-2,2],[1,2],[2,3],[2,0],[2,-1],[3,1],[0,-1],[2,1],[1,-1],[3,1],[2,2],[1,0],[1,0],[1,-2],[2,-1]],[[7444,6631],[1,-2],[0,-1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,0],[-1,-1],[1,-1],[1,0],[-1,-1],[-1,0],[-1,-1],[0,-3],[1,-1],[1,-2],[1,-1],[-2,-1],[0,-1],[1,-1],[-1,0],[-4,1],[-1,2],[1,1],[-1,0],[0,1],[-2,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[1,-1],[1,1],[1,2],[0,1],[-1,2],[-1,0],[-2,0],[0,-1],[-1,-1],[-2,-1],[1,0],[1,0],[1,0],[0,-1],[-1,1],[-1,-1],[-1,-2],[-1,-1],[1,-1],[0,1],[1,-1],[0,-1],[0,-1],[2,-1],[0,-1],[-3,0],[-1,0],[-2,0],[-1,1],[1,4],[1,0],[0,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[1,1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,-1],[-1,1],[-2,-1],[1,1],[0,1],[-1,0],[1,2],[0,1],[1,4],[-1,1],[-1,1],[-1,2],[1,3],[1,1],[2,0],[1,0],[4,1],[0,-1],[1,-1],[1,1],[1,0],[1,1],[2,-1],[1,1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,1],[1,0],[-1,1],[1,1],[2,0],[1,0],[0,1],[-1,0],[1,2],[2,1],[0,1],[-1,0],[1,1],[1,0],[1,-2],[1,1],[1,1],[2,1],[-1,-1],[0,-2]],[[7564,6393],[2,-2],[1,0],[2,-1],[2,-1],[1,-1],[1,-1],[1,1],[-1,1],[-2,2],[1,1],[1,0],[1,-1],[0,1],[1,1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[2,1],[1,0],[1,0],[-2,-2],[-2,0],[0,-1],[1,-1],[0,-1],[0,-1],[2,0],[1,-1],[-1,-1],[-3,0],[-1,0],[-2,0],[-1,0],[-1,-2],[-1,0],[-2,0],[-2,-1],[-2,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[-2,1],[-2,-1],[-2,1],[0,1],[-1,1],[-1,2],[-1,1],[0,1],[-3,1],[-3,0],[-3,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-2,2],[2,3],[1,1],[1,1],[1,-1],[2,1],[1,2],[1,1],[2,0],[3,1],[1,0],[9,0],[1,-1]],[[7454,6326],[1,0],[1,-2],[1,-2],[1,-1],[0,-1],[0,-2],[-1,-3],[0,-3],[-1,-3],[0,-1],[-1,-3],[0,-2],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,1],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,1],[0,1],[1,1],[0,1],[-1,1],[-2,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[1,1],[-1,1],[-2,1],[1,1],[-1,0],[-1,1],[1,2],[1,-1],[1,0],[1,2],[2,2],[0,1],[3,0],[1,1],[1,1],[1,1],[0,2],[1,1],[2,1],[1,0],[1,1],[1,-1],[0,-2]],[[7052,6397],[1,0],[1,1],[2,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[2,-2],[-1,-1],[0,-1],[0,-1],[3,-1],[1,0],[0,-2],[4,-2],[0,-2],[-3,1],[-2,1],[-1,0],[0,1],[-2,0],[-2,-1],[-1,-1],[-2,-2],[0,-2],[1,0],[1,-2],[0,-1],[-1,-1],[-2,0],[0,1],[-2,0],[0,1],[-1,1],[-2,2],[-1,1],[0,1],[-1,1],[-1,0],[-2,1],[-1,1],[0,2],[0,1],[-2,0],[0,1],[1,1],[0,1],[-3,0],[-2,2],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[1,2],[1,1],[3,2],[1,0],[0,-1],[0,-1],[1,-2],[0,-2],[2,-2],[2,-2]],[[7380,6715],[2,-1],[2,1],[1,0],[0,-1],[0,-1],[2,-2],[1,0],[1,0],[1,-1],[-1,-1],[0,1],[-1,0],[-1,-1],[0,-1],[1,-1],[1,0],[0,-2],[-1,-2],[0,-3],[1,-1],[0,-1],[0,-2],[-1,1],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,0],[0,-1],[-2,0],[0,-1],[-2,0],[0,-1],[-2,-1],[0,1],[0,1],[-2,0],[0,1],[-2,2],[-1,1],[-1,0],[-4,0],[0,1],[-1,0],[0,3],[0,1],[1,2],[0,1],[1,2],[2,2],[0,1],[0,2],[2,0],[1,2],[1,0],[2,1],[2,1],[1,-2]],[[7398,6404],[2,0],[3,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,-1],[1,-1],[1,0],[1,-1],[1,-2],[-1,0],[0,-1],[-1,-3],[0,-1],[2,1],[2,0],[-1,-2],[0,-1],[-1,-3],[-1,0],[-1,-1],[0,-1],[1,-2],[-1,0],[-2,2],[-1,1],[-1,1],[0,2],[-1,2],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-2,1],[0,1],[-1,1],[-1,0],[0,2],[-1,1],[0,1],[-2,2],[-2,1],[-1,-1],[-2,0],[0,1],[0,1],[-1,1],[0,1],[0,3],[-1,1],[1,2],[3,1],[0,1],[1,1],[3,0],[1,0],[0,-1],[0,-1],[0,-1],[3,0],[1,-1],[-1,-1],[0,-2],[1,-2],[3,0],[0,-1],[1,0]],[[7270,6646],[2,0],[1,0],[2,-2],[1,-2],[1,-2],[1,-2],[1,-2],[2,-2],[3,-1],[6,-3],[3,-1],[3,0],[1,-1],[0,-2],[0,-2],[1,-1],[1,0],[2,0],[1,1],[1,-2],[-2,-1],[-1,0],[-2,0],[0,1],[-1,0],[-3,-1],[-2,1],[-2,0],[-2,1],[-2,1],[-4,2],[-3,1],[-2,0],[-3,-1],[-1,0],[-2,1],[-1,-1],[1,3],[1,1],[0,1],[-2,3],[-2,2],[0,1],[0,1],[-2,1],[0,1],[-1,2],[2,2],[0,1],[-1,1],[0,1],[1,0],[0,3],[0,2],[1,0],[0,-1],[1,-1],[0,-2],[1,-2]],[[7046,6507],[2,-1],[-1,0],[-1,0],[-1,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[-2,-3],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[1,-2],[0,-1],[0,-1],[-1,0],[-1,2],[0,-2],[-1,-2],[-1,0],[-1,0],[-2,-1],[1,-1],[0,-1],[-1,0],[-2,2],[0,2],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-2,-2],[-1,-1],[0,1],[1,0],[0,1],[0,3],[0,2],[1,3],[-1,3],[1,2],[1,2],[1,4],[1,3],[1,1],[1,0],[0,1],[1,1],[1,2],[1,1],[1,-1],[1,2],[0,1],[1,0]],[[7595,6179],[0,-2],[-1,-2],[-1,-1],[0,-2],[1,-1],[0,-2],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-2],[-1,0],[-1,-2],[0,-2],[0,-1],[-1,-1],[1,-1],[2,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[1,-1],[0,-1],[1,0],[0,1],[1,-1],[1,0],[0,-1],[-1,-2],[-1,0],[0,1],[-1,-1],[-1,-1],[-2,-1],[-1,-2],[0,-2],[1,1],[0,-1],[-2,-1],[0,-1],[-1,-1],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,2],[-1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[-1,2],[0,1],[0,2],[0,1],[0,2],[-2,0],[-1,1],[0,1],[-1,2],[0,1],[2,1],[0,1],[3,2],[0,2],[0,1],[0,1],[1,3],[2,2],[1,1],[-1,1],[0,1],[1,3],[0,2],[0,1],[2,-1],[1,1],[0,1],[1,0],[-1,1],[1,0],[1,0],[0,-1]],[[7602,6294],[1,0],[1,1],[1,-2],[1,-1],[-1,-1],[-2,-1],[-3,-1],[-2,-1],[-3,0],[-5,-2],[0,-1],[-3,-3],[-2,-2],[-1,0],[-3,1],[-1,0],[-3,0],[-1,-1],[-2,0],[0,-1],[-1,-1],[1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[1,-1],[-1,0],[-1,1],[-1,1],[-2,2],[0,1],[0,3],[0,1],[0,1],[1,0],[1,0],[2,1],[2,0],[3,4],[1,1],[1,2],[1,0],[1,1],[3,1],[3,3],[2,1],[5,0],[4,2],[1,-2],[2,-1]],[[7236,6240],[0,-2],[1,-1],[1,-2],[0,-1],[1,-1],[1,-1],[2,-1],[2,-1],[2,-3],[1,-1],[1,0],[0,-2],[0,-1],[-1,-1],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,-2],[0,-1],[1,-1],[0,-3],[0,-1],[-2,0],[0,1],[-2,-1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[1,1],[-1,2],[-1,1],[1,0],[1,1],[-1,2],[0,1],[1,1],[0,1],[0,1],[-3,2],[1,1],[1,3],[1,1],[0,1],[1,0],[1,1],[1,0]],[[7522,6380],[0,-1],[-1,0],[-1,-2],[-3,-4],[-1,-1],[-2,-1],[-3,-3],[-3,-1],[-2,0],[-1,0],[-3,0],[-1,-1],[-1,0],[-1,-2],[-1,-1],[-1,-1],[-3,0],[-3,0],[0,-1],[-1,1],[0,1],[0,1],[1,2],[1,3],[5,5],[1,1],[1,0],[2,0],[1,0],[2,1],[1,-1],[3,-1],[2,1],[4,3],[1,1],[2,1],[2,0],[1,0],[1,1],[1,0],[0,-1]],[[7372,6510],[0,-1],[-1,0],[1,-1],[0,1],[2,-1],[0,-1],[1,0],[1,-1],[1,0],[3,-2],[1,-2],[0,-2],[0,-2],[-1,0],[-1,-1],[-3,0],[-1,0],[0,1],[-1,1],[0,1],[-3,-1],[1,-2],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,2],[2,0],[1,0],[0,1],[0,3],[-1,1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,-1],[-1,2],[0,-1],[-2,0],[0,1],[2,1],[1,3],[0,1],[-1,0],[-1,2],[1,2],[2,1],[1,0],[1,-1],[1,-1],[2,-1],[2,-1],[1,-1],[0,-2],[0,-2],[0,-1]],[[7412,6379],[1,-1],[-1,-1],[1,0],[1,-1],[1,1],[2,0],[1,0],[1,-1],[1,0],[2,-1],[1,1],[1,0],[1,-1],[3,-2],[1,-1],[0,-2],[-2,-3],[0,-2],[0,-1],[-1,0],[-2,-1],[-1,0],[0,1],[-2,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-2,2],[-1,0],[-1,1],[-2,2],[-1,2],[-1,1],[1,1],[1,0],[2,-1],[1,1],[1,0],[1,-1]],[[7426,6320],[3,0],[1,0],[0,1],[0,1],[-1,0],[1,1],[1,0],[1,-1],[-1,-2],[0,-1],[-2,-4],[1,-1],[1,-1],[-1,-1],[-1,-3],[-1,-1],[-1,-1],[-2,-1],[-2,-2],[-2,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,3],[0,1],[1,0],[0,2],[2,2],[1,0],[1,1],[0,1],[-1,0],[-1,-1],[0,1],[2,3],[1,0],[3,1],[1,1],[0,1],[1,0],[1,-1],[-1,0],[-1,-1],[0,-1]],[[7457,6686],[1,-1],[2,0],[1,-1],[2,0],[2,-2],[2,-1],[0,-1],[-1,-2],[0,-2],[-2,-1],[-3,-1],[-2,0],[-1,-1],[-1,0],[-2,0],[-2,2],[-3,2],[-1,2],[-2,1],[-1,1],[0,1],[1,0],[1,1],[1,1],[3,1],[1,0],[2,1],[2,0]],[[7363,6279],[1,0],[2,1],[0,1],[1,1],[1,-1],[1,-1],[0,-1],[-1,0],[1,-3],[1,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[0,1],[-2,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-4,0],[-1,-1],[-1,2],[1,2],[0,2],[1,0],[0,1],[0,2],[0,1],[1,2],[0,-1],[2,-1],[2,0],[0,-2],[0,-1],[0,-1],[2,0],[1,-1],[1,0],[2,1],[0,1],[-1,2],[-1,0],[-1,-1],[0,1],[-1,1],[-1,1],[0,2],[0,1],[2,0],[0,-1],[1,-2],[2,0]],[[7353,6379],[1,1],[3,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-2,-3],[-2,-3],[-2,-2],[-1,0],[0,-1],[0,-1],[-2,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,4],[-1,0],[0,1],[1,1],[-1,1],[1,3],[1,1],[1,2],[1,0],[1,1],[-1,0],[1,0],[1,1],[1,0],[0,1],[0,-2]],[[7497,6297],[2,-2],[-2,0],[-1,1],[-2,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[0,-2],[-2,-1],[-1,-2],[-2,-2],[-3,-1],[-1,1],[0,-1],[-1,-1],[-1,-1],[-2,1],[-2,0],[-1,1],[0,1],[0,1],[1,-1],[1,1],[1,1],[1,0],[2,0],[1,0],[2,0],[0,1],[0,1],[1,0],[1,0],[-1,1],[-1,0],[-1,1],[1,0],[3,2],[2,0],[2,1],[2,2],[2,1],[0,1],[-2,0],[0,1],[1,1],[2,0],[1,1],[1,-1],[1,-1],[1,-1],[2,0]],[[7567,6315],[1,-1],[2,0],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[1,-1],[2,-1],[0,-1],[1,0],[2,0],[1,-1],[0,-1],[-1,-2],[-1,-2],[1,0],[1,0],[0,-1],[-1,0],[-2,0],[-2,0],[-1,0],[1,-1],[0,-1],[0,-1],[-3,1],[-1,0],[-2,2],[-1,0],[1,1],[1,1],[0,1],[-1,1],[1,1],[1,1],[0,1],[0,1],[2,-1],[-1,2],[-1,1],[-2,1],[-3,2],[0,1],[1,0]],[[7441,6277],[1,-1],[-1,-1],[-1,0],[0,-1],[0,-2],[1,-1],[-1,-1],[0,-1],[-2,0],[0,-1],[-1,1],[-2,2],[-1,2],[-1,0],[-1,1],[0,1],[1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,2],[1,4],[0,1],[1,1],[2,1],[1,0],[0,-1],[1,-1],[1,-1],[-1,0],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[1,0],[1,-1]],[[7363,6353],[1,-2],[1,-1],[-1,-1],[-1,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-1],[-2,-2],[-1,0],[-1,0],[0,1],[1,3],[1,2],[0,1],[1,0],[0,1],[-1,0],[0,2],[1,0],[0,1],[0,1],[-1,0],[-2,0],[0,1],[1,1],[1,2],[1,2],[2,1],[1,1],[1,0],[-1,-3],[0,-2],[2,-1],[1,0]],[[7301,6536],[1,0],[0,1],[1,0],[2,0],[1,-1],[0,-2],[-2,-2],[-3,-2],[-2,1],[0,1],[-1,0],[-3,0],[0,1],[0,1],[0,2],[-1,1],[-2,1],[0,2],[-1,1],[-1,2],[-1,1],[0,1],[1,0],[1,0],[0,-1],[2,-1],[0,-1],[1,-1],[3,-1],[1,-1],[2,0],[0,-1],[1,-1],[-1,0],[1,-1]],[[7283,6414],[1,-1],[1,0],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,-1],[-1,0],[3,0],[-2,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-2,-2],[-2,-1],[-1,2],[-3,0],[1,4],[2,0],[2,-1],[1,0],[1,2],[2,3],[-2,-1],[-2,-1],[-2,1],[-1,-1],[0,1],[1,1],[1,0],[1,0],[0,1],[-3,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,1],[-1,1],[1,1],[1,0],[2,-1]],[[7044,6466],[0,-1],[-1,-1],[2,0],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-2],[-2,-2],[0,-2],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[1,-1],[-1,0],[-1,0],[1,-3],[0,-1],[2,-1],[-2,-1],[-2,-1],[-1,1],[-1,1],[-1,1],[0,2],[-1,1],[0,1],[0,1],[-1,2],[-1,2],[-1,2],[0,1],[-1,1],[-1,2],[0,1],[1,0],[2,-1],[0,1],[1,1],[-1,1],[0,1],[1,0],[1,-1],[1,-1],[-1,-1]],[[7527,6267],[3,-3],[2,-3],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-2,1],[-3,0],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[1,-1],[1,0],[0,-2],[1,0],[-2,0],[-1,0],[-1,-1],[-2,1],[0,1],[-1,0],[-1,2],[0,2],[-1,3],[0,1],[1,0],[1,0],[2,-1],[2,-1],[0,-1],[2,0],[0,1],[1,1],[1,1],[1,-1],[1,0],[-1,1],[-1,2],[1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[1,0],[2,-1]],[[7438,6358],[1,-2],[1,0],[0,1],[0,3],[2,0],[0,-1],[1,0],[1,0],[0,-2],[3,1],[0,-2],[-1,-1],[-3,-1],[-1,-1],[-1,-2],[0,1],[-1,0],[-1,-1],[-1,-1],[-2,1],[-1,1],[-1,-1],[-1,-1],[1,1],[-1,1],[0,1],[1,1],[1,-1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[2,0],[1,1],[1,-1],[0,-2]],[[7405,6350],[-2,-2],[-2,0],[-1,-1],[-2,-1],[0,1],[0,2],[-1,1],[-1,-1],[0,1],[0,1],[0,1],[1,0],[-1,1],[2,1],[1,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[1,-1],[3,0],[1,-2],[1,-3],[-1,-1],[-1,-1],[0,-1],[1,0],[1,0],[1,-2],[0,-1]],[[7281,6390],[2,0],[3,0],[1,0],[0,-1],[-1,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[1,-1],[-1,0],[-1,-1],[-2,-1],[-1,1],[-1,1],[-1,0],[2,1],[0,2],[-1,1],[-2,0],[-1,4],[2,0],[1,1],[2,0],[1,0]],[[7380,6309],[2,0],[1,-1],[1,-1],[2,-3],[2,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,3],[-1,2],[1,1],[-1,1],[0,1],[-1,0],[0,1],[1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,-2]],[[7365,6329],[1,0],[1,0],[1,-2],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,-2],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,-2],[0,-1],[-1,0],[-1,-1],[-1,1],[1,0],[0,1],[-2,0],[-1,0],[1,1],[-1,1],[0,-1],[-1,0],[-2,-1],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,1],[0,1],[1,0],[1,2],[0,1],[1,1],[1,0],[1,0],[-1,1],[2,0]],[[7444,6248],[2,-2],[0,-1],[3,-2],[0,-1],[0,-4],[0,-1],[-1,0],[-3,-3],[-2,2],[-1,0],[-2,0],[-1,1],[-1,0],[1,1],[1,0],[2,0],[1,0],[0,1],[1,2],[0,2],[-1,4],[0,1],[-1,0],[-1,0],[-2,0],[0,2],[1,0],[1,1],[2,-1],[1,-2]],[[7320,6553],[-1,-1],[1,0],[2,0],[0,-1],[0,-1],[-2,-2],[-2,-3],[-1,-3],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,-2],[1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[2,1],[1,1],[1,0],[1,1],[-1,0],[0,1],[0,2],[1,1],[1,1],[1,1],[1,0],[-1,1],[1,1],[1,1],[1,2],[0,1],[1,0],[0,-1]],[[7576,6137],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-2,-2],[-1,0],[-1,0],[-2,-2],[-2,0],[-1,1],[0,1],[0,1],[1,0],[1,2],[1,1],[2,2],[1,0],[1,0],[3,1],[3,1],[0,-1]],[[7605,6250],[1,1],[0,-1],[1,-2],[1,-1],[1,-2],[-1,-1],[0,-1],[1,0],[1,1],[2,-2],[0,1],[1,1],[0,-1],[1,0],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,2],[-1,1],[-1,-1],[0,3],[0,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,1],[0,1],[1,3],[0,1],[1,1],[-1,-1],[1,-1],[1,0],[1,0],[0,1],[0,1],[1,1],[0,-1]],[[7644,6266],[2,0],[1,0],[2,1],[0,-1],[0,-1],[-1,0],[2,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[2,0],[0,-1],[-1,0],[-1,0],[1,-1],[1,0],[0,-1],[-2,-1],[-2,0],[0,1],[1,0],[0,1],[0,1],[-2,0],[-1,0],[-1,0],[1,1],[0,1],[-1,0],[-2,0],[-1,0],[1,2],[1,0],[1,1],[0,1],[-1,0],[1,1],[1,1],[2,0],[0,-1],[-1,0],[-1,-1]],[[7561,6328],[3,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[0,1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[2,-2],[1,-1],[-1,-2],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,2],[2,0],[0,2],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,2],[1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[1,2],[1,0],[0,-1],[1,0],[1,0],[-1,1],[0,-1],[-1,1],[1,0],[1,0],[1,0]],[[7286,6346],[1,0],[1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[0,-2],[-5,0],[-1,-1],[-1,-1],[-2,-1],[0,1],[-1,0],[-1,-1],[0,1],[-1,0],[1,0],[1,2],[4,2],[1,1],[2,1],[1,0],[2,1],[1,1],[1,0],[0,-1],[1,1],[1,0],[0,-1]],[[7283,6541],[-1,-1],[0,1],[-2,-1],[-2,-2],[1,-1],[-1,-1],[-1,1],[0,1],[-1,0],[-1,-1],[0,1],[-1,1],[-1,0],[0,-1],[-1,1],[0,1],[1,1],[1,0],[2,0],[1,1],[0,2],[1,0],[0,1],[1,0],[1,0],[2,-2],[1,-1],[0,-1]],[[7407,6574],[0,-2],[-1,3],[-1,3],[1,2],[1,1],[1,2],[1,0],[1,-1],[2,-2],[1,0],[-1,-1],[0,-1],[-1,0],[-1,-2],[-2,0],[-1,-2]],[[7422,6276],[1,0],[0,-2],[-2,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,-2],[-1,0],[-1,0],[1,2],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[1,1],[3,0]],[[7590,6266],[2,0],[0,-2],[1,-2],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,1],[-1,-1],[0,1],[-1,0],[1,1],[0,1],[-1,1],[1,1],[0,1],[2,0],[1,1]],[[7478,6237],[1,0],[1,0],[-1,-1],[-1,0],[-1,1],[-3,-1],[-2,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[3,3],[1,0],[0,-1],[2,-1],[1,-1],[1,0],[0,-1],[1,-1]],[[7372,6288],[1,0],[0,1],[2,-1],[-1,-1],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-2,0],[-1,0],[-1,1],[-1,2],[0,2],[1,1],[0,-1],[1,1],[1,1],[1,1],[1,-1],[0,-1]],[[7458,6479],[2,-1],[0,-2],[-1,-1],[0,-3],[-2,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,2],[1,0],[0,1],[-2,3],[-1,1],[1,1],[1,-1],[1,0],[1,1],[1,0],[1,-1]],[[7540,6347],[2,-1],[1,-3],[-1,0],[0,1],[-3,0],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[3,-2],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-2,0],[0,1],[1,1],[1,0],[-1,0],[-1,0],[-1,0],[1,2],[0,1],[0,3],[0,1],[0,2],[1,0],[0,-1],[1,0],[1,1],[-1,1],[1,-1]],[[7414,6310],[0,-2],[0,-3],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-2,2],[-1,1],[-1,1],[-1,1],[1,0],[-1,2],[1,1],[1,1],[1,0],[0,1],[0,1],[2,1],[1,0],[0,-1],[-1,-1]],[[7396,6271],[0,-1],[0,1],[1,-1],[0,-1],[3,-1],[0,-1],[1,0],[1,0],[1,-1],[1,-2],[-1,-1],[-3,0],[-1,2],[0,1],[-1,0],[-2,1],[-1,1],[-1,2],[2,1]],[[7334,6075],[0,-1],[-1,0],[0,-2],[0,-1],[2,-1],[-1,-1],[-4,3],[-2,1],[-1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[3,-1],[2,-1]],[[7536,6374],[0,-1],[1,1],[1,0],[-2,-3],[0,-1],[-1,-1],[0,1],[-2,-1],[1,-2],[1,-1],[0,-2],[0,-1],[-2,2],[-1,2],[0,5],[1,-1],[0,-1],[0,-1],[1,1],[1,1],[0,3],[-1,0],[-1,0],[1,2],[1,1],[1,0],[1,-1],[-1,-2]],[[7332,6558],[0,-2],[-1,-1],[-2,-1],[-1,1],[0,1],[1,0],[0,1],[-1,1],[0,-1],[-1,0],[0,2],[1,2],[1,1],[1,0],[2,-2],[0,-2]],[[7628,6224],[0,-1],[0,-1],[-1,0],[-2,0],[-3,0],[-1,0],[-2,-1],[0,2],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[2,0],[0,-1]],[[7068,6485],[0,-1],[0,-1],[-2,-1],[0,-1],[-3,0],[0,-1],[-1,-1],[1,0],[-1,-1],[-1,-1],[0,2],[0,2],[2,3],[1,1],[2,-1],[1,1],[1,0]],[[7005,6542],[-3,0],[-3,2],[-1,3],[0,1],[1,1],[2,-2],[2,-2],[0,-1],[2,-1],[0,-1]],[[7056,6487],[-1,-1],[0,-1],[-2,-1],[-1,0],[-1,0],[0,-2],[1,-1],[2,-1],[2,-2],[-1,0],[-1,1],[-2,1],[-2,2],[-1,1],[0,1],[1,2],[0,1],[1,-1],[1,0],[1,1],[0,1],[1,-1],[1,0],[1,0]],[[7253,6332],[-2,0],[-1,0],[-1,1],[-1,2],[-1,1],[1,1],[1,0],[3,-1],[2,-1],[0,-1],[-1,-1],[0,-1]],[[7284,6363],[-1,-2],[-2,0],[-1,0],[-1,1],[-1,-1],[-2,2],[1,0],[3,2],[-1,1],[1,1],[0,-2],[3,-1],[1,-1]],[[7263,6188],[1,-1],[1,0],[1,0],[0,-2],[1,-2],[0,-1],[0,-2],[0,-1],[-1,2],[-2,1],[0,1],[-1,2],[0,2],[-1,1],[1,0]],[[7596,6188],[0,-1],[-1,-2],[1,-2],[0,-3],[-1,0],[0,1],[-1,0],[-1,0],[-2,2],[1,1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[1,0]],[[7378,6279],[-2,1],[-1,0],[0,2],[0,1],[0,1],[1,0],[0,-1],[2,0],[1,0],[1,-1],[0,-2],[-2,-1]],[[7336,6384],[-1,0],[-1,-3],[0,-1],[-1,-2],[0,-2],[-1,1],[0,3],[1,2],[1,4],[1,2],[1,0],[0,-1],[0,-3]],[[7238,6253],[1,-4],[0,-1],[-1,1],[0,1],[-1,0],[-2,0],[-1,-2],[-1,1],[1,2],[2,2],[2,1],[0,-1]],[[7346,6412],[-1,0],[-2,0],[0,1],[1,3],[0,1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[-1,-2],[-1,0]],[[7447,6292],[0,-1],[1,0],[0,-1],[0,-2],[-2,-1],[-3,0],[0,1],[0,1],[1,0],[0,1],[2,1],[1,1],[1,1],[-1,-1]],[[7386,6372],[0,-1],[0,-1],[-2,1],[-1,0],[-3,1],[-1,-1],[-1,1],[3,0],[1,1],[1,0],[1,1],[1,1],[1,0],[0,-3]],[[7555,6340],[1,-1],[1,0],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[-2,1],[-1,1],[0,1],[-1,0],[-2,0],[-1,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[0,-1],[1,0]],[[7507,6473],[1,0],[1,0],[2,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[-1,-1],[-1,-1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1]],[[7464,6296],[1,-2],[0,-1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,2],[1,0],[2,-1]],[[7322,6540],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[2,0],[0,1],[0,2],[0,2],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-2],[0,-1]],[[7573,6358],[2,-1],[1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[1,0],[3,0],[-1,0]],[[7588,6302],[1,0],[1,-1],[0,-1],[-2,0],[1,-1],[1,0],[1,-1],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[2,0],[1,0]],[[7427,6354],[1,-2],[-1,-2],[1,-1],[1,1],[0,-1],[0,-2],[-3,-1],[0,1],[0,1],[1,1],[0,1],[-1,0],[-1,2],[-1,1],[1,0],[1,0],[0,1],[1,0]],[[7477,6320],[1,-1],[0,-1],[0,-1],[-1,-1],[-2,0],[-1,2],[0,1],[0,1],[0,-1],[1,0],[1,1],[2,1],[0,-1],[-1,0]],[[7270,6343],[0,-1],[-3,-1],[-2,0],[-1,1],[-1,1],[1,0],[2,0],[0,1],[1,0],[1,-1],[1,1],[-1,0],[1,0],[1,-1]],[[7137,6274],[-1,1],[-1,1],[0,1],[0,3],[1,0],[1,-1],[1,0],[-1,-1],[0,-2],[0,-2]],[[7428,6137],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[2,1],[0,1],[1,0],[2,-2],[0,-2]],[[7269,6381],[-1,-2],[-1,1],[0,1],[0,1],[1,1],[1,1],[1,-1],[1,0],[0,-1],[-2,-1]],[[6936,6616],[1,-1],[2,1],[1,0],[-1,-1],[-1,-2],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[1,0]],[[7530,6369],[0,-2],[-2,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[1,1],[1,1],[1,-1],[0,-2]],[[7338,6563],[-1,-1],[-2,1],[1,0],[1,1],[1,4],[0,1],[1,-1],[0,-2],[0,-2],[-1,-1]],[[7437,6245],[0,-2],[-1,1],[-1,0],[0,1],[1,3],[1,0],[0,-1],[1,0],[0,-1],[-1,-1]],[[7550,6234],[-1,0],[-1,0],[-1,1],[0,2],[1,1],[1,-1],[1,-1],[0,-1],[0,-1]],[[7131,6278],[-1,0],[0,2],[0,2],[0,1],[1,1],[1,-1],[0,-2],[-1,-1],[0,-1],[0,-1]],[[7793,6212],[-2,0],[1,3],[1,1],[1,1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[-1,-1],[-1,-1]],[[7344,6286],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[-1,1],[-1,1],[0,1],[2,1]],[[7531,6308],[1,0],[1,-1],[1,-1],[-3,0],[0,1],[-2,-1],[1,0],[-3,0],[1,0],[1,0],[0,1],[-2,0],[1,1],[1,-1],[1,1],[0,1],[0,-1],[1,0]],[[7471,6118],[-1,0],[0,3],[0,1],[2,-1],[-1,-3]],[[7334,6529],[-2,0],[1,1],[-1,1],[0,1],[1,1],[1,1],[0,-1],[0,-3],[0,-1]],[[7407,6303],[1,0],[1,1],[2,-1],[-2,-1],[-2,-1],[-1,2],[1,1],[0,-1]],[[7452,6294],[1,-3],[-1,0],[-2,1],[0,1],[0,1],[1,0],[1,1],[0,-1]],[[7637,6228],[-1,-1],[-1,-2],[-1,1],[1,0],[0,1],[0,1],[-1,-1],[-1,0],[0,1],[1,1],[2,0],[1,-1]],[[7552,6350],[2,-1],[1,-1],[1,-1],[-2,-1],[-1,1],[0,1],[0,1],[-1,-1],[-1,2],[1,0],[0,1],[0,-1]],[[7064,6476],[0,-1],[0,-2],[-1,0],[0,2],[0,1],[0,-1],[1,2],[1,2],[1,1],[1,-1],[-2,-2],[-1,-1]],[[7317,6665],[1,0],[1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[3,2],[0,-1],[0,-2]],[[7459,6299],[-1,0],[-1,1],[1,1],[1,0],[1,0],[0,-1],[-1,-1]],[[7080,6457],[-1,1],[-1,3],[1,1],[0,-2],[2,0],[0,-2],[-1,-1]],[[7588,6271],[-2,0],[0,-2],[0,-1],[-1,0],[0,1],[0,2],[1,0],[1,1],[1,-1]],[[7112,6450],[1,-3],[-1,0],[-1,1],[-2,1],[-1,1],[-1,0],[0,1],[2,-1],[2,-1],[0,-1],[1,-1],[0,3],[-1,1],[0,1],[1,-1],[0,-1]],[[7517,6306],[1,-1],[-2,-2],[-1,0],[-1,1],[0,1],[2,0],[1,1]],[[7081,6449],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[-1,0],[-1,2],[1,2],[1,0]],[[7057,6466],[-1,0],[-1,0],[0,1],[1,2],[1,-1],[0,-2]],[[7584,6336],[-1,0],[0,1],[-1,1],[1,1],[0,1],[1,-1],[0,-1],[1,-1],[-1,-1]],[[7306,6654],[0,-2],[-1,1],[-1,0],[0,2],[1,0],[1,0],[0,-1]],[[7009,6538],[-2,-1],[-1,1],[0,1],[0,1],[2,-1],[1,-1]],[[7452,6472],[-2,0],[0,1],[1,1],[1,0],[-1,-1],[1,-1]],[[7648,6271],[0,-1],[1,-1],[-1,-1],[-2,0],[-1,1],[1,1],[1,0],[1,0],[0,1]],[[7365,6502],[0,-1],[-1,1],[0,1],[2,1],[0,1],[0,-2],[-1,0],[0,-1]],[[7469,6078],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[1,1],[1,-1],[1,0],[1,1]],[[7319,6356],[-1,0],[-1,1],[0,1],[-2,1],[1,1],[0,-1],[2,0],[0,-1],[1,-2]],[[7569,6308],[0,-1],[0,-1],[0,1],[-3,1],[1,0],[1,0],[1,0]],[[7355,6505],[-1,-1],[-1,0],[-1,1],[1,1],[1,0],[1,-1]],[[7351,6559],[0,-1],[-1,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[-1,-1],[0,-1]],[[6954,6618],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[2,-1],[0,-1]],[[7118,6310],[-1,2],[0,1],[2,1],[0,-1],[-1,-2],[0,-1]],[[7504,6083],[-1,0],[-1,0],[0,2],[1,0],[2,-1],[-1,-1]],[[7048,6475],[0,-2],[-2,1],[1,2],[1,-1]],[[7455,6296],[-1,0],[1,0],[0,1],[2,0],[1,1],[0,-1],[-3,-1]],[[7349,6418],[-1,-2],[-1,1],[0,1],[1,1],[0,-1],[1,0]],[[7431,6351],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,2],[1,0]],[[7442,6241],[-1,0],[-1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1]],[[7375,6497],[1,-1],[0,1],[0,-1],[0,-1],[-2,0],[0,1],[0,1],[1,0]],[[7506,6127],[-1,0],[1,1],[1,1],[1,-1],[-1,-1],[-1,0]],[[7486,6294],[-2,0],[-1,0],[-1,0],[2,1],[2,-1]],[[7339,6434],[-1,-1],[0,-1],[0,-1],[0,1],[-2,2],[1,0],[2,0]],[[6949,6605],[-1,-1],[-1,1],[-1,2],[1,0],[2,-2]],[[7074,6466],[-1,0],[-1,1],[1,0],[0,1],[1,-1],[0,-1]],[[7162,6454],[1,-1],[-2,1],[0,1],[1,0],[0,-1]],[[7517,6469],[-1,-1],[-1,0],[1,0],[0,1],[-1,1],[0,1],[1,-1],[1,-1]],[[7321,6376],[-1,0],[-1,0],[-1,1],[1,0],[1,1],[1,-2]],[[7246,6541],[0,-1],[2,1],[-2,-2],[-1,0],[0,1],[1,1]],[[7333,6438],[-1,0],[0,1],[0,1],[1,0],[0,-2]],[[7538,6370],[-1,0],[0,1],[2,1],[-1,0],[1,0],[0,-1],[-1,-1]],[[7237,6354],[1,0],[1,0],[-2,-1],[0,1]],[[7255,6330],[-1,0],[-1,1],[0,1],[1,0],[1,-2]],[[7507,6126],[-2,0],[3,1],[0,-1],[-1,0]],[[7565,6137],[-1,0],[-1,1],[1,1],[1,-1],[0,-1]],[[7248,6487],[0,-1],[-1,0],[0,2],[1,0],[0,-1]],[[7531,6255],[-1,2],[1,0],[1,-1],[-1,-1]],[[7585,6313],[-1,0],[-2,0],[1,1],[2,-1]],[[7504,6256],[0,-1],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,-3]],[[7526,6207],[0,-1],[-1,0],[0,1],[0,1],[1,-1]],[[7234,6360],[0,-1],[-2,1],[0,1],[1,0],[0,-1],[1,0]],[[7279,6297],[0,-1],[-1,1],[0,2],[-1,0],[1,0],[1,-1],[0,-1]],[[7521,6120],[-1,-1],[0,1],[0,1],[1,-1]],[[7649,6255],[-1,-1],[-1,1],[1,1],[1,-1]],[[7480,6110],[-1,0],[1,1],[1,1],[0,-1],[-1,-1]],[[7325,6083],[0,-1],[-1,0],[-1,1],[0,1],[2,-1]],[[7304,6389],[-1,0],[0,1],[1,0],[0,-1]],[[7410,6267],[-1,-1],[-1,0],[1,1],[1,0]],[[7787,6216],[-1,-1],[-1,0],[0,1],[2,0]],[[7552,6346],[-1,-1],[-1,1],[1,1],[1,-1]],[[7557,6328],[-1,0],[1,1],[1,1],[0,-1],[-1,0],[0,-1]],[[7449,6354],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[7229,6361],[-1,0],[-1,1],[1,0],[1,-1]],[[7405,6302],[0,-2],[-1,1],[1,1]],[[7478,6545],[0,1],[0,1],[1,0],[-1,-2]],[[7580,6261],[-1,0],[-1,1],[0,1],[1,0],[1,0],[0,-2]],[[7282,6535],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[7264,6335],[-1,0],[0,1],[1,0],[0,-1]],[[7478,6228],[-1,-1],[0,1],[0,1],[1,0],[0,-1]],[[7466,6266],[-1,-1],[-1,2],[1,0],[1,-1]],[[7095,6452],[-1,0],[0,1],[0,1],[1,-1],[0,-1]],[[7374,6335],[1,-1],[-1,0],[-1,0],[1,1]],[[7561,6187],[0,-1],[-1,0],[0,1],[1,0]],[[7425,6226],[0,-1],[-1,0],[1,1],[0,1],[0,-1]],[[7076,6464],[-1,0],[0,1],[1,0],[0,-1]],[[7464,6289],[0,-1],[-1,1],[0,1],[1,0],[0,-1]],[[7573,6252],[-1,0],[1,1],[1,0],[-1,-1]],[[7277,6381],[-1,-1],[-1,1],[1,1],[1,-1]],[[7073,6333],[-1,0],[1,1],[0,-1]],[[7315,6289],[-1,0],[-1,1],[1,0],[1,-1]],[[7582,6260],[-1,0],[1,1],[0,-1],[1,0],[-1,0]],[[7050,6508],[-1,-1],[1,1],[1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[1,2],[0,1],[0,-1]],[[7466,6290],[0,-1],[-1,1],[-1,0],[1,0],[1,0]],[[7385,6296],[-1,-1],[0,1],[1,1],[0,-1]],[[7260,6395],[1,-1],[-1,0],[0,1]],[[7322,6534],[-1,1],[1,0],[0,1],[0,-1],[0,-1]],[[7262,6382],[-1,0],[0,1],[1,0],[0,-1]],[[7798,6211],[-1,-1],[0,1],[1,1],[0,-1]],[[7511,6259],[0,-1],[-1,0],[1,1]],[[7072,6455],[0,-1],[-1,0],[0,1],[1,0]],[[7263,6395],[-2,0],[1,1],[1,-1]],[[7420,6633],[-2,0],[1,0],[1,0]],[[7099,6454],[-1,0],[-1,1],[1,0],[1,-1]],[[7559,6375],[0,-1],[-1,0],[0,1],[1,0]],[[7466,6316],[1,-1],[-2,1],[1,0],[0,1],[0,-1]],[[7584,6300],[0,-1],[-1,1],[1,1],[0,-1]],[[7534,6361],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[7055,6477],[-1,1],[1,0],[0,-1]],[[7051,6490],[-1,-1],[0,1],[1,0]],[[7006,6566],[-1,0],[0,1],[1,-1]],[[7336,6560],[0,-1],[-1,0],[0,1],[1,0]],[[7288,6161],[1,-1],[1,0],[0,-1],[-2,1],[0,1]],[[7601,6251],[-1,-1],[-1,0],[0,1],[1,0],[1,0]],[[7099,6448],[-1,0],[0,-1],[-2,1],[2,0],[1,1],[0,-1]],[[7076,6453],[0,-1],[-1,1],[-1,0],[0,1],[0,1],[1,-2],[1,0]],[[7471,6285],[-1,0],[0,1],[0,1],[0,-1],[1,-1]],[[7301,6637],[-1,0],[0,1],[1,0],[0,-1]],[[7483,6228],[-1,-1],[0,1],[1,0]],[[7076,6466],[-1,-1],[0,1],[1,0]],[[7324,6547],[-1,0],[0,1],[1,0],[0,-1]],[[7339,6577],[0,-1],[-1,0],[1,1]],[[7631,6226],[-1,1],[1,0],[0,-1]],[[7316,6383],[-1,0],[0,1],[1,0],[0,-1]],[[7077,6464],[1,0],[-1,-1],[0,1]],[[7289,6156],[-1,0],[0,1],[1,-1]],[[6982,6592],[-1,-1],[0,1],[1,0]],[[7058,6527],[1,-1],[-2,0],[0,2],[0,-1],[1,0]],[[7007,6566],[-1,1],[1,0],[0,-1]],[[7375,6092],[0,-1],[-1,0],[0,1],[1,0]],[[7521,6264],[1,0],[-2,1],[1,0],[0,-1]],[[7494,6714],[0,-1],[-2,3],[2,-2]],[[7554,6230],[1,-1],[-1,0],[0,1]],[[7571,6297],[-1,0],[1,1],[0,-1]],[[7537,6363],[1,-1],[-1,0],[0,1]],[[7553,6346],[-1,1],[1,0],[0,-1]],[[7374,6497],[-1,0],[-1,0],[1,1],[0,-1],[1,0]],[[7368,6408],[0,-1],[-1,1],[1,0]],[[7511,6183],[-1,0],[1,1],[1,0],[-1,0],[0,-1]],[[7529,6556],[-1,-1],[0,2],[1,-1]],[[7406,6352],[-1,1],[1,0],[0,-1]],[[7440,6241],[-1,1],[1,0],[0,-1]],[[7065,6524],[-1,0],[0,1],[1,-1]],[[7494,6715],[0,-1],[-1,2],[1,-1]],[[7050,6491],[-1,0],[1,1],[0,-1]],[[7415,6313],[0,-1],[-1,0],[0,1],[1,0]],[[7528,6371],[-1,1],[1,0],[0,-1]],[[7418,6303],[-1,1],[1,0],[0,-1]],[[7272,6385],[-1,-1],[0,1],[1,0]],[[7507,6131],[-1,0],[0,1],[1,-1]],[[7284,6539],[-1,-1],[0,1],[1,0]],[[7323,6536],[-1,0],[1,1],[0,-1]],[[7290,6408],[-2,0],[1,0],[1,1],[0,-1]],[[7456,6352],[0,-1],[-1,0],[1,1]],[[7268,6528],[-1,-1],[0,1],[1,0]],[[7261,6196],[-1,-1],[0,1],[1,0]],[[7247,6227],[-1,0],[0,1],[1,0],[-1,0],[1,0],[0,-1]],[[7219,6689],[0,-1],[-1,1],[1,0]],[[7224,6504],[1,-1],[-1,0],[0,1]],[[7246,6524],[-1,-1],[0,1],[1,0]],[[7347,6420],[0,-1],[-1,0],[1,1]],[[7285,6120],[-1,-1],[0,1],[1,0]],[[7531,6179],[-1,1],[1,0],[0,-1]],[[7516,6467],[-1,0],[1,1],[0,-1]],[[7526,6259],[-1,0],[0,1],[1,-1]],[[7540,6339],[0,-1],[-1,0],[0,1],[1,0]],[[6954,6605],[-1,0],[0,1],[1,-1]],[[7271,6340],[-1,0],[1,1],[0,-1]],[[7506,6297],[0,-1],[-1,0],[1,1]],[[7629,6222],[-1,0],[1,1],[0,-1]],[[7271,6337],[-1,0],[1,1],[0,-1]],[[7221,6691],[-1,1],[1,0],[0,-1]],[[5157,6992],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-2],[1,0],[1,0],[1,1],[1,0],[2,1],[2,-1],[1,0],[1,-1],[-1,-1],[0,-2],[1,-1],[1,-1],[1,0],[2,0],[1,3],[-1,1],[3,0],[2,0],[2,-1],[1,-1],[2,0],[2,-1],[1,1],[1,-1],[2,-1],[0,-2],[0,-1],[0,-3],[-1,-1],[-1,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[0,-1],[2,-2],[0,-1],[1,0],[6,-2],[1,0],[1,2],[0,3],[0,1],[1,2],[1,1],[4,0],[-1,-1],[-1,-1],[-1,-3],[1,0],[1,0],[1,-1],[1,-2],[1,0],[2,2],[1,-1],[3,-2],[0,1],[3,-2],[0,-1],[0,-1],[1,1],[1,1],[2,-1],[1,0],[0,-1],[1,0],[5,-1],[1,-2],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[2,-1],[2,1],[2,-1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,-2],[1,0],[-1,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[1,0],[2,0],[1,-1],[0,-1],[1,-1],[1,0],[2,-2],[1,-1],[1,-1],[-1,-2],[1,0],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[2,0],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,0],[0,-1],[1,0],[1,-1],[2,-1],[1,0],[3,1],[1,-1],[1,0],[0,1],[1,1],[2,2],[1,0],[1,0],[1,1],[1,-1],[2,0],[0,-1],[2,-1],[0,1],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,2],[1,-1],[0,-1],[1,-1],[-1,0],[1,-1],[2,-1],[1,-2],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,1],[3,-1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,1],[0,1],[2,0],[1,-1],[2,1],[0,1],[2,0],[1,0],[1,1],[2,-1],[2,-1],[2,0],[1,0],[0,-1],[1,-2],[2,-2],[1,1],[1,1],[0,2],[2,0],[1,1],[0,1],[1,-1],[1,-1],[1,1],[0,-2],[2,0],[0,-1],[2,0],[1,1],[1,-1],[1,1],[1,-1],[2,0],[1,0],[0,1],[0,1],[1,-1],[1,0],[3,0],[1,1],[2,-1],[3,-1],[2,0],[0,1],[0,1],[-1,1],[1,1],[-1,1],[0,2],[-2,0],[0,1],[2,1],[-1,1],[-1,0],[1,1],[0,1],[1,0],[0,2],[0,1],[-1,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[2,-1],[0,-1],[3,-1],[2,0],[1,0],[2,-1],[1,0],[1,0],[0,-1],[2,0],[3,-3],[1,0],[2,1],[1,1],[1,-2],[1,0],[1,0],[3,-1],[0,1],[1,-1],[2,0],[1,1],[0,-1],[2,-1],[1,-1],[1,-1],[0,-3],[3,-2],[2,1],[2,0],[1,1],[2,0],[0,-1],[2,0],[2,0],[1,0],[1,1],[1,0],[0,-1],[2,0],[0,-1],[-1,0],[2,-1],[1,0],[0,-1],[1,0],[-1,-2],[1,0],[1,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,0]],[[5428,6912],[0,-1],[-1,-1],[0,-1],[1,-1],[-1,-1],[-1,-2],[0,-1],[2,1],[1,0],[0,-1],[1,-2],[-2,-2],[-1,0],[-1,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[4,-1],[1,0],[1,0],[2,0],[1,2],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,1],[3,0],[2,0],[1,1],[0,2],[0,1],[1,-1],[1,0],[1,0],[1,0],[1,1]],[[5452,6901],[0,-1],[2,0],[1,-1],[3,0],[1,1],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,-1],[0,-2],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[1,-1],[2,-1],[0,-1],[1,1],[3,0],[1,1],[1,0],[1,1],[2,1],[0,1],[0,1],[0,1],[1,0],[2,1],[4,0],[2,1],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,-1],[1,0],[1,1],[1,0],[0,-1],[2,0],[0,-1],[2,-1],[2,0],[1,-1],[2,0],[1,0],[-1,-2],[1,0],[1,0],[0,-1],[1,0],[1,-2],[1,-1],[1,1],[2,-1],[1,0],[1,0],[1,1],[0,1],[2,0],[2,-1],[1,0],[3,0],[1,-1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[1,0],[1,2],[1,1],[2,1],[1,0],[2,1],[1,-1],[1,-1],[1,1],[1,0],[1,1],[1,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,-1],[1,0],[2,0],[1,0],[0,1],[0,1],[2,1],[1,-1],[0,-1],[1,0],[1,1],[1,0],[1,-1],[2,1],[1,-2],[1,-1],[1,-2],[1,0],[2,0],[0,1],[1,0],[1,0],[1,-1],[3,1]],[[5574,6894],[-1,-2],[-1,-1],[1,-1],[-1,-1],[1,0],[-1,-1],[1,-2],[1,-1],[1,0],[0,-1],[1,-1],[1,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[2,0],[0,-1],[0,1],[2,-1],[1,-1],[-2,-1],[0,-1],[-1,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-2,0],[-1,0],[1,-1],[0,-1],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,1],[-2,0],[0,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[0,-4],[1,-3],[0,-2],[1,0],[1,0],[0,-1],[1,1],[1,-1],[1,0],[0,-1],[-1,0],[1,0],[2,-3],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-2],[1,-2],[0,-2],[0,-1],[1,-1],[1,0],[0,-1],[1,-2],[-2,-1],[0,-1],[1,-1],[-1,-2],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,-1],[-1,-1],[-1,-3],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-2,-2],[-1,0],[1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-2,-1],[-2,-1],[-1,-1],[-1,0],[-3,-1],[-2,-1],[-4,-2],[-2,0],[-3,-2],[-1,0],[-1,-1],[-2,-1],[-2,-1],[-3,-2],[-2,-2],[-2,-1],[-3,-1],[-4,-1],[-2,-2],[-2,-1],[-1,-2],[-1,-2],[-2,-2],[-1,-3],[-1,-2],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,-2],[-1,-2],[0,-3],[-1,-1],[-2,-2],[-4,-1],[-2,-1],[-4,-1],[-5,0],[-2,0],[-4,-2],[-1,-1],[-4,0],[-2,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-3,-1],[-1,-1],[-3,0],[-2,-1],[-4,0],[-4,-1],[-2,-1],[-3,-1],[-2,-1],[-3,-1],[-1,-1],[-2,0],[-2,-1],[-3,1],[-1,-1],[-3,-1],[-1,-1],[-3,0],[-1,-1],[-2,-2],[0,-1],[0,-1],[-1,0],[-1,0],[1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-3,-2],[-1,1],[-2,0],[-2,-2],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,-3],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-2],[0,-1],[-2,0],[0,-1],[-3,-3],[0,-1],[0,-1],[-2,-1],[0,-1],[0,-1],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-3,-1],[0,-1],[0,-1],[1,-1],[1,-1],[2,-1],[2,0],[1,1],[-1,1],[-2,1],[-2,0],[1,0],[2,0],[1,-1],[4,-5],[1,-1],[1,0],[2,0],[0,1],[1,-1],[0,-1],[0,-2],[-2,-1],[-2,-2],[-3,-1],[-1,0],[1,0],[-3,-1],[-1,-2],[-4,-5],[-1,-2],[-1,-1],[-2,0],[-3,-1],[-1,1],[-1,1],[0,1],[2,1],[1,-1],[2,1],[0,1],[1,0],[2,-1],[2,1],[3,4],[-2,1],[-4,-1],[-1,-1],[-3,0],[-2,0],[-2,-2],[-2,-2],[-2,-2],[0,-2],[-1,-1],[-1,-2],[-1,-2],[-2,-4],[-1,-1],[-1,-2],[-1,0],[0,-2],[-1,-1],[-1,-1],[-1,-2],[0,-2],[0,-1],[-2,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[-1,0],[-2,-1],[-2,-2],[-1,-1],[-3,-5],[-1,-3],[-1,-3],[-1,-1],[-1,0],[-1,0],[-1,0],[-3,-2],[0,-1],[-1,-2],[-1,-2],[0,-2],[-1,0],[0,-1],[-1,-3],[-1,-2],[0,-1],[-3,-3],[-3,-3],[-1,-2],[-2,-3],[-3,-4],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[0,-2],[0,-2],[-1,-2],[-1,-1],[-1,-1],[-2,-2],[-1,-2],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-3],[0,-3],[0,-1],[-1,-1],[0,-2],[1,-3],[1,-4],[1,-5],[2,-3],[2,-6],[1,-2],[1,-2],[1,0],[-1,-1],[-1,0],[0,-2],[0,-2],[1,-4],[2,-5],[1,-1],[1,-2],[3,-5],[0,-1],[1,-1],[1,-1],[1,-2],[3,-3],[3,-3],[2,-1],[2,-1],[1,0],[1,-1],[2,1],[3,-1],[1,-1],[1,-1],[2,-1],[2,-1],[3,-2],[-1,0],[-1,0],[0,-1],[1,-2],[1,-1],[2,-1],[0,-1],[0,-1],[-2,0],[0,-1],[-2,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-2],[0,-1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[1,-1],[-2,1],[-1,0],[-1,0],[-1,-2],[-3,-3],[0,-1],[0,-1],[1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,1],[-3,1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[-2,-1],[-1,0],[-2,-1],[-3,-1],[-4,-3],[-3,-2],[-1,-1],[-1,-2],[0,-3],[0,-3],[-2,0],[-1,0],[0,1],[-3,-2],[-2,-1],[-1,-2],[-1,-2],[0,-3],[1,-3],[0,-2],[0,-1],[0,-1],[0,-1],[-2,-1],[-2,0],[-3,0],[-2,-1],[-1,-3],[0,-1],[-1,-2],[0,-4],[-1,-4],[0,-2],[0,-1],[0,-1],[1,-1],[-1,0],[0,-2],[-1,-1],[-1,0],[-1,0],[-1,-2],[0,-2],[-1,0],[-1,-2],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-3],[1,-3],[-1,0],[0,1],[-1,2],[-1,0],[0,-1],[-1,0],[-1,-1],[1,-2],[-1,0],[-1,-2],[-1,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[1,-2],[2,-2],[1,-2],[1,-1],[4,-1],[0,-1],[1,0],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,4],[1,2],[0,1],[0,1],[-1,1],[-1,3],[1,0],[1,-1],[-1,-1],[1,-2],[0,-1],[0,-2],[0,-2],[1,-3],[1,-3],[1,-1],[-2,-3],[-5,-1],[-2,-1],[-1,-1],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-2,0],[-2,0],[2,1],[-2,1],[-1,0],[0,2],[-1,0],[0,-1],[0,-1],[-1,1],[-1,0],[0,-1],[-1,-1],[-1,1],[-2,1],[-1,0],[-1,-1],[-2,-1],[-2,-2],[1,-1],[1,-1],[-2,1],[-3,0],[-1,1],[1,0],[0,1],[-1,1],[-2,1],[-1,0],[-1,-1],[0,1],[-2,0],[-1,-1],[0,-1],[-2,0],[-3,0],[-2,0],[-1,-1],[-1,-2],[-2,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[1,-1],[-1,-1],[-1,0],[0,1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-2,-1],[-2,-1],[0,-1],[-1,0],[-1,-2],[-1,0],[-1,0],[-1,-2],[-2,-4],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-2,-1],[-1,-1],[-1,-3],[0,-2],[0,-2],[-1,-4],[-1,0],[0,-1],[-1,-2],[1,-2],[-2,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[-1,0],[0,-2],[0,-3],[0,-1],[-1,-1],[-1,1],[-1,0],[-1,-2],[-1,-2],[-1,0],[-1,0],[-1,-2],[-1,-2],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-3,-3],[0,-1],[0,-2],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,-2],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,-1],[-2,-1],[-1,1],[-3,4],[-2,3],[-3,3],[-2,2],[-4,0],[-3,-1],[-1,-1],[-1,-1],[-2,2],[-2,1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,-1],[-3,-4],[-1,-4],[0,-1],[-2,-3],[-1,0],[-2,0],[-2,-2],[-2,1],[-4,-1],[-1,1],[0,1],[-3,1],[-1,0],[-1,-1],[-1,0],[-2,3],[-2,2],[-1,1],[-1,0],[-1,0],[-3,-2],[-1,1],[-2,0],[-1,0],[-1,0],[-3,0],[-5,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[-2,-1],[-3,-1],[-1,1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-4,0],[-1,-1],[-1,1],[-3,3],[-1,0],[-1,-1],[-2,0],[-1,1],[-2,2],[-1,0],[-2,0],[-2,0],[-1,-2],[-2,0],[0,1],[-2,0],[0,-1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[-3,1],[-1,0],[-2,0],[-1,-1],[-3,0],[-1,0],[-3,-2],[-3,1],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-2],[-5,-1],[-1,0],[-5,-1],[-1,0],[-4,1],[-2,0],[-2,0],[-1,0],[-3,1],[-2,-1],[-1,-1],[-2,-5],[-1,0],[-1,-2],[-3,-5],[-2,-1],[0,-1],[-1,0],[-1,0],[-3,-1],[-2,-1],[-1,-4],[-1,-2],[-2,0],[-1,0],[-2,-1],[-3,-1],[-2,0],[-8,2],[-5,0],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-3,-2],[-2,0],[-2,-1],[-1,0],[-1,0],[-2,-2],[-1,0],[-2,0],[-1,-2],[-2,0],[-3,-3],[-1,-1],[0,-2],[-1,0],[-1,-5],[-1,0],[-1,-1],[-2,-6],[-1,0],[0,-1],[-1,-1],[-1,-2],[0,-3],[-1,-3],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[0,-1],[-2,-2],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[1,0],[0,-1],[0,-1],[-2,-1],[-1,-1],[-2,0],[-1,0],[-2,-1],[-2,-1],[-3,-2],[-2,0],[0,-1],[-1,2],[-2,2],[-1,1],[-2,1],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-2,2],[-1,0],[-1,-1],[-1,1],[-1,1],[-1,1],[-1,2],[-3,3],[-3,4],[-2,0],[-1,0],[-1,-1],[-2,0],[-2,1],[-1,0],[-2,0],[-1,2],[-2,4],[-1,2],[-1,2],[-1,1],[-2,0],[-1,2],[-1,2],[0,2],[-2,2],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[-1,3],[-1,0],[0,1],[-1,2],[-1,2],[-1,3],[-1,1],[0,1],[-1,0],[0,1],[2,0],[-1,-1],[1,0],[1,-1],[1,-2],[0,-1],[-1,-1],[1,-1],[0,-1],[2,0],[1,0],[1,0],[0,1],[1,1],[1,1],[1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,1],[-1,1],[0,1],[2,-1],[0,1],[1,3],[0,2],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,3],[-1,1],[-2,1],[-1,0],[-1,0],[-2,-1],[-2,1],[0,1],[0,1],[-1,2],[-2,3],[-1,3],[0,2],[1,1],[1,1],[0,1],[1,0],[4,3],[1,0],[0,1],[-2,-1],[-2,1],[-1,1],[-2,7],[-2,3],[-1,2],[-5,6],[-6,5],[-12,7],[-5,4],[-6,2],[-2,2],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,1],[-7,4],[-2,0],[-1,0],[-7,0],[-7,0],[-4,-1],[-3,0],[-1,-1],[-3,-2],[-1,0],[-1,1],[-1,-1]],[[4685,6325],[-1,2],[0,2],[0,2],[-1,1],[-1,1],[0,1],[0,1],[1,1],[-1,2],[0,2],[0,1],[0,1],[-1,2],[1,1],[0,2],[0,1],[0,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[1,1],[-2,1],[-1,2],[0,1],[-1,0],[0,2],[-1,1],[0,1],[1,0],[0,1],[-1,0],[2,1],[0,1],[0,1],[-1,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[0,1],[1,0],[-1,1],[0,1],[1,0],[1,0],[2,1],[1,2],[2,2],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[0,2],[0,1],[1,1],[1,1],[1,4],[0,1],[-1,1],[1,2],[1,0],[1,-1],[1,1],[1,1],[1,0],[0,-1],[1,0],[2,0],[1,0],[2,1],[-1,1],[0,2],[2,1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[2,1],[1,0],[1,1],[-1,1],[1,1],[1,1],[0,2],[0,1],[0,2],[1,0],[0,1],[1,2],[0,1],[1,1],[-2,1],[0,1],[1,1],[2,2],[0,1],[0,1],[-1,0],[-1,0],[-1,-2],[-1,1],[-2,-1],[-1,-1],[-1,-1],[-1,1],[-1,-1],[0,1],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,1],[-1,3],[-1,1],[-1,2],[-1,1],[0,2],[-1,1],[-1,0],[1,0],[-2,2],[-1,2],[0,1],[-4,4],[-2,3],[0,1],[-1,1],[0,1],[-3,2],[-2,0],[1,1],[1,0],[0,1],[1,1],[1,1],[-1,1],[-1,-1],[0,1],[0,1],[0,2],[1,0],[0,2],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,-1],[-1,1],[0,1],[0,1],[0,2],[1,1],[-1,1],[1,2],[0,1],[0,1],[2,1],[1,0],[2,2],[1,2],[2,1],[1,1],[2,2],[2,1],[1,0],[1,3],[1,1],[2,1],[1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[2,1],[1,2],[3,5],[2,3],[1,1],[-2,2],[1,0],[0,2],[-2,3],[-1,1],[-3,2],[-1,0],[-1,0],[-4,-1],[0,-1],[-3,1],[-1,1],[0,1],[1,2],[1,2],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,2],[-1,0],[1,1],[-1,1],[0,3],[0,1],[1,2],[-3,2],[0,1],[-2,2],[-1,1],[0,2],[-1,2],[0,1],[0,1],[0,1],[1,0],[0,2],[0,1],[0,2],[1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-2,0],[-1,1],[-1,0],[0,1],[0,3],[-1,0],[-2,0],[-2,2],[0,1],[-1,1],[0,1],[-2,0],[0,1],[-1,0],[-1,2],[-1,2],[-1,1],[0,1],[0,2],[-1,0],[0,1],[1,0],[1,0],[6,-1],[2,-1],[1,0],[1,-1],[1,1],[1,0],[4,-1],[1,1],[2,1],[1,0],[2,1],[1,0],[3,-1],[1,0],[1,0],[3,-1],[2,1],[2,0],[3,0],[4,1],[1,2],[0,1],[1,2],[0,2],[1,2],[0,1],[1,1],[0,1],[-1,1],[0,2],[0,1],[2,1],[1,0],[1,1],[0,1],[1,1],[1,0],[1,2],[0,3],[0,1],[-1,1],[1,1],[1,0],[0,1],[0,2],[0,1],[1,1],[-1,0],[1,2],[0,1],[1,1],[-1,1],[0,1],[0,1],[-2,1],[1,1],[-1,0],[-1,1],[-1,2],[-1,1],[0,1],[0,1],[-2,-1],[0,1],[-2,0],[-1,0],[-1,1],[-1,2],[1,1],[0,1],[-1,2],[-1,1],[1,2],[1,2],[1,1],[2,1],[0,-1],[1,0],[1,2],[2,0],[1,0],[2,1],[1,0],[1,1],[0,1],[0,1],[0,1],[2,2],[2,1],[1,0],[1,0],[0,1],[0,2],[1,1],[0,1],[-1,0],[-1,1],[0,1],[-2,1],[0,1],[-1,3],[-1,2],[2,2],[1,1],[0,1],[0,1],[2,1],[0,1],[-1,1],[0,1],[0,1],[-2,1],[-1,1],[0,1],[0,1],[0,1],[2,2],[0,1],[1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,2],[0,2],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[2,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[0,2],[0,2],[-1,2],[-1,0],[-1,2],[0,1],[-2,2],[-1,0],[-1,2],[1,1],[1,1],[3,-1],[2,0],[2,0],[2,1],[1,2],[1,0],[1,2],[0,1],[1,0],[0,2],[-1,2],[0,1],[2,1],[2,2],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[2,1],[0,1],[1,0],[1,0],[2,1],[0,-1],[1,0],[0,1],[1,-1],[0,-1],[1,0],[0,1],[1,0],[1,2],[1,0],[1,1],[1,-1],[1,0],[2,1],[-2,1],[1,1],[1,1],[1,0],[2,1],[0,1],[2,1],[-1,1],[0,1],[1,0],[2,0],[0,1],[1,1],[-1,0],[0,1],[0,1],[2,1],[0,-1],[1,-1],[2,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,0],[1,2],[-1,1],[1,1],[1,1],[0,1],[1,1],[1,0],[-1,1],[1,0],[1,1],[-1,1],[1,0],[1,1],[1,2],[1,1],[0,1],[1,1],[1,1],[-1,1],[-1,1],[-2,1],[-2,3],[-1,1],[0,1],[-1,1],[-2,0],[-1,1],[-3,1],[-2,-1],[-2,1],[-1,0],[-2,0],[0,1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,2],[-1,1],[-1,1],[1,0],[-1,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,2],[1,1],[0,1],[0,1],[1,1],[0,2],[0,2],[1,1],[0,2],[-1,0],[-3,1],[0,1],[1,0],[1,3],[0,1],[0,2],[-3,1],[0,1],[-1,0],[-1,-2],[-1,-1],[-2,0],[-1,0],[-4,-1],[-1,1],[-1,0],[-2,1],[-2,3],[0,1],[-1,0],[-2,1],[0,-3],[-1,-2],[-1,0],[-2,-1],[-1,1],[-1,0],[-1,-1],[-3,1],[-2,0],[-1,2],[-1,1],[-1,0],[-1,-1],[-1,-2],[-2,0],[-1,1],[0,-1],[-1,0],[-2,0],[0,2],[-1,1],[-2,1],[-2,1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-2],[0,-1],[1,-2],[-1,-1],[0,-1],[-1,-2],[-1,0],[-1,-1],[-2,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,1],[-1,1],[-2,-1],[0,-1],[-1,-1],[-1,-2],[-1,0],[0,1],[0,1],[0,1],[-2,0],[0,1],[0,1],[0,1],[-3,0],[-1,1],[-1,-1],[0,-2],[-1,0],[-2,-1],[-3,-1],[-2,1],[-1,-1],[0,1],[0,1],[1,2],[1,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-2,2],[-1,0],[-1,-1],[-2,-1],[-1,1],[-1,-1],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-2,0],[-1,-1],[0,-1],[0,1],[-1,0],[0,3],[0,3],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,-3],[-2,-1],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-3,-1],[-1,0],[-2,0],[-2,1],[-1,0],[0,5],[-1,1],[0,1],[-1,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[2,2],[1,1],[0,1],[1,1],[0,1],[2,0],[1,2],[1,0],[2,1],[1,3],[-1,1],[0,2],[-1,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[0,4],[-1,1],[1,1],[-1,2],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,1],[-1,1],[-2,-1],[-1,0],[-1,0],[-3,0],[1,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-2],[-2,-1],[-1,-1],[-3,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[0,-1],[-2,-1]],[[4562,6833],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,3],[0,1],[1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[2,-1],[0,1],[1,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[1,-1],[1,1],[0,2],[0,1],[2,1],[1,1],[0,1],[1,1],[3,0],[0,2],[1,0],[1,0],[0,1],[1,1],[1,-1],[1,1],[1,2],[1,1],[2,-1],[0,1],[1,1],[0,1],[-1,0],[1,2],[0,2],[-1,1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,2],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[0,-1],[-1,1],[-1,1],[-1,-1],[-1,1],[-1,0],[-1,-2],[-1,1],[1,2],[1,3],[0,1],[1,-1],[1,-2],[0,-1],[1,1],[-1,1],[1,1],[0,2],[-1,0],[0,2],[-1,0],[1,1],[1,-1],[1,0],[1,0],[-1,-1],[1,0],[1,0],[1,1],[1,1],[1,2],[1,1],[1,1],[1,2],[1,-1],[0,1],[1,0],[2,2],[1,0],[0,1],[-3,-1],[0,1],[0,1],[-1,-1],[-3,-2],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,1],[-2,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,2],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-2,1],[-1,-1],[0,-1],[-1,1],[-1,1],[1,1],[2,0],[2,1],[0,1],[2,1],[1,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,2],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,2],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,2],[2,0],[0,1],[1,-1],[2,2],[0,1],[0,1],[0,1],[1,2],[1,0],[0,1],[1,2],[1,1],[-1,0],[1,1],[-1,0],[1,-1],[-2,-2],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-2,1],[0,1],[0,1],[-1,1],[-1,2],[0,-2],[-1,-1],[-1,-1],[1,-1],[1,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[-1,0],[-2,1],[0,1],[1,1],[-2,1],[0,-1],[-1,0],[-2,-3],[0,-1],[1,0],[0,-1],[-2,0],[-1,-1],[0,-1],[-1,0],[-2,-1],[1,-1],[0,-1],[-3,-3],[-2,0],[0,1],[0,2],[1,0],[0,1],[0,1],[-2,2],[-2,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,2],[0,1],[1,2],[1,1],[-1,0],[0,2],[1,1],[0,1],[0,1],[1,1],[1,0],[0,2],[1,0],[0,2],[1,0],[1,0],[2,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[2,-1],[0,1],[-1,1],[0,2],[1,-1],[1,1],[0,1],[0,-1],[-1,0],[-1,1],[0,-1],[-1,-2],[-1,0],[-1,0],[0,1],[-1,-1],[0,-2],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-3,0],[0,1],[1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[1,-1],[1,0],[-1,-1],[-2,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-2,3],[2,1],[1,0],[1,2],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[1,3],[1,0],[-1,1],[-2,0],[-1,2],[0,1],[-1,2],[0,-1],[-1,0],[1,-2],[0,-1],[0,-1],[-2,1],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[1,0],[0,-1],[-1,-2],[-1,1],[1,2],[-1,1],[-1,0],[0,3],[1,1],[1,1],[1,0],[0,1],[0,1],[0,2],[-1,1],[-1,0],[0,1],[0,2],[-1,0],[0,1],[0,1],[1,-1],[0,-1],[1,0],[1,1],[0,1],[1,1],[-1,3],[1,0],[1,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,-1],[1,0],[1,0],[0,-2],[1,0],[0,1],[0,1],[2,0],[0,2],[0,1],[-1,0],[-1,-1],[-1,0],[-1,1],[0,2],[0,1],[0,-1],[1,0],[1,1],[0,1],[1,2],[1,-1],[2,1],[1,1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,1],[2,0],[1,1],[1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[0,-1],[0,-1],[1,0],[1,1],[1,0],[2,0],[1,0],[0,1],[0,1],[-1,0],[0,2],[-1,0],[-1,0],[-2,1],[1,1],[2,1],[2,0],[2,0],[0,1],[1,1],[-1,1],[2,0],[2,0],[1,0],[0,1],[0,1],[1,1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[2,-1],[1,0],[1,0],[1,-1],[1,1],[1,0],[0,-1],[1,0],[4,1],[1,1],[1,0],[1,1],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,1],[2,2],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,-1],[1,-1],[1,1],[-1,1],[1,1],[1,-1],[0,-2],[-1,0],[1,-1],[1,-1],[-1,0],[0,-1],[1,0],[1,1],[2,0],[0,2],[0,1],[0,1],[-1,0],[0,1],[2,1],[1,0],[1,0],[1,0],[0,-2],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[0,1],[1,0],[-1,1],[-1,1],[1,1],[-1,0],[1,1],[-1,1],[0,1],[1,1],[0,1],[2,0],[1,0],[0,1],[-1,0],[-1,1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[1,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[-1,1],[1,1],[2,0],[1,1],[0,-1],[1,1],[1,-1],[1,1],[1,-1],[1,0],[3,2],[1,1],[1,3],[-1,0],[-1,-1],[0,-1],[-2,-1],[1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[0,1],[-1,0],[-2,-1],[-1,1],[1,1],[1,1],[1,1],[0,1],[-1,0],[0,2],[1,1],[1,-1],[1,1],[0,1],[-1,1],[-1,0],[-1,1],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[3,2],[1,1],[-1,0],[1,1],[2,1],[0,2],[1,0],[-1,-1],[1,0],[2,0],[1,2],[1,0],[1,1],[1,1],[1,2],[0,-1],[0,-1],[1,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[1,2],[0,1],[2,0],[1,1],[1,0],[1,-1],[1,0],[2,1],[1,1],[1,1],[0,1],[2,0],[2,3],[0,-1],[1,0],[1,0],[1,1],[0,-1],[1,0],[-1,-1],[-1,-2],[1,-1],[1,0],[0,-2],[-1,0],[-1,-1],[-1,-1],[0,-1],[2,0],[-1,-1],[0,1],[-1,0],[-1,-1],[1,-1],[2,0],[2,1],[0,1],[-1,0],[-1,2],[1,1],[1,-1],[1,0],[2,0],[-1,0],[-1,0],[0,1],[0,1],[2,0],[1,1],[0,1],[2,0],[1,1],[1,0],[2,1],[0,1],[3,1],[0,2],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[1,0],[1,0],[0,1],[2,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,1],[0,-2],[0,1],[0,1],[1,1],[0,1],[-1,1],[1,0],[0,1],[1,-1],[1,0],[0,1],[0,1],[1,1],[1,-1],[1,1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[1,0],[1,0],[0,-1],[2,0],[2,-1],[1,-1],[2,0],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[3,-3],[0,-1],[1,-1],[1,0],[3,-2],[-1,-2],[0,-1],[1,0],[0,2],[1,0],[4,-1],[1,0],[1,0],[3,0],[1,0],[2,0],[1,0],[1,-1],[0,1],[1,0],[2,-1],[0,-1],[1,1],[-1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[0,1],[1,-1],[2,1],[0,-1],[1,0],[1,0],[1,-1],[1,1],[1,0],[2,0],[1,-1],[1,0],[2,0],[0,1],[1,0],[1,-1],[1,1],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,1],[3,0],[1,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,-1],[2,0],[2,0],[1,0],[2,0],[0,1],[0,1],[4,-2],[1,1],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,1],[3,1],[2,1],[1,0],[1,1],[0,1],[2,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,1],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[-1,0],[1,1],[1,-1],[1,1],[0,1],[0,1],[2,0],[1,0],[1,1],[1,1],[-1,1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[2,-1],[1,1],[0,-1],[0,-1],[0,-2],[2,0],[2,0],[2,1],[1,1],[1,-1],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,-1],[2,1],[3,0],[3,1],[0,-1],[1,-1],[1,-1],[1,0],[2,0],[3,0],[1,1],[2,-2],[1,0],[-1,-1],[0,-1],[2,0],[0,-1],[2,-1],[0,-1],[1,0],[2,0],[2,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[2,0],[0,-1],[1,0],[1,0],[5,-1],[1,1],[0,-1],[1,1],[2,-1],[1,0],[1,1],[0,-1],[2,0],[1,-1],[2,-1],[0,1],[2,0],[1,-1],[5,-1],[2,-1],[2,0],[1,-1],[2,0],[1,0],[2,-1],[1,0],[2,0],[3,0],[0,-1],[2,0],[1,1],[1,0],[2,-1],[1,1],[1,-1],[1,0],[3,1],[1,-1],[1,1],[1,-1],[1,0],[1,0],[2,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,1],[3,1],[0,-1],[1,1],[1,0],[2,0],[2,1],[1,0],[1,0],[1,1],[2,1],[1,1],[0,-1],[2,0],[1,1],[0,1],[1,-1],[1,1],[2,-1],[1,1],[0,-1],[2,2],[1,1],[2,1],[1,0],[2,0],[1,0],[1,0],[3,1],[2,1],[2,0],[0,-1],[0,-1],[1,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[0,-1],[1,-1],[1,-1],[-1,0],[0,-1],[0,-1],[1,1],[2,1],[0,1],[1,2],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,2],[1,0],[1,1],[0,1],[2,0],[1,0],[1,1],[2,1],[1,0],[2,0],[0,1],[2,1],[1,0],[0,-1],[2,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[2,-1],[3,0],[1,-1],[0,-1],[-1,-1],[-2,0],[0,1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,1],[2,0],[0,-1],[0,-2],[1,2],[0,1],[0,1],[1,-2],[1,-1],[1,1],[3,-1],[1,1],[0,-1],[2,1],[1,-1],[1,1],[-1,-1],[1,-1],[1,0],[0,1],[2,-1],[2,0],[3,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,1],[1,1],[2,1],[-2,-1],[1,0],[2,-2],[2,-1],[1,-1],[1,0],[1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[1,0],[1,0],[2,1],[0,1],[1,0],[0,1],[1,1],[1,-1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,-1],[2,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,-1],[2,2],[2,0],[1,1],[0,-1],[1,-2],[1,0],[0,-1],[1,0],[1,0],[0,-2],[1,0],[1,1],[1,0],[1,0],[1,1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[2,1],[0,-1],[1,-1],[1,0],[2,0],[1,-1],[1,0],[0,-1],[1,0],[1,-2],[2,0],[2,-2],[0,1],[3,-1],[2,-2],[1,0],[2,0],[1,0],[2,-1],[2,1],[1,0],[1,1],[1,0],[2,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,1],[3,1],[1,0],[2,0],[2,1],[1,1],[1,-1],[1,0],[-1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[4,1],[1,2],[1,1],[1,0],[1,1],[2,1],[2,0],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1]],[[5577,6626],[-1,-1],[-2,-1],[-2,-2],[-1,0],[0,1],[-1,0],[-1,-2],[-2,0],[-1,0],[0,-1],[0,-1],[0,-2],[1,-2],[1,0],[3,1],[1,1],[1,0],[2,1],[0,1],[1,0],[-1,-1],[-1,-1],[1,-1],[1,0],[0,-1],[-2,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-2],[1,-2],[1,0],[2,-2],[5,-2],[1,-1],[1,1],[2,1],[2,1],[1,0],[1,2],[0,1],[1,1],[1,-1],[1,-1],[1,-1],[2,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[-1,-1],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-4],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,0],[-1,-1],[0,-1],[-1,-2],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[1,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-3],[0,-1],[-2,-5],[0,-1],[0,-2],[0,-1],[-1,2],[0,-1],[1,0],[-2,-2],[0,-1],[0,-2],[-1,0],[-1,-2],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-2,0],[-2,-2],[-4,-4],[-1,-1],[-1,0],[-2,2],[0,1],[-1,1],[1,0],[-2,2],[-1,0],[0,1],[0,1],[-1,2],[-2,1],[0,-1],[-2,1],[-1,-1],[-2,1],[-1,0],[-3,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,2],[-2,1],[-1,2],[0,1],[1,2],[-1,2],[-1,1],[0,1],[1,1],[0,1],[1,1],[-1,1],[-1,2],[-1,0],[-2,2],[-2,1],[-2,1],[-1,0],[-1,-2],[1,0],[1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-2,0],[-2,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-2],[-2,0],[0,1],[-1,1],[-1,-1],[0,1],[0,2],[-1,0],[0,1],[0,1],[1,0],[0,1],[-2,1],[0,1],[-1,-1],[-1,-1],[-1,0],[1,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,2],[-1,2],[0,2],[-1,1],[0,1],[1,1],[1,1],[1,0],[2,1],[1,0],[0,1],[2,1],[2,1],[1,1],[1,1],[0,1],[1,1],[1,0],[1,1],[1,0],[2,0],[2,2],[1,2],[2,1],[1,2],[1,0],[2,1],[0,1],[0,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[0,1],[1,-1],[1,1],[0,1],[1,1],[2,0],[2,0],[2,1],[1,1],[2,0],[1,2],[1,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[1,-1],[2,0],[1,1],[3,2],[0,-1],[1,0],[1,0],[0,-1],[2,0],[1,2],[1,0],[0,-1],[1,0],[1,1],[0,1],[2,1],[2,0],[0,-1],[1,1],[2,1],[0,-1]],[[3949,5398],[2,-1],[1,-1],[0,-2],[-2,-3],[-1,0],[-2,-1],[-1,-2],[-2,0],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[-2,-3],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-3,-3],[-1,-1],[-4,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,1],[-1,1],[0,1],[0,2],[-1,1],[-1,0],[-1,0],[1,2],[-1,2],[-1,1],[0,1],[-1,0],[-1,1],[-2,4],[0,1],[0,1],[-1,1],[-1,2],[-1,0],[0,1],[0,1],[0,1],[-1,1],[1,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,0],[0,1],[0,1],[1,1],[1,0],[2,0],[1,1],[1,1],[2,1],[1,-2],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,2],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,2],[2,0],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,2],[1,1],[2,2],[1,1],[1,0],[1,1],[1,0],[1,1],[-1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,-1],[0,1],[2,-1],[1,0],[1,0],[1,0],[3,1],[1,1],[1,0]],[[4141,5416],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-2],[1,-2],[-1,-2],[1,-1],[0,-3],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[0,-2],[1,-2],[0,-2],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[-1,-1],[-1,-2],[0,-3],[-1,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-3],[-1,-1],[-1,-1],[-1,-1],[-3,0],[-1,-1],[-2,-1],[-2,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-3,0],[-1,0],[-1,-1],[-2,-2],[-1,-2],[-1,-3],[-2,-1],[-1,-2],[-2,-2],[0,-1],[-1,0],[-3,1],[-3,1],[-2,1],[-3,1],[-1,0],[-2,-1],[0,-1],[0,1],[0,1],[1,0],[0,2],[0,1],[2,0],[1,-1],[1,0],[2,1],[4,1],[1,1],[3,1],[2,1],[0,2],[3,2],[2,1],[0,1],[1,1],[1,2],[1,1],[0,3],[0,1],[0,2],[0,2],[0,2],[1,0],[2,2],[0,2],[1,0],[0,3],[0,1],[0,1],[1,2],[0,1],[4,4],[1,2],[0,1],[1,3],[1,1],[0,1],[1,2],[1,1],[1,2],[-1,1],[0,1],[1,3],[1,1],[1,2],[-1,3],[0,1],[0,1],[2,1],[2,0],[1,1],[1,1],[2,1],[0,-1],[1,0],[2,1],[1,0]],[[4011,5354],[1,0],[1,-1],[-1,-1],[-1,-2],[-1,0],[0,-2],[2,-2],[0,-1],[-1,-1],[0,-3],[1,-2],[1,-1],[1,0],[1,-4],[0,-1],[-1,-1],[0,-1],[0,-2],[2,-1],[0,-1],[-1,1],[-1,-1],[0,-2],[0,-1],[-1,-1],[1,-2],[0,-1],[0,-1],[-2,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[-4,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[0,-2],[-1,0],[-2,0],[-2,1],[-1,0],[-2,1],[-1,0],[0,-1],[-1,1],[-1,2],[-2,1],[-2,2],[-1,1],[-1,1],[-1,0],[-1,2],[0,1],[-1,1],[-1,2],[0,2],[-2,2],[0,1],[1,1],[0,2],[-1,2],[1,2],[1,2],[-1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[0,1],[2,1],[2,2],[1,2],[0,1],[0,1],[0,1],[0,1],[1,3],[-1,0],[0,1],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[2,-3],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[2,1],[1,1],[0,1],[-1,1],[2,2]],[[4175,5467],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[0,-2],[0,-3],[-2,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-2],[-1,-2],[0,-1],[1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-2],[1,1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,-1],[-2,0],[-2,0],[-3,-2],[-1,0],[-1,-3],[-1,-2],[-1,-1],[-1,-1],[0,1],[-1,1],[-2,1],[-2,0],[-1,-1],[-1,0],[0,2],[-1,1],[1,1],[1,0],[1,2],[1,1],[1,1],[-1,1],[1,1],[0,1],[0,2],[-1,1],[1,2],[1,2],[1,2],[1,1],[1,1],[1,1],[1,1],[1,0],[2,1],[0,-1],[1,0],[2,2],[2,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,1],[1,0],[2,-1],[1,-1],[1,1],[1,1],[0,1],[1,3],[0,1],[1,2],[1,1],[0,1],[1,1],[1,1],[0,-1]],[[5651,6637],[0,-1],[1,-1],[0,1],[2,1],[-1,-3],[1,-1],[1,1],[0,3],[0,1],[1,0],[2,-1],[-1,0],[0,-3],[1,-1],[1,0],[0,1],[1,-1],[0,-1],[0,-2],[0,1],[0,1],[1,0],[0,-1],[1,-1],[2,1],[2,-1],[-1,0],[-1,0],[0,-1],[1,-1],[-1,-1],[1,-1],[1,0],[1,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[0,-2],[1,-1],[2,-1],[-2,0],[-1,1],[-3,1],[1,0],[0,-1],[1,0],[1,0],[1,-2],[0,-2],[-1,0],[0,-1],[0,-2],[-1,0],[0,-1],[-1,0],[-3,1],[-2,1],[-1,1],[0,-1],[-1,1],[-3,2],[-1,1],[-4,2],[-1,0],[0,1],[-2,2],[-3,1],[-1,0],[-1,1],[-1,0],[-2,0],[0,1],[-1,0],[0,-1],[-1,1],[-2,-1],[-1,0],[-2,-1],[-1,0],[-2,1],[-1,0],[-1,-1],[0,1],[0,2],[1,1],[0,3],[0,1],[-1,0],[-2,0],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[1,0],[2,1],[2,0],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,1],[1,0],[1,0],[2,0],[0,-1],[2,0],[1,1],[1,0],[2,1],[0,-1],[1,0],[0,-1],[2,1],[2,2],[-1,1],[1,0],[0,-1],[0,-2]],[[3804,5425],[2,-1],[1,1],[1,0],[2,0],[0,1],[2,-1],[0,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[-1,-3],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[-2,-2],[-1,-3],[0,-1],[-1,-1],[-2,-4],[0,-1],[-2,1],[-1,2],[0,2],[0,3],[-1,2],[0,1],[-1,1],[0,1],[-1,0],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,1],[0,4],[-1,1],[-1,2],[-1,2],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,3],[2,1],[1,1],[1,0],[0,1],[1,0],[0,-1],[2,-1]],[[5437,6535],[-1,-1],[1,-1],[1,0],[1,0],[1,0],[2,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-2],[1,0],[0,-1],[0,-1],[-1,1],[-2,-2],[0,-1],[0,-1],[-3,0],[-1,-1],[-1,-1],[1,-1],[-1,-2],[-1,0],[-1,-2],[-1,0],[-1,-2],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[-1,-1],[1,0],[0,-1],[-1,0],[-2,-1],[0,-2],[0,-3],[0,-2],[-1,1],[-1,1],[0,-1],[-1,-1],[0,2],[-1,2],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0],[1,0],[-1,1],[-2,1],[-1,-1],[-1,-1],[-1,0],[-1,1],[0,1],[-1,2],[0,2],[1,0],[1,2],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,-1],[2,0],[2,1],[1,-1],[1,1],[-1,0],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[2,1],[1,1],[1,1],[1,0],[1,1],[1,0],[0,-1],[1,1],[1,1],[1,0],[1,0],[0,1],[1,1],[1,-2],[1,2],[2,1],[1,0],[1,-1],[1,1],[-1,1],[1,0],[1,0],[1,0],[1,0]],[[3857,5357],[1,-1],[1,0],[2,0],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[2,0],[0,-1],[1,0],[1,-1],[1,-2],[0,-1],[0,-2],[-2,-2],[0,-1],[-2,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[1,0],[-1,1],[-1,1],[0,1],[-1,0],[0,3],[1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,3],[1,1],[0,-1],[2,1],[1,0],[0,1],[1,0],[1,-1]],[[3802,5318],[0,-1],[1,-1],[1,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-2],[-1,0],[-1,-1],[0,1],[-2,1],[0,1],[-1,2],[-2,1],[-2,1],[-1,0],[-2,0],[-1,1],[-2,-1],[-1,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[1,1],[1,0],[0,1],[1,-1],[1,0],[2,-1],[2,0],[2,1],[2,1],[0,1],[2,1],[0,2],[0,1],[2,1],[1,1],[1,0],[1,1],[1,0],[1,0]],[[5430,6493],[1,-1],[0,-2],[1,-1],[4,-2],[2,2],[1,0],[1,-1],[0,-2],[-1,-1],[-4,0],[-1,1],[-2,2],[-2,1],[-1,0],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,0],[0,1],[0,2],[0,2],[1,0],[0,1],[-1,2],[0,1],[1,1],[1,-1],[1,0],[1,2],[1,2],[-1,1],[1,-3],[0,-1],[1,-1],[1,0]],[[4171,5466],[-2,0],[-1,1],[1,1],[1,0],[0,1],[1,1],[0,2],[0,1],[1,1],[1,-1],[1,0],[1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1]],[[4858,6188],[1,-1],[0,1],[1,0],[-1,-1],[1,0],[1,0],[1,1],[1,1],[0,-1],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,-1],[1,-1]],[[5476,6895],[-3,0],[-1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,-1]],[[5060,6119],[-1,0],[0,1],[-1,1],[-1,1],[1,1],[0,2],[1,0],[0,-1],[1,-2],[0,-1],[1,-1],[-1,-1]],[[5555,6539],[0,-2],[0,-1],[-2,1],[-1,1],[0,1],[1,0],[0,-1],[1,0],[1,1],[-1,1],[1,0],[2,0],[-1,-1],[-1,0]],[[4172,5487],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[1,2],[1,0]],[[4562,6907],[0,-1],[0,-1],[0,-2],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,1],[0,-1],[1,-1]],[[4556,6885],[-1,0],[0,1],[0,2],[1,0],[0,2],[1,0],[0,-1],[0,-1],[-1,-2],[0,-1]],[[4146,5415],[0,-1],[-1,0],[-1,2],[1,0],[1,1],[0,-1],[0,-1]],[[5502,6585],[-1,-1],[0,1],[1,2],[1,0],[0,-1],[-1,-1]],[[4559,6870],[-1,0],[0,1],[0,1],[-1,2],[1,0],[1,-1],[0,-2],[0,-1]],[[4551,6897],[-1,0],[-1,0],[0,1],[0,1],[2,-2]],[[5427,6499],[0,-1],[-1,1],[0,1],[0,1],[1,-2]],[[4560,6867],[-2,0],[0,1],[0,1],[1,-1],[1,0],[0,-1]],[[5556,6542],[-1,0],[1,1],[1,0],[-1,-1]],[[4170,5474],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[4564,6899],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[5409,6521],[0,-1],[-1,1],[0,1],[1,0],[0,-1]],[[5243,6382],[-1,-1],[0,1],[1,0]],[[4564,6993],[-1,1],[1,0],[0,-1]],[[4569,6913],[-1,0],[0,1],[1,0],[0,-1]],[[5667,6626],[-1,0],[0,1],[1,-1]],[[5408,6508],[-1,0],[0,1],[1,0],[0,-1]],[[5445,6527],[1,-1],[-1,0],[-1,1],[1,0]],[[5669,6617],[-1,0],[0,1],[1,0],[0,-1]],[[5268,6432],[-1,0],[-1,1],[1,0],[1,-1]],[[5240,6382],[-1,0],[1,1],[0,-1]],[[7738,9769],[-37,-14],[-6,-1],[4,-3],[16,0],[12,-2],[-8,-15],[-23,-21],[4,-8],[1,-1],[13,-28],[57,-13],[28,-29],[16,-7],[14,-7],[-7,-17],[-8,-4],[-6,-6],[-4,-3],[0,-1],[-2,-1],[-1,-1],[-2,0],[-1,-2],[-2,0],[0,-1],[2,0],[0,-1],[-3,-1],[-2,1],[-2,-2],[2,0],[-1,0],[-4,-1],[-2,-2],[1,-1],[-37,-30],[-3,-4],[0,-2],[0,-2],[2,-8],[5,-6],[-1,0],[0,-1],[3,-1],[18,-15],[0,-1],[2,-2],[-1,-1],[3,-1],[0,-1],[6,-4],[4,-5],[4,-7],[5,-8],[3,-5],[2,-4],[0,-1],[1,0],[18,-15],[4,-9],[2,-3],[1,-4],[2,-2],[0,-1],[4,-6],[1,-5],[3,-11],[1,-6],[1,-3],[-9,2],[-2,1],[-24,-6],[2,-3],[9,-6],[-5,-3],[-4,-3],[0,-2],[-2,-1],[0,-8],[0,-3],[2,-3],[-9,-6],[-3,-1],[-1,-2],[3,-3],[9,-1],[2,1],[8,-2],[2,-1],[1,-1],[-6,-6],[2,-1],[1,0],[3,-3],[-2,0],[-3,-1],[-9,0],[-8,-4],[-2,-5],[-1,-2],[2,-3],[-1,-4],[3,-7],[5,-3],[-1,-2],[4,-3],[26,1],[3,-2],[1,-1],[-5,-3],[1,-3],[7,-7],[0,-2],[-1,0],[-6,-2],[-5,-3],[1,-1],[-1,-4],[2,-4],[1,0],[0,-2],[2,-1],[1,-2],[0,-2],[-1,-4],[5,-4],[2,0],[7,-1],[6,-2],[1,-2],[6,-2],[-1,-2],[3,-1],[7,-1],[3,-4],[-4,-2],[4,-5],[3,-3],[0,-3],[-2,-6],[-3,-3],[-4,-4],[-7,-5],[-3,-3],[-5,-9],[-9,-3],[-15,-4],[0,-1],[7,-5],[1,-1],[3,-2],[1,-1],[10,-7],[2,-2],[10,-4],[9,-9],[25,-6],[5,-3],[0,-1],[7,-2],[1,-2],[3,-3],[4,0],[5,-3],[2,-1],[3,-1],[2,-2],[6,-3],[0,-2],[1,-1],[0,-1],[0,-4],[1,-3],[1,0],[2,-2],[5,-2],[2,-2],[0,-1],[2,-1],[2,1],[3,-2],[-1,-2],[4,-2],[5,-7],[2,-2],[-11,-12],[1,-1],[-2,0],[-5,-11],[0,-1],[-1,-3],[-2,-1],[-10,-15],[-4,-1],[-1,-1],[0,-3],[0,-1],[-2,0],[-4,-3],[-13,-9],[2,-1],[-1,-1],[-1,-1],[-3,0],[-6,-3],[-2,-1],[0,-1],[-2,-1],[-6,-5],[-5,0],[-2,-2],[0,-1],[-2,-4],[-11,-8],[-3,-3],[-5,-4],[-3,-2],[-3,-2],[0,-2],[-1,-1],[-2,0],[-5,-5],[-2,0],[0,-1],[-4,-3],[-6,-4],[-2,-5],[-1,0],[-14,-9],[-1,-1],[0,-1],[-1,0],[-2,-1],[-1,-2],[-1,-1],[-4,-3],[0,-2],[-1,-1],[-8,-5],[0,-1],[-4,-3],[-8,0],[0,-3],[-5,-4],[-10,-8],[-5,-7],[-2,-1],[0,-1],[-4,-2],[-3,-2],[-6,-2],[-5,-3],[-3,-1],[-3,-3],[-3,-1],[-3,0],[-1,0],[-4,-2],[-1,-3],[-3,-2],[-5,-3],[0,-2],[-3,-5],[-2,-4],[-4,1],[-3,0],[-4,0],[-4,-3],[1,0],[-2,0],[-11,-8],[-1,1],[-1,-2],[-5,-4],[-3,-3],[-4,0],[-3,-4],[-4,-2],[-8,-6],[-9,-6],[-4,-4],[1,-1],[0,-1],[-3,0],[-1,-1],[-2,0],[-1,3],[1,0],[-1,1],[-2,0],[-1,-1],[-1,-1],[0,-3],[0,-1],[2,0],[1,-1],[-3,1],[-1,-1],[1,-1],[1,0],[1,-1],[0,-2],[-1,1],[-2,0],[-1,0],[0,-1],[-1,0],[-2,1],[-3,0],[1,-1],[-1,0],[-3,2],[1,1],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,1],[-2,1],[-1,0],[0,-1],[0,-1],[-3,0],[-1,-1],[3,-2],[2,-1],[0,-1],[-4,1],[-2,2],[-1,0],[-4,2],[-3,-2],[0,-1],[1,0],[1,0],[1,-2],[-1,0],[-2,1],[-2,-1],[-2,1],[0,1],[-2,1],[1,1],[-3,1],[-1,-1],[-2,1],[-2,0],[1,1],[-1,0],[-2,-1],[0,1],[-2,1],[-2,0],[0,-1],[-1,-1],[-1,1],[-1,2],[0,1],[0,1],[3,-1],[1,-1],[1,-1],[2,0],[-3,2],[-1,1],[-4,2],[-2,0],[1,-2],[1,-1],[0,-2],[-2,-1],[-2,0],[0,1],[2,1],[-2,-1],[-2,1],[-1,1],[0,-1],[-1,-1],[-2,1],[1,0],[-2,1],[-1,-1],[2,0],[0,-1],[-1,0],[-1,-1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[0,-1],[0,-1],[1,-1],[1,-1],[-1,-1],[-2,0],[-1,0],[1,-2],[-1,0],[-2,-1],[-1,1],[-1,0],[-2,1],[1,-2],[2,1],[1,-1],[-1,-1],[-1,0],[1,0],[-2,-1],[-1,1],[-2,1],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-3,-1],[-2,2],[3,1],[-2,1],[0,-1],[-1,-1],[-1,0],[-1,1],[0,-1],[0,-1],[1,-1],[-3,0],[0,-2],[-3,0],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,-1],[-2,1],[-2,-1],[0,-1],[0,-1],[1,0],[0,-1],[-2,1],[-1,2],[-2,-1],[-2,2],[-1,1],[0,1],[-1,0],[-1,1],[-1,-1],[0,-2],[1,-2],[0,-2],[0,-1],[-1,0],[-2,0],[0,1],[-2,0],[1,0],[0,-2],[1,-1],[1,1],[1,-2],[2,-1],[2,-1],[2,0],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[-2,0],[1,1],[-1,1],[-3,0],[-1,-1],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,1],[0,2],[0,1],[1,-1],[2,-1],[1,1],[-1,2],[0,-1],[-1,1],[-2,2],[-1,-1],[-1,-1],[-2,0],[1,-1],[0,-1],[-1,-1],[-2,0],[0,1],[-1,2],[-1,1],[1,1],[-1,1],[-2,0],[-1,2],[-1,1],[0,1],[-1,-1],[0,-2],[2,-1],[1,-2],[0,-1],[0,-1],[-1,1],[-2,0],[-1,0],[-1,0],[-2,1],[-1,2],[0,-2],[0,-1],[1,0],[1,0],[0,-2],[-1,0],[2,0],[0,-1],[0,-1],[-2,0],[-2,2],[2,-1],[-2,1],[-1,1],[2,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[0,-1],[-2,1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,1],[-2,2],[0,1],[-2,2],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[3,-1],[1,0],[1,0],[-1,-1],[1,0],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[3,-1],[0,-1],[-1,-1],[-2,0],[0,1],[-1,0],[0,-1],[2,-1],[2,-1],[2,-2],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,-1],[-2,-1],[-1,1],[0,1],[1,1],[-1,1],[0,1],[-2,0],[0,1],[0,2],[-1,-2],[-2,0],[-2,1],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[-3,1],[-2,0],[2,-1],[2,-1],[0,-2],[2,-1],[1,-1],[0,-1],[-2,-1],[-2,0],[-1,-1],[2,-2],[2,-1],[-1,0],[-1,0],[0,-1],[0,-1],[2,0],[0,-1],[1,-1],[1,0],[0,-1],[-4,-1],[0,1],[1,0],[-3,0],[0,2],[0,2],[-1,0],[-3,-1],[-1,1],[-1,2],[-2,1],[-2,1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[2,0],[3,0],[-2,-2],[-3,1],[0,-1],[1,-2],[-1,-1],[-1,1],[0,1],[-3,0],[-2,1],[-1,1],[1,0],[-1,1],[-3,0],[-1,0],[1,1],[-1,1],[0,1],[-2,0],[-1,2],[1,1],[6,0],[-1,0],[-3,0],[-1,0],[-1,0],[1,2],[2,1],[3,-3],[1,1],[0,-1],[0,2],[-1,2],[-2,1],[-1,0],[-4,-3],[0,-1],[-1,-2],[-2,-2],[-1,0],[0,2],[0,1],[-2,0],[-3,-1],[2,0],[1,-1],[0,-1],[-1,-2],[0,-1],[-1,1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,1],[0,1],[1,0],[0,-1],[2,1],[0,-1],[0,-1],[0,2],[3,0],[1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[1,2],[-1,0],[-1,0],[-1,-1],[-2,3],[0,-1],[2,-2],[-1,0],[-2,0],[-5,-1],[-1,0],[0,1],[-1,0],[-2,-1],[-1,0],[1,0],[2,1],[1,-1],[-1,-1],[0,1],[-2,0],[1,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[-1,0],[-2,-1],[2,-1],[-1,0],[-1,0],[-1,1],[-2,-1],[1,0],[1,-1],[-1,0],[-1,1],[-4,-1],[2,2],[1,2],[-1,-2],[-1,0],[-3,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,1],[1,0],[1,0],[0,1],[0,1],[-3,1],[0,-1],[0,-1],[1,0],[0,1],[-1,-1],[-1,1],[0,-2],[1,0],[-1,-1],[0,-1],[-2,0],[-1,0],[-1,1],[0,-1],[1,0],[2,0],[-1,-1],[1,-1],[-3,0],[0,-1],[-1,0],[-1,1],[-1,1],[2,0],[0,1],[-1,1],[-2,0],[-1,1],[-2,1],[-2,0],[-1,-1],[1,-1],[1,1],[0,-1],[-1,-2],[-2,-1],[-2,0],[-1,0],[-1,-1],[0,-1],[-2,1],[1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[1,0],[1,-1],[-2,-1],[0,-1],[-1,1],[-1,1],[0,1],[-2,0],[-1,2],[-2,1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,-1],[1,0],[4,0],[0,-1],[1,0],[0,-1],[-1,-2],[-3,-1],[0,-1],[3,2],[3,0],[0,-1],[-1,-1],[-1,1],[-1,-1],[-2,-1],[3,-1],[-1,-1],[-3,-2],[-1,-1],[-2,-1],[0,-1],[1,0],[-2,-1],[0,1],[-2,-1],[1,-1],[-1,-2],[-3,0],[-4,-1],[-1,-1],[-1,-1],[-1,1],[1,1],[2,1],[1,2],[0,-1],[-1,0],[2,2],[3,2],[-2,-1],[-1,0],[2,2],[1,2],[-2,-1],[0,-1],[-2,-1],[-2,-1],[0,-1],[-2,0],[-1,1],[-2,0],[0,-2],[-1,-1],[-1,0],[0,1],[1,2],[2,1],[1,3],[0,1],[0,1],[-1,1],[-2,0],[-1,-1],[-1,0],[-2,-1],[1,-1],[2,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[1,0],[-1,-1],[-2,1],[-1,0],[-2,1],[-2,0],[-2,-1],[2,-1],[1,0],[1,-1],[-3,0],[-2,0],[-1,1],[0,1],[1,0],[1,1],[-3,-2],[-1,0],[1,0],[1,-1],[-2,0],[-2,0],[-1,0],[1,0],[-3,-1],[-2,1],[-1,1],[2,1],[-2,0],[-1,-1],[0,-1],[-1,0],[-3,-1],[1,0],[0,-1],[-7,1],[-4,0],[4,0],[1,-1],[1,0],[4,-1],[-2,0],[1,-1],[-1,0],[-1,1],[-3,-1],[-1,1],[2,1],[-1,0],[-1,0],[1,-1],[-1,0],[-1,0],[-2,0],[0,-2],[-2,-1],[-3,-1],[0,1],[1,0],[1,0],[1,1],[-1,0],[-2,1],[-1,-1],[-1,0],[-3,0],[2,0],[1,-1],[-2,-1],[1,0],[0,-1],[-1,0],[-1,2],[-1,0],[-3,1],[-1,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[1,0],[3,0],[1,0],[2,-1],[0,1],[0,1],[1,0],[1,-1],[-2,-1],[3,0],[1,-1],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[2,-1],[-6,0],[1,0],[-2,1],[-3,-1],[-4,0],[-3,0],[0,-1],[-1,0],[-2,2],[-1,0],[0,1],[0,1],[4,1],[2,1],[3,1],[1,-1],[0,1],[-3,0],[-1,-1],[-3,0],[-1,0],[-1,-2],[-2,0],[-1,0],[0,1],[1,1],[1,0],[0,2],[2,0],[0,-1],[1,1],[-1,1],[0,1],[1,1],[2,1],[1,0],[1,0],[0,1],[0,1],[0,2],[0,1],[1,1],[-2,0],[-1,-1],[0,-1],[0,-1],[-2,-2],[-2,0],[0,-1],[0,-1],[0,-2],[-1,-1],[-2,-1],[-2,-1],[-2,-3],[0,-1],[-1,-1],[-5,-2],[-1,-1],[-2,0],[-4,-2],[-1,0],[0,-1],[1,-2],[1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,1],[-1,0],[-1,-1],[-4,0],[0,1],[-2,0],[1,-1],[-2,-1],[-2,0],[0,1],[-4,0],[-2,0],[0,-1],[-2,0],[1,1],[-2,0],[-2,-1],[-1,-1],[-1,1],[1,1],[2,0],[0,1],[1,1],[2,0],[2,0],[2,1],[2,1],[2,0],[1,1],[1,0],[0,1],[-1,1],[2,0],[-1,-1],[2,0],[1,1],[4,0],[1,0],[0,1],[0,1],[2,0],[0,1],[3,1],[0,1],[2,0],[1,1],[3,3],[0,2],[1,3],[1,2],[0,1],[-2,-1],[0,-2],[0,-2],[0,-1],[-2,-1],[0,-1],[-3,-2],[0,-1],[-3,0],[0,-1],[2,0],[-1,0],[-1,-1],[-4,-2],[1,1],[-2,1],[0,1],[1,1],[2,0],[3,2],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-2,0],[0,1],[1,0],[-1,1],[-2,0],[0,-1],[0,-1],[-1,-1],[-2,1],[0,1],[0,2],[1,1],[0,1],[1,1],[6,2],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[-1,1],[1,2],[1,1],[0,1],[-1,-1],[-1,1],[-1,-1],[-1,-1],[-3,-1],[-4,-1],[-3,-1],[-2,0],[-1,-1],[2,-1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-2,-2],[1,0],[0,1],[2,1],[0,-1],[-1,-1],[-1,0],[1,-2],[-1,-1],[-2,0],[-1,0],[-1,1],[-1,1],[1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,2],[-1,-1],[0,-1],[2,-1],[1,-1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,-1],[-2,1],[-1,0],[-1,0],[-1,0],[-2,2],[-1,1],[2,0],[-1,1],[-2,1],[-1,0],[-1,2],[0,4],[2,0],[0,-3],[-1,-1],[2,0],[0,-1],[0,-1],[2,2],[2,-1],[1,1],[0,1],[3,0],[1,0],[1,-2],[1,0],[2,0],[2,2],[0,1],[-1,0],[1,1],[1,-1],[0,-1],[1,0],[-1,2],[-2,0],[-1,0],[-1,2],[-1,0],[1,1],[3,1],[5,-1],[1,0],[1,-1],[-1,0],[-1,-2],[1,-1],[1,1],[0,2],[0,1],[0,1],[3,1],[1,1],[2,0],[4,-1],[-2,-2],[1,0],[1,0],[-1,1],[1,0],[1,1],[2,1],[-3,0],[-5,0],[-3,0],[-2,-1],[-1,0],[1,-1],[-1,-1],[-2,1],[-2,0],[2,1],[-4,2],[0,-1],[-1,0],[-2,0],[-1,1],[0,1],[3,0],[0,1],[-1,0],[2,1],[0,1],[1,1],[2,1],[-3,-1],[-1,1],[1,0],[1,1],[0,1],[-1,0],[0,-1],[0,-1],[-3,0],[-2,0],[-2,0],[-3,1],[-1,0],[1,1],[-3,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[2,2],[1,1],[4,3],[-1,0],[0,2],[3,2],[2,0],[3,3],[1,2],[0,1],[3,2],[0,1],[-1,0],[-1,0],[-1,-1],[1,0],[-3,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[-4,-2],[-3,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-6,-3],[-3,-1],[-3,-1],[-3,0],[-5,-1],[-1,0],[-5,-2],[-3,0],[1,2],[2,0],[1,0],[-1,0],[5,2],[-2,-1],[-1,1],[2,1],[-1,0],[-1,0],[-1,0],[0,1],[4,2],[1,0],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-2,0],[-1,1],[1,0],[1,0],[-1,0],[0,1],[2,2],[3,1],[-1,0],[3,2],[0,1],[0,1],[1,1],[1,0],[2,1],[0,1],[1,1],[1,1],[1,0],[1,1],[-1,1],[0,-1],[-2,-2],[-2,-1],[-3,1],[-1,0],[-4,0],[-1,1],[-1,0],[1,0],[2,3],[-8,-2],[-2,0],[-7,-2],[-1,1],[-1,1],[1,1],[-1,0],[-3,2],[-2,1],[-1,1],[-1,0],[-5,-1],[-1,1],[-1,0],[1,1],[0,1],[0,1],[-1,-1],[1,0],[-2,-2],[-1,0],[-2,1],[-4,1],[0,1],[1,0],[1,0],[-2,1],[1,0],[0,1],[-1,0],[-1,-1],[-1,1],[-1,1],[2,1],[-1,0],[-1,-1],[-2,1],[1,1],[0,2],[-2,0],[-1,-1],[-1,0],[-1,1],[0,1],[1,0],[-2,1],[0,-1],[-1,-2],[-1,1],[1,0],[0,1],[-2,0],[1,-1],[0,-1],[0,-2],[1,-1],[1,-1],[-1,-1],[-2,0],[0,1],[1,0],[-1,0],[-1,1],[-2,0],[-2,-1],[-2,1],[-1,-1],[0,-1],[1,0],[-1,-1],[-1,0],[-1,1],[-1,1],[1,0],[2,1],[1,0],[2,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,2],[-1,0],[1,1],[-1,0],[0,1],[1,2],[-1,0],[1,0],[1,0],[0,1],[1,1],[0,2],[-1,1],[-1,-1],[-4,-2],[-1,-2],[-3,0],[-1,0],[0,-1],[-3,0],[-1,0],[1,-1],[-1,-1],[-3,0],[4,-1],[0,-1],[-2,-3],[-2,-2],[-1,0],[-1,-1],[-2,0],[-1,1],[1,2],[2,0],[-2,2],[-1,1],[-1,1],[0,1],[1,0],[-3,0],[-2,2],[1,1],[1,0],[-2,0],[-1,-1],[1,-1],[-3,1],[-2,0],[-1,1],[-2,1],[1,0],[0,1],[-1,1],[-1,0],[1,0],[-2,1],[1,1],[-1,0],[1,0],[1,-1],[1,1],[0,-1],[2,0],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[-3,2],[-1,1],[-3,2],[-1,1],[1,0],[1,0],[1,0],[0,2],[-2,0],[2,1],[1,1],[2,0],[-1,1],[0,1],[-1,1],[0,1],[2,-1],[1,-1],[1,-2],[0,-1],[-3,0],[-1,-1],[2,0],[1,0],[3,-1],[1,0],[1,0],[0,1],[-1,1],[-2,0],[0,2],[3,0],[-2,1],[-1,0],[0,1],[-3,0],[-1,2],[2,1],[-1,1],[-2,0],[2,2],[0,1],[-2,0],[-1,0],[-1,-1],[-2,0],[-3,1],[-1,1],[-3,-1],[1,0],[0,-1],[-2,0],[1,1],[-1,0],[0,1],[1,0],[0,1],[-4,0],[-1,2],[2,0],[1,1],[-2,0],[-1,0],[-1,0],[0,1],[1,1],[1,0],[2,0],[0,-1],[3,1],[-2,0],[-1,1],[-1,1],[3,1],[1,1],[1,0],[3,-2],[1,-1],[-2,2],[1,1],[2,0],[-1,3],[-2,2],[-3,0],[2,0],[-3,1],[1,1],[2,0],[1,1],[-1,1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[2,-2],[-1,0],[1,-1],[1,0],[1,-2],[1,1],[1,-1],[0,-1],[-2,0],[-1,-1],[2,0],[1,0],[1,0],[0,1],[2,-3],[1,1],[-1,2],[1,1],[-1,1],[0,1],[-3,0],[1,1],[-1,1],[-3,1],[0,2],[-2,1],[1,1],[1,-1],[2,0],[0,1],[-4,0],[-2,1],[2,1],[1,1],[-3,0],[-2,3],[1,0],[2,0],[2,-2],[4,0],[1,-2],[1,0],[1,0],[-1,3],[-3,1],[-1,0],[0,1],[3,0],[0,-1],[2,0],[2,0],[1,-1],[2,0],[-2,1],[-2,2],[0,1],[1,1],[2,1],[-4,0],[-1,0],[1,1],[2,0],[1,0],[2,0],[-3,1],[1,0],[-1,1],[-2,1],[1,0],[0,1],[0,1],[-1,1],[1,0],[2,0],[1,0],[1,0],[3,-1],[1,0],[-3,1],[0,1],[1,0],[1,0],[-1,0],[-1,1],[2,1],[0,1],[3,-1],[3,-1],[-1,1],[2,1],[-2,0],[-4,2],[-1,0],[-3,1],[-1,2],[1,0],[1,0],[1,1],[3,-1],[1,0],[-3,1],[-1,0],[-2,2],[2,0],[1,0],[2,-1],[1,1],[-1,0],[1,0],[-2,2],[1,2],[2,-1],[-1,1],[-4,2],[-1,1],[0,1],[2,0],[1,0],[-1,1],[3,-1],[-3,2],[-1,2],[-2,0],[-4,1],[1,1],[2,-1],[-2,2],[7,-2],[1,0],[1,0],[2,0],[1,2],[-2,1],[-1,1],[-2,2],[-2,0],[-1,1],[1,0],[-3,0],[-1,1],[-1,0],[-1,1],[5,0],[3,-1],[2,0],[1,-1],[1,1],[1,0],[3,1],[-4,2],[-1,0],[-3,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-2,-1],[-1,1],[2,0],[2,0],[-1,1],[2,0],[1,-1],[1,-1],[3,0],[-1,-1],[2,0],[2,0],[0,-1],[2,-1],[4,-1],[0,1],[-2,0],[1,0],[1,0],[1,-1],[1,1],[-2,1],[-2,1],[-1,1],[0,1],[-2,1],[-1,1],[-1,1],[4,0],[-2,0],[-2,1],[-1,1],[0,1],[-1,1],[-2,0],[-1,3],[-1,1],[3,-1],[-1,1],[-1,1],[-1,0],[0,1],[-2,1],[1,0],[2,-1],[2,0],[-2,0],[1,1],[0,1],[-1,0],[5,-2],[1,0],[-2,2],[-1,0],[-1,0],[1,1],[-2,1],[-3,2],[-1,1],[-1,0],[1,-1],[-3,0],[-2,2],[0,1],[-2,1],[1,0],[2,0],[2,0],[1,0],[1,-1],[-2,-1],[2,0],[1,1],[0,2],[-1,0],[1,1],[2,-2],[1,1],[-2,1],[-3,0],[-2,1],[0,1],[2,-1],[0,1],[-1,1],[-1,0],[0,-1],[-1,1],[0,1],[1,1],[-1,2],[-1,1],[-1,0],[-1,2],[1,-1],[1,1],[0,1],[-2,0],[-2,1],[0,1],[1,-1],[1,0],[0,2],[-2,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[1,1],[0,1],[-1,1],[1,0],[1,-1],[1,1],[-1,1],[-1,0],[-1,-1],[-2,0],[-1,0],[2,5],[1,0],[1,3],[0,4],[-1,3],[-1,1],[1,1],[1,1],[1,0],[0,-1],[-1,-1],[1,0],[1,0],[1,-1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[3,1],[2,1],[0,1],[-2,-2],[-1,0],[1,1],[0,1],[0,1],[-1,-2],[-1,2],[-1,2],[0,2],[-1,-1],[-1,-1],[0,-1],[-3,0],[0,1],[0,1],[2,1],[2,4],[0,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[1,1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[1,0],[0,-2],[1,0],[1,1],[1,1],[-1,0],[0,1],[1,2],[0,1],[-1,0],[-2,0],[0,-1],[-1,-2],[-1,2],[0,1],[0,1],[-1,0],[-1,1],[2,2],[0,1],[-2,-2],[0,-1],[-2,0],[2,0],[0,-1],[-2,0],[-2,2],[-1,1],[2,3],[0,1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[0,1],[2,5],[1,2],[-1,-3],[-2,0],[-1,1],[0,1],[2,1],[-2,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,1],[1,0],[1,0],[1,2],[0,1],[1,1],[-2,0],[-2,-1],[0,2],[-1,0],[0,2],[1,-1],[1,1],[3,-2],[1,1],[1,-1],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,2],[2,1],[2,1],[0,1],[3,0],[-3,1],[-1,1],[1,0],[-4,-1],[0,2],[0,1],[-1,0],[-1,0],[-2,-2],[0,-2],[-1,1],[-1,1],[0,1],[1,3],[0,2],[2,0],[-1,1],[-1,0],[-1,0],[1,1],[0,1],[1,0],[1,-1],[1,0],[2,1],[2,3],[1,1],[0,1],[-3,0],[-1,0],[-1,2],[0,2],[0,1],[1,2],[3,0],[1,-1],[2,0],[2,1],[1,3],[0,1],[2,2],[-1,1],[-1,1],[1,0],[1,0],[1,0],[2,0],[1,-1],[0,1],[1,-1],[3,-1],[3,1],[-2,0],[-1,1],[0,2],[2,0],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[0,1],[1,2],[1,1],[0,1],[0,1],[0,1],[4,2],[-1,1],[0,1],[1,1],[1,0],[-2,1],[1,0],[0,1],[-1,-1],[-1,0],[-1,1],[2,1],[1,1],[1,-1],[0,-2],[1,0],[0,1],[0,1],[-2,1],[-1,1],[0,1],[2,1],[1,-1],[1,1],[1,1],[2,0],[0,1],[1,0],[0,-1],[3,-2],[2,1],[1,-1],[0,-1],[2,-1],[1,0],[1,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-2,0],[-1,1],[0,1],[2,1],[-1,0],[-1,-1],[-1,0],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[-1,1],[1,0],[-2,3],[0,1],[-1,0],[0,-1],[0,-1],[-1,1],[0,1],[-1,0],[1,1],[1,1],[2,0],[1,0],[-3,1],[-1,1],[0,1],[0,1],[1,2],[1,-1],[1,1],[1,1],[-2,1],[0,1],[3,1],[0,1],[1,0],[-1,-2],[1,-2],[1,-1],[0,-1],[1,0],[3,-1],[2,-1],[1,0],[1,2],[0,1],[2,-1],[2,-2],[1,1],[-1,0],[0,1],[0,1],[1,1],[2,0],[1,0],[1,1],[-2,-1],[0,1],[1,0],[1,1],[1,1],[-2,-2],[2,0],[1,0],[1,0],[2,0],[2,0],[0,2],[2,0],[2,-1],[0,-1],[0,-1],[1,1],[2,-1],[1,1],[1,0],[0,-1],[2,0],[-2,-2],[0,-1],[1,1],[1,-1],[0,-1],[-2,0],[-2,1],[-2,-1],[2,-1],[1,-2],[-3,0],[1,-1],[2,-2],[2,0],[1,0],[-1,2],[-2,1],[0,2],[1,-1],[2,1],[1,-1],[0,1],[1,-1],[0,1],[0,2],[-1,1],[-1,1],[1,1],[2,0],[3,1],[1,-1],[0,-2],[0,-1],[3,2],[2,1],[1,-1],[1,0],[0,1],[2,1],[1,0],[2,-1],[0,1],[0,1],[1,1],[1,2],[1,0],[1,1],[-1,0],[1,1],[2,-1],[1,0],[1,-2],[3,0],[0,1],[-1,2],[-1,1],[2,0],[2,1],[-1,1],[-3,4],[-4,1],[0,2],[-3,1],[-3,2],[-2,2],[0,1],[0,1],[0,1],[1,0],[4,0],[3,1],[2,-2],[2,-2],[0,1],[1,0],[1,-1],[0,-1],[3,-1],[0,1],[-6,3],[-2,2],[-2,2],[0,1],[1,2],[2,1],[1,2],[0,1],[-1,1],[4,-1],[1,-1],[-2,-2],[-1,0],[2,-1],[1,0],[0,-2],[0,-1],[-1,1],[-1,0],[0,-1],[3,0],[1,-2],[0,-1],[1,-1],[1,1],[0,1],[1,-1],[0,1],[1,2],[1,2],[1,1],[0,1],[-1,1],[-1,1],[2,1],[1,-1],[1,1],[-1,0],[1,1],[1,1],[0,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-3,0],[1,1],[1,1],[1,-1],[2,0],[2,1],[0,1],[1,0],[1,0],[-1,1],[0,2],[0,1],[3,2],[2,0],[1,-1],[1,0],[1,2],[0,2],[0,1],[1,1],[2,-1],[0,-1],[-1,0],[-1,0],[2,-1],[0,1],[1,0],[1,-1],[1,-2],[1,0],[0,2],[-1,2],[1,0],[2,0],[1,-1],[1,1],[1,0],[-3,1],[-1,1],[-1,1],[0,1],[-2,1],[0,1],[1,0],[1,0],[1,1],[3,1],[2,1],[-3,0],[0,-1],[-1,0],[-2,1],[-1,0],[-1,2],[2,0],[-1,1],[1,1],[2,-1],[0,1],[-1,1],[2,1],[3,-1],[1,-1],[4,1],[-2,0],[-2,2],[1,0],[1,0],[1,-1],[2,0],[1,0],[0,-2],[2,-1],[0,1],[2,0],[-1,2],[2,0],[0,1],[-1,0],[-2,0],[-1,1],[-2,0],[-1,1],[0,2],[1,1],[1,0],[0,-2],[2,0],[0,1],[2,0],[2,-1],[2,0],[0,-1],[0,-1],[1,0],[1,-1],[-2,0],[2,-1],[0,-3],[-3,1],[-2,-1],[0,-1],[1,-2],[2,-2],[-1,0],[1,-1],[1,1],[-3,2],[0,2],[0,1],[1,0],[5,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,1],[1,0],[-1,1],[1,1],[-2,1],[-1,1],[-1,-1],[0,1],[0,1],[2,-1],[1,0],[1,0],[1,0],[1,1],[-1,1],[0,-1],[-2,1],[-1,1],[1,0],[2,1],[1,1],[1,0],[1,1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[2,2],[-2,2],[-1,1],[-2,1],[0,1],[1,0],[3,-3],[2,1],[-2,2],[1,0],[2,-1],[0,1],[2,0],[2,-1],[2,0],[1,1],[2,0],[2,-1],[3,1],[-2,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[2,0],[-1,-1],[4,-1],[1,-1],[1,-1],[1,2],[-1,0],[3,1],[0,2],[-4,2],[2,0],[1,1],[0,4],[-1,1],[0,1],[0,2],[0,1],[1,0],[1,2],[-1,1],[1,0],[0,-1],[1,0],[1,0],[3,-3],[3,0],[1,0],[1,-1],[1,0],[2,-1],[3,1],[-1,1],[1,0],[1,-1],[1,0],[-1,1],[1,1],[1,1],[-2,1],[-1,1],[-1,3],[1,1],[2,-2],[2,1],[0,1],[-2,1],[1,0],[2,0],[1,2],[2,1],[1,1],[1,1],[0,1],[-3,2],[0,1],[2,0],[1,0],[1,0],[3,0],[2,1],[2,1],[2,2],[-1,0],[0,1],[1,0],[1,2],[1,0],[4,0],[1,2],[-1,0],[1,3],[1,1],[4,1],[1,0],[-1,1],[0,1],[1,0],[0,1],[1,1],[2,3],[3,-1],[2,1],[1,1],[-1,1],[-1,1],[3,-1],[3,2],[2,0],[1,1],[1,2],[3,2],[2,0],[1,0],[2,0],[-2,2],[-2,1],[1,1],[2,0],[0,-1],[2,0],[4,1],[2,1],[0,1],[0,2],[-1,3],[2,1],[1,1],[0,1],[1,3],[0,1],[3,1],[2,1],[0,1],[-1,-1],[-2,1],[3,0],[2,1],[1,1],[2,0],[2,1],[1,1],[1,1],[-1,2],[-1,1],[2,0],[0,1],[0,1],[-1,1],[-1,0],[-1,2],[5,2],[3,0],[2,-1],[-1,0],[0,-2],[2,-1],[0,2],[0,1],[0,1],[1,1],[1,1],[-1,0],[1,1],[0,1],[1,0],[1,0],[3,1],[3,-1],[2,2],[3,-1],[3,1],[4,-1],[3,1],[0,1],[-1,1],[4,1],[4,-1],[5,1],[2,0],[0,-1],[1,-1],[1,0],[1,1],[1,0],[2,-1],[0,-1],[-1,0],[1,-1],[1,-1],[3,0],[4,-2],[-1,0],[0,-1],[1,0],[-1,-1],[0,-1],[2,0],[1,1],[1,1],[2,0],[-2,1],[2,1],[1,2],[1,1],[1,0],[0,1],[-3,1],[-3,0],[-4,2],[-1,1],[-3,1],[-2,1],[-1,3],[2,0],[0,2],[-2,1],[3,-1],[2,0],[3,-1],[3,0],[3,-2],[2,-1],[2,0],[1,-2],[2,0],[1,0],[2,1],[1,1],[-1,1],[-6,3],[1,0],[1,1],[2,0],[2,1],[-2,0],[-1,1],[0,-1],[-1,-1],[-2,-1],[-1,1],[3,0],[-2,0],[0,1],[1,0],[1,1],[-1,-1],[0,1],[-1,0],[1,1],[1,-1],[1,0],[-1,1],[-1,0],[-1,2],[-1,0],[-1,2],[0,1],[0,1],[-1,1],[-3,0],[-3,2],[-6,1],[0,3],[0,1],[3,1],[1,1],[-1,1],[3,0],[-2,2],[-1,0],[-1,1],[3,0],[0,1],[-2,0],[1,1],[5,-1],[1,0],[-1,1],[-4,0],[2,2],[2,0],[-2,1],[-4,0],[2,1],[2,1],[-3,2],[-1,1],[-2,0],[-1,2],[5,1],[-1,1],[2,0],[0,1],[1,0],[2,-1],[2,-1],[-2,1],[-1,1],[1,0],[-2,1],[-4,0],[-1,0],[1,1],[2,0],[-2,1],[-1,2],[1,0],[2,0],[1,-1],[2,1],[2,2],[1,-1],[1,1],[-3,2],[1,0],[-2,0],[0,1],[2,0],[0,1],[-2,1],[1,1],[-1,0],[-4,1],[1,0],[0,1],[-2,1],[0,1],[-1,1],[-3,1],[-1,1],[0,1],[-2,0],[-1,1],[-2,0],[-1,-1],[-1,-1],[-1,0],[1,1],[-1,1],[-2,1],[0,2],[-2,0],[2,0],[-1,1],[-1,0],[-1,1],[0,1],[-3,0],[-2,1],[-5,0],[-3,2],[1,1],[-2,1],[-2,0],[-2,-1],[-2,1],[-1,0],[0,-2],[-1,0],[-1,1],[0,1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-4,1],[0,1],[1,0],[1,1],[-2,1],[-1,1],[-3,2],[1,1],[1,-1],[1,1],[-3,1],[-1,0],[-2,2],[-1,-1],[-1,2],[-1,0],[-3,0],[0,1],[-2,0],[-5,-1],[0,2],[1,0],[0,1],[-4,1],[-2,1],[-3,0],[-1,2],[-1,-1],[-2,0],[-2,0],[-1,0],[-2,-1],[2,-1],[0,-1],[-1,-1],[-1,1],[-2,0],[0,-1],[-2,0],[-1,-1],[-1,2],[0,1],[2,1],[-1,3]],[[7337,9419],[-1,3],[-2,1],[0,1],[1,0],[2,0],[-2,3],[-2,1],[0,2],[1,1],[-1,1],[-2,-1],[-1,2],[-2,1],[-1,1],[0,1],[1,0],[0,3],[-5,4],[-1,2],[-3,2],[-1,2],[1,1],[0,2],[-3,2],[2,1],[-1,1],[-2,1],[-2,0],[-1,0],[-2,0],[-5,2],[-4,1],[0,1],[0,1],[-2,0],[-1,2],[1,1],[-3,2],[0,1],[-2,3],[1,2],[0,2],[0,2],[2,3],[1,1],[-2,1],[-2,3],[0,1],[0,2],[3,2],[3,0],[0,2],[1,2],[2,-1],[3,2],[1,0],[-1,2],[4,2],[2,0],[1,3],[1,3],[-1,2],[-1,3],[2,4],[2,3],[-2,2],[-1,1],[1,1],[3,1],[0,1],[-1,2],[2,0],[2,-2],[2,1],[1,3],[-2,3],[0,1],[-3,3],[-1,1],[-3,2],[-2,1],[0,4],[-3,1],[-1,2],[-1,0],[0,1],[-2,1],[-3,2],[-2,2],[0,1],[-4,2],[-1,1],[1,1],[-1,2],[-2,1],[-1,2],[-6,4],[0,1],[3,2],[1,1],[-3,2],[-1,0],[1,2],[-1,1],[1,1],[1,1],[10,2],[2,-1],[1,1],[2,3],[0,1],[2,2],[-1,1],[-2,0],[-2,4],[3,2],[1,2],[-1,1],[-4,1],[-3,0],[-11,2],[-1,0],[-1,-2],[-2,0],[-7,2],[-1,2],[1,2],[2,1],[0,1],[4,1],[0,1],[-1,1],[-1,2],[2,0],[2,0],[3,1],[0,1],[0,2],[2,2],[-2,2],[-4,3],[0,1],[1,0],[-1,2],[-1,1],[0,4],[1,1],[0,4],[-1,1],[-1,2],[2,5],[2,3],[2,0],[1,1],[2,-1],[2,1],[3,2],[1,0],[2,3],[-2,2],[-6,1],[-3,2],[0,1],[0,1],[-6,1],[0,1],[-2,1],[-5,1],[-1,2],[-1,2],[-2,2],[-1,2],[0,2],[-1,1],[-2,1],[-3,0],[0,-1],[-4,0],[-3,-2],[-1,1],[-2,2],[1,3],[1,1],[-1,1],[0,3],[0,2],[-3,0],[-3,2],[-1,1],[0,1],[1,1],[-2,1],[-1,0],[-4,2],[-2,1],[-4,0],[-2,2],[-5,2],[1,1],[-4,1],[-3,0],[-3,0],[0,1],[-4,0],[1,1],[-1,0],[-3,1],[-1,0],[1,2],[-1,0],[-5,-1],[-2,1],[-4,1],[-3,0],[-3,2],[-2,0],[-4,-2],[-2,0],[0,3],[1,1],[-4,0],[-2,0],[-2,0],[-3,-1],[-2,1],[-4,-1],[-2,0],[0,1],[-1,0],[-6,0],[-2,2],[-2,2],[0,2],[-2,1],[-2,1],[-5,3],[-2,1],[-2,0],[-5,-1],[-5,1],[-2,0],[0,2],[1,1],[0,1],[-7,3],[0,1],[-6,1],[-4,0],[-6,2],[-1,0],[-1,2],[0,2],[0,2],[-2,2],[-2,0],[-3,-1],[-2,0],[-3,2],[-1,3],[-2,1],[-4,1],[-3,2],[-2,1],[-4,1],[0,1],[-7,3],[-1,-1],[-4,1],[-3,-1],[-2,0],[2,1],[-1,2],[-3,1],[0,1],[1,1],[3,0],[1,2],[0,1],[-2,2],[-4,1],[-3,2],[-2,1],[-6,2],[-7,0],[-6,1]],[[7034,9769],[14,7],[28,-9],[5,7],[-5,2],[0,2],[-5,6],[1,3],[2,1],[6,3],[15,6],[14,-2],[15,-2],[8,-7],[11,-7],[11,-8],[16,-13],[2,-4],[12,-10],[3,-12],[14,3],[22,-6],[21,0],[10,-6],[23,7],[19,1],[5,5],[4,7],[8,2],[9,-1],[8,-5],[7,1],[0,-4],[4,-1],[4,-2],[30,-4],[15,-5],[6,-8],[4,-1],[0,3],[1,2],[4,2],[2,-1],[3,1],[2,1],[2,-1],[1,0],[0,2],[3,0],[0,1],[-1,3],[0,3],[2,1],[-1,1],[0,2],[0,2],[2,3],[1,1],[3,1],[1,1],[2,1],[1,2],[2,1],[11,4],[7,2],[5,-2],[5,-1],[5,3],[0,1],[5,5],[0,2],[0,1],[4,1],[1,2],[-1,1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[-2,3],[-1,3],[2,3],[0,1],[-1,0],[0,1],[-2,3],[-1,1],[0,1],[2,1],[0,1],[-1,1],[0,2],[1,1],[1,1],[1,1],[1,1],[-1,1],[0,2],[2,3],[1,0],[1,1],[3,1],[0,1],[-1,0],[3,3],[-2,2],[-3,0],[1,2],[2,1],[1,3],[2,0],[0,1],[-1,1],[1,2],[1,1],[0,1],[-3,2],[3,1],[6,2],[2,3],[1,1],[-1,2],[-1,2],[-5,1],[0,1],[4,2],[1,1],[4,3],[4,0],[7,2],[1,0],[0,2],[3,0],[0,1],[1,1],[2,0],[1,2],[1,0],[1,1],[-1,0],[0,1],[2,0],[10,4],[1,2],[2,2],[-1,1],[4,2],[0,1],[0,1],[1,0],[2,1],[16,2],[2,-2],[1,0],[6,1],[5,1],[1,-1],[0,-1],[2,-1],[7,0],[6,-3],[2,1],[3,0],[3,2],[14,2],[-1,2],[-1,0],[3,2],[4,0],[6,3],[8,1],[1,1],[0,1],[1,1],[5,2],[7,0],[4,-1],[5,1],[13,2],[2,-4],[1,-5],[2,-2],[12,-8],[16,-4],[-1,-3],[2,-1],[4,-3],[61,-13],[3,-6],[14,-17],[-10,-9],[-32,-19],[0,-5],[-2,-7],[4,-4],[6,-2]],[[6981,8836],[1,-1],[0,-1],[2,0],[1,-1],[-1,0],[-1,-1],[-1,-1],[1,0],[-1,-1],[0,-1],[1,0],[-1,1],[1,1],[1,0],[1,0],[2,0],[2,-1],[0,1],[1,1],[0,-1],[2,0],[1,0],[0,-1],[-2,-1],[0,-1],[0,-1],[0,1],[1,1],[1,0],[1,1],[0,1],[1,0],[3,-1],[-2,0],[0,-1],[-1,-1],[1,0],[1,2],[1,-1],[-1,0],[1,-1],[3,-1],[1,-2],[-1,2],[-1,2],[1,0],[1,-1],[2,0],[1,-1],[0,-1],[-3,-3],[0,-1],[-1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[0,-1],[3,0],[2,-1],[1,0],[-2,-1],[-1,-2],[1,-1],[0,-1],[-1,-1],[-2,2],[-1,-1],[2,-2],[1,0],[0,-1],[0,-1],[-2,-1],[-1,1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-3,1],[-1,1],[-3,-1],[-1,0],[-1,1],[0,1],[2,0],[0,2],[0,1],[1,1],[2,1],[-2,0],[-2,-2],[0,-1],[1,0],[-3,-3],[-1,0],[-1,2],[1,1],[1,0],[-2,2],[0,-1],[-1,1],[1,2],[-1,1],[1,1],[2,-1],[-2,1],[2,3],[0,1],[-2,0],[0,-1],[0,-2],[1,1],[-1,-2],[-2,1],[-1,0],[1,0],[1,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-2,2],[-2,2],[1,0],[0,1],[-1,0],[0,-1],[0,-2],[2,-1],[1,-1],[1,-2],[0,-2],[-1,0],[0,-1],[0,-1],[0,-2],[-2,2],[-1,1],[-1,-1],[2,0],[1,-1],[1,-1],[0,1],[2,0],[1,1],[0,-1],[0,-3],[-1,-1],[-1,0],[0,-2],[1,-1],[1,1],[1,-1],[-1,-2],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,-2],[2,-1],[0,-2],[-1,-1],[-1,1],[1,0],[-1,1],[-1,0],[-1,3],[0,1],[0,1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,1],[1,0],[-1,1],[-2,0],[3,2],[0,1],[-1,0],[-1,-2],[0,1],[-1,-1],[-1,0],[0,1],[0,-1],[1,0],[0,-1],[-2,0],[-2,0],[-1,0],[0,2],[-2,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-2,1],[0,1],[0,1],[-1,1],[-1,2],[0,1],[-1,2],[-1,2],[1,1],[0,1],[-2,1],[-1,2],[0,1],[0,1],[0,1],[-1,1],[-1,0],[1,2],[1,0],[3,-1],[0,-1],[0,-2],[0,-1],[-2,0],[1,0],[2,0],[0,2],[-1,1],[1,1],[1,0],[1,-1],[1,-1],[1,1],[0,1],[1,0],[-1,1],[0,1],[-1,2],[1,0],[1,0],[1,0],[3,-2],[-2,-2],[-1,-1],[-1,-3],[1,-2],[0,1],[1,0],[1,-2],[0,-2],[0,-2],[1,1],[1,0],[-1,1],[0,1],[1,1],[-2,0],[1,3],[1,1],[0,-1],[0,-1],[0,-1],[2,0],[1,1],[0,1],[0,1],[1,0],[1,0],[1,1],[0,3],[-2,-2],[-1,1],[1,0],[0,1],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[2,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[-1,0],[1,1],[1,0],[0,1],[0,1],[-1,-1],[-1,0],[1,2],[0,1],[1,0],[-1,0],[-1,-1],[0,-1],[-1,-2],[-2,0],[-2,0],[0,1],[0,3],[-2,0],[-1,0],[1,0],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[1,1],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,1],[1,0],[0,1],[0,1],[-2,0],[0,2],[2,0],[2,-1],[-1,1],[-1,0],[0,1],[0,1],[2,2],[1,-1],[2,1],[1,1],[1,0],[4,0],[0,-1]],[[7238,8823],[-4,-4],[-1,-1],[-2,0],[0,-1],[0,-2],[-1,0],[-4,-1],[2,0],[-1,-2],[1,-1],[1,0],[-3,-1],[-1,0],[1,-1],[1,0],[1,0],[0,-2],[0,-1],[2,-1],[-2,0],[-1,-3],[-1,-1],[-5,-2],[-1,0],[0,-1],[1,0],[0,-2],[-2,0],[1,-1],[1,0],[1,0],[0,-1],[-1,-1],[-1,-1],[-1,1],[1,2],[-2,-1],[0,-1],[0,-1],[-2,1],[-1,-1],[-1,0],[-1,2],[0,1],[-1,1],[-1,-1],[-1,-1],[0,-1],[1,0],[-3,-1],[-1,1],[-1,1],[-1,-1],[-1,0],[0,1],[1,1],[1,0],[1,2],[0,-1],[-1,-1],[-4,-1],[-3,-1],[-1,0],[-3,-1],[-1,-1],[-2,0],[0,1],[1,-1],[0,1],[0,2],[-1,0],[0,-1],[-1,-1],[-1,0],[0,2],[-1,0],[0,-1],[1,-1],[-1,-1],[-1,1],[-1,1],[0,1],[0,2],[-1,2],[0,2],[0,1],[3,0],[1,1],[0,1],[1,0],[3,-2],[1,-1],[0,-1],[1,0],[1,1],[-1,1],[-1,0],[0,1],[1,0],[1,0],[-3,1],[-3,1],[1,1],[1,1],[1,0],[1,0],[-1,0],[1,0],[7,1],[3,0],[3,0],[-1,1],[-6,0],[1,0],[-1,0],[-4,0],[-3,1],[-3,-1],[-1,0],[0,1],[0,1],[4,3],[6,0],[1,0],[2,0],[2,1],[1,0],[-1,1],[3,1],[2,-1],[8,2],[4,-1],[2,0],[1,1],[2,0],[1,0],[1,1],[-1,0],[1,1],[0,1],[1,1],[0,-1],[1,1],[1,1],[0,1],[1,1],[3,1],[2,-2]],[[7398,9340],[1,-1],[-1,0],[0,-1],[0,-1],[1,1],[11,-1],[2,0],[2,-2],[-1,0],[-4,-1],[-8,1],[-2,1],[-3,0],[-2,1],[-3,-1],[-1,0],[3,0],[1,0],[-2,-1],[1,-1],[2,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-2,0],[-3,-2],[-2,0],[-2,0],[-2,1],[-1,2],[2,0],[0,1],[-1,0],[-3,-1],[1,0],[-2,-1],[-3,0],[-2,0],[-1,1],[-1,1],[1,0],[-1,1],[-2,1],[-1,1],[0,1],[-2,2],[2,1],[1,0],[0,1],[5,3],[5,0],[5,0],[6,1],[4,-1]],[[7091,9148],[0,-1],[2,0],[1,1],[-1,1],[1,-1],[1,-1],[-1,-1],[-2,-1],[-2,-1],[0,-1],[-2,-1],[4,-1],[1,-1],[1,1],[1,1],[3,-1],[-1,-1],[1,0],[1,-1],[0,2],[-1,1],[-2,0],[-1,0],[0,2],[1,-1],[1,0],[1,-1],[5,2],[0,1],[1,0],[1,-1],[2,0],[3,-3],[-1,-1],[0,-1],[1,-1],[0,-1],[-4,0],[-2,-1],[-1,-1],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[-2,-2],[1,0],[-1,-1],[-1,-1],[-4,0],[-1,1],[3,0],[-4,0],[-1,0],[0,2],[-1,1],[-2,1],[1,-1],[0,-1],[-1,0],[-3,0],[-1,2],[-1,1],[1,1],[-1,1],[-1,2],[-1,0],[-1,1],[1,1],[1,-1],[0,1],[-3,1],[0,1],[0,2],[2,0],[-1,-1],[3,-2],[2,1],[1,-1],[2,0],[3,1],[-2,0],[-1,0],[-1,0],[0,1],[1,1],[1,1],[1,1],[2,0],[1,-1],[-1,-1],[-1,0]],[[7145,8843],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-2],[0,-1],[-1,0],[-3,0],[-2,1],[1,0],[-1,0],[-1,-1],[1,0],[1,0],[2,0],[3,0],[-1,-1],[-2,-1],[4,0],[2,0],[-1,0],[1,-1],[1,0],[1,-1],[-2,0],[-4,-1],[7,1],[0,-1],[-6,-1],[-7,1],[-2,0],[-4,0],[0,1],[1,0],[6,0],[0,-1],[2,1],[-1,0],[-3,0],[-5,2],[-2,1],[1,1],[-2,0],[3,1],[-3,0],[1,1],[2,0],[1,1],[2,-1],[-1,0],[1,-1],[1,1],[-2,1],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[0,2],[3,1],[2,-1]],[[6999,8801],[1,0],[1,0],[1,0],[0,-1],[2,-1],[1,2],[1,-1],[1,-1],[-1,0],[-1,-1],[1,0],[0,-2],[-1,-2],[1,-2],[0,1],[1,-1],[-1,-1],[-1,-1],[0,-1],[-2,-2],[-1,1],[0,1],[2,0],[-1,3],[-1,0],[0,1],[-2,-3],[-3,1],[0,1],[0,1],[0,1],[-2,2],[-2,0],[0,-1],[-1,0],[-2,1],[-1,2],[-2,1],[-1,-1],[-1,1],[1,1],[1,0],[1,1],[1,0],[2,-1],[2,-2],[-1,2],[1,0],[1,-1],[0,3],[1,1],[-1,0],[1,0],[3,-2],[1,0]],[[6955,8823],[1,-3],[1,0],[1,-1],[1,-1],[-1,0],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[1,-1],[0,-1],[1,1],[-1,-1],[0,-1],[1,-1],[-2,-3],[-1,0],[1,2],[-1,0],[-1,-1],[-2,0],[0,1],[-1,2],[-1,1],[0,-2],[2,-1],[-1,-3],[-2,-2],[-1,1],[-1,0],[-3,2],[0,1],[0,3],[0,1],[2,0],[0,1],[-1,1],[1,0],[-1,3],[1,0],[1,0],[1,0],[2,1],[0,3],[1,0],[0,1],[1,1],[0,-2]],[[7172,8827],[2,0],[2,0],[1,0],[3,-1],[1,-1],[0,-1],[0,1],[1,0],[1,1],[3,-1],[0,-1],[-1,-1],[1,-1],[-2,-1],[-1,0],[1,1],[-2,0],[2,1],[-2,-1],[0,1],[-1,0],[0,-1],[-3,-2],[-3,0],[-1,-1],[1,0],[1,-1],[-5,0],[1,1],[1,0],[1,2],[-1,0],[-1,1],[3,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,1],[-2,-1],[2,0],[0,-1],[1,1],[1,-1],[0,-1],[0,-1],[-3,0],[-1,0],[1,0],[-3,1],[-1,-1],[-2,2],[0,1],[1,3],[1,0],[7,1]],[[7147,8814],[-1,0],[-1,-1],[0,1],[-1,0],[-2,0],[0,-1],[4,0],[1,0],[1,-1],[3,0],[-1,-2],[-3,1],[-2,0],[-1,0],[0,-1],[3,1],[1,-1],[-2,-1],[-3,0],[-4,0],[5,0],[-1,-1],[-2,0],[-2,0],[-4,0],[7,0],[-3,-3],[-3,0],[1,-1],[-7,1],[1,1],[1,1],[0,1],[-1,0],[0,1],[3,0],[0,1],[-2,-1],[-1,1],[1,0],[0,1],[0,1],[1,0],[2,2],[2,0],[4,0],[4,0],[-3,1],[3,0],[1,0],[1,-1]],[[7099,8857],[1,0],[-1,1],[2,-1],[1,-1],[1,-2],[0,1],[2,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[2,-1],[-1,1],[2,0],[1,-1],[1,0],[0,1],[2,-1],[2,-2],[-1,-1],[-1,0],[0,1],[-2,0],[-1,1],[0,-2],[1,-2],[1,0],[-1,-1],[-1,-1],[-4,0],[0,1],[-1,1],[-1,1],[-2,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,-1],[0,-2],[1,0],[-3,2],[1,0],[-2,2],[2,1],[1,1],[1,0],[-1,0],[-1,1],[0,1],[-3,2],[1,1],[0,-2]],[[7123,8811],[3,-1],[3,0],[1,0],[0,-2],[-2,-1],[-2,0],[0,-1],[1,0],[1,-1],[0,-1],[-2,-1],[-3,0],[-1,0],[-1,0],[-4,0],[-2,0],[-1,2],[2,1],[1,0],[4,0],[-5,1],[-1,-1],[-1,0],[1,2],[2,0],[-1,1],[1,0],[3,1],[-1,0],[1,1],[3,0]],[[7176,9151],[0,-3],[-2,-3],[-2,-1],[-2,1],[-2,1],[-1,0],[-2,0],[4,-1],[1,-1],[-1,-1],[0,-1],[-4,1],[-1,0],[-2,1],[-2,0],[1,0],[2,0],[-1,1],[-2,1],[1,0],[2,0],[0,1],[-1,2],[0,1],[3,1],[1,-1],[3,-1],[1,1],[2,0],[0,-1],[-1,0],[1,0],[1,0],[0,1],[0,1],[1,1],[1,1],[1,-2]],[[7100,9155],[4,0],[1,0],[1,0],[0,-1],[1,-1],[-1,-2],[-1,0],[-1,-1],[1,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[1,2],[1,1],[-2,0],[-2,-1],[-1,0],[-1,0],[0,2],[1,0],[-1,1],[-1,0],[-3,0],[2,3],[1,-1],[1,0],[2,1],[1,1],[2,0]],[[7190,8830],[1,-1],[3,-1],[4,0],[1,0],[-3,-3],[-1,0],[-2,-1],[-2,0],[-1,0],[-3,-1],[-1,1],[3,3],[-2,-2],[-6,1],[1,3],[3,0],[-1,1],[1,0],[4,1],[2,0],[-1,0],[0,-1]],[[7164,8815],[-1,-2],[1,1],[1,-1],[-3,-2],[-3,0],[2,-1],[0,-1],[-1,-1],[-2,-1],[-2,0],[-1,0],[0,1],[1,0],[-1,1],[-1,0],[0,-1],[1,0],[-1,-1],[-1,0],[-1,1],[-2,1],[1,1],[1,0],[0,1],[1,0],[-1,1],[1,0],[4,1],[0,-1],[2,1],[1,1],[4,1]],[[7175,8812],[-1,0],[-2,1],[0,1],[2,0],[-1,1],[1,1],[1,1],[3,2],[1,1],[1,0],[0,1],[1,-1],[0,-2],[2,-1],[0,-1],[-2,-1],[-2,-2],[-1,-1],[-3,0]],[[7464,8818],[1,-1],[-2,-1],[-2,0],[0,-2],[1,0],[-1,-1],[-1,0],[-1,1],[1,0],[-3,1],[4,1],[1,1],[-1,0],[-2,-1],[-2,1],[-1,2],[0,1],[0,3],[0,1],[2,1],[1,-1],[0,-1],[1,-2],[1,0],[3,-2],[0,-1]],[[7008,8806],[1,-2],[1,1],[-1,1],[1,2],[2,-1],[1,-1],[0,-3],[-1,-1],[-2,0],[1,0],[0,-1],[-1,0],[1,1],[-1,-1],[-1,-1],[1,0],[0,1],[1,-1],[0,-1],[0,1],[-1,-1],[0,-1],[-2,0],[1,1],[-3,2],[-2,0],[1,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,0],[0,-1],[1,1],[-1,1],[1,2],[1,-1],[1,-1],[-1,-1]],[[7185,8817],[-2,-1],[0,1],[-1,2],[3,2],[1,1],[2,1],[4,0],[3,1],[0,-1],[-2,0],[0,-1],[0,-1],[-2,-1],[0,-2],[-6,-1]],[[7097,8852],[1,-2],[1,-1],[-1,-1],[0,-1],[2,0],[1,-2],[-1,-1],[-2,0],[0,1],[-2,-1],[-2,0],[2,1],[-2,0],[0,1],[1,0],[0,1],[-3,-1],[0,2],[0,1],[1,-1],[2,0],[-1,1],[1,1],[2,0],[-3,1],[-1,-1],[-1,1],[0,1],[-1,1],[0,1],[1,0],[1,0],[1,-1],[3,-1]],[[7017,8822],[3,-2],[1,0],[0,-1],[1,1],[2,-2],[0,-1],[-2,-2],[-1,-2],[-2,-1],[-1,4],[1,0],[1,0],[0,1],[-2,0],[-3,-1],[0,1],[0,1],[2,1],[0,1],[-1,1],[-1,1],[1,0],[1,0]],[[7100,8815],[4,0],[1,0],[-1,-1],[-1,0],[-2,0],[3,-1],[-1,0],[3,0],[2,0],[3,0],[-1,-1],[-2,-1],[-1,0],[-2,-1],[-1,0],[1,1],[-3,-1],[0,1],[-4,1],[1,0],[1,0],[1,0],[-1,1],[-1,0],[-2,-1],[-2,1],[1,1],[2,1],[0,1],[6,0],[-4,-1]],[[7131,9149],[2,0],[2,0],[1,0],[1,-1],[-1,0],[-1,0],[0,-2],[1,1],[1,0],[0,-1],[1,-1],[-1,0],[-1,-1],[-2,1],[-2,1],[0,1],[0,1],[-2,1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-3,0],[0,1],[0,2],[-1,0],[1,0],[1,1],[-1,1],[-1,0],[3,1],[1,1],[1,-1],[1,1],[-1,0],[1,0],[1,0],[0,-1]],[[7487,8829],[2,-1],[1,0],[2,-1],[-1,-1],[2,0],[0,-1],[-1,-2],[-1,-1],[2,0],[1,0],[1,0],[-1,-1],[-2,0],[0,1],[-2,-1],[-2,-1],[-1,0],[-1,1],[0,3],[2,0],[0,-1],[1,0],[-2,3],[0,1],[-1,1],[0,1],[1,0]],[[7157,9157],[1,-1],[1,1],[1,0],[2,-1],[1,1],[1,-1],[-2,0],[0,-1],[1,0],[1,-1],[-4,-1],[-1,-1],[0,-1],[-3,2],[1,1],[1,0],[2,0],[-1,0],[-2,1],[-1,-1],[0,-2],[-1,1],[-1,-2],[-1,0],[-2,0],[0,1],[1,1],[1,2],[2,1],[1,1],[0,1],[1,-1]],[[7135,8851],[2,-1],[0,1],[1,0],[1,-2],[0,-1],[-2,-2],[-3,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[-2,1],[0,2],[1,0],[0,2],[0,1],[0,1],[1,1],[1,0],[1,1],[0,1],[1,1]],[[7158,8839],[2,-1],[0,1],[1,0],[1,-1],[-1,-1],[-2,-1],[-1,1],[-3,-1],[-1,1],[0,1],[-3,1],[-1,1],[0,1],[-1,2],[5,-1],[2,-1],[2,-1],[1,-1],[-1,0]],[[7017,8793],[2,-1],[1,1],[0,-1],[1,0],[2,0],[1,0],[2,-1],[-1,-1],[-1,-1],[-2,2],[-1,1],[1,-1],[0,-1],[0,-1],[-2,0],[-2,0],[-1,1],[-2,-2],[-1,0],[-2,1],[2,2],[1,0],[0,1],[1,1],[1,0]],[[7036,8798],[0,-2],[0,-1],[2,0],[0,1],[2,0],[-1,-1],[-1,0],[1,0],[-1,-2],[-2,-1],[-2,0],[-3,-1],[-1,1],[-1,1],[1,1],[3,2],[-1,0],[0,1],[2,0],[1,0],[1,1]],[[7084,9116],[1,-1],[1,0],[2,-1],[1,-2],[1,-1],[0,-2],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-2,0],[-2,1],[0,2],[1,0],[0,-1],[1,0],[0,1],[0,1],[-2,0],[-1,2],[1,0],[1,1]],[[7237,8802],[0,-1],[-1,-1],[-2,0],[1,1],[-2,-1],[-3,-1],[-1,-1],[-1,1],[-1,0],[3,1],[-2,-1],[-2,1],[1,0],[2,0],[-1,1],[2,3],[4,0],[3,0],[0,-2]],[[7542,8839],[3,-1],[1,0],[1,-2],[-2,0],[-4,-1],[-1,-1],[-1,1],[-1,-1],[-1,0],[1,-1],[0,-1],[-1,-1],[-2,3],[-1,0],[0,2],[1,0],[3,-1],[1,1],[2,1],[-1,0],[0,2],[2,0]],[[7088,9100],[2,0],[1,0],[-1,0],[1,0],[-1,-2],[0,-1],[-7,-1],[-2,1],[-1,0],[-1,0],[1,1],[1,0],[1,1],[1,-1],[0,1],[-1,1],[3,0],[0,1],[1,0],[2,-1]],[[7057,8820],[1,-1],[0,-1],[0,-1],[-1,1],[-1,-1],[-1,0],[-1,-1],[2,0],[0,-1],[-1,0],[-3,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[1,3],[1,0],[1,0],[1,0],[2,-2]],[[7188,8811],[-2,-2],[-1,0],[-4,-1],[2,0],[1,1],[0,-2],[-2,0],[-2,0],[0,2],[2,1],[-2,0],[1,1],[1,0],[2,1],[2,1],[2,1],[0,-1],[0,-2]],[[7107,9124],[-1,0],[2,0],[2,-2],[-1,-1],[-1,0],[1,-1],[1,-1],[-3,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[3,0],[-1,0],[-3,1],[1,0],[-4,1],[-2,0],[0,1],[-1,0],[3,1],[0,-1],[1,0],[1,1],[2,1],[-2,0],[0,1],[2,0],[0,1],[-2,1],[1,0],[1,0]],[[7176,8836],[1,-2],[1,0],[1,0],[0,-1],[-3,1],[1,-1],[-2,-1],[-2,0],[-1,1],[-2,-1],[-1,2],[2,0],[0,2],[-2,-2],[-1,1],[1,1],[3,1],[3,0],[1,-1]],[[7158,9151],[-1,-1],[1,1],[1,-1],[2,-2],[0,-1],[-1,-1],[0,-1],[-4,0],[1,2],[-1,0],[-1,-1],[1,0],[0,-1],[-3,0],[0,1],[0,1],[1,1],[2,-1],[0,1],[-1,0],[-1,1],[1,1],[1,0],[0,-1],[1,-1],[2,1],[-1,0],[-3,1],[0,1],[3,0]],[[7188,8831],[-3,-1],[-3,1],[0,1],[1,0],[13,3],[-2,-1],[1,-1],[-2,-1],[-5,-1]],[[7318,8790],[1,-1],[3,0],[2,0],[-4,0],[1,-1],[1,0],[-3,0],[-3,1],[2,-1],[1,-1],[-1,-1],[-1,0],[1,-1],[-1,0],[-2,1],[-1,-1],[-1,1],[-1,0],[-1,0],[1,1],[1,1],[2,1],[3,1]],[[7181,8830],[-10,-2],[-2,1],[1,0],[-2,0],[2,1],[10,2],[1,-1],[0,-1]],[[7153,8823],[-1,-1],[0,-1],[-1,0],[-3,0],[-1,0],[0,1],[3,1],[-2,0],[-2,-1],[0,1],[-1,1],[5,0],[-1,1],[4,0],[1,-1],[1,0],[-2,-1]],[[7234,8798],[-1,0],[-1,0],[0,-2],[1,0],[-1,-1],[-2,-1],[1,0],[-2,-1],[1,-1],[-1,-1],[-1,1],[-1,3],[1,1],[1,-1],[1,0],[0,1],[-2,0],[-1,1],[1,1],[2,0],[2,0],[0,1],[2,-1]],[[7123,8820],[0,-1],[-1,0],[-1,-1],[4,0],[-1,-1],[-2,-1],[1,0],[0,-1],[-1,0],[-2,0],[-1,-1],[-1,1],[1,2],[2,3],[1,1],[1,-1]],[[7275,8785],[2,0],[2,0],[1,-1],[1,-1],[-4,-1],[-3,0],[-1,0],[0,1],[-1,0],[0,1],[2,2],[1,0],[0,-1]],[[7026,8798],[-1,0],[2,0],[-1,-1],[0,-2],[-1,-2],[-4,0],[-2,0],[0,1],[2,1],[2,2],[3,1]],[[7283,8782],[1,-1],[-1,0],[-2,-1],[0,-1],[3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[1,0],[-1,0],[-1,0],[-2,1],[1,0],[1,0],[-1,0],[0,1],[4,-1],[1,1],[1,0],[2,-1],[0,1],[-1,0],[1,1],[2,0],[-1,-1]],[[7567,8840],[1,1],[1,-1],[-1,0],[1,-1],[1,-2],[-1,-1],[-1,0],[-2,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[2,1],[0,1],[1,0],[1,0],[0,-1]],[[7481,8815],[2,0],[-3,-1],[0,-1],[0,1],[3,1],[0,-1],[2,0],[0,-1],[-1,0],[-4,0],[1,0],[-3,-1],[-1,0],[-1,1],[1,2],[0,1],[1,0],[1,0],[1,-1],[1,0],[0,1],[0,-1]],[[7375,9407],[-1,-4],[-1,-1],[-6,0],[0,1],[0,1],[3,0],[2,1],[1,1],[1,1],[0,1],[1,-1]],[[7092,9102],[0,-2],[-3,2],[-1,0],[1,1],[-3,2],[0,1],[1,1],[0,1],[2,-1],[0,-1],[1,-1],[1,-2],[1,-1]],[[7051,8831],[1,-1],[1,1],[1,-2],[-1,-3],[-1,0],[-2,-1],[-1,0],[0,2],[1,2],[1,1],[0,1]],[[7032,8798],[1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[1,0],[-3,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,2],[1,1],[3,0],[2,1]],[[7156,8827],[3,-1],[0,-1],[-1,-1],[-2,0],[-7,2],[3,0],[-1,0],[3,1],[2,0]],[[7068,8786],[2,0],[1,0],[1,0],[0,-1],[-4,0],[1,-1],[2,0],[0,-1],[0,-1],[-1,0],[-1,0],[1,1],[-2,1],[-2,0],[-1,0],[-1,1],[2,0],[-2,1],[1,1],[1,0],[2,-1]],[[7200,8779],[-2,0],[-1,-1],[1,0],[1,0],[-1,-2],[-1,0],[-2,0],[-1,-1],[-3,-1],[-1,1],[0,1],[1,0],[0,-1],[2,1],[0,1],[2,0],[1,0],[-1,1],[0,1],[1,0],[2,1],[2,0],[0,-1]],[[7098,8833],[2,0],[2,-2],[0,-2],[-2,0],[-1,1],[-1,0],[-2,1],[1,1],[1,1],[-1,-1],[-1,1],[1,0],[1,0]],[[7092,9154],[-3,0],[-2,0],[0,1],[1,1],[1,1],[4,1],[1,-1],[-1,-2],[-1,-1]],[[7105,9110],[-1,0],[1,0],[1,0],[1,-1],[0,-2],[-1,0],[-1,1],[1,0],[-1,0],[-1,0],[1,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,-1],[-2,1],[2,2],[1,0],[0,1],[-1,0],[1,0],[1,1],[1,-1],[-1,-1]],[[7048,8812],[-1,0],[-1,0],[-1,-1],[-2,1],[0,1],[0,2],[1,1],[1,0],[2,-1],[1,-3]],[[7079,9064],[-1,0],[-2,1],[0,3],[0,1],[1,0],[1,0],[2,-1],[-1,-4]],[[7109,8926],[2,-1],[2,1],[1,-1],[2,-1],[-1,0],[1,-1],[-2,-1],[-4,2],[-2,0],[-1,0],[0,1],[2,1]],[[7106,8919],[-1,-1],[-1,1],[-1,-1],[-1,-1],[-1,1],[-1,0],[0,2],[2,0],[-1,1],[1,1],[1,0],[1,0],[2,-1],[-3,-1],[3,-1]],[[7171,8831],[-5,-2],[1,1],[-1,0],[-1,-1],[-1,0],[1,1],[1,1],[1,1],[7,0],[-1,-1],[-2,0]],[[7064,8782],[0,-1],[1,0],[0,-1],[-2,0],[0,1],[-2,0],[-1,1],[-1,1],[1,1],[2,1],[1,0],[2,-2],[-1,-1]],[[7202,8787],[1,0],[1,0],[-2,-1],[-3,0],[2,1],[1,0],[-3,-1],[-1,1],[0,1],[0,1],[2,1],[3,-1],[0,-1],[-1,-1]],[[7045,8803],[-1,0],[-2,1],[-1,1],[0,1],[1,1],[1,0],[1,0],[1,-1],[1,-1],[-1,-2]],[[7414,8812],[-1,-1],[0,-2],[2,1],[0,-1],[1,-1],[-2,0],[-2,0],[-2,1],[-1,-1],[0,1],[0,1],[1,0],[1,1],[2,0],[-1,0],[1,1],[1,0]],[[7579,8836],[0,-1],[-3,1],[-1,2],[1,1],[1,1],[1,0],[0,1],[1,-1],[0,-2],[0,-2]],[[7086,9148],[-1,-1],[-2,0],[-2,-1],[0,1],[0,1],[1,2],[2,0],[3,-1],[-2,-1],[1,0]],[[7197,8830],[-2,-1],[-3,1],[1,0],[1,1],[7,1],[-4,-2]],[[7157,8804],[-4,-1],[-2,0],[-1,0],[1,1],[-2,0],[0,1],[4,1],[0,-1],[3,0],[1,-1]],[[7109,8817],[-2,-1],[3,0],[1,0],[0,-2],[-1,0],[-5,-1],[1,3],[3,1]],[[7173,8839],[0,-1],[-3,-1],[-2,0],[-1,0],[-1,-2],[-1,0],[0,1],[0,1],[-1,0],[-1,-1],[0,1],[3,1],[2,0],[2,0],[1,0],[2,1]],[[7209,8788],[1,-1],[-1,0],[-2,0],[2,-1],[-2,0],[4,0],[-1,-1],[-2,0],[3,-1],[-2,0],[-4,2],[2,1],[-1,1],[0,1],[1,1],[1,0],[0,-1],[1,0],[0,-1]],[[7191,8783],[-1,-1],[-1,1],[0,1],[0,1],[1,2],[2,2],[0,-1],[0,-1],[0,-1],[-1,0],[1,-2],[-1,-1]],[[7510,8828],[1,-1],[1,0],[1,-2],[-5,0],[-1,2],[-1,1],[0,1],[1,0],[3,-1]],[[7292,8784],[2,-1],[1,0],[-2,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[2,0],[5,0],[1,1],[-1,0],[1,0]],[[7014,8813],[-1,-1],[-2,1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[1,1],[2,1],[1,2],[2,0],[1,-2],[-1,0]],[[7126,8839],[0,-2],[-2,0],[0,-1],[-1,-1],[-1,0],[0,1],[0,2],[1,1],[2,1],[1,-1]],[[6945,8820],[0,-2],[1,0],[0,1],[2,0],[1,0],[-1,0],[-1,0],[0,-1],[1,-1],[1,-1],[-1,0],[-2,1],[-1,-1],[0,2],[0,-1],[-1,-1],[-1,1],[0,1],[1,2],[1,0]],[[7578,8835],[2,-1],[1,1],[1,-1],[-1,-3],[-1,0],[-1,0],[-2,2],[0,2],[1,0]],[[7207,9200],[-1,-1],[0,1],[3,-1],[1,-1],[-2,0],[-1,-1],[0,-1],[1,1],[1,-1],[-1,-1],[-1,1],[-1,0],[-2,1],[1,1],[1,1],[-1,0],[0,2],[1,0],[1,-1]],[[7106,8833],[-1,-3],[-3,2],[-1,2],[1,1],[1,0],[2,-1],[1,-1]],[[7081,8842],[-2,-2],[0,-1],[-1,1],[-1,0],[1,-1],[-1,0],[-1,2],[1,1],[1,1],[2,0],[1,-1]],[[7146,8807],[-2,-2],[-2,0],[0,1],[0,1],[1,1],[3,0],[-1,0],[0,1],[2,0],[0,-1],[-2,0],[3,0],[1,0],[0,-1],[-3,0]],[[7092,9153],[-1,0],[1,0],[-1,-1],[-3,0],[0,-1],[0,-1],[-3,0],[-1,1],[3,1],[3,2],[1,-1],[-1,1],[2,-1]],[[7092,9048],[1,-3],[-2,-2],[1,2],[-1,0],[-1,-1],[0,4],[1,2],[0,-1],[1,0],[0,-1]],[[7080,9085],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[0,3],[1,0],[1,0],[1,-1],[1,-1]],[[7116,8967],[0,-1],[-1,-1],[-1,1],[-2,0],[-1,0],[-2,1],[3,-1],[-1,3],[4,-1],[1,-1]],[[7107,9116],[-1,-1],[-1,1],[2,-1],[0,-1],[-1,0],[-2,1],[0,-1],[-1,0],[-3,1],[0,1],[3,-1],[-1,1],[1,1],[1,0],[3,-1]],[[7120,8846],[-1,-1],[-1,-1],[1,-1],[-1,0],[-3,1],[0,1],[0,2],[1,0],[3,-2],[0,1],[-1,0],[0,2],[1,-1],[1,-1]],[[7235,8793],[-1,-1],[-2,0],[0,1],[1,0],[1,0],[-1,1],[0,1],[2,1],[1,0],[1,0],[1,-1],[-2,-1],[-1,-1]],[[7206,9203],[2,-1],[1,0],[1,0],[0,-1],[1,-2],[2,1],[0,-1],[-1,-2],[-1,0],[0,1],[-2,3],[0,1],[-2,-1],[-1,0],[-1,0],[1,1],[-1,1],[1,-1],[0,1]],[[7108,8822],[1,0],[1,0],[-1,-2],[-5,0],[-1,0],[1,1],[1,1],[2,0],[1,0]],[[7196,8814],[-1,-1],[-1,1],[0,1],[1,2],[1,0],[2,-1],[0,-2],[-2,0]],[[7272,8779],[1,-1],[3,1],[0,-1],[1,0],[-3,-1],[0,-1],[-3,0],[-1,0],[2,2],[-2,0],[2,1]],[[7294,9245],[2,-2],[1,-1],[0,-1],[-1,1],[-1,1],[-4,-1],[-1,1],[0,1],[1,0],[3,1],[-1,0],[0,1],[1,1],[0,-2]],[[6973,8825],[1,-1],[1,0],[0,-1],[-1,-2],[-1,-1],[-1,1],[-1,2],[2,2],[1,0],[-1,0]],[[6968,8835],[0,-1],[2,1],[1,1],[0,-1],[-1,-2],[-1,0],[0,-1],[-1,2],[-1,2],[0,1],[1,0],[0,-1],[0,-1]],[[7106,8818],[-2,-1],[-2,1],[-1,1],[1,0],[1,0],[3,1],[1,-1],[0,-1],[-1,0]],[[7312,8790],[1,-1],[0,1],[2,0],[-2,-2],[-2,0],[-1,-2],[-1,-1],[-1,1],[2,2],[1,2],[1,0]],[[7194,9177],[1,-4],[-2,1],[0,1],[-2,2],[0,1],[1,0],[2,-1]],[[7213,8791],[0,-1],[-2,0],[-1,2],[2,1],[-1,0],[0,1],[1,1],[1,-1],[0,-1],[0,-2]],[[7189,9180],[-1,-1],[-2,1],[0,1],[0,2],[1,0],[2,-1],[0,-1],[1,-1],[-1,0]],[[7033,8803],[0,-1],[2,1],[1,-1],[-1,-1],[-1,0],[-6,1],[2,1],[0,-1],[2,1],[1,0]],[[7060,9112],[-2,-2],[-1,1],[-1,2],[1,2],[2,-1],[1,-2]],[[7066,8828],[1,-5],[-2,2],[-1,2],[-1,1],[2,1],[1,-1]],[[7089,9117],[1,-1],[1,0],[-1,-1],[-1,-1],[-2,1],[0,2],[1,0],[0,1],[1,-1]],[[7185,8816],[1,-1],[1,0],[-1,-1],[0,1],[-1,-1],[-1,-1],[-2,0],[-1,1],[2,1],[2,1]],[[7071,8823],[-1,0],[-2,1],[0,1],[1,1],[1,0],[1,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[7145,8805],[2,-1],[0,-1],[-1,1],[-2,0],[-1,0],[0,-1],[-3,1],[0,1],[0,-1],[-1,1],[-1,-1],[-1,0],[2,1],[1,0],[1,0],[3,0],[1,0]],[[7089,8857],[1,-1],[1,-1],[0,-1],[-1,0],[-1,0],[0,2],[-1,0],[-2,1],[-1,0],[1,-1],[-1,0],[0,1],[2,0],[1,1],[1,-1]],[[7165,8820],[1,-1],[1,0],[5,0],[-1,-1],[-1,0],[-4,0],[-2,0],[2,1],[-1,0],[0,1],[1,0],[-1,0]],[[7124,8813],[3,-1],[1,-1],[-1,0],[-2,0],[-3,1],[0,1],[1,0],[0,-1],[1,1]],[[7131,8839],[1,-2],[-1,-2],[-1,0],[0,1],[-1,1],[1,2],[0,-1],[-1,0],[0,1],[0,1],[2,-1]],[[7020,8828],[-1,-1],[-1,0],[-3,1],[1,2],[1,0],[2,-1],[1,0],[0,-1]],[[7101,8817],[3,0],[3,1],[-3,-1],[-1,0],[-4,-1],[-2,1],[1,0],[-1,1],[4,0],[1,0],[-1,-1]],[[7015,8828],[-1,-1],[-1,0],[-1,0],[0,1],[3,2],[-1,0],[1,0],[0,-2]],[[7120,8823],[1,-1],[-1,0],[-2,0],[-2,-1],[-1,1],[2,1],[1,1],[2,-1]],[[7185,8787],[2,0],[0,-1],[-2,-2],[-1,0],[-1,1],[1,2],[1,0]],[[7080,8847],[0,-1],[-3,1],[-2,1],[3,1],[1,0],[1,-1],[0,-1]],[[7112,8969],[-2,0],[-2,2],[-2,1],[2,0],[1,0],[2,-1],[1,-2]],[[7138,9164],[2,0],[2,-2],[-2,-1],[-3,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[2,1],[0,-1]],[[7132,8829],[0,-1],[-4,0],[-1,0],[-2,2],[2,0],[3,0],[-1,-1],[3,0]],[[7067,8838],[-2,1],[0,1],[1,1],[0,1],[-1,0],[1,0],[1,0],[1,-1],[0,-2],[-1,-1]],[[7179,8806],[-2,-1],[-1,1],[1,2],[2,1],[0,-1],[1,0],[0,-1],[-1,-1]],[[7437,9339],[-1,0],[-1,1],[-3,0],[1,1],[4,1],[-1,-2],[1,-1]],[[7428,9340],[-1,0],[-2,1],[-1,1],[1,1],[4,-1],[-1,-1],[0,-1]],[[7164,8817],[-2,-1],[-2,0],[-1,1],[2,1],[2,0],[1,-1]],[[7105,8968],[1,0],[3,-1],[-2,0],[0,-1],[2,0],[1,-2],[-2,1],[-2,1],[0,1],[-3,0],[1,1],[1,0]],[[7496,8823],[1,0],[3,-1],[-1,0],[2,0],[1,0],[1,-1],[-2,-1],[0,1],[-2,1],[-1,0],[-3,0],[0,1],[1,0]],[[7135,9164],[0,-3],[-2,0],[0,1],[-3,-1],[1,1],[2,0],[0,1],[-1,0],[-1,0],[3,1],[1,0]],[[7088,9053],[1,-2],[0,-1],[-2,-3],[-1,0],[0,2],[2,1],[0,1],[0,1],[-1,0],[1,1]],[[7103,8872],[-1,-1],[-2,1],[-1,1],[0,1],[1,0],[2,-1],[1,0],[0,-1]],[[7503,8824],[1,-2],[-3,1],[-1,-1],[-1,1],[1,1],[1,0],[2,0]],[[7175,8810],[1,0],[2,0],[-1,-1],[-4,0],[-3,0],[3,0],[0,1],[2,0]],[[7080,9160],[-2,0],[-2,0],[0,2],[1,0],[2,0],[1,-1],[0,-1]],[[7187,8790],[-1,-3],[-2,0],[1,3],[1,1],[1,0],[0,-1]],[[7077,8834],[-2,0],[-1,1],[0,1],[2,1],[0,-1],[2,0],[-1,-2]],[[7022,8821],[-2,-1],[0,1],[0,1],[0,1],[-2,1],[1,0],[2,0],[0,-1],[1,-2]],[[7438,8815],[-1,0],[-2,1],[-1,1],[-1,1],[2,0],[0,-1],[1,0],[3,-1],[-1,-1]],[[7174,8817],[-1,-3],[-3,1],[1,2],[1,0],[2,0]],[[7399,8807],[-2,-1],[0,1],[-1,0],[-1,1],[1,1],[3,0],[0,-1],[0,-1]],[[7080,8827],[-1,0],[-3,2],[0,1],[0,1],[1,-1],[2,-1],[-1,0],[0,-1],[2,-1]],[[7079,8843],[-1,0],[-1,0],[-2,1],[0,1],[1,1],[1,-1],[1,-1],[1,-1]],[[7572,8840],[-1,-1],[-1,1],[-1,1],[2,0],[0,1],[1,0],[1,0],[0,-1],[-1,-1]],[[7068,8838],[1,-1],[1,0],[1,0],[2,0],[-2,0],[0,-1],[0,-1],[-2,1],[0,1],[-2,0],[1,1]],[[7084,8878],[2,-2],[1,0],[-1,-1],[-2,1],[-1,1],[0,1],[1,0]],[[7413,8806],[-3,-1],[0,1],[2,2],[3,-1],[-2,-1]],[[7089,8838],[0,-1],[1,0],[1,-3],[-1,0],[-1,0],[-1,3],[0,1],[1,0]],[[7141,8838],[-1,-2],[-1,1],[-2,0],[3,1],[-1,0],[-2,1],[1,0],[1,0],[2,-1]],[[7610,8839],[-1,0],[-2,1],[-1,2],[2,0],[0,-1],[2,0],[1,-1],[-1,-1]],[[7171,8817],[-1,-1],[-2,0],[-1,0],[1,0],[1,0],[0,1],[-4,-1],[2,1],[3,1],[1,-1]],[[7097,8815],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[1,0],[0,1],[1,0],[1,-1],[1,1],[-2,0],[1,0],[1,0],[1,1],[0,-1]],[[7558,8829],[-1,-1],[-1,0],[-2,2],[2,1],[1,-1],[1,-1]],[[6997,8833],[-1,-1],[-2,1],[2,2],[2,0],[0,-1],[-1,-1]],[[7249,8782],[1,-2],[1,0],[-1,-1],[-2,1],[1,1],[-1,0],[-1,0],[-1,0],[2,0],[0,1],[-1,1],[1,1],[1,-1],[-1,0],[0,-1],[1,0]],[[7121,8846],[-1,1],[-1,1],[0,1],[0,1],[1,-1],[2,-1],[-1,-2]],[[7089,9046],[-2,0],[1,3],[2,1],[-1,-1],[1,-1],[-1,-2]],[[7107,8837],[1,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[2,2]],[[7135,8785],[-2,0],[2,1],[-1,0],[0,1],[2,0],[0,1],[1,0],[0,-2],[-2,-1]],[[7031,8800],[-5,0],[-1,0],[1,1],[1,0],[2,0],[2,-1]],[[6989,8792],[-3,0],[1,1],[-1,1],[-2,0],[0,1],[3,-1],[1,0],[1,-2]],[[6953,8827],[-1,1],[0,1],[4,2],[0,-1],[-2,-1],[-1,-2]],[[6964,8834],[1,-1],[1,0],[0,-1],[-2,-1],[-1,1],[0,1],[1,1]],[[7066,8782],[-1,-1],[-1,1],[1,1],[0,1],[3,0],[1,-1],[-2,-1],[-1,0]],[[7127,9158],[1,0],[1,0],[1,0],[-1,0],[1,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[1,0]],[[7165,8810],[-2,-1],[1,1],[2,0],[0,1],[1,1],[1,0],[1,0],[-1,-1],[-1,-1],[-2,0]],[[7129,8821],[-3,0],[-2,1],[1,0],[1,0],[0,1],[3,-1],[0,-1]],[[7025,8810],[-1,-2],[-1,1],[-2,-1],[-1,0],[3,2],[0,1],[1,0],[1,-1]],[[7193,8789],[1,-1],[1,0],[0,-1],[-2,0],[-1,-1],[0,1],[0,2],[1,0]],[[7199,8783],[-1,-1],[-1,1],[0,1],[0,2],[1,0],[1,-1],[0,-1],[0,-1]],[[7308,8785],[-3,-1],[-1,-1],[-1,0],[-1,0],[1,1],[1,1],[0,-1],[2,1],[2,0]],[[7106,9122],[-1,0],[-1,0],[0,1],[0,1],[2,0],[1,-1],[-1,-1]],[[7073,8835],[0,-1],[1,0],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,0],[1,2],[-1,0],[1,1]],[[7241,8804],[-3,-1],[-1,0],[1,0],[-1,1],[3,1],[1,0],[0,-1]],[[7031,8801],[2,-1],[1,0],[1,0],[-1,-1],[-2,0],[-1,1],[1,0],[-2,1],[1,0]],[[7270,8781],[1,0],[1,-1],[1,-1],[-3,0],[0,1],[-1,0],[-1,0],[1,1],[1,0]],[[7128,8803],[0,-1],[2,0],[-1,-1],[-2,0],[-1,1],[-1,-1],[-1,1],[2,0],[2,1]],[[7115,9131],[-1,-1],[-2,1],[0,1],[-1,1],[1,0],[1,0],[1,-1],[1,-1]],[[7128,8841],[-1,-1],[-2,1],[1,2],[2,-1],[0,-1]],[[7130,8827],[2,-1],[-3,0],[-2,0],[-1,1],[1,0],[2,1],[1,-1]],[[7138,8832],[-1,-1],[-2,-1],[-2,1],[1,1],[0,-1],[1,0],[3,1]],[[7152,9146],[-1,-1],[-1,1],[0,1],[2,1],[0,-1],[0,-1]],[[7273,8782],[-3,0],[0,1],[1,1],[1,-1],[1,-1]],[[7104,8845],[-1,-1],[-1,1],[0,1],[-1,0],[1,1],[2,0],[0,-1],[-1,0],[0,-1],[1,0]],[[7166,8806],[-1,0],[-1,0],[1,2],[2,0],[0,-1],[-1,-1]],[[7107,9147],[0,-1],[1,-2],[-1,0],[-1,2],[-2,0],[0,1],[1,0],[1,0],[1,0]],[[7378,8801],[-2,-1],[-2,1],[3,1],[1,0],[0,-1]],[[7095,8880],[1,-1],[-1,0],[1,-1],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[2,1]],[[7121,9124],[-1,0],[-2,1],[1,1],[1,0],[1,-1],[0,-1]],[[7410,9375],[-1,-1],[-2,1],[0,1],[1,1],[1,-1],[1,-1]],[[7104,8836],[-2,-1],[-1,1],[2,0],[0,1],[1,1],[1,0],[-1,-1],[1,0],[-1,-1]],[[7010,8813],[-1,0],[-1,1],[1,0],[0,1],[1,0],[1,0],[-1,-2]],[[7118,8851],[0,-3],[-1,1],[-1,1],[0,1],[1,0],[1,0]],[[7404,9396],[-2,1],[0,1],[2,1],[1,-1],[-1,0],[0,-1],[1,-1],[-1,0]],[[7076,8837],[-3,0],[-1,1],[1,0],[1,0],[1,0],[2,1],[0,-1],[-1,-1]],[[7241,8824],[-1,-1],[-1,0],[1,1],[0,1],[2,1],[-1,-2]],[[7115,8803],[-2,-1],[-1,1],[-1,-1],[-1,1],[1,0],[2,1],[0,-1],[1,0],[1,0]],[[7110,8920],[-2,0],[-2,2],[3,-1],[1,0],[0,-1]],[[7138,8818],[-2,-1],[-1,0],[0,2],[2,0],[1,0],[0,-1]],[[7157,8805],[-3,0],[0,1],[3,1],[1,0],[0,-1],[-2,0],[1,-1]],[[7020,8797],[1,-1],[0,-1],[-2,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[2,0]],[[7396,9373],[-2,-1],[1,0],[-1,-1],[-1,0],[-1,1],[0,1],[3,0],[1,0]],[[7134,8802],[-1,0],[-2,0],[0,1],[2,0],[0,1],[1,0],[1,-1],[-1,-1]],[[7054,8833],[0,-1],[-2,1],[-1,2],[1,0],[1,0],[1,-2]],[[7386,8804],[-3,-2],[-2,1],[2,1],[3,0]],[[7487,8815],[-1,0],[2,-1],[-2,0],[0,1],[-1,0],[-2,0],[0,1],[3,0],[-1,-1],[2,0]],[[7369,9408],[-2,-2],[0,3],[1,0],[1,0],[0,-1]],[[7050,8815],[-1,0],[-1,0],[0,2],[1,1],[1,0],[-1,0],[0,-1],[1,-1],[0,-1]],[[7114,8846],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,-1],[-1,-1]],[[7099,8808],[-2,-1],[-1,0],[0,2],[1,0],[1,0],[1,-1]],[[7211,9203],[-1,-1],[-1,1],[0,1],[1,1],[1,-1],[0,-1]],[[7038,8800],[-1,0],[-1,1],[0,1],[1,0],[1,0],[0,-2]],[[7112,8831],[0,-1],[-1,0],[0,2],[0,1],[1,0],[0,-1],[0,-1]],[[7259,9217],[0,-1],[-2,0],[-2,1],[0,1],[2,0],[0,-1],[2,0]],[[7113,8937],[2,-1],[-5,0],[1,1],[1,0],[1,0]],[[7221,9208],[-1,0],[-1,0],[-1,1],[1,1],[2,-1],[0,-1]],[[7100,8851],[-1,0],[-3,2],[1,0],[1,0],[2,-2]],[[7267,8778],[-1,0],[-2,0],[-1,1],[1,0],[1,0],[3,0],[-1,-1]],[[7160,8836],[1,-1],[-2,-1],[1,0],[1,1],[-1,-1],[-1,0],[-1,1],[2,1]],[[6991,8837],[-1,-1],[-2,2],[1,1],[1,-1],[1,-1]],[[7104,9122],[-1,-1],[1,0],[1,-1],[-1,0],[-3,1],[2,1],[1,0]],[[7130,8831],[1,-1],[-2,0],[-1,1],[-2,0],[0,1],[1,0],[1,0],[0,-1],[2,0]],[[7151,8810],[-1,-2],[-2,0],[0,1],[3,1]],[[7554,8835],[-1,0],[0,1],[0,1],[1,1],[2,-1],[-3,-1],[0,-1],[1,0]],[[7466,8814],[-2,0],[-1,0],[-1,0],[1,1],[1,0],[0,1],[1,-1],[1,-1]],[[7203,9197],[-1,-1],[0,3],[1,0],[0,-2]],[[7074,8851],[1,0],[2,0],[0,-1],[-1,0],[1,0],[1,0],[-2,-1],[-1,0],[0,1],[-1,1]],[[7453,8817],[0,-1],[-2,1],[1,1],[1,0],[0,-1]],[[7193,9171],[-1,1],[0,1],[0,2],[1,-2],[0,-2]],[[7017,8808],[-2,0],[-1,0],[2,2],[1,0],[0,-1],[0,-1]],[[7374,8796],[-1,0],[-2,0],[1,1],[1,1],[0,-1],[1,0],[0,-1]],[[6994,8837],[-1,-1],[-1,1],[-1,0],[0,1],[1,0],[1,0],[1,-1]],[[7189,8775],[1,0],[-1,-1],[-2,1],[1,1],[1,0],[0,-1]],[[7502,8831],[-1,0],[-2,1],[0,1],[0,1],[1,0],[2,-1],[0,-2]],[[7184,8807],[-2,-2],[-1,0],[0,1],[3,1]],[[7017,8800],[0,-2],[-2,0],[1,2],[1,0]],[[7155,8822],[-1,-1],[-1,1],[1,1],[1,0],[1,0],[1,0],[-1,-1],[-1,0]],[[7021,8829],[0,-1],[1,0],[1,0],[-1,-1],[-2,0],[0,1],[1,1]],[[7116,8816],[1,0],[-4,0],[1,1],[1,0],[-1,1],[2,0],[-1,-1],[1,-1]],[[7454,8814],[-1,-1],[0,-1],[1,0],[-1,-1],[-1,1],[1,0],[0,1],[-1,0],[-1,1],[1,0],[2,0]],[[6962,8827],[0,-1],[-1,1],[-1,1],[1,1],[1,0],[0,-2]],[[7125,8773],[0,-1],[-1,0],[-1,0],[-3,-1],[-1,0],[3,2],[2,-1],[1,1]],[[7092,8857],[-1,-1],[-1,2],[0,1],[1,0],[1,-1],[0,-1]],[[7052,8823],[0,-1],[-3,1],[0,-1],[1,0],[-1,-1],[0,3],[1,0],[2,-1]],[[7061,8828],[-1,1],[0,2],[1,1],[0,-1],[0,-1],[0,-2]],[[7134,8851],[0,-1],[-1,1],[0,2],[1,0],[0,-2]],[[7212,9200],[-1,0],[-1,2],[0,1],[1,0],[1,-1],[0,-1],[0,-1]],[[7204,8817],[-2,0],[0,1],[2,1],[0,-1],[0,-1]],[[7429,8815],[-2,0],[-1,0],[1,1],[2,0],[0,-1]],[[7175,8818],[-1,-1],[-1,0],[-2,0],[-1,0],[1,1],[1,0],[3,0]],[[6963,8830],[-2,1],[0,1],[1,0],[1,-2]],[[7060,8816],[-1,1],[-1,1],[1,0],[1,1],[0,-1],[0,-1],[0,-1]],[[6966,8830],[0,-1],[-1,0],[0,1],[1,1],[2,0],[-1,-1],[-1,0]],[[7608,8844],[-1,-1],[-2,1],[-1,0],[2,1],[2,-1]],[[7026,8824],[-4,-1],[1,1],[2,1],[1,-1]],[[7112,8804],[-1,0],[2,2],[1,0],[-2,-2]],[[7152,8813],[-2,-1],[-2,1],[4,1],[0,-1]],[[7116,8980],[-1,0],[-1,1],[0,1],[1,-1],[1,0],[0,-1]],[[7112,8806],[-1,-1],[-1,0],[-1,1],[1,0],[1,1],[1,-1]],[[7221,9214],[0,-1],[-3,1],[1,1],[1,0],[1,-1]],[[7113,8809],[-2,0],[1,1],[1,0],[1,-1],[-1,0]],[[7093,8812],[-1,-1],[-3,1],[2,1],[2,-1]],[[7413,9396],[-1,0],[-2,1],[2,1],[1,-2]],[[7324,8792],[-2,0],[-1,1],[2,0],[1,0],[0,-1]],[[7114,8940],[-1,0],[-2,1],[0,1],[-2,1],[1,0],[2,-2],[2,0],[0,-1]],[[7138,8782],[-1,-1],[-1,1],[1,1],[1,0],[0,-1]],[[7190,8788],[0,2],[1,1],[1,-1],[-2,-2]],[[7153,8814],[1,0],[2,0],[-1,-1],[-2,1],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[1,0]],[[7099,8868],[-2,-1],[-1,0],[-1,1],[1,0],[2,1],[1,-1]],[[7142,8823],[0,-1],[2,1],[0,-1],[-1,-1],[-1,1],[-2,1],[1,0],[1,0]],[[7073,8868],[-1,1],[2,1],[0,-1],[-1,-1]],[[7013,8809],[1,-1],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[2,0]],[[7182,8772],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[1,0],[-1,-1],[0,1],[1,1],[-1,1]],[[7097,8874],[-1,-1],[-1,1],[-1,0],[1,0],[2,0]],[[6962,8810],[-1,-2],[-1,1],[0,1],[0,1],[2,0],[0,-1]],[[7123,9143],[-1,-1],[-1,1],[0,1],[1,0],[1,0],[0,-1]],[[7300,8784],[0,-1],[-2,0],[0,1],[-1,0],[3,0]],[[7086,8852],[-1,-1],[0,1],[0,1],[1,1],[1,-2],[-1,0]],[[6998,8832],[-1,-1],[0,1],[-1,0],[2,1],[1,0],[0,-1],[-1,0]],[[7031,8821],[-1,0],[-1,1],[0,1],[1,0],[1,-2]],[[6987,8833],[0,-1],[-1,0],[-1,1],[0,1],[2,0],[-1,-1],[1,0]],[[6968,8830],[0,-1],[1,1],[-1,-2],[-1,1],[-1,0],[2,1]],[[7040,8835],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[-1,1],[1,0],[1,-1]],[[7098,8826],[-1,-1],[-2,1],[1,1],[2,-1]],[[7421,9343],[-1,-1],[-1,0],[2,1],[2,0],[1,0],[-3,0]],[[7154,8816],[-2,0],[-1,1],[1,1],[1,-1],[1,-1]],[[7502,8828],[0,-1],[-1,1],[0,1],[1,1],[0,-1],[0,-1]],[[7115,9131],[1,-1],[0,1],[1,0],[0,-2],[-1,0],[-1,1],[0,1],[1,0],[-1,0]],[[7179,8832],[-1,0],[-1,0],[-1,0],[3,1],[0,-1]],[[7093,9114],[-1,-1],[-2,1],[0,1],[1,0],[2,-1]],[[7130,8780],[-1,0],[-1,1],[1,1],[1,-1],[0,-1]],[[7068,8843],[-1,-1],[-1,1],[0,1],[2,-1]],[[7210,8792],[-3,-1],[1,1],[2,0]],[[7189,8772],[1,-1],[-2,-1],[-1,1],[1,1],[1,-1],[0,1]],[[7162,8811],[2,-1],[1,1],[-2,-2],[-1,0],[-1,2],[1,0]],[[7592,8839],[-3,1],[0,1],[3,-1],[0,-1]],[[7097,9019],[-1,0],[0,3],[0,1],[0,1],[0,-2],[1,-2],[0,-1]],[[7337,9416],[-1,0],[-1,0],[1,1],[1,0],[0,-1]],[[7140,9160],[-2,-2],[-1,1],[1,2],[1,0],[1,-1]],[[7492,8820],[-2,0],[-1,0],[1,0],[1,1],[1,0],[0,-1]],[[7187,8781],[-1,0],[-1,0],[2,2],[1,-1],[-1,-1]],[[7084,8827],[2,-1],[-1,-2],[-1,1],[1,0],[0,1],[-1,0],[0,1]],[[7175,9143],[-2,2],[2,0],[1,-1],[-1,-1]],[[7086,8829],[-1,0],[0,-1],[-1,-1],[-1,1],[0,1],[1,0],[1,0],[0,1],[1,-1]],[[7055,9126],[-1,0],[0,2],[2,0],[0,-1],[-1,-1]],[[7013,8787],[-1,0],[-1,1],[1,1],[0,-1],[1,0],[0,-1]],[[7109,8922],[2,-1],[-2,0],[-2,1],[1,1],[2,0],[-1,-1]],[[7516,8828],[2,0],[-1,-1],[-2,1],[-1,1],[0,1],[1,-1],[1,-1]],[[6990,8833],[1,0],[1,0],[0,-1],[-2,0],[-1,1],[1,0]],[[7186,8792],[-1,0],[0,1],[0,1],[1,0],[1,-1],[-1,-1]],[[7222,9211],[1,-1],[-2,0],[-1,1],[1,0],[1,0]],[[7077,8823],[0,-1],[-3,2],[2,0],[1,-1]],[[6965,8834],[-1,0],[-1,2],[1,1],[1,1],[-1,-2],[0,-1],[1,-1]],[[7240,9205],[0,-1],[-2,1],[-1,0],[2,1],[1,-1]],[[7079,8830],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[6986,8795],[-2,0],[1,1],[0,1],[1,-1],[0,-1]],[[7195,8784],[1,-2],[-1,0],[0,1],[-1,0],[1,2],[0,-1]],[[7187,8784],[-1,-2],[-1,1],[1,1],[1,0]],[[7528,8828],[-1,0],[0,1],[1,1],[1,0],[0,-1],[-1,-1]],[[7426,8815],[1,-1],[2,1],[-1,-1],[-1,-1],[-1,0],[-1,2],[1,0]],[[7088,9043],[-1,0],[1,2],[1,1],[0,-1],[-1,-2]],[[7218,8791],[-1,0],[-1,0],[0,1],[1,0],[1,-1]],[[7399,9399],[-1,-1],[-1,0],[1,2],[1,0],[0,-1]],[[7097,8821],[-2,1],[2,1],[1,-1],[-1,-1]],[[6964,8826],[0,-1],[-1,0],[-1,0],[0,1],[2,1],[0,-1]],[[7385,8805],[0,-1],[-1,0],[-2,1],[1,0],[1,0],[1,0]],[[7095,8873],[1,0],[-2,0],[0,-1],[-1,1],[0,1],[1,0],[1,-1]],[[7105,9134],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0]],[[7007,8840],[-1,-1],[-1,1],[2,1],[0,-1]],[[7224,8796],[0,-2],[-1,1],[0,1],[1,0]],[[7611,8834],[-1,1],[1,1],[1,0],[0,-1],[-1,-1]],[[7135,8782],[-2,-1],[1,1],[-3,-1],[1,1],[2,0],[1,0]],[[7419,9345],[-2,-1],[-1,1],[1,0],[1,0],[0,1],[1,0],[0,-1]],[[7013,8819],[0,-1],[-2,0],[1,1],[1,1],[0,-1]],[[7111,9114],[0,-1],[-3,2],[1,0],[2,0],[0,-1]],[[7092,8824],[-2,-1],[0,2],[1,0],[1,0],[0,-1]],[[7148,8806],[-2,-1],[-2,0],[2,1],[1,0],[1,0]],[[7558,8840],[-2,0],[-1,2],[1,-1],[2,-1]],[[7288,8772],[0,-1],[-2,1],[1,1],[2,0],[-1,-1]],[[7132,9142],[1,0],[0,-1],[-2,0],[0,1],[1,0]],[[7164,9161],[-2,0],[0,1],[2,1],[0,-2]],[[7118,8818],[-1,-1],[-1,0],[0,1],[1,0],[1,0]],[[6986,8831],[-1,0],[-2,1],[1,0],[1,1],[1,-1],[0,-1]],[[7447,8810],[0,-1],[-3,1],[3,1],[1,0],[-1,-1]],[[7039,8809],[-4,-1],[3,1],[1,0]],[[7445,8808],[-2,0],[0,1],[2,0],[-1,0],[2,-1],[-1,0]],[[7575,8841],[-1,0],[-1,2],[1,0],[1,-2]],[[7107,8838],[-1,-1],[-1,0],[1,1],[1,0]],[[7077,8820],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,-1]],[[7189,8779],[-2,0],[0,1],[0,1],[0,-1],[2,0],[0,-1]],[[7141,9146],[-1,0],[-1,1],[1,0],[-1,1],[2,-1],[0,-1]],[[7305,8787],[-1,0],[-2,0],[1,1],[1,0],[1,-1]],[[7576,8835],[-1,0],[-1,0],[0,2],[1,-1],[1,-1]],[[7157,9144],[-2,0],[0,1],[2,0],[0,-1]],[[7115,8811],[-1,-1],[-2,0],[1,1],[2,0]],[[7146,9146],[-1,1],[2,1],[0,-2],[-1,0]],[[7133,8823],[0,-1],[-2,1],[1,1],[1,-1]],[[7546,8831],[-2,-1],[0,1],[3,1],[-1,-1]],[[7407,9396],[0,-1],[-2,2],[2,-1]],[[7155,8833],[-3,0],[3,1],[0,-1]],[[7057,8798],[-2,0],[-1,0],[2,1],[1,0],[0,-1]],[[7343,8792],[-2,-1],[-1,0],[0,1],[3,1],[0,-1]],[[7091,9104],[-1,1],[1,1],[1,-1],[-1,-1]],[[7380,8802],[-2,-1],[1,2],[1,0],[1,-1],[-1,0]],[[7022,8810],[-2,-1],[2,2],[1,0],[-1,-1]],[[7224,9214],[0,-1],[-2,1],[2,1],[0,-1]],[[7480,8818],[-1,-1],[-1,2],[1,0],[1,0],[0,-1]],[[7261,8774],[-2,-1],[-1,1],[3,1],[0,-1]],[[7174,8777],[-4,0],[1,1],[2,0],[1,-1]],[[7099,8836],[3,-1],[-1,-1],[-1,0],[0,1],[-2,-1],[1,2]],[[7222,9212],[-2,0],[-1,1],[1,0],[1,0],[1,-1]],[[7189,8803],[-1,0],[-1,1],[1,1],[1,-2]],[[7033,8798],[-2,0],[-1,1],[3,0],[0,-1]],[[7067,8828],[-2,1],[0,1],[2,-1],[0,-1]],[[7175,8805],[-1,0],[-1,0],[3,1],[0,-1],[-1,0]],[[7097,8812],[-1,0],[-3,1],[1,-1],[3,0]],[[7014,8800],[-1,-1],[-1,2],[1,0],[1,-1]],[[7087,8829],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,-2]],[[7129,8845],[-1,0],[0,1],[0,1],[1,0],[1,-1],[-1,-1]],[[6956,8808],[-1,-1],[0,1],[-1,0],[0,1],[1,0],[1,-1]],[[7310,8784],[-2,0],[1,1],[1,0],[0,-1]],[[7124,8843],[-1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0]],[[7092,8818],[-2,-2],[-1,1],[1,0],[2,1]],[[7376,8798],[-2,-1],[-1,0],[1,1],[2,0]],[[7079,8805],[-2,0],[1,2],[1,-1],[0,-1]],[[6991,8792],[0,-1],[-1,1],[0,1],[1,0],[0,-1]],[[7086,8879],[0,-1],[-2,1],[0,1],[1,0],[1,-1]],[[7159,9144],[0,-1],[-2,1],[1,0],[1,0]],[[7074,8847],[-1,0],[-1,1],[0,1],[1,0],[1,-2]],[[7160,9151],[0,-1],[-1,0],[0,1],[1,1],[0,-1]],[[7133,8804],[-1,0],[-3,0],[1,1],[3,-1]],[[7114,8823],[-2,-1],[-2,0],[1,1],[2,0],[1,0]],[[7074,8882],[1,-1],[-3,1],[0,1],[2,-1]],[[7209,9200],[1,-1],[-1,0],[-1,1],[0,1],[1,-1]],[[7113,8931],[1,-1],[-3,1],[2,0]],[[7409,8806],[1,0],[0,-1],[-3,0],[0,1],[2,0]],[[7102,8950],[-1,0],[-1,0],[1,1],[1,0],[0,-1]],[[7409,8811],[0,-1],[-2,1],[1,1],[1,-1]],[[7065,8831],[0,-1],[-1,1],[0,1],[1,-1]],[[7130,8834],[-1,0],[-1,1],[0,1],[1,0],[1,-2]],[[7114,9130],[2,-1],[-2,0],[0,1]],[[7110,8818],[-2,0],[1,1],[1,0],[1,0],[-1,-1]],[[7109,8938],[-1,0],[-1,1],[1,1],[1,-1],[0,-1]],[[7389,9324],[-2,0],[1,1],[1,0],[0,-1]],[[7146,8827],[4,-1],[-6,0],[1,1],[1,0]],[[7327,8793],[-1,-1],[-2,0],[1,1],[1,0],[1,0]],[[7136,8781],[-2,-1],[1,2],[1,0],[1,-1],[-1,0]],[[7465,8830],[-1,0],[-1,1],[2,0],[0,-1]],[[7153,8806],[-2,0],[-1,0],[1,1],[1,0],[1,-1]],[[7013,8809],[-1,0],[-1,1],[1,1],[1,-2]],[[7126,8802],[-1,0],[-4,0],[6,1],[-1,-1]],[[7101,8869],[-1,0],[-1,0],[0,1],[1,0],[1,-1]],[[7122,8835],[-1,0],[-1,1],[1,0],[1,-1]],[[7489,8818],[-2,-1],[-2,0],[4,1]],[[7135,8853],[-1,0],[0,1],[1,0],[1,0],[-1,0],[0,-1]],[[7225,8798],[-1,-1],[-2,1],[2,1],[1,-1]],[[7079,9079],[-1,-1],[-1,1],[2,1],[0,-1]],[[7054,8841],[0,-1],[-1,0],[-1,1],[1,0],[1,0]],[[7081,9144],[-1,-1],[-2,1],[1,0],[2,0]],[[7122,8827],[0,-1],[-2,0],[0,1],[1,1],[1,-1]],[[7418,8808],[1,0],[-3,0],[1,0],[1,0]],[[7104,8767],[-1,-1],[-1,1],[1,1],[1,-1]],[[7202,8780],[-1,0],[0,1],[1,0],[1,0],[-1,-1]],[[7589,8822],[-2,-1],[0,1],[1,0],[1,1],[0,-1]],[[7113,9128],[-1,0],[-1,0],[0,1],[2,-1]],[[7622,8837],[-1,0],[0,1],[1,0],[0,-1]],[[7138,8788],[0,-1],[-1,0],[0,1],[1,1],[0,-1]],[[7100,8863],[1,-1],[-1,0],[-1,1],[0,1],[1,-1]],[[7132,8819],[-1,-1],[-3,1],[4,0]],[[7109,8991],[1,-1],[1,0],[-2,0],[-1,0],[1,1]],[[7104,8799],[-1,-1],[-2,1],[1,1],[2,-1]],[[7302,8785],[-1,-1],[-1,2],[4,0],[-2,-1],[-1,0],[1,0]],[[7211,9195],[-1,1],[1,0],[0,-1]],[[7063,8848],[-1,0],[-1,0],[-1,0],[2,0],[1,1],[0,-1]],[[7414,8802],[-3,-1],[0,1],[3,0]],[[7011,8837],[-1,-1],[-1,0],[1,2],[1,-1]],[[7314,8783],[1,-1],[-3,2],[1,0],[1,-1]],[[7031,8807],[-1,-1],[-1,1],[1,1],[1,-1]],[[7079,9103],[-1,1],[0,1],[0,-1],[1,0],[0,-1]],[[7407,8806],[-2,1],[1,0],[1,0],[0,-1]],[[7189,8788],[0,-1],[-1,1],[0,1],[1,-1]],[[7238,8781],[-3,0],[1,0],[1,1],[1,-1]],[[7177,9151],[1,-1],[-1,0],[0,-1],[0,-1],[-1,1],[0,2],[1,0]],[[6983,8797],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[7037,8799],[1,0],[-2,0],[-1,1],[1,0],[1,0],[0,-1]],[[7306,8788],[-1,0],[-2,0],[0,1],[1,0],[2,-1]],[[7509,8832],[-1,1],[2,0],[-1,0],[0,-1]],[[7019,8812],[-1,-1],[-1,0],[0,1],[1,0],[1,0]],[[7107,8857],[1,0],[-2,0],[-1,1],[2,0],[0,-1]],[[7098,8824],[-1,-1],[-2,1],[2,0],[1,0]],[[7285,9231],[-2,0],[0,1],[1,0],[1,-1]],[[7169,8807],[-1,-1],[0,1],[4,1],[-3,-1]],[[7042,8794],[-2,0],[0,1],[1,0],[1,-1]],[[7432,8816],[1,-1],[-1,0],[-1,2],[1,-1]],[[7543,8830],[-1,-1],[0,2],[1,-1]],[[7100,8827],[-1,0],[-1,0],[0,1],[1,0],[1,-1]],[[7226,9208],[-1,0],[-2,1],[1,0],[2,-1]],[[7079,9153],[-1,0],[2,1],[-1,-1]],[[7435,8815],[-1,0],[-1,0],[0,1],[1,0],[1,-1]],[[7014,8816],[-1,0],[-1,1],[1,0],[1,0],[0,-1]],[[7266,8777],[0,-1],[-1,0],[-1,1],[2,0]],[[7086,8832],[0,-1],[-1,0],[0,1],[1,1],[0,-1]],[[7104,8943],[-1,-1],[-2,2],[1,0],[2,-1]],[[7101,9125],[-1,0],[-1,0],[1,1],[0,-1],[2,0],[-1,0]],[[7088,8827],[-2,-1],[0,1],[1,1],[1,-1]],[[7361,9298],[-1,0],[-1,0],[2,1],[1,-1],[-1,0]],[[7085,8884],[-1,0],[1,1],[1,0],[-1,-1]],[[7115,8942],[1,-2],[-1,0],[-1,1],[1,1]],[[7112,9127],[0,-1],[-2,1],[2,0],[-1,0],[0,1],[1,-1]],[[7135,8802],[-1,-1],[-3,1],[4,0]],[[7336,8791],[-1,0],[-1,0],[1,1],[1,0],[0,-1]],[[7200,8792],[-1,-1],[-1,0],[1,1],[1,0]],[[7164,8805],[-1,0],[-1,1],[1,0],[1,0],[0,-1]],[[7622,8843],[0,-1],[-1,1],[0,1],[1,-1]],[[7013,8836],[-1,-1],[-1,0],[1,1],[1,0]],[[7551,8833],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,-1],[0,-1]],[[7236,8766],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,-1]],[[7615,8838],[0,-1],[-1,0],[-1,0],[1,1],[1,0]],[[7595,8840],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[7183,8776],[1,0],[0,-1],[-1,0],[-1,1],[1,0],[-1,0],[1,0]],[[7109,8853],[0,-1],[-2,1],[1,0],[1,0]],[[7088,8833],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[7415,8811],[-1,-1],[-1,1],[2,0]],[[7097,9015],[-1,0],[0,1],[0,1],[1,-2]],[[7100,9116],[0,-1],[-2,1],[1,0],[1,0]],[[7057,9121],[1,0],[-2,0],[0,1],[1,0],[0,-1]],[[7039,8796],[-1,0],[-1,1],[2,-1]],[[6957,8824],[-1,-1],[0,2],[1,0],[0,-1]],[[7024,8827],[0,-1],[-1,0],[0,1],[1,1],[0,-1]],[[7208,8780],[-3,0],[0,1],[2,0],[-2,-1],[3,0]],[[7164,8807],[0,-1],[-1,0],[-1,1],[1,0],[1,0]],[[7438,8809],[-2,0],[-1,0],[1,1],[2,-1]],[[7095,8834],[-2,-1],[0,1],[1,0],[1,0]],[[7128,8845],[0,-1],[-2,1],[1,0],[1,0]],[[7298,8783],[-2,0],[0,-1],[0,1],[1,0],[1,0]],[[7101,8877],[1,-1],[-2,0],[1,1],[1,0],[-1,0]],[[7245,8781],[1,-2],[-1,0],[0,1],[-1,0],[1,1]],[[7168,9165],[-1,0],[-1,0],[1,1],[1,-1]],[[6933,8813],[0,-1],[-1,0],[-1,1],[2,0]],[[7199,8817],[-2,0],[1,0],[1,0]],[[7188,8816],[-1,0],[2,1],[0,-1],[-1,0]],[[7287,8782],[-2,-1],[-1,0],[0,1],[1,0],[2,0]],[[7140,8801],[-2,0],[-1,1],[1,0],[2,-1]],[[7320,8784],[-2,-1],[0,1],[2,0]],[[7083,9118],[-1,-2],[-1,1],[2,1]],[[7179,9159],[0,-1],[-3,2],[1,0],[2,-1]],[[7310,8782],[-1,0],[-2,1],[2,0],[1,-1]],[[7078,8832],[-1,-1],[0,1],[0,1],[1,0],[0,-1]],[[7435,9331],[0,-1],[-4,1],[1,0],[3,0]],[[7238,8779],[-1,0],[-1,0],[0,1],[2,-1]],[[7133,8813],[-1,0],[0,1],[1,0],[1,0],[-1,-1]],[[7144,8831],[-2,0],[-2,0],[1,0],[3,0]],[[7092,8850],[0,-1],[-1,1],[1,1],[0,-1]],[[7102,8810],[0,-1],[-2,1],[2,0]],[[7122,8786],[2,-1],[-3,0],[0,1],[1,0]],[[7058,8795],[-1,-1],[-1,1],[1,1],[0,-1],[1,0]],[[7169,8827],[-4,0],[1,0],[3,0]],[[7322,8790],[1,0],[-3,1],[1,0],[1,0],[0,-1]],[[7095,8836],[-2,-1],[-1,1],[1,0],[2,0]],[[7132,8835],[-1,0],[1,1],[1,0],[-1,-1]],[[7137,8794],[-1,0],[-1,1],[1,0],[1,-1]],[[7157,9151],[-1,0],[-1,0],[1,1],[1,0],[0,-1]],[[7486,8817],[-4,-1],[3,1],[1,0]],[[7168,9155],[-2,0],[0,1],[1,0],[1,-1]],[[7011,8830],[0,-1],[-2,0],[1,1],[1,0]],[[7121,8966],[0,-1],[-1,1],[-2,0],[1,1],[2,-1]],[[7118,8801],[-2,0],[1,1],[1,0],[0,-1]],[[7582,8837],[-1,0],[0,1],[1,-1]],[[7120,8801],[-2,0],[1,0],[1,1],[0,-1]],[[7081,9155],[-2,-1],[0,1],[1,0],[1,0]],[[7426,9361],[0,-1],[-1,1],[0,1],[1,-1]],[[6944,8821],[-1,0],[-1,1],[1,0],[1,-1]],[[7132,8852],[-1,0],[1,1],[0,-1]],[[7129,9159],[-1,0],[0,1],[1,-1]],[[7109,8828],[-1,-1],[-3,1],[2,0],[2,0]],[[7134,8827],[-4,0],[1,0],[3,0]],[[7059,8835],[-1,0],[0,1],[1,0],[0,-1]],[[7204,8785],[-2,0],[1,1],[2,0],[-1,0],[0,-1]],[[7148,8826],[-1,-1],[-3,1],[1,0],[3,0]],[[7103,9112],[-1,-1],[0,1],[1,0]],[[7360,8793],[-1,0],[-1,0],[1,1],[1,-1]],[[7171,8805],[0,-1],[-1,1],[3,0],[-2,0]],[[7131,9147],[1,-2],[-3,2],[1,0],[1,0]],[[7119,8838],[1,-1],[-2,1],[-1,1],[1,0],[1,-1]],[[7140,8842],[0,-1],[-1,0],[1,1]],[[7138,8803],[-2,0],[-1,0],[1,1],[2,-1]],[[7190,8781],[-2,0],[-1,0],[1,1],[1,0],[1,-1]],[[7115,8850],[1,1],[-1,0],[1,1],[1,-1],[-1,0],[-1,-1]],[[7017,8834],[-1,0],[0,1],[1,0],[0,-1]],[[7115,8852],[-2,0],[0,1],[1,0],[1,-1]],[[7491,8840],[-2,0],[1,1],[1,-1]],[[7582,8836],[1,-1],[-1,0],[-1,1],[1,0]],[[7010,8819],[-1,0],[0,1],[1,-1]],[[7016,8794],[0,-1],[-2,0],[1,1],[1,0]],[[7072,8831],[-2,0],[0,1],[1,0],[1,-1]],[[7427,9360],[-2,-1],[-1,0],[1,1],[2,0]],[[7102,8844],[1,-1],[-1,0],[-1,1],[1,0]],[[7150,8804],[-1,-1],[-1,1],[1,0],[1,0]],[[6930,8814],[2,0],[-1,-1],[-1,1],[0,-1],[0,1]],[[7263,8779],[-1,0],[-1,0],[1,1],[1,0],[0,-1]],[[7150,8816],[-1,-1],[-1,1],[1,0],[1,0]],[[7240,8802],[-1,0],[0,1],[2,0],[-1,-1]],[[7067,8779],[-2,0],[1,0],[1,0]],[[7285,9231],[1,-1],[-1,2],[0,1],[1,-1],[-1,0],[0,-1]],[[7103,8861],[-2,1],[0,1],[1,-1],[1,-1]],[[7129,8821],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,1]],[[7115,8851],[-2,1],[1,0],[1,-1]],[[7242,8780],[-1,0],[0,1],[1,0],[0,-1]],[[7095,8880],[-2,-1],[1,1],[1,1],[0,-1]],[[7048,8817],[-1,1],[0,1],[1,0],[-1,-1],[1,-1]],[[6975,8821],[-1,-2],[0,1],[1,2],[1,0],[-1,-1]],[[7111,9123],[-1,0],[-1,1],[1,0],[0,1],[0,-1],[1,-1]],[[7087,8893],[-1,0],[-1,1],[1,0],[1,-1]],[[7155,8815],[-1,-1],[-2,1],[2,0],[1,0]],[[7491,8841],[-2,1],[1,0],[1,-1]],[[7098,9039],[-1,0],[-1,0],[1,1],[1,-1]],[[7483,8813],[-3,-1],[1,1],[2,0]],[[7094,9115],[-1,0],[-1,0],[0,1],[2,-1]],[[7191,9169],[-1,0],[0,1],[1,0],[0,-1]],[[7091,8850],[-1,-1],[0,1],[1,0]],[[7522,8830],[-1,0],[-1,1],[1,0],[1,-1]],[[7602,8821],[0,-1],[-1,1],[0,1],[1,-1]],[[7081,8845],[-1,0],[-1,0],[1,0],[1,0]],[[7128,8840],[-1,-1],[0,1],[1,0]],[[7169,8832],[-4,0],[3,1],[1,-1]],[[7099,8821],[-1,0],[0,1],[1,-1]],[[7104,8875],[1,-2],[-2,1],[1,1]],[[7286,8779],[-1,1],[-2,0],[2,0],[1,0],[0,-1]],[[7085,8883],[0,-1],[-1,1],[1,0]],[[7312,8782],[-2,0],[1,1],[1,0],[0,-1]],[[7192,8806],[-1,-1],[-1,0],[1,1],[1,0]],[[7613,8833],[-1,-1],[-1,1],[1,0],[1,0]],[[7351,8797],[-1,-1],[-1,0],[1,1],[1,0]],[[7151,8846],[-1,0],[-1,1],[1,0],[1,0],[0,-1]],[[7332,8792],[-1,0],[0,1],[1,0],[1,1],[0,-1],[-1,-1]],[[7072,8817],[-1,0],[-1,1],[1,1],[0,-1],[1,-1]],[[7114,9127],[-1,0],[0,1],[1,0],[0,-1]],[[7108,9111],[-1,-1],[-1,0],[0,1],[2,0]],[[7071,8833],[-1,0],[-1,1],[1,0],[1,-1]],[[7098,9018],[0,-1],[-1,0],[1,2],[-1,0],[1,1],[0,-2]],[[7085,9065],[-1,1],[0,1],[1,-1],[0,-1]],[[7088,8839],[-1,0],[-1,0],[1,0],[1,0]],[[7072,8839],[-1,0],[0,1],[1,0],[0,-1]],[[7142,8825],[-1,0],[-2,1],[3,-1]],[[7164,8776],[-1,-1],[-2,1],[3,0]],[[7088,8898],[-2,0],[1,0],[1,0]],[[7050,8809],[-1,0],[-1,1],[1,-1],[0,1],[1,-1]],[[7115,8815],[0,-1],[-1,1],[1,0]],[[7208,8784],[-1,0],[-1,1],[2,-1]],[[7117,9128],[-1,-1],[-1,0],[0,1],[1,0],[1,0]],[[7064,8830],[0,-1],[-1,0],[1,2],[0,-1]],[[7049,8798],[-1,0],[-1,1],[2,0],[0,-1]],[[7064,8841],[-1,0],[0,1],[1,0],[0,-1]],[[7355,8786],[-1,-1],[0,1],[1,0]],[[7318,8785],[-1,-1],[-1,1],[2,0]],[[7188,9179],[-1,-1],[-1,1],[1,0],[1,0]],[[7586,8835],[-1,0],[0,1],[0,1],[1,0],[0,-2]],[[7090,8892],[-1,0],[1,1],[0,-1]],[[7118,8967],[-1,-1],[0,1],[1,0]],[[6996,8837],[-1,-1],[-1,1],[2,0]],[[7637,8841],[0,-1],[-1,1],[1,0]],[[7230,9205],[-1,0],[-1,1],[1,0],[1,-1]],[[7192,8773],[-1,0],[-1,1],[2,-1]],[[7137,8778],[-1,0],[-1,0],[0,1],[1,0],[1,-1]],[[7094,9040],[-1,-1],[0,1],[2,1],[-1,-1]],[[7089,8882],[1,-2],[-2,1],[0,1],[1,0]],[[7014,8835],[-1,1],[1,0],[0,-1]],[[7020,8838],[-1,-1],[1,2],[1,0],[-1,-1]],[[7140,8784],[-1,0],[0,1],[1,0],[0,-1]],[[7287,8780],[0,-1],[-1,0],[1,1],[-1,0],[0,1],[1,-1]],[[7493,8838],[1,-1],[-2,1],[1,0]],[[7108,8868],[0,-1],[-2,1],[1,1],[1,-1]],[[6937,8818],[0,-1],[-1,0],[0,1],[1,0]],[[7114,8942],[-1,0],[-1,0],[1,1],[1,-1]],[[7052,8797],[-2,0],[0,1],[1,0],[1,-1]],[[7103,8999],[1,0],[-2,0],[1,1],[0,-1]],[[7366,9405],[-1,-1],[-1,1],[1,0],[1,0]],[[7080,9065],[0,-1],[-1,0],[1,1],[0,1],[0,-1]],[[7141,8821],[-1,-1],[-1,1],[2,0]],[[7112,9130],[-1,0],[0,1],[1,0],[0,-1]],[[7078,9074],[-1,-1],[-1,1],[1,1],[1,-1]],[[7113,8820],[-1,-1],[0,1],[1,0]],[[7570,8834],[0,-1],[-1,1],[0,1],[1,-1]],[[7436,9376],[-1,0],[-1,1],[1,0],[1,-1]],[[7366,8790],[-1,-1],[-1,0],[2,1]],[[7232,8780],[-1,-1],[-1,1],[1,1],[1,-1]],[[7102,8837],[-1,0],[0,1],[1,0],[0,-1]],[[7089,8846],[1,0],[1,0],[0,-1],[-3,1],[1,0]],[[7327,8790],[1,-1],[-1,0],[0,2],[0,-1]],[[7114,8921],[0,-1],[-2,1],[1,1],[1,-1]],[[7071,8861],[-1,-1],[0,1],[0,1],[1,-1]],[[7071,8830],[-1,0],[-1,1],[1,0],[1,-1]],[[7213,9196],[-1,-1],[-1,1],[1,0],[1,0]],[[7074,8829],[0,-1],[-1,1],[1,0]],[[7104,8840],[-2,0],[1,0],[1,0]],[[7131,8833],[-1,0],[-1,0],[1,1],[1,-1]],[[7390,8805],[-1,0],[1,1],[0,-1]],[[7560,8824],[-1,0],[0,1],[1,0],[0,-1]],[[6991,8815],[-1,-1],[-1,1],[2,0]],[[7152,8827],[-3,0],[0,1],[3,-1]],[[7128,8818],[-1,0],[-1,1],[1,0],[1,0],[0,-1]],[[7148,8805],[-2,0],[2,0],[-1,0],[0,1],[1,0],[0,-1]],[[7065,8779],[0,-1],[-2,0],[2,1]],[[7138,8828],[1,0],[-2,0],[1,0]],[[7120,8844],[-1,-1],[0,1],[1,0]],[[7581,8839],[0,-1],[-2,0],[1,1],[1,0]],[[7320,8785],[-1,0],[0,1],[1,0],[1,0],[-1,-1]],[[7124,8800],[-2,0],[-1,1],[1,0],[2,-1]],[[7093,8790],[-1,-1],[-1,1],[2,0]],[[7098,8877],[-1,-1],[0,1],[0,1],[0,-1],[1,0]],[[7046,9142],[-2,-1],[-1,0],[2,1],[1,0]],[[7060,9120],[-1,0],[-2,0],[2,1],[1,-1]],[[7226,8796],[0,-1],[-1,0],[1,1]],[[7298,8778],[-1,0],[1,1],[1,0],[-1,-1]],[[7285,9231],[1,-2],[-2,2],[1,0]],[[7065,8840],[-1,0],[-1,1],[2,0],[0,-1]],[[7114,8795],[-1,0],[-1,0],[2,1],[0,-1]],[[7058,8816],[-1,-1],[-1,1],[2,0]],[[7194,8783],[0,-1],[0,1],[1,-1],[-1,0],[-1,1],[1,0]],[[7073,8815],[-1,-1],[-1,1],[2,0]],[[7112,8922],[-1,-1],[-1,1],[1,0],[1,0]],[[7137,8802],[-1,0],[0,1],[1,-1]],[[7112,8824],[0,-1],[-1,1],[1,0]],[[7292,9240],[2,-1],[-1,0],[-1,1]],[[7028,8790],[-1,-1],[-1,1],[1,1],[0,-1],[1,0]],[[7135,8837],[0,-1],[-1,1],[1,0]],[[7451,8814],[-1,-1],[-1,1],[2,0]],[[7052,8836],[-1,0],[0,1],[1,0],[0,-1]],[[7137,8823],[-1,-1],[0,1],[1,0]],[[7185,8821],[-3,-1],[1,1],[2,0]],[[7267,8781],[-1,-1],[-1,1],[2,0]],[[7078,8822],[0,-1],[-2,0],[1,1],[1,0]],[[7447,9333],[-1,0],[-1,0],[1,0],[1,0]],[[7146,8781],[-1,-1],[0,1],[1,0]],[[7114,9129],[0,-1],[-1,0],[0,1],[1,0]],[[7605,8841],[-1,0],[-1,1],[1,0],[1,-1]],[[7126,8801],[1,0],[-1,-1],[-1,1],[1,0]],[[7071,8819],[-1,-1],[-1,1],[1,0],[1,0]],[[6952,8828],[-1,-1],[-1,1],[1,0],[1,0]],[[7216,8785],[-1,-1],[0,1],[1,0]],[[7359,8788],[-1,-1],[1,1],[-1,-1],[-1,0],[1,1],[1,0]],[[7062,8837],[0,-1],[-1,1],[0,1],[1,0],[0,-1]],[[7171,8783],[0,-1],[-1,1],[1,0]],[[7443,8808],[-1,0],[1,1],[0,-1]],[[7079,8846],[-1,-1],[-1,1],[1,0],[1,0]],[[7584,8845],[-1,0],[-1,0],[1,1],[1,-1]],[[7002,8839],[-1,-1],[0,1],[1,0]],[[7491,8815],[-3,-1],[0,1],[2,0],[1,0]],[[7030,8791],[1,-1],[-2,1],[1,0]],[[7167,8775],[-1,-1],[-1,0],[1,1],[1,0]],[[7014,8835],[-1,-1],[-1,1],[1,0],[1,0]],[[7098,8820],[0,-1],[-1,1],[0,1],[1,0],[1,-1],[-1,0]],[[7018,8831],[-1,0],[1,1],[0,-1]],[[7106,8802],[-1,0],[1,1],[0,-1]],[[7073,8823],[-1,0],[0,1],[1,0],[0,-1]],[[7086,8825],[-1,-2],[0,1],[1,1]],[[7353,9413],[-1,0],[0,1],[0,1],[1,-1],[0,-1]],[[7227,8820],[-1,-1],[0,1],[1,0]],[[6985,8797],[-1,-1],[-1,1],[1,0],[1,0]],[[7111,8781],[-1,-1],[0,1],[1,0]],[[7114,8808],[-1,-1],[-1,0],[2,1]],[[7092,8830],[-1,0],[0,1],[1,-1]],[[7549,8835],[0,-1],[-1,0],[0,1],[1,0]],[[7083,8823],[0,-1],[-1,1],[1,0]],[[7014,8819],[-1,0],[1,1],[0,1],[0,-1],[0,-1]],[[7069,8787],[0,-1],[-2,1],[3,0],[-1,0]],[[7113,9122],[-1,0],[-1,1],[1,0],[1,-1]],[[7197,8807],[-1,0],[0,1],[1,-1]],[[7354,8790],[0,1],[1,0],[-1,-1]],[[6969,8827],[-1,0],[0,1],[1,0],[0,-1]],[[7194,8789],[-1,1],[1,1],[0,-2]],[[7119,8835],[1,-1],[-1,0],[-1,1],[1,0]],[[7396,8810],[-1,0],[0,1],[1,-1]],[[7153,9147],[-1,1],[1,0],[0,-1]],[[7118,8851],[-2,1],[1,0],[1,-1]],[[7012,8834],[0,-1],[-2,1],[1,0],[1,0]],[[7057,9120],[-2,1],[1,0],[1,-1]],[[7487,8812],[-1,0],[-1,0],[0,1],[2,-1]],[[7153,8776],[-1,0],[0,1],[1,0],[0,-1]],[[7286,8779],[-1,0],[-1,0],[1,0],[1,0]],[[7088,8851],[1,-1],[-1,0],[0,1]],[[7591,8841],[-1,0],[-1,0],[1,1],[1,-1]],[[7047,8833],[-1,0],[-1,0],[1,1],[1,-1]],[[7014,8822],[-1,0],[0,1],[1,0],[0,-1]],[[7086,9116],[-1,0],[0,1],[1,0],[0,-1]],[[7295,8781],[-1,0],[1,1],[1,0],[-1,-1]],[[6985,8791],[1,-1],[1,1],[-1,-1],[-1,1]],[[7516,8825],[-1,-1],[0,1],[1,0]],[[7188,9174],[1,-1],[-2,1],[1,0]],[[7086,9048],[-1,0],[0,1],[1,-1]],[[7205,8814],[-2,-1],[1,1],[1,0]],[[7065,8843],[0,1],[1,0],[-1,-1]],[[7096,8876],[-2,0],[1,0],[1,0]],[[7027,8810],[0,-1],[-1,1],[1,0]],[[7065,8794],[0,-1],[-1,0],[1,1],[0,1],[0,-1]],[[7104,8858],[-1,0],[0,1],[1,0],[0,-1]],[[7562,8840],[1,0],[1,0],[0,-1],[-1,1],[-1,0]],[[7620,8840],[2,-1],[-3,1],[1,0]],[[7085,8832],[-1,-1],[0,1],[0,1],[1,-1]],[[7113,8814],[-1,0],[0,1],[1,0],[0,-1]],[[6963,8824],[0,-1],[-1,0],[0,1],[1,0]],[[7172,8813],[-1,0],[-1,0],[1,1],[1,-1]],[[7202,8790],[1,-1],[-2,1],[1,0]],[[7112,8818],[0,-1],[-2,0],[1,1],[1,0]],[[7406,8809],[-1,-1],[-1,1],[1,0],[1,0]],[[7092,8820],[0,-1],[-1,1],[1,0]],[[7125,9145],[-3,0],[2,0],[-1,0],[2,0]],[[7080,9107],[0,-1],[-1,0],[1,1]],[[7109,9136],[-1,0],[1,1],[0,-1]],[[7109,8811],[-2,-1],[-1,1],[1,0],[2,0]],[[7487,8817],[-1,-1],[-1,0],[2,1]],[[7071,8781],[-2,-1],[0,1],[2,0]],[[7353,8798],[0,-1],[-1,1],[1,0]],[[7104,8859],[-1,0],[-1,1],[1,0],[1,-1]],[[7191,9172],[1,-1],[-1,0],[0,1]],[[7106,9113],[-1,-1],[-1,1],[2,0]],[[6965,8834],[1,0],[1,0],[-1,-1],[-1,1]],[[7011,8831],[0,-1],[-1,1],[1,0]],[[7049,9124],[0,-1],[-1,0],[0,1],[1,0]],[[7098,8874],[0,-1],[-1,1],[0,1],[1,0],[0,-1]],[[7112,8920],[-1,0],[-1,1],[2,-1]],[[7599,8846],[-1,0],[1,1],[0,-1]],[[7051,8815],[0,-1],[-2,0],[2,1]],[[7234,8818],[-1,-1],[-1,0],[2,1]],[[7218,8790],[-1,0],[-1,1],[1,0],[1,-1]],[[7104,8768],[-1,0],[-1,0],[1,1],[1,-1]],[[7029,8805],[-2,-1],[0,1],[2,0]],[[7093,8799],[-1,-1],[1,2],[0,-1]],[[7151,8827],[-1,0],[-1,0],[1,0],[1,0]],[[7096,8818],[-2,-1],[1,1],[1,0]],[[7095,8826],[-1,-1],[0,1],[1,0]],[[7075,8826],[-1,-1],[-1,1],[1,0],[1,0]],[[7107,8918],[2,-1],[-3,1],[-1,0],[2,0]],[[7239,8826],[-2,-1],[-1,0],[3,1]],[[7090,8824],[-1,-1],[-1,1],[1,0],[1,0]],[[7167,8774],[-1,-1],[-1,1],[2,0]],[[7180,8827],[-1,0],[1,1],[0,-1]],[[7472,8818],[-1,-1],[-1,1],[2,0]],[[7219,9212],[-1,-1],[0,1],[1,0]],[[7115,8971],[-1,0],[-2,0],[1,0],[1,0],[0,1],[1,-1]],[[7096,8828],[1,-1],[-1,0],[0,1]],[[7194,8784],[-1,1],[1,0],[0,-1]],[[7095,8825],[-1,-1],[-1,1],[1,0],[1,0]],[[7191,8780],[0,-1],[-2,0],[1,0],[1,1]],[[6993,8811],[0,-1],[-1,1],[1,0]],[[7060,8793],[0,-1],[-1,1],[1,0]],[[7023,8814],[-1,0],[1,1],[0,-1]],[[7139,8797],[0,-1],[-1,1],[1,0]],[[7566,8836],[-1,-1],[0,1],[1,0]],[[7535,8827],[-1,0],[1,1],[0,-1]],[[7291,8776],[-2,0],[1,1],[1,-1]],[[7100,9106],[-1,0],[0,1],[1,-1]],[[7047,8831],[0,-1],[-1,0],[0,1],[1,0]],[[7087,8833],[-1,0],[-1,1],[1,0],[1,-1]],[[7216,8786],[1,-1],[-2,1],[1,0]],[[7095,8869],[-1,0],[1,1],[0,-1]],[[7380,8800],[-1,-1],[-1,1],[2,0]],[[7099,8853],[0,-1],[-1,1],[1,0]],[[7615,8828],[-1,1],[1,0],[-1,-1],[1,0]],[[7062,8785],[-1,-1],[0,1],[1,0]],[[7577,8846],[1,-2],[-1,1],[0,1]],[[7606,8839],[-1,0],[0,1],[1,0],[0,-1]],[[7428,9364],[0,-1],[-2,1],[1,0],[1,0]],[[7640,8853],[-1,-1],[-1,1],[1,0],[1,0]],[[7280,8778],[-2,-1],[0,1],[1,0],[1,0]],[[7130,8841],[0,-1],[-1,0],[1,1]],[[7027,8789],[-1,0],[1,1],[0,-1]],[[7093,8845],[0,-1],[-1,0],[0,1],[1,0]],[[7099,8807],[-1,1],[1,0],[0,-1]],[[7225,8819],[0,-1],[-1,1],[1,0]],[[7169,8836],[-1,-1],[-1,1],[1,0],[1,0]],[[7146,8792],[-2,-1],[1,1],[1,0]],[[7572,8832],[1,-1],[-1,0],[0,1]],[[7140,8824],[-1,0],[1,1],[1,0],[-1,-1]],[[7312,8781],[0,-1],[-1,1],[1,0]],[[7154,9149],[-1,-1],[0,1],[0,1],[1,-1]],[[7090,8831],[0,-1],[-1,1],[0,1],[1,-1]],[[7206,9196],[0,-1],[-1,1],[1,0]],[[7107,8844],[-1,0],[-1,0],[1,1],[1,-1]],[[6948,8822],[1,-2],[-1,0],[0,2]],[[7126,8785],[-1,-1],[0,1],[1,0]],[[7192,8830],[-1,0],[1,1],[0,-1]],[[7594,8851],[-2,0],[1,1],[1,-1]],[[7103,8973],[0,-1],[-1,1],[1,0]],[[7130,8817],[-2,0],[0,1],[1,-1],[1,0]],[[7200,8818],[0,-1],[-1,0],[1,1]],[[6957,8822],[0,-1],[-1,1],[1,0]],[[7374,9399],[1,0],[-2,0],[1,0]],[[7397,8811],[-1,0],[-1,0],[2,0]],[[6952,8826],[-1,-1],[0,1],[1,0]],[[6959,8817],[0,-1],[-1,1],[1,0]],[[7358,9296],[0,-1],[-1,1],[1,0]],[[7092,8875],[1,-1],[-2,0],[1,1]],[[7269,8782],[-1,-1],[0,1],[1,0]],[[7188,8815],[-1,0],[2,1],[0,-1],[-1,0]],[[7030,8798],[-2,0],[2,1],[0,-1]],[[7026,8799],[-2,0],[1,0],[1,0]],[[7075,8831],[0,-1],[-1,1],[1,1],[0,-1]],[[7129,8836],[-1,0],[0,1],[1,0],[0,-1]],[[6986,8793],[0,-1],[-1,1],[1,0]],[[7238,8825],[0,-1],[-1,1],[1,0]],[[7134,8781],[0,-1],[-1,1],[1,0]],[[7100,8867],[0,-1],[-2,1],[2,0]],[[7290,9233],[0,-1],[-1,1],[1,0]],[[7160,8806],[-1,-1],[-1,1],[1,0],[1,0]],[[7123,8802],[1,-1],[-2,1],[1,0]],[[7179,8809],[-1,-1],[0,1],[1,0]],[[7150,8815],[-1,-1],[-1,0],[2,1]],[[6948,8829],[0,-1],[-1,1],[1,0]],[[7093,9110],[-1,0],[1,1],[0,-1]],[[7089,8829],[1,-1],[-2,1],[1,0]],[[7129,8803],[-1,-1],[0,1],[1,0]],[[7189,8805],[-1,0],[2,1],[-1,-1]],[[7128,8800],[-1,0],[-1,0],[1,0],[1,0]],[[7009,8839],[-1,-1],[-1,0],[1,1],[1,0]],[[7268,8774],[-1,-1],[-1,0],[2,1]],[[6961,8811],[-1,0],[1,1],[0,-1]],[[7322,8785],[-2,-1],[0,1],[2,0]],[[7113,8819],[-1,-1],[-1,0],[2,1]],[[7051,8817],[-1,-1],[0,1],[1,0]],[[7211,8785],[-1,-1],[0,1],[1,0]],[[7136,8784],[-3,0],[2,1],[1,-1]],[[7105,9125],[-2,0],[1,1],[1,-1]],[[7213,9206],[0,-1],[-1,0],[1,1]],[[7110,8820],[0,-1],[1,0],[-1,0],[-1,1],[1,0]],[[7085,9073],[1,-1],[-2,1],[1,0]],[[7019,8803],[-1,-1],[-1,1],[1,0],[1,0]],[[7111,8828],[0,-1],[-1,0],[1,1]],[[7201,8786],[0,-1],[-1,1],[1,0]],[[7173,8775],[-1,0],[1,1],[0,-1]],[[7031,8789],[1,0],[-1,-1],[-1,1],[1,0]],[[7169,8776],[-1,-1],[-1,1],[2,0]],[[7194,8786],[0,-1],[-1,1],[1,0]],[[7127,8831],[1,-1],[-2,1],[1,0]],[[7109,8819],[-1,0],[1,1],[0,-1]],[[7116,8933],[1,-1],[-2,1],[1,0]],[[7161,8832],[1,0],[-2,0],[1,0]],[[7184,8795],[-2,-1],[1,1],[1,0]],[[5796,7662],[-1,-1],[1,0],[1,0],[1,-1],[-1,-1],[1,-1],[1,0],[1,-1],[2,-1],[1,1],[1,0],[1,0],[1,0],[1,-1],[2,0],[0,-1],[0,-2],[1,0],[0,-1],[-1,0],[1,-1],[1,1],[1,0],[2,0],[-1,-1],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[0,-1],[2,0],[-1,1],[1,1],[1,0],[1,1],[0,1],[1,0],[0,-1],[2,1],[-1,1],[2,1],[0,-1],[3,0],[0,1],[2,0],[1,0],[1,-1],[2,0],[0,-1],[1,-1],[1,-1],[0,1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[0,1]],[[5899,7270],[-2,-1],[-2,-1],[1,-2],[-1,-1],[-1,-1],[-1,0],[-2,0],[-1,-2],[-2,-1],[-2,1],[-1,0],[-1,-2],[0,1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-3],[1,0],[-1,-2],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[2,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[3,1],[1,0],[1,-1],[1,0],[0,-1],[-1,-1],[-1,-4],[1,0],[1,-1],[0,-1],[0,-2],[-1,-2],[2,-1],[-1,-2],[2,-1],[2,0],[1,0],[-1,-2],[3,0],[2,-1],[-1,-1],[1,0],[1,-2],[3,-2],[3,-1],[0,-1],[-1,0],[-1,-2],[-1,-1],[1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[1,0],[0,-2],[0,-1],[2,-2],[-1,-1],[1,-2],[-1,-1],[-2,0],[0,-1],[-2,-1],[0,-1],[-1,-1],[-2,2],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,1],[-2,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[1,-1],[-2,0],[-1,0],[-2,0],[-1,-1],[1,-2],[1,0],[-1,-1],[-1,0],[-2,-1],[-1,1],[-1,0],[0,1],[-3,1],[-2,1],[-1,-1],[-1,-1],[-1,-1],[-2,1],[-2,0],[-1,0],[0,-2],[-2,-1],[-2,0],[0,-1],[2,-2],[1,-3],[0,-2],[0,-1],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-2],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[2,0],[1,-1],[1,0],[0,-1],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,1],[0,1],[3,-2],[3,0],[1,-1],[0,-1],[1,0],[0,-2],[-1,0],[-1,-2],[1,-1],[1,0],[0,-2],[0,-1],[1,-3],[1,-1],[2,0],[0,-1],[1,-2],[0,-1],[-2,0],[-2,1],[-3,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[-1,-1],[-1,1],[-1,0],[-2,-3],[0,-2],[1,-1],[0,-1],[1,-1],[0,-1],[2,-1],[1,-2],[2,-1],[1,-1],[-1,0],[-1,-1],[-1,1],[-1,-1],[-1,0],[1,-2],[-1,0],[1,-3],[-1,0],[0,-1],[1,-1],[2,0],[0,-2],[2,-2],[1,-1],[-1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,-2],[1,0],[1,-1],[2,0],[1,1],[1,0],[0,-1],[1,0],[2,-1],[2,-2],[1,0],[1,1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[1,1],[0,-1],[2,-2],[1,0],[1,-1],[2,0],[0,1],[1,-1],[2,0],[0,-1],[1,-2],[1,0],[2,1],[1,-1],[1,1],[1,-1],[0,2],[3,-1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,-1],[1,1],[1,0],[2,0],[1,0],[1,0],[1,1],[0,1],[1,1],[3,0],[1,-1],[-1,-1],[-1,-1],[1,0],[0,-1],[-1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-2,-1],[-1,0],[0,-2],[1,-2],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,-3],[1,-1],[0,-1]],[[5940,7039],[-2,0],[-2,-2],[0,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[-2,-2],[0,-1],[-1,-1],[-2,1],[0,-1],[-2,1],[-1,-1],[-1,-2],[0,-1],[2,0],[-2,-1],[0,-1],[-1,2],[1,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,1],[0,1],[-2,-1],[-1,1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,1],[0,1],[-2,0],[-1,0],[-2,0],[-2,-2],[-1,-2],[1,-1],[1,0],[-1,-1],[0,-1],[-2,0],[1,-1],[-1,-1],[0,-2],[-1,0],[-1,0],[-1,-1],[0,-1],[-2,0],[-1,0],[0,-1],[0,-1],[-1,1],[-1,0],[-3,-1],[-1,0],[-2,1],[-1,0],[-1,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[1,-1],[-1,-1],[-3,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,1],[-2,-1],[-1,-1],[-1,0],[-3,-2],[0,-1],[1,-1],[3,0],[1,1],[2,-1],[0,1],[1,1],[2,-2],[-1,-1],[-1,-1],[-1,0],[0,-2],[0,-2],[1,-1],[-1,0],[-2,-1],[0,-2],[-1,0],[-1,-1],[-1,2],[-1,1],[-3,0],[-2,-1],[0,-1],[-2,-2],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[0,-1],[-3,0],[-1,1],[0,1],[-2,0],[-1,0],[0,1],[-1,1],[-1,0],[-2,-1],[-3,0],[-2,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[2,0],[-2,-1],[-1,1],[-1,1],[-1,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,2],[-2,1],[-2,0],[-2,-1],[-2,0],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-2,0],[-1,0],[-2,0],[0,1],[-1,1],[-1,0],[-1,-1],[1,0],[-1,0],[-1,0],[-1,-1],[2,0],[1,0],[0,-1],[-1,0],[-1,-2],[1,0],[1,1],[2,0],[1,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,-2],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[-2,0],[0,1],[1,0],[0,2],[0,1],[0,1],[-1,0],[-2,0],[0,1],[1,1],[-1,1],[-2,-1],[-1,0],[-1,0],[0,2],[-3,-1],[0,1],[-1,1],[1,1],[0,1],[-1,0],[-1,0],[-1,1],[-3,0],[-1,-2],[1,0],[-1,-1],[-3,1],[-1,2],[-1,1],[0,1],[-1,1],[-2,-1],[0,-1],[-2,1],[-1,0],[-2,1],[-1,0],[1,-1],[0,-1],[-2,1],[-2,1],[-3,-1],[-3,1],[2,2],[1,1],[1,1],[-1,2],[-2,1],[1,2],[1,-1],[1,0],[-2,1],[1,0],[0,1],[-1,0],[0,3],[-1,1],[-2,1],[1,0],[-2,1],[-1,-1],[-1,0],[-2,-2],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-2,-1],[-2,0],[-1,0],[-3,0],[0,1],[-1,-1],[-2,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,2],[-2,2],[1,1],[-1,0],[-1,1],[0,1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,1],[0,1],[1,1],[-1,0],[-1,-1],[-1,1],[-1,2],[1,0],[-1,1],[0,-1],[0,-1],[2,-3],[-1,-1],[-3,3],[-1,-1],[3,-2],[-1,0],[-1,0],[1,-1],[1,0],[0,-1],[-1,0],[1,-1],[1,-1],[1,-1],[1,0],[2,2],[0,1],[0,-1],[-5,-4],[0,-1],[-1,0],[-1,0],[-2,1],[-3,1],[-4,0],[-4,0],[-6,1],[-3,1],[-1,1],[0,1],[0,1],[3,1],[-1,3],[-1,1],[-2,1],[-2,1],[-6,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-13,1],[-5,2],[-3,1],[-1,1],[0,2],[0,1],[2,0],[0,1],[-2,2],[-1,1],[-3,0],[-3,0],[-2,-1],[-4,-1],[-5,-2],[-3,-3],[-3,-3],[-1,0],[-2,-3],[-6,-2],[0,-2],[-1,0],[-2,-1],[-2,0],[-1,0],[-4,-4],[-3,-3],[-1,-1],[-1,1],[1,1],[1,1],[1,1],[3,2],[0,1],[2,1],[1,1],[1,1],[1,1],[1,-1],[1,1],[0,2],[-1,1],[-1,-1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[-1,0],[-1,0],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-1,-1],[-1,-3],[0,-1],[1,-1],[1,-1],[-2,-2],[-2,-3],[-1,0],[-3,1],[-1,0],[-1,0],[-1,1],[-2,0],[-3,-1],[-2,-1],[-3,-2],[-3,-2],[-3,-2],[-5,-5],[-2,-3],[-2,-3],[-1,-1],[-3,-5],[-1,-4],[-2,-3],[0,-4],[-1,-2],[0,-1],[2,0],[0,-1],[-1,-4],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[2,2],[0,2],[-1,0],[0,-1],[-2,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,-1],[-1,0],[0,-2],[-1,-3],[0,-1],[-1,0],[-1,-2],[-1,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[2,1],[1,0],[1,0],[-1,1],[1,1],[0,1],[-2,0],[1,1],[1,0],[0,1],[1,1],[0,1],[0,-4],[-1,-4],[0,-2],[0,-4],[0,-2],[0,-2],[0,-3],[0,-4],[1,-5],[0,-3],[0,-3],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,-1],[-2,-1],[1,-1],[0,-1],[2,-1],[1,-1],[-1,-1],[1,0],[-1,-1],[2,-1]],[[5452,6901],[0,1],[1,2],[0,1],[0,1],[0,1],[1,1],[2,0],[1,1],[0,1],[-2,-1],[-3,1],[0,1],[1,2],[-1,0],[-1,0],[-1,1],[-2,0],[-1,-1],[-1,1],[-1,1],[-1,-1],[-2,1],[-1,-1],[0,1],[-1,0],[-1,2],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,1],[-1,0],[-1,-2],[1,-2],[-1,-1],[-1,0],[-1,0]],[[5157,6992],[0,1],[1,1],[0,1],[-1,-1],[0,1],[2,0],[0,1],[1,0],[1,0],[4,1],[1,0],[-1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,1],[1,1],[0,1],[1,2],[1,1],[1,1],[1,1],[1,3],[1,1],[2,4],[1,2],[2,3],[1,3],[0,2],[1,1],[0,1],[0,3],[1,4],[1,4],[0,2],[1,4],[2,5],[2,13],[1,4],[2,5],[-1,1],[1,4],[3,15],[0,4],[1,3],[2,14],[0,4],[0,2],[-1,2],[2,3],[2,3],[1,2],[0,3],[1,2],[1,0],[1,0],[2,0],[0,-1],[-1,0],[0,-1],[1,0],[2,1],[0,-1],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,-1],[1,0],[-1,0],[0,1],[1,0],[1,0],[-1,0],[-1,1],[0,1],[0,1],[-2,0],[-2,2],[2,0],[0,-1],[1,1],[-1,0],[-1,1],[1,0],[-3,2],[-2,2],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,-1],[0,-1],[0,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[0,-3],[-1,-2],[0,-1],[0,-1],[1,1],[-1,0],[1,0],[-1,-2],[0,-1],[-1,1],[0,3],[1,6],[1,11],[2,12],[2,16],[0,7],[2,13],[0,3],[0,2],[1,6],[-1,4],[0,1],[1,2],[0,2],[0,2],[0,1],[0,1],[0,1],[1,3],[2,1],[1,2],[1,2],[3,1],[-1,-1],[1,0],[0,-1],[1,-1],[1,-1],[-1,0],[-1,1],[-1,-1],[0,-1],[0,-1],[2,-1],[2,-1],[0,-1],[4,-3],[4,-2],[1,-1],[1,-1],[0,-1],[1,-1],[2,-1],[2,-2],[3,-2],[0,-1],[2,-4],[1,-3],[1,-2],[1,-4],[1,0],[4,1],[0,2],[-1,1],[0,2],[-1,5],[-1,3],[0,1],[-2,4],[0,2],[-1,2],[-2,1],[-1,1],[0,2],[-1,0],[-1,1],[-1,0],[1,1],[-3,2],[-1,0],[-1,2],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,-1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,1],[0,1],[-1,-1],[0,1],[0,1],[-1,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-2,1],[0,1],[0,-1],[-1,1],[-1,0],[-1,0],[-2,3],[-6,3],[-2,-1],[2,-2],[1,0],[-2,0],[0,1],[-1,2],[0,3],[0,7],[3,0],[1,0],[3,1],[1,0],[1,1],[-1,2],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[3,-1],[1,1],[1,2],[1,2],[1,1],[0,2],[-1,1],[-1,1],[2,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-2,2],[-1,0],[1,0],[1,-1],[1,0],[2,0],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[-1,0],[-1,1],[0,2],[-1,2],[-1,1],[-1,0],[-1,0],[0,1],[1,-1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-2,0],[1,1],[1,0],[-1,0],[-2,0],[-1,-1],[-2,1],[-1,1],[0,1],[1,0],[2,2],[0,1],[0,1],[0,1],[1,1],[2,0],[1,1],[1,1],[0,1],[1,0],[1,1],[1,0],[-1,3],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,-1],[-3,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[-1,1],[1,-1],[0,-1],[-2,2],[-2,1],[-2,2],[-2,2],[-1,-1],[1,-2],[0,-1],[1,0],[1,0],[-2,0],[-1,2],[-1,1],[0,1],[-2,1],[-1,1],[-2,0],[2,0],[1,-1],[-2,1],[-3,-1],[-2,1],[-1,-1],[-2,1],[-1,0],[-1,3],[-1,2],[-1,1],[-3,1],[0,-1],[-2,1],[-4,0],[-1,1],[-2,0],[0,1],[-1,1],[-4,1],[0,1],[-1,0],[-2,2],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,3],[-2,7],[-1,3],[-1,0],[-1,2],[-1,0],[-1,1],[-1,2],[-1,1],[-1,3],[-2,0],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[-6,6],[-5,4],[-2,1],[0,2],[0,2],[-1,2],[0,1],[0,1],[3,0],[1,1],[-1,0],[0,1],[3,3],[1,0],[1,1],[1,2],[0,1],[1,3],[0,1],[3,1],[2,1],[-1,0],[-1,3],[-2,1],[-1,1],[-1,1],[-1,1],[-4,1],[-3,1],[-1,0],[-2,1],[-3,0],[-1,1],[-1,0],[-1,0],[2,1],[0,1],[2,1],[2,0],[1,1],[0,1],[0,2],[1,0],[0,1],[-2,3],[1,1],[0,3],[1,0],[2,0],[6,1],[1,1],[3,-1],[0,2],[0,2],[-1,0],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[-2,-1],[-3,0],[-3,-1],[-3,-1],[0,1],[-1,-1],[-1,-2],[-2,0],[0,-1],[0,-1],[-2,0],[-2,-1],[-2,-1],[-1,0],[-2,2],[-1,0],[0,1],[-1,1],[-3,1],[-2,0],[-1,-1],[1,-1],[-3,0],[0,1],[-4,0],[0,1],[-4,1],[0,1],[1,0],[1,0],[1,0],[1,2],[0,1],[-1,2],[-1,2],[-2,1],[-1,0],[0,1],[2,0],[2,2],[1,0],[1,0],[1,1],[0,1],[1,-1],[2,0],[1,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[0,-1],[-2,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[2,0],[1,0],[-2,0],[0,1],[-2,1],[-2,1],[-1,-1],[0,1],[-1,0],[-1,1],[-2,-1],[-1,-1],[-3,1],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-2,1],[0,-1],[-1,-2],[-4,1],[-1,0],[-1,0],[-3,-1],[-1,-1],[-1,0],[-1,0],[-2,2],[0,1],[-1,1],[-1,1],[-2,1],[-1,-1],[-1,2],[0,1],[3,1],[2,-2],[-1,-1],[1,0],[1,1],[0,-1],[1,1],[1,0],[1,1],[0,-2],[1,0],[0,1],[1,0],[0,-1],[2,0],[2,0],[1,1],[-1,0],[1,2],[1,0],[0,1],[-1,1],[1,1],[-1,1],[-1,0],[0,-1],[-2,2],[-2,1],[1,0],[2,-1],[1,0],[0,1],[-1,0],[-1,1],[-2,0],[1,-1],[-1,0],[0,-1],[-2,1],[-2,-1],[-1,0],[-1,1],[-1,-1],[1,0],[-1,-1],[1,0],[-1,-1],[-2,1],[0,-1],[0,-1],[-1,0],[-1,1],[0,-1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,1],[0,2],[1,0],[0,1],[-2,-1],[0,2],[-1,1],[-1,1],[1,-1],[1,-2],[1,-2],[-1,-1],[-1,0],[2,-1],[-1,-1],[0,-1],[2,-2],[1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,1],[-1,0],[1,1],[-1,0],[1,-2],[-1,0],[-1,0],[0,1],[-1,2],[-1,-1],[1,-2],[-2,2],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,1],[0,1],[-1,1],[-1,0],[0,-2],[1,0],[-1,-2],[0,-1],[0,-2],[0,-2],[1,0],[0,-1],[0,-1],[2,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,2],[0,1],[0,1],[-1,1],[2,0],[1,2],[-1,1],[0,2],[-1,3],[-4,2],[0,1],[-1,1],[1,1],[0,2],[-1,0],[1,0],[0,1],[1,1],[2,-1],[1,1],[0,1],[-1,0],[-1,0],[-2,-1],[-1,1],[0,-1],[1,-1],[-1,0],[1,-1],[-1,0],[-1,0],[1,-1],[0,-1],[0,-1],[-5,4],[-3,1],[-3,1],[-1,0],[0,-1],[0,1],[1,0],[1,0],[3,-1],[1,0],[1,0],[-1,0],[0,1],[-1,1],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[1,1],[0,1],[0,1],[1,-1],[0,1],[1,0],[0,1],[1,0],[0,2],[1,1],[1,0],[0,1],[-1,1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,2],[-1,0],[1,1],[-1,0],[-1,2],[0,1],[-1,1],[1,-2],[-1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-2,1],[0,-1],[-1,1],[-2,-1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[-3,1],[-3,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-4,2],[1,1],[1,0],[0,1],[1,0],[1,1],[2,-1],[1,1],[-1,-1],[-2,1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,2],[0,1],[0,2],[-1,-1],[1,-1],[1,-2],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-3,1],[-1,0],[0,1],[-1,0],[-2,3],[-1,0],[0,1],[1,1],[-1,-1],[-1,1],[0,1],[1,-1],[0,1],[-1,1],[-2,1],[-1,1],[0,1],[0,-1],[-1,1],[-1,-1],[0,2],[-1,-2],[0,1],[-1,-1],[1,-1],[0,-3],[-3,0],[-2,-1],[-1,1],[-3,1],[2,0],[2,-1],[-1,1],[-1,0],[0,1],[0,-1],[-2,0],[-1,0],[-1,1],[0,1],[1,0],[-2,1],[1,1],[-1,-1],[-1,1],[0,1],[0,1],[1,1],[1,0],[1,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-1,-2],[1,-1],[-2,-1],[-1,1],[0,1],[0,-2],[2,0],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,2],[-1,1],[0,-1],[-1,-1],[-1,0],[2,-1],[0,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[-2,0],[0,2],[-1,0],[1,-1],[0,-1],[-1,-1],[-5,0],[1,1],[-1,-1],[-1,0],[0,1],[-6,0],[-1,0],[0,1],[1,0],[-1,1],[0,1],[1,0],[1,0],[1,2],[-1,2],[-1,2],[1,1],[1,1],[-1,-1],[-1,0],[-1,1],[-1,3],[-1,1],[-1,1],[-1,2],[-3,2],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[4,0],[-4,0],[-1,0],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[0,1],[-1,-1],[-1,0],[-4,1],[-2,0],[-1,1],[2,0],[0,1],[0,1],[0,1],[1,-1],[2,0],[1,2],[1,-1],[2,0],[0,1],[1,-1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,1],[1,0],[2,0],[2,0],[1,1],[1,0],[2,0],[2,1],[2,0],[1,0],[1,1],[1,-1],[1,0],[1,-2],[0,1],[1,0],[1,-1],[1,1],[1,1],[0,2],[1,1],[0,2],[0,1],[-2,0],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-3,0],[-1,0],[1,0],[-1,1],[-2,0],[0,1],[-1,0],[-3,1],[-1,0],[-3,0],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-2,-3],[-1,0],[0,1],[1,0],[0,2],[-1,1],[0,3],[-1,0],[2,1],[0,1],[-1,1],[-2,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[0,1],[1,2],[1,0],[1,0],[0,-1],[2,1],[0,1],[0,2],[-1,1],[0,1],[1,0],[1,1],[2,1],[0,-1],[-1,-3],[-1,0],[0,-1],[2,-2],[1,1],[0,1],[1,1],[1,0],[-2,-1],[2,-2],[2,1],[1,0],[3,0],[1,0],[-1,0],[1,-1],[2,-1],[2,1],[1,1],[1,0],[3,1],[3,0],[1,-1],[-1,-1],[0,1],[-1,0],[0,-1],[0,-1],[2,0],[0,-1],[1,-1],[2,0],[0,1],[1,-1],[0,-1],[5,0],[1,-1],[2,1],[0,-1],[0,-2],[0,1],[0,1],[1,1],[1,1],[-3,-1],[-1,0],[-1,0],[0,1],[-1,-1],[-2,1],[-1,0],[-1,0],[0,1],[-2,-1],[-1,2],[-3,1],[1,0],[1,0],[2,1],[1,0],[2,0],[2,1],[-1,0],[-3,0],[-1,0],[0,1],[1,1],[-2,-1],[-1,0],[-1,0],[-1,0],[3,2],[-1,0],[-1,-1],[-2,-1],[-1,1],[-2,0],[1,1],[1,0],[0,1],[-1,0],[3,1],[1,1],[1,1],[-1,-1],[-2,0],[-1,0],[0,-1],[1,0],[-3,-1],[0,1],[1,2],[-2,-2],[-1,0],[1,1],[-2,-1],[0,-1],[-1,-1],[-3,0],[1,1],[1,1],[-1,0],[-4,-2],[-1,0],[2,2],[0,2],[2,1],[1,1],[3,1],[1,1],[1,0],[2,2],[3,2],[1,1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,1],[-1,-1],[-2,1],[-1,-1],[0,-1],[-1,0],[0,1],[-2,-1],[-1,0],[-1,0],[-3,-2],[0,-1],[-2,1],[0,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[-2,-1],[-1,0],[0,1],[0,1],[-1,1],[1,1],[2,0],[-1,0],[-3,0],[1,0],[1,0],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,2],[1,1],[-1,0],[1,2],[1,0],[0,-1],[1,1],[2,1],[-3,0],[-1,0],[0,1],[0,1],[-1,1],[2,2],[-1,0],[1,1],[1,1],[1,2],[2,0],[1,-1],[0,2],[1,1],[0,-1],[1,0],[0,1],[1,-1],[1,0],[2,1],[3,-1],[0,-1],[0,-1],[1,1],[2,0],[2,-1],[0,1],[2,-1],[-1,0],[0,1],[-2,0],[-3,0],[-1,1],[0,1],[-1,0],[-1,0],[1,1],[0,1],[1,1],[1,0],[-1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,-1],[1,-1],[-1,1],[-1,1],[-2,1],[-2,1],[-2,0],[0,1],[1,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[2,2],[1,0],[2,-1],[-1,1],[-2,1],[3,1],[2,0],[1,1],[1,1],[2,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[-1,-1],[1,-1],[1,0],[-1,1],[2,0],[1,1],[2,0],[2,1],[-1,-1],[1,0],[2,0],[0,1],[-2,0],[1,1],[2,2],[1,0],[1,0],[3,1],[3,0],[0,-1],[1,1],[1,-2],[1,0],[0,-1],[0,1],[-1,0],[0,1],[1,0],[2,0],[-2,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,-1],[1,1],[0,1],[1,0],[-1,-1],[1,0],[1,0],[-1,1],[1,0],[1,0],[1,0],[-1,-2],[1,-2],[-1,0],[0,-1],[2,-1],[0,-1],[-1,-1],[1,-1],[0,-2],[-1,-1],[1,1],[1,-2],[0,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[0,2],[1,-1],[2,0],[-1,-1],[0,-1],[2,-1],[1,-1],[1,0],[0,-2],[-1,-1],[1,0],[0,1],[1,1],[3,1],[-3,0],[-1,2],[0,1],[-1,1],[1,0],[0,-1],[1,0],[0,1],[-1,2],[1,1],[1,2],[2,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[2,0],[-1,-1],[2,-1],[1,0],[1,0],[2,1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[-1,-1],[1,0],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,0],[2,0],[1,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[1,0],[0,1],[1,-1],[1,2],[-2,2],[-1,0],[0,1],[0,2],[1,1],[1,-1],[2,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,-1],[0,1],[1,1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,-1],[0,-1],[3,0],[-1,-1],[0,-1],[1,0],[3,0],[0,1],[1,1],[1,0],[1,1],[2,0],[1,1],[2,0],[1,1],[1,-1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[-1,-1],[-1,-2],[-1,-1],[1,0],[0,-1],[0,1],[0,1],[2,2],[0,1],[1,1],[0,1],[1,0],[1,1],[1,0],[2,0],[0,1],[2,0],[2,0],[0,-1],[0,1],[-1,-1],[1,-1],[-2,-2],[1,1],[1,-1],[-2,-5],[-1,-1],[-1,-1],[1,0],[1,0],[0,2],[1,0],[0,2],[1,1],[1,2],[1,-1],[4,1],[0,-1],[-1,-1],[1,0],[1,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[3,0],[-1,0],[-1,-1],[2,-1],[0,1],[2,-1],[2,0],[3,-1],[-1,-1],[0,-1],[-1,-1],[2,-2],[2,-1],[1,0],[0,-1],[1,-1],[2,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[2,-1],[1,0],[1,0],[1,-1],[0,-1],[-1,-1],[1,-1],[2,-3],[1,0],[-1,0],[1,2],[0,1],[0,1],[1,1],[1,-2],[1,0],[1,1],[0,1],[2,1],[3,3],[1,2],[1,0],[1,0],[3,1],[2,2],[1,1],[-2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-2],[0,1],[2,0],[0,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[0,1],[1,-1],[-1,0],[1,-1],[2,0],[0,-1],[-2,-3],[-1,-1],[-1,0],[1,-1],[1,0],[1,1],[1,0],[0,1],[2,1],[1,0],[-1,-1],[1,-2],[2,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,2],[-1,0],[1,1],[1,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[-1,1],[0,1],[1,1],[1,1],[0,-1],[1,-1],[-1,1],[-1,1],[0,1],[2,0],[2,1],[1,-1],[1,0],[0,1],[2,0],[1,0],[0,-1],[-1,-1],[2,0],[0,-1],[0,-1],[2,-2],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[-1,0],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[2,1],[-1,1],[1,1],[1,1],[0,-1],[1,0],[0,1],[0,1],[-2,0],[1,1],[0,1],[-1,0],[-1,3],[2,-1],[1,0],[-1,2],[-1,-1],[-1,1],[-1,-1],[0,1],[0,1],[-1,-1],[-1,3],[1,0],[-1,1],[-1,0],[0,1],[0,1],[2,0],[2,1],[0,2],[2,1],[0,-1],[2,1],[-1,0],[-1,0],[2,1],[2,0],[1,-1],[1,1],[1,0],[3,2],[0,-1],[-1,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-2],[1,-2],[1,-1],[4,-1],[2,0],[9,1],[2,0],[6,1],[2,1],[2,-1],[1,-1],[0,1],[1,0],[1,0],[1,0],[2,0],[2,1],[0,1],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[-1,0],[-1,2],[-1,0],[-1,0],[-1,1],[2,3],[1,1],[-2,-2],[-3,-1],[-1,-1],[-1,-1],[0,2],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,3],[-1,2],[-2,0],[-1,0],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[-2,1],[-1,0],[-1,0],[2,0],[0,1],[1,0],[0,2],[1,2],[0,1],[0,2],[1,2],[1,1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,2],[0,1],[-1,0],[0,1],[0,2],[0,2],[0,2],[1,-1],[-1,-1],[1,0],[0,1],[0,1],[-1,1],[0,1],[2,1],[2,-1],[0,1],[-3,1],[-1,0],[-1,-1],[-1,-2],[1,0],[0,-1],[-1,0],[-1,2],[-1,2],[0,2],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,2],[1,2],[1,0],[-1,0],[0,1],[0,3],[-1,2],[0,1],[0,1],[-1,1],[2,0],[2,1],[-1,1],[-3,0],[-1,-1],[0,-1],[1,0],[-1,-1],[-1,2],[-1,1],[-1,3],[0,1],[-1,1],[2,0],[-1,1],[-2,0],[0,1],[-1,1],[-1,2],[1,0],[2,1],[0,-1],[-1,0],[-3,0],[-2,2],[0,1],[-1,1],[-2,1],[1,0],[1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,3],[0,2],[0,2],[-1,2],[0,1],[-1,1],[0,2],[-1,2],[-1,0],[-1,1],[-1,1],[0,1],[1,0],[2,1],[0,1],[1,1],[0,2],[0,1],[0,2],[-1,3],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[1,1],[0,1],[-1,1],[0,1],[1,1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[2,1],[1,0],[1,-2],[1,-1],[2,0],[3,-1],[4,0],[1,-1],[2,0],[-1,0],[1,-1],[2,0],[2,0],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,1],[0,1],[1,-1],[1,0],[1,1],[2,-1],[1,0],[3,2],[1,0],[1,1],[0,1],[0,1],[2,-1],[2,2],[1,0],[0,-1],[2,1],[2,0],[2,-1],[1,1],[1,-1],[2,0],[3,0],[0,-1],[-1,0],[0,-1],[1,-1],[2,-2],[-1,0],[2,-3],[0,-2],[-3,1],[1,0],[-2,-3],[-1,0],[-1,-1],[-1,-2],[0,-1],[0,-1],[2,-2],[1,-1],[0,-1],[2,-2],[2,-2],[0,-1],[1,-1],[1,-1],[1,-1],[2,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[1,0],[2,-1],[2,0],[0,1],[2,2],[2,1],[4,0],[3,0],[2,1],[3,-1],[1,-1],[3,-1],[2,-1],[2,-1],[4,0],[3,-1],[2,0],[5,0],[2,0],[1,0],[2,-1],[1,1],[2,0],[1,0],[4,0],[4,-1],[2,0],[4,0],[1,-1],[2,0],[1,-1],[3,-2],[2,0],[0,-1],[3,0],[2,-1],[1,1],[4,0],[2,0],[4,1],[1,0],[1,1],[2,1],[3,0],[2,2],[2,1],[1,1],[1,0],[1,1],[3,3],[2,1],[1,1],[3,1],[4,1],[4,0],[1,0],[1,0],[1,0],[3,1],[-1,0],[-3,0],[-1,1],[2,0],[-1,0],[-1,1],[-1,-1],[-2,0],[-1,1],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[-4,0],[-1,2],[0,1],[-1,1],[-1,0],[-1,1],[1,1],[0,2],[3,5],[2,3],[1,2],[1,2],[0,1],[0,1],[1,2],[1,1],[1,1],[1,1],[2,0],[3,1],[1,1],[2,1],[2,0],[1,0],[2,1],[1,2],[1,0],[4,2],[5,2],[1,1],[1,0],[1,1],[1,1],[2,1],[4,1],[3,1],[1,0],[1,0],[4,1],[3,0],[1,0],[3,1],[3,1],[5,1],[3,1],[2,1],[2,0],[4,0],[1,0],[3,1],[1,1],[1,0],[2,0],[2,2],[2,0],[2,1],[1,2],[3,1],[2,1],[1,1],[5,4],[1,0],[3,2],[1,1],[2,1],[1,1],[2,2],[1,3],[2,3],[2,3],[3,2],[2,0],[-1,0],[1,-2],[2,-1],[1,0],[2,0],[3,-1],[1,0],[0,2],[-1,1],[0,1],[-2,0],[-1,0],[-1,0],[-2,3],[0,1],[-3,0],[-1,1],[-1,1],[0,1],[1,3],[0,2],[0,3],[1,1],[1,0],[0,-1],[3,1],[1,0],[1,0],[1,-1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,-1],[-1,2],[-1,1],[0,2],[1,2],[0,4],[0,1],[1,4],[0,1],[0,1],[1,0],[1,-1],[2,-2],[1,0],[2,-1],[-3,1],[0,1],[-1,2],[-1,0],[0,1],[-2,2],[-1,1],[1,0],[0,3],[-1,4],[1,0],[-1,0],[0,2],[-1,3],[0,1],[1,1],[1,2],[0,1],[1,-1],[-1,0],[1,0],[0,2],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[0,2],[2,0],[2,0],[2,2],[3,3],[1,1],[2,1],[2,1],[3,1],[4,1],[1,0],[-1,-1],[1,1],[1,0],[-1,0],[2,0],[-1,1],[1,0],[2,0],[2,1],[2,0],[3,1],[6,0],[0,1],[2,0],[1,1],[1,-1],[1,0],[1,-1],[0,-1],[0,1],[-1,1],[2,1],[1,1],[2,0],[1,-1],[-1,0],[1,0],[1,2],[0,1],[-2,1],[2,-1],[1,-1],[1,0],[2,1],[2,1],[3,0],[4,1],[2,-1],[1,0],[4,1],[3,1],[1,0],[2,1],[4,1]],[[775,2931],[3,-2],[5,0],[1,0],[2,-1],[2,-1],[3,-2],[1,0],[-1,0],[2,-1],[1,-1],[4,-3],[1,-1],[1,0],[3,-3],[2,0],[1,-1],[2,-1],[6,-3],[1,1],[4,-1],[4,-1],[2,-1],[1,-1],[2,0],[2,1],[1,-1],[1,-2],[0,2],[-1,1],[-1,0],[-1,0],[-1,1],[1,1],[1,0],[1,-1],[0,-1],[1,0],[2,0],[3,-2],[2,0],[0,-1],[3,-1],[1,-1],[4,-3],[2,-1],[3,0],[1,-2],[1,-1],[-1,2],[0,1],[2,-1],[2,0],[1,0],[1,-1],[1,-1],[1,-1],[1,-2],[2,-1],[1,-2],[2,-3],[0,-2],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[2,-2],[1,-1],[0,-1],[1,-1],[2,-1],[3,-3],[1,-1],[1,-2],[2,-2],[1,-1],[-1,-1],[2,-1],[3,-3],[1,0],[0,-1],[1,-1],[1,0],[1,-2],[1,-1],[2,-1],[0,-1],[2,-2],[1,-2],[1,-1],[2,-2],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[2,-1],[0,-1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[2,-1],[0,-1],[0,-1],[1,-1],[2,0],[1,-2],[1,-2],[1,0],[0,-1],[1,0],[1,-2],[1,0],[2,-1],[1,-2],[1,0],[1,-1],[0,-1],[2,-1],[2,-1],[0,-1],[2,-2],[7,-4],[1,1],[1,0],[3,0],[2,-2],[1,-2],[1,0],[0,-1],[1,-1],[0,-1],[1,-2],[0,-2],[0,-1],[1,-2],[0,-3],[0,-2],[0,-1],[1,-2],[1,-2],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[2,-1],[2,0],[0,-2],[0,1],[-1,-1],[-1,-2],[0,-1],[0,-2],[1,-4],[2,-3],[0,-1],[2,-2],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-2],[0,-4],[-1,-2],[0,-4],[-1,-3],[-1,-2],[-3,-1],[0,-1],[-3,-2],[-3,-3],[0,-1],[-1,-2],[1,0],[0,-2],[-2,-4],[-1,-2],[-1,-1],[-1,-1],[-2,-2],[-1,-3],[-1,-1],[-2,1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-2,0],[-1,-2],[-1,-2],[-1,-1],[0,-3],[0,-1],[0,-1],[-1,-2],[-1,-2],[-2,-4],[-2,-4],[-1,0],[0,-1],[0,-2],[-1,0],[-1,-1],[0,-2],[-1,-1],[-1,-2],[-3,-9],[-1,-1],[-1,-2],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-2],[-1,-1],[0,-3],[-1,0],[-1,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[-2,-3],[0,-2],[-1,-1],[-1,-2],[0,-2],[-1,-3],[0,-1],[-1,-1],[0,-1],[1,-1],[1,1],[0,-1],[-2,-2],[-1,0],[-1,0],[0,-1],[-1,-3],[-1,-1],[-1,-3],[-2,-3],[0,-2],[0,-1],[0,-2],[-1,-2],[-1,-3],[-1,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,1],[-1,-1],[0,-1],[0,-1],[1,-1],[-1,0],[1,-1],[1,-1],[0,-2],[-1,-2],[-1,0],[-1,-1],[0,-1],[1,-2],[0,-1],[-1,0],[-2,-3],[-1,-1],[-1,0],[-1,-1],[0,-1],[1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[0,-1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-2],[0,-1],[-1,0],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,1],[-4,2],[-1,1],[0,1],[-1,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,1],[1,1],[0,1],[0,1],[1,0],[1,1],[-1,0],[0,2],[1,0],[0,-1],[1,1],[1,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,2],[-1,0],[-1,0],[-1,2],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-2],[-1,0],[-1,-1],[-1,-1],[0,-1],[-2,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,-1],[-1,0],[0,1],[-1,1],[-2,0],[0,-1],[-1,0],[-1,1],[0,1],[2,0],[-1,1],[1,1],[1,1],[-2,1],[0,-1],[-1,1],[1,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,1],[1,1],[-1,0],[-1,0],[-1,-2],[1,-1],[0,-1],[-1,-2],[0,-1],[-1,1],[-1,0],[-1,-2],[0,1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-2],[-1,0],[0,-2],[0,-1],[-2,-3],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[-2,-2],[-1,-1],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[0,2],[-1,0],[-1,1],[1,1],[-1,1],[-2,-1],[-1,1],[-1,1],[0,1],[2,0],[1,0],[0,1],[-2,1],[0,1],[0,1],[0,1],[-2,0],[-1,0],[-1,0],[-1,1],[0,2],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,1],[-1,1],[0,1],[0,1],[1,2],[0,2],[1,1],[1,0],[0,2],[3,0],[2,0],[1,1],[1,3],[1,1],[1,2],[0,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,2],[0,2],[0,2],[1,2],[2,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,3],[1,1],[1,2],[1,0],[0,1],[2,2],[0,2],[1,1],[-1,2],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[1,1],[0,1],[-1,1],[1,0],[1,2],[0,1],[-1,0],[1,1],[1,1],[-1,0],[-1,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,2],[-1,3],[-1,0],[0,-1],[-2,0],[0,1],[1,2],[0,2],[1,2],[0,1],[0,1],[1,-1],[1,2],[0,1],[1,0],[1,2],[1,2],[1,1],[1,1],[1,2],[0,-1],[1,0],[1,0],[1,3],[0,1],[0,2],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,0],[1,2],[1,1],[1,1],[0,1],[0,1],[0,2],[1,1],[-1,4],[1,2],[0,1],[-1,0],[1,3],[0,1],[1,1],[1,3],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-2,1],[0,1],[0,1],[-1,0],[-2,2],[0,2],[1,1],[0,1],[-1,1],[-1,1],[0,3],[-1,1],[-1,3],[-1,1],[-2,0],[-3,0],[-1,1],[0,1],[1,2],[0,1],[-2,1],[-1,0],[-1,0],[-1,4],[0,1],[-1,1],[-1,1],[-1,1],[-1,2],[0,2],[0,1],[-1,1],[-1,3],[-1,3],[-1,0],[-1,0],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[1,1],[1,2],[0,1],[-1,1],[-1,1],[-2,1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[1,5],[0,1],[-1,1],[0,2],[0,3],[1,2],[-1,2],[-2,1],[-1,-1],[0,-1],[-1,1],[0,2],[1,2],[0,1],[-1,2],[1,2],[0,1],[-1,3],[-1,4],[1,2],[2,1],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,1],[-1,1],[1,2],[1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-2,0],[-1,2],[1,4],[-1,1],[0,2],[0,1],[0,1],[0,4],[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,2],[0,2],[1,0],[-1,3],[1,1],[1,3],[0,1],[0,1],[0,1],[1,1],[1,1],[2,1],[0,1],[0,1],[1,1],[1,1],[0,2],[1,1],[2,4],[0,1],[2,3],[1,2],[1,1],[2,1],[1,2],[2,0],[0,1],[1,1],[1,0],[1,2],[2,3],[1,2],[1,2],[0,1],[2,3],[3,4],[1,1],[1,2],[2,1],[0,3],[1,3],[0,1],[0,1],[0,3],[-1,3],[0,2],[2,4],[1,1],[1,2],[0,2],[1,-1],[1,1],[1,0]],[[6099,6956],[1,-1],[0,-1],[2,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,-1],[-1,-1],[1,0],[0,-2],[0,-1],[0,-2],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-2],[-1,-2],[-1,0],[1,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[1,0],[-1,-1],[0,-1],[0,-2],[0,-1],[1,-2],[2,-3],[2,-3],[2,-2],[0,-3],[0,-2],[0,-3],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-3],[1,-2],[0,-1],[0,-1],[1,-2],[0,-2],[0,-3],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-4],[-1,-2],[-3,-4],[-3,-5],[-2,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-3],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[-1,-2],[0,-2],[0,-1],[0,-2],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[-2,-2],[-1,1],[-1,-1],[1,-1],[0,-1],[-2,1],[0,-1],[-1,0],[0,1],[0,1],[-1,-1],[0,-1],[-2,-1],[0,-1],[0,-1],[1,0],[1,0],[1,2],[1,0],[1,-1],[2,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-2,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[2,2],[1,1],[1,0],[-1,-2],[-2,-2],[0,-1],[-1,-2],[-4,0],[0,2],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-2,-1],[-1,0],[0,1],[0,1],[1,2],[1,1],[1,0],[-2,0],[-1,1],[-1,-1],[-1,0],[0,1],[0,2],[1,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,1],[-2,1],[-1,0],[0,1],[-1,-1],[-2,2],[-2,0],[-1,0],[-1,1],[-1,1],[-2,-1],[0,1],[1,0],[-1,1],[-2,0],[-1,0],[1,1],[0,1],[-1,1],[-1,0],[-1,-1],[0,1],[-1,1],[-2,0],[0,1],[1,1],[-1,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,-1],[1,0],[1,1],[2,1],[1,0],[0,-1],[1,1],[0,2],[2,1],[1,0],[0,1],[-2,0],[-1,1],[-1,0],[-2,0],[-1,1],[-2,1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[-1,1],[-4,-2],[-1,0],[-1,0],[1,1],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[1,0],[1,-1],[2,1],[2,3],[-1,1],[-1,0],[2,2],[1,0],[1,0],[1,0],[0,1],[1,1],[-1,2],[-2,0],[3,0],[1,1],[-1,1],[0,2],[1,0],[1,1],[-1,1],[-1,3],[-2,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-3,0],[-1,-1],[-3,1],[-2,-1],[-1,1],[1,2],[1,1],[-1,0],[-1,0],[-1,2],[0,1],[2,0],[1,0],[2,0],[1,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,-1],[2,1],[0,1],[1,0],[1,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,2],[0,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-3,0],[1,1],[-1,1],[-1,0],[1,0],[1,2],[-2,0],[-1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,-1],[1,0],[2,1],[2,1],[1,0],[1,0],[1,0],[3,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-2,0],[-1,1],[3,1],[0,1],[-2,2],[-1,0],[-2,-2],[-1,0],[0,1],[0,3],[1,0],[1,0],[-1,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,2],[2,0],[1,0],[0,-1],[1,0],[1,2],[0,1],[-1,0],[1,1],[0,1],[1,1],[0,1],[-2,0],[1,2],[0,2],[1,1],[2,0],[2,0],[-1,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,-3],[1,1],[2,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[0,1],[-1,1],[1,0],[0,1],[0,1],[2,0],[1,0],[1,1],[0,-1],[1,0],[1,1],[0,2],[2,-1],[1,1],[1,1],[1,0],[1,-1],[3,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[0,2],[0,2],[1,-1],[1,1],[0,1],[0,1],[2,0],[0,1],[2,1],[1,-1],[2,1],[3,-1],[2,1],[1,-2],[1,0],[1,0],[0,-1],[0,-1],[2,-2],[0,-1],[1,0],[1,1],[1,1],[0,1],[0,2],[1,0],[1,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[-1,2],[-1,0],[0,1],[2,2],[0,1],[1,0],[-1,1],[-1,2],[0,1],[1,0],[1,1],[1,1],[1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,1],[0,2],[0,1],[0,1],[1,0],[2,0],[1,0],[1,1],[0,-1],[1,0],[1,1]],[[9967,56],[0,-1],[1,-1],[2,0],[1,1],[1,-1],[2,-1],[1,0],[1,1],[1,-1],[1,0],[3,-2],[1,1],[0,-1],[1,0],[2,-1],[0,-1],[1,-1],[1,-2],[1,-2],[0,-3],[0,-1],[0,-1],[1,-1],[1,-1],[0,-2],[2,-3],[1,-1],[1,-1],[0,-2],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[1,-1],[0,-1],[-1,-1],[-2,-2],[-2,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,1],[-2,-1],[-1,0],[0,1],[-1,1],[-1,-1],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-2,1],[-3,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-2,1],[0,2],[0,2],[0,1],[0,2],[-1,1],[0,1],[-1,0],[1,1],[-1,1],[-1,1],[0,1],[-2,2],[-1,1],[0,3],[1,0],[-1,2],[1,2],[1,0],[1,0],[2,2],[0,2],[0,2],[0,3],[0,-1],[1,1],[0,1],[1,0],[1,-1],[1,1],[2,0],[0,1],[2,2],[2,2],[2,0],[2,0],[1,1]],[[169,3917],[1,0],[1,-1],[2,0],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,1],[1,-1],[1,0],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-2],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[1,1],[1,1],[1,-1],[0,1],[1,0],[1,1],[1,1],[0,-1],[1,0],[0,-2],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,1],[1,0],[1,0],[0,-1],[-1,-1],[-1,1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[2,0],[1,0],[-1,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[1,-1],[1,1],[1,0],[-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,-1],[-1,0],[1,-1],[-1,-1],[0,-2],[-1,-1],[-1,0],[0,-1],[-1,-2],[-1,0],[-1,0],[0,1],[-1,2],[1,0],[0,2],[2,2],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,1],[-1,1],[-2,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-2,2],[0,1],[0,1],[0,2],[-1,0],[-1,0],[1,1],[1,2],[1,1],[1,1],[1,1],[0,-1],[1,-1],[1,0],[1,-1],[1,1],[1,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[1,1],[-1,1],[-1,0],[0,-1],[-2,0],[-1,0],[-2,0],[-1,2],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,2],[-1,2],[1,2],[0,1],[0,1],[-1,1],[-1,1],[0,2],[-1,0],[-1,2],[0,2],[1,3],[0,1],[1,0],[1,1],[1,1],[1,0],[2,0]],[[120,4077],[0,-1],[1,0],[0,-1],[2,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[2,0],[0,-1],[-1,-1],[-1,0],[1,-1],[1,0],[-1,-1],[1,0],[1,0],[1,0],[1,2],[1,0],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[-1,0],[-1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[1,-3],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-2,0],[-1,-1],[-1,-1],[-2,0],[-1,0],[0,2],[0,2],[-1,0],[-2,2],[0,2],[0,1],[0,1],[-1,1],[-1,1],[1,3],[-1,0],[0,1],[0,3],[0,1],[0,1],[0,3],[-1,0],[0,2],[0,2],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,3],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0]],[[142,4094],[0,-1],[0,-1],[2,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-2],[0,-1],[1,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[2,-4],[2,-1],[1,1],[3,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[2,-2],[0,-1],[1,0],[2,-1],[1,0],[1,-1],[0,-1],[-1,1],[-1,0],[-1,1],[-3,0],[-1,-1],[-2,0],[-3,-1],[0,1],[0,-1],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-2,0],[-2,0],[-2,1],[0,1],[-1,0],[-1,1],[-1,2],[0,1],[0,3],[0,2],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[1,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[1,1],[0,1],[3,3],[1,0],[1,2],[1,0],[0,1]],[[9098,939],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,1],[0,1],[1,0],[0,-1],[2,0],[1,0],[0,-1],[2,-1],[0,-3],[0,1],[0,1],[-1,-2],[1,-1],[-1,-1],[-2,-1],[0,-2],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,-3],[0,-2],[0,-1],[0,-1],[1,-1],[2,0],[-1,-2],[-1,1],[-1,0],[-1,1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[0,2],[1,1],[-1,1],[0,-1],[-1,0],[-1,0],[1,1],[1,1],[0,1],[0,1],[-1,0],[-1,0],[0,2],[-1,1],[2,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[2,0],[0,1],[0,1],[-1,1],[1,1],[-1,1],[-1,0],[-1,1],[0,2],[-1,0],[-1,1],[1,1],[1,0],[1,0],[-2,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,-1],[0,1],[0,1],[0,1],[-2,0],[-1,2],[-1,0],[0,-1],[-1,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,1],[0,1],[1,0],[1,3],[2,3],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1]],[[5196,7278],[2,-1],[4,1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,0],[1,-2],[1,0],[2,-3],[-1,-3],[-1,0],[1,-3],[-2,-2],[0,-1],[0,1],[-1,-1],[-1,1],[0,4],[-1,2],[-1,2],[-2,2],[-5,3],[-2,2],[-1,1],[0,2],[0,2],[0,2],[-1,0],[-1,4],[1,0],[1,-1],[2,0],[0,-1],[1,-1],[2,-1],[1,-1],[0,-1]],[[158,4039],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[2,-1],[0,-1],[1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,0],[-2,1],[-1,1],[-1,2],[0,4],[1,1],[0,3],[1,0],[0,1],[1,2],[1,0],[1,0]],[[5039,7426],[1,0],[2,0],[0,-2],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[3,0],[1,-1],[-1,0],[0,-2],[-1,0],[-1,-1],[-2,1],[-2,0],[-1,0],[-2,1],[-1,-1],[-1,0],[-2,0],[-1,1],[-1,2],[1,1],[-1,1],[-1,1],[0,2],[0,1],[1,2],[1,-1],[2,-1],[2,-1]],[[5182,7305],[1,-1],[-1,-1],[-1,0],[-1,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,0],[4,1],[0,-1],[0,-1],[-2,0],[1,-1],[2,0],[3,0],[2,-1],[2,-1],[1,0],[1,0],[1,-2],[0,-1],[1,0],[1,0],[-1,-2],[-1,0],[-2,0],[-1,0],[-3,1],[-1,1],[-2,2],[-2,1],[-4,2],[-1,0],[-3,-1],[-2,1],[-1,1],[-1,2],[0,1],[1,0],[2,1],[1,1],[1,-1],[1,-1]],[[5118,7390],[0,-1],[2,0],[1,-1],[-1,-2],[-1,1],[-1,-1],[1,0],[0,-1],[0,-1],[1,0],[3,-2],[3,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,2],[-1,2],[-2,2],[-2,2],[-2,0],[-1,-1],[-1,1],[-1,2],[-1,1],[-1,0],[1,1],[0,1],[-1,1],[2,0],[1,1],[2,0]],[[11,4266],[0,-1],[0,-2],[1,-3],[-1,0],[0,1],[-1,-1],[-2,1],[-1,-1],[-1,0],[-1,-1],[0,1],[1,3],[0,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,-2]],[[5113,7355],[2,-2],[-2,1],[-2,-1],[-3,1],[-1,0],[-1,1],[-1,2],[2,1],[3,-1],[0,-1],[2,0],[1,-1]],[[4884,7545],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[0,1],[2,0],[-1,1],[-2,-1],[-1,0],[1,1],[2,1],[0,1],[2,0],[1,0],[-1,1],[1,0],[1,-1],[0,-1],[2,0]],[[5014,7457],[3,-1],[1,0],[2,-1],[-1,-1],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,2],[2,0]],[[174,4070],[-1,0],[0,1],[0,1],[1,0],[2,1],[1,1],[2,1],[1,1],[1,-2],[-2,-1],[-2,-1],[-2,-1],[-1,-1]],[[5832,6955],[-3,-1],[0,-1],[-1,0],[-1,1],[-2,0],[0,1],[1,1],[2,-1],[1,0],[2,1],[0,1],[1,-1],[0,-1]],[[5854,6960],[-1,-1],[-1,0],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-1,1],[1,1],[2,1],[0,1],[1,1],[1,0],[2,0]],[[9113,929],[0,-1],[-1,-1],[-1,1],[-1,1],[1,0],[1,1],[0,1],[0,1],[1,-1],[0,-1],[0,-1]],[[5846,6955],[-1,-1],[-1,0],[-2,0],[0,1],[1,1],[2,1],[1,-1],[0,-1]],[[128,4021],[-2,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,-1]],[[3,4262],[0,-1],[1,0],[1,0],[0,-1],[-1,1],[-1,1],[-1,-1],[0,-1],[-1,0],[-1,1],[1,1],[1,0],[1,1],[0,-1]],[[4971,7575],[1,0],[-1,-1],[0,1],[-1,0],[-1,-1],[-2,1],[2,1],[1,0],[1,-1]],[[132,4023],[-1,-1],[-1,1],[1,1],[1,0],[0,1],[1,1],[0,-1],[0,-1],[-1,-1]],[[5055,7587],[0,-2],[-1,0],[0,2],[1,0],[-1,0],[1,1],[1,0],[-1,-1]],[[5058,7429],[1,0],[1,0],[-1,-1],[-2,0],[-1,1],[-1,0],[0,1],[3,-1]],[[5071,7450],[0,-1],[0,2],[1,0],[0,1],[1,-1],[-2,-1]],[[5067,7447],[0,2],[0,1],[1,2],[1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1]],[[781,2930],[-2,0],[-2,1],[2,0],[2,-1]],[[5066,7424],[1,0],[-1,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[9092,944],[-1,-1],[-1,1],[1,1],[1,-1]],[[5007,7581],[-1,0],[0,1],[1,0],[1,-1],[-1,0]],[[5901,7011],[0,-1],[-2,0],[-1,1],[1,0],[2,0]],[[5209,7281],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0]],[[6086,6778],[-2,0],[1,1],[1,0],[0,-1]],[[5754,6985],[-2,0],[2,1],[0,-1]],[[15,4267],[-1,-1],[0,1],[1,1],[0,-1]],[[172,4057],[-1,-1],[-1,1],[2,0]],[[5752,6983],[-1,0],[2,2],[0,-1],[-1,-1]],[[4978,7569],[-1,-1],[0,1],[0,1],[1,-1]],[[4891,7537],[-1,0],[0,1],[1,0],[0,-1]],[[5761,6973],[-1,0],[-2,1],[1,0],[2,-1]],[[132,4076],[-1,0],[0,1],[1,-1]],[[4900,7533],[-2,-1],[1,1],[1,0]],[[5221,7134],[1,-1],[-1,0],[-1,1],[1,0]],[[5842,6957],[0,-2],[-1,1],[1,1]],[[5793,6963],[1,0],[-1,-1],[-1,1],[1,0]],[[6085,6775],[-1,0],[0,1],[1,0],[0,-1]],[[9108,926],[0,1],[1,-1],[-1,0]],[[5040,7588],[-1,0],[1,0],[-1,1],[-1,0],[2,0],[0,-1]],[[4971,7463],[1,0],[-1,-1],[0,1]],[[132,4021],[0,-1],[-1,1],[1,0]],[[5075,7452],[1,0],[-2,0],[0,1],[0,-1],[1,0]],[[5208,7138],[-1,0],[0,1],[1,0],[0,-1]],[[5561,6935],[-1,1],[1,1],[0,-2]],[[5073,7449],[0,-1],[-1,0],[0,1],[1,0]],[[6029,6833],[-1,0],[1,1],[0,-1]],[[922,2839],[0,-1],[-1,1],[1,0]],[[5900,7009],[-1,0],[-1,0],[1,1],[1,-1]],[[5203,7666],[-1,0],[0,1],[1,-1]],[[5063,7448],[-1,0],[0,1],[1,-1]],[[5021,7585],[0,-1],[-1,1],[0,1],[1,0],[0,-1]],[[131,4025],[0,-1],[-1,1],[1,0]],[[172,4058],[0,-1],[-1,0],[1,1]],[[6702,7330],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[2,-3],[1,-1],[1,0],[1,0],[0,-2],[1,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[3,0],[3,-2],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[2,-1],[1,0],[2,0],[0,-1],[0,-1],[1,1],[1,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[2,1],[1,0],[0,-1],[-1,-1],[2,0],[-1,-1],[-1,0],[-1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,-1],[-1,1],[0,-1],[2,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[3,0],[0,-1],[-2,0],[-1,-1],[1,0],[1,-1],[2,0],[0,-1],[-1,0],[0,-1],[1,0],[1,1],[1,-1],[-1,-1],[-1,-1],[1,0],[1,0],[0,1],[1,1],[-1,1],[1,0],[0,-1],[1,-1],[1,0],[0,2],[1,0],[0,-1],[0,-2],[-1,0],[1,-1],[1,1],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[1,-1],[2,1],[1,0],[0,-1],[0,-1],[1,0],[1,1],[0,-1],[1,0],[1,0],[-1,1],[0,1],[2,0],[2,-1],[4,0],[1,0],[3,0],[1,-1],[1,-1],[1,0],[2,-1],[1,-2],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,-2],[2,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-2],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,1],[2,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,-1],[2,-1],[3,-1],[1,1],[1,1],[1,1],[2,0],[2,-2],[1,2],[1,-1],[1,0],[2,0],[1,-2],[1,0],[2,-1],[1,1],[1,0],[2,-1],[1,-1],[1,1],[0,1],[1,0],[0,1],[2,-1],[1,-1],[0,-1],[1,0],[1,0],[2,-1],[0,1],[0,2],[1,1],[0,-1],[2,0],[1,4],[1,-1],[1,-1],[0,1],[1,0],[2,0],[1,1],[1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[2,0],[-1,2],[1,0],[0,1],[0,1],[1,0],[0,-1],[2,1],[-2,1],[0,1],[2,0],[0,3],[1,-1],[2,1],[1,0],[1,-2],[3,0],[1,-1],[2,-1],[2,0],[0,1],[-1,1],[1,1],[1,0],[0,-1],[3,1],[1,1],[1,0]],[[6894,7270],[1,0],[1,-1],[-1,0],[-2,-1],[0,-1],[0,-1],[2,-1],[0,-1],[-1,-1],[-1,1],[-1,0],[-1,-1],[1,-1],[-1,-2],[0,-1],[0,-1],[2,0],[1,1],[1,1],[1,-1],[1,-1],[0,-2],[-1,-1],[-2,0],[-1,0],[-2,-1],[1,-1],[4,-2],[1,0],[2,2],[1,1],[1,-1],[0,-1],[1,-1],[-1,-1],[-1,-1],[-1,0],[-2,0],[-1,0],[0,-1],[3,0],[2,1],[0,-1],[1,0],[-1,-2],[-1,0],[-1,1],[-3,0],[2,-2],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[-1,-1],[-3,-1],[0,-1],[1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,1],[0,-2],[-1,-1],[-2,0],[-1,-1],[0,-1],[0,-1],[3,0],[0,-1],[-1,-1],[0,-1],[2,-1],[3,1],[1,0],[1,2],[1,0],[1,-1],[0,-1],[3,-1],[1,0],[2,-2],[0,-1],[-1,-1],[-1,-1],[-2,0],[-2,0],[-2,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[2,-2],[0,-1],[-1,-1],[-3,0],[-1,-1],[0,-1],[0,-1],[3,-2],[2,0],[2,-1],[2,-1],[1,0],[1,-1],[0,-1],[0,-2],[3,-2],[4,-2],[1,0],[5,-2],[3,-1],[4,0],[7,0],[0,-1],[0,-1],[2,-2],[-1,0],[0,-1],[0,-2],[-1,0],[-3,0],[-1,0],[-2,0],[-2,1],[0,1],[-1,2],[-2,0],[-1,-1],[1,-2],[0,-1],[-1,0],[-1,1],[-1,-1],[-1,1],[-1,1],[-2,0],[-1,1],[-2,1],[0,-1],[-1,-1],[3,-1],[-1,-1],[-4,-4],[-1,0],[-3,1],[-1,-1],[0,-2],[1,0],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[-1,-1],[1,-2],[0,-1],[-1,-2],[-1,-1],[-2,-1],[2,0],[1,0],[2,-1],[1,1],[1,1],[1,-1],[0,-2],[1,0],[-1,-1],[0,-1],[-2,0],[-3,-1],[0,-1],[0,-1],[-2,-1],[-2,1],[-1,1],[-1,0],[-2,0],[0,-2],[0,-1],[1,-1],[1,-3],[-3,-1],[-6,1],[-5,0],[-1,1],[-1,1],[-1,1],[-2,1],[-2,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[2,-1],[2,0],[0,1],[-1,1],[-1,2],[1,0],[0,1],[0,1],[-1,0],[-2,1],[-1,-1],[-1,0],[0,1],[0,1],[1,0],[-2,1],[0,1],[-1,1],[-1,0],[-2,2],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,0],[1,-2],[-2,0],[-2,0],[-1,1],[1,1],[2,1],[0,1],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,1],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[-1,1],[-1,2],[-1,0],[-1,-1],[1,-1],[1,0],[-1,-2],[0,-1],[-1,-1],[0,1],[0,1],[-2,0],[-2,0],[-2,2],[-1,1],[-1,1],[0,1],[-1,0],[-2,1],[-1,-1],[-6,0],[-1,1],[-2,0],[0,2],[-2,1],[-2,-1],[-2,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[-2,0],[-2,1],[-2,-1],[-2,1],[-1,1],[-1,1],[0,1],[1,0],[0,1],[-1,2],[-1,0],[-2,0],[0,-2],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,-2],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,-2],[-3,-1],[-1,-1],[-2,1],[-2,1],[-1,2],[-1,1],[-2,0],[-3,3],[-2,0],[-2,2],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[-2,0],[1,1],[0,1],[-1,0],[-1,-1],[-2,0],[0,1],[1,1],[0,1],[-1,1],[-1,0],[0,-2],[-2,-1],[-4,1],[-2,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-2],[-1,-2],[-1,-1],[-2,0],[-1,1],[-3,0],[-2,1],[-6,3],[-1,1],[-1,0],[-1,1],[0,2],[-2,-1],[-1,0],[1,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[-1,1],[-1,-1],[1,-1],[1,0],[-1,-1],[-1,1],[-2,-1],[0,2],[2,1],[-1,1],[-1,1],[0,1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-3,0],[-2,1],[-2,1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-2,-1],[-2,-1],[-1,1],[-1,0],[-3,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-2,-2],[-2,-2],[-2,0],[-1,-1],[-1,-1],[1,-1],[-1,-2],[0,-1],[0,-2],[-1,0],[-2,-2],[1,-1],[0,-1],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,1],[-1,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,2],[-1,0],[0,1],[0,1],[-2,2],[-2,1],[-1,0],[-2,1],[0,1],[0,1],[-1,1],[-1,2],[-1,1],[-1,1],[0,1],[-2,0],[1,1],[0,1],[-1,0],[0,2],[-1,0],[-2,2],[-1,-1],[-1,0],[-1,-1],[-2,0],[0,1],[0,1],[-1,0],[1,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[-2,1],[-2,-1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,-2],[0,-1],[1,-3],[1,-1],[0,-1],[-1,-2],[-1,-2],[-2,-2],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[-1,1],[-2,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[1,-5],[0,-1],[3,-3],[-3,-2],[-2,0],[1,-2],[0,-1],[2,-3],[0,-1],[1,-1],[3,-2],[0,-1],[1,-1],[1,0],[1,2],[1,0],[0,-1],[1,0],[1,1],[0,1],[1,1],[0,-1],[1,-1],[1,-2],[1,-1],[2,0],[0,-1],[1,-2],[0,-1],[2,-1],[1,-1],[1,1],[1,-1],[1,-2],[1,-1],[0,-2],[0,-1],[-1,-1],[-2,0],[0,-3],[2,-1],[1,-1],[3,-1],[2,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[1,0],[1,-1],[1,-1],[-1,-1],[-1,1],[-2,-1],[0,-2],[2,0],[0,1],[2,-1],[0,-1],[3,0],[1,-2],[-1,-1],[-1,-1],[-1,-2],[0,-1],[0,-3],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[3,-2],[1,-1],[2,-2],[1,-1],[0,-1],[0,-2],[1,-1],[2,0],[2,-1],[0,-1],[0,-1],[1,-1],[2,0],[2,1],[2,-2],[0,-1],[-1,0],[0,-2],[0,-1],[1,0],[3,0],[2,-1],[1,-2],[2,-2],[0,-1],[1,-2],[3,-1],[1,-1],[0,-1],[1,-1],[1,-2],[3,-3],[4,-2],[1,-2],[0,-1],[0,-2],[0,-1],[3,-3],[2,0],[2,-1],[1,-1],[1,-2],[3,-3],[1,0],[1,-2],[2,-1],[1,-2],[0,-1],[1,-1],[3,-3],[0,-1],[2,-1],[1,-2],[2,-1],[1,-1],[2,-1],[2,-1],[1,-1],[2,-1],[1,-2],[1,-1],[2,0],[1,0],[1,1],[1,-1],[2,0],[3,-2],[1,-1],[1,-1],[-1,-2],[-1,-2],[-1,-2],[1,-3],[1,-2],[2,-4],[1,-2],[1,-2],[0,-1],[0,-1],[1,-1],[5,-1],[2,-2],[1,-2],[0,-1],[-1,-1],[1,-1],[1,0],[2,-2],[6,-3],[2,-1],[6,-4],[2,-5],[2,-2],[0,-1],[1,-1],[1,-3],[-2,-1],[-3,-1],[-2,-1],[-1,-1],[-3,0],[-2,0],[-1,0],[-2,2],[-2,1],[-1,2],[-1,0],[0,2],[-1,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,-1],[0,1],[1,1],[1,-1],[0,1],[-1,0],[-3,-2],[0,1],[0,1],[1,0],[-1,1],[0,-1],[0,-1],[-1,0],[-2,2],[-2,3],[-1,0],[0,2],[-1,1],[-2,1],[-1,0],[-1,0],[-1,1],[0,1],[-2,1],[-1,0],[-4,2],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,1],[-1,2],[-2,1],[-1,2],[-1,1],[0,1],[-1,0],[-2,2],[0,1],[-3,2],[-2,2],[-1,2],[0,1],[-2,1],[-1,1],[-1,0],[0,1],[-1,1],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,1],[-2,0],[-2,0],[-1,1],[0,2],[-2,1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,1],[0,1],[-4,1],[-3,3],[-1,1],[-1,0],[-3,0],[-3,0],[-2,0],[-3,1],[1,0],[2,0],[0,1],[1,1],[1,0],[2,0],[1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-1,-1],[-5,1],[-4,-1],[0,-1],[-1,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-2,1],[-1,-1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[2,0],[0,-1],[0,-1],[-3,0],[-2,0],[1,-1],[-1,-1],[-2,1],[-1,1],[-1,0],[-1,-1],[-1,1],[0,1],[-1,0],[-1,1],[0,-1],[-2,-1],[0,1],[0,1],[-1,0],[-1,-1],[-2,1],[0,1],[1,1],[2,-1],[0,1],[0,1],[-1,1],[-2,0],[-1,1],[-1,1],[1,0],[1,0],[-1,1],[-1,0],[-1,1],[2,0],[0,1],[-1,0],[-1,1],[1,0],[0,2],[0,1],[-1,1],[5,0],[-2,0],[-1,1],[-2,0],[-1,0],[0,1],[2,0],[2,-1],[0,1],[0,1],[-1,1],[-1,0],[2,0],[1,1],[0,1],[-1,0],[-1,0],[1,-1],[0,-1],[-1,0],[-1,1],[0,-1],[-1,1],[0,1],[-1,1],[-1,0],[-2,1],[-1,1],[0,1],[2,0],[1,0],[0,-1],[1,0],[1,0],[-2,3],[-3,2],[0,1],[-1,1],[-1,0],[1,-1],[1,-1],[2,-3],[0,-1],[-2,0],[-2,0],[-3,2],[-1,1],[0,1],[-2,-1],[-1,0],[-2,1],[-2,1],[-1,1],[-2,2],[-1,0],[-1,0],[-2,2],[0,1],[1,-2],[1,0],[0,1],[1,0],[1,-1],[2,-1],[-1,2],[-1,0],[-2,2],[-1,1],[-2,0],[-1,0],[-1,1],[0,1],[-1,-1],[-1,1],[0,1],[-2,1],[0,1],[-1,1],[-2,1],[-1,0],[-1,0],[-1,1],[-2,2],[1,0],[0,1],[-1,1],[-1,0],[-2,1],[0,1],[-1,1],[0,1],[-2,1],[0,1],[-2,2],[-1,0],[-2,1],[1,1],[-2,1],[0,-1],[-1,1],[0,2],[0,1],[-1,0],[0,1],[-2,0],[-2,2],[0,1],[-1,1],[0,1],[-3,3],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[-2,1],[-1,1],[1,1],[1,1],[2,-2],[1,-1],[0,-1],[1,-1],[1,0],[0,1],[1,1],[0,1],[-1,1],[-1,1],[1,1],[1,-1],[1,0],[-1,1],[2,-1],[1,-1],[3,-3],[1,0],[1,1],[-1,1],[-1,1],[0,1],[2,0],[0,1],[-2,1],[-2,2],[1,1],[1,1],[0,-1],[1,-1],[3,-2],[0,-1],[3,-1],[4,-3],[1,1],[1,0],[7,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-3,-1],[1,-1],[2,-1],[2,-1],[1,1],[1,0],[1,0],[3,-1],[0,-1],[0,-1],[0,-2],[1,-1],[1,0],[0,1],[1,0],[-2,2],[-1,1],[0,1],[-1,1],[0,1],[-4,2],[-1,1],[-1,1],[0,1],[1,0],[1,2],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-4,1],[-2,1],[-2,1],[-1,1],[-1,1],[-1,0],[-2,2],[-4,5],[-2,1],[0,1],[-1,1],[-2,1],[-1,1],[-3,4],[-2,1],[-3,3],[-3,2],[-2,1],[0,1],[0,1],[-2,1],[0,2],[-1,2],[-1,1],[-1,1],[0,1],[-1,2],[-1,0],[0,1],[-1,2],[0,1],[0,1],[0,2],[-1,4],[0,3],[0,2],[1,1],[0,1],[1,1],[-1,2],[2,3],[0,-1],[0,3],[1,2],[0,2],[-1,1],[-1,2],[-1,2],[-1,2],[0,2],[-2,3],[-1,1],[0,1],[0,1],[1,1],[-2,-1],[-1,1],[-6,2],[0,1],[-1,1],[-1,1],[-1,0],[-2,1],[-1,2],[-2,2],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-3,1],[0,1],[-1,1],[-1,1],[1,1],[1,0],[0,1],[-2,1],[-2,1],[1,-1],[1,-1],[0,-1],[-1,0],[-4,2],[-1,1],[0,1],[-1,-1],[-1,1],[-3,1],[2,0],[-3,1],[-4,1],[-3,1],[-1,-2],[-1,0],[-1,-2],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-2],[-1,1],[-1,1],[-1,0],[1,-1],[1,-1],[0,-1],[-1,-1],[-2,-2],[-1,0],[0,-1],[1,-2],[-1,0],[-1,0],[2,-2],[0,-2],[1,-3],[0,-1],[-2,-2],[-2,1],[-1,0],[1,0],[-1,1],[-2,-2],[-1,-1],[-1,0],[0,1],[1,1],[0,1],[1,-1],[1,0],[0,1],[-1,0],[-1,1],[0,2],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-2],[0,-1],[2,-1],[1,-2],[-1,-1],[-1,0],[0,-2],[-2,1],[2,-2],[-1,-2],[-1,-2],[-1,-1],[-1,0],[-1,0],[-1,1],[0,-1],[0,-1],[2,1],[0,-1],[-1,-2],[0,-1],[-1,0],[0,-2],[0,-1],[1,-2],[1,0],[-1,-1],[0,1],[-2,-1],[-2,0],[-1,2],[-1,0],[-1,1],[0,-1],[-1,0],[-1,1],[0,-1],[2,-1],[1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,1],[-1,2],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,2],[-1,0],[-1,0],[0,1],[1,0],[1,-1],[2,0],[1,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[-1,1],[-1,2],[-1,1],[-1,2],[1,0],[-3,0],[0,1],[-1,0],[-1,2],[0,1],[-2,0],[0,2],[0,1],[-1,1],[-2,1],[-2,0],[1,0],[0,2],[0,1],[-1,0],[-1,1],[-1,1],[1,0],[1,1],[0,1],[5,0],[2,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-2,-1],[-5,0],[-1,0],[-1,0],[-1,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[1,1],[0,2],[1,0],[0,2],[-1,1],[-1,0],[-1,1],[1,1],[2,1],[-1,0],[-2,2],[1,0],[3,2],[-2,0],[-3,0],[-1,2],[0,2],[1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,4],[-1,1],[0,1],[1,1],[4,-1],[2,-1],[0,-1]],[[6448,7222],[3,-1],[3,-1],[1,-1],[1,0],[0,-1],[2,2],[1,0],[1,0],[2,0],[2,1],[1,0],[2,-1],[0,-1],[1,-1],[2,0],[1,-1],[1,0],[2,0],[0,1],[1,1],[1,0],[1,1],[2,0],[1,0],[1,-1],[1,1],[0,1],[1,1],[-1,1],[1,0],[-2,1],[-1,0],[0,1],[1,1],[1,0],[2,0],[-1,0],[1,1],[3,-2],[1,0],[1,-2],[4,0],[1,-1],[1,0],[1,1],[1,-1],[2,0],[2,-1],[0,2],[0,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,-1],[1,1],[1,-1],[1,0],[1,0],[1,-2],[2,2],[1,0],[3,1],[0,1],[1,1],[1,-1],[1,1],[2,1],[1,1],[2,1],[0,1],[0,2],[0,1],[1,0],[0,1],[-1,2],[2,0],[1,1],[1,1],[1,1],[1,2],[0,2],[1,0],[0,-1],[2,1],[0,-1],[1,0],[-1,-2],[-1,-2],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[-1,-2],[1,-1],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-2],[1,0],[1,-2],[2,1],[1,0],[1,1],[2,0],[1,1],[0,1],[0,1],[0,1],[1,2],[1,0],[2,-2],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,1],[1,1],[0,-1],[2,0],[1,0],[0,1],[0,1],[1,1],[1,0],[1,1],[1,0],[3,-1],[1,0],[1,0],[1,2],[1,0],[2,1],[0,1],[-1,0],[-1,0],[-1,1],[-2,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[-1,1],[-1,1],[0,1],[0,1],[2,0],[0,1],[0,1],[1,0],[2,0],[1,1],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[1,0],[-1,0],[0,-1],[-1,-1],[0,1],[0,1],[1,1],[-1,0],[1,1],[-1,1],[-1,0],[-1,-2],[-1,0],[1,-2],[-1,-1],[-1,2],[0,1],[0,-1],[-1,0],[0,2],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[2,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[2,1],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[2,-1],[0,1],[0,-1],[1,1],[0,2],[1,1],[1,1],[1,-1],[0,-1],[1,0],[1,1],[1,1],[0,1],[1,0],[0,-1],[1,1],[1,0],[1,0],[2,-1],[2,-1],[0,-1],[2,3],[2,0],[2,0],[-1,1],[-1,1],[-1,1],[1,0],[0,1],[1,0],[-1,1],[0,1],[0,1],[1,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,2],[0,1],[1,1],[1,0],[-1,0],[0,1],[1,0],[-1,0],[1,1],[0,1],[1,0],[-1,2],[-1,0],[-2,1],[-1,1],[-1,-1],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[1,0],[-1,0],[0,1],[-1,1],[1,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[-1,0],[1,1],[2,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,1],[2,1],[1,0],[1,0],[3,0],[0,-1],[-1,0],[1,0],[1,1],[1,-1],[-1,0],[1,-1],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[-1,2],[6,1],[1,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[4,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[2,0],[1,1],[0,-1],[1,1],[0,1],[-1,1],[-1,2],[0,1],[1,0],[2,0],[1,0],[2,1],[1,0],[1,0],[2,-1],[1,-1],[0,-1],[2,1],[1,0],[1,1],[0,-1],[1,0],[2,-1],[0,1],[3,0],[0,1],[0,1],[-2,1],[-1,0],[0,2],[0,2],[-1,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,-1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[2,-1],[-1,0],[-1,0],[1,-1],[2,0],[1,-1],[1,0],[1,0],[0,-2],[2,1],[1,0],[-1,-1],[1,0],[1,0],[0,-1],[2,-1],[1,0],[0,-1],[1,-1],[1,0],[2,0],[2,0],[1,0]],[[6856,6907],[1,-1],[-1,-2],[0,-1],[1,-1],[0,-1],[-1,-2],[3,-2],[3,-3],[2,-2]],[[6864,6892],[-1,0],[-1,-1],[2,-2],[-2,1],[0,1],[-2,1],[-2,3],[-1,0],[-2,1],[0,1],[-3,1],[-1,1],[-4,3],[-4,2],[-6,5],[0,1],[1,0],[1,1],[-1,2],[-1,0],[0,1],[-1,0],[-1,-1],[-2,1],[-2,1],[-1,0],[-1,1],[-2,0],[-2,1],[-1,1],[1,0],[1,1],[2,0],[2,0],[-2,0],[-2,0],[-2,1],[0,1],[-1,1],[0,-1],[-1,0],[-2,1],[-3,1],[0,1],[-1,0],[0,1],[-1,0],[-2,2],[-1,0],[-3,2],[0,1],[1,0],[0,1],[0,1],[-1,-1],[0,-1],[-1,1],[-1,1],[-1,1],[-2,0],[-1,1],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,1],[-1,1],[-3,1],[-1,1],[0,-1],[2,-1],[2,-2],[1,-1],[1,-2],[0,-1],[-1,0],[-1,1],[1,0],[0,1],[0,1],[-1,1],[-1,-1],[-2,1],[-2,0],[-1,1],[-3,1],[-4,2],[-7,1],[-1,1],[-4,1],[-1,1],[0,1],[1,0],[1,1],[-1,0],[-2,1],[0,1],[-1,0],[-1,1],[0,-1],[-3,0],[-1,1],[-1,1],[-7,3],[-3,3],[-2,0],[-1,-1],[-2,0],[-3,0],[-1,1],[-1,0],[-3,0],[-2,2],[-3,0],[0,1],[1,-1],[1,2],[0,1],[-1,0],[0,-1],[0,1],[-1,2],[2,-1],[3,-2],[5,0],[4,0],[2,-1],[4,0],[2,0],[2,-1],[1,-1],[2,0],[5,-2],[2,-2],[1,0],[2,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,-1],[0,1],[0,1],[-1,0],[1,0],[1,-1],[2,0],[3,-2],[1,0],[1,-1],[2,-1],[2,-1],[-1,1],[-1,1],[3,-1],[0,-1],[2,-1],[0,-1],[1,-1],[1,0],[1,0],[-4,3],[1,0],[0,1],[1,0],[-1,1],[-1,0],[0,-1],[0,-1],[-2,1],[-2,2],[2,3],[1,0],[3,0],[3,-1],[1,0],[2,-2],[1,3],[3,-2],[2,-2],[-1,0],[0,-2],[2,-2],[0,-1],[2,0],[-1,-2],[0,-1],[2,0],[3,-1],[2,-2],[2,-1],[0,-1],[1,-1],[2,0],[1,-1],[2,-1],[1,-1],[2,-1],[1,-1],[-1,-2],[4,-1],[1,-3],[0,1],[1,0],[2,-1],[2,-3],[1,-1],[1,0],[0,-1],[2,0],[1,1],[3,0],[3,1],[1,-1],[2,-3],[1,0],[3,-2],[0,-1]],[[6511,7189],[2,0],[1,-1],[1,-2],[-1,0],[-1,-1],[0,-2],[1,-3],[0,-1],[1,-2],[1,-1],[1,-4],[2,-3],[1,-1],[1,0],[1,1],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-1,-3],[0,-1],[0,-1],[0,-1],[-1,0],[0,-3],[0,-1],[1,-2],[1,-4],[0,-2],[-2,1],[0,-1],[0,-1],[2,-2],[1,-2],[0,-1],[-1,0],[-1,-1],[2,-3],[1,-2],[1,-1],[1,-2],[-1,0],[0,-1],[1,0],[1,0],[1,-1],[-1,-2],[-1,0],[0,-1],[-2,2],[1,-2],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-2,2],[0,1],[1,0],[-1,2],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,4],[0,1],[0,2],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,2],[-2,6],[0,3],[1,1],[1,-1],[1,-3],[2,-1],[2,0],[1,1],[0,1],[-1,2],[0,1],[0,1],[-1,3],[0,1],[-1,0],[-1,1],[0,1],[1,1],[0,1],[-1,2],[-1,1],[-1,0],[-2,1],[-1,2],[-1,1],[0,1],[-1,2],[2,2],[1,1],[0,1],[0,1],[2,1],[0,-1]],[[6533,7196],[1,-1],[-1,1],[-1,0],[3,-4],[0,-1],[1,-1],[1,-2],[-3,1],[0,-1],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,-2],[-2,-1],[0,-3],[1,-2],[2,-1],[1,0],[1,0],[1,0],[1,-2],[0,-1],[0,-1],[1,-1],[1,-1],[2,-1],[2,-1],[0,-1],[0,-1],[-1,1],[1,-2],[-1,0],[-4,0],[-1,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[0,1],[-1,1],[-2,0],[-3,1],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,-1],[-1,0],[1,-1],[1,-1],[-1,0],[-1,0],[-2,2],[-1,-1],[1,0],[-2,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,2],[-3,3],[0,1],[0,1],[0,1],[3,0],[0,1],[-1,1],[1,2],[2,-1],[1,-1],[1,1],[1,0],[0,2],[-1,1],[1,0],[1,2],[-1,1],[0,2],[1,1],[0,-1],[-1,2],[0,1],[1,-2],[1,0],[0,2],[-1,1],[1,1],[2,0],[1,-1]],[[6692,6996],[2,0],[3,0],[4,0],[1,0],[1,0],[0,-1],[3,0],[3,0],[0,-1],[0,1],[4,-1],[0,-1],[1,-1],[0,1],[0,1],[6,-1],[0,-1],[-2,0],[0,-1],[1,0],[1,0],[2,1],[2,-2],[3,-1],[-1,-2],[-1,-1],[-2,-2],[-1,0],[-3,-1],[-2,0],[-5,0],[-3,-1],[-2,1],[-1,0],[-1,0],[-2,0],[-2,0],[-5,1],[-1,0],[-2,1],[0,1],[-1,1],[0,-1],[-2,1],[0,1],[-1,0],[0,-1],[-1,1],[-2,1],[0,2],[1,-1],[0,-1],[1,1],[0,2],[1,1],[1,0],[-1,0],[0,1],[-1,1],[-1,2],[1,0],[4,-1]],[[6700,6980],[0,-1],[-1,0],[0,-1],[2,0],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,0],[2,-1],[-1,-1],[1,0],[2,-2],[-1,0],[-1,0],[3,-1],[1,-1],[2,0],[1,0],[4,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[6,0],[3,-1],[1,0],[4,-1],[2,1],[2,-1],[3,1],[3,-1],[1,-1],[-1,0],[-2,-1],[-4,0],[-1,0],[-4,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-7,0],[-7,1],[-4,0],[-4,0],[-2,0],[-3,0],[-3,1],[-2,1],[-2,0],[-3,1],[-2,1],[-1,0],[-2,0],[0,1],[-4,2],[-2,0],[-1,1],[1,0],[1,0],[3,-1],[0,1],[1,1],[2,0],[1,0],[3,0],[2,0],[1,-2],[1,0],[1,-1],[3,1],[-2,0],[-1,2],[-1,0],[0,1],[-1,-1],[-2,2],[1,0],[1,1],[2,0],[1,0]],[[6558,7125],[0,-1],[0,1],[-1,2],[0,1],[0,1],[2,-1],[1,1],[2,-2],[1,-2],[1,0],[0,-1],[0,-1],[1,-1],[2,-2],[1,0],[2,-1],[1,0],[1,-1],[0,-1],[2,-3],[-1,0],[-1,1],[-1,1],[-2,1],[0,-1],[-1,1],[0,1],[-1,1],[-2,0],[-2,2],[-2,1],[-1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[2,-2],[1,0],[1,-1],[0,-1],[3,-3],[1,-2],[1,1],[-1,2],[0,1],[1,0],[2,-2],[2,-1],[1,-1],[2,-2],[0,-1],[3,-1],[0,-1],[1,-2],[1,0],[4,-3],[1,-1],[0,-1],[-6,3],[-1,1],[2,-2],[3,-3],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,1],[-1,1],[-1,0],[-1,0],[-2,1],[-1,1],[-1,-1],[1,0],[2,-2],[2,-2],[-1,0],[-1,0],[-5,4],[-1,1],[0,1],[1,-1],[0,1],[-1,2],[0,1],[2,0],[0,1],[-3,2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[1,0],[-2,3],[-1,0],[-2,2],[0,1],[-2,1],[-1,0],[-1,0],[-2,2],[-1,1],[2,0],[0,1],[-1,1],[-1,2],[-1,0],[-1,2],[1,0],[-1,1],[-2,2],[-1,1],[-2,2],[-1,1],[-1,2],[-2,1],[1,1],[-1,0],[-1,1],[-2,3],[0,2],[3,-3],[3,-5],[2,-1],[2,-2],[1,-2],[2,-1]],[[6712,6953],[1,0],[1,-1],[2,0],[1,0],[1,-1],[2,0],[3,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[5,0],[1,0],[1,0],[1,1],[0,-1],[2,-1],[3,0],[1,0],[1,0],[2,-1],[0,-1],[1,-2],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-8,1],[-3,0],[-2,1],[-1,-1],[-2,-1],[-1,0],[-2,-1],[-3,-1],[-1,1],[1,0],[0,1],[-2,-1],[-3,1],[-2,-1],[-3,1],[-2,1],[-1,0],[-1,0],[-2,0],[0,1],[-1,-2],[-2,2],[0,1],[2,1],[0,1],[1,0],[3,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,-1],[-2,1],[1,1],[2,0],[3,0],[2,-1]],[[6560,7078],[1,-2],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[2,-1],[0,1],[1,0],[1,-2],[1,-2],[0,-2],[1,-1],[1,-2],[1,0],[2,-3],[1,0],[0,1],[0,1],[2,-2],[0,-1],[0,-1],[2,0],[1,-2],[1,-1],[3,-2],[1,-1],[0,-1],[-1,0],[-3,1],[-1,0],[0,1],[-2,2],[-1,-1],[1,0],[1,-2],[2,-2],[2,-1],[0,-1],[-1,1],[-2,1],[-5,5],[-2,3],[-1,0],[-2,5],[-1,1],[-1,1],[0,1],[-4,4],[-3,2],[-1,2],[-3,3],[-1,0],[0,-1],[-4,2],[-1,1],[1,1],[1,0],[-1,0],[1,-2],[1,-1],[1,0],[0,1],[-1,0],[-1,1],[1,0],[1,-1],[1,0],[-1,1],[-1,2],[0,1],[5,-4]],[[6772,6931],[2,0],[1,-1],[2,0],[2,-1],[5,-1],[3,-1],[-1,0],[0,-1],[3,0],[3,0],[1,-1],[3,-1],[2,-1],[1,-2],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-3,1],[-1,1],[-2,0],[-1,1],[-2,-1],[-2,1],[-3,1],[-2,0],[-2,1],[-2,1],[-2,0],[-2,0],[0,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-5,2],[0,1],[1,1],[2,1],[1,0],[1,0],[1,0],[-1,-1],[4,-1]],[[6668,6963],[0,-1],[-1,-1],[1,0],[1,1],[2,1],[1,0],[1,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,-1],[-2,0],[-3,-1],[-4,0],[0,1],[2,1],[0,2],[0,1],[-2,-1],[-1,0],[0,1],[2,2],[3,1],[1,0],[1,0],[3,0],[2,0]],[[6547,7153],[0,-1],[-1,0],[-1,-1],[1,0],[4,-4],[2,-2],[1,0],[2,-3],[1,-1],[0,-2],[-1,-1],[-1,0],[-1,2],[-4,3],[0,1],[0,-1],[-2,1],[-1,2],[-1,0],[2,-2],[-2,1],[-1,-1],[-1,0],[-1,0],[-2,2],[-2,2],[1,1],[2,0],[2,-2],[0,1],[-1,2],[1,-1],[1,0],[1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[2,0],[2,-2],[0,1],[0,1],[2,0],[1,-1]],[[6684,6992],[1,-2],[-1,0],[-2,0],[0,1],[-1,0],[-3,1],[-1,1],[-1,1],[-4,2],[-3,0],[-1,1],[0,2],[1,0],[4,0],[2,0],[3,-2],[1,0],[1,-1],[1,-1],[1,0],[1,-2],[1,-1]],[[6597,7059],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[2,-1],[1,-1],[2,-2],[-1,-1],[-2,1],[-2,2],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[-3,2],[0,1],[0,1],[-1,0],[-2,2],[-1,1],[0,1],[1,0],[-1,1],[1,0],[0,-1],[2,-1],[2,0],[1,-1],[1,-2],[1,-1]],[[6513,7138],[1,0],[1,0],[1,-1],[1,-1],[0,-2],[0,-2],[0,-1],[-1,0],[1,-1],[0,-1],[1,-3],[2,-2],[1,-1],[1,-1],[0,-1],[-1,1],[-1,2],[-1,0],[0,-1],[0,1],[-1,1],[-1,0],[1,-2],[-2,-1],[0,1],[-2,0],[0,1],[1,2],[1,1],[0,1],[-1,3],[-1,0],[-1,1],[-1,3],[0,2],[0,2],[0,1],[1,0],[0,-2]],[[6576,7077],[2,-1],[2,-2],[2,-1],[1,0],[1,-2],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-2],[-1,0],[0,-1],[-1,0],[0,2],[-1,1],[0,1],[-1,0],[1,-1],[0,-1],[-2,2],[1,-1],[-1,-1],[-2,3],[-3,3],[-2,2],[-1,0],[-1,2],[-2,1],[1,1],[-1,1],[0,1],[2,-2],[1,-1]],[[6725,6930],[1,0],[1,0],[2,0],[2,-1],[-1,-1],[-1,-2],[-2,-1],[-1,0],[-1,0],[1,1],[-2,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,1],[1,2],[1,1],[1,1],[1,-1],[1,0]],[[6589,7049],[1,-1],[-1,0],[1,-1],[6,-5],[2,-2],[1,-1],[1,-1],[2,-1],[1,-1],[2,-1],[1,-1],[-1,0],[-1,1],[-6,4],[-1,0],[-2,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,-1],[-1,1],[0,1],[-1,2],[-2,2],[1,0],[2,0]],[[6681,7008],[2,-1],[1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[0,1],[1,1],[1,-1],[2,0],[0,1],[0,1],[-2,0],[2,0],[4,0],[2,-1],[1,-1],[1,0]],[[6552,7099],[-2,0],[-2,2],[-2,1],[0,1],[2,0],[1,1],[-1,1],[0,2],[1,1],[2,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1]],[[6554,7089],[2,-1],[1,-2],[1,0],[0,1],[1,0],[1,-2],[-1,-1],[-3,1],[0,1],[-1,0],[-1,1],[-2,1],[0,-1],[2,-3],[-1,0],[-1,2],[0,1],[-2,2],[0,2],[1,0],[1,-1],[1,-1],[1,0]],[[6522,7120],[1,0],[-1,1],[1,0],[1,-1],[2,-1],[2,-3],[1,-1],[-1,-1],[-1,0],[-2,2],[-1,2],[-3,1],[1,1],[-1,0],[-1,2],[2,-2]],[[6570,7098],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,1],[-1,0],[0,-1],[-2,-1],[-1,1],[-2,2],[0,1],[0,1],[1,0]],[[6618,7044],[0,-1],[1,-1],[2,-1],[1,-1],[2,-3],[-1,0],[-1,0],[-2,1],[-1,3],[-1,-1],[-1,1],[-1,2],[-1,1],[0,1],[1,0],[1,-2],[0,1],[1,1],[0,-1]],[[6508,7135],[-1,-1],[-1,0],[-1,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,1],[3,-4],[0,-1],[-2,2],[-2,0],[0,1],[1,1],[-1,2],[1,0],[1,2],[2,1],[0,-1],[1,-1]],[[6618,7028],[2,-1],[1,0],[2,0],[2,-2],[3,-2],[1,0],[-2,0],[-1,0],[-3,1],[-2,1],[-1,1],[-2,1],[0,1]],[[6580,7063],[1,-1],[-1,1],[-1,1],[-1,1],[-2,2],[-1,1],[-1,0],[-1,1],[0,3],[1,0],[1,-1],[2,-2],[0,-1],[2,-2],[1,0],[0,-1],[0,-1],[0,-1]],[[6569,7079],[1,-1],[0,-1],[0,-1],[-2,2],[0,-1],[-2,2],[-1,1],[0,1],[-2,2],[0,1],[2,-2],[2,-2],[1,0],[1,-1]],[[6811,6925],[1,-1],[1,0],[-1,-1],[0,-1],[-1,1],[-1,1],[-1,0],[-1,0],[-2,2],[2,-1],[-2,2],[-1,1],[2,0],[1,0],[0,-1],[3,-2]],[[6543,7106],[-1,-2],[0,-1],[2,-1],[1,-2],[-1,0],[-2,1],[-1,1],[1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[2,0],[1,-1]],[[6590,7051],[1,-1],[0,1],[1,-1],[-1,0],[1,-1],[2,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-2],[-1,1],[-1,0],[-3,2],[-2,2],[-1,1],[0,-1],[-1,1],[1,1]],[[6666,7003],[0,-1],[0,-1],[-2,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[1,0],[0,1],[2,0],[1,-1]],[[6554,7159],[0,-1],[-4,2],[-1,0],[-1,1],[0,2],[1,0],[3,-2],[2,-2]],[[6549,7093],[1,-1],[1,0],[-1,-1],[-1,0],[-1,1],[0,-2],[-1,0],[-2,2],[0,1],[1,0],[1,-1],[-1,2],[1,0],[2,-1]],[[6565,7106],[-1,0],[-1,1],[-1,0],[-2,2],[-1,1],[-2,2],[2,0],[1,-1],[1,-2],[2,-1],[2,-2]],[[6713,6964],[-2,-1],[-4,1],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[-1,0]],[[6527,7169],[2,-1],[1,-2],[-1,0],[-1,0],[-1,0],[0,1],[-2,1],[-1,1],[2,-1],[1,1]],[[6535,7099],[2,-1],[3,-2],[0,-1],[-1,1],[-1,0],[-1,0],[0,1],[-2,1],[-2,1],[-1,2],[1,0],[2,-2]],[[6638,7031],[2,-2],[0,-1],[1,-2],[-1,0],[0,1],[-2,2],[-2,1],[1,0],[1,1]],[[6627,7030],[1,-1],[1,0],[-1,-2],[-2,1],[0,1],[1,0],[-2,2],[-1,1],[2,0],[1,-2]],[[6546,7158],[2,-1],[1,-2],[-3,0],[-1,2],[1,0],[0,1]],[[6464,7162],[1,0],[0,-1],[0,-1],[-1,1],[-1,-1],[0,-1],[-1,0],[0,1],[1,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[2,-1]],[[6652,6954],[1,-1],[1,-1],[-1,-2],[-1,0],[-1,3],[1,1]],[[6531,7112],[1,-2],[-2,1],[0,-1],[-1,1],[-1,0],[0,1],[1,1],[2,-1]],[[6553,7152],[-1,1],[-1,0],[0,2],[2,-1],[1,0],[0,-1],[-1,-1]],[[6681,6974],[1,-2],[1,1],[2,-1],[0,-1],[-1,0],[-1,0],[0,1],[-3,1],[-1,-1],[0,1],[1,0],[1,1]],[[6554,7137],[-1,1],[-2,2],[-3,3],[2,-1],[3,-3],[1,-2]],[[6509,7116],[-1,2],[-1,1],[1,0],[1,-1],[2,0],[0,-1],[-2,-1]],[[6545,7092],[-2,0],[-1,1],[-1,1],[1,0],[1,0],[1,-1],[1,-1]],[[6573,7067],[2,-3],[-1,0],[-2,1],[0,1],[1,0],[-1,0],[0,1],[1,0]],[[6815,6922],[2,-2],[-1,0],[-1,0],[1,0],[-2,0],[0,1],[-1,0],[1,0],[1,0],[0,1]],[[6631,6957],[-1,-1],[-1,1],[-1,0],[3,1],[1,0],[-1,-1]],[[6696,6928],[-2,0],[-1,-1],[-1,0],[2,2],[2,0],[0,-1]],[[6633,7029],[-1,-1],[-1,1],[-1,1],[-1,0],[1,1],[2,-2],[1,0]],[[6562,7080],[1,-2],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[1,-1],[2,-1],[1,0]],[[6659,7003],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[2,1],[1,0],[0,-1]],[[6804,6927],[1,0],[1,-1],[0,-1],[-2,1],[-1,1],[-1,1],[2,-1]],[[6623,7030],[0,-1],[1,1],[1,-1],[1,-1],[-2,0],[-1,1],[-1,1],[-1,1],[1,0],[1,-1]],[[6572,7079],[0,-1],[-1,0],[-2,2],[1,1],[1,-2],[1,0]],[[6633,7031],[-1,0],[-2,2],[1,1],[2,-1],[0,-1],[0,-1]],[[6720,6928],[-1,0],[0,1],[-1,0],[1,1],[1,0],[1,0],[-1,-2]],[[6822,6919],[-1,-1],[0,1],[-2,0],[-1,1],[2,0],[1,0],[0,-1],[1,0]],[[6509,7145],[0,1],[0,1],[1,1],[0,-2],[0,-1],[-1,0]],[[6635,7033],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[2,-1],[0,-1]],[[6598,7037],[-1,0],[-3,1],[0,1],[2,-2],[2,0]],[[6585,7056],[1,-2],[0,1],[0,-1],[-2,1],[0,2],[1,-1]],[[6562,7081],[-3,2],[1,0],[2,-1],[0,-1]],[[6611,7046],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[2,-1],[1,-1]],[[6556,7114],[1,-1],[-1,0],[-1,2],[1,0],[0,-1]],[[6594,7054],[0,-1],[-1,1],[0,1],[-2,0],[0,1],[1,0],[1,-1],[1,-1]],[[6598,7037],[0,-1],[1,0],[1,0],[-1,-1],[-1,1],[0,1]],[[6590,7044],[0,-1],[-2,0],[0,1],[-1,0],[2,0],[1,0]],[[6718,6929],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[6611,7029],[-2,1],[-1,0],[-1,1],[1,-1],[3,-1]],[[6614,7047],[-1,-1],[0,1],[-1,1],[2,0],[0,-1]],[[6608,7033],[-1,-1],[0,1],[0,1],[1,-1]],[[6712,6928],[-1,-1],[0,1],[1,0],[1,0],[-1,0]],[[6530,7113],[1,-1],[-1,0],[-1,1],[0,1],[1,-1]],[[6510,7125],[1,-1],[-1,0],[-1,2],[-1,1],[2,-2]],[[6556,7103],[-1,1],[0,1],[1,-2]],[[6531,7117],[0,-1],[-1,0],[-1,1],[2,0]],[[6604,7050],[-1,-1],[-1,1],[1,1],[1,-1]],[[6586,7050],[0,-1],[-1,1],[1,0],[-1,0],[0,1],[1,0],[0,-1]],[[6801,6930],[0,-1],[0,-1],[-1,1],[0,1],[1,-1],[0,1]],[[6750,6950],[-1,-1],[-1,1],[1,0],[1,0]],[[6687,6972],[0,-1],[-1,1],[1,0]],[[6520,7122],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[1,1],[0,-1]],[[6602,7058],[0,-1],[-1,1],[1,0]],[[6531,7197],[-1,1],[1,0],[0,-1]],[[6604,7048],[1,0],[-1,0],[-1,1],[1,0],[0,-1]],[[6549,7087],[0,-1],[-1,1],[1,0]],[[6606,7032],[-1,1],[1,0],[0,-1]],[[6512,7123],[-1,0],[0,1],[1,-1]],[[6830,6914],[-1,0],[0,1],[1,0],[0,-1]],[[6587,7047],[0,-1],[-1,1],[0,1],[1,-1]],[[6603,7034],[0,-1],[-1,0],[0,1],[0,-1],[1,1]],[[6590,7042],[0,-1],[1,0],[-2,0],[1,1]],[[6616,7046],[-1,-1],[0,1],[1,0]],[[6667,6998],[-1,0],[0,1],[1,-1]],[[6704,6953],[-2,0],[1,0],[1,0]],[[6634,7028],[0,-1],[-1,1],[0,1],[1,-1]],[[6602,7050],[-1,0],[0,1],[1,-1]],[[6654,7006],[0,-1],[-1,1],[1,0]],[[6589,7055],[1,-1],[-1,0],[0,1]],[[6733,6928],[-1,0],[0,1],[1,0],[0,-1]],[[6585,7094],[-1,0],[0,1],[1,-1]],[[6591,7047],[-1,1],[1,0],[0,-1]],[[6714,6945],[0,-1],[-1,0],[-1,1],[2,0]],[[6586,7049],[-1,-1],[0,1],[1,0]],[[6533,7122],[-1,0],[0,1],[1,-1]],[[6594,7039],[-1,0],[-1,0],[2,0]],[[6605,7032],[-1,0],[0,1],[1,-1]],[[6735,6931],[-1,-1],[0,1],[1,0]],[[6682,6971],[-1,0],[1,1],[0,-1]],[[6589,7052],[0,-1],[-1,1],[1,0]],[[6733,6930],[-1,0],[1,1],[0,-1]],[[6618,7033],[-1,-1],[0,1],[1,0]],[[7169,7538],[0,1],[3,1],[1,1],[2,-2],[3,0],[-1,-1],[0,-1],[-1,-1],[1,0],[1,-2],[4,-1],[1,0],[0,-2],[-1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[2,-2],[0,-1],[1,-1],[1,-1],[1,1],[0,1],[3,0],[2,-1],[3,1],[1,0],[0,-1],[-1,0],[1,0],[1,-1],[0,-1],[1,-2],[1,0],[1,-1],[2,0],[0,-1],[-1,0],[0,-1],[1,-2],[1,0],[0,-1],[1,-1],[-1,0],[1,-1],[-1,0],[0,-3],[1,0],[2,0],[1,-1],[3,0],[3,2],[1,0],[1,0],[0,1],[1,-1],[1,1],[0,-1],[1,0],[0,-1],[1,1],[-1,0],[0,1],[2,-1],[1,1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,1],[1,-1],[0,-1],[0,-1],[1,-1],[1,1],[0,-2],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[1,-1],[-1,0],[1,0],[1,-1],[1,0],[0,-1],[2,0],[-1,-1],[1,0]],[[7231,7490],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,0],[-4,-2],[-2,0],[-1,0],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[0,-1],[0,-1],[-2,-3],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-4,0],[-1,0],[-1,1],[-4,3],[-1,0],[-1,0],[-2,-1],[0,-1],[-1,-3],[0,-2],[-2,0],[-2,0],[-3,1],[-1,1],[-1,0],[-1,0],[1,-1],[-1,-1],[-2,-2],[-2,1],[-1,-2],[1,0],[-1,-2],[-2,0],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-2],[-1,-1],[-1,-1],[-3,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-2,-1],[2,-1],[-1,-1],[-2,1],[-1,-2],[-1,-2],[-1,-2],[0,-1],[1,-2],[2,-3],[0,-2],[-1,-1],[-1,-3],[-1,0],[-1,1],[-1,0],[-2,0],[0,-1],[-2,0],[1,-1],[-2,-1],[0,-1],[-2,-3],[-1,-2],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-2,-2],[0,-2],[1,-1],[0,-1],[0,-2],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,-1],[0,-1],[-1,-1],[-2,-1],[0,-1],[-3,-1],[1,-2],[2,0],[0,-2],[0,-1],[-1,0],[1,0],[-1,-2],[0,-1],[1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-2,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-2],[-1,0],[0,-2],[-4,-1],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[0,-1],[0,-1],[-1,-3],[-1,-1],[-1,-1],[1,-1],[2,-1],[1,0],[0,-1],[0,-1],[-2,-3],[-1,-1],[-2,1],[-1,-1],[-2,1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[-2,0],[0,-1],[-1,-1],[0,-1],[-2,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,-2],[-1,-3],[2,0],[-2,-2],[0,-1],[-1,-1],[0,-1],[-1,1],[0,-1],[0,-1],[-2,-3],[2,-2],[0,-1],[2,0],[0,-1],[1,-2],[0,-1],[-2,-2],[1,-1],[-2,-1],[-2,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-2],[0,-1],[0,-3],[0,-1],[-2,0],[0,-2],[1,-1],[-1,-1],[-2,0],[0,1],[-3,-1],[-1,-4],[-2,-1],[-1,-1],[-2,0],[-1,2],[-3,0],[-3,0],[-1,1],[0,1],[-2,0],[0,-2],[-3,1],[-1,1],[0,1],[-7,-2],[-1,0],[-2,-2],[1,-5],[-3,0],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-2,1],[-1,-1],[0,-1],[-1,-1],[-1,2],[-1,0],[-2,1],[-1,1],[-3,2],[-1,0],[-2,1],[-1,-1],[0,-1],[-2,-2],[-1,-1],[-1,0],[-2,1],[-2,1],[0,-1],[-1,1],[-1,-1],[-1,1],[-1,1],[-3,-2],[0,1],[-1,-1],[-2,-1],[-1,-2]],[[7010,7292],[-1,-1],[0,1],[-1,1],[-1,-1],[0,1],[-2,0],[0,1],[-1,1],[-1,1],[-1,-1],[-3,-1],[0,1],[-2,1],[-1,1],[0,1],[-3,-4],[-1,1],[-1,-1],[-1,1],[0,2],[-1,1],[-7,0],[-2,-2],[-3,-1],[-1,0],[-1,0],[-1,-1],[-2,-2],[-3,2],[-2,1],[-1,2],[-1,0],[-1,0],[0,1],[-2,1],[-1,-1],[-1,1],[-1,0],[-2,-2],[-3,0],[-3,1],[0,-1],[-3,-2],[-1,0],[-1,-1],[0,-1],[2,-1],[-2,-1],[-3,-2],[0,-2],[-3,-1],[-1,-1],[-1,-1],[-3,-1],[-1,1],[-7,-4],[2,-2],[-1,-1],[0,1],[-5,0],[0,1],[-3,-1],[1,0],[-5,0],[0,1],[0,1],[-1,3],[-3,0],[-3,-4],[1,-3],[0,-1],[-4,0],[-2,-1],[-1,-1],[1,-3],[-1,0],[0,1],[-3,0],[-4,1],[-2,-2]],[[6702,7330],[-1,0],[-2,1],[-1,1],[-3,1],[1,1],[0,1],[0,1],[-1,1],[0,2],[-1,1],[-1,-1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[1,1],[2,0],[0,1],[0,1],[0,1],[0,1],[-3,0],[-2,1],[1,1],[0,1],[-2,-1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[1,3],[-1,0],[0,2],[2,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-3,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,1],[0,-1],[-2,0],[-1,0],[-1,1],[0,1]],[[6749,7495],[3,2],[3,-1],[1,1],[0,-1],[0,-1],[1,0],[2,-1],[2,0],[3,0],[1,-1],[1,-2],[1,0],[0,-1],[2,-1],[1,-1],[2,-2],[0,-1],[1,-2],[1,-1],[1,0],[2,-2],[3,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-2],[1,0],[1,0],[1,1],[1,-1],[1,-2],[2,0],[2,-2],[1,0],[0,-1],[2,-1],[1,-1],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[2,0],[2,0],[1,0],[3,0],[1,0],[3,0],[2,1],[2,-1],[2,1],[2,0],[4,0],[9,-1],[1,0],[1,0],[3,0],[3,-1],[4,0],[4,2],[2,0],[2,0],[1,1],[1,0],[1,0],[2,-1],[2,0],[2,1],[2,0],[3,0],[5,0],[1,0],[2,1],[3,2],[0,2],[1,1],[3,0],[2,1],[2,-1],[2,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,1],[0,1],[-1,1],[0,1],[1,1],[-1,1],[1,1],[1,1],[-1,1],[1,1],[-1,1],[-1,1],[1,1],[3,0],[1,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,-1],[2,1],[2,0],[2,-1],[1,1],[0,1],[1,0],[1,1],[1,-1],[2,0],[0,-1],[1,1],[1,0],[1,1],[1,-1],[1,0],[1,0],[1,1],[1,-1],[1,0],[2,-1],[3,1],[0,-1],[2,0],[1,1],[0,1],[2,0],[0,1],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[0,-1],[1,0],[1,0],[1,0],[2,2],[1,0],[-1,-1],[1,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,2],[1,1],[1,1],[-1,2],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[3,2],[1,-1],[0,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[2,-1],[1,0],[1,2],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,1],[0,-1],[-1,-2],[-1,0],[1,-1],[0,-1],[1,0],[0,1],[2,1],[0,-1],[2,0],[0,2],[0,-1],[1,0],[1,0],[1,-1],[1,1],[1,-2],[0,-1],[-1,-1],[0,-1],[1,1],[2,0],[0,1],[2,1],[1,0],[0,2],[2,-1],[0,1],[1,0],[2,1],[1,-1],[1,0],[1,1],[1,0],[-1,1],[1,1],[1,0],[1,1],[2,2],[1,0],[0,1],[0,1],[0,1],[1,0],[2,0],[2,-1],[1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,-1],[2,-1],[3,0],[-1,1],[2,0],[0,2],[1,0],[-1,0],[1,1],[2,1],[0,1],[1,1],[-1,1],[1,0],[1,2],[1,0],[1,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[1,1],[1,1],[1,2],[2,1],[0,1],[2,1],[1,2],[0,2],[0,1],[0,1],[1,1],[1,-1],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,1],[1,0],[1,0],[2,1],[1,0],[1,0],[2,0],[3,1],[1,0],[3,1],[0,-1],[1,1],[0,-2],[1,-1],[1,0],[0,-1],[1,0],[3,1],[1,-1],[0,-1],[1,0],[0,-1],[0,1],[1,-1],[0,-1],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,1],[1,1],[1,1],[1,0],[3,1],[1,1],[1,0],[1,0],[2,-1],[2,-1],[1,0],[1,1],[-1,-1],[1,1],[0,1],[0,1],[1,0],[-1,1],[1,0],[5,0],[1,1],[2,-1],[0,1],[0,1],[2,1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,-2],[1,-1],[2,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,-2],[1,-1],[1,-2],[1,-1],[0,-1],[-1,-1],[1,0],[1,0],[2,-1],[0,-1],[1,-1],[-1,-1],[1,0],[2,-1],[2,-1],[3,1],[1,-1],[2,0],[0,1],[0,1],[0,1],[1,0],[2,-1],[1,2],[1,0],[0,-1],[1,1],[1,-1],[1,0],[0,1],[1,0],[1,1],[1,0],[2,0],[2,0],[0,1],[2,-1],[1,0],[1,0],[-1,0],[2,0],[1,0],[1,-1],[1,1],[1,0],[1,0],[0,1],[2,1]],[[4697,8258],[-1,0],[-1,-1],[-1,-1],[0,1],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,-2],[-1,-3],[2,-1],[-1,0],[-2,0],[-2,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-3,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[-1,0],[-3,1],[-1,-1],[-1,0],[-1,0],[-2,1],[-2,-2],[-1,0],[-3,-1],[-2,-1],[-1,-1],[-3,1],[-1,0],[-1,0],[-1,2],[-1,0],[-2,-1],[-2,-2],[-3,0],[-1,-1],[1,-1],[1,0],[-1,-1],[0,-1],[1,-1],[1,0],[3,-1],[0,-2],[2,0],[1,1],[1,0],[0,-1],[2,0],[1,-1],[1,0],[2,0],[2,1],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[-5,-1],[0,-1],[-3,0],[0,-1],[-1,-1],[-1,0],[-1,-2],[-1,-1],[-1,-1],[0,1],[-5,0],[-2,-1],[-1,1],[-2,1],[-2,-1],[-1,1],[-1,-1],[1,-1],[-2,-2],[-1,-1],[0,-2],[-4,0],[-1,0],[1,-1],[-2,0],[-5,-1],[1,-1],[2,-1],[-1,0],[-1,0],[3,-2],[2,-2],[2,-2],[2,-2],[0,-1],[1,0],[1,-1],[1,0],[1,1],[1,-1],[0,-1],[1,-1],[1,0],[1,-2],[1,-1],[3,0],[1,-1],[1,0],[1,-1],[0,1],[1,-1],[-1,-1],[0,-1],[1,-1],[1,-4],[-1,-1],[2,-1],[3,-1],[0,1],[5,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,1],[1,0],[0,-1],[2,-1],[0,-2],[1,-1],[2,0],[1,0],[1,-1],[0,-1],[2,0],[1,1],[1,0],[1,0],[1,-1],[2,0],[0,1],[2,1],[1,1],[2,1],[0,-1],[-1,-1],[2,0],[1,0],[1,0],[0,-1],[-1,-1],[1,0],[1,1],[1,0],[0,-2],[1,0],[1,1],[1,0],[0,-1],[1,1],[-1,0],[-1,1],[-1,2],[1,0],[2,2],[1,0],[1,0],[0,-3],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,1],[1,1],[0,1],[0,5],[2,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,-1],[2,1],[0,1],[0,1],[-1,0],[2,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-3,1],[2,1],[1,0],[0,1],[0,2],[-1,0],[1,0],[2,0],[2,1],[0,1],[2,0],[0,1],[-1,1],[2,0],[1,2],[1,0],[0,1],[1,1],[2,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,1],[1,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[2,0],[0,-1],[2,-1],[0,-2],[1,0],[0,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[2,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,1],[1,0],[0,1],[3,-1],[1,0],[1,1],[2,0],[1,1],[1,0],[1,1],[1,-1],[0,1],[1,-2],[2,0],[3,0],[1,1],[1,1],[0,2],[0,2],[1,0],[1,0],[1,0],[-1,-2],[2,0],[1,1],[1,1],[2,-1]],[[4780,8154],[1,-2],[1,-1],[3,-1],[1,-1],[1,-2],[1,0],[2,-1],[1,0],[1,1],[0,-2],[2,-2],[-3,-2],[-2,-1],[-1,1],[-1,-1],[-5,1],[-5,3],[-1,0],[-3,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[1,0],[1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,-2],[2,-1],[2,1],[1,-1],[2,0],[1,-1],[1,0],[1,0],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-1],[1,0],[2,0],[-1,-1],[-1,0],[0,-1],[-1,-3],[0,-2],[0,-1],[0,-3],[1,-2],[1,-4],[1,-1],[2,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-2],[2,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-3,-1],[-1,0],[5,0],[-1,0],[0,1],[1,0],[0,-1],[1,-1],[1,0],[-2,-2],[-2,-2],[-1,0],[1,0],[-1,0],[2,1],[-2,1],[0,-1],[-2,0],[-1,0],[-2,0],[3,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[1,-3],[-1,2],[-1,0],[0,-1],[1,-1],[1,-1],[0,1],[6,-2],[-1,-2],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-2,-1],[-1,0],[-1,-1],[1,0],[1,1],[2,0],[-3,-2],[-1,-1],[-1,1],[1,1],[-1,-1],[-1,0],[-1,-1],[-1,1],[-2,-1],[2,0],[2,0],[0,-1],[-2,0],[-1,0],[2,0],[3,0],[-1,0],[-2,-1],[-1,0],[1,-2],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,1],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-3],[0,-3],[-1,-3],[0,-1],[0,-3],[0,-1],[0,-1],[2,-1],[1,0],[1,-1],[-2,-2],[0,-1],[0,-1],[-2,-4],[-1,-1],[-1,-2],[1,-1],[-2,0],[-2,-2],[-1,-2],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-2],[-1,-2],[-1,-2],[0,-1],[0,-1],[-1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[-1,-2],[-2,-2],[-1,-1],[-1,-1],[-3,-3],[-2,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[0,-2],[1,-3],[-1,0],[-1,1],[-2,0],[-3,0],[-2,-1],[0,1],[-1,0],[0,1],[1,1],[0,1],[-2,-1],[0,-1],[-2,-1],[1,0],[2,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[2,0],[1,-1],[0,-1],[1,0],[0,1],[1,1],[0,-1],[0,-2],[1,-2],[1,-1],[3,0],[0,-1],[1,0],[-1,-2],[-1,-1],[0,-1],[-1,-1],[1,-1],[-2,-1],[-2,0],[-1,1],[-2,0],[-4,0],[-2,0],[-4,0],[-1,-1],[-3,-1],[-1,1],[-1,1],[-3,2],[-5,1],[2,0],[5,-1],[-2,0],[0,1],[0,1],[0,-1],[-3,0],[-2,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-2,1],[1,1],[0,-1],[0,1],[1,0],[2,2],[0,1],[0,1],[0,-1],[-1,-1],[-2,0],[-3,-2],[-1,-1],[2,0],[0,-1],[0,-2],[-1,-1],[-1,0],[0,-1],[-3,-1],[-1,-1],[-1,0],[-1,-2],[-2,-1],[0,1],[1,0],[2,3],[0,2],[-1,1],[1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-2,-1],[-3,1],[-2,-1],[-1,0],[-1,0],[1,1],[0,1],[1,1],[-1,0],[-1,1],[-2,0],[-1,1],[1,-1],[-1,-1],[2,0],[0,-1],[2,0],[-5,1],[-1,-1],[-1,-2],[-3,0],[-1,0],[-3,1],[-3,0],[-1,-1],[-2,1],[-3,0],[-2,-1],[-1,0],[-2,0],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-3,-1],[-1,-2],[-1,1],[-2,2],[0,-1],[-1,0],[-1,-1],[-2,0],[1,-2],[-1,0],[-1,0],[4,0],[-1,1],[0,1],[1,-2],[1,-2],[5,0],[-1,0],[-2,-1],[-1,-1],[0,-1],[-1,0],[1,-1],[0,-2],[-1,0],[-1,-1],[-1,0],[-5,-1],[-2,0],[-1,-1],[-1,-1],[1,-1],[0,-1],[-3,0],[-1,0],[-1,1],[0,1],[-2,-1],[-1,-1],[-1,0],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,-2],[-1,0],[0,-1],[0,-1],[1,0],[2,-1],[-1,0],[-1,0],[-2,-1],[-3,0],[-2,-1],[-2,0],[-2,-2],[0,-1],[2,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-5,0],[-2,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-5,-1],[1,2],[-2,1],[2,1],[1,0],[-1,1],[1,0],[2,1],[2,0],[-1,0],[1,1],[1,0],[0,1],[-3,-1],[0,1],[0,1],[0,-1],[0,-1],[-4,0],[-1,0],[-4,-1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[3,0],[2,0],[0,-1],[0,-1],[-2,1],[1,-1],[1,0],[1,-1],[-2,0],[-1,-1],[-3,2],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[2,-1],[1,1],[2,-1],[1,1],[1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-3,0],[-1,0],[3,0],[3,1],[1,0],[0,-2],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-4,0],[0,-2],[-2,1],[-1,-1],[0,-1],[-2,0],[1,2],[0,1],[-1,0],[1,0],[-1,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,-1],[1,-1],[1,0],[-1,-2],[-1,0],[-2,0],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[2,-1],[1,1],[1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-2,-1],[0,-1],[1,-1],[1,-2],[0,-1],[-1,1],[-1,1],[-1,2],[-1,0],[-3,0],[-4,-1],[-1,2],[1,0],[-1,1],[-1,-2],[-1,1],[-1,-1],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[-2,-1],[-1,-1],[1,-1],[-1,-2],[-1,1],[-1,-1],[-1,1],[0,-1],[-1,1],[1,1],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-4,0],[0,1],[-2,-1],[-1,1],[-1,-1],[3,0],[0,-1],[0,-1],[-2,-1],[-1,0],[1,-2],[-3,-1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[1,0],[-1,2],[-3,2],[-2,0],[0,2],[-1,-1],[2,-2],[-2,0],[0,-1],[-1,1],[-1,-1],[-1,1],[0,-1],[-1,0],[-2,0],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[2,0],[0,-2],[-2,-1],[1,0],[-2,-1],[-2,-1],[0,1],[1,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-2],[-2,0],[-1,0],[1,1],[-2,0],[-1,-1],[0,2],[-1,-1],[-1,0],[-1,1],[0,-1],[0,1],[1,0],[0,-1],[-1,-1],[-3,-2],[-2,1],[-1,-1],[-1,1],[0,1],[1,0],[-2,1],[1,0],[-1,1],[-1,-1],[-1,1],[-1,1],[3,1],[0,2],[1,1],[-1,0],[0,-1],[-1,0],[-1,1],[-2,0],[-1,2],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[-2,-1],[-4,0],[-2,-1],[1,2],[-1,0],[-1,-1],[0,-1],[-4,-1],[1,1],[-1,1],[0,-1],[0,-1],[-2,0],[2,0],[1,0],[-1,0],[-1,-1],[-3,0],[2,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,-1],[0,-1],[-2,0],[-1,-1],[-1,0],[1,-2],[-2,0],[1,0],[-1,0],[-3,-1],[1,0],[3,1],[1,0],[-4,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,2],[2,1],[-1,0],[-1,-1],[0,-1],[-1,-2],[-2,0],[0,2],[0,1],[-2,1],[4,2],[2,0],[-1,1],[1,0],[1,1],[1,0],[1,1],[1,-1],[3,1],[1,2],[1,0],[0,-1],[1,0],[0,1],[-1,0],[1,0],[0,2],[2,0],[1,1],[-1,0],[3,1],[1,1],[0,1],[3,0],[1,1],[-1,0],[2,1],[-2,-1],[-2,0],[-3,-1],[-2,-1],[-1,1],[0,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-3,-1],[-2,-1],[-1,0],[-1,0],[-3,-1],[-1,0],[2,1],[2,2],[2,0],[-1,1],[1,0],[5,3],[4,2],[3,1],[6,2],[1,0],[4,1],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[-1,0],[-1,0],[1,2],[1,1],[-2,-1],[0,1],[1,0],[-1,0],[-2,-1],[-2,0],[0,1],[-2,1],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-2,-2],[-4,-1],[0,1],[-2,0],[-1,0],[-1,2],[-1,-1],[1,-2],[-1,0],[-1,0],[-2,-1],[-2,0],[-2,-1],[-1,1],[-1,0],[-1,-1],[-1,1],[0,-1],[-1,0],[-2,0],[-1,-1],[-1,-2],[-1,-1],[-2,0],[-1,1],[0,-1],[-1,0],[-2,-2],[-2,0],[-1,-1],[0,1],[1,0],[-2,0],[1,1],[-2,0],[-1,-1],[-2,0],[-1,1],[-1,-1],[-1,0],[-2,-1],[1,1],[1,0],[0,1],[-1,1],[-1,0],[2,1],[1,-1],[2,1],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[-2,1],[-2,0],[1,2],[2,0],[1,-1],[2,1],[2,-1],[2,1],[1,1],[0,1],[1,1],[1,1],[-1,0],[-2,-1],[0,1],[-2,0],[2,2],[1,0],[2,1],[2,0],[1,1],[1,0],[1,1],[1,0],[0,-1],[-1,-1],[1,0],[2,1],[1,1],[-1,0],[0,1],[0,1],[1,0],[1,-1],[-2,-1],[4,1],[1,0],[1,-1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[2,1],[2,1],[1,0],[-1,0],[1,1],[-1,0],[3,1],[0,1],[1,1],[1,0],[6,1],[1,0],[0,1],[4,1],[1,1],[-1,0],[-2,0],[1,0],[-2,-1],[-1,1],[1,0],[-1,0],[-3,-1],[-1,0],[-5,-2],[0,1],[-1,-1],[-1,0],[-1,-1],[-3,-1],[-1,0],[-1,-1],[1,1],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[1,1],[1,1],[-2,0],[-2,0],[0,1],[0,1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-3,-1],[-2,-1],[-2,-1],[-1,-1],[-2,0],[-1,1],[-2,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-2,-1],[0,-1],[-1,1],[2,2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,2],[-1,-1],[-1,1],[1,0],[2,1],[1,0],[0,2],[0,1],[0,1],[-3,2],[2,0],[0,1],[-2,0],[0,-1],[-3,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[-2,-1],[1,1],[-1,0],[-2,-2],[-2,-1],[-1,2],[2,1],[-1,0],[0,1],[1,1],[-1,0],[1,1],[-1,1],[-2,0],[-2,0],[-1,0],[1,1],[0,1],[0,1],[-1,0],[0,1],[4,0],[1,1],[2,0],[1,1],[1,0],[1,1],[1,0],[2,-1],[-1,1],[0,1],[-2,1],[3,1],[2,1],[2,1],[1,0],[1,1],[-2,0],[-1,-1],[-1,-1],[-3,0],[-1,-1],[-1,0],[0,1],[0,1],[-2,-1],[-1,1],[1,1],[1,0],[1,0],[1,1],[1,2],[3,0],[1,1],[2,1],[2,0],[1,1],[2,1],[0,-1],[2,1],[0,-1],[1,1],[3,1],[1,0],[2,0],[3,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[-1,-1],[0,-2],[2,1],[0,1],[1,0],[0,-1],[2,0],[1,0],[-1,0],[-1,1],[-1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,-1],[0,-1],[-1,0],[1,-1],[3,0],[1,1],[2,1],[1,0],[1,0],[0,1],[-1,0],[1,1],[0,1],[-1,0],[-1,-1],[0,1],[-2,0],[-2,0],[-1,-1],[0,1],[-7,-2],[-1,0],[2,-1],[0,-2],[1,0],[0,-1],[-1,0],[-3,4],[-2,0],[-3,-1],[-1,1],[-3,-2],[-2,0],[-2,-1],[0,1],[-2,0],[0,-1],[-3,-1],[0,1],[-1,1],[-1,2],[0,-1],[1,0],[0,-1],[-1,0],[-2,-1],[-1,1],[-1,1],[-2,1],[-1,-1],[-1,0],[4,-1],[1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-3,1],[-1,-1],[0,-1],[1,0],[1,-1],[-2,0],[-2,0],[-2,-1],[-3,0],[0,1],[0,1],[-2,-1],[1,1],[1,1],[-1,1],[0,1],[-1,1],[2,0],[0,1],[2,1],[-1,1],[-1,0],[-1,0],[5,3],[1,0],[-1,-1],[0,-1],[2,-1],[1,0],[0,-1],[1,1],[0,1],[-1,0],[0,1],[2,2],[-2,0],[0,1],[1,1],[1,0],[1,1],[1,-1],[1,1],[1,0],[1,1],[0,1],[2,0],[0,1],[1,0],[2,1],[2,-1],[0,1],[3,1],[1,0],[0,-2],[0,-1],[1,0],[-1,-2],[-2,-1],[1,0],[2,1],[1,0],[1,0],[-1,0],[3,0],[2,1],[3,2],[1,1],[0,1],[-1,1],[-1,1],[2,0],[1,0],[0,1],[1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[1,-1],[2,-1],[0,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,1],[4,0],[0,1],[1,2],[2,0],[-2,-1],[1,-1],[2,0],[2,1],[1,0],[2,0],[1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-4,1],[-2,-1],[0,1],[1,0],[2,1],[1,1],[-3,0],[1,1],[1,0],[0,1],[1,-1],[0,1],[-1,1],[-1,-1],[1,-1],[-1,0],[1,3],[0,3],[1,1],[0,1],[-1,1],[-1,0],[-5,1],[-2,0],[-1,1],[0,1],[3,2],[3,-1],[1,0],[1,0],[4,1],[3,1],[1,1],[1,2],[2,0],[1,1],[1,0],[1,0],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[4,2],[2,0],[3,-1],[2,0],[1,1],[2,-1],[1,-1],[1,0],[0,1],[2,2],[1,0],[2,-1],[3,1],[1,1],[0,-1],[0,-1],[7,-1],[2,2],[2,1],[1,0],[1,0],[2,1],[4,0],[1,1],[2,0],[1,0],[1,0],[0,-1],[2,-1],[-1,1],[-1,0],[-1,2],[1,0],[1,1],[0,1],[1,-1],[1,-1],[1,0],[2,0],[0,-1],[0,1],[1,0],[2,-2],[-1,2],[-1,2],[2,1],[2,1],[1,-1],[2,1],[2,0],[0,1],[1,0],[2,0],[1,0],[2,0],[1,-1],[1,0],[3,1],[1,0],[2,0],[1,-1],[1,-1],[2,0],[2,1],[1,0],[1,1],[0,1],[0,1],[1,0],[-1,0],[-1,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-3,-1],[0,1],[0,1],[-1,1],[-3,0],[-4,0],[-1,1],[0,1],[-2,-1],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[1,1],[0,1],[1,1],[0,1],[-1,1],[1,0],[1,1],[-1,0],[-1,0],[0,1],[-2,0],[1,1],[1,0],[1,1],[1,2],[-1,0],[-1,1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[1,-1],[-2,0],[-2,-1],[-1,0],[1,-1],[0,-2],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,1],[-2,-1],[0,-2],[-2,0],[0,-1],[-2,-1],[-4,0],[-4,0],[0,-1],[0,-1],[-3,-2],[-2,0],[-2,2],[1,1],[4,2],[1,0],[0,1],[-2,0],[-2,-1],[-3,-1],[1,0],[-1,-1],[-2,0],[-2,-1],[-3,0],[0,1],[-2,0],[-1,0],[-1,1],[-1,1],[-1,0],[2,0],[-2,0],[-2,0],[0,1],[-1,0],[0,2],[0,1],[0,-1],[-4,1],[0,-1],[2,-1],[2,-1],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-3,1],[-2,-1],[-2,0],[-1,0],[-1,-1],[1,0],[-1,-1],[1,-1],[-1,-1],[-1,1],[-2,0],[0,-1],[-6,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-5,0],[1,1],[1,1],[1,0],[1,0],[2,1],[-1,0],[0,1],[5,1],[1,0],[0,1],[1,1],[5,2],[1,1],[0,1],[1,0],[1,1],[2,1],[1,0],[1,0],[0,1],[-1,1],[1,1],[2,1],[1,1],[-1,0],[-1,0],[1,1],[1,0],[1,1],[4,1],[2,-2],[1,1],[-1,0],[2,0],[1,1],[0,1],[-1,1],[2,0],[0,1],[0,1],[0,2],[2,1],[1,1],[-1,0],[0,1],[2,0],[0,1],[-1,0],[0,1],[1,1],[-1,0],[1,2],[3,1],[3,2],[1,1],[0,1],[-1,2],[-1,0],[-2,-1],[-2,-1],[0,1],[-4,-1],[0,1],[0,1],[1,1],[2,1],[1,1],[0,1],[-1,0],[2,2],[2,1],[-2,1],[1,1],[1,1],[1,1],[1,0],[0,2],[1,1],[3,1],[1,1],[1,1],[0,2],[0,1],[1,1],[1,1],[2,0],[2,-1],[5,-1],[-2,0],[3,-1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,-1],[1,-1],[-1,2],[-1,1],[-1,0],[-1,0],[-2,0],[1,0],[1,1],[2,0],[2,0],[1,0],[1,-1],[2,0],[-1,0],[2,-1],[0,1],[2,-1],[-1,1],[0,1],[-1,-1],[-1,1],[-2,0],[-1,1],[3,0],[3,0],[1,1],[0,-1],[-1,-1],[1,0],[2,-1],[1,-1],[1,0],[-1,0],[-1,3],[-1,1],[0,1],[3,2],[-1,0],[1,0],[4,0],[0,1],[-1,0],[-2,0],[1,0],[1,1],[-2,0],[-1,-1],[-2,-1],[-2,0],[0,1],[-2,0],[1,1],[-1,0],[1,0],[0,1],[3,0],[0,1],[-1,0],[-1,-1],[-3,0],[3,1],[1,0],[-2,0],[1,1],[3,1],[-1,0],[1,1],[-2,0],[-1,0],[-1,-1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,-1],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[-5,-1],[-2,0],[-1,1],[-2,-1],[-5,0],[-1,0],[-2,0],[-2,0],[-3,-1],[-3,0],[-2,0],[-1,-1],[-1,1],[-2,-1],[-2,0],[0,1],[-2,1],[-1,2],[1,1],[1,1],[0,1],[-1,0],[-2,-2],[0,-1],[0,-1],[-1,-2],[0,1],[-1,0],[-1,-1],[-1,1],[0,1],[1,2],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[2,0],[1,0],[0,-1],[0,1],[1,1],[-1,1],[1,0],[0,-1],[1,0],[0,1],[-1,1],[-1,0],[-2,1],[1,1],[3,1],[-1,0],[-1,0],[-2,0],[-1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[1,0],[1,-1],[-3,-1],[-1,1],[-2,0],[1,1],[1,0],[1,0],[-1,0],[0,1],[0,2],[1,0],[-1,2],[-1,0],[-1,-1],[0,-1],[-3,-1],[-1,-3],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-2,0],[0,-1],[0,-1],[-4,2],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-3,2],[1,1],[1,1],[1,1],[-1,0],[-1,0],[1,1],[0,1],[4,0],[1,1],[1,-1],[1,1],[1,1],[1,0],[-1,0],[-1,0],[0,1],[1,0],[1,1],[-1,0],[-2,-1],[0,1],[1,0],[1,1],[-3,0],[-1,-2],[-2,-1],[-1,0],[-1,2],[1,1],[2,0],[2,0],[0,1],[-1,0],[-1,1],[-2,0],[2,-1],[-1,-1],[-2,0],[-1,0],[0,1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[-2,-1],[-1,0],[-1,-1],[1,0],[-1,-1],[-1,1],[1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-2,1],[-1,-1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[1,0],[0,-1],[-2,1],[0,1],[-1,0],[-2,-1],[-1,0],[2,2],[1,1],[1,2],[1,0],[2,-1],[1,0],[0,-1],[2,0],[0,1],[1,1],[2,0],[-1,1],[-2,0],[-1,0],[-2,2],[2,1],[1,-1],[1,-1],[3,-1],[0,1],[-1,0],[-1,1],[-4,1],[-1,0],[-2,1],[1,0],[0,1],[-2,0],[3,0],[-3,1],[4,0],[2,-2],[2,1],[-1,0],[-4,1],[-3,0],[-1,1],[0,1],[-2,0],[-2,1],[1,1],[3,1],[1,-1],[1,0],[2,0],[1,0],[-3,2],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,1],[3,-1],[0,-1],[-1,0],[1,-1],[1,0],[1,1],[1,-1],[2,0],[-3,1],[0,1],[1,0],[1,1],[-5,0],[-2,2],[-1,2],[2,0],[1,-1],[1,1],[4,-1],[2,-1],[2,1],[2,0],[-1,0],[0,1],[2,0],[2,0],[-1,1],[-1,0],[6,-2],[2,-1],[4,1],[3,-1],[1,1],[1,1],[0,-1],[0,1],[-1,0],[-2,-1],[-6,0],[-5,2],[-1,0],[-2,1],[0,1],[-1,0],[1,1],[-3,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,2],[1,1],[1,1],[-1,1],[-1,1],[1,1],[1,0],[3,1],[2,0],[2,1],[3,0],[2,-1],[3,1],[2,0],[2,1],[1,1],[-1,-1],[0,-1],[2,0],[0,1],[1,0],[1,0],[1,0],[-1,0],[3,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,1],[1,0],[1,0],[-2,1],[1,2],[1,0],[3,0],[-3,1],[1,0],[1,0],[-1,0],[2,0],[-2,0],[1,0],[1,0],[-1,0],[-1,1],[2,0],[1,-1],[0,1],[-2,0],[-2,0],[3,1],[-1,0],[2,0],[-2,0],[-1,0],[2,1],[1,0],[-1,0],[-2,0],[2,0],[2,0],[-2,1],[-3,-1],[3,1],[-2,1],[-1,-1],[-2,0],[1,0],[-2,0],[1,0],[0,1],[-2,-1],[-1,0],[-1,1],[-2,0],[-2,0],[-2,0],[1,-1],[-1,0],[-3,2],[0,-1],[-1,0],[-1,-2],[-1,0],[-4,-2],[-3,0],[-3,1],[1,2],[0,1],[-1,1],[1,0],[1,1],[1,2],[-1,-1],[-1,1],[1,1],[1,1],[1,0],[1,0],[3,0],[0,1],[1,-2],[1,0],[1,0],[1,0],[0,-2],[-1,0],[-1,0],[1,-2],[1,0],[0,2],[0,1],[0,2],[-1,1],[-2,0],[-1,0],[-1,0],[0,3],[2,0],[-2,2],[0,-1],[-2,1],[-1,1],[-1,1],[-1,1],[0,1],[2,1],[1,0],[1,0],[1,1],[-1,0],[-1,0],[0,2],[1,0],[1,0],[1,1],[-1,0],[0,1],[-1,0],[3,1],[0,-1],[0,1],[-1,0],[-3,0],[0,1],[0,-1],[1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-3,-1],[-1,-1],[-1,1],[-2,-1],[0,1],[1,1],[-1,1],[0,1],[-2,1],[1,0],[1,0],[3,1],[1,1],[2,-1],[-2,2],[-1,-1],[-2,2],[0,1],[2,0],[1,0],[-2,2],[-1,1],[0,-1],[1,1],[1,0],[2,2],[-1,0],[-2,0],[-1,0],[-2,2],[-1,0],[0,1],[-2,0],[1,-1],[-2,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-2,1],[-1,1],[-1,-1],[1,0],[1,-1],[0,-1],[-1,-1],[0,1],[-2,0],[-2,-1],[2,-1],[1,0],[-1,-1],[-1,0],[1,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[2,0],[1,-2],[-1,-1],[-1,0],[-3,1],[-1,0],[0,1],[-1,0],[1,3],[1,2],[1,0],[1,3],[0,1],[0,1],[1,1],[1,1],[0,-1],[1,1],[0,1],[-1,1],[-1,0],[-3,1],[2,0],[2,-1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[3,1],[-1,0],[1,0],[1,0],[0,1],[1,1],[0,-1],[2,-1],[1,-2],[1,0],[1,0],[1,0],[1,-1],[2,1],[0,-1],[0,-1],[-1,-1],[-2,-1],[1,-1],[-3,0],[-1,0],[-1,1],[-1,2],[2,-3],[-2,0],[2,-1],[3,0],[3,0],[1,1],[-1,1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,2],[0,1],[1,2],[4,1],[1,0],[0,-1],[2,-1],[2,-1],[2,1],[-1,0],[-1,0],[-1,0],[-3,2],[0,1],[1,1],[1,-2],[1,0],[0,1],[0,-1],[0,1],[-2,1],[-1,0],[-1,-1],[-2,2],[-2,0],[0,1],[1,1],[1,0],[1,0],[1,2],[1,0],[1,-1],[1,1],[0,-1],[1,0],[1,1],[0,-1],[1,-1],[3,-1],[2,0],[2,0],[1,0],[1,1],[3,0],[1,-1],[1,1],[1,-1],[1,0],[2,0],[0,-1],[2,0],[1,1],[1,0],[2,-1],[2,0],[4,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[2,0],[-1,1],[1,0],[1,-1],[6,-1],[0,-1],[1,0],[-1,-2],[0,-1],[1,0],[1,1],[1,1],[1,0],[0,-1],[-1,-2],[1,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[2,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[-1,-1],[0,1],[0,-1],[-1,-1],[3,-1],[1,-1],[1,1],[0,-1],[0,-1],[2,0],[0,-2],[0,-1],[1,0],[-1,1],[0,1],[1,2],[1,1],[-2,0],[3,1],[1,0],[0,1],[2,4],[0,1],[1,0],[0,2],[3,1],[2,-1],[1,1],[1,-1],[1,1],[0,-1],[1,1],[3,-1],[1,-2],[3,0],[1,0],[1,-1],[1,-1],[2,1],[2,1],[2,1],[0,-1],[2,0],[1,-1],[2,1],[2,0],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[1,-1],[1,0],[0,-1],[2,0],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[2,0],[1,0],[3,0],[-2,1],[-1,0],[0,1],[-2,0],[-1,1],[-1,1],[-1,1],[-1,0],[1,2],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,1],[0,-1],[0,1],[-2,1],[-5,1],[1,3],[1,-1],[2,-1],[2,0],[1,0],[-1,1],[1,0],[-2,0],[-1,1],[-1,-1],[-1,1],[2,0],[-2,1],[-3,0],[-5,-1],[0,1],[-2,0],[0,2],[1,0],[2,1],[1,0],[1,1],[4,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,2],[1,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[2,-1],[-1,1],[2,0],[1,1],[2,1],[1,0],[0,1],[1,1],[0,1],[-1,1],[1,0],[1,1],[-1,0],[1,1],[1,-1],[1,-1],[2,0],[1,1],[1,0],[6,1],[1,0],[2,1],[1,1],[1,1],[0,1],[0,-1],[1,0],[3,0],[-3,1],[-1,0],[-1,1],[5,3],[0,1],[-1,1],[0,1],[1,0],[1,1],[2,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],[2,-1],[0,1],[-1,0],[0,1],[2,0],[-3,0],[1,0],[1,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[1,1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-2,-2],[-2,0],[-1,1],[1,1],[2,1],[0,1],[-1,1],[-1,-1],[-1,0],[-3,-1],[-1,-2],[-2,-1],[-1,-1],[-3,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[1,2],[4,1],[2,2],[0,1],[-1,1],[-1,0],[-1,-1],[-2,-1],[0,1],[0,1],[1,2],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-2,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-3,-1],[-2,0],[-2,-1],[-1,0],[-3,1],[1,0],[-2,0],[0,1],[-1,1],[0,1],[0,-1],[0,-2],[-3,0],[-1,1],[-1,1],[-1,0],[-1,1],[-4,1],[0,1],[-1,0],[-1,-1],[0,1],[1,1],[-1,1],[-1,1],[1,1],[1,0],[1,0],[2,0],[1,1],[-1,0],[0,1],[1,2],[2,0],[0,1],[2,1],[1,0],[1,1],[1,0],[1,0],[3,1],[1,0],[3,-1],[2,-1],[1,1],[1,-1],[-1,0],[2,0],[3,-1],[2,1],[-2,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-3,2],[2,0],[1,0],[3,0],[1,0],[1,-1],[0,-1],[3,-1],[1,1],[-2,1],[-1,1],[-1,1],[-3,0],[0,1],[-3,1],[1,1],[-2,0],[-2,0],[1,1],[2,0],[2,-1],[0,1],[-1,0],[1,1],[1,0],[1,0],[3,-1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[-1,0],[0,3],[2,-1],[0,1],[1,0],[3,-1],[-1,1],[2,1],[-3,0],[0,1],[0,1],[-2,-1],[-1,1],[0,-1],[0,-1],[-1,-1],[0,1],[-5,2],[-1,0],[0,1],[0,1],[1,0],[-1,1],[2,1],[0,-1],[-1,0],[2,0],[1,0],[2,1],[1,-1],[0,1],[1,0],[-4,2],[0,-1],[-1,2],[-1,1],[-1,0],[0,2],[2,1],[0,-1],[1,0],[1,0],[0,3],[-1,1],[1,0],[2,-1],[1,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[3,0],[0,1],[-1,1],[1,1],[0,1],[1,2],[1,0],[0,3],[1,1],[1,-1],[2,1],[1,-1],[1,0],[1,0],[1,0],[3,-1],[1,1],[0,1],[1,0],[1,0],[-2,-1],[-2,-1],[2,0],[-1,-1],[0,-1],[1,0],[0,1],[2,-1],[-1,1],[0,1],[1,2],[4,0],[1,0],[1,2],[1,0],[1,-1],[1,1],[0,1],[0,1],[0,2],[3,1],[1,-1],[2,0],[1,-1],[-1,-1],[-1,-1],[-1,0],[-2,0],[-1,-2],[2,0],[-1,1],[0,1],[3,0],[1,0],[1,-1],[2,1],[1,0],[0,-1],[1,-1],[1,1],[0,-1],[-3,-1],[3,1],[2,0],[-1,-2],[-2,0],[-1,-1],[1,-1],[0,1],[1,0],[1,-1],[0,-1],[1,1],[-1,0],[1,1],[1,1],[-1,1],[1,0],[1,2],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[1,3],[1,-1],[2,0],[1,0],[2,3],[1,1],[0,-1],[0,-2],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,0],[2,1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[-1,1],[-1,1],[1,0],[1,-1],[1,-2],[1,-1],[-2,-3],[0,-1],[-1,-1],[2,1],[0,-1],[1,1],[0,1],[1,2],[-1,0],[1,1],[1,2],[-1,1],[-1,0],[1,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[1,-1],[0,1],[-1,1],[1,1],[-1,1],[-1,-1],[0,-3],[1,-1],[0,-1],[0,-1],[-1,1],[-2,1],[0,1],[1,-1],[0,1],[-1,0],[-2,-1],[0,1],[-2,1],[0,1],[0,1],[4,1],[0,2],[-1,0],[0,1],[2,-1],[1,0],[0,-1],[2,1],[1,0],[-1,0],[0,1],[2,0],[2,2],[2,0],[1,-3],[1,-2],[0,-1],[0,-1],[-2,-1],[1,-2],[2,0],[1,0],[1,-1],[-1,-1],[2,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-2],[-1,-1],[1,-1],[-1,-1],[-4,-1],[-1,-1],[0,-1],[0,-1],[-2,0],[-1,0],[0,-1],[2,0],[1,0],[1,1],[1,0],[1,-1],[0,-1],[-2,-2],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[1,0],[1,0],[0,1],[1,-1],[-1,-1],[0,-1],[1,1],[-1,0],[1,1],[3,3],[2,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,-1],[0,1],[-2,0],[-1,1],[-1,0],[-1,2],[1,1],[2,0],[1,0],[0,-1],[2,-1],[0,1],[-1,1],[-1,1],[1,2],[1,1],[0,1],[-2,2],[0,1],[-1,0],[-1,2],[-2,2],[-2,0],[1,2],[0,1],[1,0],[1,2],[-1,0],[0,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[3,-1],[1,1],[-1,1],[1,0],[1,-1],[0,-1],[1,0],[0,1],[2,0],[3,0],[0,2],[0,1],[1,0],[3,-1],[1,0],[1,-2],[-1,0],[-3,0],[2,-1],[1,1],[1,-1],[1,0],[2,0],[1,0],[0,1],[-1,0],[1,1],[-2,-1],[-3,2],[-1,0],[0,1],[0,1],[-2,1],[0,3],[-2,0],[-1,0],[0,1],[-1,0],[2,1],[3,-1],[1,0],[3,0],[3,-2],[1,1],[1,-1],[1,0],[1,0],[2,-1],[1,-1],[1,-1],[-1,-1],[2,-2],[1,-1],[1,1],[1,-1],[1,0],[3,-2],[2,1],[1,-1],[1,0],[1,-1],[0,-1],[4,0],[2,-1],[1,-1],[0,-1],[-2,-2],[-3,0],[-3,-2],[-2,0],[-5,-2],[-1,-1],[-3,-1],[-1,-1],[-2,-1],[0,-1],[-2,-1],[0,-1],[-3,-2],[-1,-2]],[[4470,8145],[1,-1],[1,-1],[1,-1],[-1,0],[-1,-1],[0,-2],[1,0],[2,0],[-1,-3],[-1,-1],[1,0],[-1,-1],[-1,0],[-1,-1],[1,0],[1,-1],[0,-1],[-1,-1],[-1,-1],[-3,2],[0,1],[-2,2],[-2,0],[-1,0],[0,2],[0,1],[1,1],[-2,2],[-2,0],[-1,-1],[-1,0],[-1,1],[-2,-1],[-3,1],[-1,-1],[1,0],[-2,0],[-1,1],[-1,1],[-2,-1],[2,1],[2,0],[2,1],[0,1],[0,1],[1,0],[2,0],[0,-1],[1,0],[2,0],[1,0],[1,1],[1,1],[2,1],[1,-1],[1,-1],[2,1],[2,-1],[0,1],[1,1],[1,-1]],[[4487,8051],[1,-2],[1,1],[2,0],[2,0],[0,-1],[2,0],[1,0],[-2,-2],[1,-1],[1,0],[1,0],[1,1],[0,-1],[-1,-2],[-1,0],[-3,2],[-2,0],[-1,1],[-2,0],[-1,1],[-6,2],[1,1],[2,0],[3,0]],[[4496,8059],[-1,0],[-2,0],[-1,0],[-1,2],[-1,2],[1,1],[2,0],[0,1],[2,0],[1,0],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-1]],[[4438,7919],[2,0],[2,0],[1,0],[-1,-2],[-1,0],[-3,-1],[-1,-1],[-2,0],[-1,0],[-3,-1],[-1,0],[1,1],[1,2],[4,1],[1,1],[0,1],[1,-1]],[[4590,8252],[2,-1],[0,1],[1,-1],[1,-2],[0,-1],[-4,0],[-3,0],[0,1],[0,1],[2,1],[0,2],[1,0],[0,-1]],[[4485,7889],[-1,-1],[0,-1],[-3,-1],[-1,0],[-3,-1],[-3,0],[-1,0],[0,1],[2,2],[5,0],[1,0],[1,0],[3,1]],[[4468,8120],[-6,0],[0,1],[1,1],[4,1],[1,1],[1,0],[1,-1],[1,-1],[0,-1],[-3,-1]],[[4452,8103],[-1,-1],[1,-1],[-1,0],[-1,-1],[-1,1],[-2,0],[-2,1],[0,1],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,1],[2,-1]],[[4502,8046],[1,-1],[0,-1],[-1,-1],[0,-1],[-3,0],[0,2],[1,0],[0,1],[1,1],[1,-1],[0,1]],[[4493,8068],[3,-1],[0,1],[2,-1],[-1,0],[-1,-1],[-3,0],[0,-1],[-2,1],[1,0],[1,0],[-2,1],[0,1],[2,0]],[[4460,8111],[-1,-1],[-3,-1],[-1,1],[0,1],[1,1],[2,-1],[1,1],[1,-1]],[[4509,8041],[-3,-1],[-2,0],[1,2],[1,0],[2,0],[1,-1]],[[4453,7884],[-6,-3],[0,1],[1,1],[2,1],[3,1],[0,-1]],[[4512,7867],[-3,-2],[0,1],[-1,0],[0,-2],[-1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[1,-1]],[[4518,7870],[-3,-2],[-1,0],[0,1],[1,0],[0,1],[-1,0],[2,0],[-1,0],[1,0],[1,0],[-1,0],[0,1],[1,1],[0,-1],[0,-1],[1,0]],[[4476,8076],[-1,-1],[-1,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,-3],[0,-1]],[[4423,7937],[-5,-2],[1,1],[3,2],[1,0],[0,1],[0,-1],[1,0],[-1,-1]],[[4600,8253],[0,-1],[-1,1],[-1,1],[1,0],[0,1],[-1,1],[1,0],[1,-2],[0,-1]],[[4509,7893],[0,-1],[-1,0],[-2,0],[0,1],[2,0],[0,1],[1,0],[1,1],[0,-1],[-1,-1]],[[4490,8061],[0,-1],[0,-1],[-2,1],[0,1],[-1,0],[1,0],[1,1],[1,-1]],[[4616,8280],[1,-1],[2,0],[-1,-1],[-1,0],[-1,1],[-2,0],[0,1],[2,0]],[[4476,8142],[-2,-1],[-1,1],[1,1],[2,0],[0,-1]],[[4451,8158],[1,-1],[-2,0],[0,-1],[-1,0],[0,1],[0,2],[1,0],[0,-1],[1,0]],[[4479,8140],[-2,-1],[0,3],[1,0],[1,-1],[0,-1]],[[4444,8101],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[2,-1]],[[4802,8089],[1,-1],[-1,-1],[-1,0],[-1,1],[1,1],[0,-1],[1,1]],[[4479,8069],[1,-3],[-1,0],[0,1],[-1,0],[0,1],[1,1]],[[4454,8092],[-2,-1],[0,1],[-1,1],[2,0],[1,0],[0,-1]],[[4515,7871],[-1,0],[-2,1],[1,0],[2,1],[0,-2]],[[4586,8175],[-1,-1],[-1,1],[1,1],[1,-1]],[[4605,8260],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,-1]],[[4548,8004],[1,0],[-3,-1],[2,1]],[[4449,8156],[0,-1],[-1,0],[-1,-1],[1,1],[1,1]],[[4620,8271],[0,-1],[1,0],[0,-1],[-1,0],[-1,1],[0,1],[1,0]],[[4471,8129],[0,-2],[-1,1],[-1,0],[0,1],[1,0],[1,0]],[[4498,8069],[0,-1],[-2,0],[0,1],[1,0],[1,0]],[[4546,8053],[-1,-1],[-2,0],[1,1],[1,0],[1,0]],[[4539,8165],[0,-1],[-1,0],[0,1],[-1,1],[-3,1],[3,-1],[2,-1]],[[4483,7907],[-1,0],[1,1],[1,1],[0,-1],[-1,-1]],[[4549,8059],[1,0],[-2,-1],[1,0],[-3,1],[3,0]],[[4447,7898],[-1,-1],[-1,0],[0,1],[1,0],[1,0]],[[4598,8246],[-1,-1],[-1,1],[2,1],[0,-1]],[[4597,8248],[-1,-1],[-1,1],[1,1],[1,-1]],[[4551,8003],[-2,0],[1,1],[1,0],[0,-1]],[[4547,7999],[-1,0],[0,1],[2,0],[-1,0],[0,-1]],[[4598,8256],[-2,0],[0,1],[1,0],[1,-1]],[[4542,7993],[-1,0],[-1,1],[1,1],[1,-1],[0,-1]],[[4503,7872],[-1,-1],[-1,1],[5,1],[-3,-1]],[[4492,8065],[-2,-1],[0,1],[1,0],[1,0]],[[4482,8138],[0,-1],[0,1],[-2,1],[1,0],[1,0],[0,-1]],[[4752,7939],[-1,0],[-1,0],[2,1],[0,-1]],[[4416,7931],[-1,0],[0,1],[1,-1]],[[4552,8056],[1,0],[-1,0],[1,0],[-2,0],[0,-1],[-1,0],[1,1],[1,0]],[[4418,7941],[0,-1],[-1,0],[1,2],[0,-1]],[[4547,8000],[-1,0],[1,1],[0,-1]],[[4509,7989],[1,-1],[-2,1],[1,0]],[[4488,8063],[1,-1],[-1,0],[0,1]],[[4508,7993],[-1,-1],[0,1],[1,0]],[[4497,8125],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0]],[[4493,8069],[1,0],[1,1],[0,-1],[-2,0],[0,1],[0,-1]],[[4453,8151],[-1,-1],[-1,1],[2,0]],[[4550,8000],[-1,-1],[-1,1],[1,0],[1,0]],[[4483,8067],[-1,-1],[0,1],[1,0]],[[4473,8074],[-1,0],[0,1],[1,0],[0,-1]],[[4607,8262],[-1,0],[0,1],[1,-1]],[[4554,8003],[-1,-1],[-1,1],[1,0],[1,0]],[[4449,7898],[-1,0],[0,1],[1,-1]],[[4433,7909],[-1,0],[1,1],[0,-1]],[[4495,8125],[-1,0],[2,1],[-1,-1]],[[4511,7874],[-1,0],[2,1],[-1,-1]],[[4469,8070],[0,-1],[-1,1],[2,0],[-1,0]],[[4454,8089],[1,0],[-2,0],[1,0]],[[4798,8078],[-1,0],[0,1],[1,0],[0,-1]],[[4502,8072],[-1,-1],[0,1],[1,0]],[[4416,7933],[-1,-1],[1,2],[0,-1]],[[4593,8188],[-1,0],[0,1],[1,0],[0,-1]],[[4607,8263],[-2,1],[1,0],[1,-1]],[[4481,8068],[-1,0],[0,1],[1,-1]],[[4597,8249],[-1,0],[0,1],[1,-1]],[[4465,8112],[-1,0],[-1,1],[1,0],[1,-1]],[[4653,8271],[-1,0],[-1,0],[1,0],[0,1],[1,-1]],[[4754,7942],[0,-1],[-1,0],[0,1],[1,0]],[[4445,8094],[0,-1],[-1,0],[1,1]],[[4565,8215],[1,-1],[-1,0],[0,1]],[[4501,8073],[0,-1],[-1,1],[1,0]],[[4611,7909],[0,-1],[-1,1],[1,0]],[[4553,8057],[-2,0],[1,0],[1,0]],[[4488,8062],[-1,-1],[0,1],[1,0]],[[4498,8126],[-1,0],[-1,0],[2,0]],[[4597,8234],[-1,0],[0,1],[1,-1]],[[4509,7870],[-1,0],[1,1],[0,-1]],[[4455,7900],[-1,0],[0,1],[1,-1]],[[3946,9497],[1,-1],[5,1],[1,-1],[2,0],[2,-2],[0,1],[2,0],[1,1],[0,1],[2,-1],[0,-1],[3,0],[1,-1],[-1,-1],[1,0],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[1,0],[1,0],[-3,-1],[0,-2],[0,-2],[2,0],[-1,-1],[0,-1],[2,0],[2,1],[0,-1],[2,0],[2,1],[1,-1],[-2,-1],[2,-1],[2,1],[8,-1],[2,-2],[0,-4],[0,-2],[-2,-2],[-4,-3],[0,-1],[2,-1],[3,1],[1,-1],[-2,-2],[0,-1],[2,-1],[3,0],[2,0],[3,1],[1,-2],[2,0],[2,0],[1,-2],[2,-1],[3,0],[1,0],[1,-3],[3,0],[4,1],[2,2],[0,1],[-1,0],[-1,4],[1,2],[0,1],[2,0],[3,-1],[2,0],[12,2],[1,1],[0,1],[2,0],[3,2],[0,1],[2,1],[1,3],[3,0],[3,2],[7,2],[2,0],[5,-3],[3,0],[5,0],[5,1],[7,1],[-3,-2],[-9,-1],[-9,-3],[-7,-3],[-9,-2],[-1,-1],[-1,-1],[6,-4],[0,-1],[-1,-3],[-1,-1],[-11,-4],[-6,-1],[-3,-2],[3,-2],[8,0],[-1,-3],[-3,-2],[1,-1],[5,1],[2,0],[1,-2],[7,1],[2,-2],[0,-1],[1,0],[4,1],[1,1],[1,1],[3,1],[1,1],[2,0],[5,-1],[0,-1],[1,-1],[0,-2],[1,-1],[3,-1],[1,-3],[-1,-2],[-1,-3],[0,-1],[-2,-1],[-1,-1],[-1,-1],[-4,-1],[-1,-1],[0,-1],[1,-1],[-6,-1],[-1,-1],[0,-1],[-2,-1],[1,-1],[1,-1],[-1,0],[-1,0],[0,-2],[-3,0],[-3,-2],[1,0],[8,4],[2,0],[-2,-2],[-1,0],[-4,-4],[1,-1],[3,0],[2,1],[3,0],[5,2],[3,0],[1,1],[7,0],[12,3],[1,-1],[6,1],[0,-1],[-1,-1],[-2,-3],[-2,-1],[0,-1],[2,-2],[3,-2],[18,-7],[11,-2],[1,0],[3,1],[3,0],[1,0],[2,0],[0,-1],[1,-1],[-3,-1],[0,-1],[6,-1],[0,-1],[0,-3],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,1],[2,2],[5,0],[0,-1],[-1,-1],[0,-1],[1,0],[2,1],[1,-2],[3,-1],[-2,-2],[1,-1],[-1,-2],[-2,0],[-1,-1],[1,-1],[0,-1],[1,-1],[-1,-1],[-2,-1],[0,-1],[1,0],[1,-1],[-2,-1],[-1,-1],[-4,-1],[-8,0],[-2,-1],[9,-2],[1,0],[1,0],[-4,-3],[-8,0],[-5,-2],[-7,-1],[0,-1],[1,-1],[3,2],[5,0],[4,2],[4,-1],[3,0],[4,0],[2,1],[4,-1],[6,-2],[-2,-2],[-1,-1],[-2,-1],[0,-1],[-3,-1],[-10,-1],[-8,0],[-11,-2],[1,0],[11,1],[7,-1],[9,0],[3,1],[2,-1],[0,-2],[-3,-2],[-5,0],[-2,-2],[-1,0],[1,0],[4,0],[4,0],[0,-1],[-1,0],[-4,-2],[7,1],[-2,-3],[1,0],[3,2],[2,3],[1,1],[2,1],[1,2],[1,0],[0,-2],[-1,-2],[0,-2],[-1,-2],[1,-1],[2,0],[1,-1],[-1,-1],[-1,0],[-2,-2],[-6,-1],[0,-2],[1,-1],[0,-1],[-5,-2],[-10,1],[-3,1],[0,1],[-4,3],[-4,1],[-4,0],[-6,3],[-1,0],[2,-3],[2,0],[-7,-1],[-3,-1],[-10,0],[-1,-1],[5,-1],[10,1],[7,-2],[5,1],[4,-3],[0,-1],[6,-2],[2,-1],[6,-1],[2,0],[0,-3],[-2,0],[-7,0],[-6,2],[-2,-1],[-5,0],[-8,2],[0,-1],[1,-1],[5,-1],[10,-1],[3,-2],[4,-1],[1,-1],[-1,-1],[-3,-1],[-2,-2],[-9,2],[-1,0],[-1,-1],[7,-2],[4,-1],[-1,-1],[-2,1],[-2,-1],[-4,-1],[-3,1],[-2,0],[-1,-1],[-2,0],[-1,0],[0,1],[-2,0],[-1,-1],[0,-1],[2,-1],[1,0],[3,-2],[2,-1],[0,-1],[-1,-1],[-5,-2],[-2,0],[-2,0],[-1,0],[-4,-1],[-1,-1],[-7,0],[-2,2],[-3,0],[-2,0],[-1,3],[-2,0],[0,2],[-1,0],[-1,0],[-1,2],[-2,0],[0,2],[-1,0],[-2,0],[-1,1],[-2,-1],[3,-1],[1,-1],[-2,-1],[1,0],[4,-2],[2,-3],[0,-1],[3,-1],[1,-1],[0,-1],[1,0],[4,-1],[0,-1],[1,0],[1,0],[2,-2],[1,1],[-2,-2],[-4,1],[-1,0],[-1,1],[-2,0],[-4,1],[-7,0],[-1,0],[0,-1],[2,-1],[3,-1],[2,-1],[0,-2],[0,-1],[-2,-1],[-2,1],[-3,-1],[0,1],[-4,-1],[-1,1],[-2,-1],[-1,-1],[1,-1],[1,-1],[-2,-2],[2,-1],[4,1],[1,0],[3,1],[-1,-2],[-1,0],[1,-1],[2,3],[3,1],[0,1],[1,1],[4,2],[2,0],[-6,-3],[-1,0],[0,-1],[-3,-1],[-2,-2],[0,-1],[0,-1],[1,-1],[-1,-2],[-2,-2],[0,-1],[0,-1],[1,-1],[-3,-2],[0,-1],[-1,-1],[-2,1],[-9,-2],[-5,-1],[-2,-1],[1,1],[4,1],[12,2],[-6,2],[-4,0],[-2,0],[-1,0],[-1,-1],[1,0],[-1,-2],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,-1],[-6,-3],[-5,-2],[0,-1],[-1,-1],[1,-2],[1,-1],[-3,0],[0,-1],[0,-1],[-2,0],[-1,-1],[1,-1],[-13,0],[-7,-1],[2,1],[3,0],[8,1],[2,0],[1,1],[-4,2],[-5,1],[-1,-1],[-1,-1],[-2,0],[-1,1],[-1,0],[-1,0],[1,-1],[1,-1],[-2,-1],[-1,-1],[-1,2],[0,3],[0,-1],[-2,0],[0,1],[-1,1],[1,-2],[-2,0],[-1,1],[-2,0],[-5,0],[-1,0],[0,-1],[-1,-1],[-2,-1],[0,1],[-1,-1],[1,-2],[2,0],[2,1],[2,-1],[7,0],[2,0],[4,-1],[-9,0],[-11,0],[-15,-2],[-7,-1],[-2,-1],[-1,-2],[-9,-1],[-11,-3],[-16,-9],[-10,-5],[-15,-10],[-8,-5],[-8,-7],[0,-1],[-9,-1],[-26,-1],[-17,0],[-11,-1],[-15,-3],[-8,-2],[-5,-2],[-6,-4],[-6,-8],[-2,-3],[-2,-2],[-8,-4],[-15,-6],[-23,-3],[-17,-3],[-7,0],[-20,2],[-3,0],[-2,-2],[-4,1],[-3,-1],[-17,5],[-8,2],[-17,5],[-15,2],[-14,1],[-9,-1],[-9,1],[-7,3],[-26,14],[-13,6],[-6,2],[-12,5],[-10,2],[-12,5],[-7,0],[-4,0],[-3,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-7,0],[-16,-2],[-5,1],[-3,3],[-3,0],[-3,1],[-1,-2],[-7,-1],[-5,-1],[-3,0],[-6,0],[-5,0],[-3,0],[-5,0],[-2,1],[-4,0],[-1,1],[-3,0],[-2,-1],[-2,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-4,-2],[-3,0],[-1,0],[-1,-1],[-1,-1],[-7,2],[-6,-3],[-1,0],[-1,1],[-2,1],[1,1],[2,1],[1,3],[-4,1],[0,2],[3,1],[0,1],[1,2],[0,1],[5,0],[-1,1],[1,1],[-2,-1],[-3,0],[-3,1],[0,1],[-2,1],[1,2],[3,1],[0,4],[-1,0],[0,1],[1,2],[1,1],[1,1],[3,-1],[0,-1],[4,-2],[3,-2],[1,0],[-1,-1],[1,-1],[0,-1],[1,-3],[2,1],[5,-1],[5,0],[1,0],[0,2],[0,1],[3,1],[2,0],[5,2],[7,-2],[3,1],[1,1],[1,1],[5,1],[2,-1],[0,1],[3,1],[2,0],[0,1],[-1,0],[3,0],[-3,1],[-2,2],[1,0],[-1,0],[-2,0],[1,2],[3,1],[0,-1],[2,0],[1,-1],[-2,1],[0,-1],[-2,0],[1,-1],[3,1],[0,-1],[2,0],[0,1],[2,0],[-2,1],[-1,0],[3,1],[-2,0],[-2,1],[-1,1],[-1,1],[-3,1],[-1,-1],[-1,0],[2,1],[2,0],[1,-1],[2,0],[1,1],[1,0],[-1,-1],[2,0],[2,0],[3,1],[0,-1],[2,0],[0,-2],[4,0],[-3,1],[0,1],[1,1],[2,0],[-3,1],[2,1],[2,-1],[0,-1],[-1,0],[2,0],[1,1],[4,1],[-1,1],[-2,-1],[-2,0],[-1,0],[1,2],[2,0],[3,1],[-1,0],[-4,0],[-3,1],[-2,-1],[0,1],[1,1],[-1,1],[-1,1],[-2,-1],[-2,0],[-2,0],[1,0],[1,1],[1,2],[3,3],[2,1],[3,2],[4,2],[0,1],[2,-1],[7,0],[0,1],[-1,0],[-3,0],[-1,1],[9,2],[1,0],[0,-1],[2,0],[3,0],[1,0],[3,-1],[4,1],[-1,1],[4,1],[1,0],[-1,1],[-2,0],[-2,-1],[-1,-1],[-2,0],[-1,0],[3,1],[1,0],[-1,1],[-1,1],[-8,-1],[-5,2],[-4,-1],[-7,-2],[-1,-1],[-3,-1],[-2,-2],[-9,-4],[-7,-1],[-3,1],[-1,0],[0,1],[-2,0],[-3,-1],[0,1],[2,1],[2,1],[2,1],[1,1],[-1,-1],[1,0],[1,1],[2,2],[4,0],[1,0],[5,1],[-2,0],[1,1],[1,0],[-1,1],[-2,-1],[-3,1],[-5,-1],[1,-1],[-4,1],[-1,2],[1,0],[1,2],[0,1],[1,2],[1,0],[-1,0],[-1,-2],[1,0],[1,1],[1,3],[0,1],[1,2],[2,1],[0,-1],[4,2],[1,1],[2,0],[4,1],[3,0],[0,1],[-1,0],[-3,0],[2,0],[3,4],[-2,0],[-4,-1],[-1,-1],[-1,-1],[-1,0],[-2,0],[-1,-2],[-1,0],[-1,0],[1,1],[1,1],[-1,0],[0,-1],[-1,0],[-2,0],[-2,-2],[-1,1],[-3,-2],[0,1],[-2,0],[0,-1],[-2,-1],[0,-2],[-1,-2],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-2,1],[1,1],[0,1],[-2,1],[-1,-1],[0,-1],[1,-1],[-1,-1],[-1,1],[0,1],[1,3],[2,1],[-1,1],[-1,-1],[0,2],[1,0],[-1,1],[0,-1],[-4,0],[2,0],[2,1],[-3,2],[-3,-2],[-1,1],[-1,-1],[-2,1],[0,1],[1,1],[-2,0],[0,2],[2,2],[-1,0],[-1,0],[-1,1],[-1,1],[-6,2],[1,1],[1,0],[-1,-1],[5,-2],[3,2],[1,2],[0,2],[-1,0],[-3,-1],[-2,-2],[-1,0],[1,2],[1,0],[2,1],[0,1],[0,1],[2,0],[2,1],[-1,1],[0,1],[2,1],[0,1],[-3,1],[-3,-1],[-2,1],[-1,-1],[-2,0],[2,1],[1,2],[-4,-1],[0,1],[1,0],[2,0],[1,1],[-1,2],[0,-1],[-1,-1],[-2,0],[0,1],[-1,1],[-1,-1],[-2,-1],[-2,1],[-6,-3],[2,0],[2,0],[-2,-1],[-3,1],[-3,-1],[-4,1],[4,0],[2,1],[-2,0],[-2,0],[1,1],[0,1],[-2,0],[-2,0],[-5,-1],[1,0],[4,-2],[1,-1],[-5,2],[-3,1],[-6,0],[-4,0],[-1,0],[-2,0],[-3,1],[-1,0],[-3,-1],[-2,1],[-5,0],[-13,2],[-8,0],[-2,0],[0,-1],[0,-1],[-1,-1],[-3,-1],[-5,2],[-9,-1],[-2,-1],[-1,-1],[1,-1],[-2,-2],[1,-1],[-1,0],[-5,0],[-8,-1],[-6,2],[-4,0],[0,1],[-1,2],[-2,1],[-2,3],[-3,1],[-2,3],[-1,3],[1,1],[1,-1],[3,0],[1,1],[3,1],[2,2],[2,0],[5,1],[2,0],[1,-1],[3,-2],[5,0],[1,-1],[5,0],[2,1],[1,1],[0,1],[4,0],[2,0],[1,1],[1,2],[1,1],[6,-1],[3,1],[-1,1],[2,0],[1,1],[2,-1],[1,-1],[-2,-2],[1,0],[1,0],[0,1],[1,1],[2,-1],[0,-1],[-2,-1],[2,0],[2,0],[1,-1],[3,1],[1,0],[0,2],[-1,2],[-1,3],[1,1],[3,1],[4,-1],[4,0],[-2,-1],[-2,-3],[-2,-2],[3,-1],[0,-1],[0,-1],[2,-1],[1,1],[0,1],[-1,2],[-1,1],[1,0],[1,1],[-1,0],[3,0],[3,-1],[1,0],[0,-1],[-1,-2],[1,-1],[0,1],[1,1],[0,1],[-1,0],[2,1],[-1,1],[-5,0],[2,3],[2,1],[5,1],[0,-1],[2,-1],[-1,0],[2,-1],[1,1],[-1,0],[1,1],[6,0],[2,1],[2,1],[1,0],[0,1],[1,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[1,1],[0,-1],[1,0],[1,0],[2,2],[-1,-1],[1,0],[7,5],[2,-1],[-1,-1],[-4,-2],[6,2],[0,-1],[1,0],[-2,-1],[-1,0],[2,0],[-1,-1],[-4,-2],[1,0],[3,1],[3,0],[-1,0],[0,-2],[1,-1],[3,0],[2,-1],[0,-1],[2,-1],[1,0],[-1,1],[-3,3],[1,1],[1,1],[2,1],[2,1],[2,0],[3,0],[1,0],[4,0],[3,1],[4,0],[2,1],[3,-2],[5,0],[1,-1],[-1,0],[2,-1],[2,1],[1,-1],[1,0],[3,0],[-1,1],[1,0],[1,0],[1,0],[-1,0],[5,0],[5,-1],[2,0],[4,0],[3,0],[6,0],[0,-1],[2,1],[1,2],[0,1],[-5,1],[1,2],[4,1],[0,2],[3,2],[1,2],[1,1],[1,0],[0,1],[-2,1],[1,2],[-1,0],[-3,1],[-4,0],[-1,0],[-1,-2],[1,-1],[0,-1],[-2,0],[0,-1],[-3,0],[-2,-2],[-6,-2],[-8,-1],[-8,1],[-7,0],[-10,4],[-1,1],[-1,0],[-1,0],[-2,-1],[-2,-1],[-2,1],[-4,0],[-2,0],[-1,1],[1,1],[2,0],[1,1],[2,0],[-2,-2],[3,1],[0,1],[3,0],[-2,1],[-2,0],[-1,1],[-1,-1],[1,0],[-1,-1],[-4,0],[5,2],[-1,0],[0,1],[2,1],[1,2],[2,0],[4,1],[0,1],[-1,0],[3,2],[2,-1],[2,2],[-3,0],[10,3],[2,-1],[6,2],[1,1],[1,0],[1,1],[9,4],[4,0],[1,2],[2,-1],[0,1],[-1,0],[3,1],[1,1],[3,0],[8,0],[2,1],[5,3],[-2,0],[-5,-2],[-2,0],[-8,2],[-2,-1],[-2,0],[-2,-1],[1,1],[2,2],[-1,1],[-4,3],[-3,1],[-1,0],[0,-1],[1,-2],[-1,-1],[-2,0],[0,2],[-2,3],[-3,1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[-1,-2],[-2,0],[-3,0],[-2,0],[1,1],[-2,0],[-4,2],[-5,1],[0,1],[-1,0],[1,1],[2,1],[1,1],[11,1],[2,1],[4,3],[0,1],[1,2],[4,2],[-1,0],[-4,-2],[-2,-1],[-1,-1],[-2,-2],[-2,-2],[-7,-1],[-1,1],[-1,0],[4,2],[1,1],[-1,2],[-1,-1],[0,-1],[-4,-1],[-2,-2],[-1,0],[0,2],[-1,0],[-2,1],[1,-1],[1,-2],[-1,-1],[-5,-1],[-1,0],[-1,2],[1,1],[0,2],[-1,1],[-1,3],[0,2],[-2,1],[-1,2],[-1,0],[0,-2],[1,-3],[1,-2],[0,-1],[-1,-1],[-2,-2],[-2,0],[-1,1],[1,2],[0,2],[-2,4],[-1,0],[0,-1],[1,-2],[0,-2],[-1,-3],[0,-2],[-1,-1],[-3,0],[-1,1],[-1,3],[-2,3],[1,1],[3,3],[0,1],[0,1],[-2,-2],[-2,-1],[-2,2],[-2,0],[0,-1],[0,-1],[2,-4],[1,-3],[0,-3],[2,-2],[-1,0],[-2,1],[-3,-1],[-1,1],[3,1],[-3,1],[-4,0],[-1,1],[-2,0],[3,3],[5,3],[0,1],[-2,1],[-3,0],[0,1],[-1,1],[0,-1],[1,-3],[-6,-3],[-1,1],[0,1],[-1,2],[0,1],[-1,0],[-2,-3],[0,-2],[-2,-2],[-1,-1],[-4,0],[-2,1],[-6,0],[0,2],[0,1],[1,1],[-1,0],[-2,-1],[-2,-2],[-1,-1],[1,-2],[1,-1],[0,-1],[-1,-1],[-2,-1],[-2,-1],[-10,1],[-1,0],[-1,2],[-1,1],[-1,0],[-2,-1],[4,-1],[-4,-1],[-3,-1],[-6,-1],[-9,-1],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-2,0],[-13,-1],[-6,1],[-1,0],[1,1],[0,1],[-3,2],[3,-1],[1,1],[0,1],[-5,2],[-2,-1],[-2,0],[4,-1],[-1,-1],[-7,3],[-7,2],[-6,0],[-1,0],[-12,-1],[-6,0],[-5,1],[6,3],[0,1],[1,0],[4,1],[3,1],[1,1],[-1,1],[0,1],[0,1],[1,2],[3,1],[0,1],[0,1],[1,0],[13,-3],[3,-2],[0,-1],[1,-1],[2,1],[5,-2],[7,-1],[0,-1],[0,-1],[5,-2],[3,-1],[2,2],[3,0],[-1,1],[-2,0],[-4,0],[-2,2],[-6,3],[-1,1],[-2,0],[-5,4],[-2,1],[0,1],[13,-1],[3,-1],[6,-2],[2,-1],[2,-1],[0,1],[-3,2],[-3,1],[-1,1],[-4,2],[-8,2],[-3,1],[-2,1],[-2,3],[-1,1],[-1,2],[-1,3],[2,3],[2,0],[10,-2],[4,-3],[4,0],[4,-2],[2,0],[4,-2],[1,0],[4,-1],[-2,0],[3,0],[6,-2],[0,-1],[-1,-1],[3,1],[2,-3],[1,-1],[0,-1],[-2,-1],[0,-2],[1,-1],[1,0],[1,1],[0,1],[2,2],[2,-2],[1,0],[0,1],[-1,1],[1,0],[4,-2],[2,0],[2,1],[-4,2],[5,1],[2,1],[3,0],[3,1],[-6,0],[-4,-1],[-6,1],[-2,1],[-1,1],[-2,1],[-2,2],[5,0],[9,1],[3,1],[6,0],[4,-1],[0,1],[0,1],[-2,1],[6,2],[-3,1],[-7,-3],[-5,0],[-5,0],[-9,0],[-1,-1],[-15,3],[-10,6],[-1,1],[-3,5],[3,3],[2,1],[2,-1],[12,-2],[1,-2],[4,-1],[8,1],[1,-1],[3,-1],[3,0],[1,-1],[4,0],[9,-2],[5,0],[-6,1],[-7,3],[-9,0],[0,2],[-3,1],[-4,0],[-4,1],[-2,1],[-1,1],[-6,2],[-6,4],[-3,2],[-2,1],[-1,2],[0,1],[2,1],[1,2],[1,0],[6,-1],[2,1],[11,-4],[9,-1],[1,0],[1,-2],[-1,0],[0,-1],[3,-1],[3,0],[-1,1],[-3,1],[0,1],[0,1],[-1,1],[-6,2],[-1,0],[-2,1],[-10,5],[-2,1],[2,1],[6,0],[2,1],[2,0],[4,-1],[4,-2],[6,-2],[-7,3],[-3,2],[-6,1],[-4,0],[-1,1],[6,3],[4,0],[1,1],[0,1],[2,0],[9,0],[7,-2],[1,-1],[0,-1],[1,-1],[3,0],[5,-1],[2,-2],[1,-2],[-1,-3],[-4,-1],[0,-2],[1,0],[1,1],[3,1],[6,4],[2,-1],[2,-1],[0,-2],[0,-3],[0,-1],[-1,-1],[-3,-2],[-4,-4],[1,0],[2,1],[1,-1],[1,2],[5,3],[2,4],[2,-3],[0,-1],[-2,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[-1,1],[0,1],[3,3],[0,2],[1,0],[1,0],[0,-2],[0,-1],[-1,-1],[-2,-3],[-1,-2],[-3,-1],[-1,-1],[-2,-1],[-1,-2],[1,0],[4,3],[5,3],[1,3],[2,1],[2,-1],[-1,-5],[-1,-2],[-1,-1],[-1,-2],[0,-1],[1,0],[1,1],[1,1],[2,2],[1,2],[0,2],[0,5],[1,4],[2,1],[3,-2],[0,1],[3,0],[0,-1],[1,-2],[3,-1],[1,0],[1,-1],[0,-1],[2,-2],[1,0],[-1,-2],[1,-1],[-1,-2],[0,-2],[-2,-3],[-2,-1],[-1,-2],[1,0],[0,-1],[-2,-2],[2,0],[2,2],[0,3],[2,1],[2,4],[-1,1],[3,1],[0,1],[0,1],[1,2],[0,1],[1,0],[1,-2],[1,-1],[-1,-1],[1,0],[1,-1],[1,1],[-1,1],[1,0],[2,-2],[-1,-1],[0,-1],[0,-3],[3,1],[0,1],[-1,1],[-1,0],[1,1],[1,0],[0,-2],[-1,-3],[-2,-3],[-1,-1],[-1,-2],[-6,-3],[-3,-1],[0,-1],[3,1],[3,1],[3,2],[1,1],[3,1],[2,3],[2,2],[0,1],[0,1],[2,1],[1,-1],[1,1],[-2,1],[0,1],[-1,0],[-1,2],[0,1],[0,2],[-2,2],[-4,3],[-2,0],[0,1],[1,1],[1,1],[-1,1],[2,2],[-6,0],[-4,2],[-1,1],[-1,0],[-6,1],[-6,2],[-3,1],[-3,1],[-3,0],[-8,4],[-3,2],[-1,2],[0,1],[1,0],[5,1],[2,0],[1,0],[-1,1],[2,1],[8,0],[8,-2],[5,0],[1,0],[1,-1],[2,-1],[1,0],[-1,1],[0,1],[0,1],[3,-1],[1,0],[0,1],[7,1],[6,1],[-4,1],[-6,-2],[-8,1],[2,1],[3,1],[3,2],[2,0],[-2,1],[0,1],[-2,1],[-1,0],[1,-1],[0,-1],[-2,-1],[-5,-2],[-7,0],[-3,1],[3,4],[0,1],[0,1],[5,0],[0,1],[-6,0],[-1,-1],[-1,-1],[-4,-3],[-6,-1],[-1,1],[1,3],[3,1],[1,1],[-1,1],[-1,-2],[-6,-1],[-1,-2],[-1,-1],[-7,-2],[-4,0],[-5,2],[-6,1],[-3,2],[0,1],[0,1],[1,0],[7,-2],[6,1],[1,2],[0,1],[-1,1],[-3,0],[-6,4],[3,1],[4,-2],[2,2],[6,0],[2,1],[0,1],[-2,1],[2,1],[5,-1],[3,0],[3,-2],[5,-1],[1,0],[1,-2],[2,0],[3,0],[2,2],[2,1],[-1,2],[1,0],[3,0],[4,-2],[0,-1],[1,0],[1,0],[2,-1],[2,0],[1,1],[0,1],[-2,2],[4,0],[1,-1],[1,-1],[1,-2],[1,-2],[1,-2],[7,-2],[0,-1],[3,-1],[-1,-1],[1,-1],[4,1],[-2,-2],[-2,-1],[1,-1],[2,-1],[-3,-3],[1,-1],[2,0],[5,2],[1,-1],[-2,-2],[1,0],[3,1],[0,2],[1,1],[1,0],[1,0],[-1,-2],[0,-1],[1,-1],[5,1],[4,1],[1,-2],[3,-1],[-2,-2],[-5,-3],[6,2],[4,-1],[1,-2],[11,0],[-2,-2],[4,-2],[-2,-2],[-2,-1],[4,-2],[-1,0],[-1,-2],[1,-2],[1,-1],[2,-1],[3,2],[2,-2],[0,-1],[-3,-2],[4,1],[1,1],[1,1],[0,1],[-2,1],[0,1],[1,1],[5,0],[4,-4],[-1,0],[-4,1],[0,-1],[1,-1],[1,0],[-1,-1],[3,-1],[0,-1],[4,1],[6,1],[3,-2],[3,0],[1,-2],[-1,0],[-7,-1],[-6,-1],[-4,0],[-7,-2],[1,-1],[4,0],[3,1],[4,0],[4,1],[2,0],[2,-1],[-2,-1],[-5,-1],[1,-1],[5,1],[5,1],[3,-2],[1,-2],[0,-1],[-1,-1],[-3,-2],[1,0],[2,-1],[1,0],[-1,-2],[0,-1],[-1,-1],[-3,-3],[-3,-2],[-6,0],[-2,-1],[0,-1],[3,0],[1,0],[1,1],[1,-1],[0,-1],[5,-1],[0,-1],[-4,-1],[-2,-2],[-1,0],[-1,-2],[-10,1],[-1,1],[-2,-1],[-1,0],[0,1],[-1,1],[-3,1],[0,1],[-2,3],[-4,2],[-1,-1],[1,0],[-5,0],[-1,-1],[4,0],[5,-2],[1,-3],[1,-1],[-3,-1],[2,-1],[1,-2],[-1,0],[3,-3],[10,0],[3,1],[6,-2],[1,-1],[0,-1],[-2,-1],[-4,-3],[-1,-1],[0,-1],[1,0],[2,0],[3,2],[1,2],[1,0],[2,1],[5,-1],[1,-4],[0,-1],[-2,-3],[-1,-1],[-5,-3],[0,-1],[-8,-3],[1,0],[1,0],[6,1],[6,3],[2,0],[1,-2],[1,0],[2,-1],[0,-1],[2,-1],[2,0],[0,-1],[-2,-1],[3,-2],[-1,-2],[1,-3],[0,-2],[0,-1],[-1,-2],[3,-4],[2,-1],[0,-2],[3,-3],[0,-3],[1,-3],[2,0],[0,2],[0,1],[0,1],[-3,6],[-1,0],[0,2],[0,1],[2,0],[-1,2],[2,1],[1,2],[-1,3],[-1,3],[0,3],[0,1],[0,1],[0,1],[-1,1],[3,1],[2,-1],[0,-2],[4,-5],[3,-4],[2,0],[2,1],[-3,4],[-1,3],[-1,1],[-1,1],[-1,4],[0,1],[1,3],[2,4],[1,2],[0,1],[1,1],[2,1],[2,2],[4,1],[1,1],[2,1],[3,2],[2,1],[3,2],[0,-1],[1,0],[2,1],[1,0],[0,-1],[3,0],[-1,-2],[0,-1],[0,-1],[1,-1],[-1,-3],[0,-1],[3,0],[8,0],[10,2],[5,1],[1,3],[1,1],[1,1],[-1,2],[1,1],[1,1],[0,1],[1,1],[-1,3],[0,2],[0,1],[-1,2],[-2,2],[1,1],[-1,0],[-1,0],[0,1],[1,1],[0,1],[-1,0],[1,0],[0,1],[-1,2],[-2,2],[-2,3],[0,1],[-1,2],[0,3],[0,1],[-2,1],[-1,2],[-1,0],[3,5],[-2,2],[3,1],[3,-1],[3,2],[5,0],[3,0],[4,2],[2,0],[1,-1],[2,0],[1,1],[1,-1],[-1,-1],[3,-2],[2,0],[0,-1],[0,-1],[2,-1],[0,-2],[2,-2],[4,-3],[0,-1],[2,-1],[0,-1],[-1,1],[0,-1],[1,-2],[1,0],[3,-2],[0,-1],[0,-1],[1,-1],[2,0],[1,1],[6,-3],[1,0],[1,-1],[2,-1],[1,-2],[2,-3],[1,-1],[-1,-4],[2,-2],[2,-1],[5,1],[1,0],[0,1],[1,1],[3,-2],[3,-2],[6,3],[0,1],[2,2],[0,1],[-1,2],[2,1],[0,1],[-3,4],[0,2],[-2,1],[-1,1],[-1,2],[-3,2],[-2,1],[0,1],[1,1],[6,1],[1,1],[0,1],[0,1],[-2,2],[-1,1],[1,1],[4,2],[2,1],[2,0],[11,1],[2,0],[1,-2],[2,0],[1,1],[0,1],[2,1],[2,0],[0,1],[0,1],[2,4],[2,1],[7,3],[3,0],[2,-1],[0,-1],[-1,-2],[-1,-1],[2,0],[3,2],[2,3],[-1,1],[-1,0],[3,0],[4,0],[1,-1],[1,-1],[-2,-2],[-1,-3],[2,0],[0,1],[3,2],[3,1],[3,-2],[4,-3],[0,-2],[-4,-2],[0,-1],[7,2],[1,0],[2,-1],[1,-2],[2,-4],[-1,-4],[-1,-1],[0,-1],[2,-1],[4,0],[1,-1],[3,-1],[2,1],[5,-1],[2,-2],[0,-1],[2,-1],[0,-2],[1,-1],[0,-1],[1,0],[2,0],[3,-2],[0,-2],[0,-3],[1,-1],[0,-1],[2,-1],[0,-2],[0,-3],[3,-2],[1,-1],[3,-2],[-1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,1],[0,1],[-3,5],[-1,2],[0,1],[0,3],[2,1],[0,1],[1,2],[-1,3],[0,1],[-2,3],[0,1],[-2,1],[-1,1],[-1,1],[-1,0],[1,-1],[-3,0],[-3,1],[0,2],[2,2],[-5,3],[-3,3],[0,1],[0,1],[-1,2],[-1,1],[0,3],[-1,2],[0,1],[-1,1],[1,4],[4,2],[9,-1],[1,0],[0,-2],[1,0],[1,0],[0,1],[1,1],[1,0],[2,-1],[-1,-1],[1,-1],[3,1],[2,1],[7,-1],[3,-2],[1,-2],[2,-1],[3,0],[1,0],[1,-1],[5,-2],[5,-4],[1,-1],[0,-1],[0,-2],[3,-1],[8,-1],[7,1],[4,0],[0,1],[2,1],[1,0],[-1,0],[0,1],[0,1],[3,1],[0,1],[-1,0],[1,3],[-1,0],[2,1],[-1,1],[4,0],[3,3],[1,0],[0,2],[0,1],[-2,0],[0,1],[1,1],[2,1],[0,1],[2,0],[6,0],[0,1],[0,1],[2,0],[8,0],[3,-2],[1,-2],[0,-1],[3,-2],[0,-1],[5,-1],[11,2],[16,4],[6,2],[2,2],[0,1],[3,2],[1,0],[0,4],[-1,2],[-2,1],[-1,0],[0,1],[-1,2],[-1,1],[-1,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,1],[2,0],[-2,3],[-1,2],[-2,2],[2,3],[2,0],[3,0],[4,1],[1,-1],[-1,-1],[1,0],[4,1],[3,-1],[0,-1],[1,-1],[5,1],[2,1],[2,1],[1,1],[0,1],[1,1]],[[3604,9159],[-2,-1],[-1,0],[2,1],[-2,1],[0,2],[-1,1],[6,1],[-2,-1],[2,0],[1,-1],[-1,-1],[-2,-1],[0,-1]],[[3764,9437],[-2,0],[-1,1],[-1,0],[1,1],[-2,3],[1,0],[4,-4],[1,-1],[-1,0]],[[3796,9497],[0,-1],[-1,0],[-2,1],[-1,1],[1,1],[0,1],[3,-2],[0,-1]],[[3422,9339],[-2,0],[-6,0],[3,1],[3,0],[2,0],[0,-1]],[[3808,9457],[-1,-1],[-2,0],[-1,1],[2,0],[2,1],[0,-1]],[[3430,9279],[-2,-1],[-1,2],[2,1],[1,0],[1,-1],[-1,-1]],[[3666,9441],[0,-2],[-1,0],[-1,3],[2,-1]],[[3423,9302],[2,0],[1,0],[-2,0],[2,0],[-1,-1],[-1,1],[-5,3],[1,1],[0,-1],[3,-3]],[[3405,9350],[-2,-2],[2,1],[-1,-1],[-1,0],[-1,0],[2,2],[3,1],[1,0],[-3,-1]],[[4118,9287],[-2,-1],[-1,1],[2,1],[1,-1]],[[3444,9273],[-2,0],[-3,1],[1,1],[1,0],[0,-1],[1,-1],[2,0]],[[3409,9343],[-2,0],[-1,1],[2,1],[1,-1],[0,-1]],[[3472,9240],[-1,0],[-1,0],[0,1],[-1,1],[1,0],[2,-2]],[[3415,9346],[1,-1],[-5,1],[2,0],[2,0]],[[3418,9348],[-2,-1],[-1,0],[2,1],[1,0]],[[3577,9147],[-1,0],[-2,1],[2,1],[1,-2]],[[3403,9347],[-2,-1],[-1,1],[1,0],[1,1],[1,-1]],[[3403,9450],[0,-1],[-1,0],[0,2],[1,0],[0,-1]],[[3418,9341],[-3,-1],[1,1],[1,0],[1,0]],[[3412,9352],[-4,-1],[-1,0],[5,1]],[[3431,9282],[-2,0],[0,1],[-2,0],[1,0],[3,-1]],[[3439,9280],[-1,-1],[0,1],[1,0]],[[3421,9339],[-1,-1],[-2,1],[1,0],[2,0]],[[3416,9337],[-2,0],[2,1],[1,0],[-1,-1]],[[4087,9284],[-1,-1],[0,1],[-2,0],[2,0],[1,0]],[[3412,9344],[-2,0],[2,1],[0,-1]],[[3389,9445],[0,-1],[-1,0],[0,1],[0,1],[1,-1]],[[3423,9346],[-1,0],[-1,0],[2,0]],[[3477,9243],[-1,-1],[0,1],[1,0]],[[3429,9364],[0,-1],[-1,0],[1,1]],[[3390,9371],[-1,0],[1,1],[0,-1]],[[3396,9339],[-2,0],[2,1],[0,-1]],[[4084,9284],[-2,0],[2,1],[0,-1]],[[3387,9332],[-1,0],[0,1],[1,0],[0,-1]],[[3383,9372],[-3,-1],[2,1],[1,0]],[[3421,9436],[0,-1],[-1,1],[1,0]],[[3612,9165],[-1,0],[1,1],[0,-1]],[[6459,7335],[1,-1],[0,-1],[-2,0],[0,-2],[1,0],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[-2,0],[0,1],[-3,-1],[-1,0],[-2,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-3,0],[-1,-1],[-2,0],[-1,0],[0,-1],[1,-2],[-1,-1],[-1,0],[-1,-1],[1,-1],[-1,0],[-1,-1],[-2,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[1,-1],[0,-1],[1,0],[-1,-2],[1,-1],[2,1],[0,1],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-2,0],[0,-1],[-1,-1],[-1,-1],[-2,0],[0,-1],[1,0],[0,-2],[-1,-2],[-1,0],[-1,-1],[1,0],[1,-2],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,1],[0,1],[1,1],[1,-1],[2,0],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[1,-1],[0,-1],[1,-1],[-1,-1],[3,-1],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-2],[1,-1],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[2,-1],[0,-1],[1,-1],[3,-2],[2,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-3,-1],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0]],[[6460,7235],[0,1],[1,1],[3,-1],[1,-1],[2,1],[1,1],[-1,0],[-2,0],[-1,1],[0,1],[1,0],[-1,0],[-1,-1],[0,1],[-1,1],[1,0],[1,1],[-1,1],[0,2],[-2,2],[-2,1],[-3,4],[-3,1],[-1,2],[-3,0],[-1,2],[0,-2],[-2,1],[-1,2],[-1,1],[1,-2],[-1,-2],[-1,-1],[0,-2],[1,-1],[2,0],[0,-1],[-2,0],[-3,-2],[-2,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,1],[-2,0],[-2,1],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[-3,-1],[-1,1],[-1,0],[-2,0],[-1,0],[0,2],[-1,0],[-1,-1],[-1,1],[0,-1],[-2,-1],[-2,0],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,1],[0,-1],[1,-1],[0,-1],[2,0],[1,0],[2,0],[1,1],[0,-1],[-3,-3],[-1,-2],[0,-1],[-10,-1],[-6,-1],[-2,-2],[-8,-4],[-3,-2],[-3,-2],[-6,-2],[-6,-3],[-9,-3],[-2,-1],[-1,-1],[-1,0],[0,1],[0,1],[1,1],[1,1],[2,1],[0,1],[1,0],[0,2],[2,-1],[0,1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,1],[-1,0],[0,1],[1,0],[1,0],[1,1],[2,0],[0,2],[-2,1],[-1,-1],[-1,-1],[0,1],[-1,-1],[-2,-1],[1,1],[3,2],[0,1],[-1,0],[-1,2],[-1,-1],[-1,1],[0,1],[-6,-2],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,-1],[-1,0],[-3,-3],[-1,-1],[0,1],[-2,-1],[-2,-1],[0,-1],[3,-2],[1,0],[1,-1],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[-2,0],[0,1],[0,1],[1,-1],[0,1],[-3,2],[0,-1],[-1,-1],[-1,1],[0,-1],[0,-3],[-2,0],[-3,-1],[-1,0],[-2,-2],[2,-2],[0,-1],[-2,1],[-1,1],[0,1],[-1,0],[0,-1],[1,-2],[-1,-3],[0,-2],[-1,-2],[0,-4],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,-1],[1,1],[0,-1],[0,-1],[0,-2],[0,-2],[1,0],[0,-1],[-1,0],[3,-1],[2,-1],[0,1],[-1,3],[1,0],[1,0],[0,-1],[0,-1],[1,3],[0,-1],[1,-1],[0,-2],[1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,1],[-1,4],[-1,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-2],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[3,-1],[2,0],[2,0],[1,-1],[1,-1],[-1,0],[-1,1],[0,1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-3],[1,2],[1,1],[1,0],[0,1],[1,-1],[1,0],[1,1],[1,0],[1,1],[0,1],[-1,0],[1,1],[2,-2],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[2,0],[0,-2],[-1,-3],[0,-4],[-1,-1],[-1,0],[0,-4],[-1,-1],[-2,-1],[0,1],[3,0],[0,1],[-1,0],[-1,1],[0,1],[0,3],[-1,1],[-2,-1],[-1,-2],[0,-1],[1,0],[0,-1],[-1,-3],[1,-1],[1,0],[1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-6,2],[2,0],[1,0],[0,1],[3,-1],[-2,1],[-1,1],[-1,1],[-1,1],[0,1],[-2,0],[-2,-2],[0,-1],[1,0],[-1,-1],[-1,-3],[-1,-2],[0,-3],[-1,-4],[1,-2],[1,-3],[1,-2],[1,-2],[0,-2],[0,-4],[0,-1],[0,-3],[1,-6],[2,-6],[1,-5],[1,-5],[1,-2],[1,-4],[2,-4],[1,-2],[2,-2],[1,-2],[1,0],[0,-1],[5,-5],[2,-3],[2,-1],[1,0],[1,0],[2,-3],[2,-3],[5,-4],[3,-1],[1,-1],[1,0],[2,0],[2,0],[1,0],[7,-5],[2,0],[4,-4],[3,-3],[2,-1],[3,-2],[7,-6],[3,-2],[6,-6],[5,-3],[4,-2],[3,-1],[1,-1],[2,-1],[2,-1],[3,-1],[1,1],[0,1],[1,-1],[-1,0],[1,0],[0,1],[-1,1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-2],[0,-1],[1,-1],[1,0],[2,-1],[0,-1],[1,0],[0,-2],[0,-2],[0,-1],[1,-3],[2,-5],[1,-3],[2,-6],[2,-2],[1,-2],[1,-2],[3,-6],[1,-4],[1,-4],[1,0],[0,1],[0,-1],[0,-2],[1,-2],[1,-2],[0,-3],[1,-1],[0,-1],[1,-5],[1,-5],[1,-3],[2,-5],[1,0],[0,-2],[1,-4],[0,-2],[2,-4],[1,-3],[1,-1],[2,-5],[3,-5],[2,-4],[2,-4],[2,-2],[3,-3],[3,-4],[3,-3],[1,-1],[2,-1],[5,-5],[5,-2],[1,-1],[1,-1],[2,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,-2],[3,-2],[3,-2],[-1,-1],[1,0],[0,-1],[3,-2],[1,-1],[4,-2],[4,-2],[4,-1],[1,-1],[0,1],[1,-1],[0,-2],[0,-3],[0,-1],[0,-1],[1,-1],[2,-2],[2,-1],[1,0],[3,-2],[6,-3],[5,-1],[3,-1],[1,-1],[2,-1],[4,-5],[2,-1],[3,0],[3,-1],[4,0],[6,0],[3,0],[1,0],[1,-1],[1,-1],[4,0],[7,1],[10,2],[2,0],[2,-1],[2,-1],[4,1],[7,0],[10,2],[5,1],[1,0],[2,0],[2,0],[2,-1],[1,-1],[2,0],[0,-1],[1,-1],[2,0],[0,-1],[1,-1],[1,-1],[0,-3],[1,-2],[1,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-3,-1],[-1,0],[-2,-2],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-3],[2,-5],[2,-2],[1,-2],[2,-2],[4,-1],[1,-1],[7,-4],[1,0],[3,-1],[2,-2],[1,0],[3,-2],[2,-1],[2,-1],[5,-1],[3,-2],[2,-1],[3,-2],[2,-1],[1,0],[1,0],[1,-1],[2,0],[1,-1],[0,-1],[1,0],[2,-2],[2,0],[3,-2],[0,1],[3,-1],[2,-1],[3,-1],[1,0],[2,-1],[1,0],[1,-1],[1,-1],[2,-1],[2,0],[1,0],[1,0],[0,1],[-2,0],[1,0],[1,0],[0,-2],[4,-1],[1,-1],[2,-1],[2,0],[2,-1],[2,-1],[2,0],[3,-2],[1,0],[4,-2],[2,-1],[2,-2],[1,-1],[-1,0],[3,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[2,-2],[0,-1],[1,-1],[1,0],[1,-1],[1,-2],[-1,0],[1,0],[3,-2],[4,-3],[3,-2],[0,-1],[4,-2],[3,-2],[10,-3],[3,-2],[2,-1],[1,-1],[3,-2],[1,0],[1,0],[-1,-1],[1,0],[3,-2],[7,-1],[1,0],[0,1],[1,-3],[1,0],[0,-1],[-1,-1],[3,0],[1,0],[0,1],[2,-1],[0,-1],[0,-1],[2,-3],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[1,-1],[2,-1],[0,-2],[2,-1],[1,-1],[1,-1],[3,-1],[1,0],[0,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,-1],[1,-2],[2,-1],[2,-2],[0,-1],[1,-1],[3,-2],[2,-3],[1,-1],[1,-2],[2,-1],[1,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[1,-2],[-1,-2],[0,-2],[1,0],[1,-1],[0,-1],[1,-2],[-1,0],[1,-1],[1,0],[1,-1],[-1,0],[0,-1],[1,-2],[-2,-2],[0,-1],[-1,0],[0,-3],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,-2],[-1,-2],[0,-1],[0,-2],[0,-2],[-1,0],[1,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-3],[-1,1],[-1,-1],[-1,0],[-1,2],[-1,0],[-1,0],[1,1],[-1,0],[-1,1],[-2,1],[-2,0],[-3,0],[-1,1],[-2,0],[-1,1],[-1,1],[-2,2],[-3,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-2,3],[0,1],[1,-1],[1,1],[0,1],[0,2],[-1,1],[-1,1],[0,1],[1,1],[1,2],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-3,3],[-1,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[-1,1],[0,1],[1,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-2,0],[-2,0],[0,1],[-1,0],[-1,-1],[-1,1],[-4,1],[-6,-1],[-9,-1],[0,1],[-1,1],[-2,1],[-1,0],[-1,1],[-1,0],[-3,0],[0,1],[-1,0],[0,1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[-1,1],[-2,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[1,1],[2,1],[1,1],[1,1],[0,1],[-1,0],[-2,3],[-2,-1],[-1,0],[-1,2],[-1,1],[-1,-1],[0,1],[-2,2],[-3,0],[-2,-1],[-4,-1],[-2,-1],[-4,-3],[-3,-3],[-2,-2],[-2,-2],[-1,-3],[-2,-3],[-3,-5],[-1,-2],[-3,-4],[-1,-4],[-2,-4],[-2,-3],[-2,-1],[-1,-2],[-3,-2],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-2],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-2,-2],[-2,-2],[-3,-4],[-2,-3],[-1,-1],[-1,-2],[0,-2],[-1,-2],[0,-2],[1,-2],[1,-1],[2,-1],[0,-4],[0,-1],[-1,-1],[0,-1],[1,0],[0,1],[1,-2],[3,-1],[2,-2],[2,0],[5,0],[4,-1],[2,1],[1,0],[4,-4],[1,-2],[0,-1],[3,-2],[1,-1],[2,-1],[1,0],[2,-2],[1,0],[1,-1],[6,-1],[0,-1],[1,-2],[1,-2],[3,-2],[2,-2],[4,0],[-2,-3],[-1,-3],[-1,-3],[0,-1],[0,-2],[-1,-3],[0,-1],[2,-3],[1,-1],[1,-1],[0,-1],[-2,-5],[-1,-2],[0,-2],[0,-2],[0,-1],[2,0],[-1,1],[1,-1],[0,-1],[-1,0],[1,-1],[0,-1],[1,-1],[2,-2],[1,0],[1,-1],[1,1],[0,-1],[-2,0],[-1,-2],[-1,-2],[0,-2],[1,0],[0,-1],[-2,-2],[-3,-2],[-1,-2],[-1,0],[0,1],[-2,1],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[-2,0],[-6,-1],[-1,0],[-4,-2],[-2,-1],[-3,-1],[-5,-3],[-2,-2],[-1,-1],[-4,-1],[-1,-1],[-1,-1],[-1,-2],[-2,-2],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[1,-2],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,-3],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-3],[0,-3],[0,-4],[0,-2],[-1,-2],[0,-1],[-2,-2],[-2,-3],[-3,-2],[-1,-2],[-2,-1],[-8,-2],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-1,-1],[-1,-1],[-4,-5],[0,-1],[-1,-1],[-2,-3],[-2,-2],[-1,-2],[0,-1],[0,-2],[-1,-3],[0,-1],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-3],[-3,-4],[-1,0],[-1,0],[-2,0],[-2,-1],[-2,1],[-1,0],[-2,1],[-3,0],[-2,0],[-3,-1],[-3,0],[-1,-1],[-2,1],[-2,1],[-1,0],[-2,1],[-1,1],[-2,1],[-2,4],[-1,1],[0,2],[1,1],[1,1],[-1,1],[0,2],[-1,1],[-1,2],[1,1],[1,1],[1,2],[-1,2],[0,1],[-1,3],[0,1],[0,3],[0,1],[3,0],[1,1],[1,1],[1,0],[2,0],[1,0],[2,2],[2,1],[1,1],[2,3],[0,1],[0,1],[0,2],[1,1],[1,0],[1,2],[0,1],[0,1],[1,2],[1,2],[1,0],[1,0],[0,1],[-1,0],[1,1],[0,1],[0,1],[-1,-3],[1,3],[1,3],[1,3],[0,2],[-1,0],[-1,1],[-2,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[1,2],[1,2],[2,1],[1,0],[1,1],[1,0],[2,1],[1,0],[1,2],[1,1],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[2,-1],[1,0],[1,0],[0,-1],[1,1],[1,0],[2,1],[1,1],[2,1],[2,7],[1,2],[0,2],[0,3],[0,1],[0,3],[0,2],[-1,0],[-1,0],[-2,2],[-1,0],[-1,1],[0,1],[-1,2],[-1,2],[-2,3],[-1,1],[0,1],[-1,5],[0,2],[-1,2],[0,2],[0,3],[-1,4],[0,5],[0,2],[0,2],[-1,1],[0,2],[0,2],[-1,1],[-1,3],[-1,5],[-1,2],[-2,2],[-1,1],[-1,2],[-2,4],[-1,0],[-1,1],[-1,0],[-1,2],[-1,2],[0,2],[-1,3],[-1,0],[-1,5],[-1,1],[-1,3],[0,1],[0,1],[0,2],[0,2],[-1,2],[0,4],[-1,0],[0,1],[-1,1],[1,1],[1,0],[0,2],[-1,1],[0,1],[0,1],[-1,2],[-1,1],[-1,1],[0,1],[-1,0],[0,2],[-1,2],[-2,2],[-1,1],[-1,1],[0,2],[-1,1],[-1,0],[-2,2],[1,1],[-1,0],[0,1],[-1,-1],[-1,1],[-1,0],[-1,0],[-4,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-2,0],[-2,1],[0,-1],[-2,1],[-1,0],[-2,3],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[1,0],[0,2],[0,2],[-1,1],[-2,1],[-3,4],[-1,0],[-1,0],[-3,4],[-1,1],[-2,1],[-2,-1],[-2,-1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,2],[-1,0],[0,1],[-2,1],[-1,1],[-2,0],[0,-1],[-1,1],[-1,1],[0,1],[1,1],[1,1],[1,0],[0,3],[0,1],[-1,1],[1,2],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[0,2],[0,2],[-1,2],[-3,7],[-3,7],[-2,3],[-4,5],[-3,3],[-1,2],[-3,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-2],[0,-1],[-1,0],[-4,2],[-1,0],[-1,-2],[-1,0],[-2,-2],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,1],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,-2],[-2,0],[-3,-2],[-2,-1],[-1,2],[1,1],[1,2],[0,1],[1,0],[0,1],[1,-1],[2,1],[1,1],[1,1],[-1,0],[2,2],[1,0],[0,1],[1,0],[2,2],[0,-1],[1,1],[0,1],[-1,2],[-1,2],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-4,3],[-1,1],[-2,2],[-2,2],[-2,1],[-1,-1],[-1,-1],[-2,0],[-1,-2],[0,-1],[-2,-1],[-1,1],[0,1],[-1,1],[-4,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,-2],[1,-1],[0,-1],[-1,1],[-1,0],[-2,0],[0,1],[0,1],[0,2],[0,2],[0,3],[-1,3],[-1,3],[-2,3],[-2,2],[-4,5],[-2,6],[-1,3],[-3,4],[-1,2],[-1,1],[-1,2],[-5,4],[-2,2],[-2,1],[-1,0],[-1,-1],[-3,1],[-2,1],[-4,-2],[-1,-1],[0,-1],[0,-1],[2,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-4,2],[-5,2],[-5,1],[-1,-1],[-1,-1],[-3,0],[-3,0],[-3,-1],[-1,-1],[-2,-2],[-2,-2],[-2,0],[-2,0],[0,1],[-1,1],[0,2],[-2,3],[-2,5],[-3,3],[-3,2],[-4,3],[-1,0],[-2,1],[-2,-1],[-2,1],[-1,0],[-1,-1],[-5,4],[-2,1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,2],[-1,2],[-1,2],[-2,3],[-6,7],[-2,3],[-4,3],[-4,4],[-3,2],[-6,3],[-2,1],[-1,0],[1,1],[-1,2],[0,1],[-3,8],[-3,5],[-1,1],[-1,2],[-3,1],[-1,1],[-3,1],[0,1],[-1,1],[-2,2],[-3,0],[-1,2],[-4,3],[-2,0],[-1,0],[-1,-1],[-3,0],[0,1],[-1,1],[0,1],[-1,0],[0,2],[-1,1],[0,1],[-3,3],[-1,2],[0,1],[-1,1],[0,1],[-1,2],[-1,2],[0,1],[-1,2],[-1,1],[-3,4],[-2,2],[-6,5],[-9,3],[-6,2],[-5,1],[-2,1],[0,-1],[-1,1],[0,1],[-2,0],[-2,0],[-2,-1],[0,-1],[0,-1],[0,-1],[-2,0],[0,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-2,2],[-1,0],[-1,1],[0,3],[0,1],[1,1],[1,0],[1,-1],[2,0],[1,0],[2,3],[0,3],[0,3],[-1,2],[-1,2],[-2,0],[-1,-1],[0,1],[-2,2],[0,1],[0,1],[0,1],[-1,0],[-1,1],[1,0],[-1,1],[-1,2],[-5,2],[0,2],[-1,2],[-2,2],[-2,2],[-3,2],[-6,2],[-4,0],[-1,0],[-3,3],[-1,0],[0,1],[1,0],[1,0],[1,2],[0,2],[0,1],[0,1],[1,3],[-1,2],[-2,2],[-3,1],[-4,1],[-6,1],[-3,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-2,0],[-1,1],[-1,1],[-1,2],[0,1],[0,2],[1,1],[1,0],[1,1],[-1,0],[0,1],[1,0],[0,1],[1,4],[1,6],[0,6],[-1,7],[-2,4],[-1,2],[-3,3],[0,1],[0,1],[-1,1],[-1,3],[-1,3],[-2,1],[0,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,0],[-1,1],[-1,2],[-1,3],[-1,1],[0,1],[0,1],[1,2],[0,1],[0,-1],[-1,1],[0,1],[0,1],[-1,6],[-1,3],[1,0],[0,1],[-1,3],[1,1],[-1,3],[0,3],[-1,4],[-2,4],[1,0],[-1,2],[-1,2],[-1,2],[-3,3],[-3,4],[0,1],[-4,3],[-3,2],[-1,1],[-1,-1],[-1,1],[-2,1],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,1],[-3,2],[0,1],[-1,0],[0,1],[-2,-1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[-2,-1],[-1,1],[-1,1],[-2,1],[-1,0],[0,1],[-1,0],[-2,1],[-1,1],[0,1],[-1,0],[-1,1],[-3,2],[-1,0],[-1,0],[0,-1],[-3,3],[0,1],[-1,0],[-2,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,-1],[-2,1],[-1,-1],[0,2],[-2,1],[-1,-1],[-1,2],[0,1],[-3,2],[-2,1],[1,-1],[-1,1],[-1,0],[-1,1],[-2,1],[-3,2],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[-3,1],[-1,0],[-2,1],[0,1],[0,2],[0,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,0],[-2,1],[-3,0],[-3,1],[-1,0],[-2,0],[-1,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-4,1],[0,1],[2,-1],[1,1],[-2,0],[-5,1],[2,-1],[-2,0],[-1,1],[-1,0],[-2,-1],[-2,-1],[-1,0],[0,-1],[0,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-3,-1],[-2,-1],[0,-1],[-2,0],[0,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[1,1],[0,-1],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,-2],[-1,-1],[-1,-1],[-1,-1],[0,-2],[1,0],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-4,-1],[-1,-1],[-3,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-2],[0,-2],[0,-2],[0,-1],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[1,-2],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-2,-1],[-1,0],[-1,-2],[-1,-1],[-3,-1],[-1,0],[0,-1],[-1,0],[-3,-1],[-1,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[1,0],[-2,0],[-2,0],[0,-1],[-2,0],[0,-1],[-1,0],[-2,1],[-2,-1],[-3,-1],[-1,-1],[-2,0],[-1,0],[0,-1],[-2,-1],[0,-1],[-3,1],[-1,0],[-5,1],[-1,0],[0,-1],[-1,0],[-1,0]],[[6353,7059],[-1,-1],[-1,0],[-1,-1],[-1,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[3,0],[0,-1],[1,0],[1,0],[1,0],[1,3],[1,0],[1,2],[-1,1],[0,1],[0,2],[0,1],[1,0],[-1,1],[-5,-3]],[[6353,6836],[1,0],[0,1],[-1,0],[0,-1]],[[6622,6443],[-5,-2],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[2,0],[-1,-1],[-1,-1],[-2,-3],[-1,-3],[-2,-4],[-1,-2],[0,-1],[-2,-1],[-1,-2],[-1,0],[-2,-3],[-1,-1],[-1,-2],[-1,-1],[-2,-3],[0,-1],[-1,-1],[1,0],[-1,0],[0,-1],[-3,-3],[-1,-1],[1,-1],[-1,-1],[-1,0],[-1,-2],[0,-1],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[0,-2],[1,-3],[-2,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[-1,-2],[-1,-1],[-1,0],[-1,-3],[-1,0],[0,-2],[0,-3],[0,-6],[0,-5],[0,-1],[1,-3],[0,-1],[3,0],[2,-2],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,-1],[2,-2],[0,-2],[1,0],[0,-1],[-1,0],[-1,1],[-1,-1],[0,1],[-1,0],[-2,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[1,-1],[1,0],[0,1],[1,0],[1,-2],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[1,-2],[2,0],[1,-1],[1,0],[1,0],[1,-1],[0,-2],[-1,-1],[-1,0],[-1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[2,-1],[0,-1],[-2,0],[-1,1],[-2,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,0],[-2,-1],[-1,-1],[-1,-1],[0,-2],[-1,0],[-1,-1],[-1,-2],[0,-2],[0,-1],[-1,0],[-1,-2],[-1,-1],[1,-2],[-1,-1],[0,-1],[-1,0],[0,-2],[1,-3],[1,-1],[1,-4],[1,-2],[0,-2],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,1],[0,2],[-1,1],[-2,1],[-2,0],[-1,0],[-1,-1],[-1,1],[-4,2],[-1,1],[-2,1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,3],[-2,1],[-1,1],[-1,0],[-3,1],[-3,1],[-2,0],[-1,1],[-2,0],[-1,1],[-2,2],[0,1],[0,1],[-1,1],[0,3],[-1,0],[0,1],[-1,1],[0,1],[-1,2],[-2,3],[-2,3],[-2,3],[-4,3],[-4,4],[-1,0],[-2,1],[-3,1],[-5,2],[-4,1],[-3,-1],[-1,0],[-3,0],[-4,-1],[-1,0],[-2,0],[-1,0],[-2,2],[-1,1],[-1,1],[-1,1],[-1,0],[-4,0],[-2,1],[-1,1],[-1,1],[-1,0],[-2,2],[-2,0],[-1,2],[-1,2],[-1,1],[-1,0],[-2,2],[-1,1],[-1,2],[-1,1],[-1,-1],[-2,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,1],[-2,0],[-2,1],[-1,2],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-3,1],[-1,1],[-1,2],[-1,0],[-1,0],[-1,3],[-1,1],[-1,0],[-1,3],[-1,1],[-1,0],[-1,1],[-1,2],[-2,0],[-2,0],[-3,1],[-1,0],[-3,0],[0,-1],[-2,0],[-1,1],[1,0],[0,1],[-2,3],[-3,2],[-1,1],[-3,1],[-1,0],[-4,1],[-7,-1],[-8,-2],[-2,2],[-2,3],[-1,1],[0,2],[-1,1],[-1,1],[-1,0],[0,1],[-2,0],[-1,0],[-2,0],[-2,3],[-2,2],[0,1],[0,2],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-2,1],[1,2],[1,0],[-1,-1],[1,0],[1,0],[1,2],[0,1],[-1,1],[1,1],[1,2],[0,1],[-1,0],[-1,1],[0,2],[1,2],[1,0],[1,3],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[-2,0],[1,0],[1,1],[1,1],[2,2],[1,2],[1,0],[1,0],[1,0],[1,0],[3,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,2],[1,2],[-2,3],[1,1],[0,1],[1,0],[0,-1],[3,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-2],[0,-1],[0,-2],[1,-3],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[2,0],[3,1],[2,1],[5,2],[1,1],[1,0],[2,2],[-1,3],[0,1],[-1,2],[1,1],[1,1],[1,0],[-1,1],[2,2],[2,0],[1,-1],[1,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[3,1],[1,1],[1,1],[1,0],[1,0],[2,2],[2,1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-3],[0,-1],[0,-1],[-1,0],[0,-1],[2,-2],[2,-1],[2,0],[1,0],[3,0],[2,1],[0,1],[2,0],[1,0],[0,-1],[0,-2],[-1,0],[0,-2],[1,0],[0,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[2,-1],[1,-1],[2,0],[3,0],[1,-1],[-2,0],[1,-1],[2,0],[1,-1],[4,1],[2,1],[1,0],[2,0],[5,3],[2,1],[1,1],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,-1],[1,-1],[1,0],[2,0],[1,-1],[2,1],[2,0],[0,1],[2,-1],[1,0],[4,-1],[2,0],[1,0],[2,-1],[2,0],[1,1],[1,1],[1,0],[1,-1],[2,1],[1,0],[2,2],[1,0],[1,-1],[2,0],[5,1],[2,2],[3,0],[2,1],[1,0],[2,2],[2,1],[3,3],[3,4],[1,0],[0,-1],[3,0],[1,0],[3,1],[1,1],[2,0],[1,0],[1,1],[1,1],[1,0],[2,-1],[0,-1],[1,-1],[1,-1],[1,0],[2,0],[3,0],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[2,0],[0,1],[2,0],[1,1],[2,1],[3,3],[1,3],[2,4],[-1,2],[-1,1],[1,0],[2,-2],[0,-1],[-1,-2],[0,-1],[1,-1],[1,0],[2,0],[2,0],[1,1],[1,0],[1,0],[2,1],[1,0],[3,2],[2,0],[6,6],[2,0],[1,0],[1,-1],[1,-1],[3,-1],[3,0],[0,-1]],[[6083,6765],[2,0],[1,-1],[1,-1],[0,-1],[-1,-2],[1,-2],[0,1],[0,1],[0,2],[2,-2],[-2,0],[1,-1],[1,0],[1,0],[0,1],[1,-1],[1,1],[0,-1],[-1,1],[1,1],[1,0],[1,0],[0,-1],[0,-2],[1,0],[0,1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[1,-1],[1,0],[1,0],[0,-2],[0,-1],[0,-2],[0,-1],[1,0],[0,1],[1,1],[1,1],[0,1],[-1,0],[0,1],[2,0],[2,0],[1,0],[0,1],[0,1],[1,-1],[1,-2],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[1,1],[1,1],[0,1],[1,0],[1,0],[0,1],[0,-1],[0,-1],[0,-2],[2,0],[0,1],[1,1],[1,0],[2,-2],[1,0],[1,0],[1,-1],[-1,-1],[-2,0],[0,1],[-1,1],[-3,-2],[0,-1],[1,-1],[0,-1],[-1,0],[-1,-2],[1,-1],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[0,-1],[1,0],[1,1],[2,0],[1,0],[1,-1],[1,0],[-1,0],[1,-1],[1,0],[1,1],[0,1],[1,0],[2,0],[-1,-3],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[1,-1],[0,-1],[3,-1],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-2],[1,0],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[2,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[1,0],[1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-2],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[3,-2],[0,-2],[-1,-2],[-1,-2],[-1,-2],[-2,-3],[0,-2],[0,-2],[-1,-1],[-1,0],[-2,-1],[-3,-3],[-1,-2],[-1,-1],[-1,-2],[-2,-3],[0,-3],[0,-2],[0,-2],[0,-2],[1,-1],[0,-1],[1,-2],[1,-1],[2,-4],[3,-2],[1,0],[0,-1],[-2,-3],[0,-2],[-1,-2],[0,-1],[-1,-2],[0,-3],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-2],[-1,-2],[1,-1],[0,-1],[0,-1],[1,0],[-1,-2],[-1,-2],[0,-3],[-1,-2],[1,-2],[0,-3],[0,-1],[-1,-4],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[-1,0],[0,-1],[-1,-4],[0,-1],[1,0],[0,-1],[1,-2],[-1,-2],[0,-1],[-1,0],[-1,-3],[-1,-4],[-1,-3],[1,-2],[0,-1],[1,-1],[1,-1],[-1,0],[-1,-1],[-2,-3],[-1,-3],[0,-2],[0,-1],[0,-2],[1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[-2,0],[-1,-2],[0,-1],[0,-1],[-2,1],[1,0],[0,2],[-1,1],[-1,0],[-2,-1],[-1,1],[0,-1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-2,2],[-2,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-4,0],[-1,1],[-1,0],[-2,0],[-1,-1],[-2,-2],[0,-1],[0,-1],[-1,0],[-2,2],[0,1],[-2,1],[-1,-1],[-1,0],[-2,2],[0,-1],[1,0],[1,-2],[-1,0],[-1,-1],[-3,-3],[0,-2],[-1,-1],[0,-1],[1,-2],[-1,-1],[1,-1],[1,-2],[1,-1],[0,-2],[-1,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-2],[-2,-2],[-2,-1],[-1,-2],[-1,-1],[-2,-1],[-2,-1],[0,-1],[-1,0],[0,1],[-1,-1],[-1,2],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-2,1],[-1,1],[0,-1],[-2,-1],[-1,-1],[-1,-2],[-1,0],[-1,1],[0,-1],[0,-1],[1,-2],[-2,0],[0,2],[1,1],[-1,0],[-2,0],[-1,0],[0,1],[1,1],[0,1],[1,2],[-1,1],[0,1],[-1,1],[-1,-1],[-1,0],[1,1],[-1,1],[-1,3],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[0,1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,1],[1,1],[1,2],[-1,1],[0,1],[-1,1],[0,1],[-2,-1],[0,2],[0,1],[0,1],[0,1],[-2,1],[0,-1],[0,-1],[-1,1],[0,2],[-1,2],[-1,1],[-1,1],[0,1],[2,2],[1,1],[1,1],[1,0],[0,1],[1,2],[0,2],[-2,3],[-2,0],[-1,3],[0,1],[0,1],[1,1],[1,1],[1,2],[0,1],[0,1],[-2,1],[-1,1],[1,1],[0,1],[1,1],[4,5],[0,2],[1,3],[1,2],[-1,2],[0,1],[-1,0],[0,1],[0,2],[1,2],[-1,1],[-1,1],[1,0],[0,2],[0,2],[0,2],[0,1],[0,2],[1,0],[2,-5],[0,-1],[1,0],[1,1],[1,2],[-1,1],[2,2],[1,2],[1,4],[0,2],[1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-2,1],[-2,-1],[-1,0],[-3,-2],[0,-2],[0,-1],[0,1],[0,1],[0,1],[-2,1],[0,1],[-1,0],[0,2],[0,3],[0,2],[-1,1],[2,2],[0,2],[0,1],[-1,1],[-1,0],[-1,0],[1,1],[1,0],[2,0],[1,1],[1,0],[2,1],[1,2],[1,1],[-1,1],[0,1],[0,1],[-1,2],[-1,2],[0,2],[0,1],[1,2],[-1,2],[0,1],[1,2],[0,1],[1,2],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,2],[-1,0],[-4,0],[0,2],[0,1],[1,1],[1,3],[0,1],[0,2],[-1,3],[-1,1],[0,3],[-1,0],[-2,2],[-2,3],[0,2],[0,1],[-1,2],[-1,1],[-1,0],[-1,0],[-2,-1],[0,-1],[0,-1],[-4,0],[0,1],[1,2],[1,1],[-1,1],[-2,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,2],[0,1],[0,2],[-1,1],[0,1],[1,0],[1,1],[2,1],[0,1],[1,2],[0,1],[0,1],[-2,1],[0,1],[-2,1],[-1,1],[0,1],[0,1],[1,1],[1,1],[0,3],[3,5],[1,1],[1,2],[0,2],[0,1],[0,1],[-2,1],[-2,3],[1,2],[1,2],[1,-1],[1,-1],[1,0],[0,-2],[-1,-1],[1,-2],[1,-2],[2,-3],[4,-2],[2,-1],[2,0],[2,0],[2,0],[3,-2],[1,0],[6,1],[4,1],[2,1],[1,2],[1,0],[0,1],[0,1],[2,1],[2,1],[1,0],[1,1],[1,0],[1,0],[2,1],[2,0],[2,0],[1,1],[2,3],[3,3],[1,1],[0,2],[1,1],[1,2],[2,-1],[0,1],[2,2],[3,3],[1,2],[1,1],[0,1],[2,0],[1,1],[1,-1],[2,0],[2,1],[2,2],[2,0],[1,1],[0,1],[1,1],[-1,0],[-1,2],[1,2],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[0,-2]],[[6184,6933],[-1,-1],[1,-1],[-1,-1],[-2,-1],[-1,0],[0,-1],[1,0],[2,-1],[1,-1],[0,-2],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,0],[0,2],[-1,0],[-1,2],[0,1],[-1,0],[-2,0],[1,-2],[-1,-1],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,-1],[0,-1],[0,-1],[-2,1],[-1,0],[-3,0],[-1,-1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,2],[1,1],[2,1],[3,0],[1,0],[1,0],[2,-2],[2,0],[0,1],[1,0],[1,0],[0,2],[0,1],[1,-1],[1,0],[2,0],[0,-1],[2,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,1],[1,2],[0,1],[1,1],[1,1],[1,-2],[1,0],[1,-1],[-1,-2],[-1,-1],[0,-1],[1,-1]],[[6011,6533],[1,0],[2,1],[1,0],[0,-1],[3,-1],[0,-2],[1,-2],[-2,-3],[0,-1],[0,-3],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-1,1],[1,0],[-1,0],[-1,2],[1,1],[-1,2],[0,1],[0,2],[0,1],[1,1],[1,0],[0,-2]],[[6314,6287],[1,0],[1,1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-2],[-1,-1],[-2,-2],[-2,0],[-1,1],[0,1],[-1,0],[0,1],[-2,2],[-1,1],[-1,1],[0,2],[0,1],[1,1],[1,0],[2,0],[1,-1],[0,-1]],[[6008,6746],[0,-1],[-1,-1],[-1,1],[-3,1],[0,-1],[-2,-1],[-1,-2],[0,-1],[1,-1],[0,-1],[0,-2],[-1,0],[-3,0],[0,2],[1,1],[1,1],[-1,0],[-1,1],[1,1],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[3,0],[0,1],[1,1],[1,-1],[0,-1],[-1,0],[1,-1],[1,0],[1,-1],[-1,0],[-1,-1],[1,-1]],[[6005,6542],[0,-2],[0,-1],[1,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[-2,0],[-2,1],[0,1],[1,0],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[1,0],[2,1],[1,1],[1,0],[2,1],[0,-1]],[[6473,6713],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,-1],[1,1],[1,-1],[2,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[-1,-1],[-2,0],[-2,0],[-2,1],[1,1],[0,1],[-1,1],[1,1],[0,1],[1,1]],[[6564,6471],[0,-2],[0,-1],[1,-1],[1,0],[0,-1],[-2,0],[0,-2],[0,-2],[-1,0],[0,1],[-1,1],[-2,1],[-1,1],[1,4],[0,1],[1,0],[1,0],[2,0]],[[6552,6478],[2,-1],[2,1],[1,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[-2,-1],[0,1],[-2,1],[-1,0],[-1,1],[-1,0],[1,1],[0,1],[1,1]],[[6100,6765],[0,-2],[0,-1],[-3,-1],[-2,0],[0,1],[0,1],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,-1],[1,-2]],[[6223,6888],[2,-2],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-2,1],[-2,3],[-1,0],[0,1],[1,0],[1,1],[-1,2],[1,0],[1,-1]],[[6564,6459],[1,0],[1,0],[1,-1],[0,-1],[1,-2],[-1,-1],[-1,0],[-1,0],[-1,2],[-1,0],[-1,2],[0,1],[2,2],[1,0],[-1,-1],[0,-1]],[[6134,6961],[-1,-1],[1,0],[1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,2],[1,2],[-1,1],[2,2],[1,0],[1,0],[0,-1]],[[6342,6409],[0,-1],[0,-1],[2,1],[1,-1],[1,-1],[0,-1],[-1,-1],[-1,2],[-2,0],[-2,-1],[-1,1],[0,1],[-1,1],[1,1],[1,-1],[1,2],[1,-1]],[[6360,6148],[2,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-3,1],[0,1],[-4,0],[0,1],[1,1]],[[6103,6760],[-1,-1],[0,-1],[1,1],[1,0],[0,-1],[-2,0],[-1,1],[1,0],[-1,0],[-1,-1],[1,4],[1,1],[0,2],[1,0],[1,-1],[0,-1],[-1,-3]],[[6586,6498],[-1,0],[-1,1],[-1,1],[0,1],[1,0],[2,1],[1,0],[1,-1],[-2,-2],[0,-1]],[[6323,6409],[-1,0],[-2,0],[-1,1],[-1,3],[0,1],[2,-1],[1,-1],[1,-2],[1,-1]],[[6175,6882],[0,-1],[-1,0],[0,-1],[-2,1],[0,1],[-1,1],[1,1],[2,1],[1,-1],[0,-2]],[[6156,6910],[0,-1],[-1,-1],[-2,0],[-1,1],[-1,0],[0,1],[1,0],[1,0],[1,2],[1,0],[1,-2]],[[6506,6691],[-1,-1],[0,-1],[-1,0],[0,1],[-1,-1],[-3,0],[0,2],[2,0],[2,0],[1,0],[1,0]],[[6532,6475],[1,0],[0,-1],[-2,1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[2,-1],[0,-1],[0,-1]],[[6438,7246],[-2,-2],[-4,0],[-1,0],[0,1],[1,-1],[1,0],[1,0],[0,1],[2,0],[1,0],[0,1],[1,1],[1,0],[-1,-1]],[[6415,6490],[-1,-1],[-2,0],[1,2],[1,1],[2,-1],[-1,-1]],[[6343,7208],[0,-1],[-2,0],[0,1],[2,1],[1,2],[1,3],[1,2],[1,0],[1,1],[1,0],[-2,-2],[-1,-2],[-3,-4],[0,-1]],[[6396,6726],[-1,0],[0,2],[0,1],[1,1],[1,1],[1,1],[1,-1],[-1,0],[-1,-1],[-1,-1],[0,-2],[1,0],[-1,-1]],[[6122,6727],[-1,-1],[-1,1],[5,3],[1,-1],[-2,-1],[-2,-1]],[[6345,6413],[-1,0],[-1,0],[0,1],[-1,1],[1,2],[1,-2],[1,-1],[0,-1]],[[6353,6398],[0,1],[-1,3],[-1,1],[1,0],[1,1],[0,-3],[0,-2],[0,-1]],[[6426,7248],[-1,-1],[1,1],[0,-1],[0,-1],[1,0],[-2,1],[-3,0],[0,1],[-2,0],[1,0],[1,0],[1,0],[2,0],[1,1],[0,-1]],[[6389,6185],[1,-2],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,0]],[[6514,6472],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-2]],[[6345,7178],[0,-1],[-1,0],[0,1],[-1,2],[1,0],[1,-1],[0,-1]],[[6093,6764],[-1,-1],[0,1],[0,-1],[-1,1],[0,1],[1,1],[1,0],[0,-1],[0,-1]],[[6098,6759],[-1,0],[0,1],[1,1],[1,0],[0,-1],[-1,-1]],[[6125,6723],[-2,2],[2,0],[1,0],[-1,-1],[0,-1]],[[6486,6713],[-1,-1],[-1,-1],[-1,0],[1,1],[0,1],[0,1],[2,-1]],[[6573,6482],[-1,0],[0,2],[1,1],[1,-1],[0,-1],[0,-1],[-1,0]],[[6350,7220],[-2,-1],[0,1],[1,0],[2,2],[0,-1],[-1,-1]],[[6241,6875],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[-1,1],[0,1],[1,1],[1,0]],[[6095,6770],[-1,0],[0,1],[1,1],[1,-1],[-1,-1]],[[6139,7000],[-1,0],[0,2],[1,0],[1,0],[-1,-1],[0,-1]],[[6609,6859],[-1,-1],[-1,0],[0,1],[1,1],[1,0],[0,-1]],[[6419,7248],[-4,-1],[-1,1],[3,0],[2,1],[1,-1],[-1,0]],[[6341,7201],[-1,-3],[1,3],[0,2],[0,1],[1,2],[0,1],[1,-1],[-1,-2],[-1,-3]],[[6093,6769],[0,-1],[-2,1],[1,1],[1,0],[0,-1]],[[6134,7066],[-1,2],[2,0],[-1,-2]],[[6093,6771],[0,-1],[-1,1],[-1,0],[0,1],[1,0],[1,-1]],[[6345,7220],[0,-1],[-1,1],[0,1],[1,0],[1,-1],[-1,0]],[[6414,7247],[-2,0],[1,0],[1,0],[0,1],[0,-1]],[[6353,7152],[-1,-1],[0,1],[1,1],[1,0],[0,1],[0,-1],[-1,-1]],[[6347,7218],[-1,-1],[1,2],[1,0],[-1,-1]],[[6435,6716],[-1,-1],[0,1],[1,0],[0,1],[1,0],[-1,-1]],[[5998,6735],[-1,0],[0,1],[0,1],[1,-1],[0,-1]],[[6388,6731],[-1,0],[0,1],[0,1],[1,0],[0,-2]],[[6405,6735],[-1,0],[-1,0],[1,1],[1,0],[0,-1]],[[6750,6679],[-1,0],[-1,0],[1,1],[1,-1]],[[6339,7195],[0,-1],[-1,0],[0,1],[1,0]],[[6348,7176],[1,-1],[-1,1],[-1,1],[-2,1],[1,0],[2,-2]],[[6351,7224],[-1,0],[0,1],[1,-1]],[[6350,7223],[-1,0],[0,1],[1,0],[0,-1]],[[6342,7217],[1,0],[1,0],[0,-1],[-3,1],[1,0]],[[6610,6860],[1,1],[0,-1],[-1,0]],[[6611,6862],[-1,-1],[0,1],[1,0]],[[6112,6745],[-1,0],[0,1],[1,0],[0,-1]],[[6355,6400],[-1,0],[1,1],[0,-1]],[[7545,8324],[0,-2],[0,-1],[0,-4],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[-1,-2],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[1,-2],[1,-2],[1,-1],[-1,0],[-1,-2],[2,-1],[-2,1],[0,-1],[2,-3],[-1,0],[0,-1],[0,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-2],[-2,-1],[1,-1],[2,1],[3,-2],[3,0],[1,-1],[2,1],[0,-1],[2,0],[1,2],[1,0],[-1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[2,-1],[1,0],[4,0],[2,-1],[2,0],[2,-1],[0,-2],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-3],[-2,-2],[-1,1],[-2,-1],[1,-1],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-3,-1],[-3,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,2],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-3,1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,1],[-4,0],[0,-1],[0,-1],[-2,0],[1,0],[-1,-1],[-3,0],[-3,-2],[2,-1],[2,-2],[-1,-1],[-2,0],[0,-1],[0,-1],[0,-1],[-2,-3],[-1,-1],[-2,-1],[-2,0],[-1,-1],[-2,1],[-1,-1],[1,0],[-1,-1],[-3,0],[0,-1],[1,-1],[-3,-1],[1,0],[0,-1],[-3,1],[-3,1],[-3,-1],[-4,-2],[-2,1],[0,-1],[-2,0],[-1,-1],[1,-1],[0,-1],[-1,0],[-3,-2],[0,-2],[-3,-1],[0,-2],[0,-1],[-2,0],[-2,-3],[1,-2],[1,-2],[-1,-5],[0,-1],[0,-1],[0,-1],[-1,0],[1,-5],[1,-2],[1,-5],[-1,-1],[-1,0],[-3,-2],[-2,-2],[-2,-2],[-1,-2],[-1,-2],[1,0],[-1,0],[-1,-1],[-2,0],[1,-1],[1,0],[1,0],[-1,-1],[0,-1],[1,-2],[-2,-2],[-1,0],[-1,0],[0,-1],[1,-2],[-3,-1],[-1,-2],[-2,0],[1,-1],[1,0],[0,-1],[0,-1],[3,1],[0,-1],[3,-1],[1,1],[1,-1],[1,2],[2,0],[0,-1],[2,-2],[0,-1],[-1,-1],[2,-1],[0,1],[2,-1],[1,0],[0,-1],[0,-1],[2,-2],[1,0],[-3,-1],[0,-2],[2,-1],[0,-1],[1,-2],[-1,-1],[-3,0],[-3,1],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-2,1],[-3,0],[-1,0],[-2,1],[-1,2],[0,1],[4,1],[0,1],[0,1],[-1,1],[1,1],[1,-1],[1,0],[0,1],[-1,1],[-2,2],[1,1],[-4,1],[0,2],[0,1],[-1,0],[-1,-1],[-1,0],[-2,-1],[0,1],[-1,0],[-3,-1],[0,-1],[-1,-1],[-1,1],[0,-1],[-2,0],[-1,-1],[-1,1],[-3,-1],[-1,0],[-2,1],[-1,-2],[-2,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-3,-2],[0,-1],[-2,0],[-2,-2],[-2,-2],[-1,-2],[-2,1],[-3,0],[-2,0],[-1,1],[0,1],[-1,1],[-3,0],[-1,-1],[-5,-1],[-2,0],[-2,-1],[1,-1],[-3,-2],[-1,1],[0,-1],[0,-1],[2,-1],[2,-3],[0,-1],[0,-1],[0,-1],[1,-1],[2,1],[1,0],[-1,-1],[-2,0],[0,-1],[0,-1],[-1,0],[-1,-1],[1,0],[-1,-1],[-2,1],[-2,-1],[-3,-2],[1,-1],[-3,0],[-2,0],[1,2],[1,1],[0,2],[-1,1],[-2,0],[-1,-2],[-2,0],[-1,1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-3,-2],[-1,0],[-1,-1],[1,0],[-1,-1],[-3,-2],[-1,-1],[0,-1],[-1,-1],[-1,0],[-3,0],[-4,0],[-4,1],[0,1],[1,0],[0,1],[-2,-1],[-1,2],[-1,1],[-1,1],[-1,-1],[-1,0],[-2,0],[1,1],[-1,2],[-3,-1],[-1,0],[-1,-1],[-3,0],[-1,-1],[1,0],[-1,-1],[-10,-1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,1],[-2,0],[-3,-2],[0,-1],[1,-1],[0,-1],[-1,-1],[-2,0],[0,1],[-1,2],[-3,0],[-1,1],[-1,0],[-2,-1],[-1,0],[-2,1],[-1,-1],[-2,-1],[-1,1],[0,1],[-3,1],[0,-1],[-2,1],[-1,1],[-1,0]],[[7283,8138],[0,1],[-2,1],[0,1],[-1,1],[1,2],[1,0],[2,3],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,0],[0,2],[-1,2],[-1,1],[1,0],[-2,1],[0,1],[-3,0],[-1,2],[-1,1],[0,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,0],[-2,0],[-2,1],[-3,0],[-1,0],[-2,3],[-4,1],[0,1],[-1,1],[-1,0],[-1,-1],[-3,-1],[-3,2],[-1,0],[1,1],[0,1],[1,1],[-1,0],[-4,1],[-1,1],[2,2],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-6,1],[0,1],[-2,0],[-1,0],[-1,0],[-2,-4],[-2,-1]],[[7222,8182],[-1,1],[-1,1],[-2,7],[-3,1],[0,1],[-1,3],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[2,2],[-2,0],[-1,1],[0,1],[0,1],[2,1],[1,0],[0,1],[1,1],[1,0],[1,1],[0,2],[-1,1],[-1,1],[0,2],[1,4],[0,1],[2,0],[1,1],[0,1],[1,0],[1,0],[1,2],[1,-1],[2,1],[0,1],[0,1],[2,0],[0,2],[0,1],[1,1],[-1,1],[-1,0],[1,2],[-3,1],[1,2],[1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,1],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[1,1],[-2,0],[-1,2],[0,1],[-2,1],[-1,0],[-1,1],[-2,0],[1,-2],[-1,0],[-1,0],[0,1],[0,1],[-2,2],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,2],[-3,0],[-6,-2],[-2,0],[-3,1],[-2,0],[-4,0],[-6,1],[-5,-1],[-3,0],[-2,0],[-2,-1],[-1,-2],[-2,-1],[-3,1],[-2,1],[-1,2],[1,1],[0,1],[-1,1],[-3,0],[-2,-1],[-5,1],[-2,1],[-3,0],[-1,1],[-2,2],[-3,0],[-5,1],[0,1],[0,1],[-3,1],[-1,1],[-2,1],[-5,1],[-2,1],[-2,0],[-2,-1],[-1,0],[-2,2],[-3,2],[-1,1],[0,2],[-2,1],[0,2],[-2,2],[-1,-1],[-1,0],[-3,-2],[-2,-2],[-3,-1],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,1],[1,1],[0,-1],[1,1],[-2,3],[-2,1],[-1,0],[1,2],[0,1],[1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[3,4],[0,2],[2,2],[-1,2],[1,3],[-1,1],[0,2],[-1,3],[-1,0],[-1,1],[0,2],[0,1],[-1,1],[-2,3],[-1,3],[0,1],[-1,1],[0,2],[1,-1],[0,-1],[0,1],[0,1],[-1,0],[-1,3],[-1,2],[-1,2],[-2,1],[0,1],[-1,2],[0,1],[-1,2],[0,3],[0,2],[0,2],[-1,1],[0,4],[0,2],[0,1],[1,4],[1,4],[-1,3],[1,1],[-1,3]],[[7077,8366],[5,1],[3,1],[2,-1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,0],[1,2],[-1,1],[0,1],[0,1],[4,1],[0,1],[0,1],[2,1],[2,2],[4,1],[4,2],[1,0],[2,1],[1,1],[0,1],[2,2],[1,1],[1,-1],[3,1],[0,1],[1,0],[0,1],[1,0],[2,1],[1,0],[3,-1],[1,0],[1,-1],[5,1],[0,1],[1,0],[1,1],[3,1],[1,1],[1,1],[2,1],[2,-1],[1,0],[3,0],[4,2],[1,-1],[1,1],[0,2],[1,0],[0,1],[2,2],[1,0],[2,-1],[1,0],[3,1],[3,0],[3,-1],[3,1],[1,-2],[1,0],[0,-1],[1,0],[3,0],[0,1],[1,0],[2,0],[1,-1],[2,-1],[1,1],[3,0],[1,1],[2,0],[1,0],[3,-1],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,0],[1,-1],[2,0],[2,-1],[0,-1],[2,0],[2,-1],[1,0],[1,1],[2,1],[2,0],[1,-1],[6,0],[5,1],[2,1],[1,1],[-1,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,-1],[2,0],[1,-4],[-1,0],[1,-3],[1,-1],[1,-1],[0,-1],[3,1],[1,-1],[1,-1],[1,0],[0,1],[1,0],[5,2],[0,1],[-1,0],[0,1],[1,1],[-1,0],[2,1],[5,0],[2,0],[3,1],[7,0],[2,-1],[1,-2],[1,0],[4,-1],[1,-1],[3,0],[1,0],[6,3],[8,1],[2,0],[2,0],[1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[1,-1],[2,2],[1,1],[1,-1],[3,0],[4,0],[1,0],[3,-1],[1,0],[1,0],[3,0],[1,-2],[2,-1],[0,-2],[4,0],[0,-1],[2,-1],[-1,-1],[1,0],[2,0],[1,0],[2,0],[2,2],[3,1],[1,0],[1,0],[2,1],[0,1],[2,0],[3,-1],[1,-2],[2,1],[1,0],[2,-2],[3,0],[1,1],[3,1],[5,1],[1,0],[1,2],[-1,1],[0,1],[1,0],[0,1],[2,0],[1,1],[0,1],[0,1],[0,1],[2,1],[3,-1],[2,2],[0,1],[1,0],[4,0],[2,0],[1,1],[0,1],[2,0],[0,-1],[1,0],[2,1],[-1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[2,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[2,0],[1,-2],[1,-1],[1,-1],[0,-3],[0,-1],[1,-2],[2,-1],[1,-1],[0,-1],[2,-1],[1,-1],[0,-1],[1,0],[1,-2],[-1,-1],[1,-1],[0,-2],[1,-1],[4,-1],[1,0],[2,0],[3,0],[1,1],[1,1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[3,-2],[2,1],[2,0],[4,1],[0,-1],[1,-1],[1,1],[2,0],[1,-1],[3,0],[1,2],[2,1],[1,-1],[1,-2],[3,-1],[4,0],[2,2],[1,-1],[0,-1],[2,-1],[-1,-2],[0,-1],[-1,0],[1,-1],[1,0],[3,-1],[2,-1],[4,-1],[1,0],[0,-1],[1,-2],[1,0],[1,-1],[0,-1],[-1,0],[1,-1],[2,0],[1,-1],[7,-1],[1,-1],[1,-1],[1,0],[3,-1],[0,-1],[3,-4],[0,-1],[3,-2],[2,-1],[2,-1],[1,1],[3,-2],[0,-1],[1,-1],[1,-2],[-1,0],[2,-4],[1,-1],[4,-3],[3,0],[1,-1],[1,-2],[1,-1],[1,0],[1,1],[3,-1],[2,0],[2,-1],[0,-1],[2,0],[0,-1],[1,0],[4,0],[2,0],[3,0]],[[7070,8281],[-2,0],[3,4],[3,6],[2,5],[2,4],[0,3],[1,2],[1,5],[1,7],[-1,6],[0,2],[0,4],[0,-1],[3,-3],[0,-1],[0,-1],[-1,-1],[1,-4],[0,-1],[0,-3],[-1,-3],[0,-2],[-1,-5],[0,-2],[-2,-3],[0,-1],[2,-1],[0,-1],[-2,-1],[1,-1],[-2,-1],[0,-1],[-2,-2],[0,-1],[1,0],[0,-2],[-4,-2],[-1,-1],[-1,-1],[-1,-2]],[[7605,8523],[2,1],[0,1],[1,0],[1,-1],[2,-1],[1,1],[1,0],[2,0],[1,0],[-1,1],[4,0],[4,0],[-1,-2],[1,0],[0,-1],[1,0],[-2,-1],[0,-3],[0,-1],[0,-1],[-1,1],[-1,-3],[-1,-1],[4,-1],[0,-1],[3,1],[1,0],[1,-2],[4,-1],[1,-1],[0,-1],[1,0],[2,-1],[4,-1],[1,-1],[0,-1],[1,-2],[3,1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[-1,0],[0,-2],[0,-2],[-1,-1],[-2,-3],[0,-1],[1,-2],[0,-1],[-1,-3],[-2,0],[-4,-1],[-1,-1],[-1,-1],[2,-1],[0,-1],[-3,1],[0,-1],[2,-1],[1,0],[1,0],[-2,-2],[1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[4,0],[-2,-5],[0,-4],[-1,0],[-1,-1],[-3,1],[-1,-2],[0,-3],[-1,-2],[0,-2],[3,0],[1,1],[1,0],[1,1],[3,1],[3,0],[2,0],[2,1],[0,1],[1,0],[1,0],[2,-5],[1,-1],[4,1],[1,0],[1,-1],[0,-2],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-2,-1],[-2,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[2,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-2],[0,-3],[2,-4],[0,-1],[1,-1],[6,0],[2,-1],[0,-3],[-3,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[2,-2],[1,-1],[2,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[-2,-2],[0,-1],[2,-2],[1,-1],[0,-1],[0,-1],[1,-2],[1,-1],[1,-2],[0,-1],[-2,-2],[-2,-1],[-1,-1],[0,-1],[1,-1],[1,0],[-2,-2],[0,-2],[-2,-1],[-2,0],[-1,0],[-1,-2],[-1,0],[0,-1],[-2,0],[-1,0],[-1,-1],[0,-1],[-2,0],[-1,0],[-4,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-3,1],[-1,-1],[1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[2,-2],[-2,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,1],[-1,0],[0,-1],[-8,-5],[0,-1],[0,-1],[-3,-2],[2,-5],[-1,-2],[-1,-4],[-3,0],[-13,1],[-5,1],[0,1],[-1,-1],[-1,0],[0,-1],[-3,-1],[-2,0],[-3,1],[-1,1],[-2,1],[-1,2],[-3,0],[0,1],[-1,1],[-1,-1],[-1,1],[-2,-1],[-1,0],[0,-1],[0,-1],[-4,1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-2,-4],[1,0],[-3,-2],[1,-1],[-1,-1],[-6,-2],[-1,-2],[-4,1],[-2,2],[-5,0],[-1,0],[0,-1],[-1,-2]],[[7077,8366],[-3,8],[-4,8],[0,2],[0,2],[0,4],[0,2],[-1,4],[0,1],[0,2],[2,6],[1,2],[0,2],[-1,2],[0,3],[-1,1],[1,0],[1,2],[-1,2],[2,3],[1,3],[1,2],[0,2],[1,3],[1,3],[0,5],[-1,4],[0,3],[0,1],[0,1],[1,1],[8,4],[2,1],[5,3],[2,2],[2,1],[1,1],[3,2],[1,1],[2,2],[1,2],[1,1],[1,2],[0,2],[1,2],[0,2],[-1,4],[0,2],[0,1],[0,3],[0,2],[0,3],[0,3],[1,2],[0,1],[3,2],[2,3],[1,1],[2,3],[1,1],[0,1],[0,1],[2,0],[2,1],[2,1],[1,3],[1,2],[1,1],[2,3],[1,2],[2,3],[1,1],[1,1],[11,2],[8,0],[5,1],[16,6],[26,9],[5,1],[3,1],[-1,-3],[-1,-2],[0,-2],[0,-2],[0,-2],[1,-2],[1,-2],[2,-2],[2,-3],[4,-3],[3,-1],[6,-3],[1,-1],[3,-1],[2,-2],[3,-3],[0,-1],[2,-2],[6,-2],[3,-2],[4,-1],[3,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-2],[1,-3],[1,-1],[-1,-2],[1,-1],[1,-2],[2,-3],[1,-2],[1,0],[-1,-1],[0,-1],[0,-2],[1,-3],[2,-2],[3,-2],[6,-2],[0,-1],[4,0],[6,0],[2,-3],[1,-2],[2,-1],[6,-2],[5,0],[9,1],[12,4],[4,2],[2,1],[1,2],[0,1],[2,0],[7,2],[6,4],[6,4],[6,4],[4,4],[1,2],[1,2],[0,1],[0,1],[0,1],[0,2],[0,3],[0,1],[-1,0],[0,5],[-1,5],[0,4],[0,3],[-1,2],[-1,1],[1,2],[0,1],[-1,1],[1,3],[1,1],[0,1],[-1,3],[0,2],[-1,2],[-1,0],[0,1],[0,3],[0,1],[0,2],[0,3],[0,1],[-1,2],[0,2],[0,1],[1,2],[0,2]],[[6856,6907],[3,0],[1,2],[1,1],[1,0],[1,0],[2,-1],[1,1],[0,1],[-2,2],[0,1],[0,1],[3,2],[0,1],[-1,1],[-1,1],[2,3],[0,1],[0,1],[-3,0],[-4,3],[-1,1],[0,3],[0,2],[0,2],[-1,2],[1,1],[1,2],[1,0],[1,3],[-1,3],[-1,3],[1,3],[1,3],[1,1],[1,1],[6,0],[4,-1],[1,0],[0,1],[1,1],[-1,2],[0,3],[-1,2],[0,3],[0,2],[1,3],[2,2],[2,2],[0,1],[-2,2],[4,3],[6,4],[4,2],[0,1],[-1,1],[2,1],[2,0],[1,0],[1,1],[3,-3],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[2,-1],[0,-1],[0,-1],[1,-1],[2,0],[2,6],[3,0],[-1,4],[-2,2],[-1,3],[0,2],[-1,2],[-1,1],[-2,2],[-2,0],[0,1],[0,2],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[0,2],[1,0],[1,1],[3,0],[1,1],[1,3],[1,0],[2,-2],[1,-2],[0,-2],[1,0],[1,0],[3,2],[3,0],[2,2],[5,-1],[0,-1],[0,-4],[1,-1],[5,-3],[1,-1],[2,0],[1,0],[1,-2],[1,-1],[2,0],[1,-1],[1,-1],[1,0],[2,0],[1,-4],[0,-1],[2,-1],[0,-1],[3,-1],[2,-1],[0,-1],[-1,-2],[0,-1],[1,-1],[0,-2],[2,0],[2,-1],[2,0],[1,-1],[1,-2],[0,-1],[0,-1],[3,-1],[1,0],[0,-1],[4,0],[1,-1],[2,1],[1,-1],[0,-2],[1,-2],[1,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,2],[1,0],[0,-1],[1,-1],[1,0],[2,0],[2,1],[1,0],[1,1],[0,-1],[0,-2],[2,-4],[4,-2],[1,-1],[0,-1],[1,-1],[2,-1],[1,-1],[0,-1],[2,-1],[1,0],[0,1],[1,1],[0,-1],[2,0],[1,-2],[2,0],[3,-2],[1,0],[1,-1],[1,1],[2,-2],[1,0],[1,-1],[2,0],[0,-2],[0,-2],[-1,0],[1,-3],[0,-1],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[-1,-1],[-1,-1],[-2,0],[0,-1],[1,-1],[0,-2],[-1,-2],[-2,-1],[-2,-1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,-1],[0,-1],[-2,1],[-2,1],[-1,0],[-2,1],[-2,-1],[-1,-1],[-1,-2],[0,-2],[0,-1],[1,-2],[1,0],[1,-1],[1,-1],[2,0],[0,-1],[2,-2],[-2,-2],[-1,-1],[0,-2],[1,-2],[0,-1],[-1,-2],[-2,0],[-1,-1],[-2,-1],[0,-1],[-1,-2],[-1,0],[-1,0],[-2,0],[-2,1],[-3,-2],[0,-2],[-1,1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,-2],[-1,1],[-2,1],[-1,1],[-1,1],[-1,3],[-1,1],[0,1],[1,2],[-1,1],[1,1],[1,0],[1,0],[-1,1],[-1,2],[0,1],[0,1],[-1,1],[-1,2],[-1,0],[-1,0],[-1,-2],[-2,-1],[-1,0],[-3,-5],[-1,-1],[0,-1],[0,-3],[-2,-1],[-2,-2],[0,-1],[-2,-2],[0,-2],[-2,-1],[0,-1],[-1,-1],[-1,-2],[-1,-2],[-2,-2],[-2,0],[-1,-1],[0,-2],[-1,0],[0,-1],[1,-2],[-3,-3],[0,-2],[-2,-2],[-1,-2],[-6,-7],[10,-8],[-1,-3],[-1,-2],[0,-2],[0,-1],[0,-2],[1,-2],[0,-1],[-1,-1],[1,-1],[0,-1],[-3,0],[0,-1],[0,-1],[1,-1],[1,-1],[-1,0],[-1,-1],[-1,0],[1,-1],[1,0],[1,-2],[1,0],[-1,-1],[0,-1],[0,-2],[-1,0],[0,1],[-2,1],[-1,2],[-2,1],[-3,1],[-2,1],[-1,0],[-2,1],[-2,1],[-3,2],[0,1],[1,-1],[-1,2],[-1,1],[1,1],[0,3],[0,1],[-1,2],[-5,5],[-1,0],[2,0],[0,1],[0,2],[-2,1],[0,1],[-1,0],[-2,0],[-2,0],[0,2],[0,1],[-2,1],[-1,0],[0,1],[0,1],[-2,1],[0,1],[-2,0],[0,1],[-1,0],[-1,4],[-1,2],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-2,0],[0,-1],[-1,-1],[0,1],[-6,5],[0,1],[0,1],[-1,1],[-1,1],[2,0],[-1,1],[-1,2],[-2,0],[-1,0],[0,-1],[0,-1],[-2,0],[-1,0],[-2,1],[-1,1],[0,1],[-1,1],[-2,1],[0,1],[1,1],[2,0],[3,-1],[3,-1],[2,-1],[2,0],[1,-1],[0,2],[-1,2],[-1,1],[0,2],[0,2],[1,0],[3,-1],[2,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,3],[0,3],[0,1],[-1,-1],[-2,0],[-3,0],[0,1],[0,2],[-1,0],[-1,-1],[-2,-1],[0,-1],[2,0],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-3,-1],[-1,1],[-2,2],[-1,-1],[-1,0],[-2,1],[-1,-1],[0,-1],[2,-1],[0,-1]],[[7070,6723],[0,4],[0,1],[-1,1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,1],[-1,-1],[-1,-1],[0,-2],[-1,0],[-1,0],[-2,0],[-2,0],[-2,1],[-5,19],[-3,0],[-3,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[-2,1],[0,2],[-1,0],[-1,1],[-1,0],[0,2],[-1,2],[0,1],[0,2],[-1,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,2],[0,1],[1,0],[1,-1],[1,1],[0,1],[2,2],[0,1],[-1,0],[1,2],[1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[1,0],[-1,2],[0,1],[-1,2],[1,0],[-1,0],[-1,1],[0,-1],[-1,0],[0,1],[1,0],[-1,1],[0,-1],[0,1],[-1,0],[0,1],[1,1],[0,1],[-1,1],[1,1],[2,0],[1,1],[1,-1],[2,2],[1,0],[0,2],[-1,2],[0,1],[-1,1],[0,2],[-1,1],[1,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[1,0],[0,1],[1,0],[0,1],[-1,1],[1,0],[1,0],[0,1],[1,-1],[1,1],[0,1],[-1,0],[0,3],[0,1],[0,2],[0,2],[1,0],[2,0],[2,-2],[1,1],[1,1],[2,0],[1,-1],[0,-1],[2,1],[2,0],[0,1],[0,1],[1,1],[1,0],[0,1],[2,2],[0,1],[-2,2],[1,1],[0,1],[-2,2],[1,3],[-1,1],[2,2],[-1,1],[1,1],[2,1],[-1,1],[1,0],[0,1],[1,-1],[3,1],[0,1],[2,0],[2,0],[1,1],[1,1],[1,2],[1,-1],[1,2],[2,-1],[1,1],[2,0],[0,1],[2,0],[0,1],[2,1],[0,1],[1,1],[2,0],[0,1],[1,1],[1,0],[1,0],[3,-1],[1,-1],[1,-2],[1,-2],[1,-1],[1,-1],[0,-1],[-1,-1],[1,-2],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[-1,2],[-1,1],[0,1],[1,1],[1,1],[1,3],[0,2],[1,0],[1,2],[1,0],[0,1],[1,1],[1,1],[2,-1],[1,-1],[1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[1,-1],[1,1],[3,-1],[1,0],[0,-1],[0,-2],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[0,-1],[2,0],[1,0],[3,-1],[1,0],[1,0],[1,-1],[2,1],[0,1],[1,1],[2,0],[1,0],[1,1],[0,-1],[0,1],[1,2],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[1,1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[2,1],[0,3],[1,1],[1,-1],[1,-1],[1,0],[3,-2],[1,-1],[1,0],[0,1],[1,0],[1,-1],[4,1],[1,1],[1,-1],[1,1],[1,0],[1,-1],[1,2],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,0],[1,1],[1,0],[0,-1],[-1,-1],[1,-1],[1,-1],[1,0],[1,-2],[1,0],[1,-1]],[[6515,6197],[-1,0],[-1,-1],[0,-1],[2,0],[2,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,-1],[1,1],[1,-1],[1,-1],[1,0],[2,-1],[0,-1],[0,-1],[0,1],[1,-1],[1,0],[-1,-1],[0,1],[-1,0],[0,-1],[0,-1],[1,1],[1,0],[-1,-1],[0,-1],[1,-1],[0,1],[0,1],[0,-1],[1,0],[-1,1],[0,1],[2,-1],[1,-1],[1,-1],[1,-1],[-1,-2],[1,-1],[-1,0],[0,1],[-1,-1],[1,-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],[-2,0],[-1,1],[-1,-1],[-1,1],[-2,1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,2],[-2,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,2],[1,0],[0,1],[-1,1],[1,2],[0,1],[-2,0],[0,1],[1,1],[2,0],[1,0],[0,1],[1,-1]],[[6503,6207],[2,0],[1,-1],[1,-1],[1,1],[1,-1],[1,-1],[1,-1],[1,-1],[-2,-1],[-1,0],[-1,0],[1,0],[-1,0],[-1,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[1,2],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0]],[[6513,6199],[-2,0],[-1,1],[1,1],[1,-1],[1,0],[0,-1]],[[5664,7859],[-1,1],[0,1],[-3,1],[0,1],[-4,-2],[-6,2],[-3,1],[0,1],[-1,1],[-2,0],[-2,1],[-1,2],[-3,-2],[-1,0],[-1,0],[1,-1],[-2,-5],[-3,1],[-1,-1],[-3,-1],[-4,3],[-1,0],[-1,1],[0,-1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-2,1],[1,1],[1,-1],[1,1],[-1,0],[-1,0],[2,1],[1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,1],[-3,2],[-2,3],[-3,2],[-2,2],[0,1],[9,5],[3,1],[3,-1],[1,0],[4,2],[4,-1],[3,0],[4,1],[3,0],[1,0],[1,-1],[3,-3],[-1,-1],[-2,0],[0,-1],[0,-1],[3,0],[1,1],[1,0],[0,-1],[1,-1],[1,0],[2,0],[3,-1],[3,-2],[1,0],[0,-2],[2,-3],[1,-1],[3,-2],[2,1],[2,1],[3,-1],[1,0],[0,3],[-1,2],[0,1],[-3,1],[-1,1],[1,0],[-1,1],[-3,1],[-2,-1],[-3,1],[-1,0],[0,1],[-1,1],[-2,1],[1,0],[-1,1],[-2,1],[-1,0],[0,1],[0,1],[3,0],[2,1],[2,1],[2,0],[1,-1],[1,0],[5,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,1],[-1,1],[1,0],[1,1],[3,0],[3,-2],[0,1],[0,1],[-1,0],[-2,0],[-1,1],[1,0],[0,1],[0,1],[-1,0],[-2,-1],[-1,0],[-1,0],[1,-1],[-1,-1],[-2,-2],[-1,0],[-1,0],[-3,-2],[-4,0],[-1,1],[-1,1],[-1,0],[-3,0],[0,1],[-1,2],[0,1],[-2,1],[-3,1],[-1,1],[-1,0],[-1,-1],[-3,-2],[-2,0],[-2,0],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[2,1],[2,0],[3,1],[4,0],[1,1],[1,1],[1,0],[1,3],[-1,2],[1,1],[4,1],[4,2],[4,1],[1,-1],[-5,-1],[4,1],[0,-1],[2,-1],[1,1],[1,0],[-1,0],[1,0],[1,1],[-1,1],[-2,3],[0,1],[2,2],[-1,1],[-1,0],[-3,0],[-1,0],[-1,1],[-1,3],[0,1],[1,1],[0,-1],[-1,0],[0,-1],[1,-2],[0,1],[0,1],[2,1],[0,-1],[-1,-1],[-1,-1],[1,0],[1,1],[1,1],[1,3],[-3,0],[-1,-1],[1,1],[4,0],[3,-1],[2,1],[3,2],[6,6],[5,4],[0,1],[4,3],[6,6],[2,3],[4,6],[4,6],[4,8],[0,2],[1,2],[0,1],[0,2],[1,0],[2,0],[1,1],[-1,0],[-2,-1],[1,3],[0,1],[1,3],[1,5],[2,9],[0,3],[0,1],[1,3],[1,3],[2,6],[3,8],[0,6],[0,1],[1,2],[5,0],[-1,-1],[1,-1],[1,1],[0,1],[1,-1],[-1,0],[0,-1],[0,-1],[1,-2],[0,-1],[6,-2],[2,0],[3,1],[1,2],[1,1],[1,0],[5,1],[1,0],[10,7],[11,7],[4,1],[2,2],[1,0],[0,1],[1,1],[1,1],[0,1],[1,2],[0,2],[-1,1],[3,1],[0,1],[-1,-1],[-1,0],[2,2],[1,2],[3,2],[3,1],[1,1],[2,1],[0,1],[2,2],[6,2],[6,2],[10,4],[4,2],[2,0],[8,1],[5,1],[2,0],[4,-1],[3,2],[1,-1],[1,0],[1,0],[4,1],[4,-2],[3,1],[2,1],[15,2],[5,1],[4,1],[4,1],[5,0],[3,-1],[2,1],[1,-1],[-2,-1],[2,0],[-1,0],[2,0],[0,1],[2,0],[1,-2],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-4],[1,0],[2,-2],[0,1],[-1,-1],[6,-2],[1,0],[1,-1],[5,0],[1,1],[-1,-1],[0,-1],[0,-2],[0,-1],[1,0],[1,-1],[3,0],[0,-1],[2,0],[3,-1],[1,1]],[[5590,7859],[1,0],[3,2],[3,0],[6,2],[2,-1],[2,-1],[1,0],[2,-1],[1,0],[6,-1],[0,-1],[3,-2],[3,0],[0,-1],[1,0],[0,1],[1,0],[2,0],[0,-1],[1,-1],[0,1],[1,0],[1,0],[2,0],[1,1],[1,0],[2,2],[2,0],[1,1],[1,1],[0,1],[0,1],[1,1],[4,-1],[1,-1],[0,-1],[1,-2],[4,0],[2,-1],[1,-2],[1,0],[-1,1],[-1,2],[1,0],[1,0],[0,-1],[2,-1],[1,0],[-2,1],[0,1],[0,1],[3,0],[1,0],[1,0],[0,-1],[2,-2]],[[5716,8054],[1,-2],[0,1],[0,-1],[1,-1],[1,-2],[0,-1],[0,-3],[0,-1],[-1,-1],[-2,-1],[0,-1],[-1,-2],[-1,-1],[-2,0],[-3,-3],[1,0],[-4,1],[0,-1],[2,0],[0,-1],[-2,0],[-1,0],[-2,-1],[0,2],[0,1],[0,2],[0,2],[1,1],[2,4],[4,5],[0,-1],[3,1],[-1,1],[-1,-1],[-1,0],[4,5],[1,-1],[-1,0],[2,0]],[[5774,8082],[0,-1],[-1,1],[-1,-1],[-2,0],[-2,-1],[-1,0],[-1,-1],[-1,1],[2,-1],[-1,-1],[-7,0],[-3,-2],[-2,-1],[-1,1],[-1,-1],[-3,0],[-2,-1],[-1,0],[-1,-1],[-2,0],[1,0],[-1,-1],[-2,0],[-1,1],[0,1],[4,4],[16,3],[8,2],[2,0],[4,-1]],[[5786,8084],[5,0],[14,1],[4,0],[0,-1],[-1,0],[-5,0],[-1,-1],[-7,-1],[-7,1],[-2,-2],[-2,0],[-1,-1],[-3,1],[-1,1],[0,1],[0,1],[1,1],[3,1],[2,-1],[-2,0],[3,-1]],[[5825,8086],[-1,-1],[-1,0],[-1,1],[1,2],[1,1],[9,0],[6,1],[3,0],[-1,-1],[-2,0],[-4,-1],[-2,-1],[-1,-1],[-7,0]],[[5736,8068],[-1,-1],[-3,-1],[-2,-1],[-5,-2],[0,-1],[-2,-1],[-1,-1],[0,-1],[-2,-1],[-3,0],[-2,-1],[-1,1],[1,1],[6,3],[3,2],[6,3],[3,1],[3,0]],[[5852,8095],[4,-3],[-2,1],[-2,1],[-1,0],[3,-2],[-1,1],[-2,0],[1,-1],[0,-1],[-1,-1],[-1,3],[1,1],[1,1]],[[5617,7886],[0,-1],[-1,0],[1,1],[-1,0],[1,1],[1,1],[1,0],[0,-1],[-1,0],[-1,-1]],[[5861,8093],[2,0],[-2,0],[-1,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[3,0]],[[5748,8062],[0,-1],[-1,1],[1,0],[2,0],[-2,0]],[[5861,8091],[-1,0],[0,1],[1,-1]],[[7034,9769],[-41,-1],[20,-13],[3,-13],[-11,-15],[-13,-8],[-10,-4],[8,-3],[17,-4],[-21,-11],[-5,-4],[-79,18],[-30,-1],[-18,8],[-24,-5],[-2,-14],[1,-7],[3,-16],[-21,-24],[-20,7],[-26,7],[-6,2],[-8,-8],[-21,-7],[-17,-7],[0,-1],[-15,-28],[-5,-6],[-7,-6],[-21,-2],[-6,-9],[20,-19],[6,-6],[0,-2],[-1,-15],[-7,-3],[-9,-4],[-13,-8],[-4,-4],[-31,-30],[-8,-4],[-7,-3],[-6,-5],[5,-10],[2,-5],[2,-7],[-38,-13],[-7,-1],[-36,-2],[1,-4],[4,-15],[1,-6],[1,-4],[2,-5],[-7,-12],[-4,-20],[0,-8],[1,-8],[0,-7],[-11,-6],[-4,-14],[-17,-15],[-16,-17],[-2,-2],[-17,-18],[-5,-6],[20,-8],[17,-3],[2,-2],[1,-8],[2,-11],[1,-10],[-16,-20],[-22,4],[-36,5],[-2,0],[-4,0],[-24,-4],[-20,-9],[-1,0],[-16,-17],[-13,-11],[-2,-4],[-6,-5],[-7,-4],[5,-12],[-11,-14],[-9,-9],[7,-9],[14,-20],[-12,-11],[5,-16],[-7,-15],[17,-30],[3,-7],[-13,-59],[11,-9],[6,-3],[7,-5],[2,0],[10,0],[25,-23],[-3,-11],[-3,-6],[-7,-6],[-2,-9],[-1,0],[-5,-1],[-14,0],[-17,-3],[-2,-1],[9,-13],[0,-4],[1,-1],[1,-3],[4,-9],[5,-5],[4,-5],[1,-4],[5,-6],[2,-2],[0,-2],[0,-11],[-5,-7],[-4,-2],[1,-5],[1,-6],[2,-3],[-3,-7],[-1,-4],[-4,-6],[-4,-2],[-4,-4],[-1,-2],[-9,-4],[-5,-4],[-2,0],[-2,0],[-6,0],[-6,1],[-5,-2],[0,-1],[-1,0],[-2,0],[-1,0],[1,-1],[0,-1],[-4,-1],[1,-1],[3,-1],[3,-4],[1,-2],[0,-1],[-1,-1],[1,-2],[0,-2],[0,-1],[1,-1],[-1,0],[-4,0],[-1,-1],[-1,-3],[-1,-1],[-6,-1],[-5,-2],[-2,-1],[-1,-2],[4,-9],[1,-2],[1,-1],[0,-3],[0,-3],[1,-1],[1,-3],[1,-2],[2,-3],[0,-3],[0,-2],[1,-6],[-2,-2],[-2,-2],[0,-2],[-1,-2],[1,-3],[-1,-1],[-1,-2],[2,-1],[-1,-2],[-2,-2],[-2,-2],[-1,-2],[0,-2],[-2,-2],[1,-2],[-1,0],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-2,0],[-3,-2],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,-1],[-1,0],[-2,1],[-3,0],[0,3],[0,2],[0,2],[0,2],[-1,1],[1,1]],[[6270,8682],[1,-1],[0,2],[-2,3],[-1,1],[-2,0],[2,3],[-1,0],[0,-1],[-1,1],[-1,1],[-2,3],[1,1],[0,1],[-2,0],[-3,0],[-1,0],[-2,-1],[0,-1],[-3,-1],[-3,-1],[-1,1],[-1,0],[1,1],[0,2],[2,1],[0,1],[-1,0],[-1,-2],[-1,-1],[-1,1],[-1,1],[0,1],[2,0],[0,-1],[1,2],[-2,0],[-1,0],[0,1],[0,3],[-3,1],[2,-1],[0,-2],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,3],[-1,2],[-2,0],[0,1],[-1,1],[1,1],[-2,0],[2,-3],[2,-3],[0,-1],[0,-2],[-2,-1],[-1,0],[0,1],[0,1],[-1,0],[-2,-1],[0,2],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[-1,0],[-1,-1],[0,1],[-1,0],[-2,-1],[-1,-1],[0,-2],[-1,-1],[-2,0],[-1,1],[0,1],[1,1],[-1,1],[-1,0],[-1,0],[1,1],[1,2],[2,1],[0,1],[-1,0],[-1,-2],[0,-1],[-3,-3],[-3,-2],[-1,1],[0,1],[-1,3],[-1,0],[1,-1],[-1,0],[0,1],[1,1],[-1,1],[-3,2],[1,1],[2,2],[-1,0],[-2,-3],[-1,0],[-1,-1],[-1,3],[1,1],[0,1],[1,-1],[-1,-1],[1,0],[0,1],[0,1],[-1,1],[0,-1],[-1,0],[1,1],[1,0],[-1,0],[1,0],[0,1],[4,4],[2,0],[-3,-1],[-2,-1],[-1,1],[-1,-1],[-1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[-2,0],[-2,-2],[-2,-2],[-1,2],[-1,0],[0,1],[0,2],[0,1],[-1,1],[0,2],[0,3],[1,1],[-1,0],[0,1],[1,1],[1,1],[1,3],[0,1],[-1,2],[1,2],[-2,-1],[0,1],[-1,2],[0,3],[0,1],[0,1],[0,2],[-3,7],[1,2],[1,0],[0,1],[-1,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,2],[0,1],[1,2],[1,1],[1,1],[0,1],[3,3],[0,2],[1,1],[1,-1],[1,-2],[1,0],[1,-7],[0,-1],[1,-3],[0,-2],[0,1],[0,2],[0,1],[1,1],[0,3],[1,3],[2,0],[1,3],[0,1],[-1,2],[-1,1],[0,2],[-1,0],[-1,0],[-2,0],[-2,1],[1,-2],[-2,-1],[-1,1],[0,1],[1,1],[-3,-1],[-1,-1],[1,-1],[-2,-1],[1,0],[-1,0],[-1,-1],[-1,1],[2,1],[-2,0],[2,1],[-4,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[0,-1],[-1,-2],[-1,0],[-1,-1],[3,1],[-3,-2],[1,-1],[1,-2],[0,-1],[0,-2],[1,-1],[0,-2],[1,-1],[0,-3],[0,-1],[0,-1],[1,-1],[0,1],[4,-2],[2,0],[0,-1],[0,-3],[1,-4],[0,-2],[-3,-3],[-1,0],[-3,-2],[-3,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,2],[0,2],[1,1],[0,2],[-1,1],[-1,0],[2,1],[-1,1],[0,2],[1,0],[0,2],[-1,1],[0,1],[0,-1],[-2,2],[-1,-1],[0,2],[-2,1],[-3,0],[-1,0],[0,1],[-1,0],[-2,2],[0,1],[-2,0],[-1,-1],[-1,0],[-2,0],[0,-1],[1,0],[2,0],[2,-1],[0,-1],[0,-1],[4,-1],[2,-1],[2,0],[1,-1],[1,-3],[2,-3],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[1,-2],[-1,-1],[0,-1],[-2,-1],[-3,0],[-4,2],[-1,2],[-2,1],[-1,-1],[0,-2],[1,0],[1,-1],[1,-1],[1,0],[1,-2],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[2,-2],[1,-1],[0,1],[1,0],[2,-1],[0,1],[1,1],[1,0],[1,-1],[-2,0],[1,-1],[1,-1],[1,0],[1,0],[0,1],[0,-1],[1,1],[0,-2],[-1,0],[-1,-2],[0,-2],[-1,-1],[1,-2],[0,-1],[2,-2],[1,0],[1,0],[1,-2],[-1,-1],[-2,-1],[0,-2],[-2,-2],[0,-1],[-2,0],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[-2,0],[0,2],[-1,0],[-1,-1],[0,-1],[-1,-2],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[1,-1],[0,-1],[-2,-1],[0,1],[-1,1],[-1,0],[1,-3],[1,-2],[1,-1],[0,-1],[-1,-2],[-1,2],[0,2],[-2,2],[0,1],[-1,0],[0,-1],[1,-2],[1,-1],[0,-2],[0,-1],[-1,-2],[-1,2],[0,1],[0,1],[0,2],[-1,1],[-1,0],[-1,1],[1,2],[-1,-1],[1,-2],[-1,-3],[-2,0],[3,-2],[0,-1],[-1,-2],[-1,-1],[-3,-1],[-2,-1],[-2,1],[0,1],[0,1],[4,1],[0,1],[-1,0],[0,1],[-2,-2],[-2,-1],[-2,-1],[-2,-1],[0,1],[0,2],[-1,0],[-2,1],[-1,0],[0,-2],[1,-1],[0,-2],[1,-3],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[1,0],[0,-1],[-4,0],[-2,0],[-1,0],[0,1],[-2,0],[0,-1],[-1,-1],[-3,2],[1,0],[2,2],[0,2],[-1,1],[0,3],[-1,-1],[0,-1],[-1,1],[-1,0],[-1,1],[0,2],[0,1],[-1,-1],[0,-3],[-2,1],[0,1],[-1,2],[-1,0],[0,-1],[-2,0],[0,1],[0,2],[1,1],[-1,1],[-1,0],[0,-2],[-1,-2],[0,-2],[-2,0],[-1,1],[-1,2],[0,1],[1,1],[-3,2],[1,1],[0,-1],[1,-1],[1,1],[-2,1],[-1,-1],[-1,0],[-2,0],[1,0],[0,-1],[-4,1],[-1,1],[-2,0],[1,-1],[3,0],[0,-1],[1,-1],[1,0],[2,-1],[2,-1],[1,-3],[1,0],[-1,0],[1,-1],[2,0],[2,0],[3,-2],[1,-2],[0,-2],[-1,0],[-1,2],[-2,0],[0,-1],[1,-1],[-1,-1],[0,1],[-2,1],[-2,-1],[2,-1],[1,0],[1,0],[0,-1],[-1,-1],[-2,0],[-1,0],[-2,-1],[-1,-1],[1,0],[0,-1],[-1,1],[0,1],[-2,-1],[0,-1],[2,0],[-3,-1],[-2,0],[-3,0],[-2,1],[-3,0],[2,-1],[2,0],[-3,-1],[-2,-2],[1,0],[0,-2],[-1,2],[-1,1],[-1,0],[-4,-1],[-1,-1],[0,-1],[1,0],[1,2],[2,1],[1,-1],[0,-2],[-2,0],[-1,-1],[1,1],[1,-1],[-1,-1],[-4,0],[-2,1],[-1,0],[-1,1],[-1,-3],[0,-1],[0,-1],[2,0],[-1,0],[4,1],[4,1],[3,-1],[2,-1],[1,-1],[-1,0],[-6,-1],[1,-1],[-1,0],[-1,-1],[3,1],[2,0],[-3,-2],[-1,0],[-2,-2],[-1,-1],[0,-1],[-1,1],[-5,-2],[-2,0],[-1,1],[-1,-1],[-2,0],[-2,1],[-1,-1],[-1,0],[-4,1],[-3,0],[0,1],[-1,-1],[2,-1],[-3,-1],[0,-1],[6,0],[-1,-1],[2,1],[2,-1],[2,1],[1,0],[2,0],[2,1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-6,-1],[-2,0],[-1,-1],[-2,0],[10,1],[2,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[1,1],[-1,0],[-4,-2],[2,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[1,-3],[-1,-1],[2,1],[1,-1],[-1,-2],[1,0],[0,-1],[-1,-1],[-2,0],[-1,-2],[-3,0],[0,-1],[1,0],[-2,-1],[1,-1],[1,1],[-1,-1],[-1,-1],[-2,0],[1,2],[1,2],[-1,-1],[-1,-2],[0,-1],[1,0],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,0],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-2,-2],[1,0],[-1,0],[0,-1],[2,0],[-2,-2],[-2,-2],[-2,0],[-1,-1],[-2,0],[0,-1],[-1,0],[1,2],[0,1],[-2,-2],[-1,-2],[-1,-2],[-2,-1],[-1,-1],[-1,0],[-3,-2],[3,1],[1,1],[0,-2],[-1,-1],[-1,0],[-4,0],[-2,0],[0,1],[0,1],[1,2],[-3,-3],[1,0],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-3,-2],[-2,-1],[-2,0],[-1,0],[1,-1],[1,0],[-1,0],[-3,0],[-1,0],[0,-1],[3,0],[2,0],[-3,-1],[1,0],[0,-1],[1,1],[1,-1],[-2,0],[-1,-2],[-3,0],[1,0],[-1,1],[-2,1],[-1,1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,-1],[2,0],[-1,-1],[1,0],[1,-1],[-1,0],[-1,-1],[-2,0],[-1,2],[0,1],[0,1],[1,1],[-2,0],[0,-1],[1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-2,1],[-3,1],[-1,0],[-1,0],[-1,3],[2,1],[1,1],[1,2],[-1,0],[-2,3],[-2,2],[-1,0],[2,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,1],[-2,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-1],[-1,0],[0,1],[-1,1],[0,-1],[0,-1],[-1,-1],[-1,1],[-1,0],[-3,0],[2,0],[-2,0],[-1,0],[-1,-1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-2,-1],[0,-1],[-2,-1],[-1,1],[-1,3],[1,-1],[-3,3],[2,-4],[2,-2],[-2,-1],[-2,1],[-1,0],[1,-1],[1,0],[-1,-1],[1,0],[0,-1],[-1,1],[-1,0],[1,-2],[-2,1],[-1,0],[-1,1],[1,1],[1,1],[-2,0],[-1,-1],[1,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,-1],[-1,1],[0,1],[-2,0],[-1,0],[-2,-1],[-1,0],[0,2],[-2,0],[2,-1],[-1,0],[-1,0],[-1,0],[1,-1],[1,0],[1,0],[-2,0],[-1,1],[-4,1],[-2,1],[0,1],[0,-1],[0,-1],[-2,0],[-2,0],[0,1],[0,1],[-2,0],[-2,-2],[-1,0],[-1,1],[0,1],[-2,1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[0,-1],[1,-2],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-2,1],[0,1],[0,2],[1,1],[3,2],[3,1],[1,1],[2,1],[0,-1],[-1,-1],[0,-1],[1,0],[0,1],[2,4],[1,2],[0,1],[-1,0],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,-1],[-1,0],[-2,1],[-1,-2],[-1,-1],[-3,0],[0,-1],[-1,-1],[-3,-1],[-1,0],[-1,1],[0,1],[3,1],[0,1],[0,1],[0,1],[2,2],[2,1],[0,1],[-1,0],[-1,-1],[-1,-2],[-2,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[0,1],[2,1],[-2,0],[0,1],[2,1],[-3,0],[2,1],[1,1],[-1,0],[0,-1],[-2,0],[-1,-1],[0,-1],[-2,0],[2,0],[0,1],[-2,0],[-1,0],[-1,0],[-5,1],[3,1],[3,2],[3,0],[2,0],[1,0],[1,0],[3,0],[3,1],[0,1],[2,0],[-2,0],[-4,-1],[-4,0],[-3,0],[-1,1],[0,1],[-2,0],[-1,0],[-2,2],[3,2],[1,1],[-1,0],[0,-1],[-2,0],[-2,-1],[0,1],[-2,0],[1,-2],[0,-1],[4,-2],[1,-1],[-1,-1],[-1,0],[-2,-2],[-3,1],[-2,0],[-1,0],[0,2],[1,1],[0,2],[-1,1],[0,1],[1,1],[-1,1],[0,-1],[-1,-1],[0,-1],[0,-3],[1,-2],[-1,-1],[1,-1],[3,-1],[2,0],[0,-1],[-3,-1],[4,1],[0,-1],[-1,0],[1,-1],[-2,0],[-1,0],[-1,1],[-1,-1],[-2,0],[-2,0],[-3,0],[-1,1],[-2,-1],[-1,1],[-1,0],[1,1],[-1,0],[-1,1],[-1,-1],[-3,3],[0,1],[1,0],[2,1],[1,1],[1,2],[1,0],[-1,2],[1,0],[5,0],[2,0],[1,0],[-3,0],[-1,1],[2,1],[3,2],[1,1],[1,0],[1,1],[9,4],[1,0],[-1,1],[-1,-1],[-3,-1],[-1,0],[-2,-1],[-1,-1],[-4,-1],[0,-1],[-1,0],[-1,0],[-2,2],[0,1],[-1,1],[-1,0],[0,1],[1,1],[-1,4],[-1,0],[-1,-2],[0,-3],[1,-1],[1,-2],[-1,-1],[-2,1],[-4,0],[-4,1],[-2,1],[-2,-1],[-2,2],[-1,-1],[-1,1],[-2,0],[-3,1],[5,1],[-4,-1],[-2,0],[-3,1],[-1,1],[1,2],[1,0],[1,1],[-2,-1],[-1,-1],[-3,1],[-1,0],[-2,1],[-3,0],[0,1],[-1,0],[-3,1],[-4,1],[-1,1],[0,1],[-1,0],[-2,0],[-2,0],[0,1],[-2,1],[-1,2],[0,1],[-1,0],[-1,2],[0,1],[1,1],[-1,0],[-1,1],[1,0],[1,0],[0,1],[-2,-1],[-2,1],[-6,-1],[-2,1],[1,0],[1,0],[-1,1],[-2,-1],[0,1],[-2,0],[-3,1],[0,1],[1,0],[0,1],[-2,2],[-3,1],[-4,0],[-1,0],[-2,2],[-1,3],[-5,5],[0,1],[-3,2],[0,1],[0,2],[0,1],[-2,1],[0,1],[0,1],[-1,2],[-2,1],[1,1],[3,2],[0,1],[1,1],[0,1],[-1,1],[1,2],[1,0],[0,1],[-1,1],[1,1],[1,1],[2,1],[1,0],[-1,1],[-1,1],[-1,1],[0,2],[2,-1],[1,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[1,1],[2,-1],[0,-1],[2,-1],[-1,0],[1,-1],[0,-2],[0,-1],[1,0],[0,1],[2,1],[2,1],[-1,1],[-1,1],[-2,-2],[0,1],[0,1],[-1,1],[-3,1],[1,1],[0,1],[-3,0],[-1,0],[1,2],[0,1],[0,1],[1,0],[1,0],[-1,0],[-1,1],[1,1],[2,-1],[0,-1],[1,0],[3,-1],[1,-1],[1,0],[3,-2],[1,-1],[2,0],[2,-1],[0,-1],[-2,0],[0,1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[-1,-1],[1,-1],[0,-2],[-1,-1],[1,-1],[2,2],[0,1],[0,1],[0,2],[1,1],[0,1],[3,-1],[1,0],[1,1],[1,0],[-1,1],[1,1],[1,1],[2,0],[1,-1],[2,-1],[0,1],[2,-1],[2,-1],[1,-1],[-1,0],[-1,-1],[0,-2],[3,0],[1,0],[1,0],[2,-1],[1,1],[1,-1],[0,-1],[3,-2],[1,-1],[2,0],[1,-1],[2,-1],[1,0],[0,1],[8,-1],[0,1],[-3,1],[-3,0],[-4,0],[-4,2],[-1,1],[0,1],[0,3],[1,2],[1,1],[2,1],[2,0],[0,1],[1,1],[3,0],[1,1],[4,2],[7,0],[12,3],[2,0],[4,1],[6,1],[-1,1],[-9,-2],[-4,0],[-11,-2],[-8,-1],[-2,-1],[-9,-5],[-2,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-2,3],[-2,0],[0,1],[0,1],[-2,2],[0,1],[2,2],[1,1],[1,0],[1,0],[2,-2],[1,0],[-2,2],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,2],[-2,1],[0,1],[0,1],[-2,0],[0,1],[0,1],[2,1],[3,2],[3,1],[4,-1],[2,1],[0,1],[1,0],[1,0],[2,1],[1,0],[2,0],[2,0],[1,0],[-1,1],[-5,-1],[0,1],[-1,0],[-4,-1],[-2,0],[1,2],[2,1],[1,1],[0,1],[0,1],[2,0],[0,1],[-1,0],[2,2],[1,-1],[1,1],[1,1],[1,0],[1,0],[1,0],[0,1],[0,1],[3,2],[5,0],[3,1],[2,-1],[0,1],[-1,1],[4,1],[5,2],[9,0],[2,1],[-4,-1],[-7,1],[-6,-1],[-1,0],[-1,-1],[-2,-1],[-3,-1],[-2,-1],[-5,-1],[-2,-1],[-1,0],[0,1],[-3,2],[0,1],[1,1],[3,0],[6,1],[1,0],[1,-1],[1,0],[-2,3],[-1,1],[0,2],[-1,3],[-1,0],[0,-1],[1,-3],[0,-1],[1,-2],[-1,0],[-3,-1],[0,1],[0,1],[2,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-3,0],[-2,1],[-2,0],[0,1],[0,2],[2,2],[-3,-3],[0,-1],[-3,-1],[-1,1],[-1,1],[0,1],[2,1],[0,1],[0,1],[1,1],[2,0],[2,0],[1,1],[1,0],[1,1],[-1,0],[0,1],[3,1],[1,0],[-1,0],[1,-1],[2,2],[1,1],[0,-3],[-1,-1],[1,0],[0,1],[0,1],[1,1],[3,4],[-1,1],[0,1],[2,1],[3,1],[5,2],[2,0],[1,0],[3,1],[2,1],[5,0],[7,1],[-14,0],[-3,-1],[-3,0],[-1,-1],[-2,-1],[-4,-1],[-1,0],[2,4],[1,1],[2,2],[0,4],[1,1],[2,1],[-2,1],[-3,-1],[-2,-2],[0,-3],[2,0],[0,-2],[-2,-1],[-2,-2],[1,0],[0,-1],[-2,-2],[-4,-2],[0,-2],[1,0],[0,-1],[-2,-2],[-3,-3],[-2,-1],[-1,-1],[-3,0],[-2,0],[-1,-1],[1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,-1],[2,1],[0,-2],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,-1],[0,-1],[-3,1],[0,1],[0,1],[-1,1],[-1,1],[0,3],[0,2],[1,1],[2,-1],[2,0],[2,0],[1,0],[4,1],[8,2],[3,0],[1,1],[-2,0],[-1,0],[-1,0],[-7,-1],[-1,0],[-2,0],[-3,1],[-7,-1],[-2,1],[1,0],[0,1],[-1,1],[-1,-1],[-1,1],[0,2],[0,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[1,0],[1,-1],[1,-2],[1,-2],[0,-1],[-7,-3],[-2,2],[1,1],[-2,1],[0,-2],[1,-1],[0,-2],[-4,-2],[-2,-1],[-1,-1],[1,1],[2,0],[3,2],[2,0],[2,1],[5,1],[0,-1],[0,-1],[1,-2],[1,-1],[2,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,1],[-2,0],[-2,0],[-1,-1],[-1,1],[-1,0],[1,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,-1],[0,-1],[-1,-1],[-3,-2],[0,1],[-3,-2],[0,-2],[1,0],[-2,-1],[-1,1],[1,2],[1,1],[-1,2],[1,1],[2,0],[1,0],[-2,2],[0,1],[-3,3],[0,2],[0,3],[-1,1],[0,2],[0,2],[0,2],[1,-1],[0,1],[0,1],[-4,0],[-2,-1],[0,-2],[-2,0],[0,-2],[0,-1],[-1,0],[-3,1],[-2,1],[0,-3],[1,0],[0,1],[3,-2],[2,1],[1,1],[1,1],[0,1],[0,1],[3,0],[0,-1],[1,-1],[1,-1],[0,-2],[0,-2],[-2,1],[-1,-1],[1,0],[2,0],[0,-1],[0,-2],[-1,0],[0,-1],[1,-2],[0,-2],[-2,-2],[0,-2],[-4,-3],[-1,1],[-1,-1],[-3,0],[-1,1],[-1,1],[1,0],[-1,2],[-1,1],[1,1],[1,-1],[1,1],[0,1],[-2,-1],[0,1],[1,3],[0,2],[-1,1],[1,0],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[1,-4],[-3,0],[-1,-1],[-1,1],[-1,2],[1,0],[0,1],[-1,2],[-1,3],[1,1],[1,0],[-2,5],[-1,-2],[0,-1],[1,-1],[-1,-1],[0,-2],[1,-2],[0,-1],[-3,-1],[-2,1],[-1,2],[-1,2],[0,1],[0,1],[-2,2],[-1,2],[-2,1],[-1,5],[0,2],[1,0],[1,0],[1,0],[1,-1],[-2,-1],[1,0],[4,0],[-1,0],[1,1],[0,1],[-2,-1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[-2,0],[-1,0],[1,1],[1,0],[3,-1],[0,1],[-1,1],[0,-1],[-1,0],[-2,0],[-1,1],[1,0],[0,2],[1,1],[2,0],[1,0],[0,1],[0,2],[2,1],[1,0],[0,1],[0,1],[0,1],[2,1],[3,0],[0,1],[-1,0],[1,1],[2,0],[1,-1],[1,-2],[0,-1],[0,-3],[1,0],[0,3],[2,0],[1,0],[0,1],[-3,2],[-1,1],[-1,0],[0,1],[1,1],[2,0],[-1,1],[0,1],[2,1],[1,1],[2,1],[2,2],[1,0],[1,-2],[-1,-4],[0,-3],[-2,-1],[1,-5],[1,-3],[-2,-2],[0,-2],[-1,-1],[-2,1],[-1,0],[0,1],[0,1],[-1,-1],[-1,-1],[0,-1],[1,0],[1,-2],[1,-1],[-1,1],[0,1],[1,1],[3,-1],[0,1],[1,1],[1,1],[1,0],[2,2],[0,1],[0,1],[0,1],[1,1],[-2,0],[0,1],[0,3],[0,1],[0,1],[1,2],[2,2],[1,0],[3,-2],[2,0],[1,0],[2,-1],[6,-1],[1,-3],[0,-1],[-1,-1],[-2,0],[-1,-1],[7,2],[-2,1],[0,2],[2,1],[3,0],[1,-1],[4,0],[1,1],[-1,0],[-1,0],[-1,0],[2,2],[1,0],[1,0],[-2,1],[-4,-2],[-2,0],[-2,-1],[-2,0],[-1,1],[0,1],[0,2],[2,1],[1,1],[2,1],[1,-1],[1,1],[-1,1],[1,1],[2,0],[1,0],[0,1],[2,-1],[1,0],[0,1],[1,1],[-2,1],[0,1],[1,0],[2,-1],[0,-1],[-1,-1],[1,0],[2,-1],[1,0],[-1,1],[1,0],[2,-1],[2,1],[4,-1],[2,2],[2,3],[3,1],[3,2],[1,1],[2,2],[6,0],[2,2],[1,0],[0,1],[1,1],[1,0],[-1,0],[-2,-1],[0,-1],[-4,-1],[-6,-1],[-3,-2],[-2,-1],[-1,-1],[-3,-2],[-1,0],[1,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-3,0],[-4,1],[-1,2],[-1,1],[3,2],[0,2],[0,1],[-1,1],[2,1],[-1,1],[-1,0],[-1,-1],[1,-2],[-2,-3],[-1,-2],[-2,0],[-3,-2],[-5,3],[-1,1],[0,1],[-1,1],[-1,1],[-2,0],[-4,-1],[-3,1],[0,2],[2,1],[1,-1],[2,1],[0,1],[-1,0],[1,1],[1,0],[1,-1],[-1,0],[0,-1],[1,1],[1,1],[-1,1],[0,1],[3,3],[1,1],[4,-1],[0,1],[2,1],[3,1],[4,-1],[1,0],[2,1],[0,1],[0,1],[1,1],[-2,1],[0,1],[1,2],[2,2],[0,1],[0,1],[1,1],[5,2],[2,1],[2,0],[3,1],[3,0],[2,1],[7,2],[-1,0],[-2,0],[0,2],[1,1],[-1,1],[-2,-1],[0,-2],[-1,-1],[-4,-2],[-5,-1],[-1,1],[2,1],[1,0],[-2,2],[-1,0],[-3,4],[-1,2],[2,0],[0,1],[1,1],[0,1],[2,0],[2,-1],[3,1],[0,2],[0,1],[0,1],[3,0],[1,2],[-1,1],[-1,1],[4,1],[2,0],[2,1],[1,1],[1,1],[3,1],[-2,1],[-1,1],[1,1],[1,0],[1,0],[4,0],[6,1],[0,2],[1,1],[2,1],[2,2],[1,0],[4,-1],[4,-2],[-2,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-2,-1],[1,-2],[-1,0],[-1,-3],[-1,-1],[-1,-3],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,-2],[-1,-4],[0,-2],[0,-2],[0,-3],[1,-1],[1,1],[-1,2],[1,4],[1,2],[0,2],[1,1],[1,1],[1,2],[0,2],[1,1],[1,3],[-1,1],[0,1],[1,1],[1,0],[1,3],[0,1],[0,1],[1,2],[2,3],[0,1],[2,-2],[1,1],[-1,2],[2,1],[2,3],[1,1],[3,1],[2,2],[1,0],[1,0],[3,-1],[4,1],[3,1],[2,0],[2,0],[3,-2],[1,1],[1,1],[1,0],[1,0],[3,1],[0,1],[-1,0],[-5,-2],[-6,2],[-3,0],[-2,-1],[-1,0],[-1,0],[3,3],[0,1],[4,3],[0,1],[3,2],[-1,0],[-2,-1],[-6,-5],[-1,0],[1,1],[0,1],[-1,1],[1,1],[1,0],[1,1],[-2,0],[-1,-1],[-1,-1],[1,0],[0,-3],[0,-1],[-2,-3],[-1,-1],[-1,1],[-2,0],[-4,-2],[-3,0],[-1,-1],[1,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[0,-1],[-2,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,1],[0,1],[2,1],[1,0],[2,3],[-1,0],[-2,-2],[-2,-1],[-1,-2],[-3,0],[0,-1],[0,-1],[-3,0],[-3,0],[-3,-1],[-3,-1],[-3,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,-1],[-1,-1],[-5,-1],[-2,1],[0,1],[-2,2],[0,1],[-2,4],[0,-2],[1,-4],[5,-4],[-3,-1],[-2,1],[-2,1],[0,-1],[0,-1],[-2,-1],[-3,1],[-1,0],[2,-1],[2,-1],[3,-1],[1,-1],[-4,-1],[-1,-2],[1,-2],[1,0],[1,-1],[-2,-2],[-1,0],[-1,-2],[-1,0],[0,1],[-2,0],[-3,0],[-1,1],[-2,0],[-1,1],[-2,0],[-1,-3],[1,-1],[-2,-1],[-2,-2],[0,-1],[-1,-3],[0,-1],[-2,-1],[0,1],[0,1],[-2,0],[0,-1],[0,-4],[0,-1],[1,0],[1,-3],[0,-3],[-1,-1],[0,-2],[-2,-2],[-3,-1],[0,-1],[-2,-1],[-1,0],[-1,2],[1,1],[-1,0],[-2,-3],[-2,0],[0,1],[0,1],[0,1],[-1,-1],[-2,0],[0,1],[0,2],[-1,1],[-1,1],[1,2],[1,1],[3,-2],[-1,1],[3,0],[1,0],[0,-1],[2,2],[1,2],[-2,-2],[-1,1],[1,0],[-1,1],[-1,-2],[-2,0],[-1,1],[-2,2],[0,2],[1,0],[2,0],[0,2],[-1,0],[-2,1],[0,2],[4,2],[-6,-1],[0,2],[-1,-2],[0,-1],[0,-1],[-4,-1],[-4,-1],[-2,1],[1,2],[1,0],[0,2],[1,2],[2,0],[1,2],[2,1],[2,-1],[3,1],[2,1],[-1,1],[-2,-1],[-4,0],[-4,-1],[1,1],[3,3],[0,2],[-1,-1],[-2,-2],[-2,-3],[-1,1],[-1,1],[2,2],[2,0],[1,1],[1,2],[0,2],[0,2],[2,1],[1,2],[5,1],[1,1],[1,1],[-1,1],[-2,-1],[-1,1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[-2,0],[-1,-1],[-1,-2],[-1,0],[0,2],[1,1],[-2,0],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-4],[-1,-1],[-3,-2],[-1,-1],[1,-1],[-1,-2],[-2,-2],[1,0],[-1,-1],[-2,-1],[-1,1],[-2,-2],[0,1],[-1,-1],[-1,-2],[1,0],[-1,-2],[-1,-1],[-1,2],[0,1],[-2,-1],[0,1],[0,1],[0,1],[-3,0],[-3,1],[0,1],[0,1],[1,1],[1,0],[1,-1],[1,1],[-1,1],[-1,1],[0,-1],[-2,1],[-2,-2],[-2,1],[0,-1],[0,-1],[-1,0],[-2,0],[0,1],[0,1],[1,1],[2,0],[2,1],[2,2],[0,1],[-3,-1],[-3,1],[0,-1],[1,0],[1,0],[-2,-2],[-2,0],[0,1],[0,1],[2,0],[-1,1],[-1,-1],[-1,1],[-1,1],[-1,1],[0,2],[1,1],[3,1],[1,-1],[1,1],[1,-1],[2,-1],[2,1],[1,2],[-1,1],[-1,-1],[-2,-2],[-1,1],[-2,-1],[-2,4],[-1,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-2,-1],[-2,2],[-1,3],[3,1],[0,1],[2,0],[1,1],[3,0],[5,-2],[2,0],[-1,0],[-1,0],[-2,1],[-1,1],[2,-1],[0,2],[-2,1],[-1,2],[-1,1],[1,0],[2,-1],[1,0],[0,1],[-3,1],[1,-1],[0,1],[-2,0],[0,1],[-1,1],[0,1],[0,2],[2,2],[1,1],[7,-3],[6,-5],[0,-1],[0,-2],[1,-1],[0,1],[0,1],[0,2],[1,0],[0,-1],[2,-1],[1,-1],[1,-1],[3,1],[2,0],[3,0],[1,1],[1,1],[0,1],[1,1],[1,0],[3,-1],[3,0],[1,2],[-1,1],[-1,3],[0,3],[4,4],[-1,0],[-1,-2],[-1,-1],[-1,1],[0,1],[0,1],[1,2],[0,4],[0,3],[2,0],[1,1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-2],[1,0],[3,1],[-1,1],[1,0],[1,0],[1,0],[4,1],[-4,-1],[-1,1],[-2,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,2],[-2,0],[-1,1],[-1,-1],[-2,1],[0,1],[0,1],[0,1],[2,0],[1,1],[1,1],[1,2],[-2,-1],[-1,-2],[0,-1],[-1,0],[-2,1],[-1,0],[-3,-1],[-1,2],[1,2],[1,1],[1,1],[0,1],[2,0],[0,1],[-2,-1],[-1,0],[0,-2],[-1,0],[-1,-2],[-1,1],[-3,-2],[-2,-1],[-2,-1],[-2,0],[2,-1],[1,-3],[0,-2],[-1,0],[-2,-2],[-2,0],[0,1],[-2,0],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-2,1],[0,1],[0,-1],[1,1],[-1,0],[-1,0],[1,-2],[0,-1],[-1,0],[-1,1],[-2,1],[2,-2],[1,-2],[-1,0],[-3,0],[-3,-1],[-1,-1],[-1,-1],[-1,1],[0,1],[-3,1],[-1,1],[0,1],[-2,3],[0,1],[1,0],[-7,3],[-1,1],[0,1],[0,1],[1,0],[3,-1],[3,-1],[0,-1],[1,-1],[3,-2],[2,0],[-3,2],[-1,1],[1,1],[4,-3],[-3,2],[-1,1],[-2,2],[-3,1],[-4,2],[-2,1],[1,0],[1,0],[4,-1],[-4,2],[5,-3],[0,1],[-2,2],[-1,1],[3,-1],[1,-1],[1,1],[-3,0],[-2,1],[-1,0],[-3,0],[-1,1],[-3,1],[-1,2],[0,1],[-1,0],[-1,1],[-3,1],[1,0],[-1,-1],[-2,1],[-1,1],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[3,-4],[4,-2],[-3,2],[0,1],[1,0],[0,-1],[2,-1],[1,0],[-2,0],[0,1],[2,0],[1,0],[1,-1],[2,-1],[4,-2],[1,0],[-1,0],[1,1],[2,-1],[0,-1],[1,0],[1,0],[2,0],[3,-3],[-1,-1],[-1,0],[1,-1],[1,-2],[0,-1],[2,-1],[2,-1],[-3,2],[0,1],[-1,1],[6,-3],[2,-1],[1,0],[-3,2],[-4,3],[1,1],[2,0],[2,-2],[3,-2],[0,1],[0,1],[-2,1],[-1,1],[-2,1],[2,0],[1,1],[-3,-1],[-2,2],[-1,1],[1,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-4,1],[0,1],[0,1],[1,1],[1,1],[2,0],[1,1],[0,1],[3,0],[0,1],[-1,1],[0,1],[0,1],[1,1],[4,0],[5,1],[2,0],[0,-1],[2,0],[1,1],[2,-1],[3,1],[-2,1],[-5,-1],[-2,1],[0,1],[1,1],[2,1],[1,1],[-1,0],[-4,-3],[-1,-1],[-4,-1],[-2,1],[-3,-1],[-1,-1],[0,-2],[-1,-2],[-2,1],[0,-1],[0,-1],[-1,-1],[-1,1],[0,1],[-2,1],[-1,0],[-1,-1],[2,0],[1,-1],[0,-1],[-1,-2],[-1,1],[-1,2],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,2],[1,-1],[1,1],[-2,0],[-1,-2],[0,-1],[-1,-2],[-1,1],[0,1],[1,0],[0,1],[-1,0],[-2,0],[0,-1],[-1,1],[-2,-2],[-2,1],[-2,1],[-1,2],[-1,3],[-1,1],[0,1],[0,1],[-1,1],[-2,3],[0,1],[1,0],[1,0],[4,-1],[1,0],[4,0],[-1,-3],[0,-2],[0,-1],[0,-2],[1,0],[0,1],[-1,1],[1,1],[0,2],[0,1],[0,2],[0,1],[4,0],[1,0],[3,0],[7,2],[-2,0],[-4,-1],[-4,-1],[0,1],[-1,1],[1,1],[0,2],[-1,-1],[-1,-1],[0,-1],[0,-1],[-4,-1],[-1,1],[-3,1],[-2,0],[-1,1],[-1,2],[0,1],[1,1],[1,0],[-2,0],[2,3],[4,2],[4,-1],[0,1],[1,1],[1,-1],[2,-1],[0,1],[1,0],[3,-1],[5,0],[0,-1],[0,-1],[2,-1],[1,0],[-1,0],[0,-1],[4,0],[3,-1],[2,1],[1,0],[2,0],[0,-1],[1,-1],[0,-2],[0,-1],[1,1],[0,2],[1,1],[-1,3],[1,1],[1,0],[0,1],[1,0],[4,0],[3,2],[2,-2],[3,-1],[1,0],[0,1],[-1,0],[-4,2],[2,1],[2,1],[2,-1],[2,1],[2,-1],[3,2],[2,1],[1,0],[1,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[2,1],[1,1],[0,1],[3,0],[0,1],[-2,1],[3,1],[0,1],[3,0],[5,0],[1,-1],[3,-1],[0,-1],[2,1],[1,0],[1,-1],[3,1],[1,0],[1,0],[1,1],[2,0],[1,-1],[3,-1],[5,0],[2,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,-2],[-2,-1],[1,0],[2,0],[1,1],[2,2],[6,0],[0,-1],[-1,-2],[-2,-1],[1,-1],[-3,-1],[0,-1],[1,0],[0,1],[2,0],[1,-1],[1,1],[-1,1],[1,2],[2,2],[0,2],[1,0],[5,1],[2,2],[3,0],[1,-1],[1,0],[0,1],[0,1],[1,1],[2,3],[0,1],[0,2],[1,0],[3,-2],[2,-1],[5,0],[2,-1],[6,1],[2,-2],[0,-2],[0,-1],[0,-2],[3,0],[1,-1],[1,0],[0,1],[1,0],[3,0],[2,-2],[0,-1],[0,-2],[0,-1],[2,-1],[0,-2],[-1,-2],[-7,-3],[0,-1],[-1,0],[-4,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[2,1],[1,2],[0,1],[0,1],[5,2],[3,2],[2,0],[2,1],[2,1],[1,0],[1,-1],[3,-2],[4,-2],[0,-2],[-2,-4],[-1,-2],[2,0],[1,2],[0,1],[2,1],[1,1],[0,1],[1,1],[-1,1],[0,1],[-5,1],[-2,2],[-2,0],[-1,3],[-1,1],[-1,2],[-1,2],[1,1],[-1,1],[-1,2],[2,2],[2,1],[2,-1],[4,1],[2,1],[3,-1],[1,1],[2,1],[0,1],[1,1],[2,-1],[4,-2],[1,0],[2,0],[2,0],[1,-1],[2,-1],[3,0],[2,0],[-1,1],[-3,0],[0,2],[-1,1],[-3,1],[3,0],[4,3],[2,1],[3,1],[8,0],[3,1],[0,1],[0,1],[3,0],[1,0],[1,1],[-1,0],[-2,0],[-2,1],[-1,-1],[-1,-2],[-1,0],[-6,-1],[-3,1],[-2,-1],[-5,-1],[-3,1],[0,1],[-1,2],[0,4],[-1,0],[-1,1],[-2,1],[-2,1],[4,2],[2,1],[1,1],[0,2],[2,3],[2,2],[2,0],[2,1],[0,1],[1,2],[2,1],[2,1],[2,1],[2,1],[1,1],[-1,1],[-1,0],[-1,0],[0,-1],[-3,-2],[-1,-1],[-6,-2],[0,-1],[-1,-2],[-5,-2],[-1,-1],[-3,1],[-4,1],[0,-1],[2,-1],[3,-1],[0,-2],[0,-1],[-2,-2],[-6,-3],[2,-1],[1,-1],[4,-1],[1,-2],[0,-2],[0,-2],[1,-2],[2,-1],[1,0],[-2,-2],[-3,-1],[-6,1],[0,1],[-2,1],[1,-1],[-5,-1],[-1,-1],[0,-2],[-2,0],[-6,-1],[-3,0],[-4,-1],[0,-1],[0,-1],[-3,1],[-2,0],[0,1],[0,1],[-1,1],[3,1],[3,0],[3,3],[0,1],[1,0],[2,1],[1,0],[7,0],[1,1],[-2,0],[-3,1],[1,2],[1,2],[2,0],[1,0],[0,1],[-1,1],[0,-1],[-3,0],[0,-1],[-1,0],[0,-1],[0,-1],[-2,-2],[-3,-1],[0,-1],[-3,0],[0,-1],[-2,-2],[0,-1],[-6,0],[-3,2],[-2,0],[-2,1],[-11,0],[-1,1],[-6,2],[-3,-1],[0,2],[-1,0],[1,2],[3,1],[2,2],[1,0],[1,1],[1,1],[-1,1],[3,4],[1,0],[2,2],[0,1],[1,3],[0,3],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-2],[-3,-2],[-2,-2],[-1,-2],[0,-1],[-2,-1],[-2,-2],[-3,-1],[0,2],[0,3],[-1,0],[-1,0],[0,-3],[-2,0],[-1,1],[-1,0],[4,-2],[1,-2],[-1,-1],[2,-2],[-5,1],[-2,1],[1,-2],[3,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-2],[-6,-1],[0,-1],[0,-1],[-4,0],[-1,0],[-4,0],[-1,0],[-1,1],[-1,1],[-2,0],[-1,1],[-2,-1],[-3,3],[-3,1],[2,2],[-2,-1],[-1,-2],[-5,-1],[-1,1],[-5,-1],[-4,1],[1,2],[4,1],[1,2],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-3,-1],[-2,-2],[-2,0],[-3,-1],[-1,1],[-4,-1],[0,1],[-1,0],[-2,-1],[-1,1],[0,2],[1,2],[-1,0],[-2,-1],[1,-2],[0,-2],[-7,1],[0,-1],[0,-1],[-2,-1],[-4,1],[-1,-1],[-1,0],[-2,0],[-5,-3],[-2,-1],[-1,0],[-6,-3],[-4,-1],[0,1],[-1,2],[-3,1],[0,2],[1,1],[-1,1],[-1,-1],[0,-1],[-1,0],[-3,-1],[-1,0],[-1,-1],[-2,0],[-1,1],[0,1],[0,1],[-2,0],[0,2],[1,-1],[2,1],[2,-2],[2,1],[-3,1],[-3,1],[1,0],[-1,0],[-2,0],[-1,-1],[1,0],[-1,0],[-6,2],[-2,0],[-1,0],[0,1],[2,2],[1,1],[3,0],[4,-1],[2,-1],[4,-2],[3,1],[-3,1],[-1,1],[3,-1],[1,-1],[1,1],[-11,4],[-10,0],[-4,0],[2,1],[-1,0],[1,1],[5,0],[0,-1],[1,1],[0,2],[-1,-1],[0,-1],[-1,0],[-5,0],[-1,1],[2,1],[0,1],[-2,0],[0,-1],[-1,-1],[-1,0],[-3,-1],[0,1],[1,0],[-1,1],[1,0],[1,0],[1,-1],[-1,1],[0,1],[0,2],[5,0],[3,1],[-2,-1],[-1,0],[3,1],[-1,1],[4,-1],[2,0],[2,0],[-2,0],[0,1],[1,1],[1,0],[0,-1],[1,0],[2,0],[2,0],[1,0],[-2,1],[1,1],[1,1],[-2,0],[0,1],[2,0],[1,1],[4,-1],[1,0],[3,-2],[1,-1],[1,0],[-2,1],[0,1],[-2,0],[-2,2],[2,1],[0,-1],[4,0],[1,1],[3,1],[2,1],[3,-1],[1,0],[3,0],[2,0],[1,0],[1,0],[0,-1],[7,1],[2,-1],[1,0],[0,1],[-1,0],[-1,1],[-2,0],[-1,-1],[-4,0],[-4,1],[-4,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,-1],[-7,0],[-3,-1],[-4,0],[-1,-1],[-2,1],[-1,-1],[0,-1],[-1,-1],[-5,-1],[-1,0],[-1,0],[-1,0],[0,1],[3,1],[1,2],[-1,1],[0,-3],[-1,0],[-2,0],[-1,0],[-2,2],[-1,1],[0,1],[1,1],[2,1],[1,0],[2,0],[0,-1],[0,-1],[1,0],[0,3],[5,2],[-1,0],[-2,0],[-4,0],[-3,-1],[-3,-1],[-1,0],[-2,1],[1,1],[1,0],[4,1],[1,1],[2,1],[8,0],[5,0],[0,2],[0,1],[1,0],[2,-1],[-1,0],[7,-1],[3,0],[-5,1],[8,0],[1,0],[-1,0],[1,-1],[1,-1],[1,0],[1,0],[-1,-1],[5,0],[7,0],[-3,0],[0,1],[2,0],[1,0],[3,0],[3,2],[2,1],[1,0],[0,1],[1,0],[3,0],[1,-1],[2,0],[1,0],[0,-2],[2,0],[2,-1],[0,1],[-3,1],[0,1],[1,1],[-4,1],[-4,0],[-1,1],[-7,-3],[0,-1],[-1,0],[-5,-1],[-1,0],[-2,-1],[-3,0],[-2,1],[-2,0],[0,1],[1,0],[2,-1],[0,1],[0,1],[2,0],[0,1],[-2,0],[-1,0],[-8,0],[-6,1],[-3,0],[-1,0],[-3,1],[1,0],[-4,0],[-1,1],[2,0],[-2,1],[1,0],[0,1],[0,1],[0,1],[3,0],[3,-2],[2,0],[2,0],[0,1],[-2,1],[4,-1],[2,1],[4,-1],[1,0],[-3,1],[-1,0],[0,1],[-2,-1],[-6,2],[2,0],[-1,0],[-4,1],[-2,0],[-2,1],[3,1],[2,-1],[1,0],[-1,1],[5,0],[9,-1],[-3,-1],[-1,0],[-2,0],[1,-1],[2,0],[-2,0],[9,0],[1,0],[-2,0],[2,2],[-4,0],[1,0],[-3,1],[-4,1],[-3,0],[-6,0],[-8,-1],[-7,-1],[-2,0],[0,-1],[1,0],[-3,-1],[-1,1],[0,1],[1,1],[4,0],[0,-1],[0,1],[2,0],[-2,0],[2,1],[4,0],[1,-1],[3,1],[2,1],[1,-1],[5,1],[4,1],[4,0],[2,0],[2,2],[-2,-1],[-1,0],[-1,0],[-3,0],[0,-1],[-2,1],[-2,-2],[-2,1],[-3,0],[1,0],[0,1],[-7,-1],[-5,1],[-6,-1],[-3,0],[2,2],[-3,2],[0,1],[0,2],[1,0],[-1,2],[0,1],[3,-1],[0,1],[-2,1],[0,1],[5,2],[3,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,3],[0,1],[2,-1],[2,-1],[1,0],[3,0],[1,0],[-3,1],[-3,1],[-1,0],[1,1],[1,1],[2,0],[1,0],[2,0],[2,0],[0,1],[2,-1],[2,1],[-4,1],[-5,-1],[-3,0],[-2,-1],[-1,0],[-2,0],[0,2],[5,3],[2,1],[3,-1],[2,1],[6,1],[1,1],[-2,0],[2,1],[5,0],[1,0],[-8,2],[3,0],[-2,0],[0,1],[2,1],[1,1],[3,2],[5,1],[3,-1],[5,0],[1,-1],[-1,0],[1,-1],[5,1],[4,-1],[5,-1],[2,-2],[4,-1],[-9,-1],[-1,-1],[1,0],[0,-1],[-3,-1],[2,0],[1,1],[1,1],[3,0],[5,1],[2,0],[2,0],[2,1],[5,1],[2,-1],[3,0],[1,-1],[-1,-2],[-1,-3],[-2,-4],[-2,-2],[0,-1],[1,1],[1,1],[1,0],[1,2],[1,1],[1,4],[1,2],[1,1],[2,0],[2,-2],[4,-3],[1,-2],[5,-2],[3,2],[-1,0],[-2,1],[-2,2],[-6,3],[0,1],[2,-1],[2,-1],[5,1],[5,1],[2,0],[2,0],[4,-1],[3,-2],[9,-1],[4,0],[3,2],[3,2],[1,1],[-3,1],[0,1],[5,0],[4,0],[6,-1],[3,-1],[0,-1],[1,-1],[0,1],[1,3],[2,-1],[0,1],[-1,0],[-3,0],[-3,1],[-4,0],[-1,2],[1,0],[-1,0],[-1,-1],[-1,0],[-4,0],[-6,-1],[-2,-2],[-1,-3],[-8,0],[-4,1],[-2,1],[-3,1],[-5,0],[-2,0],[-8,-2],[-2,1],[-3,1],[-1,1],[-3,1],[-6,-1],[-4,1],[-2,0],[-3,-1],[-2,-1],[-2,-1],[0,1],[-1,1],[-2,0],[-1,1],[-2,1],[6,1],[4,0],[4,0],[6,0],[1,1],[-1,0],[-5,1],[-5,-1],[-1,1],[-3,0],[-1,0],[-9,-1],[-5,1],[-2,1],[-7,0],[-2,1],[-2,-1],[-2,0],[1,1],[-2,0],[-5,-1],[1,0],[-3,-1],[-3,-1],[-2,1],[-4,-1],[-2,1],[-2,-2],[-2,0],[-1,0],[-2,1],[3,0],[1,0],[0,1],[-4,0],[-2,0],[1,2],[1,0],[1,2],[0,2],[2,1],[2,0],[-1,0],[1,-3],[1,-2],[1,0],[0,1],[-1,1],[-1,2],[3,0],[1,1],[2,-3],[1,-1],[1,1],[0,1],[-2,2],[2,1],[2,-2],[1,3],[0,2],[1,1],[1,0],[-1,0],[1,-1],[3,1],[1,-1],[1,-1],[1,1],[-1,1],[-2,1],[-4,0],[-1,0],[1,1],[1,0],[-1,1],[-2,2],[-5,1],[-1,1],[-1,1],[-10,0],[0,2],[0,1],[3,-1],[1,1],[-2,2],[-3,0],[-1,2],[2,0],[-1,1],[-1,1],[0,1],[2,1],[2,0],[0,-1],[1,-1],[2,1],[0,1],[0,1],[1,0],[2,-1],[1,0],[0,-1],[1,-1],[1,-1],[3,0],[1,-1],[3,0],[0,-1],[-1,0],[-2,-1],[2,-1],[-1,-1],[1,-1],[3,-1],[0,-1],[3,-1],[0,-1],[1,-1],[2,0],[1,-1],[1,-1],[2,0],[0,-2],[0,-1],[0,-1],[-2,-2],[3,1],[1,1],[1,1],[2,2],[-1,3],[2,0],[1,-1],[1,0],[2,1],[1,-2],[1,-1],[0,1],[1,1],[-1,1],[-1,0],[-3,1],[0,1],[-7,1],[-2,0],[-2,0],[-1,1],[-2,2],[1,1],[1,1],[1,2],[0,1],[4,2],[7,-3],[3,0],[3,0],[3,-3],[0,-1],[0,-1],[4,-4],[1,0],[1,1],[-5,3],[1,1],[-2,5],[4,-1],[1,1],[3,0],[2,1],[0,1],[2,0],[3,1],[1,-1],[2,0],[2,-1],[3,-3],[-1,-2],[0,-1],[1,-1],[-1,-1],[0,-1],[-2,-1],[0,-2],[-1,-1],[-3,-3],[-2,-2],[0,-1],[0,-1],[1,0],[3,4],[2,1],[2,3],[3,3],[0,1],[0,1],[0,1],[-1,0],[2,1],[2,0],[2,-2],[0,-1],[4,-1],[1,-1],[-2,-2],[0,-1],[-1,0],[-2,-2],[2,0],[0,2],[1,0],[3,1],[4,0],[2,1],[3,-1],[1,0],[1,0],[2,-1],[1,0],[0,1],[0,1],[2,-2],[1,-1],[1,0],[0,1],[-1,1],[-2,1],[-3,-1],[0,1],[-3,0],[-1,1],[-2,1],[-2,-1],[-1,0],[0,1],[-2,1],[-2,1],[-1,1],[-1,1],[-2,2],[-3,1],[-2,2],[-3,2],[1,0],[-2,1],[-1,0],[1,1],[2,0],[0,1],[2,0],[0,-2],[1,-1],[1,-1],[3,1],[3,-2],[3,0],[1,1],[-1,1],[-5,1],[-4,0],[0,1],[-1,2],[-1,1],[-2,0],[2,2],[2,0],[6,3],[2,2],[4,1],[2,1],[2,1],[2,1],[1,1],[3,0],[5,1],[1,0],[1,0],[0,-1],[0,-1],[2,-2],[2,-2],[1,-2],[0,-2],[1,-1],[0,-1],[3,-1],[2,-3],[0,-1],[-1,0],[0,-1],[2,0],[0,-1],[4,-2],[1,-2],[2,-1],[-1,-2],[-2,-1],[0,-1],[0,-1],[1,1],[1,1],[2,0],[1,2],[-1,2],[-2,2],[-1,2],[3,1],[5,-2],[0,1],[-1,1],[-4,1],[-5,-1],[0,1],[-1,2],[-2,2],[0,1],[-2,2],[-1,2],[-2,2],[0,2],[-1,1],[-2,2],[2,1],[-2,1],[4,2],[3,0],[1,0],[4,-1],[1,0],[0,-2],[1,-1],[1,-1],[-1,-1],[1,-1],[1,0],[-1,2],[-1,2],[0,1],[1,1],[0,1],[-3,1],[5,2],[10,3],[2,-1],[0,-1],[3,-1],[3,1],[5,-1],[3,-2],[-3,-3],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[4,-2],[0,-2],[2,0],[2,0],[0,-1],[0,-2],[0,-3],[0,-3],[1,-2],[-1,-1],[-3,-2],[-3,-2],[0,-1],[-1,-2],[-5,-3],[1,0],[1,0],[1,1],[3,1],[7,-2],[5,1],[4,2],[4,0],[2,-2],[0,1],[-1,1],[-4,1],[-2,0],[-3,-2],[-3,-1],[-2,0],[-3,2],[-2,0],[2,3],[3,2],[1,1],[1,2],[-1,2],[0,1],[1,1],[-1,2],[0,2],[0,1],[1,1],[5,0],[2,0],[3,-2],[4,0],[1,-1],[1,1],[0,1],[2,2],[4,-1],[2,1],[0,-1],[3,-1],[1,-2],[2,0],[0,-1],[1,-1],[1,0],[0,2],[-2,1],[-4,3],[-1,1],[-4,0],[-1,-1],[-2,1],[-1,0],[-3,-1],[-1,0],[-2,0],[-3,1],[-4,0],[-1,1],[-2,0],[-4,0],[-2,1],[-2,2],[0,1],[-2,2],[0,1],[4,1],[-2,1],[-1,1],[0,1],[0,1],[-1,1],[-2,1],[-2,1],[-1,1],[-1,1],[-8,0],[3,1],[0,1],[-9,-1],[0,1],[1,0],[1,1],[-2,0],[-3,-3],[-3,0],[-6,-2],[-2,-1],[-4,-1],[-5,0],[-3,-1],[0,1],[1,0],[-2,1],[-3,0],[1,1],[-1,1],[1,0],[-4,1],[-4,-1],[-1,1],[-2,0],[1,1],[10,0],[1,0],[1,1],[2,0],[2,1],[2,0],[2,1],[2,0],[1,0],[-1,0],[2,1],[0,-1],[2,-1],[2,1],[2,0],[1,0],[0,-1],[2,1],[0,-1],[1,-1],[2,0],[1,0],[-1,1],[4,0],[-2,0],[2,1],[-1,0],[-8,0],[1,1],[-1,0],[2,1],[-2,0],[-5,0],[-7,-1],[5,2],[2,0],[3,0],[-1,1],[-2,1],[-8,-2],[-6,1],[-10,-1],[2,2],[-1,3],[-1,1],[3,2],[1,0],[2,1],[5,-1],[4,1],[1,0],[0,-2],[0,-2],[0,-1],[1,-1],[0,-1],[1,4],[-1,2],[0,1],[5,0],[4,1],[0,-3],[3,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,2],[0,2],[0,1],[0,1],[0,2],[2,0],[0,-1],[1,-1],[0,2],[2,1],[6,1],[3,0],[2,0],[0,-1],[7,-4],[0,-2],[1,-1],[1,1],[0,1],[-1,1],[1,1],[1,0],[0,1],[-2,1],[-1,1],[0,1],[8,1],[0,-1],[4,1],[3,-1],[1,-2],[-1,-1],[-1,1],[-4,-1],[0,-1],[6,1],[0,-1],[1,-3],[2,-1],[0,-2],[0,-1],[0,-2],[1,-1],[1,2],[0,1],[0,2],[0,1],[-2,2],[0,1],[2,1],[-1,1],[1,1],[1,0],[1,-1],[2,0],[1,0],[2,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[4,-1],[0,1],[2,-1],[1,0],[0,-1],[0,-1],[1,-1],[3,-1],[2,-2],[0,-1],[1,-1],[2,1],[0,1],[4,-1],[0,-1],[2,-3],[1,0],[1,0],[0,1],[-1,2],[1,1],[8,1],[0,1],[0,1],[2,0],[5,0],[3,1],[-2,0],[-3,1],[-15,-3],[-3,1],[-3,0],[-1,1],[1,1],[-3,0],[-2,1],[-2,4],[6,1],[2,0],[1,-1],[1,-2],[0,-2],[0,-1],[2,-1],[1,1],[0,1],[0,1],[0,2],[-3,1],[-1,2],[0,1],[4,2],[5,0],[1,2],[6,0],[2,1],[2,1],[11,2],[4,0],[1,-1],[1,0],[-1,2],[4,0],[3,0],[3,-2],[3,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[-1,2],[-1,1],[-2,1],[1,0],[-1,1],[-2,1],[-2,0],[-3,1],[0,1],[4,1],[0,1],[-9,-2],[0,1],[-2,0],[-5,-1],[-18,-4],[-14,-4],[-4,0],[-1,1],[-2,-1],[-5,0],[0,1],[2,1],[2,0],[1,0],[1,1],[-3,1],[2,1],[-4,0],[0,1],[14,3],[7,1],[5,0],[4,1],[-5,-1],[-1,1],[-1,1],[-7,-1],[-5,-1],[-4,-1],[-12,-2],[-4,-1],[-8,-1],[-1,0],[-6,0],[-6,-1],[-2,0],[-2,1],[2,1],[1,1],[-1,0],[1,1],[-1,1],[-1,1],[1,1],[-1,0],[2,2],[2,1],[-1,0],[1,0],[2,0],[2,2],[2,0],[2,-1],[-3,0],[-1,-1],[1,0],[2,0],[4,0],[1,-1],[1,0],[4,0],[1,0],[-2,1],[-3,1],[3,1],[-2,0],[-3,1],[2,0],[0,1],[-4,0],[-6,-2],[-2,0],[0,1],[-3,-1],[0,1],[1,0],[0,1],[0,1],[-2,0],[1,1],[-3,0],[0,1],[1,1],[0,1],[-3,-1],[3,1],[-4,0],[-1,0],[-1,1],[7,3],[-1,0],[1,0],[2,1],[1,1],[1,0],[0,1],[2,1],[2,-1],[1,-1],[1,0],[0,3],[-1,0],[3,0],[2,0],[0,1],[-1,0],[1,0],[3,0],[5,1],[4,1],[1,-1],[-4,-1],[1,-1],[1,0],[2,0],[-3,0],[-1,1],[4,1],[1,-1],[0,-1],[0,-1],[2,0],[2,-1],[1,0],[3,-1],[0,-1],[2,-1],[1,0],[1,-2],[-1,0],[0,-1],[-2,0],[0,-1],[2,1],[2,-1],[1,1],[4,0],[2,2],[3,0],[1,1],[-1,0],[8,3],[4,0],[0,1],[1,-1],[1,0],[3,0],[-7,-4],[-3,-3],[1,0],[3,1],[9,4],[3,0],[0,1],[2,1],[5,0],[2,1],[4,-1],[1,0],[0,-1],[1,0],[1,0],[1,-2],[3,-1],[0,-1],[1,0],[-1,-1],[0,-1],[-2,-1],[2,0],[0,-1],[1,-2],[0,-1],[0,-1],[1,0],[1,-2],[3,-2],[0,-1],[2,0],[5,-2],[4,1],[0,-1],[2,-2],[2,0],[4,-2],[1,-1],[0,-1],[2,0],[0,1],[2,0],[4,-2],[0,-2],[1,-2],[1,-1],[0,1],[2,1],[0,1],[0,2],[-1,2],[-9,3],[1,0],[-1,0],[-4,2],[-4,1],[-2,2],[-3,0],[-1,1],[-2,-1],[-2,2],[-3,0],[-1,3],[-2,0],[1,2],[-1,1],[0,1],[4,2],[-4,0],[0,1],[0,2],[-1,1],[-4,2],[-2,1],[-2,1],[-2,2],[-2,0],[-1,1],[2,1],[-1,1],[-1,1],[-2,0],[-1,-2],[1,0],[2,1],[1,-1],[-1,0],[-2,-1],[-1,-1],[-6,-1],[1,4],[2,1],[2,1],[2,-1],[1,1],[1,2],[-1,0],[-1,1],[1,1],[9,3],[2,-1],[1,-1],[2,-1],[0,-1],[-1,-1],[0,-2],[-2,0],[2,0],[0,-1],[2,-1],[2,0],[1,-2],[5,-1],[1,-1],[-1,-1],[0,-1],[2,1],[5,-2],[0,-1],[-1,-1],[-3,-2],[3,-2],[1,-1],[1,-1],[-2,-1],[-2,-2],[2,0],[-1,-1],[0,1],[2,1],[3,2],[4,-2],[2,-2],[2,-1],[2,0],[1,-1],[1,0],[1,1],[-1,2],[-5,1],[-2,2],[-1,1],[3,-2],[3,0],[3,-2],[6,0],[0,-1],[2,-2],[2,-1],[2,0],[2,-1],[1,0],[0,1],[-6,2],[0,1],[0,1],[-1,2],[-1,0],[-5,0],[-1,0],[-1,1],[-5,2],[0,1],[0,1],[-2,1],[-1,1],[5,2],[2,-1],[13,2],[-1,2],[-2,-1],[-2,1],[-3,-1],[-5,-2],[-3,1],[0,1],[2,1],[8,3],[-3,0],[-12,-5],[-4,-1],[0,1],[-2,1],[-2,1],[2,2],[8,0],[5,1],[-2,0],[-8,-1],[0,1],[-3,0],[-3,-1],[-4,1],[-3,1],[-1,1],[2,1],[0,2],[-4,2],[-1,0],[-1,2],[-1,1],[0,1],[4,2],[2,0],[2,-2],[1,-1],[2,-1],[1,0],[1,-1],[-2,-1],[0,-1],[5,1],[-2,0],[1,1],[-1,2],[-4,1],[-2,1],[-1,1],[2,1],[4,0],[2,0],[1,-1],[2,-1],[5,1],[3,-1],[3,1],[1,-1],[3,1],[2,-2],[2,0],[1,-3],[1,0],[1,1],[0,1],[0,1],[-2,0],[-4,1],[0,1],[0,1],[-1,1],[2,1],[13,2],[2,0],[1,0],[5,0],[2,1],[2,0],[6,0],[4,1],[-13,0],[-8,-1],[-4,0],[-3,-1],[-3,0],[-1,1],[1,1],[-1,0],[-3,3],[-1,2],[-3,0],[0,1],[0,2],[-3,0],[1,1],[3,0],[0,1],[2,1],[7,1],[2,0],[1,1],[2,0],[6,2],[6,0],[0,1],[-8,-1],[-1,1],[-3,-1],[1,1],[-1,1],[-2,1],[-2,2],[0,1],[0,1],[2,1],[3,0],[2,-1],[0,1],[2,1],[9,0],[1,0],[0,-1],[0,-1],[1,-2],[1,0],[1,0],[-3,2],[1,1],[1,-1],[1,0],[0,1],[2,1],[0,-1],[3,-1],[-1,0],[5,0],[-1,1],[-1,0],[-2,0],[2,1],[-2,1],[2,1],[0,2],[1,0],[1,0],[1,-1],[-1,-1],[3,0],[3,0],[0,-1],[0,-1],[2,0],[-2,0],[1,-1],[2,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[2,0],[0,-1],[-3,-1],[-2,-1],[0,-1],[1,0],[1,0],[-2,-1],[-3,-3],[1,-1],[0,-1],[2,0],[1,1],[0,1],[1,1],[3,1],[2,1],[0,1],[1,-1],[2,0],[1,0],[0,1],[-1,0],[2,0],[4,2],[2,0],[-1,0],[0,-1],[7,2],[7,2],[1,1],[-10,-3],[-11,0],[-1,0],[0,1],[0,1],[-2,-1],[-1,2],[-2,2],[1,1],[2,1],[1,-1],[1,1],[2,0],[1,1],[1,0],[0,-1],[2,1],[4,0],[1,0],[3,1],[2,1],[1,0],[2,0],[3,0],[2,2],[-3,0],[-7,-2],[-1,0],[-4,-1],[0,1],[0,1],[-2,1],[-2,1],[-2,0],[1,-3],[3,0],[1,0],[0,-1],[-2,-1],[-2,1],[-1,0],[-3,-1],[-1,1],[-4,1],[1,0],[-2,2],[-1,1],[2,0],[2,1],[1,1],[0,1],[2,0],[1,0],[0,-2],[0,-1],[1,0],[1,1],[0,1],[-1,0],[-1,1],[4,1],[0,-1],[1,0],[1,0],[1,2],[2,1],[2,1],[1,0],[2,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[1,0],[1,0],[-1,2],[0,1],[2,1],[1,1],[0,1],[1,1],[1,0],[1,1],[0,-1],[2,0],[3,0],[1,0],[1,-2],[1,-1],[0,-1],[-1,4],[0,2],[-2,0],[-3,-1],[-1,0],[2,2],[2,0],[1,0],[-1,0],[-2,0],[6,3],[4,0],[5,2],[4,1],[1,0],[-1,-3],[-3,-1],[3,0],[1,-1],[0,-1],[0,-1],[2,-1],[1,-1],[0,-1],[2,0],[1,-2],[0,-1],[-1,-1],[-1,0],[2,-2],[1,0],[0,-2],[2,0],[1,-1],[2,0],[0,-1],[1,0],[1,-1],[2,-1],[2,0],[0,-3],[-3,-4],[-2,-3],[-8,-4],[1,0],[1,0],[2,0],[3,1],[6,3],[2,-1],[3,1],[2,-1],[2,-2],[2,0],[4,-1],[1,-1],[4,2],[0,2],[-5,0],[-2,1],[-2,0],[-1,2],[-2,0],[-1,2],[1,1],[0,1],[2,1],[2,1],[2,0],[1,1],[2,1],[1,0],[0,1],[10,0],[3,-1],[1,0],[0,-1],[2,-1],[1,1],[1,1],[2,0],[2,1],[1,0],[1,-2],[1,1],[2,-1],[4,-1],[2,1],[2,1],[1,-1],[2,1],[7,-1],[3,0],[1,-1],[1,-1],[1,-1],[1,1],[0,1],[0,1],[4,0],[3,1],[2,0],[0,2],[-1,1],[-2,1],[-3,-1],[-3,0],[-2,1],[-2,2],[0,1],[0,1],[1,2],[10,1],[4,1],[0,1],[-2,-1],[1,1],[-1,0],[-1,0],[-4,0],[2,1],[-2,0],[2,1],[2,0],[1,0],[1,0],[-1,1],[-2,0],[2,1],[4,0],[-4,0],[2,1],[-3,-1],[0,1],[1,1],[-1,-1],[-5,-2],[-3,-1],[1,0],[-2,-1],[-2,-1],[-2,0],[0,1],[-1,0],[-3,-2],[-1,-1],[-3,-1],[-2,1],[1,0],[1,1],[-2,2],[-4,-1],[2,1],[2,1],[-1,0],[1,0],[1,0],[-1,0],[0,-1],[2,-2],[1,0],[1,2],[0,1],[2,1],[1,2],[6,3],[2,-1],[3,1],[1,0],[0,1],[2,1],[1,2],[5,3],[4,0],[1,1],[-1,0],[1,0],[3,0],[0,-2],[3,1],[3,0],[3,0],[0,1],[1,0],[2,0],[2,1],[0,1],[0,1],[0,1],[1,1],[1,0],[3,1],[2,-2],[-5,-2],[1,-1],[2,1],[1,0],[0,1],[2,1],[2,1],[1,0],[0,1],[-1,0],[4,0],[1,1],[3,-1],[1,1],[0,1],[0,1],[1,0],[1,1],[-2,1],[-2,0],[-1,0],[3,1],[0,1],[-2,0],[0,1],[-1,0],[-1,0],[-2,-1],[-4,0],[-1,2],[1,0],[-2,2],[3,-1],[1,0],[3,2],[-2,1],[1,2],[1,1],[1,3],[-1,0],[-1,-1],[-2,0],[0,-1],[-2,-1],[1,-1],[0,-1],[-2,-2],[0,-1],[-3,0],[0,-1],[-2,0],[0,1],[-1,0],[-2,-1],[-2,-1],[-1,-1],[-7,-1],[-1,1],[-1,2],[0,1],[0,1],[1,1],[4,2],[1,0],[-1,-1],[4,1],[1,1],[1,0],[1,1],[0,1],[4,2],[0,1],[3,1],[2,-1],[3,1],[1,0],[1,-1],[0,1],[1,1],[1,0],[0,-1],[1,0],[1,1],[6,2],[-2,2],[-1,0],[1,-1],[-1,0],[-2,0],[1,1],[-1,1],[-5,-1],[-1,0],[0,1],[1,1],[-1,0],[-4,-1],[0,1],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[0,2],[0,2],[3,1],[1,0],[6,3],[1,0],[2,0],[0,1],[-6,0],[0,1],[-1,-1],[1,0],[-1,-1],[2,0],[-6,-3],[-3,0],[-1,-1],[0,-2],[1,-1],[0,-2],[-1,-1],[-2,-1],[-2,-1],[-5,-1],[-7,-3],[-1,-1],[-2,0],[-5,-4],[-4,-2],[-16,-5],[-7,-4],[-1,0],[0,-1],[3,1],[2,0],[-1,1],[2,0],[2,1],[-1,1],[2,1],[3,0],[7,1],[3,1],[0,1],[2,1],[5,2],[0,1],[2,0],[1,-2],[6,-1],[0,-1],[0,-1],[2,-2],[-2,-2],[-2,0],[-1,-1],[0,-1],[0,-2],[-4,-5],[-3,-1],[-7,-2],[-7,-1],[-5,-1],[-2,-2],[-5,-1],[-1,0],[0,-2],[-3,-2],[-3,-1],[-4,-2],[-2,0],[0,-1],[-3,-1],[-1,0],[1,-1],[-6,0],[-4,-2],[-6,0],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-2],[-2,-1],[-5,0],[-2,0],[-2,-1],[-1,1],[0,1],[-3,-1],[-2,2],[-1,3],[1,1],[-1,0],[-2,2],[1,1],[2,1],[1,-1],[-1,1],[-1,1],[-5,-1],[-2,2],[1,0],[-2,1],[1,0],[-1,1],[-1,1],[4,1],[-2,1],[0,1],[-2,0],[2,2],[-1,1],[1,0],[2,0],[1,0],[-1,-1],[1,0],[1,1],[0,1],[3,1],[4,-1],[0,1],[-2,0],[2,1],[2,1],[-1,-1],[1,-1],[4,2],[1,-1],[1,1],[2,1],[0,1],[4,1],[-4,0],[-3,-2],[-3,0],[1,1],[1,1],[1,0],[-1,0],[1,0],[3,1],[0,1],[-1,0],[4,1],[1,1],[-5,-1],[-3,-2],[-8,-1],[-2,-1],[-3,-1],[-2,-1],[-2,0],[-2,-1],[-5,-1],[-1,-1],[-4,1],[-2,-1],[0,-1],[0,-1],[-4,0],[-2,-1],[-2,-1],[0,-1],[-2,1],[2,2],[1,1],[0,1],[0,1],[-2,1],[-2,-1],[0,1],[1,1],[10,2],[2,1],[1,0],[2,1],[4,1],[3,-1],[0,1],[-4,0],[-12,-1],[-5,1],[1,1],[3,1],[1,1],[1,1],[2,0],[1,0],[-1,1],[3,0],[-1,1],[-1,0],[-4,-1],[1,1],[4,1],[0,1],[5,1],[-2,0],[4,1],[0,-1],[-2,-1],[6,2],[1,0],[-1,-2],[-2,-1],[-7,-1],[1,0],[5,0],[1,1],[2,0],[1,1],[-1,0],[1,1],[2,0],[0,-1],[-1,0],[1,0],[3,1],[1,2],[-2,-1],[1,0],[-2,-1],[0,1],[-2,1],[2,1],[3,1],[3,1],[1,-1],[1,1],[0,-1],[-3,-1],[2,-1],[3,2],[1,1],[4,1],[7,1],[0,1],[3,1],[1,0],[1,1],[1,-1],[0,-1],[2,0],[1,0],[0,1],[-2,0],[0,2],[1,0],[1,-1],[0,1],[-1,0],[-2,0],[1,1],[-8,-2],[-2,-1],[1,-1],[-3,-1],[-1,1],[-2,0],[-1,-1],[-1,-1],[-2,-1],[-2,1],[2,1],[5,2],[3,1],[2,0],[1,1],[1,1],[3,1],[2,1],[4,2],[-3,-1],[-1,0],[1,0],[-7,-3],[-1,0],[2,1],[-4,-1],[5,2],[-7,-2],[-1,0],[-7,-2],[1,2],[1,1],[3,0],[0,2],[-1,0],[0,1],[1,0],[3,-2],[1,1],[-4,1],[0,1],[2,0],[-1,0],[-2,1],[3,1],[3,-2],[0,1],[-1,0],[-1,1],[-1,1],[2,0],[2,1],[-3,2],[-2,2],[1,-1],[1,1],[-1,1],[2,1],[2,0],[5,-2],[0,-1],[-1,-1],[1,0],[1,1],[1,1],[1,0],[5,2],[2,0],[0,1],[-4,-1],[-3,0],[-3,1],[-2,1],[1,1],[2,2],[5,-1],[-1,1],[-2,0],[1,1],[3,-1],[1,0],[-1,3],[-1,0],[-1,1],[0,-1],[-1,1],[1,1],[1,1],[1,0],[2,-2],[2,0],[-2,1],[0,1],[3,0],[1,0],[-1,-1],[2,-1],[0,2],[-1,0],[1,1],[4,-1],[1,-1],[0,-1],[-1,-1],[2,0],[1,2],[0,1],[-10,3],[2,2],[5,1],[0,1],[0,1],[1,1],[3,-3],[1,-1],[1,1],[-2,1],[-1,1],[1,1],[1,1],[2,0],[0,-1],[1,-1],[1,0],[0,1],[-1,1],[1,0],[3,-1],[1,1],[-2,0],[2,1],[-3,-1],[-2,1],[1,1],[-1,1],[3,1],[-3,1],[0,1],[5,-2],[-4,2],[2,1],[3,-2],[2,-1],[3,-1],[0,1],[-2,1],[-4,1],[0,1],[0,1],[6,0],[1,-1],[2,-2],[1,0],[2,1],[3,1],[-3,0],[-1,0],[-2,0],[0,1],[1,0],[0,1],[-1,1],[-1,0],[-3,0],[1,1],[-1,0],[-6,0],[0,-1],[-1,0],[-3,2],[1,0],[2,1],[1,1],[1,0],[2,1],[2,-1],[2,-1],[1,-1],[2,-2],[1,0],[1,0],[-1,1],[-1,1],[2,0],[0,1],[-5,1],[-1,0],[-2,2],[4,-1],[0,1],[1,0],[0,1],[1,0],[4,-2],[1,-3],[6,1],[1,-1],[-1,-1],[0,-1],[1,-1],[1,0],[2,1],[1,-1],[1,-1],[-1,0],[3,0],[-2,1],[1,1],[-1,0],[-1,1],[-2,1],[1,0],[2,1],[-1,1],[0,1],[-4,0],[-1,0],[-4,-1],[0,1],[-3,1],[-1,0],[0,1],[3,0],[1,1],[0,1],[1,0],[2,-1],[0,-1],[1,0],[1,0],[2,1],[0,1],[-1,1],[-2,1],[1,0],[1,0],[1,1],[-1,1],[2,-1],[1,-2],[-3,0],[4,-1],[1,-1],[-1,-1],[1,0],[3,0],[-2,3],[-3,1],[-1,1],[0,1],[5,-1],[2,0],[1,-1],[0,-2],[0,-1],[1,0],[1,1],[-2,2],[0,2],[2,-1],[1,0],[-2,2],[4,-1],[1,-1],[2,0],[-1,0],[-2,2],[1,1],[1,0],[0,1],[-1,1],[-2,1],[0,2],[-2,0],[-1,0],[4,3],[2,0],[2,-1],[0,-1],[2,0],[3,-1],[0,-1],[3,0],[-1,-1],[-1,-1],[0,-3],[2,0],[1,1],[2,-1],[-1,0],[3,-3],[1,0],[1,0],[1,-1],[1,-1],[-1,-2],[-2,-1],[2,-1],[0,1],[2,1],[2,0],[1,-1],[3,1],[1,0],[0,-2],[4,0],[-1,-1],[1,0],[-1,-1],[-1,-2],[0,-1],[-1,0],[-2,-1],[-2,-2],[0,-1],[-3,-2],[-1,-2],[1,0],[1,0],[2,3],[1,1],[1,0],[4,2],[1,1],[-1,1],[4,1],[2,-2],[-2,0],[-1,-2],[4,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[-2,1],[3,1],[-1,1],[2,1],[1,0],[0,-1],[2,0],[2,0],[2,1],[3,0],[1,1],[-1,0],[1,1],[2,0],[1,0],[1,0],[2,1],[2,0],[1,0],[0,1],[-3,-1],[-2,0],[-4,0],[-2,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,2],[1,3],[1,1],[1,1],[4,-1],[2,1],[1,1],[-2,1],[-1,-1],[-1,0],[1,1],[-2,1],[4,0],[-1,1],[2,0],[1,0],[1,0],[1,0],[-2,-2],[-1,1],[0,-2],[7,4],[6,1],[2,1],[6,1],[-3,0],[-3,-1],[-2,1],[-4,-1],[-1,0],[-2,-2],[-1,2],[1,2],[1,1],[-1,1],[-2,-1],[-1,0],[-3,-1],[2,0],[2,0],[1,-1],[0,-1],[-3,-1],[-1,-1],[-2,0],[-1,0],[-4,3],[-3,2],[-1,1],[-2,1],[-1,1],[1,1],[1,-1],[0,1],[-2,0],[-1,1],[0,1],[1,2],[1,0],[-1,-1],[1,0],[2,1],[1,1],[-1,0],[-2,1],[0,1],[2,-1],[8,3],[1,1],[1,0],[-1,1],[2,0],[3,-1],[4,-1],[1,1],[-3,0],[-1,0],[1,1],[1,0],[1,1],[-5,0],[-1,0],[1,1],[3,0],[1,0],[3,0],[2,0],[2,1],[-1,0],[2,1],[1,-1],[0,-1],[2,1],[4,0],[0,1],[3,0],[2,1],[-4,0],[-1,1],[-2,0],[1,-1],[-1,0],[-4,0],[2,1],[-1,0],[-4,0],[-2,0],[2,0],[-2,1],[-5,0],[1,-1],[-2,1],[9,2],[7,0],[-1,0],[1,0],[1,1],[-4,-1],[5,3],[-1,0],[-5,-2],[-8,-1],[0,1],[1,1],[1,1],[3,0],[1,1],[-3,0],[1,0],[5,2],[1,0],[5,2],[3,0],[1,0],[7,3],[4,0],[1,-1],[1,1],[1,0],[-1,0],[0,1],[3,1],[2,0],[1,1],[3,0],[3,-1],[2,-1],[-1,-1],[-1,0],[3,0],[2,0],[1,0],[4,0],[0,-1],[3,0],[4,-1],[6,-4],[-1,-1],[2,1],[-1,0],[0,1],[0,1],[-3,1],[-2,2],[-6,1],[-1,1],[-4,1],[-1,-1],[-3,0],[-4,2],[-4,1],[-3,-1],[-1,0],[-1,1],[-1,-1],[-3,-2],[-3,0],[-1,0],[-2,-1],[-4,-1],[-7,-2],[-7,-3],[-7,-1],[-2,0],[0,-1],[3,0],[1,0],[-2,-3],[-2,-1],[-4,0],[-2,-1],[-2,0],[-1,0],[1,0],[-1,-1],[-4,0],[1,0],[0,-1],[-1,0],[-5,-1],[6,0],[-4,-1],[-3,-3],[-5,-1],[-7,-1],[-2,0],[5,2],[-6,-2],[0,1],[-1,-1],[-1,1],[3,0],[-3,0],[6,1],[3,0],[1,1],[3,0],[2,1],[0,1],[2,0],[1,1],[-1,0],[5,2],[-1,1],[-2,-1],[-3,0],[-6,1],[2,0],[0,1],[-4,-1],[1,0],[-2,-2],[0,1],[0,1],[-3,0],[3,0],[-2,1],[1,1],[4,0],[2,1],[-4,-1],[2,1],[-3,0],[1,0],[11,2],[9,0],[4,1],[0,-1],[4,2],[4,1],[2,1],[4,1],[-4,-1],[0,1],[-9,-3],[-1,0],[1,1],[-2,1],[1,1],[2,1],[2,1],[-4,-1],[-2,-2],[-2,1],[-1,1],[-1,1],[-2,1],[1,0],[2,2],[5,0],[1,0],[-1,-1],[2,2],[1,0],[2,-1],[0,-1],[0,-1],[2,0],[0,1],[-1,1],[-2,1],[1,0],[1,1],[1,0],[1,-1],[0,-1],[4,0],[1,1],[1,0],[2,1],[3,1],[-6,0],[-2,0],[-1,0],[-8,0],[2,2],[4,1],[1,0],[1,0],[1,1],[1,0],[2,-1],[1,-1],[1,0],[1,0],[0,-1],[2,0],[0,1],[1,2],[2,0],[-1,0],[9,4],[2,0],[0,1],[1,1],[3,2],[1,0],[3,-1],[-1,0],[1,-1],[2,0],[0,2],[-1,2],[2,2],[1,0],[0,-2],[1,0],[3,1],[3,0],[-2,1],[-2,-1],[-1,0],[-1,1],[1,1],[0,4],[0,1],[1,0],[2,1],[1,1],[4,1],[2,0],[2,-2],[1,0],[0,-2],[0,-1],[2,0],[1,-1],[-1,-2],[-2,0],[-1,-1],[1,0],[-1,-1],[-2,-1],[6,1],[3,-1],[-1,-1],[0,-1],[-3,-1],[-5,-2],[-5,-1],[-1,0],[-3,-1],[-4,2],[-8,1],[-1,-1],[6,0],[1,0],[2,0],[3,-2],[-2,-1],[3,1],[3,0],[2,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,3],[-3,3],[6,1],[1,0],[5,1],[1,1],[0,1],[3,0],[0,1],[2,0],[2,0],[1,-2],[3,0],[2,1],[1,2],[-1,1],[-3,-2],[-1,-1],[-3,1],[0,1],[2,0],[2,1],[3,0],[2,1],[3,1],[3,0],[2,2],[4,1],[1,2],[2,1],[6,2],[2,2],[1,1],[3,2],[3,3],[4,2],[1,0],[0,1],[3,1],[0,1],[-1,1],[-3,-2],[-3,-1],[-2,-2],[-2,-1],[0,-1],[-2,-2],[-3,-1],[-2,-2],[-2,-1],[-6,-3],[-2,0],[-9,-5],[-4,-1],[-5,1],[-5,2],[0,1],[1,1],[3,1],[3,0],[2,0],[4,1],[-1,1],[-1,-1],[-2,1],[-3,0],[0,1],[2,1],[-2,1],[-6,-1],[-1,0],[0,1],[1,0],[2,2],[5,0],[-3,0],[1,1],[2,-1],[2,1],[-3,1],[1,0],[-1,0],[-4,-1],[1,1],[-2,0],[-2,-1],[-2,0],[-3,-4],[-3,1],[0,1],[4,2],[1,0],[2,1],[0,2],[3,2],[5,0],[2,1],[-1,0],[1,1],[1,0],[1,0],[0,1],[-2,0],[-2,-2],[-2,1],[2,1],[0,1],[1,1],[4,1],[-3,0],[2,1],[-1,0],[-2,-1],[-2,-1],[-6,-3],[-7,-1],[-1,0],[0,1],[-1,1],[-1,-2],[1,-1],[0,-1],[3,-1],[0,-1],[-2,-1],[-5,-3],[-3,-1],[-1,0],[-5,-2],[-2,-1],[-1,1],[2,1],[0,1],[3,0],[-1,1],[1,2],[1,1],[1,1],[1,0],[-1,1],[-2,0],[3,1],[0,1],[1,0],[-5,0],[0,1],[3,1],[-1,1],[1,2],[2,2],[1,0],[1,-1],[2,1],[0,-2],[0,-1],[1,1],[-2,2],[5,1],[-1,-1],[3,2],[1,0],[-1,1],[-2,-1],[-6,-2],[0,1],[-1,1],[4,3],[5,3],[2,0],[5,2],[-2,1],[0,1],[1,1],[-3,-1],[0,-1],[-3,-1],[-1,0],[2,2],[-4,-2],[1,2],[3,1],[2,1],[-5,-2],[-2,0],[0,-1],[1,0],[0,-1],[-1,-1],[-3,-1],[0,2],[1,0],[0,1],[4,3],[0,2],[-1,0],[1,0],[1,3],[-1,-1],[-1,1],[3,2],[-1,-1],[1,1],[-2,-1],[2,2],[2,1],[3,-1],[-1,-2],[1,-2],[5,-2],[5,-4],[1,-1],[0,-1],[-2,-1],[1,-4],[0,1],[3,-2],[2,-1],[1,0],[-1,-1],[1,1],[0,1],[-2,0],[-1,1],[1,0],[-2,1],[-1,2],[0,1],[2,1],[1,-1],[-2,0],[0,-1],[2,1],[1,-1],[3,0],[-2,1],[1,0],[1,0],[2,-2],[0,-2],[1,-1],[1,0],[-1,1],[0,3],[1,0],[3,-3],[0,-1],[2,-1],[5,-4],[-2,3],[-6,5],[1,0],[1,-1],[1,1],[-1,1],[1,0],[11,2],[-1,0],[-11,-1],[-3,1],[5,2],[-1,0],[-5,-1],[-1,1],[-1,2],[-2,1],[2,1],[2,0],[3,1],[-3,-1],[-1,1],[-1,3],[1,1],[-1,2],[-2,-3],[1,-1],[0,-1],[-2,-2],[-2,-1],[-1,0],[-3,1],[4,3],[1,1],[1,2],[1,0],[0,1],[-2,0],[-1,-1],[0,-1],[-5,-4],[-4,1],[-1,1],[-1,2],[2,1],[2,2],[-3,-2],[-1,1],[-1,0],[0,2],[0,3],[-1,0],[5,5],[-1,0],[1,0],[2,3],[5,3],[2,1],[5,-2],[1,-3],[1,1],[-1,-2],[-1,-1],[3,2],[2,0],[1,-1],[-4,-2],[1,-2],[1,2],[1,0],[1,0],[-1,-2],[4,0],[5,-1],[0,-1],[0,-1],[1,-1],[1,0],[-2,1],[0,1],[1,0],[3,0],[-3,1],[-2,1],[-3,0],[-4,0],[0,1],[0,1],[1,1],[1,1],[-4,2],[-1,1],[-1,1],[-6,3],[4,2],[2,2],[1,2],[2,0],[1,1],[2,0],[0,-1],[0,-2],[1,-1],[2,0],[1,0],[0,1],[-1,1],[-2,0],[1,1],[1,-1],[2,1],[-2,0],[-1,1],[-1,1],[0,1],[-1,-2],[-1,0],[0,1],[-3,0],[-1,-1],[-1,1],[0,2],[3,2],[0,1],[0,3],[2,2],[5,2],[2,1],[8,3],[2,0],[0,-1],[0,-1],[2,1],[1,-1],[1,-1],[1,0],[1,-2],[1,0],[3,0],[5,-1],[1,0],[0,-1],[0,-1],[1,-1],[2,0],[3,1],[1,-3],[2,-2],[2,-2],[2,-1],[-2,2],[0,1],[1,0],[0,1],[-3,2],[-1,1],[2,2],[-3,1],[-1,2],[1,0],[0,1],[-4,-1],[-2,0],[-1,1],[-6,0],[-2,1],[0,1],[-2,1],[-3,0],[-1,0],[1,1],[2,1],[2,2],[0,1],[-1,0],[1,3],[9,3],[-5,0],[-8,-2],[-9,0],[-11,-3],[2,2],[13,2],[-15,-2],[8,2],[-6,-1],[-1,1],[2,2],[5,2],[5,1],[1,1],[-1,0],[1,1],[20,3],[1,0],[-1,-1],[1,-1],[1,1],[-1,0],[1,1],[13,3],[-1,1],[5,3],[4,1],[4,-1],[7,1],[3,0],[2,1],[4,-1],[1,-2],[-1,-1],[-3,0],[-2,-1],[-3,0],[11,1],[-1,-3],[-2,-1],[-2,-2],[-1,-1],[0,-3],[0,-1],[1,0],[1,2],[3,3],[4,2],[2,-1],[2,0],[5,2],[2,-2],[1,-2],[1,0],[1,0],[1,0],[-1,1],[1,0],[1,0],[0,1],[0,1],[-4,2],[-3,0],[-6,-1],[-1,0],[0,1],[-1,1],[-2,-1],[-2,-1],[0,1],[0,1],[3,2],[-1,1],[-3,0],[3,1],[2,-1],[2,2],[5,0],[6,-1],[-4,-3],[0,-1],[2,-1],[0,1],[0,1],[5,2],[0,1],[2,0],[4,0],[3,2],[2,0],[-2,0],[2,2],[4,1],[1,1],[4,1],[2,1],[1,1],[2,2],[-1,1],[-1,0],[-1,-1],[1,0],[-9,-3],[-2,1],[-4,-1],[-2,-1],[-1,-1],[0,-1],[-1,-1],[-2,1],[-5,0],[-3,-1],[-4,-1],[0,1],[1,0],[2,1],[0,2],[-3,0],[0,-1],[1,0],[1,-1],[-2,0],[-1,-1],[1,-1],[-4,-1],[-5,-1],[-1,0],[-4,1],[1,1],[1,1],[5,2],[-7,0],[0,-1],[-1,-1],[-11,-3],[-3,0],[-2,1],[-4,0],[-4,-2],[-2,-1],[-2,-1],[-2,-1],[-4,-1],[-10,-2],[-1,0],[-1,2],[0,1],[2,0],[6,4],[6,2],[-1,0],[-3,-1],[-1,0],[3,1],[3,2],[3,0],[3,1],[3,1],[7,1],[7,-1],[4,1],[5,0],[-5,2],[-5,-1],[-2,1],[5,2],[-2,0],[-2,1],[-3,-2],[-3,0],[0,-1],[-4,-1],[-11,-1],[-4,0],[-2,0],[2,1],[2,1],[-1,1],[-3,-1],[-1,-1],[-4,1],[-2,0],[-3,1],[0,2],[1,1],[7,2],[4,2],[1,0],[1,1],[-2,2],[1,1],[-5,2],[-1,1],[4,0],[4,0],[-6,1],[0,2],[-1,0],[-4,0],[-1,1],[0,1],[-4,1],[-1,0],[1,1],[0,1],[3,-1],[4,2],[5,0],[-1,0],[1,-1],[4,-2],[1,1],[2,-1],[1,-1],[-1,-1],[1,-1],[1,0],[1,-1],[-1,-2],[-2,-1],[3,0],[1,0],[-1,-1],[1,0],[14,3],[-13,-1],[0,2],[3,2],[-1,1],[-3,2],[6,0],[1,0],[0,1],[-1,0],[1,0],[1,1],[2,-1],[4,0],[2,1],[5,0],[4,0],[9,-3],[1,0],[-1,2],[-2,0],[-7,2],[-7,0],[0,1],[1,1],[1,1],[1,0],[2,0],[1,1],[1,1],[1,0],[6,0],[6,0],[2,0],[0,1],[-9,0],[-5,0],[-3,-2],[-3,0],[-4,-3],[-9,0],[-5,-2],[-4,1],[-2,0],[-2,1],[2,1],[1,1],[0,1],[0,1],[2,-1],[-1,2],[2,1],[2,-1],[1,1],[-1,1],[3,-1],[0,1],[5,1],[1,-1],[0,-1],[2,0],[-1,1],[-7,2],[-7,-1],[-1,0],[-1,0],[0,1],[-2,1],[-2,0],[5,2],[3,-1],[3,0],[4,0],[2,0],[1,-1],[-1,-1],[1,0],[1,0],[-1,1],[1,0],[1,0],[1,0],[1,1],[3,0],[6,-1],[-2,-1],[1,0],[4,0],[-2,1],[-1,1],[-6,1],[-1,1],[-4,0],[-8,1],[-3,1],[2,0],[-4,1],[2,0],[-2,1],[-1,0],[1,-1],[-3,0],[1,1],[6,1],[7,0],[4,0],[3,0],[0,-1],[1,-1],[4,1],[1,0],[0,-1],[0,-1],[4,-1],[11,0],[0,1],[1,0],[-3,1],[17,1],[1,1],[-9,0],[-2,0],[-6,-1],[-2,0],[0,-1],[-2,0],[-7,0],[-1,2],[-1,2],[6,1],[7,-1],[5,1],[-12,1],[-7,0],[1,0],[-3,1],[1,0],[0,1],[-3,1],[1,1],[7,0],[6,1],[4,0],[2,-1],[8,-1],[15,0],[-1,1],[-13,0],[-2,1],[-1,0],[-3,1],[1,1],[-2,1],[-3,-1],[-3,0],[4,1],[-1,0],[-1,1],[1,1],[0,1],[-1,1],[-4,0],[0,1],[0,1],[-2,1],[-8,-1],[0,2],[1,1],[0,1],[-4,0],[0,1],[2,1],[3,0],[0,-1],[-1,0],[1,-1],[3,1],[3,1],[10,-1],[5,2],[-1,1],[-4,0],[-2,0],[3,1],[9,0],[1,1],[-1,0],[1,1],[7,1],[3,0],[1,-1],[-4,-2],[-1,-1],[-5,0],[1,-3],[4,1],[2,1],[0,1],[1,1],[2,0],[-1,-1],[1,-1],[1,0],[1,2],[3,1],[-2,1],[-1,2],[-1,3],[0,1],[0,-1],[1,0],[1,2],[0,1],[1,1],[2,-2],[2,-1],[1,-2],[1,-2],[1,-2],[2,1],[0,-1],[0,-1],[-1,-2],[3,3],[3,-1],[2,1],[0,1],[2,3],[0,1],[0,1],[-2,1],[-2,1],[1,0],[3,0],[2,1],[0,-1],[2,-1],[4,1],[2,1],[1,1],[1,-1],[-2,0],[2,-1],[1,1],[2,-1],[4,-2],[2,0],[0,1],[1,0],[3,-1],[1,-1],[-1,0],[2,-1],[1,-1],[1,1],[0,2],[-2,2],[-7,0],[-2,-1],[-4,2],[1,0],[-2,0],[-2,1],[-4,-1],[-4,-1],[2,1],[-2,1],[-4,-1],[-1,1],[2,0],[1,1],[0,1],[1,-1],[1,3],[2,1],[0,1],[-1,1],[1,1],[1,1],[5,0],[1,1],[4,2],[2,-1],[-2,-2],[3,1],[6,-1],[0,1],[1,0],[4,1],[1,-1],[1,0],[5,-1],[1,1],[-1,0],[4,0],[-7,0],[-2,1],[-3,1],[-3,0],[-2,-1],[-2,1],[-2,0],[10,2],[5,-1],[2,0],[2,1],[2,0],[-1,1],[1,0],[3,1],[3,0],[1,-1],[1,0],[3,0],[7,2],[1,-1],[2,0],[-4,-2],[-1,0],[-1,0],[1,-2],[-1,-1],[-3,-1],[-1,-2],[0,-1],[2,0],[3,-1],[0,-1],[2,-2],[2,0],[0,2],[-2,2],[-4,1],[2,2],[-1,1],[1,0],[5,2],[-1,0],[3,2],[-2,0],[3,0],[4,0],[2,0],[1,-1],[0,-1],[1,0],[2,0],[5,1],[2,-1],[2,-1],[7,-2],[3,0],[1,0],[2,-2],[-2,-2],[-1,-2],[0,-1],[2,2],[-2,-3],[0,-1],[4,0],[2,-1],[1,1],[-3,1],[1,4],[1,0],[1,1],[1,3],[-2,1],[-2,1],[-4,1],[1,1],[-3,-1],[-1,1],[3,2],[2,0],[1,1],[1,1],[-4,0],[-8,-3],[-1,0],[-3,0],[0,1],[2,0],[5,0],[2,2],[-2,1],[-4,-1],[-2,1],[-2,0],[0,-1],[-1,0],[-4,-1],[-5,3],[-6,-1],[3,2],[1,-1],[4,1],[2,0],[1,1],[-3,0],[1,1],[2,2],[-1,1],[-7,-1],[-2,0],[-2,-1],[-4,-2],[2,0],[2,0],[-1,-1],[-3,0],[-1,1],[-4,-1],[-5,1],[-6,-1],[6,0],[-1,-2],[-7,-1],[-4,-2],[-3,1],[3,1],[1,5],[0,1],[-2,-1],[-3,-1],[-5,-1],[-1,0],[3,0],[-4,-1],[-15,-1],[-8,-2],[-1,1],[5,2],[3,2],[-1,0],[0,1],[4,0],[2,1],[1,1],[1,1],[7,3],[0,1],[1,0],[1,1],[4,1],[1,1],[-1,0],[0,1],[-3,-1],[-2,1],[5,1],[0,1],[0,1],[3,0],[1,1],[2,-1],[3,1],[1,-1],[-3,0],[3,0],[3,0],[0,1],[1,0],[5,-1],[-1,-3],[-3,-2],[2,0],[2,-1],[0,1],[0,1],[0,1],[4,3],[3,-1],[0,1],[2,1],[7,1],[-3,0],[-6,-1],[-11,2],[-3,-1],[-5,0],[-6,2],[4,2],[-1,1],[5,1],[1,1],[-1,0],[1,0],[5,2],[-1,0],[1,0],[3,1],[2,0],[2,1],[-1,1],[1,0],[13,3],[5,-1],[1,-2],[2,0],[0,-2],[-5,0],[-2,1],[-3,2],[-3,0],[0,-1],[0,-1],[3,0],[0,-1],[4,-2],[-4,-2],[-2,-1],[-5,-1],[-2,0],[6,-1],[5,3],[3,0],[5,2],[2,1],[2,-1],[1,0],[0,-1],[3,-1],[-8,-2],[2,-1],[0,-1],[-1,-1],[-3,-1],[1,-2],[1,0],[1,1],[0,1],[-1,0],[4,1],[2,2],[0,1],[2,1],[3,0],[1,0],[-1,1],[7,-1],[1,0],[6,-1],[1,0],[0,-1],[2,0],[-1,-4],[4,-1],[1,-3],[1,-2],[0,-1],[0,-1],[3,0],[1,-1],[0,-1],[4,2],[-3,1],[1,0],[-2,2],[1,0],[3,1],[5,-1],[-4,1],[2,1],[-1,1],[1,0],[3,1],[-4,-1],[0,-1],[-1,0],[-6,-1],[0,1],[-2,1],[0,1],[-3,1],[0,2],[4,0],[2,2],[-3,-1],[-2,1],[1,1],[4,3],[7,3],[7,2],[1,0],[3,1],[6,0],[1,1],[-3,0],[3,1],[3,0],[-6,0],[-4,-2],[-2,0],[-10,-1],[-9,-4],[-3,-2],[-5,3],[-2,-1],[-3,0],[-1,1],[-3,-1],[-4,1],[-2,0],[-6,2],[0,1],[0,3],[2,0],[3,-1],[1,1],[-6,1],[1,0],[3,1],[-2,0],[1,1],[4,0],[2,0],[7,-2],[3,0],[0,-2],[0,-1],[1,1],[1,1],[-2,1],[0,1],[-2,-1],[-3,1],[1,0],[-1,1],[-2,0],[-6,2],[-3,-1],[-6,0],[-1,0],[2,3],[3,1],[1,2],[4,1],[4,-1],[1,1],[-1,0],[-7,1],[2,2],[1,0],[1,1],[2,1],[6,-2],[1,-1],[0,-1],[6,-1],[4,-1],[2,0],[-3,2],[4,1],[6,-3],[2,0],[-8,4],[-7,-1],[-2,2],[-4,2],[2,1],[2,0],[5,1],[3,0],[6,-1],[3,-1],[4,-2],[5,0],[0,-1],[0,-1],[1,-1],[2,0],[1,-2],[2,0],[1,0],[1,3],[-3,-1],[-2,1],[-1,0],[1,2],[0,1],[-6,1],[-5,2],[-4,1],[-1,1],[-2,-1],[-6,1],[-5,3],[-1,-1],[-2,2],[1,1],[0,-1],[2,1],[1,2],[-3,2],[0,-1],[1,-1],[-1,-1],[-2,0],[-1,2],[0,1],[-2,1],[1,-4],[2,-1],[-2,-3],[-6,-1],[-2,-2],[-7,-2],[-1,-1],[1,-1],[1,0],[-4,-3],[-1,1],[-3,-2],[-1,0],[-4,-2],[-6,-1],[-6,-2],[-12,0],[1,1],[-3,0],[-1,1],[4,1],[8,2],[2,1],[-1,1],[-1,0],[-6,-1],[-1,0],[2,1],[-1,1],[-2,-1],[-1,0],[2,2],[8,-1],[7,2],[5,-1],[1,1],[5,0],[4,1],[-11,0],[2,1],[-4,0],[1,2],[4,1],[-15,-2],[3,1],[-1,0],[-6,-2],[-1,0],[5,2],[-2,0],[0,2],[-1,0],[-4,-1],[-1,0],[1,1],[-3,0],[2,1],[1,1],[-2,1],[4,1],[6,-1],[1,0],[-1,1],[5,1],[5,0],[4,2],[3,-1],[2,1],[1,-1],[1,1],[-2,1],[-2,-1],[-9,-1],[-10,0],[-3,0],[7,2],[-2,-1],[-1,1],[1,0],[10,3],[4,0],[4,0],[-1,-1],[2,0],[2,-1],[8,2],[-3,-2],[4,0],[1,0],[-4,-2],[-1,0],[-2,-2],[8,4],[1,1],[4,2],[2,0],[-2,-1],[0,-1],[5,2],[6,1],[-1,0],[1,1],[5,1],[2,0],[2,-1],[-2,-1],[-1,-2],[1,1],[1,1],[3,0],[0,1],[0,1],[5,1],[-1,0],[8,2],[4,-1],[2,-1],[2,-2],[1,-1],[0,-1],[3,0],[0,2],[2,2],[2,1],[-4,1],[2,1],[2,-1],[1,0],[1,0],[-1,1],[4,-1],[-3,2],[2,0],[3,1],[-5,0],[0,1],[3,0],[-2,2],[-2,0],[-6,1],[-1,0],[-2,1],[1,1],[-4,-1],[-1,1],[-2,-1],[2,-1],[2,1],[2,-1],[-1,0],[-5,0],[-2,0],[-1,1],[-1,0],[-11,0],[1,0],[0,2],[-2,0],[0,1],[3,0],[-6,1],[-1,2],[0,-1],[-1,-2],[2,-1],[-3,-1],[-2,0],[-2,-1],[-2,0],[0,-1],[-2,0],[1,-1],[2,0],[0,-1],[-2,-1],[1,-1],[-1,0],[-1,-1],[-1,1],[-2,1],[1,0],[1,1],[-4,-1],[-3,1],[-1,1],[-1,2],[0,2],[6,0],[-3,1],[1,1],[1,2],[2,1],[3,0],[1,2],[-2,0],[1,1],[1,-1],[-1,1],[1,0],[2,0],[-1,0],[0,1],[3,0],[1,1],[4,-1],[0,-1],[-1,-1],[-2,0],[1,-1],[1,-1],[2,0],[-1,1],[1,1],[1,1],[1,-1],[1,0],[2,0],[-1,1],[1,1],[1,0],[-1,-1],[3,0],[1,4],[-4,1],[4,0],[3,0],[1,-1],[3,-1],[0,-2],[-1,0],[-2,0],[3,-1],[0,-2],[-1,-2],[-8,1],[-1,0],[3,-1],[-1,-1],[2,-1],[-3,-1],[1,-2],[2,0],[1,0],[0,1],[-1,2],[1,0],[7,0],[-1,1],[-1,1],[3,0],[1,0],[3,-1],[0,1],[-1,1],[1,1],[1,0],[2,-1],[2,0],[0,1],[1,0],[2,1],[-2,1],[0,1],[2,0],[1,0],[3,0],[-6,1],[1,1],[0,1],[-3,0],[0,1],[0,1],[0,1],[2,1],[2,-1],[-1,0],[2,-1],[4,1],[0,2],[-1,1],[-1,2],[0,1],[3,1],[6,-1],[-1,-1],[3,1],[0,-1],[0,-1],[-1,-2],[3,0],[3,-2],[-3,0],[-3,-1],[-3,-1],[2,-1],[2,1],[2,-1],[1,1],[1,1],[2,-1],[1,-2],[-2,-1],[0,-2],[-1,-2],[-1,-2],[0,-1],[1,-1],[-2,-2],[-1,-1],[1,-1],[3,-2],[3,0],[2,-3],[3,-4],[0,-1],[0,-1],[-2,-4],[1,-1],[1,-1],[4,0],[4,-2],[3,0],[2,-2],[2,-1],[5,-2],[3,-1],[2,0],[-7,3],[3,2],[-3,0],[-5,2],[-7,1],[-2,2],[-3,-1],[2,4],[2,3],[-1,2],[-1,0],[2,0],[-8,4],[4,1],[0,1],[4,-1],[1,-2],[2,-1],[0,-1],[2,-2],[6,-3],[0,-1],[2,-2],[2,0],[-1,1],[0,1],[0,2],[2,0],[-7,0],[-4,4],[-1,1],[-1,3],[3,0],[2,-1],[1,1],[3,-1],[2,-4],[0,-1],[1,0],[5,-1],[2,1],[-3,1],[-1,-1],[-2,0],[-1,2],[0,1],[3,1],[2,1],[-1,1],[-9,1],[-3,0],[-1,1],[1,2],[2,1],[1,1],[3,1],[2,2],[0,1],[-1,0],[1,0],[2,0],[4,-4],[2,0],[7,0],[1,-1],[-1,0],[1,0],[1,-1],[2,1],[-2,0],[-1,1],[3,0],[3,0],[2,0],[-2,0],[-13,1],[-3,2],[1,1],[-1,1],[-4,0],[-3,0],[-2,-1],[0,-1],[-5,-2],[-2,0],[-5,3],[2,0],[0,1],[-5,1],[3,1],[2,-1],[3,0],[1,1],[-1,0],[-1,1],[1,1],[2,0],[1,0],[3,-3],[1,0],[0,3],[-3,0],[-1,1],[1,0],[6,0],[2,-1],[0,2],[-1,0],[-4,1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[3,0],[1,-1],[4,0],[5,-2],[4,1],[-10,2],[-1,1],[1,1],[-2,1],[2,1],[-3,0],[0,-1],[0,-1],[-9,0],[-6,-1],[-2,0],[-4,0],[-1,2],[3,1],[2,-1],[5,1],[5,1],[-1,2],[-1,0],[-3,-1],[-2,0],[-1,0],[0,1],[-10,2],[-1,1],[2,0],[0,1],[1,1],[2,1],[0,-1],[-1,0],[1,0],[3,2],[3,-1],[-2,0],[0,-1],[2,-1],[2,1],[-1,1],[2,-1],[4,0],[-1,-1],[0,-1],[3,0],[-2,1],[0,1],[1,0],[7,-2],[1,0],[0,-1],[-5,0],[4,0],[2,0],[6,-2],[2,-1],[1,-2],[2,0],[1,-1],[0,-1],[-1,-2],[8,-3],[3,-2],[7,-1],[0,1],[-6,1],[0,1],[-1,1],[-7,2],[-1,1],[1,1],[0,1],[-4,2],[3,1],[-1,2],[-15,3],[0,1],[-3,0],[-3,0],[1,0],[-4,1],[4,0],[0,1],[-2,-1],[-3,1],[-2,0],[1,0],[0,-1],[-2,0],[-1,1],[1,1],[1,1],[1,0],[1,-1],[0,1],[-1,2],[-1,-1],[1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[1,1],[1,1],[3,0],[1,0],[4,1],[1,-1],[1,0],[0,1],[6,2],[3,0],[2,1],[3,0],[-4,-2],[6,2],[-2,0],[1,0],[4,1],[0,-1],[2,-1],[1,0],[2,1],[6,0],[1,0],[-1,-2],[2,1],[9,-2],[0,-1],[0,-1],[-3,-2],[-2,-1],[2,0],[3,1],[1,-1],[4,2],[6,-1],[1,2],[-1,0],[0,1],[1,0],[2,0],[2,1],[2,-1],[2,1],[3,0],[3,-1],[2,-1],[1,-2],[-1,-1],[0,-2],[1,-1],[2,-2],[6,-2],[0,-1],[0,-1],[-1,-1],[-2,-2],[1,-1],[2,-2],[-2,-1],[4,1],[0,1],[-2,1],[0,1],[1,1],[1,2],[2,-1],[2,1],[-1,2],[-4,2],[-4,2],[-3,0],[0,1],[1,0],[0,3],[-3,2],[0,2],[0,1],[5,0],[0,1],[-1,1],[5,1],[3,-1],[5,-2],[10,-3],[3,0],[0,1],[-13,3],[-2,0],[-1,1],[2,0],[-2,2],[-3,0],[2,1],[7,1],[5,0],[6,-1],[2,0],[4,-1],[2,1],[7,-4],[2,0],[7,1],[-8,0],[-8,3],[-1,2],[-5,1],[-6,0],[-2,0],[-6,-1],[0,1],[1,1],[2,1],[5,3],[1,2],[-3,1],[-5,-2],[-5,-1],[-9,-4],[-3,-1],[-6,-1],[-15,-1],[-1,0],[4,2],[2,0],[1,1],[-2,2],[-1,0],[-2,1],[-4,1],[1,1],[-1,0],[-5,-1],[0,-1],[-2,-1],[0,-2],[-2,0],[-1,-1],[-7,-1],[-7,-1],[1,0],[-6,0],[-2,1],[-6,-2],[-4,0],[2,2],[0,2],[-2,2],[-5,1],[2,1],[-1,2],[4,1],[1,0],[-1,1],[2,1],[4,-3],[4,0],[0,1],[0,1],[2,1],[0,1],[-2,-1],[-5,2],[0,2],[0,1],[2,2],[2,1],[2,1],[4,0],[2,0],[1,0],[0,2],[7,2],[4,0],[3,-1],[1,1],[6,3],[6,0],[1,0],[-1,-1],[0,-1],[2,-2],[1,0],[3,0],[0,-1],[1,0],[0,-1],[-1,0],[2,-1],[3,0],[3,1],[-8,2],[1,0],[-2,1],[1,2],[1,1],[5,1],[7,1],[2,0],[1,0],[-1,0],[1,-1],[3,0],[5,1],[2,-1],[1,-2],[-1,-1],[2,-1],[1,0],[5,-1],[6,1],[6,-2],[2,1],[-8,2],[-3,0],[-1,-1],[-5,2],[-1,1],[0,1],[-1,1],[-3,1],[-3,1],[-5,-2],[-1,1],[-5,1],[0,1],[1,1],[4,1],[8,4],[1,0],[4,1],[13,-4],[10,-1],[2,-1],[0,-1],[2,-1],[1,0],[0,1],[-1,2],[-2,1],[-10,1],[-4,1],[-6,2],[-5,1],[13,6],[5,0],[1,1],[3,-1],[-1,0],[-3,-1],[11,-2],[3,1],[-6,4],[-6,1],[1,1],[0,1],[-17,-3],[-5,-2],[-1,2],[1,1],[2,2],[-1,2],[3,0],[4,0],[1,1],[-1,0],[-1,1],[0,1],[-5,0],[-1,1],[1,1],[1,-1],[3,2],[2,3],[4,1],[8,4],[-4,2],[-3,-1],[2,1],[6,2],[7,-1],[2,2],[7,1],[2,1],[5,0],[6,0],[0,-1],[0,-1],[7,2],[3,0],[-1,1],[-1,0],[-3,0],[0,1],[-3,-1],[-1,1],[2,1],[-1,0],[-2,1],[0,2],[1,0],[1,2],[1,1],[-3,0],[-7,0],[3,3],[-2,1],[1,4],[5,1],[3,3],[2,1],[0,2],[-2,1],[1,0],[1,1],[4,-1],[1,1],[-2,1],[1,2],[0,1],[0,1],[-2,2],[2,1],[3,0],[3,1],[0,1],[1,0],[2,0],[3,0],[0,-1],[3,-1],[1,0],[-1,0],[3,-1],[0,-2],[-1,-2],[-1,-1],[1,-1],[-2,-2],[-2,-1],[0,-1],[6,4],[8,-2],[1,-1],[-1,-4],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[-2,-2],[-1,-3],[1,0],[2,2],[0,1],[0,1],[1,1],[2,2],[0,2],[0,2],[0,1],[-1,1],[0,1],[3,2],[1,-1],[1,-1],[0,-1],[-2,-1],[0,-1],[4,-2],[6,-2],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[1,1],[-1,1],[-5,3],[-1,1],[3,0],[0,1],[17,0],[2,-1],[-3,-1],[8,-1],[-1,0],[1,-1],[4,0],[0,1],[-3,0],[1,1],[-3,1],[1,1],[-2,0],[-10,1],[1,0],[-1,0],[-8,2],[-9,3],[-1,1],[0,1],[0,1],[-4,2],[-6,2],[-1,-1],[-2,1],[1,1],[2,3],[-1,1],[-2,1],[0,1],[4,1],[8,1],[2,1],[14,1],[1,0],[2,1],[1,1],[2,-1],[1,-2],[1,-3],[-3,-2],[1,-1],[3,1],[2,-3],[0,-1],[2,-2],[1,0],[0,-1],[4,-1],[-1,-2],[0,-1],[7,-4],[6,-1],[13,0],[3,-1],[2,-2],[-1,-2],[-4,-1],[0,-1],[-5,-3],[0,-1],[0,-1],[2,-1],[3,0],[2,1],[4,1],[9,-2],[1,0],[2,-1],[4,0],[-5,2],[-6,2],[-1,2],[0,3],[1,3],[-6,5],[2,1],[-4,-1],[-5,1],[-13,-1],[-3,2],[-1,1],[0,2],[-1,2],[-4,1],[-3,2],[1,1],[1,2],[0,1],[0,1],[1,1],[4,1],[2,2],[5,1],[2,0],[6,-4],[1,0],[-5,4],[0,1],[0,1],[-2,0],[-1,-1],[-8,-1],[-1,-1],[-1,-1],[-2,-1],[-2,1],[-1,0],[-2,2],[0,1],[-1,4],[1,3],[3,2],[2,0],[1,2],[4,2],[2,2],[0,1],[1,2],[3,2],[1,-1],[2,0],[2,2],[7,2],[1,0],[9,0],[11,2],[3,0],[5,1],[5,1],[3,0],[1,-1],[-1,-3],[-2,-2],[-2,0],[2,-2],[0,-2],[-2,-2],[-1,-3],[-2,-1],[-1,-1],[6,0],[4,-2],[-3,-2],[0,-1],[1,0],[-2,-3],[0,-1],[-2,-2],[-2,-1],[-1,-1],[0,-2],[0,-2],[3,-2],[-5,-3],[-5,-2],[-4,-3],[-1,-1],[-5,-1],[6,1],[9,4],[2,-1],[1,-1],[-1,-1],[1,0],[1,2],[-2,1],[1,1],[2,2],[5,3],[-2,2],[3,2],[0,1],[-2,1],[0,1],[2,2],[1,1],[0,1],[-1,1],[0,-1],[-1,1],[0,1],[5,0],[1,-1],[8,-1],[6,-1],[6,0],[9,0],[-3,1],[-10,0],[-4,1],[-9,2],[-2,2],[0,1],[0,1],[-4,2],[0,1],[2,2],[0,1],[5,2],[0,1],[-1,1],[1,2],[5,2],[0,1],[2,3],[2,0],[2,2],[1,0],[0,-1],[-1,-2],[-1,-1],[-1,-2],[0,-2],[-1,-1],[3,1],[6,9],[5,5],[0,1],[1,3],[1,0],[2,1],[0,-1],[1,-1],[-1,-2],[-1,-1],[2,-1],[0,-2],[1,-1],[2,-1],[0,2],[-2,2],[0,1],[0,3],[1,1],[5,3],[0,1],[3,1],[3,-3],[1,-1],[1,-2],[2,-3],[2,-1],[0,-1],[-1,-1],[-2,-1],[0,-2],[0,-1],[-1,-1],[-3,-4],[-2,-8],[0,-1],[-1,0],[-2,-2],[1,-1],[0,-2],[7,-2],[0,-2],[-1,-1],[-2,-3],[-2,0],[-2,0],[-4,-1],[0,-2],[1,-1],[4,0],[-4,-1],[-1,-1],[1,0],[1,-1],[-2,-1],[-1,-1],[4,-1],[-1,-2],[-4,-2],[1,1],[-1,2],[-1,0],[-1,-1],[-1,-3],[-1,-1],[1,-1],[-1,-1],[1,0],[-2,-2],[-13,-5],[-1,-1],[1,-1],[-5,-4],[-2,-2],[3,-1],[-1,0],[3,1],[0,1],[1,1],[2,1],[3,3],[1,0],[1,1],[1,1],[10,4],[4,-1],[3,0],[0,2],[-1,2],[2,2],[2,1],[2,2],[3,6],[1,1],[1,2],[0,2],[1,2],[2,1],[8,-3],[1,-1],[0,-1],[5,0],[2,-2],[2,-1],[9,-1],[5,-2],[2,1],[-5,2],[-6,0],[-3,1],[-5,4],[-1,1],[0,1],[-1,0],[-4,2],[-4,1],[-2,3],[1,2],[0,1],[3,1],[2,3],[0,1],[0,1],[-1,1],[-3,2],[1,0],[-3,1],[7,1],[9,2],[5,1],[1,1],[5,2],[0,1],[1,1],[-3,3],[1,1],[6,2],[1,0],[0,2],[2,0],[9,2],[4,2],[3,1],[2,-1],[-2,-1],[-4,-1],[-2,-2],[-2,0],[-1,0],[1,0],[-2,-2],[-3,-3],[-5,-2],[1,0],[7,0],[1,-1],[-3,-1],[-2,-1],[1,0],[1,-3],[3,-1],[1,-1],[1,0],[2,1],[1,1],[3,0],[-5,2],[3,2],[2,0],[1,1],[-1,2],[-1,-1],[-1,1],[2,1],[3,1],[8,-1],[1,1],[0,-2],[-4,-2],[1,-1],[-3,-1],[0,-2],[1,0],[1,1],[5,2],[2,2],[-4,5],[1,1],[9,-1],[2,1],[-8,1],[-4,2],[1,2],[2,3],[-1,0],[1,2],[2,1],[4,0],[4,1],[8,-1],[1,0],[0,-1],[3,0],[4,-2],[0,-1],[-2,0],[2,-2],[3,0],[1,-1],[-1,-1],[0,-1],[1,-1],[10,-3],[6,-1],[3,-2],[1,0],[-1,0],[2,-1],[5,-1],[-2,-1],[1,-1],[3,-2],[1,-2],[0,-1],[5,-1],[4,0],[-2,0],[4,-2],[-2,-1],[2,0],[-8,0],[1,-1],[4,-1],[2,1],[3,0],[4,1],[1,0],[-7,3],[2,0],[1,1],[-10,5],[-1,0],[0,-1],[-1,0],[-5,2],[0,1],[1,1],[4,-2],[5,1],[2,1],[-3,1],[-7,2],[-2,1],[0,1],[-1,3],[-1,1],[1,1],[2,1],[1,-1],[1,1],[-3,1],[-1,2],[8,1],[3,0],[1,-1],[0,-2],[-1,-1],[-2,-1],[5,-1],[1,1],[-2,1],[1,2],[0,1],[0,1],[-3,2],[7,2],[-4,0],[-6,-1],[-8,-1],[-3,1],[-5,2],[7,3],[6,0],[6,1],[0,1],[2,1],[3,1],[1,2],[-1,1],[-3,-3],[-2,0],[-1,0],[-1,-1],[-3,-2],[-9,0],[-1,0],[-1,1],[0,1],[-1,-1],[0,-1],[1,-1],[-7,-1],[-12,3],[1,2],[-1,1],[-1,0],[0,-1],[-2,-1],[-7,0],[-1,1],[-1,0],[0,2],[-3,3],[3,0],[3,2],[-1,1],[-8,-2],[-6,0],[-4,2],[0,1],[-2,1],[-1,1],[0,1],[-3,-1],[0,2],[1,0],[2,0],[0,1],[1,1],[1,-1],[4,2],[3,0],[1,1],[1,1],[6,1],[1,-2],[-1,-3],[0,-1],[6,-3],[1,2],[-3,1],[0,1],[1,0],[1,1],[0,1],[0,2],[0,2],[-2,1],[2,2],[6,1],[0,-1],[-1,-2],[1,-1],[4,-2],[-1,0],[1,-1],[2,0],[7,-3],[0,-2],[4,0],[2,-4],[4,-1],[1,-3],[1,0],[0,1],[0,2],[-3,2],[-1,2],[5,1],[-4,1],[-4,2],[0,2],[1,1],[4,1],[5,4],[4,2],[3,0],[2,-1],[1,-1],[-1,-1],[-4,-2],[-1,-1],[1,0],[3,1],[5,3],[2,0],[1,-1],[1,-2],[-1,-5],[-2,-1],[1,0],[3,1],[0,1],[0,2],[2,0],[0,2],[1,0],[5,0],[2,0],[5,-1],[1,0],[-2,-2],[-1,-1],[0,-1],[1,0],[-5,-2],[4,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-3],[1,0],[0,-1],[-4,-1],[1,-1],[4,1],[4,-1],[2,0],[1,1],[5,0],[11,-3],[-2,2],[-7,2],[-9,0],[-2,1],[-1,0],[1,1],[3,2],[0,3],[0,2],[2,0],[-1,1],[0,2],[5,0],[8,-2],[1,0],[0,-2],[4,1],[4,-1],[-3,-2],[1,0],[3,0],[2,2],[3,0],[11,-2],[8,0],[4,-1],[1,-1],[0,-1],[-3,-2],[-2,1],[0,-2],[-7,-3],[-2,0],[3,-1],[-3,-1],[-10,-1],[-4,0],[-2,-1],[-2,-1],[-12,1],[-7,-2],[0,-1],[-4,0],[-4,-2],[2,-2],[9,4],[24,2],[5,2],[8,0],[12,5],[2,-1],[-1,-2],[0,-3],[0,-3],[-1,-1],[-2,-1],[4,-1],[2,-1],[1,0],[3,1],[2,-3],[0,-1],[0,-1],[3,0],[1,-1],[0,-1],[-3,0],[-5,-2],[-5,-3],[1,0],[1,0],[2,1],[4,2],[2,0],[0,-1],[-1,0],[1,-1],[4,3],[3,0],[4,1],[1,1],[1,1],[-1,1],[1,0],[3,0],[1,0],[-2,0],[1,-1],[2,-1],[1,1],[4,0],[-2,0],[3,-1],[-1,0],[2,-1],[3,2],[2,-1],[2,2],[1,1],[2,2],[-3,1],[-13,0],[-10,2],[-2,1],[-1,1],[-4,2],[8,2],[7,0],[1,0],[2,0],[3,2],[-5,2],[-2,1],[-3,1],[0,2],[9,0],[-11,1],[-5,3],[12,2],[6,-1],[1,1],[-1,0],[1,1],[8,0],[-9,1],[-1,0],[1,-1],[-10,0],[-3,1],[1,0],[9,2],[4,-1],[-3,2],[6,1],[7,-1],[7,2],[-7,0],[-5,1],[4,2],[-1,0],[-4,-1],[-2,0],[1,2],[7,4],[4,1],[1,0],[-1,1],[1,1],[9,3],[7,2],[0,1],[0,1],[2,2],[4,1],[9,2],[2,0],[0,-1],[2,1],[4,0],[4,-2],[11,-1],[-1,0],[4,0],[1,-1],[-1,-1],[3,-2],[2,0],[-1,3],[0,1],[-5,3],[-10,3],[-3,0],[-1,0],[3,3],[3,1],[1,1],[3,2],[3,0],[-1,1],[0,3],[1,2],[4,0],[0,1],[-1,1],[2,1],[1,0],[1,0],[3,1],[1,0],[-2,-1],[10,0],[1,-1],[-1,0],[0,-1],[8,-2],[0,-1],[1,-1],[3,-2],[3,0],[4,2],[-1,1],[0,1],[-2,1],[-2,1],[-2,2],[-2,0],[1,1],[1,0],[5,0],[-7,2],[-1,0],[0,-1],[-2,0],[-1,1],[3,0],[-4,1],[-2,1],[2,0],[1,1],[0,1],[-14,0],[-2,0],[0,1],[2,0],[-5,0],[0,1],[-5,0],[-1,1],[0,1],[1,2],[2,0],[0,1],[-3,2],[1,1],[4,2],[1,1],[3,1],[1,0],[1,-1],[2,-1],[-1,-1],[0,-1],[4,0],[0,-1],[0,-1],[7,-1],[7,-3],[2,1],[0,2],[-1,1],[-4,0],[1,1],[2,0],[-1,1],[-2,2],[5,1],[4,0],[1,0],[2,0],[-4,2],[-9,1],[0,1],[6,1],[-6,1],[0,1],[-1,2],[9,1],[-6,0],[-3,0],[1,1],[5,1],[1,1],[3,0],[3,0],[-1,0],[-1,-2],[0,-1],[3,2],[2,0],[1,1],[3,0],[0,-1],[-1,-1],[-1,-1],[2,-1],[1,-1],[2,0],[2,-2],[2,0],[-6,-1],[1,0],[4,0],[4,1],[2,-1],[3,0],[-4,2],[2,0],[3,3],[-1,1],[5,0],[3,-2],[-2,-3],[-9,-5],[-3,0],[4,0],[1,0],[-1,-1],[1,0],[4,0],[1,1],[1,-2],[1,1],[-1,1],[3,2],[0,1],[4,2],[1,0],[4,-2],[0,-1],[3,0],[2,-1],[1,-2],[0,-2],[1,-2],[1,-1],[-2,-1],[0,-2],[1,0],[0,1],[0,1],[2,-1],[2,2],[4,-2],[0,3],[2,2],[-3,1],[3,0],[0,2],[3,1],[0,1],[-1,1],[-3,3],[-3,1],[-1,2],[1,1],[2,1],[2,-1],[0,-1],[6,0],[2,-2],[3,-1],[2,-1],[3,-1],[-2,-2],[-11,-5],[4,1],[-1,-1],[1,-1],[1,1],[4,3],[-1,-2],[1,0],[0,-1],[1,2],[8,4],[8,0],[1,-1],[-3,-1],[3,0],[1,-1],[0,-2],[2,1],[0,1],[0,1],[5,1],[4,1],[-1,-1],[4,0],[-4,-2],[-2,-1],[7,1],[0,-2],[-2,0],[-5,-2],[-1,-1],[-1,0],[-2,-1],[-2,-1],[1,-2],[-1,-1],[-11,-1],[-3,-3],[2,-1],[1,0],[3,1],[3,1],[0,-2],[-1,-1],[-2,-1],[0,1],[0,1],[-2,0],[-7,-4],[-2,0],[-1,-1],[-4,-2],[-6,-1],[1,-1],[-1,-1],[-3,0],[2,-1],[-4,-1],[2,0],[-5,-3],[-5,-1],[1,-1],[-2,-2],[-3,-1],[-5,-2],[-3,-1],[-1,0],[-3,-3],[2,0],[1,2],[11,1],[2,-1],[-1,-1],[-2,-1],[-4,-1],[-7,1],[-1,-1],[1,-1],[1,-1],[11,1],[1,0],[0,-1],[0,-1],[4,0],[-4,0],[-2,-2],[-4,-2],[2,-1],[5,-1],[0,-2],[-6,0],[2,1],[-1,1],[-2,0],[-4,-3],[-2,-1],[-4,-2],[2,0],[5,1],[-4,-2],[0,-1],[-2,-2],[2,0],[6,2],[3,-1],[-1,-3],[-3,-1],[-2,1],[0,-1],[1,-1],[-4,-2],[-4,0],[0,-1],[-8,-2],[1,0],[0,-3],[-2,0],[3,-1],[-2,0],[0,-1],[2,-1],[-2,-1],[-1,-1],[-2,-1],[2,-1],[0,-3],[-1,-2],[1,-1],[6,-1],[0,-1],[-1,-1],[1,0],[3,1],[1,2],[-1,1],[-4,1],[0,2],[0,1],[3,2],[2,0],[1,-1],[3,2],[-1,0],[1,1],[0,-1],[1,-2],[-2,0],[0,1],[-1,-2],[0,-1],[2,0],[3,2],[3,-1],[-1,-1],[-2,1],[-1,-2],[-4,1],[0,-1],[1,-2],[1,-2],[4,-1],[2,0],[2,2],[3,1],[1,1],[0,1],[2,2],[-1,1],[3,1],[1,2],[1,3],[2,-1],[4,2],[3,2],[0,1],[0,1],[0,1],[6,2],[2,1],[-1,1],[1,2],[3,1],[-1,0],[-5,-1],[-6,2],[-1,0],[1,1],[3,1],[0,1],[0,1],[1,1],[2,-1],[1,2],[2,0],[-1,2],[1,0],[1,0],[0,-1],[1,0],[2,1],[0,1],[-1,0],[3,1],[2,2],[1,1],[0,1],[3,1],[2,2],[-1,1],[1,0],[5,2],[11,6],[3,1],[7,4],[1,0],[-1,1],[-1,1],[4,4],[0,2],[3,1],[-2,1],[0,1],[2,1],[2,1],[1,-1],[2,0],[2,2],[1,2],[-1,1],[5,1],[3,1],[0,1],[4,3],[3,1],[0,1],[5,3],[3,2],[2,0],[0,1],[2,1],[2,1],[5,3],[3,1],[5,0],[4,2],[2,-1],[-2,0],[4,-3],[-2,-2],[2,-1],[0,-1],[-1,-2],[-6,-3],[2,0],[0,-2],[-1,0],[6,1],[0,-2],[-1,0],[0,-1],[0,-1],[-4,-3],[0,-1],[1,-1],[0,-1],[-4,-2],[-10,-4],[-10,-1],[-1,-2],[-6,-2],[-2,0],[4,0],[15,2],[7,-1],[-1,1],[5,-2],[-1,-2],[-2,-1],[1,0],[0,-2],[-2,-3],[0,-2],[1,0],[-1,-2],[-4,-2],[0,-1],[0,-2],[3,-1],[-2,-2],[-1,-1],[-2,0],[-1,-2],[-1,-1],[1,-2],[2,-1],[-3,-1],[-2,-2],[0,-2],[3,0],[1,2],[4,2],[3,-1],[2,0],[0,2],[-2,0],[-2,0],[0,1],[2,1],[1,1],[0,1],[4,-2],[2,-1],[3,1],[1,1],[-1,1],[3,0],[0,3],[-1,1],[-1,1],[0,1],[5,-1],[2,2],[1,-1],[0,-1],[7,0],[1,1],[1,-1],[-2,-2],[3,-1],[7,3],[4,-1],[-1,0],[2,-1],[0,2],[-5,1],[0,1],[-1,1],[-3,0],[0,1],[0,1],[-3,2],[5,1],[0,1],[-1,1],[-4,0],[1,2],[3,2],[3,0],[-1,1],[2,0],[2,0],[0,-1],[4,-1],[6,0],[4,-2],[3,0],[-2,1],[-2,2],[-7,2],[-3,0],[-3,2],[0,1],[4,2],[4,-1],[-3,1],[-4,1],[1,0],[3,0],[4,-2],[2,0],[-4,1],[1,1],[-9,2],[2,2],[2,2],[0,2],[2,-1],[11,0],[2,-1],[1,-1],[2,1],[0,1],[3,0],[-7,2],[0,2],[2,2],[-2,0],[0,2],[1,1],[8,0],[6,-2],[3,0],[1,-1],[2,0],[15,-1],[-14,3],[-5,1],[-2,1],[4,1],[2,1],[-6,1],[2,1],[0,1],[-9,-1],[5,4],[-1,1],[-6,-3],[-2,-1],[-2,1],[-4,0],[-1,1],[-1,-1],[-4,0],[-2,1],[0,1],[-4,0],[-1,2],[2,0],[0,1],[0,1],[2,3],[4,0],[9,-4],[5,0],[-4,1],[-1,1],[0,2],[-3,2],[-5,2],[1,1],[5,2],[2,-1],[6,-1],[0,-1],[0,-1],[5,2],[7,-2],[0,-1],[-1,-1],[0,-4],[4,0],[1,1],[1,5],[-3,2],[-3,2],[-1,1],[0,1],[1,2],[3,1],[2,1],[2,1],[3,-2],[2,1],[-1,2],[0,1],[2,0],[4,-2],[3,0],[1,0],[-6,-6],[4,1],[0,-1],[-1,-1],[2,0],[4,3],[1,0],[1,-2],[-2,-2],[2,0],[1,-1],[1,1],[2,1],[1,-1],[1,0],[3,2],[0,1],[4,1],[0,1],[1,0],[-2,-2],[2,-1],[4,3],[2,0],[1,0],[0,-2],[0,-2],[1,0],[5,4],[1,0],[0,1],[4,0],[4,-1],[1,-1],[-2,0],[3,-1],[-2,-1],[2,0],[-1,-1],[-7,-1],[3,-1],[-1,-2],[-1,-1],[-1,-2],[2,2],[2,1],[1,0],[-1,-1],[-3,-4],[0,-1],[4,1],[-1,1],[1,1],[1,-1],[2,1],[3,3],[1,-1],[1,0],[5,0],[11,-1],[2,-1],[1,-2],[-1,-2],[-1,-2],[-2,-1],[1,0],[-4,-1],[2,-1],[-1,-1],[-4,0],[-4,0],[-4,0],[10,-1],[-2,-1],[-1,-1],[-1,-1],[-7,0],[4,-1],[-2,-2],[-4,0],[-4,2],[-3,0],[8,-3],[-6,-3],[-2,0],[-10,1],[1,0],[-1,1],[-2,-1],[-4,0],[-2,2],[2,1],[-1,0],[-4,-1],[-1,-1],[-2,-1],[-5,1],[-1,0],[1,0],[-1,-1],[-6,0],[-5,1],[2,-1],[7,-1],[-7,-4],[1,0],[6,1],[1,1],[6,1],[9,-2],[-2,-2],[5,2],[6,-2],[1,-1],[-3,-1],[-3,0],[-1,-1],[2,0],[-6,-2],[-14,-3],[3,-1],[-5,-2],[-5,0],[-3,-1],[-8,-1],[3,0],[6,0],[14,2],[18,4],[4,1],[3,2],[6,2],[1,0],[1,-4],[0,-1],[-2,-4],[-1,-1],[-5,-3],[-11,-5],[-15,-5],[-1,-1],[-6,-1],[1,-1],[3,0],[-2,-2],[-1,-2],[2,0],[1,-1],[-1,0],[1,-1],[1,0],[1,0],[-1,1],[0,3],[1,1],[6,3],[4,0],[-6,-2],[-2,-2],[2,0],[1,1],[2,1],[0,1],[1,0],[1,-1],[-1,0],[1,0],[6,2],[3,0],[4,1],[4,0],[-1,-2],[-4,0],[-8,-4],[0,-3],[1,0],[1,3],[1,0],[8,4],[4,0],[3,2],[3,0],[1,-1],[6,2],[0,-2],[-2,0],[-1,-2],[1,-1],[8,3],[1,-2],[-1,-1],[0,-1],[3,-1],[3,-1],[0,1],[0,1],[-2,1],[2,2],[2,1],[1,1],[-7,0],[-1,1],[-2,2],[-3,1],[2,3],[2,1],[2,2],[1,1],[1,3],[2,2],[0,2],[-1,1],[6,-1],[5,0],[-1,1],[-5,1],[-2,1],[-2,3],[8,4],[5,1],[0,1],[-1,1],[1,0],[1,2],[4,2],[1,1],[0,1],[1,0],[4,1],[3,2],[11,1],[1,-1],[1,0],[-1,-1],[9,0],[2,-1],[-2,0],[4,-1],[7,0],[3,-1],[0,-1],[2,-1],[-1,-1],[1,-1],[-2,-1],[4,-1],[1,1],[7,-1],[-2,-1],[0,-1],[-2,0],[2,-1],[-10,-2],[2,-1],[-1,0],[4,0],[3,-1],[1,1],[5,0],[-10,-1],[-1,-1],[3,-1],[5,0],[-12,-4],[5,0],[-4,-1],[2,-1],[2,1],[4,2],[0,1],[4,1],[-1,0],[3,-1],[3,2],[10,0],[12,4],[3,-1],[3,0],[1,-1],[1,-3],[-3,-4],[1,0],[-3,-1],[-2,-1],[-1,-1],[1,0],[-1,0],[-1,-1],[-2,-1],[12,3],[7,5],[2,1],[1,1],[6,1],[6,-1],[1,-1],[9,-2],[0,-1],[-1,0],[-7,-1],[0,-1],[12,-1],[7,-3],[-1,-2],[-1,-1],[-3,-1],[-4,0],[-1,-1],[1,-1],[-2,0],[-10,-1],[5,-2],[-8,0],[-2,1],[-2,0],[1,-1],[2,0],[7,-1],[0,-1],[1,-1],[7,3],[14,3],[2,-1],[3,1],[1,-1],[3,0],[1,0],[5,-1],[5,1],[1,-1],[-1,-2],[-2,0],[-1,-1],[0,-1],[7,-1],[2,-1],[0,-1],[4,-1],[-1,-1],[1,-1],[-2,-1],[1,-1],[3,1],[2,-2],[6,3],[1,-1],[5,2],[3,-1],[0,-1],[0,-1],[2,-1],[2,-2],[2,-1],[0,-1],[-1,-1],[0,-1],[2,0],[1,-1],[-1,0],[0,-2],[1,-1],[0,-1],[-2,-1],[2,-2],[-4,-1],[-3,1],[-2,-2],[-2,1],[-6,-1],[-1,-1],[-2,1],[-2,0],[0,-1],[-4,0],[-2,0],[-1,-2],[-4,1],[-8,0],[-1,-1],[-4,0],[-3,-3],[0,-1],[-2,0],[-7,-1],[-3,-1],[-1,-2],[1,-1],[2,0],[0,-2],[-2,0],[-3,-2],[-7,-1],[-2,-1],[-2,0],[-4,0],[-2,-2],[0,-1],[4,0],[2,-1],[-6,0],[0,1],[-1,1],[-15,-2],[-7,0],[-3,1],[-3,0],[-12,2],[-13,1],[-3,-1],[-7,1],[-3,2],[-9,-1],[-6,2],[-9,-1],[-3,2],[-4,0],[-3,1],[-3,-1],[-1,0],[1,1],[-12,3],[-5,0],[-8,-1],[1,0],[1,-1],[-1,0],[14,1],[2,-1],[-8,-3],[-8,-1],[0,-1],[6,-1],[1,-1],[5,1],[9,0],[2,-1],[-2,-1],[-7,1],[-1,0],[4,-2],[11,0],[1,0],[-1,0],[12,-2],[5,0],[0,-1],[4,0],[2,-1],[-5,-2],[1,-1],[2,0],[2,1],[3,-1],[2,1],[3,-1],[4,1],[5,-1],[5,0],[1,-1],[4,0],[-1,-1],[1,0],[9,-1],[3,-1],[1,-1],[-2,-1],[-6,-2],[0,-1],[-7,-1],[1,-1],[-2,-1],[-3,0],[-2,-1],[1,-1],[0,-1],[-6,0],[0,-1],[7,-1],[-1,1],[2,1],[2,1],[1,1],[2,2],[2,1],[4,0],[0,-1],[0,-1],[2,2],[1,0],[3,-1],[3,-1],[1,0],[-1,1],[3,1],[3,-2],[-2,0],[3,-2],[-1,-2],[-1,-1],[1,-1],[2,-1],[-2,-1],[-2,0],[3,-1],[-3,-1],[-3,-2],[0,-1],[-1,-1],[-5,0],[1,-2],[2,1],[-1,-1],[-3,0],[2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-3,0],[-1,0],[-9,0],[3,-1],[8,1],[0,-1],[-3,-3],[-2,-1],[-2,-1],[5,1],[3,1],[2,3],[5,2],[2,2],[2,1],[8,1],[7,-1],[1,0],[1,-1],[-1,0],[1,0],[2,2],[2,0],[1,1],[1,1],[5,0],[1,1],[1,0],[1,0],[2,-1],[-1,-2],[-3,0],[1,0],[0,-1],[-3,-2],[-7,-2],[-1,-1],[0,1],[-1,0],[0,-2],[1,-1],[2,-1],[0,-2],[-1,-1],[2,-5],[1,0],[-1,2],[0,2],[-1,2],[0,1],[-1,4],[10,4],[4,0],[1,-1],[0,-2],[1,-2],[1,-1],[-1,1],[0,2],[2,1],[0,1],[-2,1],[-1,2],[0,1],[9,1],[0,1],[-4,3],[1,2],[-1,1],[-1,1],[-1,1],[1,1],[1,1],[3,1],[3,-1],[1,1],[2,0],[3,0],[1,-1],[-1,0],[3,-1],[-2,-1],[-7,-1],[1,-1],[2,1],[1,0],[0,-1],[3,1],[1,0],[3,0],[1,0],[1,-2],[0,-3],[1,-1],[1,-1],[0,-1],[0,-1],[1,-6],[0,-1],[0,-1],[-4,-1],[-5,0],[-1,-1],[2,1],[5,-1],[1,1],[5,0],[0,1],[-1,1],[0,1],[-1,2],[1,2],[2,-1],[0,1],[-3,2],[-1,5],[1,1],[7,1],[2,-1],[-3,-1],[5,1],[2,-1],[2,0],[-2,1],[5,-1],[3,0],[-3,-1],[2,-1],[1,0],[-1,1],[1,0],[1,1],[4,-1],[-2,-1],[-3,0],[0,-2],[1,-1],[2,0],[0,1],[7,2],[3,-1],[3,-2],[1,-1],[-1,0],[0,-1],[2,-1],[0,-1],[-2,-1],[2,-1],[1,0],[2,-2],[1,0],[0,-1],[-1,0],[-1,-1],[1,-2],[2,-1],[0,-1],[0,-2],[-1,-4],[0,-1],[-11,-4],[-12,1],[-13,0],[-8,6],[-16,7],[-6,1],[-6,-1],[1,-2],[3,0],[1,-1],[2,-4],[1,-1],[1,-2],[-1,-2],[0,-1],[-4,-1],[-1,-2],[-1,-3],[1,-1],[-4,-2],[-3,-3],[-2,-1],[-6,-1],[-2,1],[-6,1],[-4,-2],[-1,-1],[-5,-1],[-2,-2],[-1,-1],[-10,-5],[-3,0],[-1,2],[-9,-2],[-2,1],[-9,-3],[-1,-2],[0,-2],[1,-1],[2,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-2],[1,-1],[-7,-5],[-1,0],[-9,-6],[-1,2],[-8,3]],[[6629,9759],[2,-1],[1,0],[2,0],[5,1],[3,1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[3,-1],[0,-1],[-1,-2],[-1,-1],[-2,-2],[-2,-5],[-1,-1],[-3,-2],[-2,-2],[-4,-2],[6,1],[0,1],[4,2],[4,1],[1,1],[1,1],[3,0],[1,-2],[0,-1],[0,-1],[-1,-5],[-1,0],[-3,-3],[-3,-1],[0,-1],[-2,-1],[1,-1],[-4,0],[-4,-1],[-3,-1],[0,-1],[2,-2],[1,-4],[-3,-1],[-2,1],[0,-1],[1,0],[-3,-2],[1,-1],[1,0],[2,2],[2,1],[2,0],[1,1],[0,4],[-1,0],[-1,2],[5,1],[3,0],[1,1],[-2,0],[3,1],[6,3],[5,-1],[0,-1],[1,-1],[0,-1],[-1,0],[3,0],[0,1],[-1,2],[0,1],[-4,0],[-1,1],[3,2],[0,3],[0,1],[2,1],[7,-2],[7,1],[2,-2],[2,-1],[1,0],[-1,1],[-1,1],[-3,1],[2,0],[-2,1],[1,0],[-1,1],[-6,1],[-5,2],[-2,4],[1,0],[2,2],[3,1],[2,1],[2,0],[3,0],[2,0],[1,-1],[1,-1],[1,-1],[3,0],[-3,5],[-4,1],[-1,1],[1,2],[1,0],[1,-1],[2,-2],[9,-3],[2,-1],[3,1],[2,-1],[0,-1],[-1,-2],[1,0],[2,-1],[3,1],[0,1],[1,0],[2,0],[0,-1],[-2,0],[-2,-2],[0,-2],[0,-1],[1,1],[0,1],[4,0],[-1,-2],[-1,-1],[-1,1],[-1,-1],[1,-1],[1,0],[0,-3],[-3,-1],[3,0],[0,1],[2,0],[-1,-2],[0,-1],[0,-1],[-2,0],[-1,0],[-1,-1],[4,0],[0,-1],[4,0],[-3,-1],[-1,-1],[1,0],[-4,-4],[-1,-1],[-3,0],[-1,0],[1,-3],[2,-1],[-1,-1],[-5,-1],[-4,1],[-8,0],[-1,0],[1,-1],[-3,0],[-3,1],[-3,-1],[-3,-3],[-3,0],[0,1],[0,1],[-1,0],[-4,1],[3,-1],[0,-1],[0,-1],[-1,-1],[2,0],[1,-1],[-3,0],[-1,-1],[1,0],[-1,-1],[-1,-2],[-5,-2],[-2,-4],[1,-1],[-4,-1],[-3,0],[1,-1],[-2,-1],[-4,0],[0,1],[0,1],[1,0],[0,1],[2,5],[0,1],[-1,3],[-1,2],[-1,0],[0,-1],[0,-3],[2,-1],[-1,-2],[-2,-2],[-3,1],[-1,2],[-1,0],[-3,1],[3,-1],[-1,-1],[1,-1],[1,0],[3,-1],[0,-2],[-1,-1],[-2,0],[-2,1],[0,1],[0,2],[-1,0],[-1,-2],[-2,-1],[1,-1],[1,0],[0,-2],[-3,0],[-1,0],[-4,0],[3,-1],[-1,0],[0,-1],[6,2],[1,-1],[-4,0],[-1,-1],[-1,-3],[-4,0],[-1,0],[0,-1],[1,0],[1,-1],[-3,-1],[-1,1],[-3,-1],[-2,1],[1,1],[3,0],[-1,1],[-6,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,-1],[-2,0],[-5,1],[0,-1],[-2,0],[-3,1],[0,1],[2,1],[2,1],[10,6],[1,0],[-1,0],[1,1],[1,2],[4,2],[2,1],[2,0],[-3,0],[1,1],[-4,2],[-1,0],[4,-2],[-3,-2],[-4,-2],[1,0],[-7,-4],[-3,-1],[0,1],[-2,0],[0,-1],[1,-1],[-1,0],[-2,-1],[-2,0],[-5,-3],[-6,0],[-1,-1],[5,1],[2,-1],[-1,-1],[-1,-2],[-3,0],[-2,-2],[-1,0],[1,1],[-3,0],[0,-1],[-2,-2],[-4,1],[0,1],[-3,-2],[2,0],[3,0],[1,-1],[-7,-2],[-2,0],[-1,1],[2,2],[2,0],[-3,1],[-1,1],[1,0],[3,2],[2,1],[0,1],[1,1],[3,3],[2,1],[-1,0],[4,4],[3,1],[0,1],[2,1],[6,1],[1,0],[2,-1],[7,0],[-8,1],[-5,1],[-2,1],[-1,1],[2,0],[0,1],[-1,0],[2,1],[2,-2],[4,-1],[0,1],[2,-1],[1,1],[-6,0],[-1,1],[1,0],[0,1],[-3,1],[-7,1],[2,1],[1,2],[0,1],[2,1],[0,-1],[3,0],[4,0],[1,0],[0,-1],[1,0],[-3,3],[4,0],[0,1],[2,0],[2,1],[2,1],[1,0],[1,-2],[2,0],[-4,2],[3,1],[4,0],[5,0],[0,-1],[1,-1],[2,0],[2,1],[-2,0],[-2,2],[-6,1],[-1,0],[-3,2],[2,1],[-4,4],[2,2],[5,-1],[9,1],[1,-1],[4,-2],[3,-1],[-6,3],[0,1],[1,1],[-4,1],[-8,-2],[-2,2],[-3,0],[0,2],[2,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[4,0],[3,-2],[0,1],[-1,1],[2,1],[8,-1],[3,0],[-3,1],[1,1],[-5,0],[-4,2],[0,1],[2,3],[1,-1],[4,1],[-3,1],[0,2],[3,3],[0,1],[-2,0],[4,0],[5,1],[0,1],[1,0],[0,-1]],[[6791,9816],[1,-1],[1,0],[-2,2],[0,2],[4,-1],[1,1],[-3,1],[-1,0],[0,2],[-1,3],[-3,3],[4,-1],[1,1],[4,-5],[2,-2],[3,-1],[0,1],[0,2],[2,2],[4,-1],[-1,1],[2,1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-3],[-2,-1],[-4,-2],[-1,-1],[2,-1],[-2,-2],[-1,1],[-1,-1],[3,-1],[2,0],[2,2],[-1,2],[2,2],[2,0],[1,2],[2,0],[3,-1],[5,-2],[-3,-2],[-2,0],[0,-1],[-1,-2],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,0],[3,-2],[2,0],[1,0],[-1,0],[0,1],[2,3],[2,0],[3,-2],[-1,-2],[0,-1],[-2,0],[2,-1],[-1,-1],[0,-1],[0,-1],[3,0],[-1,-1],[-3,0],[-9,-1],[-2,-3],[-1,1],[-2,-1],[2,-2],[1,1],[1,-2],[-1,0],[-1,0],[-1,-2],[4,1],[1,-1],[-1,-1],[2,0],[1,-1],[-1,-1],[-2,-1],[-5,0],[0,1],[-2,-1],[4,-2],[2,0],[0,-1],[1,-1],[4,1],[2,-1],[-4,-2],[-11,-2],[-8,1],[-9,-2],[-1,0],[0,1],[-1,0],[-6,0],[-4,-1],[1,1],[1,1],[2,-1],[0,2],[-3,0],[4,2],[-1,1],[-3,0],[-3,0],[-1,-1],[-1,-1],[0,-1],[-2,0],[0,-1],[-2,-2],[-2,-1],[-4,0],[1,-1],[-5,-2],[-2,-2],[-6,-1],[2,-1],[-2,-2],[0,-1],[2,-1],[-1,1],[1,1],[2,0],[1,-2],[0,-1],[-1,-1],[-2,1],[-4,-2],[-9,0],[1,2],[-1,1],[-1,0],[2,0],[5,1],[-1,1],[-2,0],[-2,-1],[-2,0],[2,1],[3,0],[1,1],[3,0],[2,2],[-8,-1],[-1,0],[-3,-1],[0,1],[-3,0],[-2,0],[-2,-1],[-4,-1],[-8,0],[-1,0],[3,1],[-3,0],[0,3],[3,3],[4,0],[4,-2],[1,1],[-2,2],[4,1],[3,0],[1,1],[3,-1],[5,0],[0,1],[-3,1],[1,1],[4,1],[1,0],[4,1],[3,1],[-11,-2],[-3,2],[-13,1],[1,0],[2,0],[2,1],[-6,1],[3,1],[7,1],[1,0],[6,-1],[4,0],[1,1],[1,1],[-3,-1],[-1,1],[0,1],[2,2],[5,1],[-7,-1],[-2,-2],[-2,0],[-4,2],[6,0],[-5,1],[-5,-1],[-1,1],[6,2],[-1,0],[-7,-1],[-2,2],[12,2],[8,-3],[1,1],[-2,0],[-2,1],[3,2],[2,0],[-3,0],[-1,-1],[-3,0],[-5,2],[2,1],[12,-1],[-12,2],[-5,-1],[-8,0],[-2,2],[4,-1],[1,1],[1,0],[-1,1],[2,0],[-1,1],[1,1],[1,0],[2,-2],[7,1],[0,-1],[3,-1],[2,2],[0,1],[2,0],[-1,1],[3,0],[1,-1],[2,1],[5,0],[1,-2],[2,0],[8,-4],[1,3],[-11,2],[6,-1],[-5,2],[2,1],[2,-1],[6,0],[1,1],[1,0],[5,0],[0,1],[-4,1],[-5,-1],[-9,1],[-5,2],[1,1],[-1,1],[-1,1],[-1,1],[2,0],[1,0],[5,-2],[1,-2],[3,-1],[1,1],[-2,2],[0,1],[5,-1],[1,0],[-4,3],[-1,1],[-2,1],[-1,1],[1,0],[5,-1],[1,1],[3,-2],[1,1],[1,-1],[3,0],[1,-1],[0,-2],[-1,0],[0,-1],[2,1],[-1,1],[1,0],[1,0],[3,-1],[0,-1],[0,-1],[3,-1],[8,1],[-5,1],[-6,5],[-4,1],[0,1],[-4,3],[3,1],[-1,1],[0,1],[1,0],[5,-3],[3,-1],[0,-1],[2,-2],[2,-1],[0,-1],[-1,-1],[1,0],[2,-2]],[[7271,9961],[6,0],[-2,-1],[4,-1],[-4,0],[7,-2],[0,-1],[0,-1],[-1,0],[-6,1],[-1,1],[-1,-1],[-2,0],[6,-2],[1,0],[-5,0],[0,-1],[1,0],[-1,-2],[-3,-1],[-1,1],[-3,1],[0,-1],[1,-2],[1,-1],[-2,-1],[-2,1],[-1,0],[0,-1],[-3,0],[3,-2],[-2,-1],[-1,0],[-2,1],[-1,-1],[-4,3],[-2,-2],[3,-1],[-4,-2],[6,0],[-2,0],[-2,-2],[1,0],[-1,-1],[-8,0],[2,0],[1,-1],[3,0],[-1,-1],[-2,-2],[-2,-2],[-1,-1],[-1,1],[0,1],[-1,1],[-4,1],[0,-1],[3,0],[0,-2],[0,-1],[-1,-1],[-7,1],[0,1],[1,0],[-1,1],[-2,-1],[-1,0],[0,-1],[3,-1],[2,-1],[-1,-2],[-6,-1],[-1,2],[-1,-1],[0,-1],[-3,-1],[3,3],[-2,0],[-1,-2],[-1,0],[-4,-1],[0,1],[1,1],[1,2],[-2,-1],[-1,1],[1,1],[-2,0],[0,-1],[0,-1],[0,-2],[-2,-2],[-1,1],[0,1],[0,1],[1,2],[2,1],[-4,-1],[-1,1],[-2,0],[0,-1],[1,0],[-1,0],[-2,1],[-1,0],[1,-3],[1,0],[0,-1],[0,-1],[-1,0],[-2,2],[-1,-1],[1,-1],[-2,-2],[-2,1],[-1,1],[0,-1],[-2,0],[-2,2],[-1,1],[-1,0],[0,-2],[0,-1],[0,-1],[-2,-1],[-3,1],[0,1],[1,1],[0,1],[-1,0],[-2,-1],[-2,0],[0,-1],[1,0],[-2,-1],[-2,-1],[-2,1],[0,1],[0,3],[1,1],[-5,-2],[0,-1],[0,-2],[0,-1],[-2,0],[-1,0],[-5,0],[2,-1],[-1,0],[-4,1],[-2,-1],[-1,1],[4,0],[1,1],[-1,1],[2,0],[-3,1],[1,1],[3,1],[1,0],[-1,1],[1,0],[2,1],[3,0],[2,1],[1,1],[-5,0],[0,1],[7,2],[2,1],[-1,1],[-4,-1],[-2,1],[-4,0],[-1,0],[-3,-1],[-2,0],[-1,-2],[-1,0],[0,1],[-3,0],[-2,-1],[-1,0],[-3,1],[0,2],[2,1],[2,-1],[2,2],[-3,1],[-4,-1],[1,0],[-4,1],[2,1],[-1,1],[3,1],[1,-2],[10,0],[1,0],[0,-1],[2,-1],[1,0],[2,1],[4,0],[1,0],[-1,2],[0,1],[-3,1],[1,0],[3,0],[0,-1],[2,-1],[7,-2],[1,-1],[3,0],[0,2],[-2,0],[0,1],[0,1],[1,0],[-4,2],[1,1],[0,1],[3,1],[-1,1],[2,-1],[1,-2],[1,0],[2,-1],[-1,0],[3,-1],[1,0],[3,0],[-3,1],[1,0],[-2,1],[1,0],[3,1],[0,1],[0,1],[2,0],[3,-2],[3,0],[-1,-1],[1,-1],[3,1],[-1,-1],[2,0],[-1,-1],[-5,-1],[-3,-1],[1,-1],[0,-1],[0,-1],[6,2],[-4,0],[5,0],[-1,0],[1,0],[3,1],[1,-2],[0,-1],[-1,0],[1,-1],[1,-1],[1,0],[1,2],[-3,0],[3,1],[1,2],[1,0],[1,-1],[6,1],[-3,0],[-3,2],[-2,1],[3,1],[0,1],[-4,0],[2,1],[-2,0],[0,1],[1,1],[-2,-1],[-2,0],[-1,2],[1,1],[1,0],[3,1],[1,1],[5,0],[-3,-2],[2,-2],[1,0],[1,2],[4,-1],[-3,-2],[3,0],[2,1],[4,0],[0,-1],[-1,-2],[-4,-1],[4,0],[1,-1],[0,-1],[0,-1],[1,0],[3,0],[2,-1],[-2,3],[-1,0],[2,1],[4,0],[-2,1],[1,0],[0,1],[-1,1],[1,0],[3,1],[2,-2],[3,0],[-3,0],[-1,2],[3,1],[3,-1],[2,1],[-2,0],[-2,0],[-2,1],[-1,1],[3,0],[0,1],[-4,0],[-6,3],[3,0],[0,1],[4,-2],[1,1],[-2,1],[-3,1],[2,1],[5,-2],[5,-2],[0,1],[0,1],[-2,2],[1,0],[2,-1],[2,-2],[2,-1],[1,-1],[3,-1],[-2,2],[2,0],[1,0],[2,1],[-3,0],[0,1],[0,1],[2,0],[-3,2],[2,0],[0,3],[0,1],[1,-1],[2,-1],[3,-1],[-1,-1]],[[6578,9765],[1,0],[1,0],[3,-1],[0,-1],[-1,-2],[-2,-1],[-1,-1],[-4,-1],[3,0],[2,1],[3,0],[-2,-1],[5,-1],[0,-1],[-1,0],[-2,0],[-1,0],[3,-2],[2,0],[3,-1],[1,0],[-2,1],[2,1],[3,-1],[-3,-1],[0,-1],[2,0],[-1,-4],[-1,-1],[-1,-1],[-2,-2],[1,0],[2,1],[1,2],[1,0],[2,1],[0,1],[1,0],[1,-1],[3,-1],[0,-1],[-2,-3],[1,-1],[-1,-1],[-8,0],[3,-1],[0,-1],[0,-1],[-1,-1],[-3,0],[10,-2],[3,-1],[1,-3],[0,-1],[-1,-1],[-2,-1],[-1,-1],[-8,-2],[-2,-2],[-5,0],[-2,-2],[-3,0],[-9,-4],[-6,2],[-4,-1],[-5,0],[-1,2],[1,0],[3,0],[-2,2],[-4,0],[0,1],[-2,0],[-1,1],[3,0],[2,2],[1,-1],[2,1],[1,0],[-3,-1],[4,0],[4,2],[2,0],[4,1],[2,0],[-1,0],[1,1],[2,-1],[-1,1],[0,1],[4,2],[6,-2],[-3,1],[1,1],[0,1],[-2,1],[1,2],[1,0],[-6,1],[1,-1],[-6,2],[-1,-1],[1,0],[3,-1],[0,-1],[1,0],[2,0],[-3,-1],[-1,-1],[-1,-1],[-4,-2],[-2,1],[0,1],[2,0],[-1,2],[-2,1],[0,-1],[2,0],[-1,-2],[-2,0],[-1,-1],[1,-1],[-1,-1],[-1,0],[-3,-1],[-1,1],[0,1],[0,1],[-1,-1],[0,-2],[-3,-1],[-2,1],[1,2],[1,0],[0,2],[0,1],[-2,-2],[1,0],[0,1],[1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[-2,-1],[0,1],[1,1],[0,1],[-2,-1],[1,2],[-3,0],[0,2],[-1,-2],[0,-2],[0,-1],[0,-1],[-2,-1],[1,1],[-2,-1],[-1,1],[-1,0],[1,-1],[1,0],[1,-1],[0,-1],[-1,0],[-3,-1],[-1,-1],[-2,1],[1,0],[-2,0],[-1,-1],[-1,-1],[-1,0],[0,1],[-2,-1],[-1,0],[1,0],[-1,1],[-1,-1],[-1,0],[0,1],[-2,-1],[0,1],[1,0],[0,2],[-2,2],[1,1],[2,1],[1,2],[-3,-1],[-1,-1],[-2,0],[-1,0],[0,1],[3,0],[-5,1],[4,2],[5,-1],[-3,1],[-1,1],[4,2],[6,0],[3,0],[-1,1],[-3,0],[0,1],[-1,0],[-3,0],[-1,0],[0,1],[-3,0],[1,2],[1,0],[1,0],[3,1],[2,2],[0,1],[2,0],[2,0],[0,-1],[1,-1],[1,-4],[-2,-1],[0,-1],[4,-1],[-2,-1],[3,1],[1,1],[-4,0],[0,1],[0,1],[1,2],[4,0],[-2,1],[-1,0],[0,1],[0,1],[1,3],[1,0],[2,0],[1,0],[2,0],[0,-2],[0,-2],[-2,-2],[0,-1],[2,-2],[2,0],[1,2],[0,-1],[1,0],[0,1],[0,1],[8,2],[3,-1],[1,0],[-1,0],[-3,-3],[3,1],[1,-3],[-1,0],[1,0],[1,1],[0,2],[-1,0],[2,1],[1,1],[5,-1],[-5,1],[-1,1],[1,2],[4,0],[-5,1],[-2,2],[1,1],[5,2],[1,-1],[1,0],[1,-2],[1,-1],[0,-2],[0,-1],[0,-1],[2,0],[-1,1],[0,1],[1,4],[1,1],[2,0],[2,-2],[1,-1],[0,-1],[1,-1],[2,0],[0,4],[-7,2],[2,1],[0,1],[0,1],[-4,-1],[-1,0],[2,1],[-1,1],[2,1],[1,-2],[1,1],[-2,1],[-2,1],[0,1],[-2,0],[-1,1],[1,1],[1,4],[-2,0],[0,1],[2,0],[2,0],[2,1],[2,1],[2,0]],[[6889,9856],[0,-1],[-3,-1],[4,1],[2,-1],[1,0],[-1,-1],[1,0],[3,0],[1,-1],[3,1],[3,-2],[5,-5],[-4,-3],[-2,-1],[-3,0],[0,-1],[0,-1],[-2,-1],[-5,-2],[-7,0],[-1,-1],[-1,-1],[-3,-3],[1,-1],[2,0],[2,1],[2,0],[1,-4],[2,1],[0,-1],[-1,-1],[-2,0],[-1,-2],[-2,-1],[-3,-1],[-4,0],[-5,2],[-5,-3],[-30,-3],[-4,1],[-5,3],[-3,-1],[-3,1],[-2,1],[0,1],[1,2],[2,0],[-2,1],[2,0],[1,0],[-1,1],[1,1],[2,0],[0,-1],[1,0],[6,2],[-1,0],[0,1],[5,-2],[1,0],[-1,1],[2,0],[3,-1],[2,-2],[-1,-2],[2,3],[8,3],[-1,0],[-6,-2],[-3,0],[-2,1],[-3,3],[-1,2],[-2,3],[0,1],[13,-3],[2,1],[4,1],[16,-2],[2,1],[-7,2],[-18,0],[-1,0],[1,1],[-1,2],[-1,3],[0,1],[5,2],[2,0],[1,-1],[0,-1],[6,0],[1,0],[0,-1],[-1,-3],[2,0],[1,2],[1,1],[1,2],[0,1],[5,1],[4,0],[1,-1],[-1,-3],[1,0],[0,-1],[-3,0],[2,-2],[1,-2],[0,-2],[-1,-1],[1,0],[1,-1],[5,0],[2,0],[-4,1],[-1,1],[2,1],[0,2],[1,4],[4,1],[-3,1],[4,0],[0,1],[-4,1],[-6,2],[0,1],[2,0],[-3,1],[0,1],[0,1],[4,2],[4,-2],[1,0],[-2,2],[3,1],[4,-1],[1,-2]],[[6922,9880],[-2,-2],[1,0],[8,2],[0,-1],[-2,-2],[-1,-2],[3,-2],[1,-1],[2,-2],[2,0],[4,0],[-2,0],[-1,2],[2,3],[1,1],[2,-1],[2,2],[7,-1],[0,-1],[0,-4],[-1,-2],[3,1],[-1,1],[1,1],[2,2],[3,-1],[4,-2],[0,-3],[-3,0],[-2,-1],[-12,-2],[0,-1],[2,0],[-1,-3],[-4,-2],[-2,-2],[-3,-3],[-2,-2],[-1,0],[-9,-3],[-9,-1],[-4,0],[-1,0],[-1,2],[-2,1],[-2,2],[-6,2],[-1,1],[0,1],[-2,0],[-1,0],[-1,1],[-10,3],[-4,2],[1,3],[1,1],[6,-1],[4,-2],[0,1],[-2,0],[2,1],[0,-1],[3,2],[2,0],[-5,0],[-4,2],[0,1],[1,2],[3,1],[-1,0],[0,1],[8,0],[1,0],[-1,-1],[1,0],[2,0],[0,2],[2,0],[4,-1],[0,-1],[0,-1],[2,0],[-1,1],[3,0],[0,1],[-4,2],[-1,0],[0,2],[2,1],[0,-1],[1,-1],[1,1],[2,2],[3,0],[0,-1],[1,0],[1,1],[2,1],[3,0],[0,-1]],[[7280,9938],[2,-1],[5,1],[-1,-1],[0,-2],[2,0],[1,0],[0,-1],[-1,-1],[-1,-2],[-2,0],[0,-1],[1,0],[-1,-1],[-1,0],[0,-2],[6,-1],[4,-2],[-2,0],[0,-2],[0,-1],[1,-3],[-7,-3],[-4,-2],[-4,0],[-3,1],[1,-1],[3,-1],[-2,-2],[-3,0],[1,-1],[-1,-1],[-8,0],[-3,0],[0,-1],[4,0],[2,-1],[0,-1],[-2,-1],[-4,-1],[-2,0],[0,-1],[-9,-2],[-7,2],[0,1],[-1,1],[1,1],[-2,1],[1,2],[1,0],[3,1],[1,2],[1,3],[0,1],[-2,-2],[-3,-3],[-5,-3],[-2,1],[0,1],[-1,1],[0,-2],[-2,0],[-4,2],[-1,1],[1,1],[0,1],[-5,1],[-2,1],[2,1],[4,-2],[5,0],[-1,1],[-4,1],[-1,0],[0,1],[-1,2],[1,1],[2,1],[4,-1],[0,1],[0,1],[1,0],[3,0],[-1,1],[0,1],[3,1],[7,2],[4,-2],[0,-1],[-2,-1],[2,0],[1,1],[0,1],[1,2],[5,0],[-7,1],[-1,1],[-1,0],[0,1],[2,0],[1,0],[-1,0],[3,0],[3,0],[1,-3],[2,-1],[-1,-3],[-1,-1],[2,-1],[-3,0],[-1,-1],[5,2],[1,1],[1,2],[-1,1],[4,2],[-5,-1],[1,1],[-3,2],[5,0],[2,-1],[4,0],[2,-1],[1,1],[-4,1],[0,1],[6,1],[4,-1],[2,-3],[2,1],[-6,3],[3,1],[-1,1],[-4,0],[-1,1],[2,1],[1,1],[-5,-1],[-1,1],[-3,1],[4,1],[7,0],[1,0],[-1,-1]],[[6581,9703],[-2,-1],[0,-1],[-1,-1],[-4,-3],[-2,-2],[-3,0],[-1,0],[-1,-1],[-6,0],[6,0],[-2,-2],[-5,-2],[1,0],[-3,-1],[-1,-1],[-2,-1],[-2,0],[-1,-1],[-5,-2],[-3,-1],[0,1],[2,5],[5,2],[-4,-1],[-1,2],[0,1],[-3,1],[0,-1],[1,-1],[-1,-1],[-5,-1],[1,0],[4,0],[1,0],[0,-1],[-1,-1],[-1,-2],[-3,0],[2,-2],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[4,-2],[-1,0],[-2,-1],[-1,1],[-4,0],[-1,0],[1,0],[-2,-2],[0,1],[0,1],[2,0],[-1,1],[-3,-1],[1,-1],[0,-1],[-2,-1],[-2,0],[-2,-1],[-2,0],[1,0],[0,1],[-3,-1],[-2,1],[-1,-1],[1,0],[1,-1],[-3,-1],[-2,1],[-1,0],[1,1],[-1,0],[0,-1],[1,-1],[-1,-1],[-5,0],[-4,-1],[-2,0],[0,1],[3,2],[-2,-1],[-1,1],[0,2],[0,2],[1,0],[5,1],[0,1],[4,-1],[0,1],[5,1],[-9,-1],[-1,0],[0,1],[2,2],[5,0],[-4,2],[0,2],[2,3],[1,0],[4,-1],[1,-1],[0,-1],[2,-2],[1,1],[-2,2],[3,0],[0,1],[-1,0],[0,1],[2,1],[1,-2],[-1,-1],[1,-1],[1,0],[1,0],[0,1],[-1,0],[2,1],[-1,0],[-1,1],[1,1],[-1,1],[-2,0],[2,-1],[-4,0],[-1,1],[1,1],[0,1],[-3,0],[1,1],[6,0],[3,2],[1,-1],[1,-2],[2,-1],[0,1],[2,1],[-1,1],[-1,1],[-3,1],[6,1],[0,1],[4,0],[2,-1],[2,-1],[-2,-1],[1,-1],[2,-1],[1,0],[-1,1],[-1,1],[0,2],[0,1],[2,1],[0,-1],[2,0],[8,0],[0,-1],[-1,-1],[2,0],[-1,-3],[-6,-2],[0,-1],[8,4],[2,-1],[1,0],[-3,3],[2,2],[1,1],[-1,1],[-1,0],[3,0],[-1,0],[0,-1],[7,0],[1,-1],[1,0],[-1,2],[3,0],[1,1],[9,0],[1,1],[-1,0],[3,0],[1,0],[0,-1],[-3,-2]],[[6663,9798],[-1,0],[0,-1],[3,-3],[2,0],[-1,-1],[0,-2],[-4,-2],[-2,-3],[-1,-3],[1,-1],[-1,-2],[-2,-2],[-2,0],[-3,-1],[0,-1],[-3,-1],[-2,-2],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-4,-2],[2,-1],[-5,-2],[-4,0],[-1,-1],[-4,-1],[-1,0],[-2,-1],[-3,0],[1,0],[-1,-2],[-1,0],[-1,1],[2,1],[-1,1],[-1,1],[-6,1],[-1,-1],[2,-1],[3,0],[1,-1],[-2,-3],[1,0],[-2,-4],[-2,-2],[-5,-3],[-4,1],[-2,2],[1,1],[2,2],[0,3],[-1,2],[-1,1],[1,0],[2,2],[0,1],[0,1],[4,1],[0,1],[0,1],[2,2],[3,2],[-1,1],[1,1],[2,0],[2,1],[-1,1],[1,0],[4,1],[1,0],[-1,1],[5,0],[0,1],[2,-1],[4,2],[2,1],[0,1],[0,2],[3,0],[1,1],[-1,2],[-1,0],[2,1],[0,1],[-2,0],[2,1],[3,1],[6,2],[2,2],[4,0],[3,2],[3,0],[1,1],[1,0]],[[7464,9998],[1,-3],[2,1],[1,0],[2,1],[2,0],[2,1],[2,-1],[-2,-1],[2,-1],[-2,-2],[-3,-2],[3,1],[0,-1],[4,1],[3,1],[-4,-2],[4,0],[4,2],[1,-1],[1,-1],[1,2],[2,1],[4,-1],[2,-2],[-3,-1],[-3,-2],[-5,0],[-1,-1],[-6,-1],[5,-1],[3,-1],[0,-1],[3,-1],[-1,-1],[-6,0],[1,-1],[9,0],[1,1],[2,0],[1,-1],[1,0],[1,2],[2,2],[5,1],[6,1],[0,-2],[-1,-2],[-4,-2],[-5,-1],[1,0],[-1,-1],[-7,-1],[-1,-1],[-2,0],[-2,0],[0,2],[0,1],[-3,-1],[0,-1],[-2,-2],[-5,2],[-5,-1],[1,0],[-5,2],[-4,-3],[-2,0],[5,-1],[1,-1],[-4,0],[-7,1],[1,-1],[-5,-1],[-5,1],[-1,1],[0,1],[-1,1],[-7,2],[10,3],[4,0],[-1,2],[-7,0],[-2,-1],[-1,1],[-2,-1],[-9,-2],[-2,1],[-2,2],[4,1],[-5,0],[1,2],[8,1],[-6,1],[-1,2],[4,-1],[5,0],[-2,1],[1,0],[4,-1],[3,-1],[2,1],[-2,1],[1,2],[2,-2],[2,1],[4,0],[2,0],[-1,-1],[-1,-1],[4,0],[1,1],[8,-3],[0,-1],[2,0],[1,1],[-3,2],[-3,2],[-5,1],[-3,1],[3,1],[-6,1],[-1,1],[2,1],[2,-1],[7,2],[2,1],[-1,-1]],[[6063,9184],[-2,-2],[-3,0],[2,0],[2,-1],[0,-1],[-1,-1],[-1,-1],[1,-1],[1,1],[2,1],[1,1],[2,0],[2,0],[2,0],[4,-2],[1,0],[0,-1],[-1,-1],[-1,-2],[3,3],[2,0],[1,-1],[0,-1],[-4,-1],[-1,-1],[-5,-2],[-5,-1],[-2,0],[-7,-3],[-6,-1],[0,1],[-3,0],[-3,-1],[-1,0],[0,1],[-6,-2],[-2,1],[-4,-2],[-3,-1],[-2,-1],[-2,-1],[-12,0],[-1,0],[-2,2],[2,0],[-2,0],[1,1],[-5,0],[0,3],[5,2],[-6,-2],[0,1],[4,2],[3,1],[-2,0],[1,1],[3,1],[5,2],[1,0],[1,0],[2,0],[4,0],[5,1],[3,1],[5,-2],[3,1],[-2,0],[-3,0],[-3,1],[-1,0],[-2,1],[-6,1],[4,2],[4,1],[2,0],[3,0],[0,1],[1,0],[12,1],[1,0],[0,-2],[-1,0],[-1,-1],[2,0],[2,1],[3,0],[-3,1],[-2,1],[1,0],[1,1],[0,-1],[1,0],[3,1],[4,1],[1,-1],[0,-1]],[[6483,9692],[2,-3],[0,-1],[-1,-1],[0,-1],[2,0],[0,-1],[-3,0],[-3,-1],[-2,0],[1,1],[-2,2],[-3,-1],[2,0],[2,-2],[0,-1],[3,1],[2,-1],[2,0],[1,0],[1,0],[1,2],[3,1],[4,-1],[3,-2],[-4,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,1],[-1,-1],[1,0],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-2,2],[-1,0],[-2,-2],[0,1],[-3,-1],[-3,0],[0,1],[-1,0],[-4,0],[2,-1],[1,1],[1,-1],[-2,0],[-1,-2],[-3,0],[-2,-1],[6,0],[1,-3],[0,-1],[-2,0],[-5,-1],[0,1],[-1,1],[-1,1],[1,0],[-1,2],[-1,0],[0,-2],[0,-2],[-3,0],[0,-1],[2,0],[0,-3],[-2,0],[-1,0],[0,1],[-5,-1],[2,2],[-3,-1],[-1,1],[3,1],[-1,2],[-1,0],[-2,0],[4,2],[-2,-1],[-1,-1],[-3,1],[-1,-1],[-1,0],[-1,-1],[3,0],[0,-1],[-1,0],[-1,-1],[2,0],[1,0],[0,-1],[-1,-1],[-3,0],[-1,-1],[-1,-1],[-2,-1],[-1,1],[-2,2],[0,1],[2,3],[1,1],[4,1],[0,1],[-1,0],[1,1],[2,0],[0,-1],[1,1],[1,1],[2,0],[-2,1],[-1,0],[-1,-1],[-3,-1],[-4,-1],[-1,0],[2,1],[0,1],[1,0],[2,0],[2,1],[-3,-1],[-5,1],[3,1],[2,0],[2,1],[-1,0],[-4,0],[0,1],[6,3],[9,1],[-5,0],[3,1],[1,0],[-7,-1],[-5,1],[3,1],[3,1],[-1,1],[0,1],[3,0],[4,2],[3,0],[2,-1],[1,0],[0,-1],[1,-1],[1,-1],[3,-1],[3,0],[-3,-1],[0,-1],[2,0],[4,0],[0,1],[-4,1],[-2,2],[-1,0],[-3,0],[3,2],[1,0],[1,-1],[1,0],[1,0],[2,1],[-1,1],[3,0],[-1,1],[2,1],[3,0],[1,0],[-1,1],[0,1],[3,0],[4,0]],[[7308,9949],[-1,0],[4,0],[-5,-2],[-1,-1],[3,0],[4,2],[6,-1],[1,0],[4,0],[0,-1],[2,0],[2,-1],[4,-3],[-4,-1],[5,0],[1,-1],[-1,-1],[2,0],[0,-1],[1,-1],[0,-1],[-2,-2],[-10,-4],[1,-1],[-1,-1],[-2,-1],[-6,-1],[-10,0],[-4,1],[0,1],[1,0],[-2,3],[-3,1],[1,0],[-1,3],[-3,1],[0,1],[-2,-1],[1,0],[-1,-1],[-2,1],[5,2],[1,2],[0,1],[-4,-1],[6,3],[-3,0],[-1,1],[-2,1],[0,1],[0,2],[1,1],[2,1],[1,2],[1,0],[10,0],[0,-1],[1,-1],[0,-1]],[[7051,9896],[0,-1],[3,-1],[1,0],[1,-1],[0,-1],[0,-1],[-2,-2],[-1,-1],[-2,-3],[-1,-3],[4,-3],[1,-2],[-6,-1],[-6,0],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[-2,-1],[-5,0],[-1,0],[3,4],[-2,2],[0,2],[-1,0],[0,-2],[1,-1],[-1,-1],[-2,-1],[-2,1],[1,-3],[-1,0],[-4,0],[-4,1],[-2,1],[0,2],[0,4],[0,2],[1,2],[1,0],[1,1],[0,1],[5,2],[4,0],[1,1],[-1,1],[2,1],[6,1],[5,0],[3,1],[4,-1]],[[7214,9913],[2,-4],[-1,-2],[2,2],[0,3],[4,1],[2,-1],[0,-1],[0,-2],[-1,0],[2,-3],[1,0],[1,1],[-1,1],[1,0],[3,0],[2,-2],[-2,-1],[7,2],[-1,-2],[-2,-1],[-1,-2],[4,1],[4,-4],[0,-1],[-1,-1],[-9,1],[-10,0],[-4,0],[0,1],[-3,-1],[-5,1],[-5,0],[0,1],[-1,0],[-6,2],[-7,1],[-2,2],[-2,1],[-1,1],[1,1],[5,1],[3,0],[2,-3],[2,0],[-1,1],[-1,2],[-2,1],[1,1],[4,0],[1,0],[1,-2],[2,1],[-1,2],[3,0],[1,0],[-1,-1],[0,-1],[1,-1],[1,0],[-1,1],[1,2],[2,1],[1,0],[1,-2],[0,-1],[1,-1],[0,2],[-1,2],[1,0],[2,0],[1,0]],[[5784,8866],[0,-1],[2,1],[2,-1],[1,-1],[-1,-2],[0,-2],[0,-3],[0,-1],[-1,-2],[0,-3],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-4],[0,-1],[-2,1],[-2,-1],[-3,-2],[-1,-1],[-1,-1],[-4,0],[-2,-1],[0,1],[-1,0],[-2,1],[0,1],[1,0],[-3,1],[-1,1],[-1,1],[-2,1],[0,1],[-2,1],[-3,1],[-2,1],[0,1],[5,2],[2,1],[4,-4],[2,-1],[-1,1],[-1,1],[-3,3],[2,1],[1,0],[0,2],[1,1],[1,0],[2,-1],[-1,1],[-1,0],[1,1],[1,0],[3,0],[3,1],[1,2],[1,3],[2,2],[-1,0],[-1,-1],[-1,1],[0,1],[4,1],[1,-1],[1,0]],[[5807,9053],[1,0],[1,0],[2,-1],[1,-2],[2,-2],[0,-1],[3,-1],[1,-1],[-1,-1],[2,1],[2,0],[-1,-1],[-2,0],[-7,-5],[-2,0],[-2,-1],[0,-1],[-4,-3],[-8,0],[1,1],[1,0],[2,0],[1,1],[0,1],[-1,1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[2,0],[0,-1],[-1,-2],[-1,0],[-2,-1],[-3,0],[-10,-2],[-1,0],[-1,1],[-1,2],[-1,0],[-2,1],[0,1],[1,0],[2,-1],[1,0],[1,1],[5,-2],[0,1],[-3,1],[-4,0],[-3,2],[0,1],[2,0],[1,-1],[1,1],[-3,1],[0,2],[1,0],[1,1],[5,0],[1,0],[3,0],[1,1],[2,-1],[0,1],[2,0],[1,0],[-1,-1],[0,-2],[3,1],[-1,-1],[1,0],[2,1],[1,0],[1,0],[1,-1],[2,1],[-2,1],[2,1],[0,1],[-1,0],[0,-1],[-3,0],[1,0],[-2,-1],[-2,0],[1,0],[1,2],[-3,1],[2,0],[4,0],[0,1],[2,-2],[1,1],[-2,2],[-3,0],[1,0],[1,1],[-1,1],[0,2],[2,2],[0,1],[1,0],[3,1],[5,1]],[[6960,9897],[-1,0],[1,-2],[1,0],[0,1],[4,0],[1,-2],[1,-1],[0,-3],[1,-2],[1,0],[2,0],[1,2],[1,1],[0,1],[0,2],[1,0],[2,-2],[4,0],[1,-1],[0,-1],[-2,0],[-1,-1],[2,-1],[1,-1],[3,-2],[2,0],[0,1],[-1,1],[-1,0],[1,0],[2,0],[1,-1],[0,-1],[-4,0],[4,-1],[4,0],[2,-1],[4,0],[0,-1],[-3,-1],[-7,-1],[-2,-1],[2,0],[-1,-2],[-2,0],[-7,-1],[-2,1],[-10,0],[-3,1],[0,1],[0,2],[-2,0],[1,1],[2,0],[-2,3],[-4,2],[2,1],[-7,5],[-6,2],[-1,1],[1,2],[0,1],[5,-2],[-1,1],[0,1],[1,2],[1,1],[4,0],[1,-1],[1,-2],[1,-2]],[[6684,9715],[6,-3],[-1,-1],[-1,-1],[5,-2],[1,-1],[1,-1],[-8,-1],[0,-1],[2,0],[2,-1],[-5,-2],[-5,-1],[-1,1],[-1,-1],[1,0],[-1,0],[-2,0],[-3,1],[-2,-1],[1,0],[-5,-1],[-1,-1],[-3,-1],[-2,0],[1,0],[-3,1],[1,0],[1,1],[-4,0],[0,1],[3,2],[1,0],[1,1],[9,0],[0,1],[-10,-1],[-1,1],[1,2],[3,0],[-1,1],[0,1],[3,1],[0,2],[2,0],[1,1],[1,2],[5,0],[1,0],[4,1],[3,0]],[[6411,9667],[0,-1],[0,-1],[4,1],[0,-1],[0,-1],[-4,-1],[-1,-2],[1,0],[0,1],[2,0],[1,-1],[-5,-2],[-2,1],[0,-1],[-3,0],[0,-1],[2,0],[0,-1],[1,0],[6,3],[1,-3],[-1,-1],[0,-2],[2,-2],[-1,-1],[-1,0],[-2,-1],[-2,0],[0,1],[-1,1],[-1,-1],[0,-1],[-2,0],[-2,1],[0,1],[-2,2],[-1,-1],[1,-1],[1,-1],[-1,0],[-3,1],[2,-1],[-2,-1],[-1,-1],[3,0],[4,-1],[4,1],[-3,-1],[1,-1],[0,-1],[-2,0],[-1,0],[3,0],[-2,-1],[0,-1],[-2,0],[1,-1],[-1,-1],[-2,1],[-2,-1],[-2,0],[-3,-1],[0,-1],[-2,0],[-1,-1],[-1,-3],[-6,0],[0,1],[-1,1],[4,0],[2,3],[-1,1],[-1,1],[0,1],[5,2],[0,1],[-1,1],[2,1],[0,2],[-1,0],[2,2],[2,0],[2,0],[-1,1],[-1,2],[2,1],[-1,1],[2,0],[1,0],[-1,0],[0,1],[1,1],[2,0],[0,1],[2,1],[0,1],[3,0],[2,0],[-2,1],[0,2],[-1,1],[3,0],[2,0],[1,0]],[[5987,9166],[4,-3],[2,-2],[-1,-1],[1,-2],[2,0],[1,-1],[1,-2],[-1,-1],[-1,-1],[-3,0],[-1,-1],[2,1],[0,-1],[-5,-1],[-1,0],[3,-1],[-3,0],[-2,1],[-2,-1],[-3,0],[1,0],[-2,0],[-2,0],[-1,1],[1,0],[-3,1],[0,1],[1,0],[3,-1],[5,-1],[-9,2],[-1,1],[-1,-1],[2,0],[-2,0],[1,0],[0,-1],[-2,1],[-3,0],[2,1],[4,2],[-4,-1],[1,0],[-1,0],[-3,-1],[-3,0],[-1,0],[2,1],[-1,0],[-2,1],[0,1],[3,0],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[3,0],[-5,1],[3,1],[2,1],[1,1],[2,0],[1,0],[1,0],[0,1],[2,0],[1,0],[3,1],[3,1],[2,0],[1,-1],[2,0],[2,2]],[[5755,8788],[1,-1],[1,1],[1,0],[2,-1],[1,-1],[-1,0],[1,-1],[4,-1],[3,-2],[1,-1],[2,-3],[1,-4],[-1,-3],[1,-3],[-1,0],[-1,0],[-1,-1],[0,-1],[-2,-2],[-1,-1],[-5,1],[0,1],[-2,1],[-1,1],[0,1],[-1,0],[-1,-1],[-1,1],[0,1],[0,1],[1,0],[1,-1],[1,-1],[-1,1],[-1,1],[0,1],[1,2],[-1,0],[0,-2],[0,-1],[-2,1],[-1,2],[0,1],[0,1],[0,1],[-2,1],[1,2],[1,0],[-1,1],[-1,1],[0,-2],[1,0],[-1,-1],[-1,0],[0,1],[0,1],[2,2],[2,0],[0,1],[-1,1],[2,-1],[0,2],[-1,1],[-1,0],[-2,0],[3,3],[1,-1]],[[6968,9859],[-4,-4],[-6,1],[-18,-3],[-2,1],[0,1],[2,1],[2,2],[5,4],[9,2],[5,2],[1,2],[2,0],[2,2],[3,2],[5,-1],[4,-3],[-9,-5],[-1,-4]],[[5786,8797],[1,-2],[0,-1],[-1,-2],[-1,-1],[1,0],[-1,-1],[-1,-1],[-1,0],[-2,-2],[0,-1],[-2,-2],[1,-1],[2,-1],[1,0],[-1,1],[1,0],[0,-2],[-2,-1],[1,2],[-1,0],[-1,-1],[-1,1],[0,1],[-2,-1],[-2,-3],[-2,0],[-1,0],[-1,2],[-1,4],[-1,1],[-2,-2],[-4,3],[-3,1],[-1,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[2,1],[0,-1],[2,0],[2,-1],[0,1],[-1,1],[-1,2],[0,1],[0,1],[1,1],[3,1],[2,-2],[1,0],[2,1],[-1,0],[-2,0],[0,1],[2,1],[3,0],[1,0],[0,-1],[2,0],[0,1],[2,1],[1,0],[1,1],[1,-1],[1,-2]],[[6392,9443],[-2,-2],[3,0],[1,0],[0,-1],[-7,-3],[-1,1],[-7,-2],[2,1],[-1,0],[-7,-2],[-13,-7],[-1,-1],[0,-2],[-1,1],[-3,-2],[-3,0],[-1,0],[1,0],[1,1],[2,0],[2,1],[1,1],[-1,0],[3,1],[-1,0],[-7,0],[-4,-2],[0,1],[1,1],[-2,-1],[0,1],[3,3],[1,0],[1,0],[2,0],[-1,1],[1,2],[2,2],[3,2],[7,3],[2,0],[7,1],[-4,-2],[-4,-2],[0,-1],[3,1],[6,2],[3,1],[14,2],[-1,0]],[[5729,8837],[-2,-1],[1,-1],[2,0],[1,-1],[0,-1],[-1,-2],[1,1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-2],[-1,-1],[0,-2],[1,0],[0,-1],[-1,-1],[-1,1],[0,-1],[-1,0],[-3,2],[0,-1],[1,0],[2,-1],[1,0],[0,-1],[3,-3],[1,-2],[0,-2],[-3,-2],[-3,0],[-1,2],[-2,3],[0,1],[0,-2],[-1,-1],[-1,0],[-2,1],[-1,0],[1,0],[-3,1],[1,0],[3,0],[0,-1],[0,1],[-3,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,3],[0,3],[2,-1],[0,-1],[2,0],[1,1],[3,0],[0,-1],[2,3],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,0],[-2,5],[-2,3],[0,2],[1,0],[-2,3],[0,1],[1,2],[1,1],[1,-2],[0,-1],[-1,1],[1,-1],[1,0],[-1,1],[0,1],[0,1],[1,-1],[2,-1],[0,-1]],[[6776,9750],[-2,-3],[-11,-4],[-6,-2],[-3,0],[-3,1],[-1,2],[1,1],[-3,4],[-1,0],[-1,2],[-2,1],[0,1],[1,1],[0,1],[1,0],[4,-1],[1,0],[-1,0],[0,-1],[1,-1],[4,-3],[5,-1],[1,0],[-6,2],[-4,4],[2,1],[3,0],[11,0],[4,-4],[3,0],[2,-1]],[[5742,8778],[2,-2],[2,-2],[1,-1],[1,0],[1,-2],[1,0],[0,-1],[-1,0],[-1,2],[0,-2],[1,-1],[1,0],[1,1],[0,1],[2,-2],[1,-2],[0,-1],[1,-1],[1,0],[0,-1],[0,-3],[2,-1],[2,0],[0,-2],[-2,0],[-2,-2],[-4,0],[2,0],[1,0],[0,1],[-1,0],[2,1],[0,2],[-1,0],[-1,1],[1,1],[1,0],[-2,0],[0,1],[-1,0],[-1,-1],[1,0],[1,0],[0,-1],[-2,0],[-2,0],[0,2],[-1,0],[-1,0],[-1,0],[1,-1],[0,-3],[-1,-2],[0,-1],[-1,-1],[-1,0],[-1,-2],[2,0],[-2,0],[2,1],[1,1],[1,-1],[-1,0],[-1,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[-2,-1],[3,1],[0,-1],[-1,-1],[-3,-2],[-1,0],[-1,1],[0,1],[-1,2],[2,2],[-1,0],[-2,2],[0,3],[1,4],[2,2],[1,1],[2,-1],[1,1],[-1,0],[0,1],[1,0],[1,0],[-1,1],[0,-1],[0,1],[-2,0],[-2,-1],[-1,0],[-2,1],[0,1],[1,0],[0,2],[-1,-1],[0,-2],[-1,-1],[-1,0],[-1,1],[-1,1],[0,2],[2,2],[2,0],[-1,1],[0,1],[1,0],[2,-2],[0,1],[-1,1],[-1,1],[1,0],[2,0],[1,-2],[0,2],[-2,1],[-1,1],[-1,0],[0,2],[1,0],[1,0],[0,1]],[[7814,9861],[4,-1],[3,1],[3,-1],[3,-2],[-2,-1],[2,1],[1,-1],[-2,-2],[4,0],[-2,-2],[-4,0],[-4,-1],[0,-1],[2,0],[1,1],[3,0],[2,0],[1,-1],[1,1],[4,1],[2,-1],[-2,-1],[-4,-1],[-1,-1],[-5,-1],[-6,-2],[-3,1],[-1,2],[-2,0],[3,-2],[0,-2],[-12,0],[2,1],[1,4],[2,1],[2,0],[1,0],[1,4],[0,1],[-1,2],[0,1],[0,2],[3,0]],[[5752,8723],[0,-2],[-1,-1],[-1,0],[1,-1],[2,-2],[1,1],[0,-2],[-1,0],[-2,0],[1,-2],[1,1],[0,-1],[1,-1],[1,-1],[0,-4],[-1,-4],[-1,-2],[0,-1],[-1,-2],[0,-1],[-2,0],[-1,0],[-1,0],[-2,1],[-1,-1],[-1,0],[-1,1],[1,1],[-1,1],[0,1],[-1,0],[-1,3],[0,2],[2,1],[1,2],[-1,0],[-1,0],[0,1],[1,3],[1,0],[1,0],[0,1],[0,1],[4,-3],[1,0],[0,1],[-1,-1],[-4,3],[-1,1],[0,1],[-1,1],[0,1],[0,1],[3,-1],[-1,1],[0,1],[1,0],[1,-1],[0,1],[2,0],[-2,1],[-1,1],[0,1],[0,1],[1,1],[3,-1],[2,-3]],[[5949,9128],[-2,-1],[4,0],[-1,-1],[2,-1],[-1,-1],[0,-1],[1,-1],[-2,-1],[1,0],[1,-2],[1,-2],[3,-1],[-1,-2],[-2,-1],[-5,-1],[-7,-3],[-4,-1],[-1,0],[1,1],[-2,1],[-5,2],[-4,0],[-1,1],[1,1],[4,2],[-1,0],[4,1],[1,0],[-1,0],[-1,0],[-3,1],[2,1],[4,1],[-4,0],[1,0],[2,1],[4,0],[1,0],[-1,-1],[-3,0],[1,-1],[3,1],[3,-1],[0,-1],[1,-2],[2,1],[0,2],[-2,1],[2,1],[1,0],[2,1],[1,1],[-1,-1],[-2,1],[0,1],[2,0],[0,1],[-1,1],[-2,0],[0,1],[1,0],[3,1]],[[6045,9201],[0,-1],[3,2],[0,-1],[0,-1],[0,-3],[1,-1],[1,-1],[0,-3],[-1,-2],[-3,-1],[-2,0],[-4,0],[-2,-1],[-2,1],[-2,-1],[-12,-1],[-3,-1],[-1,1],[10,2],[-9,-1],[-3,-1],[3,2],[-3,-1],[-4,0],[-3,-1],[-4,-1],[0,1],[-1,0],[1,0],[1,0],[-2,0],[4,1],[-3,0],[-1,0],[-1,0],[2,0],[-2,-1],[0,1],[4,1],[2,0],[1,0],[-1,0],[-1,1],[10,1],[-2,0],[3,0],[1,0],[4,1],[3,-1],[2,1],[1,1],[-4,-1],[2,1],[3,0],[0,1],[4,1],[-3,-1],[7,3],[5,1],[2,1],[-1,0],[-1,0],[-2,-1],[1,1],[-1,1],[1,-1],[1,1],[-1,1],[1,1],[1,-1]],[[6365,9464],[2,-2],[0,-1],[1,-2],[0,-1],[-1,-1],[1,-1],[-4,-2],[1,1],[-2,-1],[-1,0],[0,-1],[1,-1],[1,0],[3,1],[0,1],[-1,0],[2,1],[2,-1],[-1,-1],[-1,-1],[-3,-1],[5,1],[1,0],[0,-2],[-2,-1],[-4,-1],[-1,0],[1,0],[-3,-2],[-7,-3],[-14,-3],[-1,1],[1,1],[2,1],[-2,0],[5,1],[0,1],[1,1],[8,3],[-4,-1],[4,1],[-7,-2],[-1,1],[-4,-1],[3,2],[8,2],[2,0],[1,1],[-1,0],[-1,0],[4,3],[6,2],[-4,-1],[0,1],[4,0],[-5,0],[1,1],[-2,0],[-2,0],[-6,-2],[4,2],[-1,0],[2,1],[2,1],[-3,-1],[-2,0],[5,1],[-1,0],[2,1],[-3,-1],[6,1],[1,0],[-1,0],[1,1],[1,1],[-2,-1],[-1,1],[4,1]],[[6254,9287],[1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[2,0],[1,0],[3,0],[0,1],[3,0],[5,-1],[1,-1],[0,-1],[-2,-3],[-1,-2],[-2,0],[1,1],[-1,1],[-7,-1],[-2,2],[1,1],[-6,1],[-3,-1],[-2,1],[-1,2],[-1,1],[-1,2],[2,1],[1,0],[1,0],[1,1],[2,0],[0,-2],[1,0],[1,1],[-1,1],[-2,1],[-8,-1],[-6,1],[0,1],[0,1],[0,1],[1,2],[2,0],[0,1],[3,0],[4,-3],[-1,0],[9,-1],[1,-1],[0,-1],[1,0]],[[5745,8993],[3,-1],[1,0],[0,-3],[-1,0],[-8,0],[-1,-1],[-2,0],[1,1],[2,0],[1,1],[0,1],[-2,1],[1,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[-8,-4],[-4,-1],[-1,0],[1,0],[-1,2],[-1,0],[0,-1],[-1,0],[-1,2],[-1,1],[2,1],[3,-2],[0,1],[-1,1],[4,1],[-3,1],[-4,-1],[-1,0],[0,1],[-1,0],[-5,0],[-1,1],[4,3],[2,0],[3,0],[0,1],[-2,1],[1,0],[1,1],[2,0],[5,-2],[5,-1],[1,0],[11,-1]],[[6248,9324],[1,0],[2,0],[-2,0],[-6,-1],[1,0],[6,0],[1,0],[-1,0],[3,-2],[0,-1],[4,1],[0,-1],[-1,0],[-2,-2],[0,-1],[-1,-1],[-8,-3],[-1,0],[-1,-1],[-2,1],[2,1],[-4,-2],[-1,0],[1,1],[1,1],[-2,0],[1,1],[2,1],[-4,-1],[-1,0],[1,1],[1,1],[6,3],[-4,-1],[-1,0],[1,1],[1,1],[-3,-2],[-4,0],[2,1],[2,0],[1,1],[-2,0],[1,1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-5,-1],[-1,-1],[-1,-1],[-3,0],[0,-1],[-1,0],[-1,-1],[-2,1],[1,1],[1,1],[4,1],[0,1],[2,1],[-1,0],[1,1],[3,0],[1,1],[6,2],[3,1],[-1,0],[2,1],[1,0],[0,1],[2,1],[2,0],[1,0],[0,-1],[0,-1],[-4,0],[9,0],[-2,-1]],[[6020,9141],[2,-2],[1,1],[2,-1],[1,-2],[1,-1],[1,-1],[-3,-2],[-6,-1],[-3,1],[-1,-1],[-6,0],[-1,1],[-1,2],[-1,1],[-5,2],[0,1],[-1,0],[0,1],[1,-1],[0,1],[2,1],[-2,1],[-2,1],[4,1],[2,-1],[1,0],[2,0],[2,1],[1,0],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[1,0],[1,2],[-2,2],[0,1],[1,0],[-2,1],[0,1],[2,1],[4,1],[2,-1],[0,-2],[1,-2]],[[6677,9762],[3,-1],[4,1],[4,-3],[4,-1],[2,1],[1,-1],[4,-1],[1,0],[-1,1],[0,1],[3,1],[1,-1],[1,-1],[-1,0],[0,-1],[1,-1],[2,0],[-3,-2],[0,-1],[3,-1],[-7,-3],[-11,2],[-1,1],[-4,2],[-2,1],[0,1],[-8,2],[0,2],[4,2]],[[6435,9665],[-1,-3],[-1,-1],[0,-1],[-1,-2],[-2,0],[-1,2],[0,-1],[0,-1],[-2,0],[-1,-1],[0,-1],[-5,-1],[0,4],[-1,2],[-1,1],[0,-1],[0,-2],[-1,-3],[-1,-1],[-2,2],[-2,3],[3,2],[0,1],[3,0],[-1,1],[1,2],[4,0],[2,1],[2,-1],[-2,-2],[-1,0],[0,-1],[4,0],[0,3],[0,2],[-4,1],[2,1],[0,2],[1,1],[5,0],[3,-1],[3,-2],[-3,-1],[1,0],[1,-1],[-1,0],[-2,-2],[1,-1]],[[6746,9742],[2,-2],[2,1],[1,-2],[-1,-2],[-5,-1],[-10,-1],[-9,-2],[-5,1],[1,0],[2,2],[0,2],[5,1],[0,1],[0,1],[3,2],[0,1],[6,5],[1,-1],[0,-1],[0,-1],[3,-1],[1,-2],[2,-1],[1,0]],[[6550,9717],[5,-1],[1,1],[2,-1],[2,1],[0,-1],[7,-1],[1,-1],[-1,-1],[0,-1],[-4,-1],[-4,-2],[-6,0],[-2,0],[-4,0],[1,0],[-2,0],[-1,-1],[-1,0],[-1,1],[2,1],[-3,2],[-2,0],[-3,2],[-2,0],[0,1],[0,1],[4,2],[3,0],[1,0],[7,-1]],[[6505,9561],[-1,-2],[-3,-1],[0,-3],[0,-1],[3,0],[0,-1],[-1,-3],[-1,-1],[-1,-1],[-2,-1],[-2,1],[-1,2],[-1,4],[-1,1],[-3,0],[-3,2],[-3,-1],[-1,1],[1,2],[2,1],[1,1],[-1,0],[0,1],[1,2],[1,0],[1,1],[1,-2],[2,0],[3,-2],[0,-1],[4,2],[1,1],[0,1],[2,1],[0,1],[0,1],[4,1],[2,-1],[-2,-2],[0,-1],[1,-1],[-3,-1],[0,-1]],[[6309,9407],[1,0],[5,0],[-3,0],[-1,0],[3,0],[1,0],[1,0],[3,0],[-2,0],[0,-1],[1,-1],[0,-1],[-5,0],[3,0],[-2,-1],[4,1],[0,-1],[0,-1],[-2,0],[-1,-1],[0,-1],[0,-1],[-7,-4],[-2,-1],[1,1],[0,1],[0,1],[-2,-1],[-2,-1],[3,2],[-4,-1],[-1,0],[1,1],[-3,0],[-2,0],[-3,0],[3,3],[0,1],[1,2],[1,2],[3,1],[1,1],[3,0],[0,1],[3,-1]],[[7329,9982],[-2,-2],[1,0],[5,0],[8,-1],[-3,-1],[-2,1],[-2,0],[-2,-1],[-3,0],[1,-1],[-3,-2],[9,1],[-1,0],[6,-1],[2,0],[-4,-1],[3,0],[0,-1],[-7,-1],[2,0],[-1,-1],[-4,1],[-2,-1],[1,0],[-1,-1],[-6,0],[-1,1],[-3,0],[-3,1],[4,1],[-7,1],[1,1],[3,1],[-1,0],[1,1],[6,0],[2,1],[-12,-1],[0,1],[-4,1],[9,0],[-5,0],[5,1],[-5,2],[1,0],[8,1],[0,-1],[2,0],[1,1],[3,-1]],[[5723,8914],[0,-1],[0,2],[0,2],[-1,2],[2,0],[0,-1],[1,0],[1,0],[0,1],[-1,-1],[-1,1],[-1,1],[0,1],[1,0],[3,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-2],[0,-1],[-1,-2],[-4,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,2],[0,1],[0,2],[-1,0],[0,-1],[-4,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[1,1],[0,1],[0,3],[0,2],[-1,3],[-1,1],[3,1],[1,1],[1,0],[2,-1],[0,-2],[1,-3],[1,-1],[0,3],[-1,1],[-1,1],[0,1],[-1,3],[0,2],[2,0],[1,0],[2,-2],[0,-2],[0,-2],[1,-2]],[[7063,9871],[3,-2],[3,0],[-1,1],[2,1],[2,0],[3,1],[-1,-1],[3,0],[1,0],[-3,-2],[-3,0],[-3,-1],[-3,0],[3,-1],[-3,-2],[-8,-2],[-4,1],[-4,2],[1,1],[0,1],[-3,3],[-1,1],[2,2],[5,1],[5,-1],[2,-2],[2,0],[1,-1],[-1,0]],[[6921,9899],[2,-2],[1,-1],[-1,-1],[-2,0],[-1,-1],[1,0],[3,-1],[0,-2],[1,0],[-3,-3],[0,-1],[1,-1],[0,-1],[-3,0],[0,-1],[-1,-1],[-6,0],[-5,3],[-6,1],[7,2],[2,0],[-1,-1],[1,0],[2,-1],[0,2],[-2,2],[2,1],[4,0],[0,1],[-5,0],[-1,1],[3,1],[-4,2],[3,0],[1,0],[1,1],[2,-1],[0,1],[0,1],[3,-1],[0,1],[1,0]],[[6887,9877],[1,0],[0,1],[0,1],[4,2],[2,2],[2,0],[0,-2],[2,0],[-1,0],[5,-2],[-3,-1],[0,-1],[-2,-1],[-8,-1],[-2,0],[-2,-2],[-1,1],[-2,-2],[0,-1],[-1,-1],[-1,-1],[-2,1],[-3,2],[2,2],[3,0],[-1,1],[-3,-1],[-2,0],[0,1],[1,2],[1,1],[1,1],[3,0],[0,1],[-2,0],[2,1],[-2,2],[1,1],[1,0],[5,-2],[1,0],[0,-1],[0,-2],[0,-1],[1,-1]],[[7050,9861],[-4,-2],[-1,-3],[4,-3],[-1,-1],[-13,-4],[-2,1],[-1,1],[0,2],[-1,1],[0,1],[3,2],[0,1],[0,2],[2,1],[0,1],[5,-1],[8,2],[1,-1]],[[6309,9341],[5,2],[0,-1],[2,0],[-5,-3],[-2,-1],[-6,-3],[-8,-3],[-1,0],[-1,1],[0,1],[1,0],[0,1],[4,3],[4,2],[-2,0],[4,3],[2,1],[1,1],[3,2],[4,1],[0,1],[1,0],[2,0],[0,-1],[1,-1],[0,-1],[-2,-3],[-7,-2]],[[5723,8869],[3,-1],[-4,2],[2,0],[3,-1],[3,-1],[2,-2],[0,-1],[1,-1],[2,-2],[1,-1],[1,-1],[0,1],[-4,3],[3,-1],[0,-1],[6,-4],[2,-3],[1,-1],[1,-1],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[-4,2],[-4,0],[-1,1],[0,1],[-1,0],[-6,2],[1,0],[0,1],[-2,1],[-2,1],[-2,1],[0,1],[-1,0],[-2,1],[0,1],[1,0],[1,-2],[-1,2],[-2,1],[1,0],[2,-1],[-2,1],[-1,1],[-1,2],[5,-2],[-3,1],[-1,2],[0,-1],[5,-2]],[[6241,9329],[-1,-1],[3,1],[2,-1],[-2,-1],[-6,-1],[1,0],[-1,-1],[-2,-1],[-8,-3],[-1,1],[2,1],[-1,-1],[-1,-1],[-1,0],[-2,-3],[-6,-3],[-7,0],[1,1],[3,1],[-1,0],[-4,-1],[5,3],[1,0],[-1,-1],[3,1],[0,1],[-3,-1],[-1,-1],[-5,-2],[2,1],[1,1],[0,1],[-1,-1],[1,2],[3,0],[-1,1],[-3,0],[1,0],[2,1],[4,1],[1,1],[2,0],[-1,-1],[-4,-2],[1,0],[1,1],[2,1],[2,1],[-2,-2],[-2,-2],[1,0],[3,3],[7,3],[1,0],[-1,0],[-1,-1],[3,0],[0,1],[-1,0],[1,0],[4,1],[7,2]],[[5990,9140],[-1,0],[2,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[1,0],[-6,-1],[-3,-1],[-9,1],[1,0],[-3,-1],[0,1],[2,1],[-2,-1],[-1,2],[-3,1],[3,0],[-2,0],[1,1],[5,1],[-1,0],[4,1],[2,2],[1,0],[6,1]],[[5730,8848],[1,0],[2,-1],[1,-1],[1,1],[0,1],[4,-2],[1,-1],[2,0],[3,-2],[0,1],[2,-3],[0,-1],[-1,0],[0,-2],[2,-2],[0,-1],[0,1],[-4,-2],[-1,0],[-1,0],[0,-1],[-1,1],[-2,1],[0,2],[1,0],[-1,-1],[1,0],[1,1],[1,1],[-2,1],[-1,0],[-3,0],[0,1],[-1,0],[-1,0],[3,1],[-4,0],[0,1],[1,2],[1,-1],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[-1,-1],[-3,1],[-1,2],[-1,1],[-2,0],[-1,2],[0,1],[0,1],[5,-3],[1,-1]],[[5724,8857],[4,-1],[1,0],[-1,1],[2,0],[1,0],[2,-1],[2,-1],[5,0],[5,-4],[3,-3],[0,-1],[-1,-1],[-1,-1],[-6,3],[-4,0],[-1,1],[-1,0],[-3,0],[-2,2],[-2,1],[0,1],[1,-1],[1,1],[-1,0],[-1,1],[-3,1],[-1,1],[0,1],[1,0]],[[6575,9653],[4,-2],[-1,-1],[4,0],[2,0],[4,-1],[-2,0],[0,-1],[2,0],[1,0],[-1,0],[5,0],[-3,0],[2,1],[2,0],[0,-1],[-6,-2],[1,1],[-7,-2],[-4,0],[1,1],[-3,0],[-4,0],[-2,0],[0,1],[-6,-1],[0,1],[0,2],[-1,0],[1,1],[2,0],[1,1],[-3,0],[1,1],[1,0],[5,-1],[2,1],[-1,0],[1,1],[1,1],[2,1],[2,-1],[-3,-1]],[[6624,9659],[7,-1],[3,0],[7,0],[2,-1],[1,0],[1,-1],[1,-1],[-5,-2],[-2,0],[-7,2],[-2,0],[0,1],[-2,1],[-1,0],[-2,-1],[1,-1],[3,1],[0,-1],[-3,0],[-2,-1],[-4,0],[-7,0],[-2,0],[-2,1],[-1,0],[-1,1],[3,-1],[1,1],[-1,0],[1,1],[1,0],[9,2],[2,-1],[1,1]],[[5889,9088],[0,-2],[1,-2],[-7,-3],[-5,0],[-10,-3],[0,1],[0,1],[-1,0],[-1,1],[4,2],[-2,2],[2,0],[-1,1],[2,1],[1,0],[0,-2],[0,-1],[1,0],[1,1],[2,1],[4,0],[2,1],[7,1]],[[6770,9762],[-3,-1],[-2,1],[-1,1],[2,1],[-1,2],[2,2],[1,2],[2,1],[3,1],[5,0],[6,1],[1,0],[-3,-1],[-1,-1],[0,-1],[-2,-3],[-4,0],[-5,-5]],[[5971,9125],[0,-2],[-1,-1],[-1,-1],[-4,-2],[-2,-1],[0,-1],[-4,1],[-2,0],[-3,1],[0,2],[1,0],[1,-1],[0,1],[-1,2],[0,1],[4,1],[0,-1],[2,0],[1,1],[-1,0],[1,1],[7,0],[2,0],[0,-1]],[[6298,9344],[-1,-1],[-1,-1],[-4,-2],[-1,0],[-5,-2],[-4,-3],[-5,0],[-2,2],[2,1],[-2,0],[1,2],[1,1],[1,0],[1,0],[0,1],[1,1],[4,0],[4,1],[3,0],[0,-1],[2,-1],[3,2],[1,0],[1,0]],[[6028,9157],[2,-1],[2,1],[1,-1],[2,-2],[3,0],[-1,-1],[0,-1],[2,0],[-8,-3],[-5,0],[1,1],[0,1],[-2,1],[-2,0],[1,-1],[1,-1],[-1,0],[-5,0],[-2,1],[4,2],[1,-1],[1,0],[0,1],[-2,0],[0,2],[1,1],[6,1]],[[6276,9320],[1,-1],[1,0],[1,0],[0,-1],[-3,-1],[-9,0],[-11,-2],[-1,1],[0,1],[2,1],[4,2],[4,2],[5,2],[2,-1],[1,-2],[1,0],[1,0],[1,-1]],[[5727,9011],[2,-1],[1,0],[4,-3],[1,0],[0,1],[-1,1],[2,0],[1,0],[0,1],[3,-3],[0,-1],[-1,-1],[-1,-1],[1,-2],[-2,-2],[0,-1],[-2,-1],[-4,2],[-3,0],[0,1],[1,1],[1,1],[1,-1],[1,-1],[1,2],[0,1],[-1,1],[-1,0],[-3,0],[-2,1],[0,2],[0,3],[1,0]],[[6261,9294],[-1,-4],[0,-1],[-1,-1],[-1,-1],[-1,1],[-1,1],[-2,0],[0,1],[-1,1],[1,1],[-1,0],[-2,0],[0,-1],[-1,0],[-3,1],[-1,-1],[-1,1],[0,1],[3,0],[0,1],[-4,0],[5,1],[-4,0],[2,0],[2,1],[7,1],[2,1],[1,-1],[-3,-1],[5,0],[0,-2]],[[7135,9901],[-3,-2],[-1,0],[-2,2],[0,3],[1,4],[0,2],[-1,1],[2,0],[0,1],[-1,1],[1,0],[2,-1],[5,-2],[1,-1],[1,-1],[-1,-2],[-2,-1],[0,-2],[-2,-2]],[[5831,9055],[0,-1],[2,1],[3,-1],[-1,-1],[-1,0],[2,0],[5,1],[1,-2],[-3,0],[-1,1],[-1,0],[2,-1],[-1,-1],[-2,-1],[-11,0],[-5,1],[-3,1],[-1,1],[0,1],[1,0],[9,0],[4,2],[-1,0],[2,-1]],[[6496,9692],[3,-2],[4,0],[3,-3],[0,-1],[-2,-3],[-4,0],[-3,1],[-2,2],[1,0],[-1,0],[1,1],[1,1],[-7,0],[-2,2],[2,0],[1,0],[-2,0],[3,0],[-2,1],[1,1],[1,0],[4,0]],[[6951,9882],[-5,-1],[-13,2],[-2,2],[2,2],[5,2],[2,-1],[3,-2],[9,-3],[0,-1],[-1,0]],[[6384,9471],[1,0],[3,-1],[2,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-3,0],[-1,-2],[-1,0],[-1,-1],[-1,0],[2,1],[-1,0],[3,1],[-1,0],[-4,-2],[-1,0],[-1,0],[1,0],[-1,1],[-2,0],[0,1],[1,2],[-5,0],[2,1],[0,1],[4,1],[2,2],[1,0],[1,0],[1,1],[-1,-1]],[[7384,9991],[2,0],[2,0],[0,-1],[2,-1],[1,1],[4,0],[-4,-2],[3,-1],[-3,0],[-3,-1],[3,-1],[-3,-2],[1,-1],[-1,0],[-4,0],[-3,2],[-1,0],[-5,1],[0,1],[4,3],[4,-1],[0,-1],[2,-1],[1,1],[1,1],[-3,1],[-2,2],[2,0]],[[5815,8715],[2,-1],[3,-2],[0,-1],[-1,-1],[-3,-1],[-5,-1],[-3,-1],[-3,0],[1,1],[-1,1],[0,2],[0,1],[0,1],[2,1],[2,0],[1,0],[5,1]],[[5893,9099],[-1,-3],[-3,-1],[-2,0],[-1,0],[2,-1],[-1,0],[0,-1],[2,0],[-1,-2],[0,-1],[-4,1],[-2,1],[0,1],[-3,0],[0,1],[-4,0],[1,1],[3,0],[1,1],[-3,2],[3,1],[1,-1],[1,1],[1,-2],[1,0],[1,0],[0,1],[2,1],[4,1],[-1,-1],[1,0],[2,0]],[[5749,8799],[0,-2],[1,1],[-1,2],[3,-1],[1,-2],[0,-1],[0,-2],[-1,-2],[-2,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-3,0],[-2,1],[1,1],[-1,1],[-1,0],[-1,1],[2,0],[1,2],[-1,0],[0,-1],[-1,0],[0,2],[0,-1],[-1,-1],[1,2],[1,0],[2,-1],[-1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,1],[-1,1],[0,1],[-1,-1],[0,1],[-1,3],[-1,0],[-1,2],[0,1],[1,0],[1,0],[3,-3],[0,-1],[0,-1]],[[7061,9878],[-3,0],[-4,2],[-2,3],[4,4],[2,1],[2,-2],[1,-1],[1,-1],[4,-2],[-5,-4]],[[6564,9685],[-3,0],[-4,0],[5,-1],[-1,-1],[0,-1],[-2,-1],[0,1],[-1,0],[-1,-2],[-1,-1],[-1,0],[1,1],[-1,0],[-3,-1],[1,1],[-3,1],[0,1],[0,1],[2,2],[5,3],[4,0],[2,0],[1,-1],[0,-1],[0,-1]],[[5811,8800],[-2,-2],[-1,0],[1,2],[0,1],[-2,0],[0,1],[-1,2],[-1,1],[0,1],[5,3],[3,0],[3,-2],[0,-2],[-2,-1],[0,-1],[0,-1],[-3,-2],[-1,0],[1,0]],[[6559,9756],[2,-1],[3,0],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[-3,-1],[-4,0],[1,1],[-3,-1],[-1,1],[-3,0],[1,2],[1,1],[0,1],[-1,1],[1,1],[3,0]],[[6263,9290],[2,-2],[0,1],[-1,0],[0,1],[0,1],[2,-2],[2,-2],[2,0],[1,-1],[1,0],[-1,-1],[0,-1],[1,-1],[1,0],[-3,-1],[-3,0],[1,0],[0,-1],[-6,2],[0,1],[-2,0],[0,1],[1,1],[1,1],[0,-1],[2,1],[-1,0],[-1,1],[0,2],[-1,2],[1,0],[1,0],[0,-1],[0,-1]],[[6187,8703],[-3,-2],[-1,0],[-2,1],[-1,-1],[-1,-1],[-1,1],[0,2],[0,3],[1,2],[0,3],[1,0],[0,1],[1,0],[2,-1],[0,-1],[0,-1],[1,-2],[2,0],[0,-1],[-1,-2],[2,-1]],[[6400,9464],[-5,-1],[-2,1],[3,2],[1,1],[1,2],[10,1],[7,0],[-15,-6]],[[5758,8800],[5,-1],[0,1],[1,-1],[-1,0],[1,-1],[0,-1],[-1,1],[0,1],[-1,-1],[1,0],[1,-2],[0,-2],[0,-1],[0,-1],[-2,0],[-2,0],[-1,-1],[-1,-1],[-1,0],[0,2],[-1,2],[1,1],[0,1],[0,1],[0,1],[0,2],[1,0]],[[6007,9133],[-11,-1],[-1,1],[-1,2],[0,1],[0,1],[1,0],[-1,0],[-1,1],[6,2],[1,-3],[5,-2],[2,-2]],[[5782,8697],[3,-1],[1,-1],[1,1],[0,1],[4,-1],[1,-1],[1,0],[0,-1],[0,-3],[-2,-1],[-2,1],[-3,1],[0,1],[-1,0],[-1,0],[-4,2],[-1,1],[-2,0],[-2,0],[1,1],[1,-1],[-1,2],[2,0],[0,-1],[1,0],[3,0]],[[5721,8940],[2,-1],[1,0],[2,0],[1,1],[1,0],[1,-2],[0,-1],[-1,0],[1,-2],[1,-1],[-3,0],[1,-1],[-3,1],[-2,-1],[-1,0],[1,0],[-2,2],[-3,0],[-1,1],[0,1],[1,0],[2,2],[-1,0],[0,1],[2,0]],[[6517,9594],[-1,-2],[2,1],[1,0],[-1,-1],[-2,-3],[-1,1],[-4,-1],[-2,0],[-4,-2],[-1,1],[-3,-1],[1,2],[2,0],[2,1],[1,1],[2,2],[7,2],[1,0],[0,-1]],[[5789,8769],[0,-1],[5,0],[-1,0],[1,0],[3,-2],[1,-1],[0,-1],[-3,0],[-1,0],[-2,-2],[-2,-1],[-1,2],[1,1],[0,1],[0,2],[-2,1],[-1,1],[-1,-1],[-3,-1],[0,1],[0,1],[-2,0],[-1,2],[2,0],[1,-1],[1,0],[1,-1],[-1,-1],[2,0],[1,1],[0,1],[-1,1],[2,0],[1,-1],[0,-1]],[[6533,9573],[2,-2],[-16,-3],[-4,-1],[-1,0],[-1,1],[0,1],[12,4],[1,0],[-2,-1],[9,1]],[[5703,8905],[0,-1],[-1,1],[1,-1],[1,-1],[1,-1],[0,-2],[0,-2],[-2,-1],[-1,0],[0,1],[0,1],[1,2],[0,1],[-1,0],[0,-2],[-1,-2],[-1,0],[-1,1],[0,1],[-2,2],[0,3],[2,1],[1,2],[2,0],[1,-1],[0,-2]],[[6592,9653],[1,-1],[-5,-1],[0,1],[-5,-1],[0,1],[-1,0],[0,1],[1,0],[-2,2],[1,2],[4,1],[1,1],[-2,0],[1,1],[3,-4],[2,-2],[1,-1]],[[5726,8893],[3,-4],[0,-3],[1,-4],[-5,0],[-1,2],[0,1],[0,1],[0,2],[0,1],[-1,3],[1,1],[2,-1],[0,1]],[[5760,8709],[1,0],[1,0],[3,-2],[1,-2],[1,-2],[-2,-2],[0,-1],[-2,0],[0,1],[1,0],[-1,2],[-2,0],[-1,1],[-1,0],[0,3],[0,2],[1,0]],[[6391,9484],[0,-2],[-1,-2],[-5,-1],[0,1],[-1,0],[-1,0],[-1,1],[6,2],[1,-1],[-3,2],[-1,1],[0,2],[6,1],[1,-1],[-1,0],[-1,-2],[1,0],[0,-1]],[[6905,9838],[-3,-2],[-1,-1],[0,-2],[-5,-2],[-1,1],[0,1],[1,2],[-1,1],[0,1],[1,0],[1,0],[0,1],[4,0],[1,2],[3,0],[0,-2]],[[6073,9185],[1,0],[1,0],[1,1],[2,-1],[0,-1],[-2,-1],[-2,0],[-1,-1],[-3,-1],[-5,0],[-1,1],[1,2],[1,0],[1,0],[-1,-1],[1,0],[1,1],[-2,0],[2,1],[0,1],[-1,0],[5,0],[1,0],[1,0],[-1,-1]],[[6251,9202],[-3,-1],[-3,0],[-1,0],[-2,-1],[-1,-1],[-3,-2],[-2,0],[-1,-1],[-1,-1],[-2,0],[-1,1],[1,1],[2,1],[0,1],[0,1],[2,1],[2,0],[6,1],[4,1],[2,0],[0,-1],[1,0]],[[7008,9896],[-2,-2],[-1,1],[-1,1],[0,3],[0,1],[-1,2],[-2,1],[1,1],[2,1],[2,-2],[2,-2],[4,-2],[0,-1],[-4,-2]],[[6431,9524],[0,-1],[6,0],[3,0],[-1,-2],[-4,-1],[-13,0],[-1,0],[0,1],[8,3],[2,0]],[[6234,8691],[1,-1],[1,1],[2,0],[-1,0],[0,1],[2,0],[0,-1],[0,-1],[-2,-2],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,2],[1,1],[-1,3],[4,1],[1,-1],[-1,0],[0,-1]],[[6436,9527],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[2,2],[1,0],[5,1],[6,1],[7,-1],[-2,-1],[-10,-2]],[[5721,8876],[3,-1],[0,-1],[-1,0],[3,-2],[-2,0],[2,-1],[0,-1],[-1,0],[-1,0],[-6,2],[0,1],[-2,0],[2,1],[1,-1],[1,1],[-4,0],[-1,2],[0,1],[1,1],[5,-2],[-2,1],[0,1],[1,1],[0,-1],[1,-2]],[[6052,8625],[2,0],[-1,-2],[-3,-1],[-2,0],[2,1],[0,1],[-1,-1],[-2,-1],[-2,0],[0,2],[0,1],[2,0],[1,1],[1,-1],[2,2],[2,1],[4,2],[1,0],[1,0],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-2,0]],[[6407,9481],[-7,-1],[-1,1],[1,3],[3,2],[2,0],[3,-1],[2,-2],[-1,-1],[-2,-1]],[[6678,9660],[-1,-1],[-3,1],[-1,1],[-7,1],[2,1],[7,2],[3,-2],[1,0],[-1,-3]],[[7124,9876],[9,-4],[-1,-1],[-1,-1],[-2,0],[-2,1],[-9,2],[2,0],[-1,1],[5,2]],[[7328,9988],[2,-1],[5,1],[1,0],[1,-1],[-6,-1],[-1,-1],[1,-1],[2,1],[-4,-1],[-4,0],[-4,0],[-2,1],[0,2],[1,0],[3,-1],[2,-1],[1,0],[-1,1],[3,-1],[-1,2],[-3,1],[4,0]],[[6328,9383],[1,-1],[1,0],[1,-1],[1,1],[-2,-2],[-1,0],[-1,0],[1,1],[1,1],[-1,-1],[-3,-3],[-2,-2],[1,0],[3,2],[-1,-2],[-1,0],[1,0],[-1,0],[0,-1],[-1,1],[0,-1],[-1,-1],[0,-1],[-2,0],[-1,0],[0,1],[1,1],[-3,-1],[-1,2],[2,1],[4,2],[-1,-2],[2,2],[3,2],[-3,-1],[0,-1],[-1,0],[2,2],[0,1],[0,-1],[2,2]],[[6869,9853],[-2,-1],[-3,0],[-7,0],[-1,1],[2,1],[4,1],[-1,1],[1,0],[8,-1],[-2,-1],[1,-1]],[[6891,9892],[2,-1],[1,1],[1,-1],[0,-1],[0,-3],[-1,-1],[-4,1],[-4,0],[-1,1],[0,1],[3,0],[1,1],[0,1],[2,1]],[[6183,8700],[1,0],[1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,-3],[1,-1],[0,-1],[0,-1],[-2,-1],[-1,0],[0,2],[1,1],[0,1],[-1,1],[-1,1],[0,5],[1,0],[0,1],[1,0],[2,-1]],[[5801,8702],[0,-2],[-2,0],[-1,-2],[-2,0],[-2,0],[-1,1],[-1,1],[0,2],[1,0],[1,-1],[1,0],[-1,2],[1,1],[1,0],[1,1],[3,-2],[1,0],[0,-1]],[[5744,8788],[-5,-1],[-2,1],[-1,1],[0,2],[1,0],[1,1],[3,0],[2,0],[0,1],[1,0],[0,-1],[2,-2],[-2,-2]],[[5850,9063],[-2,-1],[-4,-1],[-1,-1],[-1,0],[1,0],[-1,1],[-7,-1],[-5,1],[1,0],[-1,0],[-3,-1],[-2,0],[1,1],[5,0],[0,1],[1,0],[1,0],[1,0],[0,1],[3,0],[2,-1],[2,0],[2,0],[6,1],[1,0]],[[6373,9459],[3,0],[3,0],[-1,-1],[-2,0],[0,-1],[1,-1],[0,1],[2,1],[3,-1],[1,-1],[0,-1],[-3,-1],[-3,0],[-1,0],[-3,0],[0,1],[1,1],[-1,1],[-1,0],[0,1],[0,1],[1,0]],[[6375,9621],[0,-2],[2,-1],[-3,1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,2],[-1,1],[-1,0],[-1,-1],[0,-1],[-2,1],[-3,-1],[0,-1],[1,0],[-1,-1],[-1,0],[-2,1],[5,3],[2,1],[5,2],[2,0],[-1,-1]],[[5709,8909],[1,-1],[1,0],[0,2],[1,-3],[-1,-3],[-1,1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,1],[-1,1],[0,3],[-1,2],[0,2],[3,0],[0,-1]],[[6397,9458],[-8,-2],[-2,1],[2,2],[0,1],[3,1],[4,1],[0,-3],[1,-1]],[[5713,8889],[3,0],[1,1],[1,-1],[3,-3],[0,-1],[-2,-1],[1,0],[1,1],[0,-1],[0,-1],[-4,1],[-1,1],[-1,1],[0,1],[-2,0],[0,2],[0,1],[2,0],[-2,-1]],[[6696,9764],[0,-1],[3,0],[1,-1],[0,-1],[-1,0],[-4,1],[-4,-1],[-2,1],[-1,0],[2,1],[1,2],[4,0],[2,0],[-1,-1]],[[5821,9069],[1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-2,3],[-3,-1],[1,-1],[-4,0],[-1,0],[3,0],[-3,1],[2,1],[0,1],[3,0],[-1,1],[1,0],[3,0],[-1,1],[-2,0],[1,0],[3,1],[1,-1],[-1,-1]],[[5922,9077],[-3,0],[-4,0],[-1,2],[1,1],[2,0],[3,0],[2,-1],[4,0],[2,-1],[-6,-1]],[[5809,8625],[1,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[-2,2],[0,1],[-1,1],[0,1],[-1,0],[-1,-1],[1,0],[0,-2],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[0,1],[3,1],[3,0],[1,0]],[[5856,8601],[2,0],[1,0],[4,-1],[1,-1],[1,-1],[-1,-2],[-3,0],[-1,1],[-2,3],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,2],[0,1],[1,0]],[[6139,9228],[3,-2],[2,-2],[-2,-1],[-3,-1],[-1,1],[-1,0],[-1,1],[2,1],[-1,1],[-3,-1],[0,1],[2,1],[1,0],[1,0],[-1,1],[1,0],[1,0]],[[7429,9897],[-2,0],[1,1],[1,3],[2,1],[3,1],[2,-1],[1,-1],[-1,-1],[-1,-1],[-6,-2]],[[7477,9943],[-3,0],[-1,0],[0,2],[0,1],[1,0],[6,2],[1,0],[-1,-1],[2,-1],[-1,-2],[-4,-1]],[[7406,9984],[1,-1],[3,0],[2,0],[-2,-1],[-1,-1],[-1,-1],[1,-1],[-3,0],[-2,0],[3,1],[-3,0],[-1,1],[-1,1],[0,2],[4,0]],[[5728,8900],[1,-2],[-2,1],[-1,-1],[3,0],[1,-2],[-3,0],[-5,0],[-1,0],[0,2],[0,1],[0,1],[3,0],[0,-1],[0,-1],[1,0],[0,1],[-1,1],[1,0],[2,0],[1,0]],[[6202,8729],[-2,-1],[-1,1],[-1,-1],[-1,0],[0,2],[2,0],[0,1],[1,3],[0,1],[2,1],[0,1],[-1,1],[1,0],[1,-1],[1,-2],[-1,-1],[-1,-1],[0,-2],[0,-2]],[[6353,9409],[-5,-4],[-3,-3],[-2,-1],[-2,0],[0,1],[0,1],[2,1],[2,1],[3,1],[2,1],[-2,0],[1,1],[4,1]],[[5737,8834],[0,-1],[1,1],[2,-1],[1,-3],[0,-2],[-1,-1],[-1,0],[-2,2],[-1,2],[-2,1],[2,1],[1,1]],[[5715,8986],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[-2,-1],[0,-1],[-1,0],[-2,-1],[0,1],[1,1],[-1,1],[-5,1],[5,2],[1,0]],[[6148,9228],[-2,-1],[-3,1],[-1,0],[1,1],[-1,0],[0,1],[0,1],[4,1],[6,-4],[-4,0]],[[6220,8695],[0,-1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,-1],[-4,-4],[0,1],[0,1],[-1,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[-1,-1]],[[6372,9504],[-3,-1],[3,0],[1,0],[0,-1],[0,-1],[-2,-1],[-2,-2],[-3,1],[1,1],[2,1],[-2,0],[-1,1],[2,1],[0,1],[2,1],[2,-1]],[[5718,8976],[1,-3],[0,-2],[-1,-1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,1],[-2,2],[1,1],[1,1],[2,-1],[0,1],[-1,0],[2,1],[1,0]],[[6397,9489],[0,-1],[-1,-2],[-1,-3],[0,-1],[-2,-1],[-2,1],[0,4],[1,0],[1,0],[2,1],[-2,2],[3,-1],[1,1]],[[6356,9415],[-2,-2],[-2,1],[-2,-2],[-2,0],[0,-1],[-1,1],[2,1],[0,1],[0,1],[7,3],[1,0],[0,-2],[-1,-1]],[[5815,8703],[-2,-1],[-1,1],[-1,0],[2,1],[-3,1],[1,1],[4,0],[1,1],[0,1],[3,0],[1,0],[0,-1],[-2,-2],[-2,-1],[-1,-1]],[[5735,8911],[-3,0],[-2,1],[-1,3],[0,2],[3,-1],[0,-1],[2,-1],[1,-2],[0,-1]],[[6716,9759],[-8,-4],[-1,1],[-1,1],[0,1],[2,1],[1,1],[1,0],[2,0],[4,-1]],[[6387,9498],[2,0],[1,-1],[-1,-1],[-5,-1],[-1,0],[1,0],[-1,1],[-1,1],[0,1],[2,0],[2,0],[-3,1],[2,0],[1,0],[2,1],[1,-1],[-2,-1]],[[5966,9130],[2,-1],[1,-1],[-1,-1],[-4,-1],[-5,0],[-1,1],[5,2],[2,0],[0,1],[1,0]],[[6473,9555],[-1,-2],[-1,1],[-9,-2],[2,1],[1,0],[-3,1],[0,1],[2,1],[5,0],[4,-1]],[[6047,9186],[2,0],[1,0],[2,0],[0,-1],[-3,-1],[-8,0],[-3,-1],[-2,0],[-1,1],[2,1],[1,-1],[2,1],[4,1],[3,-1],[-2,1],[2,0]],[[7069,9872],[-3,0],[-2,1],[3,2],[1,1],[1,1],[2,1],[0,-1],[2,-1],[-4,-2],[3,0],[-3,-2]],[[5789,9046],[1,0],[0,-1],[-2,-2],[1,0],[0,-1],[-3,-1],[-2,1],[-1,0],[-1,0],[3,1],[0,1],[-2,1],[1,1],[1,0],[2,0],[2,0]],[[6018,9151],[0,-1],[2,0],[-1,-2],[-2,0],[-6,-1],[-2,1],[2,2],[2,0],[1,1],[1,0],[1,0],[-1,-1],[2,1],[1,0]],[[6665,9691],[-9,0],[-1,0],[-1,0],[4,2],[4,1],[3,-1],[1,0],[1,-1],[-2,-1]],[[5831,9082],[2,-1],[1,0],[5,-1],[1,-1],[-1,-2],[-4,1],[-2,1],[0,1],[-2,1],[-1,-1],[-2,1],[-1,1],[1,0],[0,-1],[2,0],[1,0],[-1,1],[1,0]],[[5774,9046],[2,-1],[1,1],[1,-1],[0,-1],[-7,-1],[-1,1],[1,1],[0,1],[-2,0],[4,1],[1,0],[0,-1]],[[5834,9075],[-1,0],[-4,2],[-4,1],[0,1],[0,2],[1,0],[2,-1],[2,-2],[2,0],[2,-2],[0,-1]],[[5778,8772],[-2,-1],[-1,1],[-1,3],[0,1],[2,2],[1,0],[1,-1],[1,-2],[-1,-1],[0,-1],[0,-1]],[[5736,8777],[3,-1],[1,-2],[1,0],[-1,-1],[-3,-1],[1,1],[-2,-1],[-1,1],[-1,1],[0,-1],[-2,1],[0,1],[1,0],[1,0],[0,1],[2,1]],[[5867,9078],[-7,-1],[-2,0],[1,1],[2,2],[1,1],[1,1],[2,1],[0,-2],[0,-1],[2,-1],[0,-1]],[[7111,9908],[-5,-2],[1,1],[-2,0],[1,1],[-2,1],[1,1],[2,1],[-1,0],[0,1],[1,1],[1,0],[0,-1],[0,-1],[2,-1],[-1,-2],[2,0]],[[6357,9422],[-1,-1],[-1,0],[-2,-1],[-1,0],[2,1],[-4,-2],[-2,0],[0,3],[1,1],[2,1],[-2,-2],[0,-1],[2,0],[1,1],[3,1],[3,1],[0,-1],[-1,-1]],[[6030,9176],[-3,-1],[-6,1],[2,2],[1,0],[4,0],[2,-1],[2,0],[-2,-1]],[[7045,9865],[-2,-1],[-3,1],[-1,1],[1,1],[0,2],[-1,1],[2,0],[4,-3],[0,-2]],[[5759,8713],[-2,-1],[-1,0],[-1,3],[0,2],[3,2],[1,0],[0,-2],[0,-4]],[[5850,9086],[-2,-1],[0,1],[-1,1],[2,1],[0,1],[-3,0],[2,2],[1,1],[2,0],[-1,0],[1,-2],[1,-2],[-2,-2]],[[6255,9274],[-3,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[2,3],[1,1],[2,0],[2,0],[1,-1],[0,-1]],[[6840,9841],[-3,0],[-4,2],[0,1],[5,1],[2,-1],[1,-2],[-1,-1]],[[5715,8857],[-1,0],[0,-1],[0,-2],[-1,1],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[2,0],[1,-2]],[[6223,9330],[-1,0],[1,0],[-3,-1],[3,1],[0,-1],[1,0],[-1,0],[-3,-1],[-2,-1],[1,0],[-2,-2],[-1,0],[0,2],[-1,0],[-1,0],[4,2],[2,1],[-2,0],[4,1],[1,-1]],[[6891,9881],[-2,-1],[-1,0],[0,2],[-1,1],[-1,2],[1,0],[4,0],[0,-2],[0,-1],[0,-1]],[[5830,9071],[-1,0],[0,1],[-6,1],[-1,2],[1,1],[4,0],[2,-2],[1,-1],[0,-2]],[[5786,8690],[0,-1],[-3,1],[-4,1],[-1,1],[0,1],[2,1],[4,-2],[2,-1],[0,-1]],[[6829,9837],[2,-1],[2,0],[1,-1],[0,-1],[-4,-1],[-2,-1],[-3,1],[2,0],[1,0],[0,1],[-1,1],[5,0],[-6,0],[0,1],[3,1]],[[6553,9678],[-2,-1],[1,1],[-1,0],[-2,-2],[-3,-1],[-3,1],[2,1],[0,2],[2,0],[6,-1]],[[6993,9888],[-2,-1],[-2,0],[-4,1],[-2,1],[1,1],[3,1],[0,-1],[4,-1],[2,-1]],[[7383,9979],[-7,-1],[-7,2],[1,1],[2,0],[11,-2]],[[6404,9508],[-1,-4],[-4,0],[-1,1],[3,1],[-2,0],[0,1],[2,1],[3,0]],[[5768,9035],[0,-1],[-3,1],[1,-1],[2,0],[1,-1],[-1,-1],[-2,1],[1,-1],[-3,1],[-2,0],[-1,0],[1,1],[-1,0],[-1,1],[3,1],[4,-1],[1,0]],[[6639,9672],[-1,0],[-2,0],[0,-1],[1,0],[0,-1],[-2,0],[3,0],[-2,-1],[1,0],[0,-1],[-7,2],[3,2],[3,1],[3,-1]],[[5787,8761],[1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-3,1],[1,2],[1,0],[2,-1],[2,0],[0,-1]],[[6347,9432],[-2,-2],[0,-1],[1,2],[-3,-1],[-2,-2],[-1,-1],[0,-1],[-2,-1],[-2,-2],[0,-1],[-1,-1],[1,3],[0,2],[2,0],[1,1],[4,3],[-1,0],[-1,0],[1,1],[1,0],[-1,-1],[1,0],[0,1],[-2,-1],[0,1],[1,1],[3,0],[2,0]],[[5736,8953],[1,0],[2,0],[2,-1],[-3,0],[-1,0],[1,-1],[-2,-1],[-1,1],[-3,-1],[-1,0],[1,3],[1,0],[0,1],[1,-2],[2,1],[-1,1],[2,0],[-1,-1]],[[6322,9403],[-1,0],[-2,0],[-1,1],[3,1],[1,1],[2,0],[2,0],[1,-2],[-1,0],[-3,-1],[-1,0]],[[6985,9870],[-4,0],[-5,2],[-1,1],[3,0],[3,-1],[4,0],[1,-1],[-1,-1]],[[5740,8806],[0,-1],[1,-1],[0,-1],[1,-1],[-1,-1],[-2,0],[-1,2],[1,1],[-1,0],[-1,1],[-1,1],[1,1],[1,-1],[1,0],[0,1],[1,0],[0,-1]],[[6906,9882],[1,0],[0,-1],[-2,0],[0,1],[-2,-1],[1,-1],[-2,0],[0,1],[-2,4],[2,0],[1,0],[3,-3]],[[5809,9059],[3,0],[3,0],[0,-1],[-1,-1],[-2,0],[-4,0],[-2,0],[1,1],[1,1],[0,1],[1,0],[0,-1]],[[6408,9514],[0,-1],[-1,-2],[0,-1],[-3,-1],[-1,0],[3,1],[-3,0],[1,1],[1,-1],[-2,2],[0,1],[2,0],[1,1],[0,1],[2,-1]],[[5709,8930],[-1,-1],[-2,0],[0,1],[-4,0],[-1,2],[2,1],[2,0],[0,-2],[3,0],[1,-1]],[[6318,9356],[1,-3],[-2,0],[-1,1],[-1,-1],[-3,1],[1,1],[0,1],[2,1],[2,0],[1,-1]],[[5742,8958],[-1,-1],[-6,2],[-3,1],[1,0],[2,1],[5,-2],[2,-1]],[[7133,9863],[0,-1],[-9,1],[5,2],[3,0],[1,-2]],[[6345,9439],[-3,-1],[1,0],[2,0],[-1,0],[-3,-2],[1,1],[-2,-1],[-1,1],[1,1],[-2,1],[2,0],[-2,0],[0,1],[1,0],[-1,-1],[3,0],[-1,0],[2,1],[6,1],[-3,-2]],[[5718,8850],[2,-2],[0,-1],[-2,0],[-1,1],[0,1],[0,-1],[0,-1],[-1,0],[-1,0],[0,2],[0,1],[0,1],[2,1],[1,-2]],[[5807,8698],[0,-1],[-1,0],[-2,-1],[-2,-1],[-1,0],[0,1],[0,1],[2,0],[0,1],[0,1],[0,1],[2,0],[2,-2]],[[5724,8887],[-2,0],[-2,2],[-1,1],[0,2],[1,0],[1,0],[2,-2],[1,-3]],[[6967,9895],[-1,0],[0,1],[-1,0],[-2,1],[0,1],[1,0],[1,1],[2,0],[2,0],[0,-2],[-2,-2]],[[6364,9419],[-2,0],[0,-2],[-2,-1],[0,-1],[-1,1],[0,2],[2,0],[0,1],[-1,-1],[-1,1],[1,0],[1,2],[2,1],[1,0],[0,-1],[0,-2]],[[6099,9187],[0,-1],[-2,0],[0,-1],[-2,0],[-1,1],[2,3],[1,0],[1,1],[0,-1],[2,-1],[-1,-1]],[[5753,8995],[2,0],[-2,-2],[-1,0],[-9,1],[10,1]],[[6576,9617],[-8,-1],[1,1],[3,1],[-2,0],[7,1],[1,0],[-2,-2]],[[6329,9401],[1,-1],[1,0],[-1,-1],[-1,-3],[-2,-1],[-1,0],[0,3],[2,2],[1,1]],[[6455,9529],[-4,0],[0,1],[2,2],[4,1],[0,-2],[-1,-1],[-1,-1]],[[6555,9742],[-3,-1],[0,1],[0,1],[-2,0],[0,2],[2,0],[3,0],[0,-2],[0,-1]],[[5968,9113],[-1,-1],[-2,0],[-2,-1],[-2,1],[1,1],[1,1],[3,0],[1,0],[1,-1]],[[5738,8996],[-2,-1],[-1,1],[-4,0],[-2,1],[-1,1],[0,1],[1,0],[1,-1],[4,0],[1,-1],[3,-1]],[[6258,9321],[-2,0],[-1,1],[0,1],[4,2],[3,0],[-2,-2],[-2,-2]],[[6098,9200],[-3,0],[0,1],[1,2],[2,1],[1,0],[1,0],[1,-1],[-1,-2],[-1,0],[-1,-1]],[[5714,8965],[2,0],[1,0],[1,-1],[0,-1],[-9,-1],[1,1],[2,1],[2,0],[0,1]],[[5847,9082],[-2,-1],[-7,2],[8,1],[1,-2]],[[6345,9345],[6,0],[2,0],[1,0],[-5,-2],[-6,2],[-2,0],[3,1],[1,-1]],[[6404,9500],[-3,-1],[-2,0],[0,1],[1,1],[3,2],[1,-1],[1,-1],[0,-1],[-1,0]],[[6228,8687],[-1,-1],[-2,2],[0,1],[1,3],[1,0],[1,0],[-1,-1],[1,-1],[0,-1],[1,-1],[-1,-1]],[[7259,9885],[-3,0],[-2,1],[0,1],[2,0],[4,0],[4,-1],[-5,0],[0,-1]],[[6666,9737],[0,-1],[-7,1],[-3,2],[2,1],[1,-1],[7,-2]],[[5711,8862],[1,-1],[-1,1],[1,0],[1,-2],[0,-1],[-3,-1],[-1,2],[0,1],[1,1],[0,2],[1,-1],[0,-1]],[[5734,8809],[-1,-1],[-1,0],[-1,2],[-1,1],[2,3],[1,-1],[1,-3],[0,-1]],[[5753,9007],[-3,-1],[-1,1],[-1,2],[1,0],[1,0],[0,1],[3,-1],[1,0],[-1,-2]],[[5724,8955],[1,-1],[1,1],[1,-1],[-3,-1],[-3,1],[-1,1],[0,1],[1,1],[3,-2]],[[5808,8788],[-1,-1],[-2,0],[-2,0],[-4,-1],[-1,-1],[-4,-1],[2,1],[2,0],[9,4],[1,-1]],[[6536,9573],[3,0],[3,0],[2,0],[-1,-2],[-2,0],[-5,0],[-1,1],[0,1],[1,0]],[[7093,9874],[-2,0],[-3,2],[4,1],[2,0],[1,-2],[-2,-1]],[[5780,8779],[-1,-2],[-1,0],[-2,2],[1,2],[1,1],[2,-2],[0,-1]],[[5724,8841],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[1,1],[2,-1],[0,-1],[0,-1],[0,-1]],[[6011,8596],[-1,0],[-2,0],[-1,1],[2,2],[1,0],[1,0],[1,-1],[0,-1],[-1,-1]],[[6328,9385],[-2,-1],[3,1],[0,-1],[-3,-2],[-1,0],[-2,-2],[1,1],[-1,0],[-1,-1],[0,1],[2,2],[-3,-2],[0,1],[2,1],[5,2]],[[6478,9559],[-3,-1],[-1,0],[-1,0],[-2,0],[-2,0],[2,2],[7,-1]],[[6225,8690],[-2,-1],[-1,1],[3,4],[1,0],[1,0],[-2,-4]],[[5759,9031],[3,-1],[0,-1],[0,-1],[-1,0],[-5,2],[1,1],[1,-1],[1,1]],[[6043,9202],[-1,-1],[0,-1],[1,0],[0,1],[0,-1],[-3,0],[1,-1],[1,1],[-4,-2],[1,0],[-3,-1],[-1,1],[2,1],[3,1],[-2,0],[2,1],[1,0],[1,1],[1,0]],[[6345,9458],[-1,-1],[1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-2,-2],[0,1],[0,1],[-2,-2],[0,1],[2,1],[0,1],[2,2],[3,1]],[[5998,9149],[-2,-2],[-5,-1],[-1,-1],[-2,0],[0,1],[2,0],[2,2],[3,0],[-1,0],[3,2],[1,-1]],[[5823,9061],[-2,-1],[-2,1],[0,1],[0,2],[2,0],[2,-1],[0,-2]],[[6338,9438],[0,-1],[2,-2],[-5,-1],[-1,0],[-1,1],[3,1],[1,1],[-2,0],[1,0],[2,1]],[[6592,9758],[-2,-1],[3,0],[-3,-2],[-3,1],[-1,1],[1,1],[1,-1],[1,0],[0,1],[2,0],[1,1],[0,-1]],[[5702,8875],[1,0],[1,1],[2,-1],[0,-2],[-1,-1],[-2,0],[-1,1],[0,1],[0,1],[1,0],[0,-1],[1,1],[-1,0],[-1,0],[-1,0],[1,1],[0,-1]],[[7103,9882],[-2,-1],[-3,1],[-1,0],[-1,1],[1,1],[2,0],[3,-1],[1,-1]],[[6072,8655],[5,-1],[6,0],[-3,-1],[-3,0],[-1,0],[0,1],[-3,0],[-1,0],[-1,1],[1,0]],[[6866,9874],[-2,0],[-1,0],[0,1],[0,1],[1,1],[2,0],[2,-2],[-1,0],[-1,-1]],[[5770,8707],[-2,-2],[-1,1],[-1,1],[-1,3],[2,0],[1,-2],[1,0],[1,-1]],[[6045,8622],[-1,-1],[0,-1],[-1,1],[-1,-1],[-1,0],[-1,1],[0,1],[1,0],[1,1],[2,1],[1,-2]],[[6108,8668],[0,-1],[-2,-1],[-1,0],[1,1],[-3,0],[-3,1],[3,0],[1,0],[0,1],[3,0],[0,-1],[1,0]],[[7831,9858],[4,0],[-1,-1],[-1,-1],[3,0],[-1,-1],[-3,0],[-1,1],[1,0],[-3,2],[1,1],[2,-1],[-1,0]],[[6409,9502],[-2,1],[0,2],[2,2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1]],[[5957,9127],[-1,-1],[-1,0],[0,1],[-2,0],[0,1],[1,1],[2,0],[1,0],[1,0],[1,-1],[-2,-1]],[[5782,9041],[-4,1],[0,2],[5,0],[1,0],[0,-1],[-3,-1],[1,-1]],[[6228,9328],[-3,-1],[1,1],[-1,0],[-4,-1],[-1,0],[1,1],[6,2],[1,-1],[-2,0],[2,-1]],[[6061,8632],[-2,-1],[-1,1],[-1,-1],[-1,-1],[1,0],[-1,0],[-1,1],[0,1],[2,0],[1,0],[1,1],[2,1],[2,0],[-2,-2]],[[5730,8793],[6,-1],[-1,-2],[0,-1],[-1,0],[-3,1],[2,2],[1,0],[-3,0],[-1,0],[0,1]],[[5715,8850],[-2,0],[0,1],[0,1],[3,2],[0,-1],[0,-1],[0,-1],[-1,-1]],[[5982,8584],[-1,-1],[-2,1],[1,-1],[0,-1],[-1,0],[-2,-1],[-1,1],[1,1],[1,1],[1,1],[3,-1]],[[5719,8904],[-2,-1],[-1,1],[0,1],[0,1],[0,1],[1,0],[2,-1],[0,-1],[0,-1]],[[5758,8807],[-1,-1],[-3,1],[1,2],[1,1],[1,0],[1,-1],[0,-2]],[[5776,9052],[5,-2],[2,1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[0,1],[1,0],[-2,1],[-1,2]],[[5718,8717],[1,0],[1,-1],[0,-1],[-2,0],[-2,0],[-1,1],[0,1],[2,0],[1,0]],[[6483,9578],[3,0],[-3,-2],[0,1],[-2,-1],[-5,-1],[1,1],[3,0],[1,0],[-1,1],[1,1],[3,0],[-1,0]],[[7143,9860],[-1,-2],[-5,5],[1,0],[2,0],[2,-2],[1,-1]],[[6073,9187],[-5,-1],[0,1],[-1,0],[-1,1],[1,1],[2,0],[3,-1],[1,-1]],[[6453,9535],[-5,-3],[0,1],[-1,1],[2,1],[2,0],[2,0]],[[5996,9139],[-2,0],[0,1],[-2,1],[1,0],[0,1],[1,0],[2,0],[1,-2],[-1,-1]],[[6335,9438],[-3,-1],[1,1],[0,1],[-1,1],[1,0],[2,0],[1,-1],[-1,-1]],[[6480,9553],[0,-4],[-3,-1],[-1,0],[1,1],[2,1],[0,1],[-1,-1],[1,2],[0,1],[1,0]],[[6345,9477],[-4,0],[1,2],[3,0],[-1,0],[1,0],[1,0],[0,-1],[-1,-1]],[[5790,8682],[-1,-1],[-1,0],[-1,1],[0,1],[1,1],[2,0],[0,-2]],[[5735,8805],[-1,-1],[-1,1],[-1,-1],[1,-1],[-2,0],[-1,2],[1,1],[4,0],[0,-1]],[[5718,8960],[-8,-1],[-1,0],[1,1],[1,0],[5,1],[2,-1]],[[7239,9963],[3,-1],[3,0],[1,-1],[-2,0],[-4,0],[-2,1],[1,1]],[[5733,8918],[0,-1],[-3,1],[-1,1],[0,1],[4,0],[0,-1],[0,-1]],[[6937,9878],[-3,-1],[-2,1],[1,2],[1,0],[1,-1],[1,0],[1,-1]],[[6654,9747],[-6,-3],[1,1],[0,2],[5,2],[1,-1],[-1,-1]],[[6902,9892],[1,-1],[0,-2],[-2,-1],[-1,1],[-1,1],[0,1],[2,0],[0,1],[1,0]],[[5750,8776],[0,-1],[-1,0],[-1,2],[-2,1],[-1,2],[4,-2],[1,-2]],[[6481,9562],[-2,-2],[-2,0],[1,1],[0,1],[1,0],[2,2],[2,-1],[-2,-1]],[[5727,8876],[3,-3],[-2,0],[1,0],[-2,0],[-2,2],[-2,1],[-1,1],[1,0],[4,-1]],[[6270,9326],[-1,-1],[-2,-1],[-2,0],[-1,1],[1,1],[2,0],[2,1],[1,-1]],[[6243,9331],[-2,0],[-2,0],[0,1],[0,1],[1,0],[1,0],[2,0],[0,-2]],[[5970,9151],[-3,-1],[-1,1],[1,1],[-1,0],[0,1],[3,0],[3,-1],[-3,0],[0,-1],[1,0]],[[6209,9280],[2,-1],[-1,-1],[-4,0],[-2,2],[1,1],[2,-2],[-1,1],[2,0],[-1,1],[1,0],[1,-1]],[[7594,9957],[-2,-2],[-3,1],[1,1],[2,1],[1,0],[1,-1]],[[5833,9058],[-5,-1],[-4,1],[3,1],[6,0],[0,-1]],[[6547,9740],[-3,0],[2,1],[3,2],[-1,-1],[3,-1],[-4,-1]],[[6289,9339],[-1,-1],[2,0],[1,0],[-3,-2],[-2,-1],[1,2],[1,1],[1,1]],[[6549,9743],[-2,0],[-2,0],[2,1],[1,2],[-2,0],[2,1],[2,-1],[-2,-1],[1,-1],[0,-1]],[[6219,9279],[-3,-1],[-3,1],[1,0],[0,1],[-2,0],[2,1],[0,1],[2,-2],[3,-1]],[[5939,8573],[0,-1],[1,1],[0,1],[1,-1],[-1,-1],[-1,0],[-1,0],[-1,2],[0,1],[1,0],[1,0],[3,-1],[-2,0],[-1,-1]],[[5809,8704],[0,-2],[-1,0],[-2,1],[-2,2],[3,1],[0,-1],[2,-1]],[[7920,9912],[1,-1],[1,1],[1,-1],[-1,-1],[-2,0],[-3,5],[2,0],[0,-2],[1,-1]],[[6110,8672],[-3,-2],[-1,0],[1,1],[-1,0],[-1,-1],[1,-1],[-1,0],[-1,1],[0,1],[6,2],[0,-1]],[[5786,8764],[1,0],[0,1],[1,-1],[0,-2],[-1,0],[0,1],[-2,0],[-2,1],[1,1],[2,-1]],[[6324,9605],[1,-1],[2,0],[-1,-1],[-5,-1],[3,3]],[[5722,8862],[5,-3],[-3,0],[0,1],[-2,1],[-3,1],[0,1],[3,-1]],[[6106,8672],[-2,-1],[0,1],[0,1],[1,1],[4,-1],[1,0],[-4,-1]],[[5982,9150],[2,0],[0,-2],[-2,0],[-2,0],[-2,0],[0,1],[2,0],[-2,0],[4,1]],[[7342,9964],[-3,-1],[0,1],[10,3],[0,-1],[-7,-2]],[[5782,8721],[-1,-2],[-2,1],[0,1],[0,1],[1,0],[1,1],[1,-2]],[[7842,9848],[-5,-1],[0,1],[1,1],[2,1],[2,-2]],[[7541,9916],[-3,0],[0,1],[1,1],[4,1],[2,0],[-4,-1],[0,-1],[0,-1]],[[5723,8830],[1,-1],[1,0],[-2,-2],[-1,0],[-1,0],[0,1],[2,0],[-3,0],[3,1],[-2,0],[2,1]],[[5801,8710],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,1],[1,-1],[1,-1],[-1,-1]],[[6039,9201],[-1,0],[-1,-1],[0,-1],[-1,1],[0,1],[0,-1],[-2,-1],[-2,0],[0,1],[1,0],[1,0],[2,1],[2,1],[1,-1]],[[5706,8903],[-1,3],[-1,2],[2,1],[0,-1],[0,-2],[1,0],[-1,-3]],[[6585,9612],[-1,0],[-4,0],[-1,1],[2,1],[2,-1],[2,-1]],[[6333,9431],[-1,-1],[0,1],[0,1],[1,1],[6,2],[-1,-1],[-3,-1],[-1,-1],[-1,-1]],[[6890,9835],[-2,-2],[-1,0],[-2,0],[-1,2],[3,0],[1,0],[2,0]],[[5798,8712],[0,-1],[-2,-1],[-1,-1],[-2,1],[1,1],[2,0],[0,1],[1,0],[1,0]],[[6364,9444],[-2,-1],[-4,0],[0,1],[5,1],[1,-1]],[[6197,8757],[1,-1],[-3,1],[-1,2],[-1,1],[2,1],[0,-1],[0,-1],[2,-2]],[[7018,9834],[-1,0],[-1,1],[-1,1],[2,1],[2,-1],[-1,-2]],[[6732,9707],[-5,-1],[3,2],[2,1],[1,-1],[-1,-1]],[[6092,9177],[-2,-1],[-2,0],[0,1],[2,1],[4,1],[-1,-1],[-1,-1]],[[5792,8687],[-1,0],[-3,0],[-2,-1],[-2,2],[1,0],[1,0],[0,-1],[2,0],[1,1],[3,0],[0,-1]],[[5821,9057],[1,0],[3,0],[0,-1],[-5,0],[-2,0],[1,1],[0,1],[3,0],[-1,-1]],[[6055,9199],[-3,-2],[0,1],[-1,0],[-1,-1],[-1,0],[1,2],[2,0],[-1,-1],[2,2],[2,-1]],[[6178,8698],[-1,0],[-1,0],[-1,0],[1,2],[0,1],[1,0],[1,0],[0,-2],[0,-1]],[[6346,9351],[-2,-1],[-1,1],[0,1],[2,1],[1,-1],[0,-1]],[[6259,9309],[-2,-1],[-2,0],[-3,0],[1,0],[3,1],[-2,0],[1,0],[4,0]],[[5986,9146],[-5,-1],[3,2],[4,1],[1,0],[-3,-2]],[[6013,9177],[-1,-1],[-1,0],[-1,1],[0,1],[3,0],[-1,1],[1,0],[2,-1],[-2,-1]],[[5946,9122],[-3,-1],[2,1],[-3,0],[1,1],[-1,0],[3,1],[1,-1],[0,-1]],[[5742,8823],[-1,0],[0,1],[-1,2],[2,0],[0,1],[1,0],[0,-1],[0,-3],[-1,0]],[[5708,8922],[2,-2],[-2,0],[-1,1],[-2,0],[-1,2],[1,0],[3,-1]],[[6077,9169],[-3,-1],[1,-1],[-3,0],[0,2],[2,0],[3,0]],[[5808,8681],[-1,-1],[-4,2],[1,1],[3,-1],[1,-1]],[[6218,9284],[-3,0],[-1,0],[0,1],[4,1],[1,-1],[-1,-1]],[[6239,8683],[-1,-1],[-1,2],[-1,0],[2,1],[2,1],[1,-1],[-3,-1],[1,-1]],[[6439,9538],[-4,-1],[0,1],[1,1],[2,0],[1,-1]],[[5869,8598],[-2,-2],[-1,1],[0,2],[1,1],[1,-1],[1,-1]],[[6056,9194],[-2,-2],[-1,1],[-1,1],[3,1],[2,-1],[-1,0]],[[6213,8704],[-1,0],[-1,2],[0,2],[1,0],[2,-2],[0,-1],[-1,-1]],[[6393,9501],[-2,0],[0,1],[0,1],[1,0],[3,0],[-1,-1],[-1,-1]],[[5924,9086],[-12,-3],[9,2],[-3,0],[-1,1],[3,1],[4,-1]],[[6066,8639],[-1,-3],[-1,0],[-1,1],[1,2],[0,-1],[1,1],[1,0]],[[6024,9140],[-2,0],[-2,2],[1,1],[1,0],[1,-1],[-1,-1],[2,-1]],[[6252,9313],[-5,-2],[-3,0],[4,2],[4,0]],[[7275,9934],[-6,-2],[-2,0],[3,1],[-2,0],[5,1],[2,0]],[[6349,9455],[-5,-2],[0,1],[2,1],[3,1],[0,-1]],[[5716,8897],[-3,-1],[-2,1],[2,1],[1,0],[1,0],[1,-1]],[[5794,8696],[3,-1],[2,0],[0,-1],[-3,0],[-1,1],[-1,0],[0,1]],[[6007,9162],[-1,0],[-2,1],[1,1],[2,0],[2,0],[-2,-1],[1,0],[-1,-1]],[[6173,9250],[-2,-1],[-1,2],[1,1],[2,0],[1,-1],[-1,-1]],[[5752,8784],[0,-1],[-2,1],[-2,0],[1,2],[2,-1],[1,-1]],[[5762,8702],[-1,-1],[0,1],[-1,0],[1,-2],[-1,0],[-1,1],[-1,2],[1,0],[0,1],[3,-2]],[[6367,9478],[-3,-1],[1,1],[-2,-1],[1,0],[-1,0],[1,0],[-2,-1],[0,1],[0,-1],[1,1],[-2,0],[4,2],[0,-1],[1,1],[1,0],[0,-1]],[[7105,9904],[-3,-1],[-2,2],[3,0],[1,0],[1,0],[0,-1]],[[6070,8640],[-3,-3],[0,1],[-1,-1],[0,1],[1,1],[2,1],[1,0]],[[5974,9132],[-3,-1],[-2,1],[1,1],[2,0],[2,-1]],[[6143,9216],[-1,-2],[-2,0],[0,1],[0,1],[2,0],[1,0]],[[6008,9172],[0,-2],[-1,0],[-1,0],[-1,0],[2,1],[-4,0],[2,1],[1,0],[0,-1],[1,0],[1,1]],[[5715,8936],[-2,-1],[-1,1],[1,1],[2,1],[1,-1],[-1,-1]],[[6260,9273],[0,-2],[0,-1],[-3,1],[0,1],[1,0],[2,1]],[[5780,9048],[1,-1],[3,0],[-1,-1],[-3,0],[-1,0],[0,1],[1,1]],[[6192,8776],[-1,-1],[-1,2],[2,1],[1,-1],[-1,-1]],[[6585,9707],[-6,-1],[0,1],[3,1],[2,-1],[1,0]],[[5716,8891],[0,-1],[-3,0],[-1,0],[0,1],[2,1],[2,-1]],[[6699,9766],[-1,-1],[-5,1],[1,0],[1,1],[4,-1]],[[5742,8881],[0,-3],[-2,1],[0,1],[0,1],[1,0],[1,1],[0,-1]],[[6185,8693],[0,-3],[-2,0],[0,2],[1,0],[0,-1],[0,1],[0,1],[1,0]],[[6063,8635],[0,-1],[-2,0],[0,1],[0,1],[0,1],[0,1],[1,-1],[1,-1],[0,-1]],[[6253,9314],[-5,-1],[2,2],[3,0],[1,0],[-1,-1]],[[6542,9672],[-3,-1],[-1,1],[2,1],[2,1],[1,-1],[-1,-1]],[[6059,9164],[-3,-1],[1,-1],[2,0],[-3,0],[-2,0],[-1,0],[0,1],[1,0],[3,0],[2,1]],[[5926,8576],[1,-1],[1,-1],[-3,1],[-1,-1],[-1,1],[1,0],[1,0],[-1,1],[-1,1],[1,0],[3,-1],[-1,0]],[[5738,8777],[-1,0],[-1,0],[0,1],[-1,1],[1,0],[1,0],[1,0],[0,-1],[0,-1]],[[6092,9184],[-1,-1],[-2,1],[1,1],[1,2],[0,-1],[0,-1],[1,0],[0,-1]],[[5710,8933],[-3,0],[-1,1],[2,1],[0,-1],[1,0],[1,-1]],[[6366,9475],[-5,-2],[3,3],[4,1],[-2,-2]],[[5711,8968],[-1,-1],[-1,1],[-1,1],[2,0],[0,1],[1,-1],[0,-1]],[[5731,8874],[-2,0],[-2,1],[0,1],[0,1],[1,-1],[2,-1],[1,-1]],[[5725,8894],[-3,-1],[-1,2],[2,0],[2,0],[0,-1]],[[5798,8677],[-2,-1],[-1,2],[1,1],[1,-1],[1,-1]],[[6287,9332],[-3,0],[-1,0],[2,1],[3,0],[1,0],[-1,0],[-1,-1]],[[5777,8861],[-1,-1],[0,1],[0,2],[0,2],[0,1],[1,-2],[1,-2],[-1,-1]],[[5748,8782],[1,-2],[0,-1],[-1,1],[-1,0],[-1,1],[0,1],[2,0]],[[6513,9580],[-3,-2],[-3,-1],[1,1],[1,0],[4,2]],[[7237,9953],[-2,-1],[-2,0],[1,2],[2,0],[1,-1]],[[5735,8779],[-3,-1],[0,1],[0,1],[1,0],[1,1],[1,-1],[0,-1]],[[6320,9494],[1,-1],[-3,-1],[-1,0],[2,1],[-1,0],[-1,0],[-2,1],[3,0],[1,0],[1,1],[0,-1]],[[5763,8691],[0,-2],[-3,0],[0,2],[1,-1],[1,1],[1,0]],[[6207,8706],[-2,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[1,-2]],[[5735,8865],[-1,0],[2,-1],[0,-1],[-3,1],[-1,2],[1,0],[2,-1]],[[5712,8890],[-2,0],[-1,1],[1,1],[2,-1],[0,-1]],[[6295,9403],[-3,-1],[-1,1],[0,1],[1,0],[3,-1]],[[6485,9564],[-2,-1],[-2,1],[1,1],[2,0],[1,-1]],[[6340,9441],[-3,-1],[2,1],[0,1],[-1,0],[0,1],[2,0],[1,0],[-1,-2]],[[6324,9384],[-1,0],[2,1],[2,2],[2,1],[-5,-4]],[[6419,9526],[-2,-1],[-2,1],[1,1],[3,0],[0,-1]],[[5813,8673],[-2,0],[-1,1],[0,1],[3,-1],[0,-1]],[[6818,9832],[-1,-1],[-2,1],[2,1],[3,-1],[-2,0]],[[5714,8921],[0,-1],[-2,1],[0,1],[0,1],[1,0],[1,0],[0,-2]],[[6438,9524],[-2,0],[-3,0],[1,1],[3,0],[-1,0],[2,-1]],[[6103,8670],[0,-1],[0,1],[1,-1],[-1,0],[-3,0],[0,1],[2,0],[1,0]],[[5749,8774],[-1,-1],[-2,1],[0,1],[2,-1],[-2,1],[1,0],[2,-1]],[[6835,9837],[-2,-1],[-1,1],[-1,2],[1,0],[1,0],[0,-2],[2,0]],[[5770,9042],[-2,-1],[-1,1],[1,1],[1,1],[1,-2]],[[5783,8688],[-1,-1],[-1,0],[-1,1],[0,1],[3,-1]],[[5811,8681],[-1,-2],[-1,1],[0,2],[1,0],[1,-1]],[[5721,8844],[-1,0],[-1,2],[-1,0],[2,1],[0,-1],[1,-1],[0,-1]],[[5802,9032],[-3,0],[2,1],[3,1],[-1,-1],[-1,-1]],[[6712,9752],[-2,-2],[-2,1],[1,1],[2,0],[1,0]],[[6542,9634],[-4,-1],[0,1],[5,2],[-1,-2]],[[5833,9069],[-2,-3],[-1,0],[1,3],[2,0]],[[6184,9259],[-1,-1],[-2,1],[-1,0],[1,1],[3,-1]],[[6163,9240],[-1,0],[-1,1],[0,1],[1,0],[2,-1],[-1,-1]],[[6345,9422],[-2,-1],[1,2],[1,2],[0,-1],[0,-2]],[[5750,8756],[-1,-1],[0,-1],[-1,1],[-1,0],[0,1],[1,1],[2,-1]],[[5788,8783],[-1,-1],[-1,1],[1,1],[1,0],[1,-1],[-1,0]],[[6592,9689],[-3,-1],[0,1],[5,1],[1,0],[-3,-1]],[[6243,8694],[-1,-1],[-1,1],[0,1],[1,1],[2,0],[-1,-2]],[[5712,8912],[-1,0],[-1,2],[0,1],[2,-1],[0,-1],[0,-1]],[[6397,9492],[-2,-2],[-2,1],[0,1],[3,0],[1,0]],[[6527,9568],[-2,-1],[-1,1],[1,1],[1,0],[1,0],[0,-1]],[[6240,8686],[-2,0],[2,2],[0,1],[1,-1],[0,-1],[-1,-1]],[[6221,9279],[2,0],[0,-1],[-1,1],[-1,-1],[-2,1],[0,1],[1,0],[1,0],[0,-1]],[[6112,8667],[-3,-2],[2,1],[0,1],[1,1],[1,0],[1,2],[1,1],[-1,-2],[-2,-2]],[[6361,9481],[1,-1],[2,1],[-5,-2],[1,0],[0,1],[0,1],[1,0]],[[6828,9842],[-1,0],[-3,1],[3,0],[1,0],[0,-1]],[[5735,8867],[6,-3],[-3,1],[-3,1],[0,1]],[[6445,9519],[-4,0],[-2,0],[2,0],[2,0],[1,1],[1,-1]],[[5708,8959],[-1,-1],[-1,1],[1,0],[-2,0],[1,1],[1,1],[1,-2]],[[5724,8825],[-1,2],[1,0],[1,0],[0,-1],[-1,-1]],[[6344,9421],[-1,-2],[-1,0],[0,1],[1,1],[1,0]],[[6180,9258],[-2,-1],[-1,1],[0,1],[3,-1]],[[6133,8685],[0,-1],[-1,0],[-1,1],[1,0],[-1,1],[1,0],[1,-1]],[[6237,8682],[-1,-1],[-2,1],[1,1],[0,1],[1,-1],[1,-1]],[[7557,9925],[0,-1],[-1,0],[-3,2],[2,0],[2,-1]],[[6191,8725],[1,0],[1,-2],[-1,-1],[-2,2],[1,1]],[[5750,8758],[-1,0],[-1,1],[0,1],[1,1],[1,0],[0,-1],[0,-1],[0,-1]],[[6713,9749],[-5,-1],[0,1],[1,0],[4,1],[0,-1]],[[6135,9211],[-1,-1],[-1,0],[0,1],[3,1],[0,-1],[-1,0],[-1,0],[1,0]],[[5777,8692],[-1,0],[-1,0],[0,1],[0,1],[2,-1],[0,-1]],[[6236,9318],[-1,-2],[-1,0],[-1,0],[2,1],[-2,0],[3,1]],[[5718,8845],[0,-1],[-1,1],[-1,1],[2,0],[0,-1]],[[5897,8576],[-1,0],[-1,0],[0,1],[0,1],[2,0],[0,-2]],[[6708,9734],[-2,-1],[-2,1],[2,1],[2,-1]],[[6831,9847],[1,-1],[1,0],[-1,-1],[-2,0],[0,1],[1,1]],[[6025,9131],[1,0],[-2,-1],[-3,1],[4,1],[0,-1]],[[5728,8871],[-2,1],[-1,1],[0,1],[3,-3]],[[6695,9768],[-3,-1],[-1,1],[1,0],[2,1],[1,-1]],[[5710,8913],[-1,-1],[-2,1],[1,0],[1,1],[-1,1],[1,0],[1,-2]],[[6071,9221],[-1,-1],[-1,0],[-2,0],[1,1],[1,0],[0,1],[2,-1]],[[6566,9716],[-2,0],[-3,0],[2,1],[3,-1]],[[6237,9329],[-3,0],[-1,0],[1,0],[2,1],[1,0],[0,-1]],[[6571,9694],[-2,-1],[-1,0],[0,1],[2,1],[1,-1]],[[5749,8850],[1,-1],[0,-1],[-2,0],[0,1],[1,1],[-2,-1],[-1,1],[1,0],[2,0]],[[6348,9457],[-2,-1],[-1,0],[1,1],[2,1],[0,-1]],[[6245,9303],[-2,0],[-2,0],[2,1],[3,0],[-1,-1]],[[6318,9374],[-2,-1],[-1,0],[1,1],[1,1],[1,-1]],[[5739,8762],[-1,-1],[0,1],[0,1],[2,1],[-1,-2]],[[6184,8693],[-1,-1],[0,3],[1,1],[0,-3]],[[5817,9062],[-1,0],[1,-1],[-2,0],[-1,0],[0,1],[1,0],[2,0]],[[6222,9289],[1,-1],[-2,-1],[-1,0],[0,1],[1,1],[1,0]],[[6196,8776],[-1,-1],[-1,2],[2,1],[0,-1],[0,-1]],[[6231,9316],[-1,-1],[0,1],[0,1],[3,1],[0,-1],[-1,0],[-1,-1]],[[7728,9886],[-5,-1],[-2,0],[6,1],[1,0]],[[5744,8816],[-1,-1],[-2,1],[0,1],[2,0],[1,-1]],[[5762,8713],[-1,-1],[-1,1],[0,1],[1,0],[1,0],[0,-1]],[[6205,9274],[-1,-1],[-1,0],[0,1],[-1,1],[1,0],[1,0],[1,-1]],[[6069,8641],[-1,0],[5,2],[1,-1],[-5,-1]],[[6347,9358],[-3,-1],[-2,0],[2,1],[2,0],[1,0]],[[6609,9653],[-5,0],[2,1],[3,-1]],[[6398,9513],[-5,-1],[1,1],[3,1],[1,-1]],[[6151,9243],[-4,-2],[1,1],[0,1],[3,0]],[[5745,8778],[-1,1],[-1,0],[-1,1],[1,0],[2,-1],[0,-1]],[[5716,8881],[2,-2],[-2,1],[0,1],[1,-2],[-1,0],[-1,1],[0,1],[1,0]],[[6402,9509],[-4,0],[-1,0],[3,1],[2,0],[0,-1]],[[5700,8932],[1,-2],[-2,0],[0,1],[0,1],[1,0]],[[6000,9169],[2,0],[0,-1],[-1,-1],[-1,0],[-1,1],[0,1],[1,0]],[[5742,8724],[-2,-1],[1,0],[-1,0],[-1,1],[1,1],[2,-1]],[[6238,9333],[-2,-1],[-3,0],[4,1],[-2,0],[2,1],[1,-1]],[[5734,8770],[-2,2],[1,0],[2,-1],[-1,-1]],[[6186,8707],[-2,1],[0,1],[1,0],[1,-1],[0,-1]],[[5768,8710],[-2,0],[0,1],[0,1],[1,0],[1,-1],[0,-1]],[[5878,8586],[-1,-1],[-2,2],[2,0],[1,0],[0,-1]],[[5723,8982],[-2,0],[1,2],[1,-1],[0,-1]],[[6368,9425],[-3,-2],[2,2],[1,1],[0,-1]],[[6207,9275],[1,0],[2,0],[1,-1],[-1,0],[-2,0],[-1,1]],[[5735,8896],[-2,-1],[-3,1],[3,1],[2,-1]],[[6855,9852],[-1,0],[-1,2],[1,0],[1,-1],[0,-1]],[[6210,9277],[-2,0],[-2,0],[3,1],[1,0],[0,-1]],[[6324,9493],[-1,-1],[-3,0],[1,1],[2,1],[1,-1]],[[5759,8805],[-2,0],[0,1],[1,1],[2,-1],[-1,-1]],[[6110,9185],[-2,-1],[-1,0],[-2,0],[0,1],[3,-1],[1,1],[1,0]],[[5931,9119],[-1,0],[-1,0],[-1,1],[3,0],[0,-1]],[[6363,9417],[-1,0],[0,1],[2,1],[-1,-2]],[[5737,8800],[-1,-1],[-1,2],[1,1],[1,-1],[0,-1]],[[7437,9994],[-1,0],[-3,1],[3,0],[1,-1]],[[6343,9353],[-2,0],[0,1],[1,1],[1,-1],[0,-1]],[[6814,9829],[-1,0],[-3,1],[2,1],[2,-2]],[[6124,9208],[-2,-1],[1,1],[4,1],[-1,-1],[-2,0]],[[6171,9246],[-2,0],[-2,1],[1,0],[3,-1]],[[5886,8583],[-1,-1],[-3,1],[1,1],[1,-1],[2,0]],[[6078,9222],[-1,0],[-1,1],[1,1],[1,-2]],[[6223,9283],[2,-1],[-2,0],[-1,1],[1,0]],[[6380,9627],[-1,0],[-2,0],[2,2],[1,0],[0,-1],[0,-1]],[[5735,8870],[1,-1],[-2,0],[-1,1],[1,1],[1,0],[0,-1]],[[7424,9895],[-2,-1],[-1,1],[4,1],[-1,-1]],[[6016,9177],[-2,-1],[-1,0],[1,1],[2,0]],[[6437,9540],[-2,-1],[-2,0],[2,1],[2,0]],[[6512,9721],[-2,0],[2,1],[1,0],[-1,-1]],[[6041,9198],[-2,0],[1,1],[2,0],[1,0],[-2,-1]],[[5759,8761],[-2,1],[1,1],[1,-1],[0,-1]],[[7409,9895],[-2,0],[1,1],[3,0],[-2,-1]],[[6482,9594],[-1,-1],[-2,-1],[1,1],[-1,0],[2,1],[1,0]],[[5789,8757],[0,-1],[1,1],[0,-1],[-1,-1],[-1,1],[1,1]],[[6128,9216],[0,-2],[-1,0],[-1,1],[0,1],[1,0],[1,0]],[[7480,9953],[-3,-1],[-1,1],[3,1],[1,-1]],[[6240,9329],[-4,-1],[2,1],[-1,0],[1,1],[3,-1],[-1,0]],[[6452,9529],[-3,-1],[-2,1],[1,0],[4,0]],[[5735,8840],[0,-1],[-1,-1],[-1,1],[0,1],[1,0],[1,0]],[[5721,8839],[-1,-1],[-1,1],[0,1],[1,0],[1,0],[0,-1]],[[6389,9479],[1,-1],[1,0],[0,-1],[-1,1],[-2,0],[-1,0],[2,1]],[[6695,9770],[1,-1],[2,1],[-1,-2],[-3,1],[1,1]],[[5754,8757],[-2,0],[0,1],[2,0],[0,-1]],[[6104,9204],[-2,0],[2,1],[0,-1]],[[5937,9122],[-4,-1],[2,1],[1,0],[1,0]],[[5761,8807],[-2,0],[0,2],[1,-1],[1,-1]],[[5737,8828],[-2,1],[0,1],[2,0],[0,-2]],[[5858,9077],[-2,-1],[-2,0],[2,1],[1,1],[1,-1]],[[5725,8929],[0,-2],[-2,0],[-1,1],[3,1]],[[5736,8798],[-1,-1],[-1,0],[0,1],[1,1],[1,-1]],[[6223,8688],[-1,-1],[-2,1],[1,1],[2,-1]],[[6298,9307],[-3,0],[-1,0],[0,1],[1,0],[1,0],[-1,0],[0,-1],[3,0]],[[6475,9691],[-3,0],[2,0],[0,1],[1,-1]],[[6131,9211],[-3,-1],[1,1],[3,1],[0,-1],[-1,0]],[[5839,9054],[-3,0],[2,0],[-1,0],[0,1],[2,0],[1,-1],[-1,0]],[[5715,8967],[-1,-1],[-1,0],[1,1],[0,1],[1,0],[0,-1]],[[5785,8781],[-1,1],[0,1],[1,1],[0,-1],[0,-2]],[[5778,8694],[0,-1],[-1,0],[-1,1],[-1,0],[2,1],[1,-1]],[[5717,8919],[0,-2],[-2,2],[0,1],[2,-1]],[[6208,9319],[-2,-1],[1,1],[1,1],[1,-1],[-1,0]],[[5979,9167],[-1,0],[-1,1],[0,1],[1,-1],[1,0],[0,-1]],[[6351,9440],[0,-1],[-2,0],[-1,0],[1,1],[0,-1],[1,1],[-1,0],[1,0],[1,0]],[[5767,9030],[-1,0],[-1,1],[1,0],[1,0],[0,-1]],[[5754,9013],[0,-2],[-2,1],[1,1],[1,0]],[[5735,8967],[2,-1],[-1,1],[-1,-1],[-1,1],[1,0]],[[5763,8806],[-2,0],[0,1],[2,1],[0,-1],[0,-1]],[[7431,9923],[-1,-1],[0,1],[1,1],[1,0],[-1,-1]],[[5724,8852],[-1,0],[-1,1],[2,1],[1,-1],[-1,0],[-1,-1],[1,0]],[[5711,8885],[1,-1],[-2,0],[-1,1],[1,0],[1,0]],[[5735,8730],[-1,-1],[-1,1],[1,1],[1,0],[0,-1]],[[7408,9894],[1,0],[-1,-1],[-2,0],[0,1],[2,0]],[[6682,9676],[-3,0],[4,1],[1,0],[-2,-1]],[[7567,9926],[-4,0],[4,1],[0,-1]],[[5715,8892],[-3,0],[-2,0],[1,0],[3,0],[1,0]],[[5797,8687],[-1,0],[-1,1],[1,1],[1,-1],[0,-1]],[[6173,9255],[-2,0],[-1,0],[0,1],[2,0],[1,-1]],[[5739,8779],[1,0],[1,-1],[-2,0],[-1,1],[1,0]],[[6020,9178],[0,-1],[-2,0],[0,1],[2,0]],[[5784,8688],[-1,0],[-2,1],[3,0],[0,-1]],[[5945,9126],[-2,0],[1,1],[1,0],[0,-1]],[[6369,9478],[0,-1],[-2,1],[2,1],[1,0],[-1,-1]],[[7569,9935],[-2,-1],[-1,0],[2,1],[-1,1],[1,0],[1,-1]],[[6105,9203],[-1,0],[0,1],[2,0],[-1,-1]],[[5988,8587],[1,-1],[0,-1],[0,-1],[0,2],[-1,-1],[0,1],[0,1]],[[5705,8911],[-2,-1],[-1,1],[1,1],[2,-1]],[[5714,8876],[-2,0],[-1,2],[1,0],[2,-2]],[[6211,9325],[-3,-1],[1,1],[2,1],[0,-1]],[[6435,9538],[-1,-2],[0,1],[-2,-1],[3,2]],[[5918,8579],[0,-1],[-2,1],[1,1],[1,-1]],[[6392,9492],[-1,-1],[-2,0],[3,1]],[[5803,8709],[-1,-2],[-1,0],[0,2],[1,0],[1,0]],[[5776,8799],[-1,-1],[-2,0],[1,1],[2,0]],[[5736,8780],[-1,-1],[0,1],[0,1],[1,0],[1,-1],[-1,0]],[[6228,8698],[-1,-1],[-1,0],[1,1],[0,1],[1,0],[0,-1]],[[6014,9104],[-1,0],[-2,2],[1,0],[2,-1],[0,-1]],[[5771,8674],[-1,-1],[-1,0],[0,1],[2,0],[-1,0],[0,1],[1,0],[0,-1]],[[6156,8684],[0,-1],[-2,1],[1,1],[1,0],[0,-1]],[[5794,8708],[3,-1],[0,1],[1,-1],[-3,0],[-1,1]],[[5800,8621],[0,1],[0,1],[1,0],[1,0],[-2,-2]],[[6559,9743],[-2,-1],[-1,0],[3,1],[-1,1],[1,0],[0,-1]],[[6882,9822],[-2,0],[-2,0],[4,1],[0,-1]],[[6531,9588],[-4,-2],[2,2],[2,0]],[[7420,9897],[-2,-1],[0,2],[1,0],[1,0],[0,-1]],[[7491,9985],[-4,-1],[-2,0],[3,1],[3,0]],[[5756,8938],[-3,-1],[0,1],[2,0],[2,0],[-1,0]],[[6111,8670],[-3,-1],[3,2],[-1,-1],[1,0]],[[6543,9608],[-3,-1],[-2,0],[3,1],[-3,0],[2,0],[3,0]],[[6336,9379],[-4,-2],[0,1],[1,0],[3,1]],[[5742,8965],[-3,0],[-2,1],[1,0],[4,-1]],[[6330,9441],[-3,-2],[0,1],[2,1],[1,0]],[[6169,9251],[1,-1],[-1,-1],[-1,1],[1,1],[-2,-1],[2,1]],[[6206,9282],[-2,-1],[1,1],[1,1],[1,-1],[-1,0]],[[5717,8892],[-1,0],[-1,0],[0,1],[1,0],[1,-1]],[[7279,9942],[-5,0],[4,1],[1,-1]],[[5716,8922],[1,-2],[-2,1],[0,1],[0,1],[1,-1]],[[5739,8962],[1,0],[-1,0],[1,-1],[1,0],[-5,0],[1,1],[2,0]],[[5713,8852],[-1,-1],[-1,0],[-1,-1],[1,0],[0,-1],[-1,2],[2,1],[1,0]],[[5732,8872],[1,-1],[-1,0],[-1,0],[-1,1],[1,-1],[-1,1],[1,-1],[0,1],[1,0]],[[6866,9859],[3,-1],[-3,0],[-1,1],[1,0]],[[7416,9896],[-1,-1],[-2,0],[3,2],[0,-1]],[[6157,9244],[-3,0],[1,1],[1,0],[1,-1]],[[6773,9779],[-1,-1],[-2,0],[2,1],[1,0]],[[6555,9746],[-1,0],[-2,0],[1,1],[1,0],[1,-1]],[[6194,8776],[-2,-1],[-1,0],[3,1]],[[5741,8994],[-4,1],[2,0],[2,-1]],[[6865,9867],[-2,0],[-1,1],[2,1],[0,-1],[1,-1]],[[6606,9658],[-1,0],[-3,1],[1,0],[3,-1]],[[6035,9183],[-2,-1],[-1,1],[3,0]],[[6365,9480],[-3,-2],[1,2],[1,0],[-1,-1],[2,1]],[[5784,8712],[-1,-1],[0,1],[0,1],[1,1],[0,-1],[0,-1]],[[6070,9169],[-1,0],[3,2],[1,0],[-1,0],[1,0],[-1,-1],[-2,-1]],[[6234,9312],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[6078,9187],[-2,-1],[-1,1],[1,1],[1,-1],[1,0]],[[6046,9202],[-1,0],[1,1],[1,0],[1,0],[0,-1],[-2,0]],[[5744,8914],[-1,-1],[-2,1],[0,1],[3,-1]],[[7925,9914],[-1,-1],[-2,0],[2,1],[1,0]],[[6100,9174],[-1,-1],[-2,1],[2,1],[1,-1]],[[6019,8602],[-1,0],[-1,0],[-1,1],[2,-1],[1,0]],[[7655,9944],[-2,-1],[-3,0],[5,1]],[[6097,9179],[-1,-1],[-1,0],[1,1],[1,0]],[[6016,9188],[-2,-1],[-2,1],[2,0],[2,0]],[[6419,9654],[-1,0],[0,2],[1,0],[0,-1],[0,-1]],[[6128,8686],[-2,-1],[0,2],[-1,0],[1,0],[2,-1]],[[5778,8864],[-1,-1],[0,2],[0,1],[1,-2]],[[6329,9429],[0,-1],[-1,2],[1,0],[0,-1]],[[6206,9317],[-3,-1],[0,1],[2,1],[1,-1]],[[6126,8688],[-1,0],[-1,1],[2,-1]],[[6178,8695],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[7434,9970],[-1,0],[-2,0],[0,1],[3,-1]],[[5861,9095],[-2,1],[1,0],[1,-1]],[[5702,8910],[-1,-1],[-1,0],[1,1],[1,0]],[[5855,8599],[-1,0],[-1,0],[0,1],[2,0],[0,-1]],[[5979,9137],[2,0],[-1,0],[-5,-1],[4,1]],[[5746,8817],[-1,-1],[-1,1],[1,1],[1,0],[0,-1]],[[5739,8753],[1,-2],[1,0],[-1,-1],[0,1],[-1,1],[0,1]],[[6187,8705],[0,-1],[-1,0],[0,1],[1,1],[0,-1]],[[6873,9852],[-2,0],[1,1],[-2,0],[1,1],[2,-1],[0,-1]],[[5991,9165],[-1,0],[-3,1],[2,0],[2,-1]],[[6173,9254],[-2,-1],[1,1],[-2,0],[3,1],[0,-1]],[[6514,9578],[-3,-1],[2,2],[2,0],[-1,-1]],[[5745,8783],[-1,0],[-1,1],[2,-1]],[[6187,8691],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,-1]],[[6069,9164],[-1,0],[-2,1],[2,0],[1,-1]],[[6318,9599],[-1,-1],[-1,0],[0,1],[2,0]],[[5732,8809],[-2,-1],[0,1],[0,1],[2,-1]],[[5833,9067],[0,-1],[-1,0],[1,2],[0,-1]],[[6398,9501],[0,-1],[0,1],[0,1],[1,0],[1,0],[-2,-1]],[[6365,9424],[-1,0],[2,1],[-1,-1]],[[5741,8763],[0,-1],[-1,1],[0,1],[1,0],[0,-1]],[[5807,8701],[-1,-1],[-1,1],[1,0],[1,0]],[[7155,9849],[-2,0],[-1,0],[1,1],[1,0],[1,-1]],[[6863,9882],[-2,0],[-1,0],[2,1],[1,-1]],[[6292,9345],[-3,0],[4,1],[-1,-1]],[[5724,8838],[-1,2],[1,0],[0,-1],[0,-1]],[[6022,9144],[-1,-1],[-1,0],[0,1],[1,0],[1,0]],[[5746,8876],[-1,0],[0,1],[1,0],[0,-1]],[[6341,9431],[-3,-2],[1,2],[1,0],[1,0]],[[6257,9273],[-1,-1],[-3,0],[3,1],[1,0]],[[6558,9646],[-1,-1],[-1,0],[0,1],[2,0]],[[6340,9381],[-2,0],[5,2],[-3,-2]],[[6103,8667],[1,-1],[-2,0],[-1,1],[2,0]],[[6081,9174],[-1,-1],[-1,1],[2,1],[0,-1]],[[5866,9091],[-1,0],[-1,0],[0,1],[3,0],[-1,-1]],[[5837,9055],[-1,0],[-2,0],[2,0],[1,0]],[[5744,8878],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,-1]],[[5717,8868],[2,-1],[-2,0],[-1,1],[1,0]],[[6128,8684],[-1,2],[1,0],[1,-1],[-1,-1]],[[5745,9009],[-1,-1],[-2,0],[1,1],[2,0]],[[5710,8855],[-2,0],[0,1],[2,0],[0,-1]],[[6252,9289],[-1,0],[-2,1],[1,0],[2,0],[0,-1]],[[5741,8822],[-1,0],[0,1],[1,0],[0,-1]],[[5727,8824],[-2,0],[0,1],[1,0],[1,0],[-1,0],[1,-1]],[[5726,8827],[-1,0],[0,1],[0,1],[1,-1],[0,-1]],[[5720,8894],[-1,0],[-1,1],[1,0],[1,0],[0,-1]],[[6012,9173],[-1,-1],[-2,1],[3,0]],[[5742,8782],[2,-2],[-1,0],[-1,1],[-1,0],[0,1],[1,0]],[[6012,8600],[-2,0],[1,1],[1,0],[0,-1]],[[5810,8719],[-1,0],[-2,0],[2,1],[1,-1]],[[6805,9828],[2,-1],[-4,1],[2,0]],[[6006,8595],[-1,-1],[-1,1],[1,0],[0,1],[1,-1]],[[6029,9182],[-3,-1],[-1,1],[4,0]],[[5750,8783],[-1,-1],[-1,1],[0,1],[2,-1]],[[6326,9429],[-1,0],[-1,1],[2,0],[0,-1]],[[5733,8843],[0,-1],[-1,0],[0,1],[1,1],[0,-1]],[[6029,9197],[1,-1],[-2,0],[1,0],[-2,0],[2,1]],[[5797,8692],[-1,-1],[-1,0],[-1,1],[1,0],[2,0]],[[5978,9125],[-3,-1],[1,2],[1,0],[0,-1],[1,0]],[[5710,8912],[0,-1],[-1,0],[0,1],[1,0]],[[6395,9365],[-2,-1],[0,1],[2,1],[0,-1]],[[6638,9723],[-2,0],[2,1],[1,0],[-1,-1]],[[6799,9752],[1,-1],[-1,0],[-1,2],[1,-1]],[[5744,8808],[1,-2],[-1,0],[0,2]],[[6245,8699],[-2,-1],[0,1],[1,0],[1,0]],[[5810,8700],[-1,0],[-1,1],[2,0],[0,-1]],[[6074,9221],[-1,-1],[-1,1],[1,0],[1,0]],[[5932,9080],[-2,-1],[-1,0],[3,1]],[[5734,8867],[1,-1],[-3,2],[2,-1]],[[6131,8682],[-1,0],[0,1],[0,1],[1,0],[0,-2]],[[6209,9318],[-2,-1],[0,1],[2,1],[0,-1]],[[5720,8880],[-1,0],[-1,1],[1,0],[1,-1]],[[6545,9611],[-2,0],[1,0],[3,1],[-2,-1]],[[7179,9927],[-3,-2],[1,1],[1,1],[1,0]],[[7423,9887],[-2,-1],[1,1],[0,1],[1,-1]],[[6439,9533],[-3,0],[4,1],[-1,-1]],[[5713,8894],[-1,-1],[-2,1],[1,0],[2,0]],[[5889,8581],[-1,0],[-2,1],[2,0],[1,-1]],[[5750,9005],[-1,0],[-1,1],[1,0],[1,0],[0,-1]],[[6357,9454],[-2,0],[4,1],[-2,-1]],[[6262,9266],[-1,0],[-1,0],[2,1],[0,-1]],[[5854,9093],[-2,-1],[1,2],[1,0],[0,-1]],[[6258,9319],[-2,-1],[0,1],[1,1],[1,-1]],[[6185,9263],[1,0],[-3,0],[1,1],[1,-1]],[[5758,8813],[-1,1],[0,1],[1,-1],[0,-1]],[[7416,9890],[0,-1],[1,0],[-3,0],[3,2],[-1,-1]],[[5711,8967],[1,-1],[-2,0],[0,1],[1,0]],[[7345,9967],[-1,-1],[-1,0],[2,1]],[[5961,9117],[-3,0],[2,1],[1,-1]],[[6331,9429],[-1,0],[0,1],[0,1],[1,-1],[0,-1]],[[5735,8778],[1,-1],[-2,1],[1,0]],[[5712,8911],[0,-1],[-1,0],[0,1],[0,1],[1,-1]],[[6319,9380],[-2,-1],[1,1],[2,1],[-1,-1]],[[6095,9200],[-1,0],[-1,0],[2,1],[0,-1]],[[6161,8687],[-1,0],[-1,0],[2,1],[0,-1]],[[6338,9421],[-2,0],[1,1],[1,0],[0,-1]],[[6289,9310],[-2,-1],[-1,1],[3,0]],[[6336,9442],[-1,-1],[-1,1],[2,0]],[[5740,8747],[-1,-1],[0,1],[0,1],[1,-1]],[[7802,9868],[-2,-1],[-1,1],[3,1],[0,-1]],[[6243,8697],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[6442,9523],[-1,0],[-2,1],[1,0],[2,-1]],[[6344,9447],[-1,0],[2,2],[1,0],[-2,-2]],[[5753,8720],[-1,-1],[-1,0],[0,1],[2,0]],[[6557,9701],[-3,-1],[1,2],[1,0],[1,-1]],[[5751,8780],[-1,0],[-1,2],[2,-1],[0,-1]],[[5734,8833],[-1,0],[0,1],[1,-1]],[[6113,8672],[0,-1],[-2,0],[2,2],[0,-1]],[[5979,9166],[-2,-1],[-1,0],[2,1],[1,0]],[[6477,9591],[-4,-1],[2,1],[2,0]],[[6318,9445],[-4,-2],[1,1],[3,1]],[[6479,9555],[0,-1],[0,-1],[-1,0],[0,1],[1,1]],[[6067,8640],[-2,0],[1,1],[1,-1]],[[5763,8763],[-1,-1],[-1,1],[1,0],[1,0]],[[5889,8580],[1,-1],[-2,0],[-1,1],[1,0],[1,0]],[[6534,9627],[-1,-2],[-1,1],[2,1]],[[6195,8706],[-1,-1],[-2,1],[1,0],[2,0]],[[5764,8690],[0,-1],[-1,1],[0,1],[1,-1]],[[6373,9478],[-2,0],[1,1],[1,0],[0,-1]],[[6254,9297],[-6,-1],[1,1],[5,0]],[[5799,8708],[-1,-1],[0,1],[1,0]],[[6209,9312],[-1,-1],[-1,0],[0,1],[1,0],[1,0]],[[6386,9482],[-3,0],[2,1],[1,-1]],[[6311,9598],[-1,-2],[-1,1],[2,1]],[[5754,8809],[-1,0],[-1,0],[1,1],[1,0],[0,-1]],[[6022,8602],[1,0],[-1,-1],[-1,1],[1,1],[0,-1]],[[6313,9352],[-1,0],[-1,1],[1,0],[1,-1]],[[7298,9971],[2,-1],[-4,0],[2,1]],[[5752,8990],[-1,-1],[-1,1],[1,1],[1,-1]],[[5946,8574],[-1,0],[-2,0],[1,1],[2,-1]],[[6035,9208],[-2,0],[2,1],[0,-1]],[[6191,8704],[-1,-1],[-1,1],[1,1],[1,-1]],[[5794,8682],[-1,0],[0,1],[1,-1]],[[6186,8701],[0,-1],[-1,1],[0,1],[1,0],[0,-1]],[[7481,9974],[-3,0],[-1,1],[1,0],[3,-1]],[[6076,9163],[-1,0],[-1,0],[2,1],[0,-1]],[[6777,9781],[-1,-1],[-2,0],[3,1]],[[6203,9311],[-1,0],[-1,0],[0,1],[2,-1]],[[6667,9660],[-1,0],[-2,1],[3,-1]],[[7046,9863],[-3,-1],[0,1],[2,0],[1,0]],[[5794,9044],[-2,0],[1,1],[1,-1]],[[6183,9262],[-3,0],[2,1],[1,-1]],[[5730,8812],[-2,-1],[0,1],[1,0],[1,0]],[[6969,9903],[0,-1],[-2,1],[1,0],[1,0]],[[6596,9687],[-2,-1],[-1,0],[1,1],[2,0]],[[6378,9505],[-1,-1],[-1,1],[1,0],[1,0]],[[7574,9937],[-1,-1],[-1,1],[1,0],[1,0]],[[6214,9285],[-1,0],[2,2],[0,-1],[-1,-1]],[[6340,9430],[-2,-1],[1,1],[1,0]],[[5712,8852],[-1,0],[-1,1],[1,0],[1,-1]],[[5738,8758],[-1,-1],[-1,0],[1,1],[1,0]],[[5933,9121],[-2,0],[2,1],[0,-1]],[[6482,9593],[-1,0],[1,0],[0,-1],[-2,0],[1,0],[-2,0],[3,1]],[[5896,8575],[-1,0],[-1,0],[1,1],[1,-1]],[[5916,9085],[-5,-1],[4,2],[0,-1],[1,0]],[[6137,9224],[-1,-1],[-2,1],[3,0]],[[6081,9176],[-1,0],[0,1],[1,-1]],[[6610,9672],[-1,0],[-1,0],[2,0]],[[7425,9904],[-2,0],[2,1],[0,-1]],[[7365,9971],[2,-1],[-4,0],[2,1]],[[6220,9283],[-1,0],[-1,1],[1,0],[1,-1]],[[5722,8824],[-1,0],[1,1],[0,-1]],[[6187,8708],[-2,1],[1,0],[1,0],[0,-1]],[[5977,9170],[-2,0],[1,1],[1,-1]],[[6402,9504],[-1,-1],[-1,1],[1,0],[1,0]],[[6398,9457],[-2,-1],[-1,1],[2,0],[1,0]],[[5742,8782],[-1,0],[-1,1],[2,0],[0,-1]],[[6188,8731],[-1,-1],[-1,1],[1,0],[1,1],[0,-1]],[[5729,8792],[-1,0],[-1,0],[2,1],[0,-1]],[[7246,9963],[-1,0],[-1,1],[2,-1]],[[6075,9166],[0,-1],[1,1],[-2,-1],[0,1],[1,0]],[[5721,8878],[1,-1],[-1,0],[-1,1],[1,0]],[[6891,9832],[0,-1],[-1,1],[1,0]],[[6479,9576],[-2,0],[3,1],[-1,0],[0,-1]],[[5998,8588],[-1,-1],[-1,0],[0,1],[1,0],[1,0]],[[6447,9663],[-2,0],[-1,0],[2,1],[1,-1]],[[6228,8694],[-1,-1],[0,1],[1,1],[0,-1]],[[7132,9898],[0,-1],[-1,0],[1,1],[-1,1],[1,0],[0,-1]],[[6237,8692],[0,-1],[-1,0],[0,1],[1,0]],[[6035,9207],[-1,0],[-1,0],[-1,0],[2,1],[1,-1]],[[6327,9371],[-2,-1],[1,2],[1,0],[0,-1]],[[5973,9152],[-2,-1],[-1,1],[2,0],[1,0]],[[5714,8893],[0,-1],[-2,0],[1,1],[1,0]],[[6177,8739],[0,-1],[-1,1],[0,1],[1,-1]],[[5738,8772],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1]],[[5722,8887],[-1,-1],[-1,2],[1,-1],[1,0]],[[5888,9080],[-4,-1],[5,1],[-1,0]],[[6319,9446],[-3,-2],[1,2],[1,0],[1,0]],[[5861,9062],[-2,0],[-2,0],[1,0],[3,0]],[[5719,8826],[-1,1],[1,0],[0,-1]],[[6221,9285],[0,-1],[-2,0],[1,1],[1,0]],[[5717,8929],[-1,0],[0,1],[1,-1]],[[5726,8940],[-1,0],[-1,1],[1,0],[1,-1]],[[6500,9680],[0,-2],[-1,0],[0,1],[1,1]],[[5757,9033],[1,-1],[-2,0],[1,1]],[[5741,8726],[0,-1],[-1,1],[1,0]],[[5978,8587],[0,-1],[-1,0],[0,1],[1,0]],[[6020,9181],[-4,0],[1,1],[3,-1]],[[6551,9680],[-1,0],[-1,0],[1,1],[1,-1]],[[6334,9417],[-1,-1],[0,1],[1,1],[0,-1]],[[5749,8960],[-3,0],[-1,1],[4,-1]],[[6189,8704],[-1,0],[1,2],[0,-1],[0,-1]],[[6274,9284],[-1,0],[-1,1],[1,0],[1,-1]],[[6820,9832],[2,-1],[1,0],[-3,1]],[[6520,9692],[-1,0],[-1,0],[1,1],[1,-1]],[[6192,8759],[1,-1],[-1,0],[0,1],[0,1],[0,-1]],[[6212,9277],[-1,0],[-1,0],[1,1],[1,-1]],[[5893,9108],[-2,-1],[0,1],[2,0]],[[6253,9306],[-2,0],[-1,0],[2,1],[1,-1]],[[5829,9064],[-2,-1],[2,2],[0,-1]],[[5777,8798],[-1,0],[-1,0],[2,1],[0,-1]],[[5908,9096],[-1,0],[-2,0],[2,0],[1,0]],[[5745,8801],[0,-2],[-1,1],[0,1],[1,0]],[[7424,9892],[-1,-1],[2,2],[-1,-1]],[[6484,9559],[0,-1],[-2,0],[2,1]],[[6206,9282],[0,-1],[-2,0],[2,1]],[[5712,8880],[0,-1],[-1,1],[0,1],[1,-1]],[[6322,9406],[-3,-1],[2,1],[-1,0],[1,0],[1,0]],[[6078,9178],[0,-1],[-1,0],[1,1]],[[6097,8667],[-3,0],[1,1],[1,0],[1,-1]],[[6383,9473],[0,-1],[-1,0],[0,1],[1,0]],[[7047,9862],[-3,0],[1,0],[1,0],[1,0]],[[6203,9317],[-1,-1],[-1,0],[1,1],[1,0]],[[5802,9031],[-1,0],[0,1],[1,0],[0,-1]],[[6202,8718],[1,-1],[-2,1],[1,0]],[[6615,9671],[-1,0],[-1,0],[2,1],[0,-1]],[[5754,8808],[0,-1],[-1,1],[1,1],[0,-1]],[[5747,8783],[2,-1],[-1,0],[-1,1]],[[6476,9593],[-1,-1],[-2,-1],[2,1],[-1,0],[2,1]],[[6185,8697],[-1,0],[1,1],[0,-1]],[[6073,9220],[-1,-1],[-1,1],[1,1],[1,-1]],[[5743,8808],[-1,-1],[-1,1],[1,0],[1,0]],[[6747,9811],[-2,0],[-1,0],[2,0],[-2,1],[3,-1]],[[5910,8578],[-1,0],[1,1],[0,-1]],[[6436,9534],[-1,-1],[-1,0],[2,1]],[[6211,8776],[-1,0],[1,1],[0,-1]],[[6719,9792],[-1,-1],[-1,1],[1,0],[1,0]],[[6364,9464],[-1,-1],[-2,0],[2,1],[1,0]],[[6229,8691],[-1,0],[0,1],[1,1],[0,-2]],[[6633,9674],[1,-1],[-2,0],[1,1]],[[6414,9520],[-3,-1],[1,1],[2,0]],[[5713,8886],[3,-1],[-3,0],[0,1]],[[6062,9163],[-1,0],[0,1],[1,-1]],[[5718,8867],[1,-1],[-1,0],[-1,0],[1,1]],[[7436,9915],[-1,-1],[0,1],[1,0]],[[6056,8626],[-1,-1],[0,1],[2,1],[-1,-1]],[[6151,9243],[-3,0],[1,1],[2,-1]],[[5708,8886],[-1,-1],[-1,1],[1,0],[1,0]],[[5966,8581],[-1,-1],[-1,1],[2,0]],[[5910,9084],[-5,0],[4,1],[1,-1]],[[5908,9097],[-2,-1],[-1,1],[3,0]],[[5980,9146],[-1,0],[-1,0],[2,1],[0,-1]],[[5744,8779],[0,-1],[-2,1],[2,0]],[[6322,9402],[-2,-1],[0,1],[1,0],[1,0]],[[6361,9442],[-1,0],[-1,0],[2,0]],[[7409,9889],[-1,-1],[-1,0],[2,1]],[[6336,9498],[-1,-1],[-1,0],[2,1]],[[5712,8889],[-1,0],[-1,1],[1,0],[1,-1]],[[6338,9466],[-2,0],[1,0],[1,1],[0,-1]],[[5717,8894],[-1,0],[-1,0],[2,1],[0,-1]],[[5718,8847],[-2,-1],[1,2],[1,-1]],[[6078,9227],[-2,-1],[0,1],[1,0],[1,0]],[[6545,9620],[-1,-1],[-1,1],[1,1],[1,-1]],[[6938,9851],[-1,0],[1,1],[1,0],[-1,-1]],[[5912,8576],[0,-1],[-1,1],[1,0]],[[5739,8881],[0,-1],[-1,1],[1,0]],[[6196,8704],[-1,0],[-1,1],[1,0],[1,-1]],[[6033,9206],[-2,0],[1,1],[1,-1]],[[6712,9750],[-1,0],[2,0],[-1,0],[-2,0],[2,0]],[[5896,8582],[-1,-1],[-1,0],[1,1],[1,0]],[[6032,8611],[-2,0],[1,0],[1,0]],[[5980,9126],[-2,-1],[4,2],[-2,-1]],[[5749,8875],[0,-1],[-1,1],[1,0]],[[7360,9971],[1,0],[-2,0],[1,1],[0,-1]],[[7079,9873],[-1,-1],[0,1],[1,0]],[[5895,8576],[-1,0],[-1,1],[2,0],[0,-1]],[[6407,9525],[-2,0],[2,1],[0,-1]],[[5824,9058],[-2,-1],[-1,1],[3,0]],[[5726,8852],[3,-1],[-1,0],[-2,1]],[[5968,9134],[-1,-1],[-1,1],[1,0],[1,0]],[[7420,9910],[-1,-1],[-1,0],[2,1]],[[7332,9960],[-2,0],[1,0],[1,0]],[[5980,8589],[-1,0],[0,1],[1,-1]],[[6657,9675],[-2,0],[2,0],[1,1],[1,0],[-2,0],[0,-1]],[[5746,8775],[-1,0],[0,1],[1,0],[0,-1]],[[6214,9328],[-2,0],[2,1],[0,-1]],[[6545,9745],[-1,-1],[-1,1],[2,0]],[[6192,8690],[0,-1],[-1,1],[0,1],[1,-1]],[[5797,8709],[0,-1],[-1,0],[0,1],[1,0]],[[6088,8654],[0,-1],[-1,1],[1,0]],[[6322,9429],[-1,-1],[1,2],[1,0],[-1,-1]],[[5958,9126],[-3,0],[2,1],[1,-1]],[[6669,9692],[1,0],[-3,0],[2,0]],[[5705,8912],[-1,0],[-1,0],[1,1],[1,-1]],[[5964,9155],[-2,-1],[0,1],[2,0]],[[6104,9166],[-1,-1],[-1,1],[1,0],[1,0]],[[6019,9207],[0,-1],[-1,1],[1,0]],[[6379,9478],[-1,0],[0,1],[1,0],[0,-1]],[[6480,9564],[-1,-1],[-1,1],[1,0],[1,0]],[[5723,8862],[3,-2],[-2,1],[-1,1]],[[5748,8806],[1,-1],[-2,1],[1,0]],[[6696,9771],[-3,0],[2,1],[-1,-1],[2,0]],[[5945,8575],[-1,0],[1,1],[0,-1]],[[6086,8653],[-1,0],[0,1],[1,0],[0,-1]],[[6242,9194],[-1,0],[2,1],[0,-1],[-1,0]],[[6323,9492],[-2,-1],[0,1],[2,0]],[[6858,9814],[-1,0],[0,1],[1,-1]],[[7436,9925],[-2,-1],[1,1],[1,0]],[[5867,9085],[-1,-1],[-1,0],[2,1]],[[5740,8782],[0,-1],[-1,1],[1,0]],[[5811,8703],[1,-1],[-2,0],[1,1]],[[6204,8715],[-1,0],[0,1],[1,-1]],[[6231,8689],[-1,0],[0,1],[1,-1]],[[6207,9318],[-1,-1],[0,1],[1,0]],[[6010,9176],[-1,0],[-1,0],[2,1],[0,-1]],[[5947,8572],[-1,0],[0,1],[1,-1]],[[6478,9562],[-1,-1],[-1,1],[1,0],[1,0]],[[6180,8736],[1,-1],[-3,2],[2,-1]],[[6674,9691],[-1,0],[-1,0],[1,1],[1,-1]],[[7292,9945],[-3,0],[1,1],[2,-1]],[[6008,9148],[-1,-1],[-1,1],[2,0]],[[6383,9483],[0,-1],[-1,0],[0,1],[1,0]],[[5725,8968],[0,-1],[-1,1],[0,1],[0,-1],[1,0]],[[6700,9748],[-1,-1],[-1,1],[2,0]],[[6411,9521],[-2,-1],[-1,1],[3,0]],[[6227,8696],[-1,0],[-1,0],[1,1],[1,-1]],[[5720,8893],[-1,0],[0,1],[1,0],[0,-1]],[[6729,9767],[-3,-1],[2,1],[1,0]],[[6118,8673],[-1,-1],[1,0],[0,1]],[[6354,9521],[-1,0],[1,0],[-1,-1],[0,1],[1,0]],[[5858,9100],[-1,-1],[-1,1],[1,0],[1,0]],[[5738,8782],[0,-1],[-1,1],[1,0]],[[6214,9314],[-1,0],[-1,1],[2,0],[0,-1]],[[5703,8909],[-1,-1],[0,1],[1,0]],[[6075,8644],[0,-2],[-1,1],[1,1]],[[5814,8698],[-1,-1],[-1,0],[0,1],[2,0]],[[7479,9959],[-4,0],[1,1],[0,-1],[3,0]],[[6217,9288],[-1,0],[1,1],[0,-1]],[[5979,9147],[-1,-1],[-1,1],[2,0]],[[5721,8941],[-2,0],[1,0],[1,0]],[[6037,9199],[-1,-1],[-1,0],[2,1]],[[5718,8892],[-1,-1],[-1,1],[1,0],[1,0]],[[5962,9154],[-1,0],[-1,0],[2,0]],[[6079,9226],[-1,0],[1,1],[0,-1]],[[6337,9421],[0,-1],[-1,0],[1,1]],[[5734,8838],[-1,-1],[0,1],[0,1],[1,-1]],[[6004,8592],[-2,-1],[-1,0],[2,1],[1,0]],[[7810,9861],[1,-2],[-2,2],[1,0]],[[6543,9636],[-1,-1],[3,2],[-2,-1]],[[6127,8684],[0,-2],[-1,2],[1,0]],[[6875,9886],[-1,0],[1,2],[0,-2]],[[7443,9990],[1,-1],[-2,1],[1,0]],[[6012,9187],[-1,0],[-1,0],[2,1],[0,-1]],[[6340,9433],[-2,0],[2,1],[0,-1]],[[6340,9420],[-1,-1],[1,2],[1,0],[-1,-1]],[[7442,9900],[-3,0],[2,1],[1,-1]],[[5746,8987],[-1,0],[-2,0],[3,0]],[[6005,8593],[-1,0],[-1,0],[0,1],[1,0],[1,-1]],[[6076,8646],[-1,-1],[0,1],[1,0]],[[6214,9329],[-2,0],[3,0],[-1,0]],[[5994,9149],[-3,0],[2,1],[1,-1]],[[5799,8761],[-1,-1],[0,1],[1,0]],[[5726,8823],[0,-1],[-1,1],[1,0]],[[5978,8588],[2,-1],[-2,0],[0,1]],[[5733,8857],[2,-1],[-2,0],[0,1]],[[5726,8894],[-1,-1],[-1,1],[1,0],[1,0]],[[6026,9192],[-2,0],[1,0],[1,0]],[[6132,8683],[0,-1],[-1,1],[1,0]],[[5736,8839],[-1,-1],[0,1],[1,0]],[[6368,9472],[-1,0],[1,1],[1,0],[-1,-1]],[[6511,9720],[-1,-1],[-1,0],[2,1]],[[6074,9171],[-1,0],[1,1],[0,-1]],[[5761,8762],[-1,0],[0,1],[1,-1]],[[5807,9067],[-1,-1],[-1,0],[1,1],[1,0]],[[5962,9129],[-2,-1],[-1,1],[2,0],[1,0]],[[6240,9326],[-2,-1],[0,1],[2,0]],[[6336,9391],[-1,-1],[0,1],[1,0]],[[6544,9728],[-1,-1],[0,1],[1,1],[0,-1]],[[5712,8886],[0,-1],[-2,1],[1,0],[1,0]],[[6861,9788],[0,1],[1,0],[-1,-1]],[[6129,8683],[0,-1],[-1,1],[0,1],[1,-1]],[[7432,9906],[-1,0],[1,1],[0,-1]],[[5810,9033],[-1,-1],[-2,1],[1,0],[2,0]],[[5820,8726],[-1,0],[0,1],[1,-1]],[[6228,8681],[0,-1],[-1,1],[1,0]],[[5722,8832],[1,-1],[-1,0],[0,1]],[[5727,8880],[0,-1],[-1,1],[1,0]],[[6562,9574],[-1,-1],[-1,1],[2,0]],[[6366,9477],[-1,-1],[3,2],[-2,-1]],[[5907,9098],[0,-1],[-1,1],[1,0]],[[6056,9216],[-1,-1],[0,1],[1,0]],[[5729,8810],[-1,-1],[-1,1],[2,0]],[[5726,8923],[-1,0],[-1,1],[1,0],[1,-1]],[[5720,8838],[-1,0],[0,1],[1,-1]],[[6863,9871],[-1,-1],[-1,0],[2,1]],[[6188,8694],[0,-1],[-1,1],[1,1],[0,-1]],[[6238,8688],[-1,0],[0,1],[1,0],[0,-1]],[[5714,8884],[-1,-1],[0,1],[1,0]],[[5792,8683],[-1,1],[1,0],[0,-1]],[[6075,9222],[1,-1],[-1,0],[-1,1],[1,0]],[[5724,8966],[1,1],[0,-1],[-1,0]],[[6340,9402],[0,-1],[0,1],[0,1],[1,-1],[-1,0]],[[5742,8778],[-1,0],[1,1],[0,-1]],[[6569,9692],[-2,-1],[0,1],[1,1],[1,-1]],[[6336,9502],[-2,0],[2,1],[0,-1]],[[6210,8780],[-2,-1],[0,1],[1,0],[1,0]],[[6475,9590],[-3,-1],[1,0],[2,1]],[[6213,8694],[0,-1],[-1,1],[1,0]],[[6009,9144],[-1,0],[1,1],[1,0],[-1,-1]],[[6019,9177],[-1,0],[-1,0],[2,0]],[[6503,9672],[-1,0],[-1,1],[1,0],[-1,0],[2,-1]],[[5737,8727],[-1,0],[0,1],[1,0],[0,-1]],[[5992,9151],[-1,0],[-1,0],[1,0],[1,0]],[[6401,9512],[-1,-1],[-1,0],[2,1]],[[5720,8896],[-1,0],[-1,0],[1,0],[1,0]],[[6067,9166],[-1,-1],[-1,0],[1,1],[1,0]],[[6161,9239],[-1,0],[0,1],[1,-1]],[[6330,9496],[-2,-1],[1,1],[1,0]],[[6474,9591],[-3,-1],[0,1],[3,0]],[[5764,8761],[-1,0],[0,1],[1,-1]],[[5961,9125],[-1,-1],[-1,1],[1,0],[1,0]],[[6220,9328],[0,-1],[-1,0],[1,1]],[[6440,9524],[-1,0],[-1,0],[1,1],[1,-1]],[[5964,9155],[-1,-1],[-1,0],[2,1]],[[6233,8699],[-1,0],[1,1],[0,-1]],[[6408,9514],[-1,1],[1,0],[0,-1]],[[6254,9317],[-1,-1],[-1,0],[2,1]],[[5782,8823],[-1,-1],[0,1],[1,0]],[[6541,9597],[-2,-1],[0,1],[2,0]],[[5761,8806],[-1,0],[1,1],[0,-1]],[[6174,8739],[1,-1],[-2,3],[1,-2]],[[6274,9283],[0,-1],[-1,0],[0,1],[1,0]],[[5724,8953],[0,-1],[-1,0],[1,1]],[[5739,8880],[0,-1],[-1,0],[0,1],[1,0]],[[6614,9690],[0,-1],[-1,1],[1,0]],[[5943,8571],[-1,0],[1,1],[0,-1]],[[6187,8695],[-1,0],[0,1],[1,-1]],[[6363,9499],[-1,-1],[0,1],[1,0]],[[6362,9477],[-2,-2],[0,1],[2,1]],[[6329,9497],[-1,0],[-1,0],[1,0],[1,0]],[[6018,9206],[-1,0],[0,1],[1,-1]],[[5991,8586],[0,-1],[-1,1],[1,0]],[[5967,8580],[-1,0],[0,1],[1,0],[-1,0],[1,-1]],[[5733,8841],[-1,0],[0,1],[1,-1]],[[6246,9303],[-2,-1],[1,0],[1,1]],[[5749,8728],[1,-1],[-1,0],[0,1]],[[6359,9457],[-3,-1],[1,1],[2,0]],[[5749,8757],[-1,0],[0,1],[1,-1]],[[5969,8582],[-1,0],[-1,0],[1,0],[1,0]],[[7071,9848],[-1,-1],[-1,0],[2,1]],[[5798,8678],[-1,1],[1,0],[0,-1]],[[6322,9384],[0,-1],[-1,1],[1,0]],[[5799,8710],[-1,-1],[0,1],[1,0]],[[6072,8655],[-1,0],[0,1],[1,0],[0,-1]],[[6897,9798],[1,-1],[-2,1],[1,0]],[[6006,8597],[-1,0],[1,1],[0,-1]],[[5721,8953],[-1,-1],[0,1],[1,0]],[[5995,9142],[-2,0],[1,0],[1,0]],[[6451,9551],[-2,0],[3,1],[-1,-1]],[[6369,9480],[-1,-1],[0,1],[1,0]],[[6176,8703],[-1,1],[1,0],[0,-1]],[[5786,8783],[0,-1],[-1,1],[0,1],[1,-1]],[[6666,9684],[1,-1],[-1,0],[-1,1],[1,0]],[[6152,8682],[0,-1],[-1,1],[1,1],[0,-1]],[[6555,9749],[-1,0],[-1,0],[2,0]],[[6416,9665],[1,-1],[-2,0],[1,1]],[[5765,8714],[-1,-1],[0,1],[1,0]],[[6136,9222],[-2,0],[1,1],[1,-1]],[[6593,9652],[0,-1],[-1,0],[1,1]],[[5803,8686],[0,-1],[-1,0],[1,1]],[[6332,9438],[-1,0],[1,1],[0,-1]],[[6231,9352],[-2,0],[2,1],[0,-1]],[[6319,9420],[0,-1],[-1,0],[1,1]],[[6238,9318],[-1,0],[1,1],[0,-1]],[[5722,8962],[0,-1],[-1,1],[1,0]],[[6562,9646],[-1,-1],[3,2],[-2,-1]],[[5706,8865],[1,0],[-2,0],[1,0]],[[5744,8815],[-1,0],[-1,0],[2,0]],[[5711,8921],[-1,1],[1,0],[0,-1]],[[5937,8572],[0,-1],[-1,0],[0,1],[1,0]],[[6553,9646],[-2,-2],[1,1],[1,1]],[[5816,8725],[-1,-1],[0,1],[1,0]],[[5735,8770],[1,-1],[-2,1],[1,0]],[[5702,8918],[0,-1],[-1,1],[1,0]],[[5784,8771],[0,-1],[-1,0],[1,1]],[[6208,8778],[-1,0],[1,1],[0,-1]],[[6189,8702],[-1,0],[0,1],[1,-1]],[[5776,8735],[-1,0],[1,1],[0,-1]],[[6081,9227],[-1,-1],[0,1],[1,0]],[[6374,9490],[-1,0],[1,1],[0,-1]],[[6218,9329],[-2,0],[1,1],[1,-1]],[[5944,9124],[-2,0],[2,1],[0,-1]],[[6315,9360],[-1,-1],[-1,0],[2,1]],[[6145,9235],[-1,0],[1,1],[0,-1]],[[5717,8920],[-1,-1],[0,1],[0,1],[1,-1]],[[6009,9163],[-1,-1],[0,1],[1,0]],[[6167,8762],[-1,0],[1,1],[0,-1]],[[6315,9369],[-2,-2],[1,1],[1,1]],[[5863,9075],[-3,0],[2,0],[1,0]],[[5807,8790],[0,-1],[-1,1],[1,0]],[[5811,8700],[-1,-1],[-1,0],[2,1]],[[5735,8758],[1,-1],[-1,0],[0,1]],[[5734,8777],[-1,-1],[0,1],[1,0]],[[5977,9145],[1,-1],[-3,1],[2,0]],[[5892,9102],[-2,0],[1,1],[1,-1]],[[5714,8877],[0,-1],[-1,1],[1,0]],[[5795,8713],[-1,0],[0,1],[1,-1]],[[5720,8932],[-1,-1],[0,1],[1,0]],[[6132,9210],[-2,-1],[1,1],[1,0]],[[6106,8674],[-2,-1],[0,1],[2,0]],[[5786,8715],[-1,0],[2,1],[-1,-1]],[[5758,8711],[-1,0],[1,1],[0,-1]],[[6229,9312],[0,-1],[-1,0],[1,1]],[[5835,8830],[-1,0],[0,1],[1,-1]],[[6202,8738],[-1,0],[0,1],[1,-1]],[[6344,9341],[-1,-1],[-1,0],[2,1]],[[5764,8670],[-1,0],[1,1],[0,-1]],[[6335,9421],[-1,0],[1,1],[0,-1]],[[5725,8961],[-1,0],[0,1],[1,-1]],[[6214,9329],[-2,0],[3,1],[-1,-1]],[[5755,8994],[-1,0],[1,1],[0,-1]],[[5701,8908],[-1,0],[0,1],[1,-1]],[[5706,8863],[-2,0],[1,0],[1,0]],[[6047,8621],[0,-1],[-1,1],[1,0]],[[6033,9209],[-1,0],[0,1],[1,-1]],[[5717,8868],[-2,0],[0,1],[2,-1]],[[5709,8858],[1,-1],[-1,0],[0,1]],[[5842,9060],[-2,-1],[-1,0],[3,1]],[[6030,8608],[-1,-1],[0,1],[1,0]],[[5797,8681],[-1,0],[0,1],[1,-1]],[[5705,8867],[1,-1],[-2,1],[1,0]],[[5961,8581],[-1,-1],[0,1],[1,0]],[[5785,8687],[-1,-1],[-1,1],[1,0],[1,0]],[[5743,8807],[0,-1],[-2,1],[1,0],[1,0]],[[5718,8943],[-1,0],[2,1],[-1,-1]],[[5716,8854],[-2,0],[2,1],[0,-1]],[[5721,8835],[-1,0],[1,1],[0,-1]],[[6090,8669],[0,-1],[-1,0],[1,1]],[[5853,8601],[1,-1],[-1,0],[0,1]],[[6125,8689],[-1,0],[0,1],[1,0],[0,-1]],[[5986,8588],[1,-1],[-1,0],[0,1]],[[5937,8574],[-1,0],[1,1],[0,-1]],[[7283,8138],[0,-4],[1,-5],[0,-1],[2,-1],[0,-2],[0,-1],[-1,-3],[1,-3],[3,-3],[0,-2],[0,-2],[0,-1],[3,-10],[3,-9],[1,-1],[3,-8],[2,-3],[1,-4],[2,-5],[3,-6],[1,-3],[4,-1],[0,-1],[0,-1],[0,-2],[2,-1],[1,-1],[1,-1],[1,-1],[0,-2],[-2,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[1,-1],[1,-1],[0,-1],[2,-1],[-1,-1],[1,-1],[1,-3],[0,-1],[0,-1],[1,-2],[-2,-2],[0,-4],[0,-8],[2,-1],[0,-7],[0,-4],[-4,-3],[0,-1],[-1,0],[-10,-6],[-2,-1],[-1,-1],[-1,1],[-6,-1],[-2,0],[-7,-3],[-3,-1],[-1,-1],[-2,-1],[-1,-1],[-4,-3],[-4,-5],[-4,-4],[0,-2],[-1,-1],[-2,-1],[-5,-7],[-3,-5],[2,0],[0,-2],[-1,-2],[1,-2],[5,-1],[3,1],[1,-1],[-1,0],[1,-1],[1,1],[1,-1],[1,1],[2,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[2,0],[0,-1],[1,0],[1,2],[1,-1],[0,1],[1,-1],[1,0],[2,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-2],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,1],[2,-1],[1,0],[0,-2],[1,-1],[1,0],[1,-1],[1,0],[-1,-1],[1,-1],[0,-2],[0,-2],[1,-1],[1,-1],[1,-1],[-1,-1],[-1,-1],[0,-1],[-2,0],[0,-1],[-1,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[1,-2],[1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[2,0],[1,-1],[1,-2],[-1,-2],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,1],[-2,-2],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-3],[-1,-1],[1,-2],[-2,-1],[0,-1],[1,-1],[0,-2],[-1,-2],[1,-2],[1,-2],[0,-1],[0,-1],[0,-1],[2,-1],[1,1],[0,-1],[1,-1],[1,-1],[-1,-1],[1,-1],[1,-1],[1,0],[1,1],[1,-1],[0,-1],[-2,-2],[0,-1],[2,0],[0,-1],[1,-1],[1,-2],[1,-1],[-2,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-2],[-1,-1],[-1,-1],[0,-1],[1,-3],[1,0],[2,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[2,-1],[1,-1],[0,-1],[1,0],[2,0],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,-2],[0,-1],[-1,0],[-1,0],[0,-1],[1,-3],[1,0],[0,-2],[2,0],[1,0],[0,-1],[1,-1],[-1,-2],[1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-2],[0,-2],[0,-1],[2,0],[1,-2],[2,-1],[2,-2],[0,-1],[3,0],[1,-2],[2,0],[2,0],[0,-2],[-1,-1],[-3,-1],[-4,0],[-2,1],[-1,0],[-2,-1],[-1,0],[-1,-2],[-1,-2],[1,-2],[0,-1],[1,0],[3,0],[1,0],[0,-1],[-1,-2],[0,-2],[1,0],[1,-1],[1,0],[1,0],[1,1],[0,-1],[0,-2],[-1,-1],[0,-1],[2,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[1,1],[-1,-2],[1,-1],[0,-2],[-1,-2],[0,-2],[-1,-4],[0,-2],[-3,-5],[0,-1],[-3,-1],[-1,-3],[-1,0],[-3,0],[-12,-1],[-5,-1],[-1,0],[-2,-2],[-1,-2],[0,-1],[-1,-1],[0,-1],[-4,-1],[0,-1],[-2,-1],[-3,-4],[-2,-1],[-4,-2],[-3,-2],[-2,-2],[-1,-1],[-4,-3],[-2,-2],[-4,-3],[-1,-1],[-2,0],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[0,-2],[-5,-5],[-1,-1],[-3,-2],[0,-2],[-1,-1],[-1,0],[-5,-5],[-3,-4],[-2,-1],[-1,-3],[-2,-2],[-3,-3],[0,-1],[-2,-2],[-2,-1],[0,-2],[-2,-1],[-2,0],[-1,-1],[0,-1],[-1,-2],[-2,-3],[-6,-6],[0,-2],[-1,-1],[-1,-1],[-2,-1],[1,-2],[2,-2],[2,0],[0,-1],[2,-5],[2,-7],[0,-1],[0,-2],[0,-2],[1,-1],[-1,-2],[0,-4],[0,-2],[-2,0],[0,-1],[0,-1],[2,-1],[-1,0],[-1,-2],[0,-1],[-1,-1],[1,-1],[1,0],[0,1],[1,1],[1,-1],[-1,-1],[0,-1],[1,-1],[3,1],[0,-1],[0,-1],[2,-1],[1,-2],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[-1,-1],[-1,-1],[-1,-1],[0,-3],[2,-2],[1,0],[0,-1],[-2,-1],[-2,0],[0,1],[-1,2],[-1,-1],[-1,0],[0,1],[-4,2],[-1,-1],[-3,1],[-2,0],[-1,-1],[-2,1],[-1,0],[-1,1],[0,2],[-1,0],[-2,1],[0,1],[-1,0],[-2,-1]],[[7203,7612],[-1,0],[0,1],[-1,0],[-3,0],[0,-1],[-1,0],[-3,2],[-2,0],[0,-1],[-2,1],[0,1],[-1,0],[-1,1],[-2,3],[0,-1],[-2,0],[-2,-1],[-3,1],[-2,1],[-2,0],[0,1],[0,1],[0,1],[-1,1],[-1,-1],[-1,-1],[-2,1],[-1,1],[-1,1],[-3,1],[-4,1],[-2,1],[-1,0],[1,1],[-1,1],[1,0],[0,1],[-1,3],[0,1],[-1,0],[-2,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,-2],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,-1],[-2,1],[0,1],[-1,0],[-1,2],[-2,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,-1],[1,-1],[-1,0],[-2,1],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,0],[-2,2],[-1,1],[-2,-1],[-1,1],[-1,1],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[1,-1],[-2,-1],[0,-1],[-1,0],[-1,0],[0,1],[-2,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-2,0],[-2,-1],[0,-2],[3,-1],[1,-2],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,1],[-1,1],[1,0],[0,1],[-1,0],[-1,-1],[-1,1],[1,1],[-2,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[-1,1],[-2,0],[1,1],[-1,0],[-1,0],[-1,0],[1,1],[-1,0],[-1,1],[1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-2,0],[-2,-1],[0,-1],[-2,0],[-1,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,1],[-1,0],[-2,1],[-1,1],[-2,1],[-3,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,-1],[0,-1],[-2,0],[-1,2],[0,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[1,0],[0,-2],[0,-1],[-1,-2],[-2,1],[-1,0],[-1,-1],[-1,1],[-2,-1],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-2],[0,1],[-1,1],[-1,-2],[-1,-2],[0,-1],[-2,-2],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[-2,0],[-2,2],[-2,1],[-1,1],[-2,2],[-1,0],[-3,0],[-2,0],[-1,-2],[-1,-1],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[2,1],[-1,2],[-1,0],[-1,1],[1,2],[-1,2],[1,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[-1,0],[-1,0],[-2,0],[-1,-2],[-1,0],[0,-1],[-1,1],[-1,1],[-3,1],[-1,0],[-1,0],[0,2],[1,1],[-1,0],[0,1],[0,1],[-2,-1],[-1,1],[-2,0],[0,1],[-1,0],[0,2],[-1,1],[0,1],[0,1],[-2,3],[0,2],[0,2],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[-3,0],[0,-1],[0,-1],[-1,0],[-2,-1],[0,-1],[0,-1],[-1,-1],[-4,-1],[0,1],[-1,-1],[-2,1],[-2,-1],[-2,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[-1,-1],[0,-1],[-1,1],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-2,-1],[-1,1],[-1,-1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,-1],[-1,1],[-1,-2],[-1,-1],[-2,0],[-1,1],[-1,-1],[-1,2],[1,1],[1,1],[-1,1],[-1,1],[-1,1],[1,2],[-1,1],[1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-3,-1],[-3,1],[-1,0]],[[6506,8110],[2,0],[1,1],[0,1],[-2,0],[0,1],[2,0],[0,1],[-2,1],[1,0],[3,-1],[2,-2],[4,-3],[1,-1],[6,-1],[2,0],[2,-1],[1,-2],[2,-4],[2,-1],[1,1],[-1,1],[0,1],[1,1],[1,0],[1,1],[-1,1],[-1,1],[-2,-1],[-1,1],[-2,2],[0,3],[1,3],[0,2],[1,1],[1,-1],[1,1],[2,0],[0,1],[0,1],[0,2],[-1,3],[1,1],[2,5],[1,2],[1,0],[1,0],[1,2],[1,1],[2,1],[0,1],[2,-1],[0,-1],[1,0],[0,3],[0,2],[1,2],[1,2],[2,0],[0,1],[0,1],[-1,0],[-3,0],[-1,-1],[-1,0],[14,4],[13,4],[10,3],[10,3],[8,1],[3,1],[5,0],[3,0],[3,2],[2,0],[8,1],[10,3],[6,2],[9,1],[7,1],[4,1],[4,2],[5,3],[9,7],[4,4],[1,2],[1,1],[1,1],[3,3],[3,3],[5,3],[6,2],[8,1],[5,0],[6,2],[2,0],[0,1],[0,-1],[3,1],[5,2],[5,3],[3,3],[4,1],[14,6],[8,2],[12,1],[14,2],[7,2],[14,3],[5,1],[10,0],[9,0],[8,0],[4,0],[2,-2],[5,-2],[1,-1],[8,-4],[10,-4],[7,-4],[4,-2],[3,-3],[1,-1],[0,-2],[-1,-1],[-1,0],[0,1],[-2,1],[0,1],[-1,2],[-4,4],[-3,2],[-1,0],[-2,0],[-3,3],[-7,3],[-9,4],[0,-2],[-1,-1],[-1,-2],[0,-1],[0,-1],[2,0],[1,-1],[1,-1],[2,-1],[0,-1],[-1,-3],[1,-1],[0,-1],[0,-1],[1,0],[2,0],[1,1],[-1,-2],[1,-1],[1,-2],[1,-1],[1,-1],[1,-3],[0,-1],[0,-2],[-1,-1],[1,-3],[0,-1],[0,-1],[0,-2],[2,-2],[4,-2],[1,0],[1,0],[1,0],[2,-2],[3,-2],[4,0],[6,-2],[3,-1],[3,0],[1,1],[1,0],[-1,0],[1,1],[0,-1],[1,1],[1,-1],[2,-1],[13,0],[15,2],[6,2],[8,2],[7,3],[5,3],[1,0],[-4,-3],[-5,-2],[-7,-3],[-4,-2],[-2,0],[-2,-1],[-1,0],[-6,0],[-5,-2],[1,-1],[1,0],[1,0],[1,-2],[-2,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,1],[1,-1],[1,1],[6,-2],[1,1],[2,1],[-2,-1],[0,-3],[-2,-2],[1,0],[2,2],[0,2],[1,1],[4,3],[4,2],[2,1],[2,1],[4,1],[2,0],[2,0],[3,2],[1,2],[1,0],[1,2],[0,1],[2,0],[0,1],[0,1],[4,1],[1,1],[26,-3],[17,-2],[17,-2],[6,0],[2,-1],[2,-1],[1,1],[4,0],[10,-1],[6,-1],[1,0],[9,0],[3,-1],[8,0],[2,-1],[5,0],[1,0],[4,-1],[2,1],[2,-1],[4,1],[5,-1],[1,-1],[7,1],[3,0],[1,0],[14,0],[15,1],[1,0],[14,0],[3,0],[8,1],[7,0],[1,0],[14,1],[10,0],[3,0],[3,1],[9,0]],[[6548,8145],[0,-1],[-6,-2],[0,-1],[0,-1],[-1,-3],[1,-1],[-2,-1],[-1,-1],[-2,-2],[0,-1],[-2,-2],[0,-1],[1,-1],[-1,-2],[-2,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[0,1],[-3,2],[-2,0],[-4,0],[-4,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[0,-1],[1,0],[1,-1],[-1,-1],[-1,1],[-1,1],[-1,0],[-2,0],[-2,-1],[-1,0],[0,3],[-2,0],[0,1],[2,1],[0,1],[5,-1],[4,1],[5,2],[4,3],[9,2],[4,2],[6,2],[1,0],[1,0],[2,0]],[[6502,8135],[1,0],[2,-1],[2,1],[-1,-2],[-1,-1],[-1,0],[0,-1],[2,-1],[1,-3],[0,-1],[5,-4],[-2,0],[0,1],[-1,0],[-3,1],[-3,3],[-2,1]],[[6516,8127],[-1,-1],[-2,-1],[-1,0],[0,-2],[0,-1],[-4,4],[-1,1],[2,0],[-1,0],[3,2],[1,0],[0,-1],[2,-1],[2,0]],[[6547,8138],[-1,0],[-3,-1],[-1,0],[1,1],[0,3],[1,0],[2,-1],[1,0],[0,-2]],[[6518,8126],[-2,-1],[0,2],[2,1],[1,-1],[-1,-1]],[[6518,8128],[-3,-1],[1,1],[1,0],[1,0]],[[6507,8130],[0,-2],[-1,2],[-1,1],[1,0],[1,-1]],[[6528,8108],[0,-1],[-1,1],[1,0]],[[4685,6325],[0,-1],[0,1],[-3,1],[-3,0],[-1,-1],[-2,0],[-5,-3],[-3,-2],[-2,-2],[-1,-1],[-3,-2],[-3,-2],[-1,-1],[-1,-1],[-1,0],[-3,-2],[-1,-2],[-1,0],[-1,-1],[-4,-2],[-1,-1],[0,-1],[-5,1],[-1,1],[0,1],[-1,0],[-3,3],[-6,4],[-2,2],[-3,1],[-5,1],[-2,0],[-1,0],[-1,-1],[-2,1],[0,-1],[-2,-1],[-2,1],[-2,1],[-2,1],[-1,1],[-2,-1],[-1,-1],[-2,0],[-2,0],[-4,2],[-1,-1],[-1,1],[-1,0],[0,1],[-3,0],[-1,0],[-1,1],[-2,0],[-2,-1],[-2,0],[0,-1],[0,-1],[0,-2],[-2,1],[-2,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,1],[-2,0],[-2,-2],[-1,-1],[-1,1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,2],[-2,1],[-1,-1],[1,2],[0,1],[0,1],[2,1],[0,1],[0,2],[2,1],[2,5],[0,1],[1,0],[0,1],[-1,0],[0,2],[0,1],[1,0],[0,1],[1,1],[2,4],[0,2],[0,1],[0,1],[-1,0],[0,2],[0,1],[3,3],[0,2],[2,4],[1,2],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[-1,2],[0,1],[-1,2],[-1,0],[0,2],[0,1],[0,1],[1,2],[0,2],[1,3],[1,4],[-1,0],[0,2],[-2,1],[1,1],[0,2],[0,1],[0,1],[1,3],[0,2],[0,2],[0,1],[0,2],[0,1],[-1,2],[0,1],[-1,1],[-2,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[0,1],[1,1],[1,2],[3,7],[3,8],[1,6],[0,4],[0,3],[0,4],[0,4],[-1,3],[-1,4],[-1,3],[-1,2],[-3,3],[-3,2],[-1,2],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[-1,0],[1,0],[1,-2],[1,-1],[2,-1],[0,-1],[1,-2],[1,-1],[0,-2],[1,0],[0,2],[1,0],[-1,2],[-1,0],[0,1],[1,0],[0,-2],[2,-1],[0,-1],[1,1],[1,1],[4,-1],[4,-1],[0,1],[-1,0],[-1,1],[-2,2],[-1,1],[0,-1],[-1,0],[0,6],[-1,2],[-1,2],[0,2],[1,2],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[-2,-1],[-2,0],[-2,1],[-2,1],[-3,2],[-1,0],[-2,-2],[-1,-2],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[1,0],[-1,0],[-2,-1],[-3,0],[-2,-2],[-2,0],[1,3],[1,1],[0,1],[1,3],[0,4],[0,3],[0,1],[-2,5],[-2,3],[-2,3],[1,1],[2,1],[2,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,-2],[1,-3],[1,1],[-1,3],[-1,0],[0,2],[-1,0],[0,1],[-1,0],[1,-1],[-1,0],[0,1],[2,1],[-1,0],[2,0],[0,1],[-1,0],[1,0],[1,0],[0,-2],[1,0],[0,1],[1,0],[1,-1],[1,-1],[0,1],[0,1],[-2,0],[1,1],[0,1],[1,0],[1,0],[1,-1],[0,1],[0,1],[1,0],[0,-1],[0,1],[-3,0],[-1,1],[-2,-1],[-1,0],[0,-1],[0,2],[0,1],[2,1],[1,0],[0,1],[3,1],[1,1],[1,1],[1,0],[1,0],[-1,1],[0,2],[0,1],[-1,2],[-2,1],[-1,3],[-1,0],[-2,0],[-1,1],[-1,-3],[-1,0],[-1,-1],[-2,-2],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-2,1],[-2,0],[-2,0],[-2,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[-2,1],[-2,1],[-1,1],[-1,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[0,1],[1,2],[0,2],[-1,0],[-1,1],[0,1],[0,1],[3,7],[1,2],[0,1],[1,1],[0,1],[1,4],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,2],[0,1],[-1,2],[1,1],[1,2],[1,1],[0,1],[1,2],[1,3],[1,2],[1,4],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,2],[-1,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[1,1],[0,1],[2,-1],[0,1],[0,-1],[2,0],[1,0],[1,1],[3,2],[2,1],[3,3],[2,3],[1,1],[0,1],[2,2],[0,1],[2,1],[0,-1],[1,0],[0,1],[1,1],[0,2],[1,0],[3,5],[0,1],[0,1],[-1,0],[0,1],[2,4],[1,5],[0,2],[1,3],[1,1],[0,2],[3,7],[2,5],[1,3],[0,1],[2,5],[1,1],[2,8],[1,1],[2,6],[0,1],[0,2],[-1,1],[0,1],[-3,2],[0,1],[1,1],[2,7],[3,7],[1,7],[4,14],[1,7],[1,2],[1,3],[-1,1],[0,1],[1,1],[1,5],[1,4],[2,8],[2,8],[1,1],[0,2],[0,3],[1,2],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[-1,2],[0,2],[0,1],[0,1],[0,1],[-1,2],[1,1],[-1,0],[-1,1],[0,2],[-1,1],[-1,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,2],[0,2],[0,1],[0,2],[-1,0],[-1,1],[0,1],[-1,1],[1,1],[-1,2],[-1,0],[0,1],[-1,2],[1,0],[0,1],[0,2],[0,3],[0,1],[0,1],[-1,1],[1,1],[-1,2],[0,1],[0,1],[0,2],[-1,1],[0,3],[-1,1],[0,1],[0,1],[-1,2],[0,2],[-1,1],[0,-1],[-1,3],[-1,3],[-1,3],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1]],[[3142,6404],[2,-1],[1,0],[1,-1],[1,-1],[1,-2],[0,-1],[1,-1],[1,0],[2,-1],[1,1],[1,-1],[2,-1],[1,-1],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[2,0],[0,1],[0,-1],[1,-1],[1,0],[1,-1],[0,1],[1,-1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[2,1],[1,1],[1,0],[0,-1],[1,0],[2,0],[1,1],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[2,-1],[1,-4],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,1],[-2,0],[-1,-1],[-2,-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],[-1,-1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-2,-1],[1,0],[-2,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-2,1],[0,1],[-1,0],[-1,2],[-2,1],[-1,1],[-2,1],[0,1],[-1,2],[0,1],[1,0],[0,1],[1,0],[1,1],[0,2],[2,-1],[1,1],[0,1],[1,0],[1,-1]],[[3870,5855],[1,0],[2,-1],[1,0],[3,1],[1,0],[1,1],[1,0],[1,0],[3,0],[2,1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[-1,-1],[1,-1],[1,0],[1,-3],[1,1],[1,-1],[1,0],[1,-1],[1,1],[1,-1],[1,0],[1,-1],[0,1],[1,-1],[2,1],[1,-1],[0,-1],[0,1],[-1,0],[-1,-1],[0,1],[-2,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-2],[-1,-1],[-1,0],[0,-1],[-2,0],[0,-1],[-1,1],[-2,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-3,2],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[1,1],[1,0],[1,1],[1,2],[1,0],[1,1],[0,1],[3,-1],[0,-1],[
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment