-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathirangeo.js
322 lines (289 loc) · 307 KB
/
irangeo.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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
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
163
164
165
166
167
168
169
170
171
172
173
174
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
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
var dates = {
convert:function(d) {
// Converts the date in d to a date-object. The input can be:
// a date object: returned without modification
// an array : Interpreted as [year,month,day]. NOTE: month is 0-11.
// a number : Interpreted as number of milliseconds
// since 1 Jan 1970 (a timestamp)
// a string : Any format supported by the javascript engine, like
// "YYYY/MM/DD", "MM/DD/YYYY", "Jan 31 2009" etc.
// an object : Interpreted as an object with year, month and date
// attributes. **NOTE** month is 0-11.
return (
d.constructor === Date ? d :
d.constructor === Array ? new Date(d[0],d[1],d[2]) :
d.constructor === Number ? new Date(d) :
d.constructor === String ? new Date(d) :
typeof d === "object" ? new Date(d.year,d.month,d.date) :
NaN
);
},
compare:function(a,b) {
// Compare two dates (could be of any type supported by the convert
// function above) and returns:
// -1 : if a < b
// 0 : if a = b
// 1 : if a > b
// NaN : if a or b is an illegal date
// NOTE: The code inside isFinite does an assignment (=).
return (
isFinite(a=this.convert(a).valueOf()) &&
isFinite(b=this.convert(b).valueOf()) ?
(a>b)-(a<b) :
NaN
);
},
inRange:function(d,start,end) {
// Checks if date in d is between dates in start and end.
// Returns a boolean or NaN:
// true : if d is between start and end (inclusive)
// false : if d is before start or after end
// NaN : if one or more of the dates is illegal.
// NOTE: The code inside isFinite does an assignment (=).
return (
isFinite(d=this.convert(d).valueOf()) &&
isFinite(start=this.convert(start).valueOf()) &&
isFinite(end=this.convert(end).valueOf()) ?
start <= d && d <= end :
NaN
);
}
}
var irantopo =
{"type":"Topology","transform":{"scale":[0.0019272121771981422,0.0014719945471797066],"translate":[44.047264396621784,25.058749173077615]},"objects":{"iran":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"IR.AR", "name":"Ardabil","arcs":[[0,1,2,3]]},{"type":"MultiPolygon","id":"IR.BS","arcs":[[[4,5,6,-5]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13,14]],[[15,16]],[[17]],[[18]],[[19,20,21]],[[22]],[[23]],[[24]],[[25]],[[26,27]],[[28]],[[29]],[[30,31,32,33,34]],[[35,36,37,38,39,40]],[[41,42]],[[43]],[[-33,44,45,46,47]],[[48]],[[49]],[[50]],[[51]],[[52,53,54,55,56]],[[57,58,59]],[[60,61]],[[62,-61,63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88]]]},{"type":"Polygon","id":"IR.CM","arcs":[[89,90,91]]},{"type":"Polygon","id":"IR.EA","arcs":[[92,93,94,-3]]},{"type":"Polygon","id":"IR.ES","arcs":[[95,96,97,-92,98,99,100,101,102]]},{"type":"Polygon","id":"IR.FA","arcs":[[103,104,105,-82,106,-97]]},{"type":"Polygon","id":"IR.GI","arcs":[[107,108,109,-1,110]]},{"type":"Polygon","id":"IR.GO","arcs":[[111,112,113,114]]},{"type":"Polygon","id":"IR.HD","arcs":[[115,116,117,118,119,120]]},{"type":"MultiPolygon","id":"IR.HG","arcs":[[[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,-153,156]],[[157,158,159,160]],[[161,-159,162]],[[163]],[[164,165,166]],[[167]],[[168,169,170,171,172,173,174,175]],[[176,-166,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,218,219,220,221,222,223,224,-211,225,226,227,228]],[[229,230,231,232,233,234,235,236]],[[237,238,239,240,241,242,243]],[[244]],[[245]],[[246]],[[247,248,249]],[[250,251,252]],[[253]],[[254]],[[255]],[[256]],[[257,-258]],[[258]],[[259,260]],[[261,262]],[[263]],[[264]],[[265]],[[266]],[[267,-268]],[[268]],[[269]],[[270]],[[271]],[[272,273]],[[-236,274,-234,275,276,277,278,279,-83,-106,280,281,282,283,284,285,286,287,-273,288,289,290]]]},{"type":"Polygon","id":"IR.IL","arcs":[[291,292,293,294]]},{"type":"Polygon","id":"IR.KE","arcs":[[295,296,-281,-105,297]]},{"type":"Polygon","id":"IR.BK","arcs":[[-120,298,-295,299,300]]},{"type":"MultiPolygon","id":"IR.KZ","arcs":[[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307,308,309,310,311]],[[-308,312,313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321,322,323,324,325,326,327,328]],[[329]],[[-328,330,331,-325,332,-323,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]],[[-359,369,370,371]],[[372,373,374,375,376]],[[377]],[[378]],[[379,380,381,382,383,384,385,386,387,388,389,390,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,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,-338,437,438,439,440,441,442,443,444,445]],[[446,447,448]],[[449]],[[450]],[[451,452,453,454,-399,455,456,457,458,459,460,-392,461,462,463,464,465,466,467,468,469,470]],[[471]],[[472]],[[473]],[[474]],[[475]],[[476,477,478,479,480,481]],[[-481,482,-479,483,484,485]],[[486,487]],[[488,489,490,491,492,493,494,495,496,497,498,499]],[[500,501,502,503,504,505,506,507,508,509,-492,510,511,512,513,514,515,516]],[[-99,-91,517,-80,518,-310,519,-433,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,-499,545,546,-505,547,-503,548,549,550,551,552,553,-293,554]]]},{"type":"Polygon","id":"IR.KB","arcs":[[-98,-107,-81,-518,-90]]},{"type":"Polygon","id":"IR.KD","arcs":[[-121,-301,555,556,557]]},{"type":"Polygon","id":"IR.LO","arcs":[[-119,558,-100,-555,-292,-299]]},{"type":"Polygon","id":"IR.MK","arcs":[[559,-101,-559,-118,560,561]]},{"type":"MultiPolygon","id":"IR.MN","arcs":[[[562]],[[-114,563,564,565,-108,566]]]},{"type":"Polygon","id":"IR.KS","arcs":[[567,568,-112,569]]},{"type":"Polygon","id":"IR.QZ","arcs":[[-566,570,-561,-117,571,-109]]},{"type":"Polygon","id":"IR.QM","arcs":[[572,-102,-560,573]]},{"type":"Polygon","id":"IR.KV","arcs":[[574,575,576,-568,577]]},{"type":"Polygon","id":"IR.SM","arcs":[[-569,-577,578,-103,-573,579,-564,-113]]},{"type":"MultiPolygon","id":"IR.SB","arcs":[[[580]],[[581]],[[582,-282,-297,583,584]]]},{"type":"Polygon","id":"IR.KJ","arcs":[[-584,-296,585,-575,586]]},{"type":"Polygon","id":"IR.TH","arcs":[[-565,-580,-574,-562,-571]]},{"type":"Polygon","id":"IR.WA","arcs":[[-94,587,-557,588]]},{"type":"Polygon","id":"IR.YA","arcs":[[-586,-298,-104,-96,-579,-576]]},{"type":"Polygon","id":"IR.ZA","arcs":[[-110,-572,-116,-558,-588,-93,-2]]}]}},"arcs":[[[2365,9073],[0,-4],[1,-7],[-7,-6],[7,-7],[13,-6],[14,-6],[7,-6],[0,-7],[0,-6],[0,-7],[7,-6],[0,-7],[20,7],[14,-6],[7,-6],[0,-7],[-7,0],[0,-6],[-7,-7],[-8,-7],[-14,-7],[-16,-19],[-7,-7],[-1,-7],[-10,-19],[-9,-7],[-25,-26],[-9,-14],[-1,-6],[-9,-7],[-1,-6],[-7,0],[-2,-13],[-1,-13],[-1,-7],[-8,-7],[-2,-13],[6,-6],[0,-6],[-8,-7],[-1,-7],[-8,-7],[-7,-8],[-8,-7],[0,-8],[-1,-7],[7,-14],[7,-6],[8,-14],[1,-7],[7,-7],[1,-14],[3,-29],[6,0],[1,-7],[1,-14],[8,-14],[9,-21],[1,-8],[1,-7],[22,-20],[2,-14],[10,-21],[7,-6],[10,-19],[1,-6],[8,-6],[9,-13],[1,-6],[8,-6],[1,-7],[7,-6],[1,-6],[9,-13],[8,-6],[15,-12],[8,-6],[8,-6],[8,-6],[7,-6],[8,-6],[9,-12],[1,-7],[-5,-7],[1,-6],[2,-13],[-7,0],[2,-7],[1,-6],[1,-7],[-6,-6],[3,-13],[1,-7],[1,-6],[1,-7],[8,-12]],[[2508,8250],[-6,-1],[-7,0],[-7,6],[-8,6],[-1,7],[-8,6],[-6,-1],[-7,0],[-6,-1],[1,-6],[-6,-7],[-5,-7],[-6,-7],[-6,0],[-7,-1],[-15,12],[-8,6],[-6,0],[-7,-1],[1,-6],[-4,-13],[1,-7],[1,-6],[1,-7],[0,-7],[-6,0],[-7,0],[-13,-1],[-7,6],[-8,6],[-10,25],[-9,13],[-8,6],[-7,-1],[-19,-1],[-6,-7],[-6,-1]],[[2281,8260],[-10,19],[-30,17],[-28,11],[-29,17],[-16,12],[-24,24],[2,32],[-11,25],[-12,32],[-34,10],[-27,5],[-34,3],[-8,13],[-12,38],[-8,61],[4,30],[4,30],[24,32],[5,15],[-20,5],[0,7],[-21,20],[-28,19],[-14,20],[-20,20],[-1,14],[-8,21],[-2,29],[-7,29],[5,57],[-12,19],[-25,25],[-13,6],[-57,-18],[-35,-10],[-34,3],[-20,5],[1,7],[-12,21],[-6,6],[-14,-1],[-34,-34],[-14,6],[-6,21],[7,15],[1,15],[-5,13],[0,7],[8,8],[22,8],[3,27],[16,21],[9,14],[21,1],[18,28],[16,20],[20,1],[20,-5],[14,1],[20,-6],[7,-6],[21,21],[0,13],[1,13],[-27,18],[-13,6],[-14,6],[-7,6],[-6,13],[34,15],[13,14],[7,13],[-8,26],[-1,27],[-21,25],[-14,12],[-1,13],[6,21],[6,13],[-8,12],[-1,13],[-14,6],[0,13],[12,13],[6,13],[5,20],[-8,19],[-9,13],[-7,6],[-24,-28],[-19,-20],[-5,-13],[-13,-7],[-28,5],[-13,-1],[-14,-1],[2,-19],[-6,-7],[-14,5],[-13,-7],[-6,-7],[-5,-21],[2,-26],[-6,-7],[-6,-7],[-13,-14],[-13,-8],[-6,-13],[7,-13],[13,8],[14,1],[-7,-14],[-13,-1],[-6,-7],[-14,-8],[-6,-13],[-14,-8],[-13,-20],[-8,-21],[-20,6],[-14,-1],[-6,6],[-20,5],[-7,6],[-13,12],[-14,-8],[-13,-1],[-14,-7],[-15,-8],[-15,-14],[-14,-1],[-22,-15],[-15,-8],[-13,12],[-11,19],[-6,13],[-12,12],[2,20],[8,26],[7,14],[13,14],[14,7],[13,8],[-1,13],[13,8],[14,-6],[14,-12],[13,-5],[7,7],[-8,12],[13,21],[-1,6],[-13,6],[5,13],[7,-6],[13,1],[1,-6],[7,-13],[14,1],[27,-11],[5,27],[5,14],[22,-19],[19,15],[6,1],[12,14],[13,7],[20,-5],[-2,20],[-1,13],[13,8],[6,7],[-29,18],[5,13],[6,13],[-8,13],[-21,5],[-6,-7],[-1,13],[6,6],[-7,6]],[[1543,9584],[6,6],[7,12],[3,10],[4,12],[2,12],[10,11],[8,8],[10,8],[13,10],[13,4],[22,5],[9,13],[12,8],[12,8],[1,1],[18,11],[7,8],[7,14],[4,5],[8,10],[6,10],[6,11],[10,4],[11,1],[17,6],[11,6],[14,4],[19,8],[13,9],[16,14],[12,8],[2,2],[8,5],[15,8],[13,7],[25,14],[13,13],[8,10],[3,3],[10,9],[14,6],[13,-1],[20,-2],[7,4],[9,2],[9,5],[4,2],[11,9],[5,5],[3,2],[2,-4],[2,-3],[1,-2],[2,-2],[2,-2],[3,-2],[2,-3],[4,-3],[2,-2],[3,-3],[2,-2],[3,-3],[2,-1],[2,-3],[3,-2],[2,-3],[2,-3],[3,-4],[2,-3],[1,-3],[1,-2],[2,-3],[3,-4],[2,-3],[4,-3],[3,-3],[2,-2],[2,-3],[1,0],[2,-3],[2,-2],[3,-2],[2,-2],[2,-2],[3,-2],[2,-2],[2,-4],[3,-4],[1,-3],[2,-4],[2,-3],[1,-3],[4,-7],[1,-2],[2,-4],[3,-4],[3,-4],[3,-2],[9,-9],[4,-5],[5,-5],[8,-8],[5,-4],[1,-2],[3,-3],[5,-5],[4,-3],[2,-3],[3,-4],[2,-2],[3,-2],[3,-2],[3,-2],[2,-2],[2,-2],[3,-3],[3,-3],[4,-4],[3,-3],[3,-3],[2,-1],[3,-3],[2,-1],[4,-3],[-19,-4],[-7,-5],[-5,0],[-4,-3],[-8,-3],[-10,-6],[-1,-1],[-3,1],[0,-4],[-3,-3],[-8,-2],[-5,1],[-8,-4],[-3,1],[-3,-1],[-5,-4],[-2,-2],[-1,-4],[-6,-2],[-4,-4],[-4,0],[-6,-7],[-2,-5],[-3,-3],[0,-4],[-5,-1],[-1,-3],[0,-3],[0,-4],[-1,-9],[3,-11],[2,-3],[0,-1],[-2,-6],[2,-2],[0,-2],[2,-3],[5,-3],[5,-5],[15,-9],[6,-3],[8,-6],[-1,-4],[4,-6],[0,-5],[2,-3],[5,-5],[4,-1],[5,-3],[12,-2],[4,-4],[6,-1],[2,-2],[2,-13],[7,-6],[9,-11],[2,-3],[2,-3],[1,-2],[2,-3],[2,-2],[2,-3],[2,-3],[2,-4],[1,-4],[1,-3],[0,-3],[0,-3],[-1,-4],[-2,-3],[-2,-2],[-3,-3],[-15,-8],[-8,-5],[-4,-4],[-5,-2],[-4,-1],[-4,-1],[-6,0],[-4,0],[-5,-1],[-5,-1],[-5,-1],[-5,-2],[-4,-1],[-5,0],[-7,-1],[-5,0],[-5,0],[-3,0],[-5,-2],[-4,-2],[-2,-1],[-6,-1],[-3,0],[-4,0],[-4,0],[-2,-1],[-3,-1],[-4,-1],[-3,-2],[-2,-3],[0,-3],[0,-3],[0,-3],[-1,-3],[-1,-2],[-2,-3],[-2,-1],[-4,-1],[-4,0],[-4,1],[-2,-1],[-4,0],[-2,0],[-2,1],[-2,2],[-1,0],[-1,1],[-2,-1],[-1,-2],[-1,-5],[-1,-6],[-1,-7],[1,-5],[1,-5],[1,-5],[1,-4],[1,-4],[1,-2],[2,-3],[2,-3],[2,-2],[3,-3],[1,-2],[1,-3],[2,-4],[2,-2],[7,-5],[9,-6],[3,-2],[3,-2],[3,-1],[2,-1],[1,-1],[2,-2],[1,-2],[2,-3],[0,-2],[2,-1],[3,0],[4,-1],[2,-1],[3,-2],[3,-1],[2,-1],[2,-1],[3,-1],[3,-1],[4,0],[4,-1],[4,-1],[3,-2],[2,-1],[2,-2],[2,-2],[2,-2],[3,-2],[2,-1],[1,-1],[3,-2],[3,0],[2,-2],[2,0],[2,-2],[1,0],[2,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-2],[0,-1],[2,-3],[0,-2],[1,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-4],[0,-3],[0,-3],[1,-3],[0,-3],[0,-3],[1,-3],[1,-2],[1,-1],[2,-2],[3,-2],[4,-1],[2,-1],[3,-2],[2,-1],[2,-2],[2,-2],[0,-2],[2,-3],[0,-3],[0,-3],[1,-3],[1,-3],[2,-3],[2,-2],[1,-2],[7,-3],[5,-1],[4,-1],[4,-1],[3,0],[4,2],[3,1],[5,2],[4,1],[3,0],[2,0],[2,0],[3,1],[4,2],[3,2],[2,1],[3,1],[3,0],[3,-1],[3,-2],[2,-1],[2,-2],[2,-2],[0,-2],[0,-3],[0,-4],[-1,-2],[0,-2],[0,-3],[1,-4],[1,-3],[1,-2],[1,-3],[1,-1],[1,-2],[2,-1],[3,-1],[3,0],[4,-1],[2,-1],[3,-1],[1,-2],[1,-3],[1,-5],[0,-3],[2,-3],[1,-3],[2,-3],[3,-1],[3,-2],[2,-2],[2,-3],[2,-3],[2,-3],[1,-1],[2,-3],[3,-2],[1,-1],[1,-2],[3,-2],[1,-2],[3,-3],[2,-5],[3,-5],[2,-5],[1,-5],[2,-4],[2,-4],[1,-3],[1,-3],[2,-4]],[[4476,1628],[0,1],[0,1]],[[4476,1630],[-1,0],[-1,0]],[[4474,1630],[0,1],[1,0],[1,0],[0,-1]],[[3853,1880],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1]],[[3901,1888],[0,-1],[1,0],[-1,0],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1]],[[3830,1926],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[3820,1940],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[-1,0],[0,1],[1,0]],[[3608,2554],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0]],[[3554,2639],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[0,1],[2,0]],[[3544,2655],[0,-1]],[[3544,2654],[0,-1],[-1,0],[0,1],[0,1],[1,0]],[[3544,2654],[1,0],[0,1],[-1,0]],[[3544,2655],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0]],[[3552,2656],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[1,0]],[[3555,2657],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[3541,2655],[-1,0],[-1,0],[0,-1],[-1,0]],[[3538,2654],[0,1],[-1,0]],[[3537,2655],[0,1],[0,1],[0,1],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1]],[[3540,2667],[1,0],[1,0],[1,0],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1]],[[3561,2674],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0]],[[3540,2667],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1]],[[3545,2676],[1,0],[0,-1],[-1,0],[0,1]],[[3522,2674],[0,1],[-1,0]],[[3521,2675],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[3467,2724],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1]],[[3541,2728],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[-1,0],[0,-2],[0,-2],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-2,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,4],[0,2],[-1,0],[0,1],[0,1],[0,4],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[3485,2728],[0,-1],[1,0],[1,0],[0,1],[0,-1],[0,1],[0,-1],[1,0],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1]],[[3481,2730],[0,-1],[1,0],[0,1]],[[3482,2730],[1,0],[0,-1]],[[3483,2729],[0,-1],[1,0],[1,0]],[[3485,2728],[-1,0],[0,-1],[1,0],[0,1]],[[3461,2730],[0,-1],[0,1]],[[3461,2730],[1,0]],[[3462,2730],[0,-1],[1,0],[0,1],[-1,0]],[[3462,2730],[1,0],[-1,0]],[[3462,2730],[0,1],[1,0]],[[3463,2731],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0]],[[3462,2731],[1,0],[-1,0],[0,-1],[-1,0]],[[3461,2730],[0,1],[0,1],[1,0],[0,-1]],[[3492,2732],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,-1]],[[3482,2730],[0,1],[-1,0],[0,-1]],[[3481,2730],[-1,0],[1,0]],[[3481,2730],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1]],[[3485,2728],[0,1],[0,1],[-1,0],[0,-1],[-1,0]],[[3471,2737],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[2,0]],[[3487,2740],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[1,0]],[[3489,2743],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[3475,2747],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[-1,0],[0,1],[0,-1],[0,1],[0,1]],[[3476,2750],[0,-1],[1,0],[1,0]],[[3478,2749],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0]],[[3475,2747],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1]],[[3475,2751],[0,-1],[1,0]],[[3476,2750],[0,-1],[0,1]],[[3475,2751],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0]],[[3478,2749],[0,1],[-1,0],[-1,0]],[[3476,2750],[0,1],[-1,0]],[[3479,2754],[1,0]],[[3480,2754],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1]],[[3480,2754],[0,1],[0,-1]],[[3479,2754],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1]],[[3501,2782],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-2]],[[3236,2836],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0]],[[3440,2851],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0]],[[3257,2858],[0,1],[2,0],[0,-1],[-1,0],[-1,0]],[[3257,2858],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-2],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,2],[-1,0],[0,2],[0,1],[0,1],[0,1],[-2,0],[0,-1],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,2],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[1,0],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[0,1],[1,0]],[[3441,2880],[0,-1],[0,-1],[-1,0],[-2,0],[1,0],[0,1],[1,0],[0,1],[1,0]],[[3273,2909],[0,-1],[0,-2],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,2],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,2],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[3406,2994],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[1,0]],[[3402,3014],[0,-1],[-1,0],[0,1],[1,0]],[[4476,1628],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-3,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-2,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,2],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,2],[0,2],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,3],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-2,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-3,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-2,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-4,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[-1,0],[0,1],[-1,0],[-3,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-3,0],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[0,1],[-4,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-4,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-3,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,2],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-7,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-4,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-3,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,-1],[2,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,3],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,-1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-2,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,4],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-2,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,2],[0,3],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,2],[0,1],[-1,0],[-1,0],[0,2],[1,0],[0,1],[0,2],[-2,0],[0,-2],[-1,0],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,2],[0,8],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,4],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,4],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[-1,0],[0,3],[0,2],[0,1],[-3,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-2],[0,1],[0,3],[2,0],[1,0],[0,1],[0,1],[0,2],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,2],[1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,3],[0,3],[0,1],[-1,0],[-1,0],[0,-1],[0,-2],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,3],[0,5],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,6],[0,1],[-1,0],[0,1],[0,2],[0,3],[0,1],[0,3],[0,2],[0,3],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[-1,0],[0,4],[0,1],[0,1],[0,2],[0,2],[0,1],[-1,0],[0,2],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,3],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-2],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-2,0],[0,1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-3,0],[0,1],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,2],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,2],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,3],[0,2],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0]],[[3521,2675],[0,-1],[1,0]],[[3522,2674],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[3537,2655],[0,-1],[1,0]],[[3538,2654],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1]],[[3541,2655],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,2],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,2],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0],[-2,0],[0,1],[3,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,4],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[-2,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[2,0],[1,0],[0,-2],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[3,0],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,2],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,3],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,4],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,2],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-2],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,5],[0,2],[0,4],[0,2],[0,1],[0,1],[0,1],[0,2],[0,5],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,2],[0,2],[1,0],[0,3],[0,2],[0,1],[0,1],[0,4],[0,1],[0,1],[0,3],[0,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,2],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[2,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,3],[0,3],[-1,0],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,2],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0]],[[3110,3495],[1,1],[1,0],[1,2],[3,4],[2,3],[1,0],[1,2],[3,4],[1,1],[2,2],[2,2],[0,1],[2,1],[3,4],[3,4],[4,5],[1,1],[11,7],[6,0],[6,7],[6,0],[6,-6],[6,0],[23,-19],[6,-6],[6,0],[6,-6],[6,0],[6,0],[12,-6],[6,0],[11,1],[12,0],[6,0],[29,1]],[[3311,3505],[18,-6],[6,-6],[6,0],[6,0],[6,0],[5,0],[7,-13],[6,-6],[6,0],[5,0],[6,0],[6,-13],[6,-6]],[[3400,3455],[-11,0],[-6,-7],[0,-13],[0,-7],[7,-25],[0,-7],[6,-6],[6,-7],[6,-6],[6,-13],[24,-12],[5,-7],[1,-6],[6,-7],[6,-12],[6,-13],[0,-16],[0,-10],[0,-6],[6,-7],[0,-7],[6,0],[6,-6],[12,0],[17,0],[6,0],[6,0],[18,-6],[0,-7],[6,0],[11,7],[18,0],[29,0],[6,0],[12,-6],[12,0],[17,-14],[12,-6],[6,0],[12,0],[11,0],[6,0],[6,-7],[12,-6],[6,-7],[6,-13],[7,-13],[6,-14],[0,-13],[1,-13],[-6,-7],[1,-7],[0,-7],[0,-6],[0,-7],[1,-7],[6,-6],[6,-7],[6,0],[0,-7],[6,-6],[12,-21],[6,-6],[7,-14],[12,-13],[6,-7],[6,-6],[6,0],[12,-14],[11,0],[24,-13],[11,0],[6,-6],[18,-7],[6,-7],[6,-6],[13,-34],[12,-27],[13,-26],[13,-34],[12,-26],[19,-47],[6,-6],[6,-27],[12,-13],[0,-7],[18,-26],[19,-33],[12,-13],[0,-7],[6,-6],[6,-13],[6,-7],[0,-6],[12,-33],[6,-20],[13,-33],[6,-20],[6,-13],[6,-20],[6,-13],[1,-13],[6,-20],[6,-13],[0,-13],[0,-6],[0,-7],[1,-7],[0,-6],[0,-7],[6,-19],[6,-14],[12,-39],[13,-33],[6,-13],[12,-26],[18,-33],[0,-7],[0,-6],[0,-7],[0,-7],[0,-6],[-5,-13],[0,-7],[0,-7],[12,-13],[5,0],[12,-13],[23,7],[0,-7],[6,-6],[6,-7],[0,-6],[12,-7],[5,-13],[12,-20],[6,-6],[12,-14],[12,-33],[6,-19],[12,-20],[0,-13],[6,-20],[6,-20],[6,-13],[6,-19],[6,-7],[0,-7],[6,-13],[6,-19],[6,-13],[6,-13],[12,-20],[12,-13],[11,-6],[6,-7],[12,-13],[23,-20],[23,-20],[23,-26],[18,-7],[5,-7],[6,-7],[18,-20],[11,-6],[12,-7],[17,-14],[6,-6]],[[4630,1578],[-17,-12],[-11,-6],[-3,0],[-3,0],[-6,0],[-5,1],[-6,0],[-6,0],[-17,7],[-11,1],[-6,0],[-11,-1],[-17,-3],[-6,0],[-5,1],[-6,-6],[-4,0],[-1,0],[-2,-4],[-4,-7],[-5,-13],[-3,-5]],[[4475,1531],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[4,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[0,1],[5,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,3],[0,3],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[-1,0]],[[4476,1628],[1,0],[0,2],[-1,0]],[[4476,1630],[0,1],[-1,0]],[[4475,1631],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0]],[[4474,1631],[0,-1]],[[4474,1630],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0]],[[3768,4147],[-12,7],[-5,0],[-6,0],[-6,-1],[-12,-6],[-12,-1],[-5,-6],[-6,0],[-6,-14],[-5,-7],[-6,-13],[-6,-7],[-11,0],[-6,0],[-6,0],[-12,0],[-12,13],[-6,0],[-6,-1],[-6,0],[-6,0],[-5,-7],[-6,0],[-12,7],[-12,0],[-18,13],[-6,6],[-12,13],[-6,0],[-13,13],[-6,14],[-6,6],[-19,26],[-12,13],[-12,7],[-19,19],[0,7],[-12,13],[-12,13],[-1,7],[-6,6],[-6,7],[-6,0],[-12,6],[-6,6],[-6,-7],[-12,0],[-12,0],[-6,0],[-5,-1],[-18,6],[-6,0],[-19,13],[-18,6],[-12,6],[-12,13],[-13,13],[-12,6],[-12,6]],[[3222,4367],[6,7],[-1,7],[6,7],[0,6],[5,7],[0,7],[6,7],[5,7],[12,13],[6,1],[5,7],[0,6],[6,7],[-1,7],[0,13],[0,7],[-7,6],[-6,6],[-6,7],[-6,6],[-1,14],[0,6],[-7,13],[-12,6],[-6,7],[-6,0],[-7,6],[-6,20],[-1,6],[-12,13],[-6,0],[-7,6],[-6,13],[-6,6],[-1,7],[-6,13],[-7,6],[-6,13],[-7,13],[0,7],[-1,7],[-8,32],[0,14],[-1,6],[-6,7],[-1,13],[-6,6],[-12,0],[-6,6],[-12,-1],[-1,7],[-6,6],[-7,7],[-6,6],[-6,0],[-7,19],[-7,13],[-1,14],[-13,25],[-14,26],[-6,7],[-13,19],[-20,26],[-6,6],[-7,13],[0,6],[-1,14],[-7,13],[-8,26],[-1,20],[-1,13]],[[2951,5059],[12,7],[18,8],[6,0],[6,7],[17,14],[6,1],[6,7],[17,14],[6,0],[13,1],[5,7],[6,0],[13,-13],[6,1],[18,7],[6,0],[6,1],[6,7],[6,6],[6,1],[12,0],[6,1],[6,0],[13,-13],[6,-6],[13,-20],[13,-12],[6,-7],[6,0],[12,-6],[6,7],[6,0],[6,1],[12,7],[12,0],[6,1],[6,-7],[7,-6],[6,0],[11,7],[6,0],[12,14],[17,21],[6,0],[6,7],[6,0],[11,7],[6,0],[18,1],[19,1],[12,0],[6,0],[12,1],[6,-7],[6,0],[12,7],[6,1],[5,6],[0,7],[12,14],[6,0],[5,7],[6,0],[6,0],[1,-6],[6,0],[12,-13],[6,-7],[1,-6],[0,-7],[-6,-14],[1,-20],[1,-6],[6,0],[6,0],[12,0],[6,1],[0,-7],[0,-7],[0,-6],[-6,-1],[1,-6],[6,-7],[6,-13],[7,-6],[6,-7],[0,-13],[1,-7],[0,-7],[0,-6],[-5,-7],[-18,-21],[1,-6],[0,-7],[0,-7],[7,-13],[6,-6],[6,0],[25,-13],[37,-32],[0,-7],[13,-13],[18,-13],[0,-7],[7,-6],[6,-7],[6,-6],[6,-7],[13,-6],[12,-13],[6,0],[6,0],[6,-6],[6,-7],[7,-13],[6,-7],[1,-6],[0,-7],[7,-40],[1,-13],[1,-20],[0,-13],[-5,-14],[0,-7],[-6,-6],[-17,-7],[-6,-7],[-6,0],[-5,-7],[0,-7],[-6,-6],[0,-7],[1,-7],[6,0],[6,-6],[6,-7],[6,-6],[6,-7],[6,0],[0,-6],[7,-7],[0,-13],[-6,-7],[-5,0],[-18,-1],[-6,0],[0,-6],[-6,-7],[-6,0],[-5,-7],[0,-7],[1,-20],[1,-40],[1,-26],[1,-14],[0,-6],[6,-14],[0,-6],[1,-7],[6,-13],[13,-20],[12,-27],[7,-13],[0,-7],[7,-26],[0,-14],[7,-40],[1,-13],[0,-27],[-5,-13],[-6,-14]],[[2281,8260],[-7,0],[-5,-7],[-18,-14],[-5,-7],[-6,-7],[-6,-1],[-13,-1],[-14,6],[-7,-1],[-7,0],[-14,5],[-7,6],[-7,-1],[-6,0],[-8,6],[-14,5],[-13,-1],[-32,-9],[-13,-1],[-13,-1],[-13,-1],[-6,-1],[-8,6],[-13,-1],[-7,-1],[-28,11],[-18,-8],[-7,-1],[-12,-7],[-6,-1],[-7,0],[-6,-1],[-7,0],[-13,-2],[-7,6],[-13,-1],[-7,-1],[-6,0],[-6,-7],[-13,-1],[-19,-2],[-17,-14],[-12,-8],[-7,0],[-4,-13],[-6,-7],[-5,-7],[-12,-8],[-13,-1],[-5,-7],[-19,-8],[-5,-7],[-6,-6],[-5,-7],[1,-7],[-11,-13],[-6,-7],[1,-7],[-5,-7],[-6,-6],[-7,-1],[-12,-8],[-12,-7],[-11,-14],[-12,-14],[-5,-13],[-11,-15],[-4,-20],[-6,-7],[1,-13],[1,-6],[8,-19]],[[1632,7947],[-7,6],[-6,-1],[-7,0],[-6,-7],[-26,-3],[-19,-1],[-7,-1],[-18,-14],[-7,-1],[-6,0],[-7,-1],[0,7],[-7,-1],[0,7],[-7,-1],[-7,-1],[-13,-1],[-39,3],[-8,6],[0,7],[-2,13],[0,6],[10,20],[5,14],[0,6],[-1,7],[-1,6],[-1,6],[-7,6],[-8,6],[-8,11],[-8,12],[-1,7],[6,0],[-1,6],[6,7],[6,7],[-1,6],[-8,6],[0,6],[-8,6],[-7,6],[-7,-1],[-14,5],[-6,-1],[-13,-1],[-1,6],[-8,6],[-1,13],[-8,5],[-7,6],[-26,-3],[-13,-1],[-6,-7],[1,-6],[2,-13],[-7,0],[-6,-1],[-7,0],[-7,5],[-7,0],[-5,-7],[-6,-7],[-13,-2],[-7,0],[-6,-1],[-6,-7],[-11,-14],[-6,-6],[-7,-1],[-5,-7],[1,-12],[-5,-7],[1,-13],[-6,0],[0,-7],[-5,-7],[-7,0],[-12,-8],[-7,0],[-7,5],[-8,6],[-8,12],[-7,5],[-1,7],[-6,-1],[-9,12],[-13,5],[-8,5],[-14,5],[-6,0],[-8,5],[-7,6],[-1,6],[-8,12],[-1,13],[-7,6],[-8,5],[-6,0],[-8,5],[-6,0],[-1,6],[-7,6],[-1,6],[-7,6],[-1,6],[-8,12],[-7,5],[-7,6],[-7,0],[-6,-1],[-7,-1],[-12,-7],[-13,-2],[-18,-8],[-7,0],[-19,-2],[-6,-1],[-7,6],[-6,-1],[-1,7],[-14,11],[-1,6],[-7,6],[-7,6],[-7,5],[-6,0],[-1,6],[-13,5],[-15,12],[-27,17],[-14,11],[-7,0],[-27,17],[-13,5],[-1,6],[-7,6],[-8,12],[-7,6],[0,7],[-2,19],[-1,6],[-2,19],[-1,13],[4,19],[4,26],[-1,13],[5,7],[0,6],[-1,6],[-8,19],[-7,-1],[-7,6],[-14,19],[-1,6],[-6,0],[-2,12],[-7,6],[0,7],[-8,12],[-9,19],[-2,26],[-2,13],[-3,26],[-3,33],[4,44],[-1,37],[0,37],[-1,15],[0,15],[-6,22],[-1,15],[-6,15],[0,7],[-6,14],[-7,7],[0,7],[-12,14],[-13,14],[0,7],[-6,7],[-6,0],[0,7],[0,7],[0,7],[-1,7],[0,8],[0,14],[6,7],[6,22],[18,22],[6,8],[6,7],[18,23],[6,7],[36,31],[36,38],[0,7],[6,7],[-1,14],[6,14],[0,7],[-7,7],[0,6],[-19,45],[0,7],[-1,7],[-1,7],[0,7],[-1,8],[6,7],[5,22],[6,7],[-1,7],[-1,14],[0,6],[0,7],[6,7],[-1,7],[7,1],[0,7],[12,8],[14,15],[8,7],[8,7],[1,6],[7,7],[8,7],[2,2]],[[747,9455],[3,-1],[9,-4],[13,-8],[5,0],[2,0],[10,6],[4,-1],[7,-7],[8,-2],[1,-2],[0,-4],[-1,-1],[2,-2],[4,0],[10,4],[7,2],[7,0],[7,-3],[11,-2],[7,-2],[3,-3],[2,-4],[8,-3],[16,-1],[13,-5],[8,-7],[7,-5],[10,4],[5,-1],[3,-2],[3,-7],[1,-1],[2,-2],[6,-1],[1,-1],[12,-7],[6,-1],[3,1],[10,10],[3,1],[28,-12],[0,-33],[5,2],[1,3],[0,7],[0,6],[4,9],[0,5],[9,-1],[3,0],[1,1],[3,0],[2,3],[1,6],[3,1],[7,-9],[5,-4],[10,-4],[3,-2],[7,-9],[7,-4],[21,-3],[3,1],[7,7],[6,2],[8,8],[5,1],[1,0],[8,5],[7,9],[4,4],[7,5],[3,1],[3,-1],[6,2],[6,-1],[13,9],[7,0],[10,-5],[6,-2],[8,-6],[8,-7],[3,0],[4,5],[5,3],[5,1],[3,0],[6,-5],[7,-3],[10,2],[4,2],[3,-1],[2,-2],[2,-9],[5,-1],[7,5],[12,12],[20,17],[9,15],[10,8],[7,9],[3,6],[4,5],[2,6],[9,7],[4,6],[11,1],[3,0],[14,11],[2,7],[2,13],[8,10],[5,7],[5,6],[10,10],[5,5],[7,7],[6,13],[9,5],[1,1],[9,3],[10,2],[9,1],[6,-8],[9,-8],[14,8],[7,5],[1,7],[8,0],[1,0],[4,3]],[[5877,6306],[0,-7],[0,-20],[0,-27],[0,-33],[6,-21],[1,-40],[0,-13],[0,-7],[0,-7],[0,-13],[0,-20],[6,-41],[0,-60],[1,-74],[0,-33],[0,-14],[-6,-13],[0,-13],[0,-14],[-6,-13],[-13,-33],[-6,-13],[0,-7],[-6,-13],[-6,-6],[-12,-20],[-7,-13],[-18,-27],[-6,-7],[-25,7],[-43,-8],[-12,0],[-13,0],[-6,-7],[-6,-7],[-6,-7],[-13,-14],[0,-7],[-6,-13],[0,-7],[0,-14],[-6,-7],[0,-27],[-7,-27],[0,-7],[-13,-34],[-6,-34],[-6,-7],[-7,-21],[-12,-34],[-7,-7],[-6,-7],[-6,-13],[-19,-14],[-12,-14],[-13,-7],[-24,-13],[-25,-7],[-6,-1],[-56,-20],[-18,-7],[-25,-7],[-31,-7],[-25,-7],[-6,-1],[-24,-7],[-13,0],[-18,-7],[-19,-7],[-18,-7],[-19,-13],[-18,-14],[-50,-21],[-37,-21],[-6,0],[-18,-7],[-6,-7],[-13,-7],[-24,-14],[-42,-14],[-13,0],[-6,0],[-18,0],[-12,0],[-18,7],[-12,6],[-13,7],[-18,0],[-30,6],[-37,13],[-12,0],[-24,7],[-12,-7],[-12,0],[-12,0],[-30,-21],[-12,0],[-12,-14],[-6,-6],[-6,-1],[-12,-6],[-12,-21],[-5,-7],[-12,-6],[-24,-7],[-12,0],[-12,-1],[-12,-6],[-6,-1],[-6,-13],[-6,-7],[0,-7],[1,-6],[0,-20],[0,-14],[1,-27],[7,-33],[1,-14],[1,-40],[6,-27],[1,-26],[1,-14],[-6,-13],[0,-14],[1,-13],[-6,-7],[0,-7],[0,-6],[-10,-41],[-6,-20],[-6,-13],[-5,-21],[0,-6],[1,-41],[0,-13],[-5,-7],[-6,-27],[0,-13],[1,-27],[0,-7],[0,-7],[7,-13],[6,-20],[6,-14],[6,-6],[0,-7],[1,-20]],[[4578,4442],[-12,0],[-12,-7],[-17,-7],[-18,-7],[-24,-13],[-53,-14],[-18,-7],[-11,0],[-12,-7],[-12,0],[-30,7],[-12,0],[-6,0],[-6,-1],[-18,7],[-5,0],[-13,7],[-5,0],[-12,6],[-18,0],[-18,0],[-6,7],[-6,0],[-6,6],[-6,7],[-1,7],[-6,6],[0,14],[5,27],[0,13],[-6,13],[-1,14],[-6,7],[-6,0],[-6,-7],[1,-7],[-6,-7],[-6,0],[-6,-7],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-5,-7],[-6,-6],[0,-14],[-5,-6],[-6,-7],[-6,0],[-6,-7],[-6,0],[-12,0],[-5,0],[-6,0],[0,-7],[-6,-7],[-5,-13],[-6,-7],[-12,-7],[-6,-7],[-6,0],[-11,-6],[-6,-7],[-6,0],[-12,0],[-6,0],[-6,0],[-6,6],[-6,0],[-30,13],[-5,0],[-6,-7],[-6,0],[0,-6],[6,-7],[0,-7],[7,-6],[12,-20],[6,-14],[12,-6],[12,-7],[1,-6],[23,0],[12,0],[18,-13],[6,0],[12,-14],[0,-6],[7,-7],[0,-7],[0,-6],[0,-7],[-17,-40],[1,-14],[-6,-7],[0,-13],[-5,-27],[0,-6],[1,-14],[0,-7],[0,-6],[-6,-7],[-17,-20],[0,-7],[-11,-20],[-6,-20],[-5,-27],[-5,-14],[-6,-20],[0,-6],[1,-7],[0,-7],[0,-13],[6,-27],[7,-20],[0,-7],[0,-6],[0,-7],[-6,0],[1,-7],[-6,0],[-6,0],[-12,0],[-17,-7],[-6,0],[-6,0]],[[3940,3881],[-6,7],[-6,6],[0,7],[-18,7],[-12,13],[-6,0],[-18,6],[-6,7],[-6,7],[-30,33],[-6,6],[-12,14],[-12,13],[-13,27],[-6,6],[-12,27],[-7,13],[0,14],[0,13],[-1,27],[0,6],[5,7]],[[2951,5059],[0,7],[0,6],[-1,7],[6,14],[5,7],[6,13],[5,14],[12,7],[-1,7],[0,6],[-7,7],[-6,6],[-6,6],[-13,13],[-6,0],[-7,6],[-6,0],[-49,-3],[-30,-8],[-6,-1],[-6,0],[-7,6],[0,7],[-7,6],[0,7],[0,7],[-15,39],[0,7],[-7,6],[0,7]],[[2805,5265],[-1,6],[-1,14],[0,6],[6,1],[6,13],[6,1],[6,7],[6,0],[12,7],[6,1],[6,0],[6,0],[12,8],[6,0],[12,14],[6,0],[6,7],[0,7],[-1,7],[0,6],[0,7],[-7,13],[-7,13],[-1,13],[0,7],[0,7],[6,7],[18,7],[6,1],[6,7],[-1,13],[6,7],[6,0],[13,1],[12,-6],[6,7],[12,7],[6,0],[6,1],[7,0],[12,1],[6,0],[0,7],[6,7],[-1,6],[0,7],[0,7],[6,7],[0,6],[11,21],[6,13],[6,14],[-1,13],[6,7],[6,14],[18,21],[6,14],[0,19],[-1,7],[-6,6],[-6,0],[-6,0],[-7,6],[0,7],[0,6],[6,7],[6,7],[12,21],[6,0]],[[3089,5733],[6,14],[6,7],[6,7],[6,7],[6,6],[24,15],[6,7],[12,7],[12,7],[12,7],[13,7],[12,8],[30,8],[12,0],[25,1],[6,0],[12,8],[12,7],[6,0],[12,7],[6,0],[19,1],[6,0],[12,1],[6,0],[12,7],[12,1],[19,7],[12,7],[12,7],[18,7],[6,7],[6,7],[6,7],[18,14],[6,7],[6,6],[5,7],[7,0],[6,-6],[18,-6],[6,0],[1,-6],[6,0],[6,7],[6,7],[-1,6],[6,14],[0,13],[-7,26],[6,14],[0,6],[6,7],[12,7],[6,7],[6,7],[12,7],[6,13],[5,20],[6,7],[0,7],[0,13],[0,7],[0,6],[-7,7]],[[3624,6146],[-18,6],[-6,6],[-7,6],[0,7],[6,14],[0,6],[6,21],[-1,13],[6,20],[0,28],[-1,13],[6,28],[0,13],[6,7],[6,14],[6,7],[6,7],[12,8],[6,0],[18,7],[6,1],[19,7],[24,8],[37,1],[18,0],[55,2],[31,-6],[18,1],[31,1],[12,0],[24,7],[6,0],[12,8],[7,0],[12,7],[12,7],[6,7],[6,7],[6,7]],[[4017,6442],[18,-20],[31,-13],[7,-7],[18,-13],[37,-13],[7,1],[18,-7],[18,1],[13,7],[24,0],[12,7],[25,1],[25,0],[12,1],[24,0],[13,-6],[18,0],[7,0],[18,-6],[13,-7],[49,-12],[13,-7],[18,-6],[13,-7],[6,-6],[18,-7],[25,-6],[37,-13],[5,0],[1,0],[2,-7],[17,1],[6,0],[12,-7],[31,1],[31,0],[31,1],[18,0],[6,1],[19,0],[37,-6],[24,0],[12,0],[19,1],[12,0],[31,0],[31,1],[18,0],[6,0],[37,8],[12,0],[25,0],[43,1],[36,0],[25,1],[31,0],[12,7],[24,0],[43,8],[19,0],[18,0],[19,0],[36,1],[13,0],[24,0],[13,0],[6,0],[18,1],[6,0],[19,7],[12,0],[49,0],[31,0],[6,0],[31,1],[12,0],[6,0],[7,0],[24,0],[19,0],[68,1],[30,0],[50,7],[18,7],[19,0],[12,0],[25,0],[5,-2],[13,-5],[7,0],[12,-7],[7,-6],[6,0],[0,-7],[6,-7]],[[4578,4442],[12,-7],[18,-7],[6,0],[18,-6],[12,-7],[12,-7],[36,-13],[6,0],[12,-13],[18,-7],[18,-14],[18,-13],[12,-13],[6,-7],[24,-27],[12,-14],[7,-13],[12,-14],[12,-27],[0,-6],[6,-7],[6,-14],[0,-20],[12,-20],[7,-40],[12,-34],[12,-34],[12,-34],[6,-13],[12,-34],[12,-20],[12,-27],[0,-7],[12,-33],[6,-14],[6,-20],[0,-7],[12,-20],[12,-14],[6,-20],[18,-33],[11,-27],[6,-7],[12,-20],[6,-21],[6,-13],[24,-27],[11,-13],[12,-14],[12,-20],[12,-14],[11,-13],[12,-20],[6,-27],[6,-20],[6,-34],[0,-7],[0,-27],[0,-6],[-1,-21],[6,-33],[0,-7],[0,-7],[6,-6],[6,-14],[6,-6],[6,-7],[5,-14],[12,-6],[23,-21],[6,-6],[24,-7],[17,-7],[6,-7],[18,-7],[23,-13],[12,-14],[23,-13],[6,0]],[[5387,3216],[0,-7],[0,-7],[0,-6],[0,-7],[0,-13],[5,-7],[6,-13],[0,-7],[12,-20],[0,-7],[5,-7],[0,-7],[6,-13],[23,-40],[0,-14],[11,-40],[6,-7],[6,0],[6,-13],[11,-7],[6,-7],[18,-7],[6,0],[11,0],[18,0],[12,0],[6,0],[5,0],[30,0],[17,0],[12,-7],[12,0],[6,-7],[6,0],[5,-7],[0,-6],[6,-14],[6,-13],[5,-27],[6,-20],[5,-27],[12,-34],[5,-27],[6,-20],[5,-13],[6,-20],[6,-14],[5,-20],[0,-7],[12,-13],[-1,-7],[12,-13]],[[5750,2644],[0,-7],[6,-14],[5,-27],[11,-33],[6,-14],[0,-6],[0,-7],[5,-7],[0,-7],[-6,-13],[-6,0],[-6,-7],[-5,0],[-6,0],[-6,0],[-6,1],[0,-7],[0,-7],[0,-7],[6,-7],[23,-20],[11,-7],[12,-13],[17,-21],[29,-27],[23,-20],[6,-7],[17,-14],[23,-27],[12,-13],[12,-14],[-1,-7],[6,-20],[0,-6],[0,-7],[0,-27],[-11,-59],[-6,-27],[0,-6],[-5,-20],[-6,-20],[-11,-26],[0,-19],[-5,-14],[6,0],[0,-13],[6,-6],[5,-1],[12,-13],[17,-7],[18,-20],[11,-13],[0,-7],[6,-13],[0,-7],[1,-3],[0,-3],[0,-7],[0,-13],[-6,-6],[0,-13],[-11,-13],[-5,-6],[0,-3],[0,-4],[-3,0],[-3,0],[-6,-2],[-11,-4],[-6,0],[-17,1],[-28,7],[-6,0],[-6,0],[-6,0],[-5,-6],[-3,0],[-3,0],[-3,-4],[-2,-2],[-6,-13],[-11,-13],[-6,0],[-5,-6],[-17,-6],[-6,0],[-8,-4],[-3,-2],[-5,-5],[-6,-8],[-6,-12],[-5,-20],[-5,-25],[-5,-20],[-5,-6],[0,-6],[0,-2],[0,-5],[-11,-19],[-5,-13],[-16,-12],[-6,-6],[-5,-7],[-9,0],[-8,0],[-6,1],[-6,0],[-23,0],[-3,0],[-3,0],[-11,0],[-12,7],[-11,6],[-6,0],[-5,3],[-7,4],[-5,0],[-12,0],[-10,0],[-7,1],[-6,3],[-6,3],[-6,0],[-2,3],[-3,4],[-13,0],[-5,0],[-2,0],[-9,0],[-29,-6],[-6,-7],[-5,0],[-12,-13],[-5,-13],[-3,0],[-3,0],[-6,0],[-6,0],[-5,7],[-6,0],[-6,7],[0,6],[-6,0],[-6,7],[-5,0],[-12,0],[-5,-3],[-6,-3],[-18,-7],[-16,0],[-7,0],[-11,7],[-23,0],[-23,-6],[-9,0],[-3,0],[-22,-7],[-12,1],[-11,-7],[-18,-6],[-22,-20],[-12,-7],[-11,-13],[3,-10],[3,-16],[0,-13],[1,-13],[0,-7],[-6,-7],[0,-6],[-6,-21],[-5,-6],[0,-6],[6,0],[11,-14],[0,-6],[0,-7],[-5,-7],[-6,-6],[-6,-7],[-23,-6],[-5,0],[-6,-7],[-6,-7],[-6,-6],[-5,-7],[-6,0],[-4,0],[-2,0],[-2,0],[-3,0],[-35,7],[-17,0],[-29,14],[-40,13],[-12,0],[-11,0],[-6,7],[-12,-7],[-11,0],[-17,-6],[-6,0],[-6,-7],[-6,7],[-5,0],[-6,0],[-1,1],[-5,5],[-4,5],[-2,2],[-11,13],[-12,7],[-4,9],[-2,4],[-6,0],[-5,3],[-6,4],[-6,7],[-11,0],[-12,0],[-40,0],[-40,-6],[-6,0],[-6,4],[-5,3],[-4,0],[-2,0],[-3,4],[-3,3],[-5,6],[-6,7],[-6,20],[0,5],[-1,1],[-5,13],[-1,7],[-11,13]],[[3400,3455],[0,6],[12,1],[6,0],[12,0],[11,7],[6,6],[6,0],[17,-6],[6,-6],[6,0],[0,6],[18,-6],[12,0],[6,0],[-1,7],[6,0],[12,-6],[12,0],[17,7],[6,0],[12,7],[6,6],[6,7],[5,7],[6,7],[6,7],[0,7],[6,-7],[6,0],[6,0],[6,1],[5,6],[18,8],[23,20],[12,7],[12,7],[5,7],[0,7],[6,0],[0,7],[0,14],[0,20],[0,7],[-1,6],[-17,14],[-6,6],[0,7],[5,7],[6,7],[6,0],[0,7],[0,6],[-6,7],[-6,7],[0,6],[0,7],[-1,7],[0,7],[-12,13],[-6,6],[0,7],[0,7],[0,7],[6,13],[-1,7],[0,7],[-12,6],[-6,0],[0,7],[6,7],[6,0],[6,0],[6,0],[12,0],[5,0],[6,0],[12,-6],[12,-7],[6,-6],[12,-7],[18,-13],[0,-7],[12,0],[12,0],[6,-6],[5,0],[1,-14],[0,-6],[6,-7],[6,0],[11,7],[6,-7],[6,0],[12,-6],[12,-13],[6,0],[6,0],[11,7],[12,0],[18,6],[11,7],[6,7],[11,7],[0,7],[6,0],[0,13],[6,0],[-1,20],[-6,34],[0,13],[-7,27],[-6,20]],[[3387,8102],[0,-15],[0,-7],[-6,-7],[-5,-7],[-7,-1],[-12,-7],[-6,-7],[-6,-1],[-12,0],[-6,-7],[-6,-8],[-6,-7],[-5,-14],[0,-7],[0,-7],[0,-6],[-4,-55],[-6,-8],[0,-6],[-6,-7],[-6,-8],[-5,-7],[-12,-7],[-12,-8],[-7,0],[-6,0]],[[3246,7888],[-6,0],[-6,-1],[-12,7],[-13,6],[-6,0],[-6,-1],[-7,0],[-12,-1],[-18,-7],[-6,-1],[-7,0],[-6,0],[-6,-7],[-6,-1],[-6,0],[-6,-7],[-13,-1],[-6,-7],[-12,0],[-37,-23],[-6,0],[0,-7],[-6,-7],[-6,0],[-12,-8],[-6,-7],[-6,0],[-6,0],[-13,-1],[-12,0],[-13,-1],[-6,7],[-19,6],[-7,0],[-6,13],[-7,0],[-6,0],[-6,-1],[-6,-7],[-13,7],[-12,-1],[-7,0],[-6,7],[-7,6],[-6,-7],[-6,0],[-7,7],[-12,-1],[-13,7],[-7,7],[-13,13],[-6,7],[-7,14],[-7,6],[-7,7],[-6,7],[-7,7],[-7,20],[6,7],[-1,7],[-6,7],[-7,7],[0,7],[-13,0],[-7,6],[-13,0],[-6,0]],[[2697,7985],[-7,7],[0,7],[-1,7],[0,7],[0,7],[-1,14],[-1,7],[-7,21],[-8,21],[-7,14],[-1,14],[-21,20],[-7,14],[-7,7],[-14,20],[-7,7],[-21,13],[-15,20],[-14,6],[-7,7],[-7,0],[0,6],[-8,7],[-6,-1],[-8,7],[-14,6]],[[2365,9073],[3,-2],[2,-2],[3,-1],[3,-2],[2,-1],[5,-2],[3,-1],[4,-1],[3,0],[4,0],[5,0],[4,0],[6,2],[9,3],[10,1],[4,2],[1,1],[5,5],[8,12],[2,0],[5,4],[5,2],[2,0],[12,-1],[11,2],[16,-6],[5,0],[0,-14],[-6,-31],[-2,-25],[0,-15],[0,-9],[0,-2],[1,-2],[2,-10],[0,-10],[3,-13],[-1,-3],[0,-12],[5,-13],[0,-8],[2,-6],[4,-7],[1,-4],[1,-6],[-3,-12],[3,-14],[-1,-19],[5,-27],[-1,-6],[1,-10],[7,-18],[3,-5],[3,-11],[3,-7],[2,-4],[-2,-16],[-3,-11],[0,-14],[5,-14],[10,-17],[3,-4],[5,-4],[1,-4],[2,-7],[-1,-25],[0,-6],[8,-16],[1,-4],[0,-5],[3,-13],[16,-23],[21,-26],[43,-40],[12,-9],[4,-2],[8,-8],[11,-8],[23,-11],[12,-7],[16,-9],[27,-11],[5,-2],[18,-6],[5,0],[4,-2],[4,0],[2,-2],[4,-1],[3,-4],[2,3],[9,0],[13,-5],[18,-3],[5,-1],[32,-3],[42,-5],[6,-1],[34,-3],[3,0],[2,-1],[9,-1],[18,-1],[15,0],[5,2],[6,2],[4,4],[7,5],[12,3],[8,0],[6,-3],[2,-5],[2,-7],[-1,-4],[-3,-2],[1,3],[-1,2],[-4,0],[-5,2],[-1,-2],[0,-2],[8,-5],[21,-11],[4,-1],[7,-1],[13,-5],[21,-2],[12,-3],[4,-1],[18,-1],[12,-2],[9,-3],[3,0],[5,-2],[7,-9],[3,-6],[1,-5],[0,-19],[5,-25],[4,-8],[1,-4],[4,-12],[5,-13],[3,-5],[4,-9],[3,-2],[0,-3],[0,-6],[2,-9],[5,-13],[4,-9],[10,-12],[9,-9],[16,-11],[5,-3],[12,-13],[2,-2],[25,-19],[7,-7],[5,-8],[5,-6],[8,-5],[13,-7],[5,-3],[22,-10]],[[6288,8848],[1,-7],[2,-10],[3,-12],[-3,-17],[0,-24],[-5,-6],[3,-12],[1,-7],[3,-12],[3,-13],[2,-13],[-6,-7],[1,-6],[1,-7],[-5,-6],[1,-7],[-6,-6],[1,-7],[1,-6],[-5,-14],[1,-13],[8,-14],[1,-6],[7,-7],[20,-1],[7,-7],[7,0],[7,-7],[14,-7],[1,-7],[7,-7],[0,-7],[8,-14],[1,-7],[-6,-14],[-5,-20],[-7,-7],[-32,-13],[-20,1],[-12,-6],[-7,0],[-6,-7],[-7,0],[-20,1],[1,-7],[-13,0],[-7,-6],[1,-7],[-7,-7],[-6,-7],[-7,0],[-6,1],[-7,0],[-12,-14],[-7,1],[-6,-14],[0,-7],[0,-7],[0,-6],[0,-7],[-6,-7],[-7,-7],[-6,-6],[-7,-7],[-7,-7],[-6,-6]],[[6133,8353],[-7,7],[-6,-7],[-7,0],[-7,-14],[-14,-20],[-22,-34],[-8,-20],[-9,-20],[-1,-7],[-12,-34],[-10,-14],[-8,-6],[-1,-7],[-24,-20],[-8,-7],[-1,-7],[-9,-13],[-2,-14],[-3,-20],[-1,-7],[-2,-14],[-3,-20],[-1,-7],[0,-6],[-2,-14],[-1,-7],[-1,-13],[-1,-14],[-1,-6],[0,-7],[0,-7],[-8,-13],[-7,-7],[-7,-6],[-7,0],[-7,0],[-13,-7],[-7,0],[-33,8],[-26,7],[-32,7],[-14,1],[-32,7],[-14,0],[-46,1],[-14,-7],[-33,-6],[-7,0],[-13,-7],[-14,-7],[-34,-20],[-21,-13],[-22,-27],[-14,-14],[-7,-6],[-36,-48],[-7,-13],[-7,-7],[-7,0],[-7,-7],[-7,-7],[-6,0],[-7,0],[-14,-6],[-13,0],[-7,-7],[-13,-7],[-7,-7],[-8,-7],[-6,0],[-19,7],[-20,7],[-6,0],[-14,-1],[-12,7],[-7,0],[-20,0],[-13,0],[-13,0],[-20,-7],[-7,0]],[[5226,7762],[-6,6],[-12,21],[-11,26],[-12,14],[-18,20],[-25,19],[-26,13],[-25,7],[-32,13],[-12,13],[-19,13],[-5,20],[-12,19],[1,12]],[[5012,7978],[4,-1],[14,-1],[12,-2],[2,0],[5,-1],[7,-1],[12,2],[7,-3],[13,-3],[15,-2],[5,0],[7,3],[7,1],[9,-2],[6,3],[11,3],[1,2],[5,1],[13,1],[9,2],[6,6],[2,11],[2,14],[1,4],[-1,16],[0,5],[-2,8],[2,3],[0,4],[-2,24],[-1,8],[-3,3],[-4,1],[-14,8],[-1,3],[3,1],[2,5],[0,13],[3,2],[-7,27],[0,3],[-4,8],[-6,28],[-4,7],[-1,10],[-6,17],[-4,21],[-2,10],[-5,10],[-6,26],[-1,5],[-5,24],[-2,7],[-5,21],[15,-2],[28,-2],[34,-4],[50,-7],[52,-6],[6,6],[9,10],[4,4],[3,3],[3,0],[2,0],[17,-1],[10,0],[3,1],[3,1],[5,1],[3,2],[4,2],[3,1],[4,2],[4,3],[3,3],[3,2],[4,2],[3,2],[3,3],[4,3],[2,2],[2,3],[4,2],[2,1],[3,2],[5,6],[16,16],[9,2],[3,1],[3,3],[3,2],[5,1],[3,3],[5,-1],[5,6],[3,0],[3,-1],[2,0],[1,-2],[3,1],[2,-4],[7,-1],[4,-5],[9,1],[4,-5],[2,-1],[11,7],[5,4],[10,11],[4,4],[2,1],[1,2],[3,1],[2,2],[3,1],[2,1],[3,1],[2,1],[2,1],[2,1],[2,2],[3,2],[1,3],[2,2],[1,2],[2,3],[-1,3],[1,2],[6,2],[6,4],[0,15],[1,4],[3,3],[0,4],[-1,1],[1,2],[2,6],[4,9],[1,12],[-2,4],[-4,4],[-5,-1],[-3,1],[-2,2],[0,3],[-2,6],[3,10],[5,9],[1,2],[-2,3],[1,3],[0,3],[2,2],[4,3],[3,9],[2,3],[0,2],[-4,1],[5,7],[0,1],[0,4],[4,2],[2,2],[4,7],[-1,3],[6,4],[0,3],[2,3],[5,3],[2,-1],[3,4],[5,0],[4,-2],[15,12],[14,12],[5,12],[15,11],[7,5],[6,5],[8,9],[2,7],[6,12],[13,8],[15,15],[17,18],[11,5],[12,-1],[6,1],[3,-4],[7,8],[13,7],[8,4],[10,1],[4,3],[3,2],[3,3],[3,2],[2,1],[5,3],[5,2],[5,2],[3,1],[4,2],[2,1],[3,1],[3,2],[2,1],[3,2],[3,2],[3,1],[3,1],[2,2],[3,1],[3,2],[3,1],[4,2],[3,2],[4,2],[2,2],[2,2],[3,1],[4,2],[3,3],[0,1],[1,3],[2,2],[1,2],[2,2],[3,1],[2,2],[3,2],[3,1],[2,0],[2,-1],[1,-3],[1,-2],[3,-3],[2,1],[4,1],[2,1],[3,3],[2,1],[2,1],[3,1],[4,1],[3,0],[3,1],[4,0],[3,1],[3,0],[3,0],[3,0],[3,0],[3,2],[4,1],[5,1],[6,2],[5,0],[3,1],[5,0],[4,-1],[3,0],[5,-1],[4,0],[3,0],[3,1],[3,0],[4,1],[4,1],[4,1],[4,0],[3,2],[3,1],[2,2],[3,0],[3,1],[5,0],[3,-1],[3,-1],[6,-1],[4,0],[3,1],[3,1],[4,1],[2,-1],[3,-1],[3,-3],[4,-2],[3,-2],[4,-2],[3,-3],[5,-2],[3,-2],[5,-2],[5,-2],[4,-2],[4,0],[3,1],[3,1],[5,1],[3,1],[2,1],[4,-1],[2,0],[2,0],[1,-1],[3,-2],[1,-2],[2,-1],[1,-1],[2,-1],[2,-2],[3,-2],[2,1],[2,0],[2,0],[1,0],[3,0],[3,0],[3,0],[3,0],[3,0],[5,0],[3,0],[2,1],[3,0],[3,1],[4,1],[9,2],[3,0],[4,1],[3,0],[7,1],[7,2],[4,1],[4,1],[5,0],[5,0],[3,1]],[[2168,7222],[0,-7],[13,-20],[7,-7],[0,-7],[7,-6],[6,0],[7,-7],[12,1],[13,-7],[7,1],[6,0],[6,7],[7,0],[6,7],[6,7],[6,1],[6,0],[7,0],[6,0],[13,-6],[13,-6],[20,-20],[12,-7],[45,-19],[7,1],[12,0],[7,0],[25,8],[6,0],[6,1],[6,0],[0,7],[0,7],[0,7],[0,6],[-1,7],[0,7],[0,7]],[[2467,7185],[0,7],[6,7],[6,0],[6,7],[13,1],[12,0],[19,1],[7,0],[19,-6],[13,-13],[12,-6],[7,-13],[13,-14],[7,-6],[6,-7],[7,-6],[0,-7],[0,-7],[-6,-7],[-19,-1],[-12,0],[-7,-1],[-6,-7],[0,-7],[1,-7],[6,-6],[7,-7],[12,-6],[45,-4],[18,0],[32,2],[6,7],[12,1],[13,1],[6,0],[7,-7],[6,1],[6,-7],[7,-6],[6,0],[6,7],[13,1],[12,-6],[7,-7],[0,-7]],[[2798,7050],[0,-6],[-6,-8],[0,-6],[0,-7],[7,-7],[0,-6],[19,-20],[7,-13],[-6,-14],[-6,-7],[-12,-8],[-6,-7],[-6,0],[-7,0],[-6,-1],[-6,0],[0,7],[-1,7],[-6,6],[6,21],[-1,7],[0,6],[-6,7],[0,7],[-7,-1],[-6,-7],[-6,-7],[-6,-7],[1,-14],[-6,-14],[0,-6],[7,-21],[6,-13],[1,-7],[6,-6],[6,-6],[13,-13],[1,-7],[6,-7],[0,-6],[1,-14],[-6,-14],[0,-7],[0,-6],[-6,-8],[-6,-7],[-6,0],[-6,0],[-7,-1],[-12,0],[-13,6],[-6,-1],[-6,0],[-7,0],[1,-7],[-7,-7],[1,-7],[6,-7],[0,-6],[7,-7],[12,-6],[13,1],[6,0],[7,-6],[12,-6],[13,0],[6,-6],[13,-6],[12,1],[13,-13],[7,0],[12,-12],[1,-7],[6,-7],[0,-6],[0,-7],[7,0],[6,-13],[1,-13],[0,-14],[7,-20],[0,-6],[7,-34],[0,-6],[1,-7],[0,-7],[-6,-7],[-6,-7],[-7,-1],[-6,0],[-6,0],[0,6],[-6,0],[-7,6],[-6,13],[-7,7],[-6,6],[-6,-7],[-7,0],[-6,6],[0,7],[-7,6],[0,14],[0,13],[6,7],[-1,7],[6,14],[6,7],[0,7],[6,7],[0,7],[-6,6],[-7,0],[-12,-1],[-13,-1],[-12,-1],[-13,6],[-12,0],[-13,-1],[-6,0],[-19,-1],[-12,-1],[-13,-1],[-6,0],[-6,-1],[-7,7],[-6,6],[-7,0],[-6,-7],[1,-7],[0,-7],[0,-13],[0,-7],[7,-13],[7,-27],[6,0],[0,-6],[-6,-8],[1,-6],[-13,-1],[-6,0],[-7,-1],[-6,-7],[-6,-7],[1,-14],[6,-20],[1,-6],[0,-7],[0,-20],[0,-7],[7,-13],[0,-7],[0,-7],[7,-6],[-6,-14],[0,-7],[-13,6],[-6,6],[-6,7],[-7,6],[-6,7],[-7,6],[-6,0],[-12,-8],[-13,0],[-6,-1],[-7,0],[-6,6],[-7,7],[-6,-1],[-6,7],[-6,-7],[0,-7],[0,-7],[0,-7],[7,-6],[6,0],[13,-6],[6,-6],[6,0],[7,0],[6,1],[6,-7],[7,-6],[0,-7],[0,-7],[0,-6],[-6,-21],[-5,-34],[0,-7],[0,-14],[0,-13],[7,-6],[6,-14],[7,-19],[19,-19],[7,-13],[0,-7],[7,-20],[0,-6],[0,-7],[0,-7],[1,-26],[1,-26],[6,0],[0,-6],[7,-19],[0,-7],[-6,-7],[0,-6],[1,-7],[-7,0],[-12,-14],[-6,0],[-6,-7],[-13,-7],[-6,-7],[-6,-7],[-6,-14]],[[2554,6066],[-6,0],[-6,6],[-7,6],[-12,-1],[-7,7],[-13,-1],[-12,6],[-26,5],[-6,6],[-7,-1],[-6,7],[-7,6],[-6,6],[-7,19],[-7,6],[-6,0],[-12,-14],[-13,-1],[-12,0],[-7,-1],[-12,0],[-7,6],[-6,0],[-6,-7],[-7,-7],[-6,-7],[-6,-7],[0,-6],[-6,-7],[0,-7],[-6,0],[-6,-1],[-7,7],[-6,6],[-7,0],[-6,6],[-13,-1],[-6,0],[-13,-1],[-7,6],[-6,0],[-13,-1],[-12,0],[-7,6],[-25,-1],[-13,-1],[-6,0],[-7,6],[-7,7],[-13,12],[-13,13],[-7,13],[-6,6],[-7,6],[-7,6],[-6,0],[-13,6],[-26,6],[-6,6],[-7,0],[-6,6],[-13,6],[-14,13],[-13,12],[-13,6],[-13,13],[-19,13],[-1,13],[-26,26],[-7,7],[-6,0],[-6,-1]],[[1892,6311],[6,7],[6,8],[0,6],[6,7],[0,14],[0,7],[6,7],[6,7],[7,1],[19,-6],[32,-6],[7,0],[13,1],[6,0],[7,-6],[6,0],[7,-7],[6,-6],[6,0],[7,0],[6,7],[0,7],[0,7],[-7,7],[0,20],[0,14],[0,7],[6,14],[0,27],[-1,21],[0,7],[-6,-1],[-7,7],[-6,0],[-7,-1],[-6,-7],[-6,-7],[-7,-7],[-6,0],[-13,-1],[-6,0],[0,-7],[-6,-21],[-7,-14],[1,-7],[-7,-7],[-6,7],[-7,0],[-6,6],[0,7],[0,7],[-1,21],[0,6],[0,7],[-7,7],[-6,0],[-6,-1],[-7,7],[-13,-1],[-6,0],[-7,7],[-7,13],[-6,0],[-7,0],[-6,-1],[-7,7],[-6,0],[-7,6],[-6,14],[-7,7],[0,6],[0,7],[0,7],[6,7],[13,8],[0,7],[19,0],[13,1],[13,0],[19,1],[7,0],[6,1],[6,7],[0,7],[0,7],[0,6],[-7,14],[0,7],[0,7],[0,7],[6,7],[6,7],[7,0],[12,14],[7,0],[6,8],[0,6],[6,8],[0,6],[0,7],[0,7],[-1,7]],[[1973,6720],[0,7],[6,7],[7,7],[6,0],[7,1],[13,-7],[6,-6],[6,0],[7,0],[6,7],[0,7],[6,7],[0,7],[0,7],[0,7],[6,7],[6,0],[7,-7],[0,-13],[0,-7],[-6,-7],[7,-7],[6,-7],[7,-6],[6,-7],[7,1],[6,7],[6,0],[0,7],[12,21],[6,14],[6,14],[6,20],[6,21],[-1,14],[0,14],[-7,13],[-7,13],[-6,7],[-7,14],[-13,13],[-7,0],[-6,6],[-19,6],[-7,14],[-13,6],[-13,14],[-1,6],[-7,21],[-21,75],[-7,13],[-7,21],[-14,20],[-7,13],[-13,14],[-7,6],[0,7],[0,7],[-1,7],[0,7],[7,0],[6,7],[6,0],[6,7],[6,8],[0,6],[6,8],[6,0],[7,-7],[7,-7],[0,-6],[1,-21],[6,-7],[1,-7],[6,-6],[7,-7],[6,0],[13,1],[0,7],[6,0],[25,28],[6,1],[19,-7],[7,1],[6,7],[0,7],[-7,6],[-7,21],[-7,6],[7,1],[-1,6],[-6,7],[-7,7],[-13,6],[-20,13],[-6,7],[0,7],[-1,7],[7,0],[6,0],[32,-12],[13,-7],[26,-13],[27,-20],[6,-6],[7,0]],[[7240,407],[0,-2],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[7124,415],[0,2],[0,-2]],[[7124,415],[0,-1],[0,1]],[[5447,591],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-4,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[2,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[5756,808],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[5846,832],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-7,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0]],[[6773,846],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0]],[[5431,855],[0,-1],[2,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0]],[[5143,1029],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,2],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[3,0],[2,0]],[[5825,1042],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[0,1]],[[5824,1088],[0,1],[-1,0],[1,0],[0,-1]],[[6146,1106],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,2],[0,1],[1,0],[0,1],[1,0],[0,3],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,2],[1,0],[0,2],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0]],[[4962,1112],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[3,0],[0,1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[3,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,1],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-3,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0]],[[6001,1146],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[0,-1]],[[6004,1157],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1]],[[6012,1157],[0,-1]],[[6012,1156],[-1,0],[0,-1]],[[6011,1155],[-1,0],[0,1],[0,1],[1,0],[1,0]],[[6069,1179],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[6065,1171],[0,-1],[0,1]],[[6065,1171],[0,1],[-1,0]],[[6064,1172],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[4855,1180],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-2,0],[0,1],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0]],[[6069,1179],[0,1]],[[6069,1180],[-1,0],[2,0]],[[6070,1180],[0,1]],[[6070,1181],[1,0],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0]],[[6251,1180],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[6070,1181],[0,-1],[-1,0]],[[6069,1180],[0,1],[0,-1]],[[6069,1180],[0,1],[-1,0],[0,1]],[[6068,1182],[0,1],[1,0]],[[6069,1183],[1,0],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1]],[[6074,1185],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0]],[[6068,1187],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[6068,1182],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[0,-1],[1,0],[1,0]],[[6069,1188],[-1,0],[1,0]],[[6069,1188],[0,-1]],[[6069,1187],[-1,0]],[[6068,1187],[0,1],[0,1],[0,-1],[1,0]],[[6070,1191],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1]],[[6069,1188],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0]],[[6260,1192],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[6070,1191],[0,1],[1,0],[0,1]],[[6071,1193],[0,1],[1,0],[0,1]],[[6072,1195],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[5984,1200],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[6046,1200],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[6049,1195],[0,-1],[0,-1],[1,0]],[[6050,1193],[1,0]],[[6051,1193],[0,-1],[1,0],[0,1]],[[6052,1193],[1,0]],[[6053,1193],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1]],[[6057,1196],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[6060,1204],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,3],[-1,0],[0,1],[1,0],[-1,0],[1,0],[0,2],[0,1],[1,0]],[[6068,1205],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[6071,1193],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0]],[[6067,1206],[0,-1],[1,0]],[[5986,1211],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1]],[[6021,1212],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0]],[[6030,1206],[0,-1],[1,0],[1,0],[1,0]],[[6033,1205],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[2,0],[0,-1],[0,-1],[1,0],[0,1]],[[6046,1211],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1]],[[6060,1204],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[6057,1196],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1]],[[6053,1193],[-1,0],[-1,0],[-1,0]],[[6050,1193],[0,1],[0,1],[-1,0]],[[6049,1195],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0]],[[6046,1200],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,2],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,3],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[-1,0],[0,1],[0,2],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[1,0]],[[4735,1217],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[2,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[2,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[3,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[2,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-4,0],[-1,0],[0,1],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-6,0],[-2,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[3,0],[1,0]],[[6068,1205],[0,1],[-1,0]],[[6067,1206],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[6046,1211],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0]],[[6077,1224],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[6078,1231],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[1,0]],[[6027,1223],[0,-1],[0,-1],[1,0]],[[6028,1221],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[6031,1218],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1]],[[6032,1211],[-1,0],[0,-1]],[[6031,1210],[-1,0],[0,-1],[0,-1]],[[6030,1208],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0]],[[6021,1212],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,2],[0,2],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0]],[[5987,1237],[0,-1],[0,-2],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0]],[[6396,1241],[0,-1],[5,0],[1,0],[2,0],[3,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[1,0],[0,4],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0],[0,1],[3,0]],[[6009,1246],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[2,0],[0,1]],[[6026,1253],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0]],[[6034,1231],[-4,0],[0,-1]],[[6030,1230],[-1,0],[0,-1]],[[6029,1229],[-1,0],[0,-1]],[[6028,1228],[0,-1]],[[6028,1227],[-1,0],[0,-1]],[[6027,1226],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1]],[[6066,1257],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0]],[[5996,1262],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,2],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[6061,1267],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,0]],[[6033,1205],[0,1],[-1,0],[-1,0],[-1,0]],[[6030,1206],[0,1],[0,1]],[[6030,1208],[1,0],[0,1],[0,1]],[[6031,1210],[1,0],[0,1]],[[6032,1211],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,2],[0,1],[0,1],[-1,0],[-1,0]],[[6031,1218],[0,1],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0]],[[6028,1221],[0,1],[0,1],[-1,0]],[[6027,1223],[0,1],[0,1],[0,1]],[[6027,1226],[1,0],[0,1]],[[6028,1228],[1,0],[0,1]],[[6029,1229],[1,0],[0,1]],[[6030,1230],[1,0],[3,0],[0,1]],[[6034,1231],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,3],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[2,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-3],[0,-1],[-1,0],[1,0],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[1,0],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-2],[-1,0],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0]],[[6011,1300],[1,0],[0,1],[0,1]],[[6012,1302],[1,0],[0,1]],[[6013,1303],[1,0],[0,1]],[[6014,1304],[1,0],[0,1]],[[6015,1305],[1,0]],[[6016,1305],[1,0],[0,1]],[[6017,1306],[1,0]],[[6018,1306],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[5824,1088],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[3,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[3,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,-1],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,2],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1]],[[6011,1155],[1,0],[0,1]],[[6012,1156],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[6012,1157],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[3,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0]],[[6064,1172],[0,-1],[1,0]],[[6065,1171],[0,-1]],[[6065,1170],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,2],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[2,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[2,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[2,0],[0,1],[0,-1],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,2],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,-2],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[2,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,2],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[0,2],[0,1],[0,1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[3,0],[1,0],[1,0],[2,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[4,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[3,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[2,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-2,0],[0,-1],[0,-3],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-4,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-4,0],[-3,0],[-2,0],[0,-1],[-2,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-3],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,3],[-1,0],[0,1],[1,0],[0,2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-2,0],[0,-1],[-1,0],[-2,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[-2,0],[-1,0],[0,-1],[-2,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-2],[1,0],[2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-2,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,3],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[1,0],[1,0],[0,1]],[[6687,1318],[2,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,1],[0,1],[-1,0]],[[6687,1318],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,-1]],[[6693,1319],[0,-1],[-1,0],[0,1],[1,0]],[[6660,1319],[0,-1]],[[6660,1318],[-1,0],[-1,0]],[[6658,1318],[0,1],[0,1],[1,0],[0,-1],[1,0]],[[6658,1318],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1]],[[6660,1318],[1,0],[0,1],[-1,0]],[[6660,1319],[0,1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,0],[0,-1],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[2,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0]],[[6669,1327],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[6643,1353],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[1,0],[0,1]],[[6235,1378],[0,-1],[3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[2,0],[0,1]],[[6241,1380],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[2,0],[1,0],[0,-1],[1,0]],[[6241,1380],[1,0],[0,1],[1,0],[0,1]],[[6232,1383],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[1,0],[0,-1],[0,1],[1,0],[1,0]],[[6243,1382],[0,1],[0,1]],[[6243,1384],[1,0],[0,-1],[0,-1],[-1,0]],[[6232,1383],[0,1],[1,0]],[[6233,1384],[0,-1],[-1,0]],[[6229,1385],[0,-1],[-1,0],[0,1],[1,0]],[[6243,1384],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[0,-1]],[[6437,1388],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-2,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,3],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[6259,1405],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[2,0],[0,-1],[-2,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1]],[[6257,1408],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[6310,1410],[1,0],[0,-1],[-1,0],[0,-2],[-1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1]],[[6550,1420],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1]],[[6548,1424],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[1,0]],[[6510,1428],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0]],[[6475,1435],[0,-1]],[[6475,1434],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,-1],[1,0]],[[6017,1306],[-1,0],[0,-1]],[[6015,1305],[-1,0],[0,-1]],[[6014,1304],[-1,0],[0,-1]],[[6013,1303],[-1,0],[0,-1]],[[6012,1302],[-1,0],[0,-1],[0,-1]],[[6011,1300],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[2,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-2],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-3],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-2],[-1,0],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[-4,0],[-1,0],[-1,0],[0,1],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[0,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-2,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-2,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-3,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,2],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-4,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-3,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-3,0],[-4,0],[-2,0],[0,-1],[-1,0],[0,1],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,2],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-2],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-3,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[0,2],[-1,0],[0,1],[-1,0],[-1,0],[-3,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,3],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,2],[0,1],[0,3],[0,2],[0,4],[0,1],[0,1],[0,5],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-2,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0]],[[5750,2644],[12,-1],[11,0],[6,0],[6,0],[6,-6],[12,-1],[17,0],[12,0],[18,0],[5,-7],[6,0],[6,0],[6,-13],[6,0],[23,-14],[12,-7],[5,-13],[6,-7],[17,-14],[6,-20],[29,-27],[0,-7],[5,0],[12,-7],[6,0],[6,0],[12,0],[6,7],[11,6],[12,7],[6,6],[36,40],[6,7],[24,20],[6,6],[30,14],[24,13],[6,0],[6,6],[11,7],[6,0],[6,-7],[6,0],[6,-7],[0,-13],[5,-21],[6,-13],[-1,-20],[0,-14],[0,-13],[-1,-27],[-1,-34],[0,-6],[5,-54],[0,-7],[0,-7],[-1,-26],[-7,-41],[-6,-13],[-12,-27],[0,-13],[-1,-14],[6,-13],[0,-7],[6,-7],[5,-7],[23,-34],[12,-13],[17,-14],[11,-14],[6,-6],[11,-14],[18,-14],[0,-7],[11,-6],[12,-7],[6,0],[5,-7],[6,-7],[12,0],[5,-7],[18,0],[17,-7],[6,0],[12,0],[12,-1],[11,0],[24,13],[18,6],[6,7],[12,6],[12,6],[6,7],[6,6],[12,7],[18,26],[6,13],[6,0],[6,7],[7,20],[6,6],[0,7],[12,6],[12,6],[6,0],[6,7],[5,-7],[6,0],[6,0],[12,-8],[5,-6],[6,-1],[18,-7],[6,0],[-1,-7],[12,-7],[0,-7],[0,-6],[-1,-7],[0,-7],[-6,-20],[0,-6],[-1,-7],[0,-7],[0,-20],[11,-27],[-1,-34],[6,0],[4,-34],[0,-6],[6,-7],[0,-7],[6,0],[5,-7],[18,-1],[12,0],[11,-7],[6,0],[5,-14],[6,-7],[11,-27],[5,-21],[6,0],[6,-13],[11,-14],[6,-7],[11,-7],[11,-14],[6,-14],[0,-7],[5,-13],[-6,-7],[0,-7],[0,-6],[-6,-7],[-6,0],[-12,-6],[-6,0],[0,-7],[-6,-6],[0,-7],[5,-7],[6,-7],[12,0],[5,-1],[6,-7],[11,-14],[6,0],[0,-6],[5,-34],[11,-41],[5,-7],[0,-20],[0,-7],[0,-13],[0,-27],[-1,-20],[6,-20],[-1,-40],[0,-6],[0,-13],[0,-14],[0,-6],[0,-13],[6,-21],[0,-13],[-1,-20],[0,-6],[3,-5],[3,-9],[6,-6],[0,-7],[5,-7],[3,-4],[3,-3],[6,-7],[11,0],[6,0],[2,-3],[3,-4],[18,-1],[5,0],[12,-1],[5,-7],[6,-7],[12,-7],[5,-7],[12,-7],[5,-7],[6,0],[17,-1],[6,0],[6,-7],[5,-7],[12,-13],[3,-4],[2,-3],[2,-2],[4,-5],[3,-3],[3,-4],[5,-7],[6,0],[0,-6],[6,-1],[6,7],[3,0],[2,0],[6,6],[0,6],[12,13],[11,6],[6,13],[0,7],[0,6],[6,13],[6,0],[11,-7],[6,0],[6,0],[2,2],[4,4],[2,0],[3,0],[4,-5],[2,-2],[11,0],[6,-7],[6,-7],[11,-7],[6,-7],[17,-20],[17,-14],[12,-14],[5,-7],[6,0],[6,-7],[6,-6],[5,-7],[0,-13],[6,-27],[6,-13],[-6,-7],[-2,0],[-4,0],[-6,7],[-5,7],[-6,13],[-6,1],[-6,6],[-11,1],[0,-4],[0,-3],[-6,1],[0,-7],[0,-7],[6,-6],[5,-20],[6,-7],[0,-7],[0,-6],[0,-7],[0,-13],[-6,-6],[0,-7],[-11,-12],[-6,-7],[0,-6],[6,-27],[0,-6],[0,-4],[0,-3],[-6,-6],[0,-7],[-6,-13],[0,-2],[0,-4],[0,-7],[0,-13],[0,-6],[0,-7],[0,-19],[-5,-7],[0,-6],[0,-7],[11,-13],[0,-7],[-5,-5],[-6,-7],[0,-7],[0,-6],[6,-7],[0,-2],[0,-5],[-6,-12],[-6,0],[0,-7],[-6,1],[-5,-7],[0,-6],[0,-7],[3,0],[3,0],[0,-6],[5,-1],[6,7],[3,0],[3,-1],[11,7],[6,6],[3,0],[3,0],[6,-1],[5,0],[3,0],[3,0],[6,0],[6,0],[14,-5],[9,-3],[3,-3],[3,-4],[2,0],[9,0],[5,-3],[7,-4],[3,0],[3,0],[5,6],[6,6],[6,7],[11,-1],[6,7],[3,0],[3,-1],[5,-6],[6,-7],[6,0],[4,-5],[2,-2],[3,0],[2,0],[18,-1],[11,0],[12,-1],[0,-6],[5,-1],[0,-6],[-5,-6],[-6,-7],[0,-6],[0,-4],[0,-3],[0,-2],[0,-4],[5,-1],[6,0],[6,-7],[-6,-6],[0,-13],[0,-13],[0,-7],[6,-6],[-1,-7],[6,0],[6,0],[7,-1],[4,0],[6,7],[6,-1],[6,0],[5,0],[6,0],[6,-7],[11,-1],[6,0],[6,7],[0,6],[5,6],[0,7],[1,6],[5,7],[2,0],[4,-1],[3,-3],[3,-3],[3,-4],[2,-3],[6,-7],[6,-7],[11,0],[0,7],[3,2],[3,4],[6,0],[5,-7],[0,-7],[0,-5],[0,-8],[0,-3],[0,-3],[0,-7],[6,0],[6,-7],[5,0]],[[7687,646],[-6,-6],[-5,0],[-6,-13],[0,-13],[-6,-6],[0,-7],[6,-7],[0,-6],[5,0],[6,-1],[6,0],[6,0],[5,-7],[0,-6],[6,-7],[6,-7],[5,-7],[12,-13],[28,-27],[11,-14],[29,-21],[11,-20],[6,-6],[0,-7],[0,-6],[0,-26],[5,-7],[0,-7],[12,0],[11,-1],[6,0],[6,-7],[-6,-6],[6,-7],[0,-6],[0,-7],[5,-6],[6,-7],[6,0],[0,-7],[5,-7],[6,-6],[0,-13],[6,-7],[0,-7],[5,0],[0,-3],[2,-1],[-1,-2],[5,-1],[0,7],[6,0],[0,-7],[0,-6],[-6,0],[6,-7],[-5,-5],[8,-1],[2,-3],[-2,-2],[-11,0],[-3,-3],[-3,-1],[-3,-2]],[[7886,268],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-4,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[-1,0],[0,2],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,2],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[2,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,6],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-5],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,2],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[2,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[2,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-2,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-7,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[0,-1],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-7,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-2,0],[-2,0],[0,-1],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-3,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-7,0],[-2,0],[-3,0],[0,-1],[-4,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[-3,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[0,4],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-4,0],[-1,0],[-1,0],[0,1],[-1,0],[-4,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-2,0],[0,1],[-3,0],[0,-1],[-1,0],[-3,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-5,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,3],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0]],[[7240,407],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,-1],[-7,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[1,0],[0,2],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[0,1],[-1,0],[0,1],[0,2],[0,1],[1,0],[0,1],[1,0],[0,2],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,6],[-1,0],[0,4]],[[7124,415],[0,2]],[[7124,417],[0,1],[0,1],[-1,0],[0,2],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-2],[-1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-2],[-1,0],[0,2],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-3,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-4,0],[-1,0],[-1,0],[0,1],[-1,0],[-5,0],[0,1],[-3,0],[0,-1],[-2,0],[-1,0],[-1,0],[-7,0],[-4,0],[0,-1],[-2,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[0,1],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-2,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-3,0],[0,-1],[-2,0],[-4,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,6],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-3,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,3],[0,1],[0,1],[0,2],[-1,0],[0,2],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,3],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,2],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,2],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,5],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,3],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[2,0],[0,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,0],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,2],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[1,0],[0,1],[0,2],[-1,0],[0,7],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,2],[0,2],[0,3],[0,3],[0,2],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,3],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,2],[0,2],[0,2],[0,2],[0,6],[1,0],[0,8],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,4],[0,4],[0,2],[0,2],[0,3],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,3],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[-1,0],[0,2],[0,1],[0,2],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,3],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[-2,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,2],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,2],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[0,-2],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,2],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[2,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[3,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-2,0],[0,1],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-2,0],[0,-1],[2,0],[1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,2],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,2],[0,1],[-1,0],[0,1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[2,0],[0,1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[-3,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[1,0],[0,1],[0,-1],[2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,2],[0,1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0]],[[6550,1420],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[6510,1428],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,-2],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0]],[[6475,1435],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,-2],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-4,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[6257,1408],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0]],[[6233,1384],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[4,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-2],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[3,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-2,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-3,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[-3,0],[-1,0],[0,-1]],[[1732,6099],[6,1],[1,-7],[7,-13],[7,-19],[1,-20],[7,-6],[0,-7],[-6,-6],[1,-14],[-6,-13],[-6,-7],[1,-7],[-6,0],[0,-6],[-18,-8],[-12,-7],[0,-6],[-5,-7],[-6,0],[-6,-14],[-5,-6],[-11,-7],[-6,-7],[-11,0],[-6,0],[-6,0],[-12,6],[-6,0],[-6,0],[-11,0],[-12,-7],[-5,0],[-6,-7],[-12,6],[-5,-6],[-6,0],[-11,-7],[-6,-7],[-5,0],[-6,0],[-12,0],[-6,-1],[-5,-6],[-6,-7],[-5,-7],[-5,-6],[0,-7],[-6,0],[-5,0],[-6,-1],[-6,-6],[1,-7],[-4,-20],[0,-6],[1,-7],[-6,-7],[-5,-7],[-6,0],[-6,0],[-5,-7],[1,-7],[6,-13],[7,-12],[7,-7],[6,-6],[7,-13],[13,-25],[8,-20],[5,0],[7,-6],[0,-7],[7,-6],[7,-13],[6,-6],[1,-7],[5,0],[30,-12],[7,-6],[6,-7],[13,-13],[6,-6],[6,0],[12,-6],[48,-20],[12,1],[13,-14],[25,-26],[7,-6],[19,-20],[37,-26],[1,-7],[19,-19],[19,-20],[12,-7],[7,-6],[24,-13],[12,-7],[13,-20],[1,-6],[6,-7],[7,-13],[9,-33],[1,-7],[7,-13],[7,-13],[1,-7],[12,-13],[7,-13],[7,-13],[2,-14],[0,-6],[8,-20],[7,-20],[9,-26],[7,-20],[6,0],[7,-13]],[[1998,5124],[-5,-7],[0,-7],[-9,-19],[-5,-13],[2,-20],[-5,-13],[-5,-7],[0,-6],[-10,-13],[-5,-7],[-6,-6],[-4,-13],[-27,-38],[-10,-13],[0,-6],[1,-6],[-6,0],[0,-7],[7,-13],[8,-19],[0,-7],[7,-13],[0,-6],[1,-7],[-6,-6],[1,-6],[-6,-6],[-5,-6],[-11,-6],[-12,-6],[-11,-6],[-16,-12],[-5,-6],[-9,-6]],[[1847,4792],[-1,0],[-3,2],[-2,0],[-4,0],[-4,-1],[-5,-1],[-4,2],[-1,3],[-2,4],[-1,2],[-2,1],[-2,2],[-2,1],[-2,1],[-1,2],[-1,2],[0,1],[-1,1],[0,1],[0,5],[0,4],[0,5],[0,3],[0,1],[1,1],[2,2],[1,2],[1,1],[1,1],[2,1],[1,2],[1,1],[2,2],[3,5],[0,1],[0,1],[1,3],[1,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[-1,2],[-2,2],[-2,2],[-4,1],[-2,1],[-2,1],[-2,1],[-2,2],[-2,3],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-2,2],[-1,1],[-1,1],[-2,2],[-2,2],[-1,0],[-1,1],[-3,3],[-1,3],[-1,2],[0,2],[0,1],[1,2],[0,1],[0,2],[1,2],[1,2],[0,1],[0,1],[-1,2],[-2,2],[-2,3],[-2,2],[-2,1],[-2,1],[-1,1],[-2,1],[-1,0],[-2,1],[-1,0],[-2,0],[-1,-1],[-1,0],[-4,1],[-2,1],[-1,1],[-1,1],[0,2],[0,3],[0,2],[0,2],[-1,2],[-1,2],[-1,1],[-3,2],[-2,1],[-1,2],[0,2],[1,0],[2,0],[3,0],[3,1],[3,3],[0,1],[1,1],[1,4],[1,2],[0,4],[-1,4],[0,1],[0,2],[0,1],[0,1],[-1,3],[-1,3],[-1,0],[-1,1],[-1,3],[-2,2],[-2,1],[-3,2],[-2,4],[-3,4],[-2,2],[-2,4],[-2,3],[-6,10],[-2,4],[-2,2],[-3,2],[-1,1],[-1,0],[-3,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,-1],[-2,1],[-2,1],[-1,0],[-1,0],[-2,1],[-2,1],[-1,2],[-4,1],[-1,1],[-5,5],[-4,3],[-3,2],[-2,-1],[-1,0],[-3,-2],[-1,-2],[-1,-1],[-2,-2],[-2,-1],[-3,-2],[-4,-4],[-4,-1],[-3,-2],[-2,0],[-1,0],[-4,-2],[-3,-2],[-1,0],[-2,-2],[-4,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-2,1],[-5,1],[-4,1],[-1,-3],[-1,-2],[0,-1],[-2,0],[-3,0],[-5,2],[-2,1],[-4,2],[-2,1],[-4,3],[-2,2],[-3,1],[-1,0],[-3,2],[-2,1],[-3,1],[-2,2],[-3,3],[-2,2],[-3,4],[-3,3],[-1,1],[-1,2],[-3,3],[-3,4],[-3,4],[-1,2],[-2,2],[-4,3],[-3,2],[-3,4],[-2,3],[-2,2],[-3,4],[-2,2],[-4,3],[-2,3],[-5,5],[-2,2],[-3,3],[-3,2],[-3,2],[-2,2],[-3,2],[-2,1],[-2,2],[-2,2],[-2,2],[-2,2],[-2,3],[-2,3],[-3,3],[-3,3],[-3,3],[-2,2],[-6,3],[-2,1],[-3,2],[-4,4],[-2,3],[-1,2],[-3,4],[-1,3],[-3,3],[-4,4],[-3,3],[-4,4],[-2,2],[-2,2],[-5,6],[-3,3],[-2,3],[-2,2],[-4,2],[-4,1],[-3,1],[-1,1],[-2,1],[-3,1],[-1,3],[-2,2],[-2,3],[-2,3],[-4,4],[-2,3],[-4,5],[-3,3],[-3,3],[-3,2],[-3,3],[-5,2],[-3,2],[-3,1],[-2,1],[-3,3],[-2,4],[-4,3],[-1,2],[-4,2],[-4,1],[-3,2],[-3,3],[-1,2],[-2,3],[-2,4],[-2,3],[-4,3],[-2,1],[-4,2],[-5,3],[-6,4],[-1,1],[-3,1],[-6,4],[-6,3],[-3,3],[-2,2],[-1,1],[-2,1],[-3,1],[-4,2],[-2,1],[-2,2],[-2,1],[-2,2],[-2,3],[-3,6],[-2,2],[-2,2],[-2,2],[-3,2],[-3,1],[-2,0],[-4,1],[-2,0],[-4,2],[-2,2],[-3,2],[-2,2],[-4,4],[-3,2],[-4,2],[-2,1],[-3,1],[-3,2],[-6,5],[-2,1],[-3,1],[-3,1],[-3,0],[-4,1],[-7,2],[-4,0],[-3,0],[-3,0],[-4,0],[-3,1],[-4,0],[-4,0],[-1,0],[-1,0],[-4,0],[-5,0],[-3,0],[-4,0],[-2,0],[-2,0],[-3,0],[-3,-1],[-3,0],[-3,0],[-3,-2],[-4,1],[-3,-1],[-3,1],[-3,0],[-6,1],[-11,3],[-2,0],[-4,0],[-3,0],[-4,-1],[-2,0],[-1,-1],[-2,1],[-3,1],[-2,0],[-3,0],[-1,1],[-3,2],[-3,1],[-4,1],[-5,2],[-3,1],[-2,2],[-2,2],[-1,2],[-1,2],[0,2],[1,3],[1,5],[1,8],[1,2],[1,2],[1,2],[2,0],[3,1],[4,0],[2,1],[3,2],[1,1],[2,2],[3,4],[2,2],[3,5],[2,3],[3,5],[2,3],[0,3],[-1,1],[-2,1],[-3,0],[-4,1],[-4,1],[-7,1],[-3,1],[-6,2],[-2,2],[-1,3],[-3,1],[-3,1],[-3,0],[-3,0],[-7,2],[-4,2],[-3,1],[-3,2],[-1,2],[0,3],[0,3],[1,6],[1,5],[1,2],[2,1],[2,-1],[3,-2],[3,-2],[3,-1],[4,-1],[3,-2],[3,0],[4,-2],[3,0],[3,0],[3,0],[2,0],[2,1],[2,2],[3,2],[2,1],[1,2],[2,3],[2,2],[2,3],[2,3],[4,4],[2,3],[2,3],[1,3],[2,2],[2,2],[2,3],[2,2],[2,1],[1,2],[2,1],[1,3],[1,2],[-1,3],[-1,1],[-1,1],[-2,0],[-2,0],[-3,0],[-1,0],[-1,3],[0,2],[0,2],[1,2],[0,2],[0,2],[1,4],[1,2],[0,3],[1,4],[1,3],[2,4],[0,4],[0,2],[0,4],[-1,1],[-1,1],[-1,2],[-2,1],[-3,2],[-5,2],[-4,3],[-4,2],[-4,2],[-2,2],[-1,2],[-1,1],[-1,2],[-2,3],[-2,3],[-1,2],[0,1],[-2,4],[-2,1],[-1,3],[-2,3],[-1,2],[-2,2],[-3,5],[-2,3],[-3,4],[-2,4],[-3,3],[-3,3],[-3,2],[-3,1],[-3,3],[-3,3],[-3,3],[-1,4],[-2,2],[0,3],[-1,4],[-1,3],[-1,10],[0,3],[-1,5],[0,6],[1,10],[-1,4],[0,5],[-1,3],[-1,2],[-2,3],[-3,1],[-3,2],[-6,2],[-1,2],[-2,6],[-1,4],[-2,3],[-2,1],[-3,-1],[-12,-9],[-3,-1],[-4,-1],[-3,-1],[-6,0],[-6,0],[-21,2],[-3,1],[-1,2],[1,3],[3,3],[31,22],[1,2],[5,8],[1,4],[-1,8],[-6,12],[-5,6],[-12,7],[0,1],[2,14],[-2,2],[-3,1],[-6,-2],[-5,-1],[-8,0],[-11,1],[-13,-5],[-18,-14],[-9,-5],[-3,1],[-2,2],[-1,1],[0,5],[11,7],[1,2],[0,5],[-5,8],[-5,4],[-1,1],[-4,4]],[[882,5835],[-1,3],[0,7],[-1,6],[-1,14],[4,14],[-1,6],[-1,7],[6,7],[-1,7],[5,14],[4,36],[5,14],[10,20],[0,7],[10,20],[5,13],[0,6],[-7,7],[0,6],[-6,6],[-7,7],[-6,6],[-1,7],[-6,0],[6,6],[5,7],[6,0],[18,-7],[6,1],[12,0],[12,0],[12,1],[5,0],[6,0],[12,1],[11,7],[11,7],[5,7],[6,0],[6,-6],[6,0],[13,-12],[13,-6],[12,-5],[6,-6],[14,-13],[6,-6],[6,1],[6,0],[6,0],[24,8],[12,1],[6,0],[6,0],[7,-6],[6,1],[6,-7],[13,-5],[7,-7],[13,-5],[6,-7],[7,-6],[7,-6],[13,-12],[7,-13],[13,-6],[14,-12],[26,-12],[13,-6],[31,-5],[25,-12],[36,-4],[6,1],[12,0],[17,1],[6,1],[6,0],[6,0],[6,0],[5,7],[5,7],[17,7],[6,0],[23,7],[11,7],[12,0],[12,1],[6,0],[6,-6],[12,-7],[12,-6],[1,-6],[6,0],[5,0],[12,0],[5,7],[6,6],[-1,7],[0,6],[-1,13],[4,20],[5,7],[-1,13],[0,6],[-1,7],[-12,6],[-7,13],[-6,6],[-6,6],[-1,7],[5,6],[6,1],[6,6],[18,-6],[0,7],[24,1],[30,15],[13,0],[12,1],[1,-7],[6,0]],[[7154,4469],[17,-1],[24,-15],[6,0],[12,-7],[18,-8],[12,-7],[24,-21],[6,0],[24,-15],[24,-14],[12,-7],[17,-8],[18,-7],[12,-7],[24,-8],[36,-22],[12,-7],[36,-21],[42,-22],[36,-15],[30,-14],[54,-23],[6,-6],[12,-8],[18,-7],[24,-14],[24,-15],[6,0],[54,-22],[12,-14],[6,-7],[6,-7],[24,-40],[12,-21],[18,-27],[12,-27],[6,-13],[0,-7],[12,-13],[18,-21],[0,-6],[11,-21],[6,-13],[12,-27],[6,-20],[6,-7],[17,-27],[24,-27],[12,-21],[6,-7],[6,-7]],[[8026,3768],[-7,-6],[-13,-58],[0,-13],[-7,-25],[-1,-27],[-6,-19],[-1,-13],[-7,-40],[-7,-13],[-1,-20],[-7,-27],[0,-13],[-1,-20],[-2,-54],[-8,-40],[-15,-67],[0,-7],[-8,-27],[-7,-20],[0,-7],[-7,-13],[0,-7],[-14,-46],[0,-7],[-1,-14],[6,-7],[0,-6],[5,-7],[6,-7],[12,-7],[23,-15],[6,-7],[6,-7],[0,-6],[5,-7],[0,-14],[-1,-6],[0,-21],[-1,-6],[4,-41],[10,-48],[0,-13],[-1,-14],[10,-41],[-1,-13],[0,-7],[0,-7],[-1,-7],[0,-6],[0,-7],[-7,-13],[0,-7],[-7,-14],[-13,-19],[-7,-14],[0,-7],[-7,-6],[-6,-7],[-7,-13],[-6,-14],[-7,-13],[-7,-13],[-6,-14],[-1,-6],[11,-28],[5,-20],[-1,-7],[6,-7],[-1,-13],[-6,-7],[-1,-14],[0,-13],[5,-7],[0,-7],[6,-7],[5,-7],[0,-6],[0,-7],[11,-14],[6,-7],[-1,-7],[0,-7],[-6,-6],[-1,-7],[-6,-6],[-26,-27],[-6,-6],[-6,-7],[-6,0],[-19,-20],[-13,-13],[-24,-13],[-7,-6],[-18,-6],[-6,-7],[-19,-6],[-12,-7],[-24,-6],[-13,-13],[-18,0],[-12,-6],[-12,0],[-7,-6],[0,-7],[-6,-7],[-1,-6],[0,-7],[0,-7],[6,-7],[11,-7],[12,-7],[6,0],[17,-7],[6,-1],[12,-7],[6,-7],[5,-6],[6,-14],[5,-14],[0,-7],[5,-7],[-7,-26],[0,-7],[-1,-7],[-7,-20],[-12,-13],[-7,-13],[-19,-13],[-6,-7],[-19,-13],[-6,-7],[-7,-13],[6,-7],[-1,-27],[-1,-13],[0,-7],[5,-20],[-1,-21],[5,-13],[-1,-14],[-1,-27],[5,-20],[-1,-20],[-4,-61],[0,-14],[-1,-13],[-2,-34],[-7,-20],[0,-13],[-7,-13],[0,-7],[0,-7],[-7,-13],[-7,-13],[-7,-27],[-1,-20],[-6,-14],[-7,-26],[-8,-40],[-1,-34],[-1,-13],[-7,-27],[-1,-20],[0,-7],[0,-7],[-1,-7],[6,0],[0,-13],[5,-20],[-1,-14],[6,-13],[5,-7],[0,-7],[-1,-13],[0,-14],[0,-7],[-1,-13],[0,-14],[-1,-6],[0,-7],[0,-13],[-1,-14],[6,-7],[0,-7],[11,-7],[6,-6],[17,-14],[12,-7],[11,-7],[6,-14],[5,-7],[0,-7],[6,-6],[-1,-14],[0,-20],[-1,-13],[0,-14],[0,-20],[0,-6],[-12,-13],[-6,-7],[-6,0],[0,-6],[-6,-7],[0,-6],[6,-7],[11,-14],[6,-6],[12,-7],[6,-7],[-1,-7],[0,-6],[0,-7],[-5,0],[-18,-12],[-11,-6],[-6,-7],[-6,-13],[0,-13],[0,-6],[0,-13],[0,-7],[6,-7],[11,-7],[6,-6],[11,-14],[0,-7],[6,-6],[0,-7],[5,-7],[-5,-6],[-1,-4],[0,-3],[-11,-12],[-6,0],[0,-6],[-6,-7],[0,-3],[0,-3],[6,-14],[-6,-6],[0,-6],[-6,0],[-3,-11],[-3,-9],[0,-6],[0,-7],[0,-19],[6,-7],[-6,-13],[0,-6],[0,-13],[-12,-13],[0,-2],[0,-5],[0,-2],[0,-4]],[[5387,3216],[6,0],[18,13],[6,0],[0,7],[17,0],[12,0],[12,0],[18,0],[5,6],[6,7],[0,7],[-5,13],[0,13],[-6,7],[-6,14],[0,6],[1,20],[0,7],[0,20],[0,14],[0,20],[0,27],[0,27],[0,6],[13,34],[0,13],[6,27],[0,7],[0,7],[0,6],[-6,7],[0,7],[-12,7],[-12,6],[-11,7],[-6,7],[0,7],[-6,13],[0,7],[0,27],[-6,40],[0,7],[1,7],[-6,13],[0,7],[-6,13],[-6,14],[-12,13],[-23,34],[-6,14],[-6,6],[0,7],[0,7],[0,13],[6,14],[0,27],[6,7],[0,6],[0,7],[6,7],[0,7],[6,13],[6,0],[6,27],[6,7],[6,6],[18,21],[6,6],[6,7],[0,7],[6,7],[12,13],[12,7],[6,0],[6,0],[11,0],[18,-7],[6,0],[12,0],[6,0],[12,0],[18,6],[18,0],[36,7],[12,7],[48,13],[18,7],[6,0],[30,6],[24,0],[18,0],[24,-7],[41,-7],[18,-7],[12,0],[24,0],[12,0],[6,0],[31,7],[30,6],[24,11],[6,2],[6,0],[6,7],[12,7],[0,7],[7,27],[6,13],[1,14],[0,7],[0,20],[1,41],[6,20],[0,7],[1,27],[0,14],[1,34],[0,7],[0,21],[0,20],[-6,21],[1,13],[6,14],[0,7],[6,7],[7,6],[6,7],[12,7],[12,7],[13,6],[24,7],[56,20],[12,7],[18,14],[19,6],[25,14],[18,14],[31,20],[25,13],[12,14],[13,14],[6,14],[13,6],[19,21],[12,14],[13,6],[12,7],[12,7],[7,7],[6,0],[24,7],[7,6],[6,7],[6,0],[13,14],[0,7],[6,7],[-6,14],[13,0],[6,-1],[17,-1],[30,-8],[12,-1],[12,-8],[6,0],[6,0],[6,-7],[18,-8],[18,-14],[18,-8],[12,-1],[17,-7],[18,-8],[18,-8],[36,-21],[24,-8],[30,-15],[24,-8],[35,-22],[12,-7],[12,-14],[6,-1],[12,0],[12,-8],[12,-7],[24,-8],[24,-14],[24,-15],[17,-7],[30,-15],[12,-7],[24,-8],[6,-1],[24,-7],[6,-7]],[[1892,6311],[-7,0],[-12,6],[-7,0],[-6,0],[-13,-1],[-6,0],[-6,0],[0,-7],[-6,-7],[1,-14],[1,-33],[7,-13],[0,-13],[1,-7],[0,-7],[0,-6],[-12,-7],[-6,0],[-6,-1],[-13,0],[-13,-1],[-25,-1],[-6,0],[-6,0],[-12,-7],[-13,-7],[1,-7],[0,-6],[0,-7],[7,-13],[8,-19],[6,0],[0,-6],[1,-14],[-18,-14]],[[882,5835],[-11,10],[-1,1],[-8,7],[-14,17],[-11,18],[0,5],[-1,14],[-3,7],[-5,9],[-4,3],[-10,10],[-3,8],[-7,11],[-5,10],[0,3],[-18,26],[-4,9],[-2,4],[-9,20],[-4,5],[-5,2],[-1,-1],[-5,-2],[-7,-3],[-5,0],[-7,2],[-7,4],[-7,11],[-9,8],[-1,1],[3,3],[3,1],[8,3],[4,3],[4,11],[4,3],[7,3],[1,2],[0,12],[1,2],[2,2],[-1,12],[-2,2],[0,5],[3,5],[8,6],[1,4],[1,4],[3,6],[5,5],[10,3],[3,5],[3,2],[5,1],[7,6],[4,6],[0,3],[-1,7],[-7,15],[3,14],[5,10],[2,8],[4,14],[1,8],[0,14],[-3,15],[-7,17],[-8,12],[-6,3],[-10,0],[-4,-2],[-3,-3],[-6,-10],[-5,8],[-1,6],[-7,18],[-4,18],[-2,9],[-2,7],[-4,8],[-1,15],[7,5],[2,3],[3,-1],[5,-4],[7,0],[6,2],[3,2],[2,3],[4,8],[2,5],[3,15],[-1,11],[-6,13],[0,9],[2,8],[4,12],[2,1],[6,-1],[15,-18],[8,-6],[6,-2],[5,-1],[6,-1],[8,5],[2,0],[2,-2],[4,-1],[14,3],[10,-1],[8,-8],[7,-4],[7,2],[1,3],[-1,5],[-2,4],[3,12],[-3,7],[-5,17],[1,5],[0,6],[-3,10],[-2,8],[-3,8],[-4,1],[0,1],[-2,11],[-1,2],[-9,11],[-7,5],[-1,3],[0,5],[6,9],[0,9],[1,2],[11,11],[0,1],[1,2],[-6,13],[-1,10],[2,2],[16,12],[2,0],[1,1],[1,0],[2,0],[9,-2],[3,1],[4,2],[7,6],[0,2],[2,2],[2,8],[0,9],[-3,17],[0,4],[4,5],[6,-1],[20,-10],[7,1],[2,0],[2,2],[2,2],[4,16],[9,14],[2,6],[0,3],[-5,12],[1,7],[-3,7],[-1,2],[0,4],[-1,3],[-1,14],[1,3],[4,3],[7,2],[11,1],[1,0],[0,1],[-2,16],[2,6],[3,2],[3,1],[8,-1],[3,-3],[3,-2],[9,-6],[4,-1],[4,0],[6,4],[2,-5],[3,-1],[2,-6],[2,-2],[2,-1],[3,1],[3,-1],[4,1],[0,-4],[1,-1],[1,-4],[4,1],[2,7],[1,1],[3,1],[1,3],[-5,0],[-1,3],[3,14],[7,4],[5,0],[2,-6],[8,-3],[5,1],[3,4],[7,2],[9,1],[4,5],[3,4],[8,8],[-1,2],[-3,1],[-4,3],[-4,1],[-4,2],[-1,1],[-1,1],[0,3],[1,2],[1,3],[0,3],[0,2],[0,2],[-1,3],[0,3],[0,2],[0,2],[2,3],[2,2],[3,2],[3,1],[3,2],[3,1],[2,2],[2,2],[2,2],[2,3],[1,2],[-1,2],[-1,2],[-2,2],[-1,1],[0,2],[0,1],[-1,1],[-1,2],[-1,2],[-3,2],[-3,1],[-2,1],[-4,0],[-2,-1],[-3,0],[-2,1],[-1,1],[-4,2],[-4,0],[-3,-1],[-1,1],[0,2],[1,2],[0,2],[-1,0],[-1,0],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-1,2],[0,2],[1,2],[1,2],[1,3],[2,2],[2,2],[2,2],[2,2],[3,2],[2,2],[1,3],[1,1],[1,3],[3,2],[0,1]],[[1092,6942],[12,-8],[6,-7],[7,-6],[6,-7],[7,-6],[38,-25],[7,-6],[14,-20],[26,-25],[13,-20],[7,-13],[13,-12],[7,-7],[7,-13],[14,-26],[13,-20],[14,-27],[13,-26],[1,-7],[6,0],[6,-6],[5,7],[6,0],[6,1],[6,0],[1,-7],[6,-6],[-5,-8],[0,-6],[-5,-8],[-5,-14],[1,-13],[0,-7],[6,-7],[1,-6],[6,0],[6,-7],[6,1],[6,0],[6,0],[5,7],[6,1],[5,7],[0,7],[6,0],[6,-7],[6,-6],[7,-7],[6,-6],[6,0],[6,0],[6,8],[6,0],[6,0],[12,1],[7,0],[6,1],[6,0],[6,1],[6,7],[0,7],[-7,6],[0,7],[-6,7],[5,7],[6,7],[7,1],[6,0],[13,1],[6,0],[6,0],[6,8],[6,7],[-6,6],[-1,7],[-6,7],[-1,7],[0,6],[6,8],[6,0],[7,0],[6,-6],[7,0],[6,0],[6,7],[6,8],[0,7],[-7,13],[-1,7],[0,7],[6,7],[7,0],[6,1],[7,0],[6,-7],[7,1],[7,-7],[6,-6],[7,0],[13,7],[6,1],[7,0],[0,7],[6,7],[0,7],[-7,14],[0,6],[0,14],[6,0],[0,7],[6,8],[7,0],[6,0],[20,1],[26,-6],[6,1],[13,0],[7,0],[6,8],[0,6],[6,8],[0,6],[-6,7],[-1,7],[-6,13],[-7,7],[0,7],[0,7],[-1,7],[7,0],[6,0],[7,0],[6,-6],[7,-14],[7,-6],[6,-7],[14,-6],[6,-7],[20,1],[6,0],[6,0],[7,-6],[7,-7],[0,-7],[13,-20],[0,-7],[7,-6],[7,-7],[6,-7],[7,-6],[0,-7],[13,-7],[20,-26],[6,0],[7,-7],[6,0],[7,1],[12,7]],[[2514,3368],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[2613,3428],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1]],[[2632,3440],[0,-1],[0,-1],[-1,0],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[2,0],[0,1],[1,0],[0,1],[0,1],[1,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0]],[[2573,3449],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1]],[[2636,3460],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0]],[[2631,3467],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[2690,3467],[0,-1]],[[2690,3466],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[2688,3460],[0,-1]],[[2688,3459],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0]],[[2691,3468],[-1,0],[0,-1]],[[2690,3467],[1,0],[0,1]],[[2691,3468],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0]],[[2690,3477],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1]],[[2652,3478],[1,0],[0,-1],[0,-1],[0,-1],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,0]],[[2646,3486],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0]],[[2653,3486],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,1],[0,-1],[-3,0],[0,1],[-1,-1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0]],[[2578,3490],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1]],[[2585,3496],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2573,3496],[0,-2],[1,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,0]],[[2690,3477],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-2],[0,-1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,-3],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,3],[0,2],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[2673,3495],[1,0]],[[2674,3495],[1,0],[0,1]],[[2675,3496],[1,0],[2,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2681,3499],[1,0],[0,1]],[[2682,3500],[1,0],[0,1]],[[2683,3501],[0,1]],[[2683,3502],[1,0],[1,0],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-3],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1]],[[2609,3503],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,0],[0,-2],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[2,0],[1,0],[0,1]],[[2683,3501],[-1,0],[0,-1]],[[2682,3500],[-1,0],[0,-1]],[[2675,3496],[-1,0],[0,-1]],[[2673,3495],[0,1],[-1,0],[0,1],[-1,0],[0,2],[0,2],[0,1]],[[2671,3502],[1,0],[0,1],[0,1]],[[2672,3504],[1,0],[0,1]],[[2673,3505],[1,0],[0,1]],[[2674,3506],[1,0]],[[2675,3506],[1,0],[1,0],[0,1]],[[2677,3507],[1,0],[1,0],[1,0],[0,1],[0,1]],[[2680,3509],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1]],[[2684,3516],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1]],[[2609,3503],[-2,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,3],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[4,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[1,0],[0,-2],[0,-1],[0,-1]],[[2517,3538],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0]],[[2560,3538],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[0,-3],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0]],[[2552,3539],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1]],[[2558,3539],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,3],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[1,0],[0,1],[0,1],[1,0]],[[2560,3541],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[2511,3542],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0]],[[2553,3549],[0,-1],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[2504,3557],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1]],[[2565,3562],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0]],[[2558,3569],[0,-1],[0,-2],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,2]],[[2540,3575],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,2],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[-1,0],[0,2],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,2],[-1,0],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-2],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1]],[[2542,3584],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[2548,3584],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,4],[0,1],[1,0]],[[2561,3590],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,2],[0,5],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,3],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0]],[[2682,3593],[-1,0],[0,-1],[0,2],[0,1]],[[2681,3595],[1,0]],[[2682,3595],[0,-1],[0,-1]],[[2551,3596],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[1,0]],[[2547,3597],[0,-1],[1,1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1]],[[2534,3599],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-3],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-3],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,3],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,2],[1,0],[0,1],[0,1],[-1,0],[0,2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[2,0],[4,0]],[[2667,3598],[0,-1],[-1,0]],[[2666,3597],[0,1],[-1,0]],[[2665,3598],[0,1],[-1,0]],[[2664,3599],[0,1],[0,-1]],[[2664,3599],[0,1],[1,0]],[[2665,3600],[0,-1],[1,0],[0,-1],[1,0]],[[2681,3595],[-1,0]],[[2680,3595],[0,1],[0,1],[0,2]],[[2680,3599],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2608,3613],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0]],[[2610,3601],[0,1],[-1,0]],[[2609,3602],[0,1],[0,1],[-1,0],[-1,0]],[[2607,3604],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,1],[-1,-1],[0,1],[-1,0]],[[2603,3607],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,0]],[[2670,3612],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0]],[[2666,3618],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[0,1],[1,0]],[[2603,3607],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[1,0],[0,-1],[1,0],[1,0]],[[2607,3604],[0,-1],[1,0],[0,-1],[1,0]],[[2609,3602],[0,-1],[1,0]],[[2610,3601],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[2615,3592],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1]],[[2621,3593],[1,0],[1,0],[0,1],[1,0],[0,1]],[[2624,3595],[1,0],[0,1]],[[2625,3596],[1,0],[0,1]],[[2626,3597],[1,-1],[0,1]],[[2627,3597],[2,0]],[[2629,3597],[1,0],[1,0],[1,0],[1,0]],[[2633,3597],[0,-1],[0,1]],[[2633,3597],[1,0]],[[2634,3597],[2,0],[0,-1],[2,0],[1,0],[0,1]],[[2639,3597],[1,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2641,3599],[1,0],[1,0],[0,1],[0,1]],[[2643,3601],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2643,3606],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0]],[[2642,3607],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1]],[[2637,3607],[-1,0]],[[2636,3607],[0,1],[-1,0]],[[2635,3608],[0,1],[0,4],[0,1],[0,1]],[[2635,3615],[1,0],[0,1],[0,1]],[[2636,3617],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[2,0],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,0],[1,0]],[[2664,3599],[0,-1],[1,0]],[[2665,3598],[0,-1],[1,0]],[[2666,3597],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2667,3597],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[2667,3598],[0,1],[0,1],[-1,0],[-1,0]],[[2665,3600],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,2],[1,0],[-1,0],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,0]],[[2670,3612],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,3],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2680,3599],[0,-1],[-1,0],[1,0],[0,-1]],[[2680,3597],[-1,0],[0,-1],[1,0]],[[2680,3596],[0,-1]],[[2680,3595],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1]],[[2680,3587],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[1,0]],[[2681,3583],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,0]],[[2683,3578],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[1,0]],[[2684,3576],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,0]],[[2687,3570],[0,-1],[0,-1],[1,0]],[[2688,3568],[0,-1],[0,-1],[0,-1],[1,0]],[[2689,3565],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0]],[[2691,3562],[0,-2],[0,-1],[0,-1],[0,-1],[1,0]],[[2692,3557],[0,-2],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0]],[[2694,3553],[0,-1],[1,0]],[[2695,3552],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0]],[[2697,3543],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[2700,3539],[0,-1]],[[2700,3538],[-1,0],[0,-1],[0,-1]],[[2699,3536],[-1,0],[0,-1],[0,-1]],[[2698,3534],[0,-1],[-1,0],[-2,0],[-2,0]],[[2693,3533],[-1,0],[0,-1]],[[2692,3532],[-1,0],[0,-1]],[[2691,3531],[0,-1]],[[2691,3530],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1]],[[2684,3516],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1]],[[2680,3509],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1]],[[2677,3507],[-1,0],[-1,0],[0,-1]],[[2674,3506],[-1,0],[0,-1]],[[2673,3505],[-1,0],[0,-1]],[[2672,3504],[-1,0],[0,-1],[0,-1]],[[2671,3502],[-1,0],[0,-1],[0,-3],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[0,-1],[1,0],[0,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-3],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-2,0],[0,2],[-1,0],[0,1],[0,2],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-3],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,2],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,3],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0]],[[2534,3626],[1,0],[1,0]],[[2536,3626],[2,0],[1,0]],[[2539,3626],[2,0],[1,0]],[[2542,3626],[1,0],[0,1]],[[2543,3627],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0]],[[2543,3627],[-1,0],[0,-1]],[[2542,3626],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0]],[[2534,3626],[0,1],[-1,0],[0,1],[1,0],[1,0],[2,0],[5,0],[1,0],[0,-1]],[[2568,3631],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[2689,3632],[0,-1],[1,0],[0,-1],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[2636,3617],[-1,0],[0,-1],[0,-1]],[[2635,3615],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2635,3608],[-1,0],[1,0]],[[2635,3608],[0,-1],[0,-1],[1,0],[0,1]],[[2637,3607],[3,0],[0,-1],[2,0],[0,1]],[[2642,3607],[0,-1],[1,0]],[[2643,3606],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2643,3601],[-1,0],[0,-1],[-1,0],[0,-1]],[[2641,3599],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1]],[[2639,3597],[-1,0],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0]],[[2633,3597],[0,1],[-1,0],[-1,0],[-2,0],[0,-1]],[[2629,3597],[-2,0],[-1,0]],[[2626,3597],[-1,0],[0,-1]],[[2625,3596],[0,1],[0,-1]],[[2625,3596],[-1,0],[0,-1]],[[2624,3595],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1]],[[2621,3593],[-1,0],[1,0]],[[2621,3593],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0]],[[2615,3592],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,-1],[-3,0],[0,1],[-1,0],[-1,0]],[[2608,3613],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[1,0],[1,0],[2,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-2]],[[2697,3636],[1,0],[0,-1],[-1,0],[0,1]],[[2620,3638],[0,1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0]],[[2620,3638],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[2699,3641],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,-1],[0,1],[2,0],[2,0],[1,0],[1,0],[1,0],[0,1],[0,-1],[0,1],[1,0]],[[2651,3648],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,2],[0,1],[1,0],[0,1],[1,0],[0,1]],[[2679,3646],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1]],[[2683,3648],[1,0],[0,1]],[[2684,3649],[0,1],[0,1]],[[2684,3651],[1,0],[0,1],[0,1],[-1,0]],[[2684,3653],[0,1],[0,1]],[[2684,3655],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1]],[[2684,3653],[0,-1],[0,-1]],[[2684,3649],[-1,0],[0,-1]],[[2683,3648],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1]],[[2679,3646],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,2],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[2654,3693],[0,-1],[-1,0],[0,1],[0,1]],[[2653,3694],[0,-1],[1,0]],[[2625,3669],[0,1],[0,1],[0,1],[-1,0],[0,2]],[[2624,3674],[0,1],[0,2],[0,1]],[[2624,3678],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0]],[[2624,3682],[0,1]],[[2624,3683],[0,1],[-1,0]],[[2623,3684],[0,1],[0,1]],[[2623,3686],[1,0],[2,0],[0,1]],[[2626,3687],[1,0],[0,1]],[[2627,3688],[1,0],[0,1],[0,1],[1,0],[0,1]],[[2629,3691],[1,0],[0,1],[0,1],[0,1]],[[2630,3694],[1,0]],[[2631,3694],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[2621,3694],[0,-1],[0,1]],[[2621,3694],[0,-1],[1,0]],[[2622,3693],[1,0]],[[2623,3693],[0,-1],[1,0],[1,0]],[[2625,3692],[1,0]],[[2626,3692],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[2627,3688],[-1,0],[0,-1]],[[2626,3687],[-2,0],[-1,0],[0,-1]],[[2623,3686],[-1,0],[0,-1],[1,-1]],[[2623,3684],[0,-1],[1,0]],[[2624,3682],[0,-1],[0,-1],[0,-1],[0,-1]],[[2624,3678],[0,-1]],[[2624,3677],[0,-1],[-1,0],[0,-1],[1,0]],[[2624,3675],[0,-1]],[[2624,3674],[-1,0],[0,-1]],[[2623,3673],[0,1],[-1,0]],[[2622,3674],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[1,0]],[[3222,4367],[-6,-7],[-11,-27],[-16,-27],[-6,-14],[-5,-14],[-6,-7],[-11,-7],[-6,0],[-12,-1],[-30,-8],[-11,-7],[-12,-15],[-17,-7],[-17,-21],[-6,-1],[0,-6],[-6,-7],[1,-7],[0,-7],[0,-6],[1,-21],[1,-33],[1,-13],[6,-13],[0,-14],[13,-13],[0,-6],[0,-7],[7,-20],[0,-13],[-5,-7],[0,-14],[-5,-27],[-6,-7],[1,-7],[0,-6],[6,-7],[6,-6],[6,-6],[6,0],[18,1],[6,7],[17,14],[11,8],[12,7],[6,0],[6,1],[0,-7],[6,-7],[0,-6],[7,-20],[0,-14],[13,-13],[12,-12],[6,-7],[6,0],[24,-12],[6,-6],[30,-13],[6,-6],[6,0],[6,-6],[6,-7],[6,-6],[0,-7],[6,-7],[0,-6],[0,-7],[0,-7],[-5,-14],[0,-6],[0,-7],[-5,-14],[-12,-7],[-6,-7],[-11,-14],[0,-7],[0,-6],[0,-7],[0,-7],[0,-7],[6,-6],[0,-7],[24,-19],[1,-7],[6,-6],[0,-7],[0,-27],[1,-34],[0,-13],[1,-33],[0,-13],[6,-13]],[[3110,3495],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,3],[0,1],[0,4],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,2],[0,4],[0,9],[0,3],[0,1],[0,4],[0,1],[0,2],[0,3],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-2,0],[-2,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[2,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-4,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[0,-1],[-2,0],[-4,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0]],[[2688,3460],[1,0],[0,-1],[2,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,2],[1,0],[0,1],[0,2],[-1,0],[0,2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,2],[0,3],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2691,3531],[1,0],[0,1]],[[2692,3532],[1,0],[0,1]],[[2693,3533],[2,0]],[[2695,3533],[0,-1],[1,0],[1,0],[0,1]],[[2697,3533],[1,0],[0,1]],[[2698,3534],[1,0],[0,1],[0,1]],[[2699,3536],[1,0],[0,1],[0,1]],[[2700,3538],[1,0],[0,1],[-1,0]],[[2700,3539],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0]],[[2697,3543],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0]],[[2695,3552],[0,1],[-1,0]],[[2694,3553],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1]],[[2692,3557],[1,0],[-1,0]],[[2692,3557],[0,1],[0,1],[0,1],[0,2],[-1,0]],[[2691,3562],[0,1],[0,1],[-1,0],[0,1],[-1,0]],[[2689,3565],[0,1],[0,1],[0,1],[-1,0]],[[2688,3568],[0,1],[0,1],[-1,0]],[[2687,3570],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0]],[[2684,3576],[0,1],[0,1],[-1,0]],[[2683,3578],[1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0]],[[2681,3583],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2680,3587],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2682,3593],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[2,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[-1,0],[0,2],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,2],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[2,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-2,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[0,1],[-1,-1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[2,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,2],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,2],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,2]],[[2654,3693],[0,1],[0,1],[-1,0],[0,-1]],[[2653,3694],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1]],[[2630,3694],[-1,0],[0,-1],[0,-1],[0,-1]],[[2629,3691],[-1,0],[-1,0],[0,1],[-1,0]],[[2625,3692],[0,1],[-1,0],[-1,0]],[[2622,3693],[0,1],[-1,0]],[[2621,3694],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[2622,3674],[0,-1],[1,0]],[[2623,3673],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[2625,3669],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[-1,0],[0,1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-3,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,-1],[0,4],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[-1,0],[0,2],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,2],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-2,0],[-4,0],[-5,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,3],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[3,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0],[5,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-3],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[5,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-3,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[2,0],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[2,0],[1,0],[2,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0]],[[2568,3631],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-7,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-2,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[1,0],[-1,0],[0,-2],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-3],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-2],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-6],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,0],[0,-2],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[1,0],[0,-2],[-1,0],[0,-2],[0,-2],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-3,0],[-5,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-6,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-2,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,2],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-5],[0,-4],[0,-2],[1,0],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-3],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-2],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[-2,0],[-2,2],[-5,9],[-12,17],[-15,17],[-10,8],[-14,11],[-1,2],[-4,6],[-2,18],[-1,6],[0,4],[-1,13],[-6,14],[-7,7],[-2,2],[-9,8],[-6,9],[2,6],[1,2],[5,8],[2,4],[6,8],[0,4],[-1,9],[-2,7],[-5,8],[-18,22],[-1,0],[-15,24],[-8,13],[-18,20],[-8,7],[-6,1],[-7,-3],[-5,-7],[-1,0],[-3,-3],[-6,0],[-5,2],[-3,4],[-2,10],[-5,17],[-1,11],[-3,17],[-3,9],[-14,14],[-14,6],[-14,1],[-2,4],[-6,0],[-17,12],[-2,4],[-2,33],[0,18],[0,85],[-1,74],[0,12],[0,58],[0,28],[0,39],[-16,0],[-25,0],[-66,0],[-10,0],[-48,0],[-6,0],[0,24],[-1,85],[0,55],[0,2],[0,29],[0,17],[-1,64],[2,4],[11,33],[10,30],[5,17],[27,81],[21,61],[6,19],[4,13],[0,9],[-11,11],[-12,12],[-1,0],[-7,10],[-3,8],[0,6],[0,1],[3,12],[-15,15],[-10,6],[-6,5],[-4,7],[-1,14],[0,3],[-1,4],[-1,3],[-11,16],[-1,7],[-14,23],[-2,1],[-3,2],[-2,1],[-1,1],[-3,2],[-2,3],[-1,2],[-1,4],[0,2],[0,4],[0,4],[0,3],[0,3],[-1,2],[-1,1],[-3,2],[-3,2],[-2,2],[-2,3],[-5,5],[-3,2],[-1,2],[-2,2]],[[1998,5124],[5,6],[0,7],[5,7],[6,0],[16,20],[6,0],[-1,7],[5,13],[0,7],[4,27],[10,27],[0,7],[5,14],[-1,6],[6,7],[16,35],[6,14],[5,14],[-1,13],[0,7],[5,14],[6,7],[-1,7],[6,7],[6,0],[13,1],[43,9],[19,-6],[31,2],[12,1],[13,1],[12,1],[6,0],[18,8],[19,8],[5,7],[19,1],[25,-5],[13,1],[12,1],[6,0],[7,-6],[6,0],[13,-12],[1,-7],[6,-6],[7,-13],[7,-7],[7,-6],[6,-6],[7,0],[18,8],[6,0],[6,1],[13,-6],[13,-6],[6,0],[12,1],[7,0],[12,1],[12,1],[7,0],[6,1],[6,0],[7,-13],[13,-6],[6,-6],[7,-7],[13,-12],[20,-13],[27,-31],[6,-7],[13,-12],[19,-6],[13,-6],[6,0],[19,1],[6,1],[12,7],[30,8],[12,8],[7,-6]],[[1092,6942],[2,1],[0,2],[-1,3],[0,2],[-1,3],[-1,2],[-1,2],[-1,2],[-1,3],[-1,2],[-1,2],[-3,3],[-1,2],[-2,1],[0,3],[0,2],[1,2],[-1,3],[-1,2],[-4,2],[-3,1],[-4,0],[-4,0],[-1,1],[-1,3],[-1,1],[-1,2],[-1,2],[-3,2],[-2,0],[-3,2],[-2,2],[0,1],[-2,2],[0,2],[-1,2],[-2,2],[-3,2],[-2,1],[-1,2],[-1,2],[0,2],[-1,2],[-1,2],[-1,2],[-2,3],[0,2],[-2,3],[-1,4],[-1,4],[-2,2],[-2,3],[-2,4],[-2,3],[-2,2],[-5,21],[0,2],[-6,14],[2,6],[3,3],[1,1],[4,1],[2,1],[0,3],[0,2],[-2,2],[-4,12],[0,1],[-2,4],[-3,3],[-4,6],[-3,5],[1,2],[4,0],[7,-2],[3,-3],[2,0],[2,0],[1,1],[1,2],[0,1],[-1,1],[0,1],[-3,3],[-1,2],[0,2],[1,2],[1,2],[0,3],[0,2],[0,3],[1,3],[0,3],[0,2],[-1,2],[0,3],[-1,2],[-2,1],[-2,2],[-1,1],[0,1],[0,1],[1,2],[1,1],[1,2],[1,3],[0,3],[0,3],[0,3],[0,3],[1,3],[1,2],[0,3],[2,1],[2,1],[2,2],[3,2],[2,1],[3,2],[3,2],[1,1],[2,1],[2,0],[2,0],[2,-2],[2,-1],[4,-2],[3,-2],[3,-2],[2,0],[2,0],[2,0],[2,0],[2,0],[2,1],[1,1],[3,1],[4,1],[3,1],[2,1],[2,0],[3,-1],[1,-1],[2,-1],[3,-1],[2,0],[3,2],[2,2],[2,2],[2,5],[2,4],[1,1],[4,0],[1,1],[2,2],[2,2],[1,1],[3,0],[3,-1],[2,-1],[3,-1],[2,-1],[3,-1],[2,-1],[2,1],[2,1],[1,2],[2,1],[2,2],[3,1],[1,0],[3,1],[3,1],[2,2],[2,1],[1,2],[0,1],[0,2],[0,3],[0,1],[1,1],[2,0],[2,0],[3,1],[2,1],[0,1],[0,1],[1,2],[0,2],[1,1],[2,-1],[3,1],[2,0],[2,1],[1,1],[1,1],[2,2],[1,1],[1,2],[0,2],[2,2],[1,2],[1,1],[1,2],[1,2],[2,2],[0,1],[0,2],[0,1],[0,2],[0,3],[0,5],[-1,2],[-1,3],[-1,1],[-2,2],[-2,0],[-2,1],[-3,0],[-3,1],[-4,1],[-3,1],[-2,1],[-3,2],[-1,0],[-2,0],[-2,-2],[-2,-2],[-2,-2],[-1,-2],[-3,-3],[-2,-2],[-3,-1],[-2,0],[-3,-1],[-4,1],[-2,0],[-2,0],[-2,0],[-2,0],[-1,-1],[-1,-2],[-5,-6],[-3,-1],[-2,1],[-2,1],[-2,0],[-2,0],[-2,0],[-2,-1],[-7,0],[-3,1],[-2,1],[-2,0],[-2,1],[-2,2],[-1,2],[-2,2],[-1,1],[-1,3],[-3,6],[-1,2],[0,2],[1,1],[1,2],[2,2],[0,2],[0,2],[-2,0],[-2,0],[-1,-1],[-3,0],[-2,0],[-4,-1],[-1,1],[-3,4],[-4,5],[-4,3],[-1,0],[-2,-1],[-2,0],[-2,-1],[-3,-2],[-2,-1],[-3,-1],[-3,0],[-3,-1],[-2,0],[-1,-1],[-1,-2],[-2,-2],[-2,-2],[-2,-3],[-4,-2],[-3,0],[-3,-1],[-5,1],[-2,3],[-8,2],[-5,1],[-6,1],[-3,-2],[-1,0],[-2,-5],[-6,-6],[-17,9],[-6,1],[-5,-1],[-3,-4],[-2,-4],[-3,-8],[-11,2],[-9,-2],[-4,-1],[-5,1],[-9,6],[-4,-3],[-5,-4],[-4,-6],[-5,-2],[-1,0],[-2,2],[-15,28],[-1,3],[-7,16],[-6,8],[-3,6],[-12,8],[-2,7],[-4,6],[-8,8],[-2,5],[1,4],[-7,7],[-13,2],[-2,3],[0,8],[-2,2],[-10,1],[-2,1],[-7,10],[-2,1],[-5,1],[-6,-2],[-3,-2],[-6,2],[-5,2],[-4,3]],[[754,7437],[5,2],[16,7],[5,7],[6,1],[5,7],[5,7],[-1,7],[-1,7],[0,6],[-1,7],[-1,7],[6,0],[17,2],[6,1],[0,7],[10,14],[-1,7],[6,1],[-1,13],[-7,7],[0,6],[-1,7],[6,1],[6,0],[6,1],[6,1],[5,7],[-1,7],[0,7],[-7,6],[0,7],[5,0],[6,1],[6,0],[17,8],[6,1],[11,0],[6,0],[6,0],[6,1],[35,-6],[11,0],[5,6],[6,1],[5,6],[6,7],[0,7],[-1,6],[0,7],[-8,19],[-1,13],[0,6],[-1,7],[6,7],[6,7],[-1,6],[6,7],[12,8],[12,8],[19,8],[6,1],[13,1],[20,2],[7,0],[7,-6],[14,-5],[7,-6],[14,-12],[7,-6],[7,1],[7,-6],[6,0],[33,16],[7,1],[6,0],[14,-5],[13,1],[7,0],[6,1],[14,1],[33,-4],[20,2],[26,2],[13,1],[20,8],[13,1],[13,7],[6,1],[13,1],[13,8],[6,0],[7,-6],[7,0],[0,-6],[7,-6],[1,-7],[0,-7],[7,1],[0,-7],[14,-6],[7,-6],[0,-7],[7,-6],[7,-6],[6,0],[7,-6],[19,8],[7,-6],[13,1],[14,-6],[13,-6],[7,-6],[6,0],[7,1],[6,0],[13,1],[26,8],[6,1],[7,0],[6,0],[7,1],[6,0],[0,7],[-1,13],[0,7],[-1,7],[0,7],[6,7],[6,0],[6,7],[0,7],[-7,7],[-7,6],[6,7],[0,7],[6,7],[12,8],[7,0],[6,0]],[[1704,7777],[7,-13],[7,-6],[1,-7],[7,-6],[6,0],[13,1],[32,9],[13,1],[6,0],[13,-6],[7,-6],[7,-7],[7,-6],[6,0],[27,-5],[12,1],[7,0],[46,-11],[45,-4],[7,-7],[6,0],[7,-6],[1,-14],[6,0],[1,-6],[0,-7],[6,0],[1,-7],[0,-7],[0,-7],[7,-13],[-6,0],[0,-7],[7,-14],[1,-7],[0,-7],[0,-6],[7,-7],[7,-14],[1,-6],[0,-7],[0,-7],[7,-7],[0,-7],[1,-7],[0,-7],[1,-13],[-6,-7],[0,-7],[-6,-14],[1,-14],[0,-14],[1,-7],[0,-7],[0,-7],[1,-7],[-7,-7],[-6,-7],[-6,-7],[-12,-8],[0,-6],[-12,-8],[0,-7],[0,-7],[0,-6],[7,-7],[0,-7],[7,0],[13,-6],[20,-13],[19,-13],[13,-7],[40,-26],[32,-20],[7,-6],[0,-7],[7,0],[6,-7],[1,-7],[0,-6],[7,-14]],[[2554,6066],[-6,-7],[-6,0],[-6,-13],[0,-7],[7,-6],[0,-7],[7,-6],[0,-6],[6,-6],[-6,-7],[1,-13],[-6,-7],[-6,-14],[-6,-13],[0,-7],[-6,-7],[0,-13],[-6,-13],[1,-7],[0,-13],[0,-6],[7,0],[12,7],[6,1],[7,0],[0,-20],[7,-6],[6,1],[6,0],[13,1],[6,0],[6,0],[7,-6],[6,-6],[7,0],[6,1],[12,7],[6,0],[7,-6],[6,-6],[7,0],[6,1],[6,0],[0,7],[12,7],[6,7],[6,7],[7,0],[6,0],[6,7],[0,13],[-1,7],[6,7],[0,6],[6,7],[0,7],[0,6],[-1,14],[0,6],[6,7],[7,0],[12,1],[6,0],[13,-5],[6,0],[7,0],[-1,7],[6,13],[6,7],[6,1],[7,6],[6,1],[6,0],[13,-6],[6,-6],[7,-13],[6,-6],[7,-13],[7,-13],[6,-6],[0,-6],[7,-13],[-6,-7],[0,-13],[-12,-21],[1,-6],[0,-7],[0,-6],[13,-13],[6,-6],[0,-7],[7,1],[6,-7],[6,1],[19,-6],[7,-6],[12,-6],[1,-13],[0,-7],[6,-6],[7,-7],[6,1],[6,0],[6,7],[0,13],[-1,7],[6,13],[6,20],[6,7],[6,1],[6,7],[6,0],[7,-6],[0,-7],[0,-7],[1,-19],[6,0],[12,1],[6,0],[6,0],[1,-6],[6,-13],[0,-7],[1,-13],[-6,-14],[0,-6],[7,-7],[6,1],[6,0],[6,7],[6,0],[0,-7],[7,-12],[6,-7]],[[3496,6902],[-18,-22],[-12,-21],[1,-27],[-6,-34],[-5,-21],[1,-34],[-5,-34],[1,-34],[-7,6],[-12,13],[-30,-22],[-25,-8],[-24,-1],[-25,6],[-24,-22],[-24,-15],[-12,-7],[-25,-2],[-25,-1],[-25,12],[-18,6],[-12,-35],[-5,-34],[7,-13],[12,-13],[7,-20],[-18,-1],[-25,-8],[-37,-16],[1,-14],[0,-13],[13,-13],[12,-13],[1,-20],[12,-6],[19,-6],[13,-13],[6,-6],[19,1],[18,8],[13,-34],[19,-5],[-6,-35],[0,-13],[1,-34],[6,0],[82,-77],[6,0],[18,15],[6,0],[12,14],[18,7],[19,8],[12,-6],[7,-20],[18,-19],[19,-13],[12,7],[6,0],[7,-13],[12,-6],[13,-13],[18,-12],[25,-6],[61,-4]],[[2798,7050],[6,8],[13,0],[6,1],[12,0],[13,-6],[31,-5],[7,0],[6,1],[0,7],[5,20],[6,21],[0,7],[6,0],[13,1],[6,7],[18,1],[7,0],[6,1],[12,7],[6,1],[25,8],[6,7],[6,0],[19,8],[18,8],[6,7],[7,1],[12,1],[13,0],[6,1],[12,1],[6,7],[13,0],[18,15],[18,8],[25,15],[6,1],[6,0],[6,0],[7,1],[12,-6],[12,1]],[[3236,7206],[7,-7],[6,-6],[12,1],[19,1],[18,-6],[43,10],[13,-6],[12,-13],[6,0],[7,-13],[12,-13],[0,-7],[7,-6],[6,0],[6,1],[0,6],[6,8],[-7,6],[0,7],[-12,13],[-7,13],[-6,6],[0,7],[6,7],[6,0],[6,1],[6,0],[18,1],[6,1],[7,0],[0,-7],[6,-6],[6,0],[0,-7],[1,-27],[-6,-20],[1,-7],[-6,-14],[6,-7],[6,-6],[6,7],[0,14],[6,0],[12,1],[6,7],[6,0],[0,7],[-7,20],[0,7],[6,7],[6,0],[6,0],[7,-6],[6,-27],[7,-13],[6,-7],[6,-6],[7,-20],[6,-7],[1,-13],[0,-7],[0,-7],[0,-13],[-6,-7],[1,-7],[-6,-21],[0,-7],[-5,-14],[-6,-14],[0,-6],[-6,-7],[-6,-21],[-5,-28],[-6,-7],[-5,-20]],[[4981,8014],[1,-5],[-1,-1],[-7,1],[-5,4],[-3,0],[-1,-2],[-3,1],[-2,0],[-1,3],[2,2],[3,0],[9,-2],[8,-1]],[[5226,7762],[-6,0],[-7,0],[-27,-14],[-27,-7],[-21,-14],[-7,-7],[-7,-7],[-7,-7],[-14,-6],[-1,-7],[-6,-7],[-1,-7],[-14,-14],[0,-7],[-1,-6],[-6,-7],[-1,-7],[-7,-14],[0,-7],[0,-7],[-1,-6],[0,-7],[-7,-14],[0,-7],[0,-7],[-1,-6],[0,-7],[-7,-21],[0,-7],[-13,-7],[-13,-7],[-6,-7],[-7,-6],[-6,-7],[-7,-7],[-12,-14],[-7,0],[-6,-7],[0,-7],[-13,-27],[0,-7],[-6,0],[-6,-14],[-6,-14],[-13,-7],[-6,0],[-13,-7],[-18,-14],[-7,0],[-12,-7],[-12,0],[-19,-7],[-12,0],[-13,0],[0,6],[-6,0],[-13,7],[-6,0],[-6,-7],[-18,-14],[-6,-7],[-7,0],[-6,-7],[-12,0],[-6,-7],[-13,6],[-6,-6],[-6,-1],[-6,0],[-6,0],[-13,0],[-6,0],[-6,-7],[-6,0]],[[4663,7318],[-13,6],[-6,0],[-6,7],[-7,7],[-6,6],[-6,7],[0,7],[-7,7],[-6,0],[-6,0],[-12,-14],[-6,-1],[-6,-7],[-7,0],[-12,0],[-12,0],[-25,-1],[-19,14],[-6,0],[-6,6],[-6,7],[-13,7],[-6,7],[-6,0],[-7,6],[-12,0],[-6,0],[-25,0],[-6,6],[-18,7],[-13,6],[-12,14],[-7,0],[-6,0],[-6,0],[-6,-7],[-12,-1],[-12,-7],[-12,-14],[-6,0],[-11,-14],[-12,-14],[-17,-27],[-6,-14],[-12,-14],[-11,-14],[-6,-14],[-6,0],[-6,-7],[-12,0],[-18,-1],[-18,0],[-12,0],[-6,-1],[-12,7],[-6,0],[-7,7],[-6,6],[-6,0],[-6,0],[-7,13],[-6,7],[0,7],[-13,20],[-6,7],[-8,34],[-6,14],[-7,13],[-6,7],[-6,6],[-7,7],[-6,7],[-12,6],[-6,7],[-25,13],[-12,-1],[-24,6],[-12,0],[-7,6],[-12,7],[-6,0],[-6,-1],[-24,-1],[-12,0],[-12,-1],[-18,0],[-18,-1],[-12,-1],[-1,7],[-6,0],[0,7],[0,13],[-1,14],[0,13],[0,7],[-7,7],[-6,6],[-6,0],[-18,6],[-6,0],[-13,6],[-12,6],[-6,6],[-12,0],[-24,-2],[-6,7],[-13,-1],[-6,0],[-6,6],[-6,7],[-6,0],[-7,19],[-6,7],[-6,6],[-6,0],[-1,7],[-12,-1],[-6,0],[-12,6],[-24,-1],[-12,6],[-6,-1],[-7,7],[-18,6],[-6,-1],[-6,0]],[[3504,7649],[-1,20],[0,7],[0,7],[-6,0],[-19,12],[-13,13],[-12,6],[-12,6],[-6,7],[-7,13],[-6,7],[-13,6],[-6,-1],[-18,13],[-13,6],[-31,26],[-13,20],[-6,-1],[-6,7],[-13,13],[-25,19],[-13,13],[-6,7],[-13,13]],[[3387,8102],[10,-11],[3,-1],[26,-12],[5,-4],[2,-2],[6,-12],[9,-8],[20,-12],[17,-7],[6,-4],[7,-6],[16,-10],[10,-7],[9,-3],[7,-4],[32,-25],[10,-7],[5,-3],[13,-7],[4,-1],[18,-10],[15,-6],[9,-3],[14,-5],[32,-10],[8,0],[5,-3],[10,-2],[7,0],[4,-1],[13,-4],[2,0],[7,0],[9,-4],[31,-4],[2,0],[10,-1],[3,-2],[1,2],[14,-1],[9,-1],[6,-3],[12,-8],[8,-6],[18,-4],[7,-5],[14,-7],[13,-4],[4,-3],[2,0],[6,-7],[3,-2],[17,-6],[4,-2],[16,-4],[13,-2],[18,-4],[29,-2],[13,-1],[11,-5],[7,-2],[32,-3],[2,0],[12,1],[20,2],[33,7],[11,1],[15,5],[12,3],[18,5],[9,4],[18,5],[9,5],[24,7],[31,10],[50,15],[8,3],[3,1],[4,-1],[0,2],[14,2],[18,4],[9,1],[23,5],[38,9],[4,0],[0,2],[24,3],[4,1],[13,3],[3,2],[4,-1],[1,1],[26,5],[31,9],[19,5],[11,4],[17,5],[7,2],[1,1],[13,5],[10,3],[26,10],[5,1],[19,9],[4,0],[8,4],[10,2],[5,1],[20,5],[11,2],[10,3],[11,1],[14,4],[45,7],[59,10],[15,1],[6,1],[24,4],[41,4],[16,3],[2,0],[11,1],[15,2],[7,0],[46,6],[9,1],[22,0],[10,2],[5,1],[7,5],[7,0],[12,6],[7,1],[9,6],[1,4],[4,2],[5,0],[1,-2],[-2,-4],[-5,-4],[4,-15],[-1,-3],[-6,-2],[-5,1],[-14,-1],[-3,1],[-3,2],[-2,-4],[-3,-2],[-9,1],[-3,-2],[0,-3],[-1,-1],[-21,0],[-15,-4],[-5,1],[-4,-4],[-3,-1],[-2,0],[-16,1],[-5,1],[-4,-1],[-6,-4],[-8,-1],[-4,-2],[-1,-2],[-20,-3],[-12,0],[-2,0],[3,-6],[-2,-2],[-4,0],[-5,3],[-17,5],[-7,0],[-10,-1],[0,-2],[1,-3],[5,-3],[7,-8],[6,-3],[7,-7],[8,-3],[2,-2],[-3,-4],[-14,-1],[-21,4],[-7,0],[-2,-2],[1,-3],[13,-1],[3,-1],[4,-1],[9,0],[19,3],[4,0],[6,0],[9,-3]],[[7106,8724],[-8,-11],[-12,-14],[-24,-8],[-25,-7],[-6,-7],[-19,-6],[0,-14],[1,-14],[6,-13],[7,-7],[0,-7],[-12,-13],[-13,-6],[0,-14],[0,-7],[7,-6],[19,-8],[18,7],[19,-1],[25,0],[32,-7],[25,-1],[31,-7],[31,-7],[24,14],[18,0],[12,-1],[1,-6],[-5,-14],[6,0],[20,-14],[-16,-35],[52,-28],[14,-14],[14,-21],[2,-27],[7,-14],[-5,-7],[-12,-13],[-17,-13],[0,-14],[-5,-6],[7,-21],[1,-13],[-6,0],[-31,-20],[1,-13],[-12,-20],[1,-28],[0,-20],[-6,-14],[-7,-13],[-13,-7],[-6,1],[-7,-7],[-6,-7],[0,-6],[5,-14],[7,-7],[6,-7],[13,0],[13,-1],[6,0],[4,-33],[-2,-14],[-1,-7],[13,0],[8,6],[8,20],[2,20],[6,0],[6,-13],[-1,-14],[-1,-6],[12,-8],[13,-7],[13,0],[5,-7],[6,-7],[-16,-13],[-8,-7],[-27,-6],[1,-27],[-10,-20],[27,-1],[13,0],[4,-14],[-9,-20],[-18,-33],[20,-1],[-30,-32],[-20,-6],[-14,-7],[-20,1],[-6,0],[-13,0],[-39,8],[-45,9],[-39,8],[-5,13],[-94,45],[-31,15],[-30,22],[-23,21],[-32,8],[-48,30],[-125,81],[-134,-118],[-67,-58],[-9,-20],[26,-15],[-2,-13],[-2,-27]],[[6550,7869],[-27,-13],[-14,-6],[-13,1],[-14,0],[-6,0],[-6,7],[-7,1],[-19,7],[-20,7],[-13,1],[-33,1],[-6,0],[-6,7],[-7,7],[-6,7],[-18,21],[-6,7],[-19,7],[-6,14],[-6,7],[-6,7],[-6,7],[-13,7],[-12,14],[-12,14],[-6,7],[-5,7],[0,6],[1,7],[-5,7],[1,14],[7,0],[2,13],[10,20],[1,7],[9,14],[-5,7],[1,6],[-12,8],[1,6],[-6,7],[2,7],[6,0],[2,7],[-6,7],[-7,0],[-6,0],[8,7],[1,7],[9,13],[7,0],[15,7],[13,-1],[15,7],[6,-1],[1,7],[-5,14],[-12,7],[-7,1],[-7,-7],[-7,0],[-7,0],[-6,0],[-8,-6],[-13,0],[-7,0],[-12,8],[-13,7],[-6,7],[1,6],[-6,7],[1,7],[-7,7],[-5,14],[-6,21],[-6,7],[-6,14],[-7,0],[-12,14],[-13,14],[0,7]],[[6288,8848],[3,-1],[3,-2],[3,-2],[4,-2],[3,-3],[4,-3],[3,-2],[3,-1],[1,0],[3,0],[4,0],[4,1],[4,0],[6,2],[4,2],[3,1],[4,1],[4,0],[3,0],[4,0],[5,0],[4,0],[5,0],[3,0],[2,0],[1,0],[0,2],[0,2],[0,1],[0,3],[0,2],[1,3],[1,2],[2,4],[2,2],[1,0],[1,2],[2,2],[0,2],[0,1],[-1,2],[0,2],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,2],[-1,2],[0,1],[-2,1],[-1,1],[-2,1],[-2,1],[0,2],[0,2],[0,1],[0,1],[-1,1],[-1,3],[-1,2],[0,1],[0,3],[-1,2],[1,2],[0,2],[2,2],[1,3],[2,2],[1,2],[2,2],[2,2],[3,4],[3,1],[1,2],[4,3],[2,2],[4,4],[3,3],[3,2],[4,4],[6,6],[3,3],[4,4],[4,1],[4,1],[4,1],[4,2],[4,1],[3,-1],[6,1],[4,0],[3,-1],[5,0],[4,0],[3,0],[3,1],[2,0],[2,1],[3,0],[3,-1],[4,0],[3,0],[3,0],[3,0],[4,-1],[3,-2],[3,-3],[2,-3],[2,-3],[1,-3],[1,-3],[2,-2],[1,-1],[2,1],[2,1],[2,1],[3,2],[3,1],[2,0],[4,1],[2,1],[1,2],[1,1],[0,2],[1,1],[2,2],[1,2],[3,1],[3,1],[4,1],[3,1],[3,0],[3,0],[3,1],[3,0],[2,-1],[2,-1],[4,-1],[3,0],[2,1],[2,1],[3,1],[2,2],[1,2],[2,2],[2,2],[2,2],[1,0],[2,-2],[0,-1],[2,-4],[2,-1],[3,-4],[3,-2],[1,-2],[2,-1],[1,-2],[2,-3],[2,-1],[2,-2],[2,-1],[2,-1],[2,-1],[3,0],[3,-2],[2,-1],[4,-3],[4,-3],[3,-2],[5,-2],[5,-2],[5,-1],[4,-1],[3,-1],[3,0],[2,-1],[3,-1],[4,-1],[3,0],[3,0],[4,-1],[5,-1],[4,0],[4,0],[3,0],[4,1],[2,1],[3,0],[3,-1],[3,-3],[2,-4],[1,-3],[0,-2],[2,-2],[6,-2],[5,-1],[5,-1],[5,0],[5,0],[6,0],[3,1],[3,1],[3,1],[2,1],[1,1],[2,1],[3,3],[1,2],[2,2],[2,2],[2,2],[1,2],[2,2],[1,2],[2,2],[2,2],[3,3],[2,4],[2,2],[2,3],[2,3],[1,3],[2,3],[1,2],[2,3],[2,4],[2,2],[2,1],[3,1],[2,0],[3,1],[3,2],[3,1],[4,1],[5,1],[4,-1],[3,0],[3,-1],[4,-2],[3,-2],[2,-3],[1,-4],[0,-3],[0,-4],[1,-3],[0,-3],[1,-3],[0,-3],[1,-3],[3,-2],[4,-2],[3,-2],[4,-1],[4,-4],[2,-3],[0,-3],[0,-3],[0,-3],[0,-4],[-2,-4],[1,-3],[-1,-4],[0,-5],[1,-4],[2,-2],[4,-2],[4,-2],[4,-3],[4,-3],[3,-3],[2,-3],[2,-2],[1,-3],[1,-3],[1,-3],[2,-4],[2,-3],[3,-4],[4,-3],[3,-2],[2,-4],[1,-3],[-1,-4],[-1,-4],[0,-2],[-1,-4],[-1,-3],[-2,-3],[-1,-4],[-1,-3],[0,-3],[1,-2],[1,-3],[0,-4],[-1,-4],[-1,-4],[-1,-4],[-3,-4],[-2,-4],[-1,-3],[1,-2],[1,-2],[2,-1],[3,-1],[3,-2],[3,-1],[4,-1],[3,-1],[1,-2],[3,-2],[2,0],[3,-2],[2,-2],[2,-3],[4,-3],[3,-3],[4,-2],[5,-1],[4,-1],[4,-2],[4,-1],[4,-1],[5,-1],[4,-2],[3,-1],[4,-3],[2,-2],[3,-1],[4,0],[3,1],[3,1],[3,2],[3,1],[4,0],[4,1],[4,0],[5,1],[4,0],[5,-1],[3,-1],[3,-1],[3,-1],[6,-2],[5,-1],[5,-1],[4,0],[5,-1],[5,-1],[7,-1],[4,0],[6,2],[4,0],[6,0],[4,-1],[2,-2],[3,-4]],[[3504,7649],[-18,-1],[-25,5],[-18,-1],[-12,6],[-37,5],[-6,0],[-12,6],[-18,-1],[-12,0],[-24,-9],[-6,0],[-6,0],[-6,-7],[-6,-8],[0,-6],[1,-14],[6,-6],[6,0],[12,-6],[7,-7],[0,-6],[7,-14],[12,-6],[0,-7],[6,1],[31,-5],[12,0],[12,-6],[0,-7],[7,-6],[0,-7],[0,-7],[0,-6],[-5,-8],[-12,-14],[-6,-14],[-5,-14],[-6,-7],[-6,-20],[0,-7],[-11,-28],[1,-20],[-6,-8],[-12,-7],[-19,-1],[-5,-7],[-19,-8],[-6,-7],[-12,-8],[-18,-1],[-24,-15],[-6,0],[-6,-7],[-13,-8],[-6,-7],[-6,-7],[1,-14],[-6,-7],[0,-7],[6,-6],[1,-14],[0,-7],[6,-13],[19,-26],[0,-6]],[[2467,7185],[-20,27],[-13,20],[-7,27],[-59,40],[-13,20],[-1,27],[13,-6],[13,-7],[6,8],[12,7],[13,-6],[13,-7],[13,8],[-1,13],[6,14],[19,8],[12,0],[32,2],[25,1],[0,6],[19,-13],[19,-6],[20,-20],[13,1],[-20,20],[6,28],[12,21],[18,21],[19,8],[18,1],[25,14],[25,15],[25,-5],[25,15],[26,1],[5,21],[-6,13],[-8,34],[6,35],[-26,20],[-7,20],[-7,21],[5,27],[-13,7],[-12,6],[-13,-7],[-1,21],[0,7],[-19,-1],[-6,0],[-6,-7],[-7,13],[-13,14],[-13,-1],[-6,7],[-1,14],[-7,21],[5,28],[-13,13],[-13,7],[-20,13],[-14,14],[0,14],[-1,21],[23,36],[12,21],[17,29],[32,8],[19,0],[25,8]],[[4065,6669],[0,-7],[7,-14],[0,-13],[7,-7],[0,-14],[-6,-14],[-11,-34],[0,-7],[-5,-41],[1,-7],[-6,-14],[-6,-13],[-12,-21],[-17,-21]],[[3496,6902],[0,-7],[6,0],[0,7],[18,1],[12,0],[12,1],[13,0],[12,1],[31,-5],[24,1],[12,0],[6,1],[7,-7],[24,-6],[50,-18],[12,-7],[30,1],[13,-6],[6,-7],[6,-6],[19,-20],[13,-13],[31,-27],[6,0],[32,-19],[31,-20],[25,-20],[43,-19],[13,-7],[24,-6],[26,-20],[6,0],[6,-6]],[[8539,6130],[-13,-4],[-44,-10],[-41,-4],[-80,-1],[-27,2],[-26,8],[-33,-5],[-53,-4],[-46,2],[-39,2],[-32,16],[-12,22],[-24,36],[-11,28],[-18,29],[-6,21],[-12,8],[-40,-26],[-20,-13],[-14,-7],[-20,-13],[-7,-6],[-13,-7],[-19,8],[-6,0],[-21,-13],[-20,-6],[-25,8],[-13,1],[-13,0],[-13,-6],[-7,0],[-7,-7],[-7,-13],[-14,-14],[-8,-13],[-31,22],[-51,9],[-32,8],[-19,1],[-13,0],[-14,-6],[-8,-14],[-6,-19],[-2,-8],[7,6],[4,-21],[18,-21],[5,-15],[-8,-20],[-2,-21],[-8,-21],[-15,-20],[12,-21],[11,-22],[-8,-20],[-7,-7],[-7,-14],[-14,-13],[6,-7],[0,-7],[5,-14],[6,-7],[-7,-7],[-7,-14],[0,-7],[12,-14],[6,0],[12,-8],[6,-14],[6,0],[0,-14],[-1,-14],[5,-14],[12,-14],[57,-16],[6,-8],[5,-14],[-7,-13],[-13,0],[0,-13],[-1,-14],[-7,-14],[-1,-13],[-6,0],[-14,-20],[-7,-14],[-20,-19],[-13,-14],[-19,-12],[-19,-7],[-19,-12],[-25,-6],[-19,-6],[-32,-20],[-19,-13],[-13,-13],[-13,-13],[-13,-14],[-13,-20],[-6,-20],[-1,-14],[-6,-61],[-1,-27],[-18,-39],[-5,-26],[-18,-19],[-12,-13],[0,-6]],[[7316,5224],[-12,7],[-12,7],[-6,14],[-1,20],[-6,33],[-24,22],[-60,16],[-25,22],[-30,21],[-24,8],[-18,21],[-19,88],[-5,41],[-6,68],[1,90],[-5,48],[-12,14],[-12,28],[-12,15],[-10,48],[-19,-6],[-38,-40],[-31,-19],[-43,-12],[-37,1],[-48,16],[-30,22],[-18,21],[-6,34],[-5,42],[-11,56],[-6,21],[-5,41],[-4,42],[-6,28],[1,28],[7,20],[7,21],[8,41],[1,21],[20,55],[15,48],[8,41],[14,27],[14,28],[20,20],[13,20],[20,13],[20,13],[26,13],[26,13],[35,26],[34,26],[29,34],[29,26],[14,20],[15,13],[7,7],[0,7],[-5,13],[-15,55],[-66,57],[-25,14],[-55,43],[-24,21],[-39,8],[-45,1],[-41,-13],[-54,-25],[-35,-20],[-68,-32],[-47,-33],[-40,-20],[-26,-13],[-39,-12],[-51,-13],[-39,-13],[-25,-6],[-44,-6]],[[6311,6689],[6,7],[13,27],[14,20],[6,7],[13,13],[7,7],[7,13],[7,7],[27,33],[34,33],[27,20],[14,14],[13,6],[14,7],[6,-1],[34,13],[27,13],[14,0],[13,7],[7,6],[21,7],[7,6],[7,7],[0,7],[8,6],[8,27],[1,7],[9,34],[1,7],[8,13],[0,7],[7,0],[15,26],[15,20],[22,27],[7,6],[8,14],[7,6],[8,13],[1,14],[1,7],[1,13],[-5,14],[-13,7],[-5,14],[-6,6],[-12,14],[-18,14],[-6,7],[-7,1],[-6,6],[-12,14],[-6,1],[-6,6],[-13,8],[-6,7],[-11,13],[-7,1],[-6,7],[-12,7],[-12,14],[-6,6],[0,7],[-6,7],[1,7],[0,7],[-5,13],[1,14],[-5,20],[-6,7],[2,13],[0,7],[-6,7],[1,13],[1,7],[-6,7],[0,7],[2,13],[-5,20],[1,14],[-6,7],[-4,27],[1,20],[3,27],[0,7],[1,13],[1,7],[8,20],[8,20],[8,13],[8,13],[7,7],[1,6],[7,7],[7,6],[1,14],[1,13],[2,13],[1,14],[-6,7],[0,6],[-12,14],[-6,7],[-19,8],[-6,7],[-7,0],[-13,-6],[-7,0]],[[7106,8724],[4,-3],[3,-1],[3,-1],[5,0],[4,0],[4,0],[3,-3],[3,-2],[2,-3],[3,-4],[2,-3],[2,-4],[3,-2],[3,-1],[3,-1],[4,1],[2,1],[4,1],[5,0],[5,1],[4,-1],[5,-2],[4,-1],[4,-2],[3,0],[2,-1],[2,-2],[4,-1],[3,-1],[5,-2],[5,-2],[3,-1],[3,-3],[4,-2],[5,-2],[3,-3],[4,-3],[4,-4],[3,-1],[4,-3],[4,-3],[4,-5],[2,0],[2,-2],[2,0],[4,-1],[3,0],[3,1],[4,1],[3,0],[3,0],[2,-2],[2,-1],[3,0],[1,-1],[1,-3],[3,-2],[2,-1],[1,1],[2,1],[1,2],[2,1],[1,-1],[1,-2],[2,-2],[4,-4],[4,1],[3,3],[3,2],[3,0],[2,-2],[2,-2],[4,-2],[3,-2],[5,-2],[5,-2],[4,-3],[2,-3],[1,-3],[0,-4],[0,-3],[0,-4],[1,-2],[2,-2],[2,-2],[1,-1],[1,-3],[3,-2],[0,-4],[1,-3],[-1,-3],[-1,-4],[-1,-3],[-1,-3],[0,-3],[0,-3],[0,-2],[2,-2],[4,-3],[3,-1],[4,-2],[2,0],[3,-2],[3,-2],[3,0],[2,-1],[4,-2],[4,-1],[4,-1],[2,0],[2,0],[4,1],[4,-1],[4,1],[4,0],[2,-1],[4,-2],[5,-2],[3,-2],[2,-2],[0,-3],[1,-3],[0,-4],[2,-1],[2,-3],[2,-2],[2,-2],[3,-1],[2,0],[3,1],[2,2],[2,2],[2,1],[2,0],[2,1],[2,0],[4,0],[4,0],[4,-1],[3,0],[3,0],[3,1],[4,1],[3,2],[4,2],[3,1],[5,4],[1,2],[3,1],[1,2],[1,3],[1,2],[1,2],[1,4],[0,3],[1,1],[2,3],[2,2],[1,2],[2,2],[1,2],[2,2],[3,1],[3,2],[3,0],[3,0],[3,-1],[4,0],[1,-1],[2,-1],[2,-1],[2,-1],[2,-3],[2,-2],[4,-4],[2,-3],[2,-3],[1,-3],[2,-3],[4,-2],[7,-4],[5,-2],[11,-4],[7,-1],[5,-1],[7,-1],[5,-1],[6,-2],[4,0],[2,1],[1,1],[1,2],[1,4],[1,3],[1,2],[1,2],[3,0],[2,1],[2,-2],[3,-1],[2,-1],[4,-2],[3,-1],[2,0],[2,0],[2,0],[2,1],[1,2],[1,2],[1,1],[0,2],[1,3],[0,2],[1,1],[1,2],[2,1],[1,2],[1,1],[0,1],[0,2],[-1,2],[-2,3],[-1,2],[0,2],[1,1],[2,1],[2,-1],[2,-1],[3,-2],[3,-2],[2,-1],[3,-1],[3,-2],[3,-3],[3,-3],[2,-3],[3,-3],[5,-4],[3,-2],[2,-1],[4,0],[3,0],[3,-1],[5,0],[3,0],[7,-2],[3,0],[4,-2],[3,-2],[9,-5],[4,-2],[3,-2],[5,-2],[5,-1],[5,-1],[4,-2],[4,-2],[4,-1],[4,-3],[4,-3],[3,-2],[4,-4],[4,-3],[4,-3],[4,-4],[3,-3],[5,-3],[4,-3],[5,-4],[4,-3],[3,-2],[5,-2],[2,-2],[2,-3],[3,-2],[2,-2],[2,-1],[2,-1],[1,-1],[2,-1],[1,-2],[0,-2],[2,-1],[2,-2],[2,-2],[2,-2],[1,-3],[4,-4],[2,-1],[3,0],[3,0],[2,0],[2,-1],[2,-2],[3,-1],[4,0],[5,-1],[3,1],[4,0],[3,1],[1,1],[3,1],[2,2],[4,3],[4,3],[5,2],[5,0],[3,1],[4,-1],[3,-1],[1,-2],[1,-1],[2,-2],[0,-3],[1,-2],[1,-2],[3,-2],[2,-2],[1,-3],[3,-3],[2,-3],[2,-3],[0,-2],[1,-2],[0,-3],[-1,-2],[0,-5],[0,-5],[0,-2],[1,-2],[3,-3],[3,-4],[2,-3],[0,-2],[-1,-1],[-7,-2],[-2,-2],[-2,-2],[-1,-2],[-1,-2],[-1,-3],[0,-3],[1,-3],[1,-5],[1,-4],[1,-3],[1,-7],[2,-7],[1,-10],[1,-6],[1,-3],[2,-5],[1,-6],[2,-3],[2,-3],[3,-2],[3,-1],[2,-1],[3,-3],[1,-2],[1,-1],[0,-3],[1,-2],[2,-2],[3,-3],[2,-2],[1,-1],[2,-4],[3,-4],[3,-3],[5,-6],[3,-4],[3,-6],[1,-1],[2,-2],[0,-3],[-2,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[0,-1],[2,-2],[2,-2],[2,-2],[2,-2],[3,-2],[3,-2],[3,-1],[3,-2],[3,-2],[2,-2],[2,-2],[2,-1],[2,-2],[4,-1],[3,-1],[2,0],[1,-3],[0,-2],[-1,-2],[0,-3],[-1,-3],[-1,-3],[0,-3],[0,-3],[1,-3],[0,-2],[2,-3],[2,0],[3,0],[3,-1],[3,0],[5,0],[4,-1],[3,0],[4,-1],[4,-3],[5,-4],[3,1],[4,0],[3,-1],[2,0],[2,1],[1,2],[1,4],[2,4],[1,2],[1,0],[2,1],[2,1],[3,0],[3,0],[3,0],[6,-1],[3,-1],[3,-1],[3,-2],[3,-3],[2,-2],[2,-2],[2,-3],[2,-2],[3,-2],[3,0],[3,0],[2,1],[0,1],[1,2],[0,1],[1,2],[2,1],[2,0],[2,-1],[2,0],[7,-5],[3,-2],[6,-2],[5,-2],[4,-1],[4,-2],[3,-2],[3,-2],[8,-11],[8,-9],[2,-1],[3,0],[2,-1],[1,-2],[2,-2],[2,-3],[3,-2],[3,-2],[3,-2],[2,-1],[3,-2],[4,-1],[2,0],[3,0],[2,0],[3,1],[2,0],[3,1],[2,1],[3,1],[3,0],[3,0],[4,-1],[2,0],[2,-1],[0,6],[2,0],[9,-5],[15,-14],[18,-23],[2,-5],[4,-15],[3,-9],[13,-20],[18,-30],[8,-13],[19,-22],[18,-23],[11,-17],[13,-26],[11,-22],[8,-17],[5,-6],[6,-3],[8,-10],[1,-2],[36,1],[23,0],[43,1],[35,0],[45,5],[57,5],[17,1],[49,5],[95,7],[4,-4],[1,-4],[-1,-1],[2,-5],[15,-36],[5,-14],[1,-13],[-2,-13],[-5,-10],[-4,-11],[1,-4],[1,-8],[1,-8],[-1,-14],[-6,-38],[0,-8],[3,-27],[8,-26],[8,-23],[3,-6],[1,-12],[8,-32],[3,-15],[2,-18],[-3,-18],[-15,-37],[-10,-24],[-3,-8],[-3,-11],[-1,-2],[-3,-7],[-13,-10],[-6,-4],[1,-4],[2,-3],[16,-3],[10,-2],[16,-10],[4,-5],[3,-4],[2,-3],[3,-2],[0,-5],[-1,-5],[-1,-4],[1,-1],[3,1],[3,1],[2,-1],[1,-1],[-2,-3],[-3,-4],[-1,0],[3,-7],[0,-2],[0,-2],[1,-6],[2,-2],[3,0],[0,-4],[-1,-4],[2,-2],[2,-3],[-2,-4],[1,-2],[0,-4],[1,-3],[0,-3],[2,-3],[1,-1],[-1,-2],[-4,-2],[-1,-3],[-1,-7],[-1,-5],[-1,-4],[-1,-2],[3,-1],[1,-1],[0,-3],[-1,-3],[-1,-6],[0,-9],[0,-5],[-2,-6],[-3,-9],[-4,1],[-2,-4],[-5,-5],[0,-2],[2,-8],[0,-8],[0,-5],[2,-5],[2,3],[6,-5],[-1,0],[6,-12],[4,-5],[7,-6],[2,-2],[3,-3],[0,-1],[-4,-3],[1,-2],[1,-2],[-2,-2],[-1,0],[0,-1],[-1,-1],[-1,-1],[1,-2],[1,0],[1,0],[1,-1],[-1,-2],[1,-3],[-1,-1],[1,-2],[-1,-1],[-3,-3],[0,-2],[1,-3],[1,-1],[-1,-3],[1,-2],[2,0],[2,0],[0,-2],[0,-4],[1,-2],[-1,-4],[-3,-1],[-1,-2],[1,-2],[2,-1],[0,-3],[-2,-1],[-1,-3],[-3,0],[-1,-1],[0,-1],[-2,-2],[0,-1],[1,-1],[0,-1],[-2,-4],[-1,-1],[1,-1],[-1,-4],[-2,0],[-2,-1],[1,-2],[-2,-2],[0,-4],[-1,-1],[-3,0],[-1,-4],[-2,-3],[0,-2],[1,-3],[0,-3],[0,-1],[-1,-1],[-5,-3],[-2,-2],[1,-2],[5,-5],[-1,-3],[-2,-4],[-1,-1],[-2,-1],[-2,1],[-2,-1],[0,-2],[-1,-2],[-3,-2],[-1,2],[-3,-2],[0,-3],[-2,1],[-3,-4],[-1,-2],[2,-2],[2,-4],[0,-1],[-1,-2],[1,-1],[1,2],[0,2],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-2],[0,-2],[-1,0],[-1,1],[0,1],[-1,1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-3],[0,-6],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,-3],[-1,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[2,-2],[1,-2],[0,-2],[0,-1],[2,-1],[-1,-3],[1,-1],[1,-1],[1,0],[1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[2,-4],[-1,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-5],[-3,0],[-1,-1],[-2,2],[-1,0],[-1,-2],[-4,0],[-1,-2],[-1,-1],[2,0],[-2,-3],[-1,-1],[-1,-3],[-1,0],[-1,1],[0,3],[0,2],[-7,-1],[-1,-1],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-2,2],[-2,0],[-1,0],[-3,0],[-2,-2],[-1,-3],[-1,-2],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[1,0],[0,-1],[1,-1],[0,-3],[0,-1],[1,0],[0,-1],[0,-3],[1,-3],[-1,0],[-1,-1],[1,-2],[1,-2],[1,0],[1,0],[-1,-2],[-1,0],[-1,-2],[0,-1],[1,-2],[-1,-2],[0,-1],[0,-1],[2,-1],[1,-2],[1,1],[1,-1],[1,0],[2,-1],[1,0],[0,1],[1,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-2,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[-1,-2],[-2,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[2,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[1,0],[2,1],[1,-1],[1,0],[1,1],[0,1],[2,0],[0,-1],[2,0],[1,-1],[0,-1],[-1,0],[-2,-2],[-12,-1],[2,-6],[3,-1],[1,-2],[2,-7],[2,-4],[1,-1],[0,-1],[1,-1],[2,-3],[0,-2],[0,-2],[2,-6],[1,-3],[0,-3],[1,-3],[0,-1],[0,-5],[0,-1],[-1,-2],[-2,-2],[-1,-1],[-2,-2],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[0,-3],[-1,-6],[0,-3],[0,-1],[0,-2],[-1,-3],[0,-2],[0,-3],[-1,0],[-1,-4],[0,-2],[-1,-4],[-1,-1],[0,-2],[0,-3],[-1,-2],[0,-4],[0,-3],[1,-7],[-1,-2],[1,-5],[0,-3],[0,-5],[-1,-2],[0,-1],[0,-2],[0,-3],[-2,-4],[0,-1],[0,-2],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-1,-2],[-2,-1],[-1,-2],[-1,-2],[-2,-1],[-1,-1],[-1,-2],[0,-1],[1,-5],[1,-2],[0,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-2],[1,-7],[1,-5],[1,-4],[0,-2],[0,-2],[-1,-1],[0,-2],[0,-3],[-1,-4],[0,-1],[-1,-3],[0,-3],[0,-2],[-1,-4],[0,-3],[0,-2],[0,-2],[0,-2],[1,-5],[-1,-3],[-1,-4],[-1,-1],[-7,-13],[-2,-4],[-2,-3],[-1,-1],[-2,-4],[-2,-4],[-4,-6],[-1,-2],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[0,-2],[-1,-1],[0,-2],[-4,-3],[-1,-2],[-1,-2],[-2,-3],[-1,-2],[-1,-2],[0,-3],[0,-2],[1,-2],[0,-2],[0,-5],[1,-2],[1,-2],[-1,-2],[-1,-1],[1,-2],[-1,-2],[0,-2],[1,-1],[2,-4],[1,-2],[1,-3],[-1,-3],[-1,-2],[-2,-2],[-3,-3],[-2,-1],[-2,-2],[-2,-1],[-1,-1],[-2,-1],[-1,0],[-3,-1],[-1,0],[-2,0],[-3,2],[-2,2],[-1,1],[-2,2],[-1,1],[-1,0],[-2,0],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-2,-3],[0,-1],[-1,-2],[0,-1],[-2,-7],[0,-2],[-2,-6],[0,-5],[-1,-4],[0,-3],[-1,-2],[-1,-1],[-2,-2],[-3,-1],[-2,-1],[-2,-1],[-1,-1],[-8,-7],[-5,-3],[-1,0],[0,-1],[-4,0],[-7,1],[-2,0],[-3,-2],[-1,0],[-1,1],[-3,-1],[-6,-1],[-2,-1],[-3,-1],[-3,-1],[-1,0],[-1,-1],[-2,-1],[-3,-2],[-5,-1],[-1,0],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-4,0],[-1,-2],[-1,-2],[-1,-3],[1,-2],[7,-8],[2,-2],[2,-2],[2,-2],[2,-1],[4,-3],[1,-1],[5,-4],[2,-2],[2,-2],[3,-2],[1,-1],[2,-1],[4,-3],[1,-2],[5,-5],[1,-1],[1,0],[1,-2],[4,-4],[2,-2],[2,-2],[3,-4],[2,-2],[1,-1],[0,-2],[1,-3],[0,-2],[0,-2],[2,-4],[2,-5],[1,-3],[2,-6],[1,-3],[1,-2],[1,-2],[2,-3],[2,-1],[1,-2],[2,-2],[4,-4],[4,-4],[6,-12],[1,-1],[4,-6],[8,-11],[-6,-1],[-2,0],[-1,0],[-7,0],[-3,0],[-2,1],[-7,1],[-4,1],[-1,0],[-4,1],[-2,0],[-7,1],[-1,0],[-2,0],[-3,0],[-1,0],[-5,0],[-3,0],[-4,0],[-2,-1],[-7,0],[-2,0],[-7,0],[-8,1],[-5,0],[-4,0],[-2,0],[-2,0],[-3,0],[-3,1],[-5,1],[-4,0],[-1,0],[-7,-2],[-1,0],[-2,-2],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[0,-2],[0,-2],[0,-3],[0,-1],[0,-1],[-1,-3],[-1,0],[-1,-1],[-1,-1],[-2,-2],[-4,-4],[-3,-3],[-3,-3],[-4,-3],[-2,-3],[-1,-1],[-3,-3],[-5,-6],[-7,-8],[-3,-4],[-1,-2],[-6,-7],[-1,-2],[-1,-2],[-1,-1],[-3,-5],[-2,-4],[-3,-4],[-1,-2],[-2,-3],[-3,-5],[-2,-3],[-3,-4],[-2,-3],[-3,-5],[-3,-4],[-3,-6],[-1,-4],[0,-3],[-1,-2],[0,-3],[0,-1],[-1,-6],[-3,-11],[-1,-1],[0,-1]],[[6311,6689],[-13,-27],[-7,-13],[-25,-54],[-25,-47],[-18,-26],[-6,-21],[-12,-20],[-6,-6],[-6,-14],[-6,-6],[-23,-40],[-6,-13],[-6,-7],[-6,-13],[-6,-7],[-6,-14],[-6,-6],[0,-7],[-12,-20],[-6,0],[-6,-7],[-18,-6],[-18,0],[-24,1],[-12,0],[-18,0],[-24,1],[-17,0],[-18,8],[-42,-6],[-18,0],[-12,-6],[-6,0],[0,-7]],[[4065,6669],[6,13],[-1,14],[0,7],[-1,14],[0,6],[0,7],[0,7],[5,14],[6,7],[18,21],[6,7],[11,14],[0,6],[6,7],[6,7],[-1,7],[0,7],[-6,7],[-1,7],[-6,13],[-6,0],[-7,7],[-12,13],[-13,27],[-7,7],[-19,27],[-13,13],[0,14],[-7,14],[0,13],[-1,14],[6,7],[0,7],[5,27],[5,14],[6,0],[0,14],[-1,14],[-1,34],[0,7],[5,7],[6,7],[6,-7],[7,-13],[6,0],[6,-7],[6,0],[7,0],[5,7],[6,1],[6,0],[7,-7],[12,-13],[1,-7],[12,-7],[18,-6],[19,-7],[13,-13],[6,-7],[6,0],[13,-13],[12,-14],[7,-7],[18,-6],[25,-7],[6,1],[18,7],[12,0],[12,0],[12,-6],[13,-7],[18,-6],[19,-7],[13,-7],[30,-6],[13,-6],[18,0],[18,7],[12,0],[18,8],[24,7],[18,7],[12,7],[6,7],[6,7],[6,0],[6,7],[11,14],[6,7],[6,0],[6,14],[24,14],[0,7],[6,7],[12,7],[11,14],[12,7],[6,7],[0,7],[6,14],[-1,14],[0,20],[-7,14],[-7,20],[-7,21],[0,6],[0,7],[-7,14],[-6,20],[-1,14],[0,14]],[[9073,86],[0,-2],[0,-1],[-2,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[8222,195],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[0,-1],[-4,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[9073,86],[0,1],[-3,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,2],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-2,0],[0,1],[0,-1],[1,0],[0,-1],[2,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[3,0],[2,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-2,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-2],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,-2],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-2,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-2,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-4,0],[-1,0],[-3,0],[-3,0],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-2,0],[0,1],[0,2],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-2,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-2,0],[-1,0],[-2,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,2],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,2],[0,1],[1,0],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,2],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,6],[0,2],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-4,0],[0,-1],[-5,0],[-3,0],[-3,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-4],[0,-1],[0,-3],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[2,0],[0,-1],[2,0],[1,0],[1,0],[5,0],[1,0],[3,0],[2,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-3,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[0,1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-3,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,2],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,3],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-5,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-2,0],[-3,0],[-4,0],[0,1],[-2,0],[-5,0],[-1,0],[0,-1],[-2,0],[-1,0],[-4,0],[0,-1],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[0,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,2],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-2,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-2,0],[-2,0],[-2,0],[-2,0],[-7,0],[-2,0],[-4,0],[-1,0],[-2,0],[0,-1],[-3,0],[-2,0],[-3,0],[-4,0],[-3,0],[-3,0],[-1,0],[0,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[0,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-2,0],[0,-1],[0,1],[0,-1],[-2,0],[-2,0],[-2,0],[-4,0],[-2,0],[0,-1],[-4,0],[-1,0],[-4,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-3,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-5,0],[-2,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[0,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-3,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[8026,3768],[24,12],[6,6],[13,0],[30,11],[12,-1],[19,5],[18,13],[31,4],[19,6],[12,6],[25,5],[6,0],[7,6],[6,0],[24,6],[44,17],[12,0],[7,6],[31,12],[19,5],[25,6],[19,12],[6,6],[6,0],[6,-7],[18,-21],[5,-7],[6,-7],[6,-7],[6,0],[6,-7],[6,-1],[24,-1],[12,-7],[6,-1],[6,-7],[6,0],[0,-7],[6,-7],[6,0],[5,-7],[29,-22],[6,-7],[11,-8],[6,-7],[5,-7],[5,-13],[10,-21],[10,-28],[21,-42],[5,-7],[16,-22],[5,-7],[5,-7],[6,0],[12,-1],[25,6],[17,-1],[35,4],[6,0],[6,0],[1,13],[6,6],[1,7],[-4,28],[-5,7],[1,13],[-10,28],[1,7],[-5,7],[1,13],[-5,14],[1,20],[-4,21],[-4,20],[1,14],[1,13],[0,7],[2,34],[2,20],[1,13],[0,7],[-4,21],[0,13],[2,20],[0,7],[1,20],[7,13],[0,14],[7,20],[1,13],[7,20],[7,33],[6,7],[12,40],[6,6],[5,13],[1,7],[11,27],[11,13],[0,6],[0,7],[1,14],[0,13],[-6,7],[1,7],[-6,7],[-10,27],[0,7],[0,2]],[[8860,4343],[26,-4],[166,-28],[19,-3],[27,-5],[20,-3],[14,-3],[31,-5],[35,-48],[1,-2],[0,-1],[0,-8],[0,-8],[-2,-16],[0,-1],[0,-2],[0,-1],[1,-14],[1,-3],[1,-4],[-2,-6],[10,-16],[4,-8],[1,-3],[1,-5],[1,-3],[0,-8],[2,-4],[-1,-4],[3,-9],[0,-5],[2,-5],[2,-4],[3,-3],[3,-6],[0,-1],[-3,-13],[2,-3],[1,-1],[-1,-5],[4,-10],[-1,-2],[-2,-2],[0,-3],[0,-4],[0,-1],[-3,-6],[0,-2],[-1,-2],[-1,-1],[0,-2],[0,-2],[1,-2],[1,-5],[0,-2],[1,-5],[1,-3],[0,-1],[-1,-1],[-2,-2],[-1,-1],[-4,-4],[-1,-2],[-2,-2],[0,-1],[-1,-1],[-2,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,1],[-2,2],[-2,0],[0,-2],[-1,-3],[0,-1],[0,-5],[0,-3],[0,-2],[0,-2],[0,-4],[0,-1],[1,-4],[0,-1],[1,-2],[0,-4],[1,-1],[1,-2],[1,-1],[2,-2],[0,-2],[0,-2],[0,-1],[0,-3],[-1,-4],[0,-1],[0,-3],[1,-1],[1,-4],[1,-4],[1,-2],[1,-2],[1,-4],[0,-1],[-1,-2],[-1,-2],[-2,0],[-1,-1],[-2,-1],[-1,-2],[-2,-1],[-2,-2],[-1,-2],[-1,-1],[-2,-2],[0,-1],[-2,-3],[-1,-1],[0,-2],[-2,-1],[-4,-7],[-2,-2],[-1,-1],[-1,-2],[-15,-21],[-24,-32],[-188,-256],[-36,-50],[-18,-24],[-1,-2],[-12,-16],[-46,-64],[-29,-40],[-15,-20],[-3,-5],[-2,-2],[-71,-99],[11,-8],[6,-3],[1,0],[34,-52],[45,-69],[38,-59],[7,-9],[28,-39],[22,-25],[39,-47],[14,-13],[18,-19],[3,-9],[-2,-13],[-8,-23],[3,-9],[10,-33],[4,-5],[4,-3],[12,-6],[3,-4],[-4,-17],[-3,-9],[-1,-10],[2,-4],[14,-5],[8,-4],[6,-6],[4,-7],[0,-15],[2,-2],[11,-15],[1,-5],[-1,-20],[1,-8],[18,-25],[4,-5],[8,-14],[6,-19],[20,-34],[4,-6],[10,-23],[13,-18],[8,-17],[7,-7],[14,-15],[29,-39],[6,-10],[4,-7],[4,-10],[10,-5],[0,-1],[24,-24],[12,-9],[8,-7],[26,-17],[18,-5],[12,-8],[1,-2],[13,-12],[38,-16],[17,3],[2,0],[9,-1],[17,-6],[19,-9],[16,1],[9,-2],[5,-1],[27,-15],[12,-2],[23,-13],[1,-1],[11,-7],[17,-21],[16,-30],[4,-4],[3,-2],[13,-9],[16,-21],[10,-16],[15,2],[5,1],[73,13],[8,2],[3,-3],[2,-46],[-3,-26],[-5,-46],[-5,-39],[-1,-9],[1,-12],[10,-25],[3,-37],[1,-6],[5,-43],[2,-7],[4,-25],[1,-3],[2,-25],[3,-19],[3,-42],[1,-18],[7,-67],[0,-4],[2,-53],[-8,-27],[-17,-58],[11,-14],[1,-5],[1,-5],[-5,-12],[-22,-24],[1,-12],[8,-8],[7,-4],[5,-2],[12,0],[18,3],[7,-5],[8,-7],[19,-4],[4,-1],[13,2],[42,26],[9,0],[21,0],[35,5],[14,-9],[13,-9],[23,-15],[10,-9],[7,-21],[3,-7],[-3,-6],[-5,-5],[-7,-4],[-8,-9],[-9,-13],[0,-25],[0,-80],[2,-6],[8,-21],[3,-10],[-3,-7],[-37,-10],[-7,-4],[6,-51],[-2,-21],[-1,-4],[-12,-42],[-2,-15],[-4,-3],[-3,1],[-15,0],[-1,0],[-19,-1],[-20,-4],[-25,10],[-9,1],[-17,0],[-3,-1],[-14,-4],[-41,1],[-10,3],[-4,0],[-5,0],[-13,0],[-9,-3],[-13,-6],[-2,-3],[-3,-7],[-3,-3],[-6,-2],[-6,-2],[-7,-1],[-12,3],[-7,-5],[-5,-7],[-16,-10],[-13,-1],[-27,-3],[-9,2],[-18,-8],[-8,-1],[-11,1],[-4,-1],[-12,-16],[-4,-4],[-3,0],[-19,0],[-4,-2],[-5,-3],[-5,-2],[-10,0],[-4,-3],[-4,-7],[-2,-10],[1,-3],[4,-7],[2,-5],[-2,-5],[-1,-1],[-7,-9],[-3,-5],[-7,-1],[-6,2],[-1,-2],[4,-10],[0,-13],[14,-17],[0,-11],[-5,-9],[-9,0],[-13,5],[-3,1],[-18,2],[-28,13],[-6,1],[-3,-7],[0,-11],[0,-23],[-3,-9],[-8,-2],[-23,1],[-12,-7],[-27,-17],[-15,-8],[-25,-5],[-1,0],[-19,-9],[-12,-13],[-8,-39],[0,-2],[-11,-85],[-1,-7],[-4,-26],[-5,-46],[-1,-5],[-4,-23],[-1,-10],[1,-13],[-1,-23],[-5,-9],[-1,-2],[-3,0],[-8,-2],[-16,-2],[-14,3],[0,-28],[0,-12],[0,-16],[8,-9],[1,-12],[-1,-10],[-8,-6],[-5,-6],[-1,-16],[-6,-80],[0,-6],[2,-56],[-2,-29],[-1,-31],[-5,-24],[-5,-17],[-5,-11],[-3,-8],[-10,-34],[-6,-6],[-5,-2],[-7,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[0,1],[1,0],[0,2],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-3],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-2],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-2,0],[-5,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0]],[[7154,4469],[6,12],[11,19],[6,46],[24,44],[18,25],[12,19],[18,19],[0,26],[6,20],[-1,13],[12,12],[36,51],[18,25],[18,25],[0,27],[0,20],[12,25],[12,13],[6,0],[0,13],[-6,13],[-13,34],[-18,34],[-12,14],[0,13],[-1,14],[0,13],[-12,1],[0,6],[0,13],[-12,8],[-12,14],[12,12],[5,7],[6,-1],[0,13],[0,7],[12,6],[6,0],[0,13],[-6,20],[-1,13],[0,27],[0,7]],[[8539,6130],[0,-1],[0,-3],[2,-10],[1,-8],[0,-3],[1,-5],[1,-3],[0,-2],[1,-3],[2,-7],[3,-10],[1,-2],[2,-14],[10,-77],[6,-48],[0,-2],[-18,-32],[-1,-1],[3,-63],[72,-80],[1,0],[1,-1],[9,0],[2,0],[2,0],[9,0],[4,0],[14,0],[3,0],[9,0],[65,5],[11,-7],[3,-3],[11,-7],[-3,-4],[-4,-5],[-2,-2],[-13,1],[-11,3],[-3,-2],[-8,-6],[-5,-5],[6,-16],[1,-18],[0,-6],[1,-1],[0,-3],[-1,-1],[-5,-3],[-2,-1],[-6,-4],[-8,-5],[-45,-54],[-45,-53],[-8,-10],[-16,-37],[-10,-25],[-2,-5],[6,-64],[7,-12],[5,-8],[1,-1],[2,-9],[29,-128],[15,-64],[4,-13],[33,-94],[17,-48],[1,-4],[3,-15],[19,-125],[7,-24],[3,-14],[2,-7],[-4,-18],[-9,-43],[-6,-29],[-5,-13],[-6,-15],[-4,-17],[0,-2],[-7,-28],[-6,-42],[-5,-36],[-2,-25],[-1,-43],[4,-42],[5,-40],[7,-29],[13,-49],[8,-14],[81,-13],[63,-10]],[[1632,7947],[7,-6],[7,-7],[8,-12],[8,-20],[1,-6],[10,-40],[15,-32],[16,-47]],[[754,7437],[-1,-1],[-1,0],[-4,0],[-3,-1],[-1,0],[-4,-5],[-4,-2],[-4,0],[-4,2],[-5,0],[-4,-7],[-3,-2],[-6,0],[-1,-5],[-2,-2],[-3,0],[-1,0],[-7,3],[-5,-1],[-5,3],[-5,-1],[-3,2],[0,1],[-3,9],[-4,7],[4,7],[5,10],[3,16],[3,6],[4,4],[5,6],[0,4],[-7,16],[-3,3],[-4,3],[-1,2],[-1,4],[-1,6],[-7,7],[0,12],[-3,9],[4,12],[0,2],[-3,11],[-2,14],[-5,5],[0,1],[-16,4],[-7,4],[-1,1],[4,5],[6,4],[9,5],[-2,3],[-6,7],[-5,8],[-3,2],[-1,3],[0,3],[0,8],[4,11],[-2,10],[1,8],[-1,7],[-2,5],[-1,4],[-5,7],[-2,4],[-2,3],[-2,5],[-3,5],[-3,2],[-1,1],[-4,1],[-8,-5],[-1,-1],[-1,3],[-5,-4],[-5,-1],[-5,-4],[-6,-2],[-8,-5],[-9,0],[-8,2],[-11,7],[-1,1],[-4,4],[-3,6],[-1,10],[-9,13],[-2,13],[0,1],[-5,9],[-12,8],[-5,4],[-2,2],[-2,3],[-2,6],[0,3],[0,1],[2,3],[9,6],[8,8],[1,5],[-6,9],[-1,4],[4,8],[4,5],[3,0],[0,4],[6,4],[0,1],[2,5],[0,1],[0,5],[0,12],[1,8],[-4,13],[-13,26],[-7,7],[-4,2],[-2,0],[-11,2],[-2,1],[-6,5],[-6,7],[-9,7],[-9,1],[-14,-2],[-14,0],[-3,1],[-7,3],[-2,3],[-3,6],[-1,5],[-1,3],[0,7],[4,13],[10,15],[11,9],[4,2],[8,24],[1,6],[-5,12],[-1,2],[-11,14],[6,21],[1,5],[6,6],[2,7],[0,4],[-3,5],[-15,5],[-5,5],[-4,4],[-8,-1],[-9,-6],[-5,4],[-3,2],[-7,13],[-4,4],[-2,4],[-1,8],[-9,14],[-1,3],[1,4],[5,10],[10,8],[0,2],[1,3],[0,4],[-1,3],[-8,10],[-1,3],[-1,1],[-4,26],[0,3],[4,6],[6,6],[10,8],[7,8],[2,3],[0,4],[0,4],[-1,5],[-1,1],[-4,9],[-11,11],[-23,16],[-9,17],[-3,3],[-6,3],[-2,1],[-12,0],[-3,1],[-4,12],[-4,6],[-3,7],[-3,4],[-5,2],[-16,3],[-8,4],[-2,3],[4,19],[6,3],[1,3],[-1,6],[-6,14],[1,7],[5,15],[-3,6],[1,2],[1,2],[7,7],[2,5],[0,19],[-1,3],[-3,3],[-9,3],[-8,12],[-5,3],[-4,5],[1,4],[0,3],[5,7],[7,5],[4,5],[10,14],[3,9],[-2,7],[-2,4],[-8,6],[-2,9],[-2,2],[-3,4],[-2,1],[-7,-2],[-11,9],[-6,0],[-5,1],[-5,0],[-7,-3],[-10,-3],[-12,-1],[-7,2],[-2,1],[0,3],[6,12],[0,4],[-1,1],[-2,1],[-7,-2],[-4,0],[-2,2],[-3,6],[-2,2],[-6,3],[-2,3],[-1,2],[0,3],[5,8],[0,4],[-3,5],[-1,0],[-2,1],[-17,5],[-20,8],[-3,-1],[-10,-7],[-9,3],[-11,-1],[-4,5],[-4,5],[-3,2],[-8,2],[1,10],[0,2],[2,6],[11,17],[0,3],[-5,9],[0,3],[6,10],[6,8],[0,9],[1,2],[16,18],[1,0],[1,5],[0,7],[5,5],[-2,8],[0,2],[5,5],[4,0],[2,7],[5,9],[3,1],[7,-3],[4,0],[-1,6],[-3,6],[-4,9],[1,2],[6,1],[8,3],[4,3],[2,3],[1,3],[0,3],[5,38],[0,5],[0,3],[-4,12],[0,8],[4,6],[3,9],[2,3],[19,7],[15,14],[7,6],[2,3],[0,4],[-2,14],[-2,3],[-9,3],[-2,0],[-2,5],[-5,10],[-5,4],[-3,1],[-2,-1],[-4,-4],[-4,-1],[-7,-3],[-10,-6],[-6,-1],[-2,1],[-2,6],[-2,2],[-3,1],[-8,-3],[-5,3],[-11,3],[-3,2],[-1,5],[3,9],[0,1],[0,5],[-3,14],[1,4],[4,11],[7,31],[-4,15],[-1,2],[-1,15],[0,6],[4,17],[1,26],[-2,4],[-9,5],[-6,2],[-8,4],[-2,2],[0,2],[7,12],[1,2],[-1,5],[-6,11],[-2,6],[-3,9],[9,18],[0,1],[2,5],[-1,12],[2,8],[7,8],[2,5],[0,1],[-1,22],[-2,4],[-5,6],[-6,4],[-2,0],[-13,-2],[-3,2],[-6,15],[-8,6],[-3,4],[-1,3],[1,4],[-2,9],[-7,6],[-2,5],[1,5],[0,1],[2,6],[0,3],[-1,2],[-7,1],[-1,1],[0,5],[4,8],[-1,1],[-6,5],[-2,5],[0,7],[3,5],[12,1],[5,5],[0,5],[-10,27],[-3,4],[-6,3],[-15,6],[-1,3],[1,4],[9,9],[8,3],[5,1],[6,-2],[10,-10],[3,1],[0,6],[-3,7],[-5,13],[-8,8],[-5,3],[-7,9],[-1,3],[-26,11],[-7,9],[-3,8],[0,7],[4,7],[0,3],[-7,6],[-2,4],[0,3],[2,8],[3,3],[2,8],[-1,2],[-7,2],[-4,4],[-1,2],[2,14],[-1,5],[-5,6],[-8,5],[-1,2],[-5,6],[-2,7],[0,6],[1,2],[9,5],[1,3],[-1,7],[1,3],[3,0],[8,1],[10,-2],[12,-3],[5,0],[2,-3],[-1,-2],[-3,-9],[2,-1],[5,0],[1,1],[2,9],[6,4],[3,3],[9,3],[16,2],[6,-1],[11,-8],[2,-2],[7,-3],[5,-4],[5,-6],[5,-2],[6,2],[8,5],[12,4],[10,7],[13,6],[14,2],[4,5],[5,13],[-1,5],[0,3],[-4,13],[1,4],[9,14],[1,2],[0,3],[0,4],[-5,11],[-4,15],[0,10],[1,1],[20,30],[5,12],[2,5],[1,11],[-3,19],[0,2],[1,6],[4,6],[9,9],[14,9],[10,9],[15,15],[3,5],[7,6],[4,2],[4,1],[5,-1],[1,-3],[2,-8],[7,-15],[3,-4],[6,-6],[5,-2],[15,-6],[8,-3],[29,-32],[18,-14],[4,-10],[18,-15],[3,2],[8,3],[3,-1],[1,-3],[-1,-4],[1,-2],[3,0],[3,2],[4,1],[0,-3],[-3,-7],[1,-3],[3,-4],[6,-3],[1,-1],[0,-10],[-2,-7],[1,-2],[4,-3],[-2,-6],[1,-4],[4,-4],[8,-6],[2,-4],[2,-5],[-3,-4],[3,-3],[0,-2],[-3,-5],[2,-5],[-3,-4],[2,-3],[5,-4],[10,-1],[1,-2],[-5,-3],[-1,-4],[1,-5],[3,-4],[12,-7],[9,-5],[3,-2],[7,-6],[6,-7],[6,-3],[1,-6],[11,-9],[3,-4],[0,-4],[-2,-4],[1,-3],[1,-2],[7,-1],[5,-9],[1,-4],[25,-50],[2,-20],[5,1],[3,1],[1,6],[3,2],[6,-6],[1,-4],[3,-4],[10,0],[14,-5],[21,-7],[5,4],[3,2],[6,3],[5,-1],[2,-4],[-5,-9],[-4,-4],[5,-7],[11,2],[5,-3],[2,-9],[1,-9],[4,-4],[12,-18],[3,-7],[-1,-8],[1,-7],[3,-3],[12,-8],[9,0],[1,-2],[-1,-5],[0,-7],[-7,-16],[1,-6],[4,-4],[5,-4],[4,-1],[3,-2],[2,-1],[9,-2]]]}
function IranGeo() {
var height=200,
width=200,
bubbles,
provinceMouseOver = function(d) {},
provinceClick = function(d) {},
bubbleOver = function(d) { },
bubbleOut = function(d) { },
xScale = d3.time.scale().range([0, width]),
yScale = d3.scale.linear().range([height, 0]),
zScale = d3.scale.linear(),
spanH = 40,
brush,
first = true,
zoom = 1600,
svg, projection,
brushtext,
magnitude,
clearbrush = function() {
drawBubbles([]);
var d = new Date();
brush.extent([d, d]);
svg.select(".brush").call(brush);
brushtext.style('display', 'none');
brushmin.style('display', 'none');
brushmax.style('display', 'none');
},
data=[];
function iran(selection) {
irangeo(selection);
}
function irangeo(selection) {
selection.each(function(data, i) {
// plot iran here
var element = d3.select(this);
svg = element.selectAll('svg').data([data])
.enter()
.append('svg')
.attr('width', width)
.attr('height', height)
.append('g')
.attr('class', 'graph')
.attr('transform', 'translate(' + 0 + ',' + 0 + ')');
var subunits = topojson.object(irantopo, irantopo.objects.iran).geometries;
subunits.forEach(function(item, i) {
item.data = data[item.id];
//quack date
});
projection = d3.geo.mercator()
.center([51, 35])
.scale(width * 2)
.translate([width / 3 + 50, height / 3 + 70]);
var path = d3.geo.path()
.projection(projection);
var provinces = svg.selectAll("path")
.data(subunits)
.enter().append("g")
.attr("class", "province");
provinces.append("path")
.attr("d", path)
.attr("fill", "#287E7B")
.on('mouseover', provinceMouseOver)
.on('click', provinceClick);
var labels = svg.selectAll('.label')
.data(subunits)
.enter().append("text")
.attr("class","label")
.text(function(d) { return d.id.split(/\./)[1] })
.attr('fill','white')
.attr('x', function(d) { return path.centroid(d)[0] - 10; })
.attr('y', function(d) { return path.centroid(d)[1]; });
magnitude = d3.scale.pow().exponent(7)
if (bubbles) {
zScale.domain(d3.extent(bubbles.map(function(d) { return parseFloat(d.depth) })))
.range(['red','blue']);
//drawBubbles(bubbles);
// Brush stuff. should not bundle with other stuff
xextent = d3.extent(bubbles.map(function(d) { return d.date; }));
xScale = d3.time.scale()
.domain(d3.extent(bubbles.map(function(d) { return d.date; })))
.range([0, width]);
yScale = d3.scale.linear()
.domain(d3.extent(bubbles.map(function(d) { return d.magnitude; })))
.range([0, 40]);
monthname = d3.time.format("%b");
function brushed() {
var newdata;
if (dates.compare(brush.extent()[0],brush.extent()[1]) == 0) {
var d = d3.time.month.offset(brush.extent()[0], -6);
var d2 = d3.time.month.offset(brush.extent()[0], 6 );
brush.extent([d, d2]);
svg.select(".brush").call(brush);
}
var extent = brush.extent();
newdata = bubbles.filter(function(item, i, arr) {
return dates.inRange(item.date, extent[0], extent[1]);
});
newdata.sort(function(b, a) {
return a.magnitude - b.magnitude;
});
var xpos = xScale(extent[0]) + (xScale(extent[1]) - xScale(extent[0])) / 2 - 5;
brushtext.text(newdata.length).attr('x', xpos)
.style('display','block');
brushmin.text(monthname(extent[0]))
.attr('x', xScale(extent[0]) - 30)
.style('display','block');
brushmax.text(monthname(extent[1]))
.attr('x', xScale(extent[1]) + 5)
.style('display','block');
drawBubbles(newdata);
}
brush = d3.svg.brush()
.x(xScale)
.on("brush", brushed);
var area = d3.svg.area()
.interpolate("monotone")
.x(function(d) {console.log(xScale(d.date)); return xScale(d.date); })
.y0(0)
.y1(function(d) {return yScale(d.magnitude)});
brushmin = svg.append("text")
.style('display', 'none')
.attr('x', 0)
.attr('y', 45)
.attr('fill', 'black')
.style('font-weight', 'bold');
brushmax = svg.append("text")
.style('display', 'none')
.attr('x', 0)
.attr('y', 45)
.attr('fill', 'black')
.style('font-weight', 'bold');
var timespan = svg.append("g")
.attr("transform", "translate(" + 0 + "," + 10 + ")");
/*
timespan.append("path")
.datum(bubbles)
.attr("class", "timespan")
.attr("d", area)
*/
timespan.append("rect")
.attr("class", "timespan")
.attr("x", 0)
.attr("y", 0)
.attr("width", xScale(xextent[1]))
.attr("height", 40);
var xAxis = d3.svg.axis().scale(xScale).orient("bottom");
timespan.append("g").attr("class", "x axis")
.attr("transform", "translate(0,0)").call(xAxis);
timespan.append("g")
.attr("class", "x brush")
.call(brush)
.selectAll("rect")
.attr("y", -5)
.attr("height", spanH + 10);
brushtext = svg.append("text")
.style('display', 'none')
.attr('x', 200)
.attr('y', 45)
.attr('fill', 'white')
.style('font-weight', 'bold');
}
});
}
function drawBubbles(values){
var circle = svg.selectAll(".bubble").data(values, function(d) { return d.date.getTime() });
var delay = 0;
if (first) first = false;
circle.enter().append("circle")
.attr("class", "bubble")
.attr("cx", function(d) { return projection([d.longitude, d.lattitude])[0];})
.attr("cy", function(d) { return projection([d.longitude, d.lattitude])[1];})
.attr("r", 0)
.on("mouseover", bubbleOver)
.on("mouseout", bubbleOut)
.transition().delay(delay)
.attr("r", function(d) { return magnitude(d.magnitude)/10050 });
circle.exit()
.transition()
.attr("r",0)
.remove();
}
iran.redrawBubbles = function(data) {
drawBubbles(data);
}
iran.width = function(_) {
if(!arguments.length) return width;
width = _;
return iran;
}
iran.height = function(_) {
if(!arguments.length) return height;
height = _;
return iran;
}
iran.zoom = function(_) {
if(!arguments.length) return zoom;
zoom = _;
return iran;
}
iran.bubbles = function(_) {
if (!arguments.length) return bubbles;
bubbles = _;
return iran;
}
iran.bubbleOver = function(_) {
bubbleOver = _;
return iran;
}
iran.bubbleOut = function(_) {
bubbleOut = _;
return iran;
}
iran.onmouseover = function(_) {
if (!arguments.length) return provinceMouseOver;
provinceMouseOver = _;
return iran;
}
iran.onclick = function(_) {
if (!arguments.length) return provinceClick;
provinceClick = _;
return iran;
}
iran.magnitude = function(_) {
return magnitude(_);
}
iran.clearbrush = function() {
clearbrush();
}
iran.projection = function() {
return projection;
}
iran.svg = function() {
return svg;
}
return iran;
}