Skip to content

Instantly share code, notes, and snippets.

@tysonanderson
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tysonanderson/2ebb32e06e2f4ce207a2 to your computer and use it in GitHub Desktop.
Save tysonanderson/2ebb32e06e2f4ce207a2 to your computer and use it in GitHub Desktop.
US refugee arrivals by placement state and processing country
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
width: 960px;
height: 500px;
position: relative;
}
.states {
fill: #ccc;
stroke: #f7f7f7;
stroke-width: .25;
}
.link{
stroke: #ff0000;
fill:none;
stroke-opacity: 0.2;
pointer-events: none;
}
.world{
stroke: none;
fill: #ccc;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script>
var width = 960,
height = 500;
var projection = d3.geo.mercator()
.translate([480, 350])
.scale(160);
var path = d3.geo.path().projection(projection);
var linkWidth = d3.scale.linear()
.range([0,5]);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var desc;
var loadNotify = svg.append("text")
.attr("x", 10)
.attr("y", 25)
.text("Loading...");
queue()
.defer(d3.json, "us.json")
.defer(d3.json, "us-state-centroids.json")
.defer(d3.json, "world-50m.json")
.defer(d3.json, "world_centroids.json")
.defer(d3.tsv, "world-country-names.tsv")
.defer(d3.csv, "refugee_id.csv")
.await(ready);
function ready(error, us, centroid, world, world_cen, world_names, refugee) {
loadNotify.remove();
var nested_data = d3.nest()
.key(function(d) { return d.fips; })
.rollup(function(state) { return d3.sum(state, function (d){return d.value}); })
.entries(refugee);
var nested_world = d3.nest()
.key(function(d) { return d.id; })
.rollup(function(country) { return d3.sum(country, function (d){return d.value}); })
.entries(refugee);
linkWidth.domain([0, d3.max(refugee, function(d){return +d.value})])
svg.append("g")
.attr("class", "world")
.selectAll("path")
.data(topojson.feature(world, world.objects.countries).features)
.enter()
.append("path")
.attr("d", path)
.style("fill", function (d){ return checkInvolveCountries(d.id) ? "#ccc" : "#eee"});
svg.append("g")
.attr("class", "states")
.selectAll("path")
.data(topojson.feature(us, us.objects.states).features)
.enter()
.append("path")
.attr("d", path)
.style("fill", function (d){ return checkInvolveStates(d.id) ? "#ccc" : "#eee"});
desc = svg.append("text")
.attr("x", 10)
.attr("y", height - 10)
.text("");
svg.select('.world').selectAll('path').on('mouseover', function (e){
if(checkInvolveCountries(e.id)){
desc.text(getCountryName(e.id) + ": " + getCountryTotal(e.id) + " exited");
d3.select('.states')
.selectAll('path')
.transition()
.style('fill', function (d){
if( getInvolvedStates(e.id, d.id) ){
return '#4adda1';
}
else if( checkInvolveStates(d.id) ){
return "#ccc";
}
else{
return "#eee";
}
});
d3.select(this).style('fill', '#5594b7');
svg.select(".arc").selectAll("path")
.transition()
.style('stroke-opacity', function (d){
if(+d.id === +e.id){
return 0.2;
}
else{
return 0;
}
});
};
} );
svg.select('.world').selectAll('path').on('mouseout', function (e){
d3.select('.states')
.selectAll('path')
.style("fill", function (d){ return checkInvolveStates(d.id) ? "#ccc" : "#eee"});
d3.select('.world')
.selectAll('path')
.style("fill", function (d){ return checkInvolveCountries(d.id) ? "#ccc" : "#eee"});
desc.text('');
svg.select(".arc").selectAll("path").transition().style('stroke-opacity', 0.2);
} );
svg.select('.states').selectAll('path').on('mouseover', function (e){
if(checkInvolveStates(e.id)){
desc.text(getStateName(e.id) + ": " + getValue(e.id) + " entered");
d3.select('.world')
.selectAll('path')
.transition()
.style('fill', function (d){
if( getInvolvedCountries(e.id, d.id) ){
return '#5594b7';
}
else if( checkInvolveCountries(d.id) ){
return "#ccc";
}
else{
return "#eee";
}
});
d3.select(this).style('fill', '#4adda1');
svg.select(".arc").selectAll("path")
.transition()
.style('stroke-opacity', function (d){
if(+d.fips === +e.id){
return 0.2;
}
else{
return 0;
}
});
};
} );
svg.select('.states').selectAll('path').on('mouseout', function (e){
d3.select('.states')
.selectAll('path')
.style("fill", function (d){ return checkInvolveStates(d.id) ? "#ccc" : "#eee"});
d3.select('.world')
.selectAll('path')
.style("fill", function (d){ return checkInvolveCountries(d.id) ? "#ccc" : "#eee"});
desc.text('');
svg.select(".arc").selectAll("path").transition().style('stroke-opacity', 0.2);
} );
svg.append("g")
.attr("class", "arc")
.selectAll('path')
.data(refugee)
.enter()
.append("path")
.attr('class', 'link')
.attr('d', function (d){ return path(getArc(d.id, d.fips))})
.style('stroke-width', function (d){ return linkWidth(d.value)});
function getValue(id){
var rval;
nested_data.map(function (d){
if(+d.key === id){
rval = d;
}
});
if(rval == undefined){
return 0;
}
else{
return rval.values;
}
};
function getCountryTotal(id){
var match = nested_world.filter(function (d){
return +id === +d.key;
});
return match[0].values;
};
function getCountryName(id){
var match = world_names.filter(function (d){
return +id === +d.id;
});
return match[0].name;
};
function getStateName(id){
var match = centroid.features.filter( function (d){
return +id === +d.id
});
return match[0].properties.name
};
function getArc(src,dest){
var stateMatch = centroid.features.filter(function(d){
return +d.id === +dest;
});
var countryMatch = world_cen.filter(function(d){
return +d.id === +src;
});
return {type: "LineString", coordinates: [stateMatch[0].geometry.coordinates, countryMatch[0].centroid]}
};
function checkInvolveCountries(id){
var inv = refugee.filter(function (d){
return +d.id === +id;
});
return (inv.length > 0);
};
function checkInvolveStates(id){
var inv = refugee.filter(function (d){
return +d.fips === +id;
});
return (inv.length > 0);
};
function getInvolvedStates(id, id2){
var matches = refugee.filter(function (d){
return +d.id === +id;
});
var involved = matches.filter(function (d){
return +d.fips === +id2;
});
return involved.length > 0;
};
function getInvolvedCountries(id, id2){
var matches = refugee.filter(function (d){
return +d.fips === +id;
});
var involved = matches.filter(function (d){
return +d.id === +id2;
});
return involved.length > 0;
};
};
</script>
destination name id value fips
1 Alabama Malta 470 2 1
2 Alabama Malaysia 458 3 1
3 Alabama Jordan 400 4 1
4 Alabama Ecuador 218 5 1
5 Alabama Iraq 368 3 1
6 Alaska Iraq 368 6 2
7 Alaska South Africa 710 1 2
8 Alaska Ethiopia 231 5 2
9 Alaska Egypt 818 3 2
10 Alaska Rwanda 646 9 2
11 Arizona Kenya 404 7 4
12 Arizona Turkey 792 57 4
13 Arizona Burundi 108 21 4
14 Arizona Egypt 818 5 4
15 Arizona Chad 148 8 4
16 Arizona Austria 40 2 4
17 Arizona Ecuador 218 13 4
18 Arizona Pakistan 586 3 4
19 Arizona Kuwait 414 4 4
20 Arizona Thailand 764 8 4
21 Arizona South Africa 710 19 4
22 Arizona Malta 470 10 4
23 Arizona Jordan 400 13 4
24 Arizona Gabon 266 3 4
25 Arizona Ethiopia 231 38 4
26 Arizona Uganda 800 6 4
27 Arizona Lebanon 422 6 4
28 Arizona Cuba 192 10 4
29 Arizona Iraq 368 49 4
30 Arizona Nepal 524 12 4
31 Arizona Malaysia 458 1 4
32 Arizona Rwanda 646 23 4
33 California Cuba 192 1 6
34 California Armenia 51 14 6
35 California Jordan 400 39 6
36 California Lebanon 422 35 6
37 California Azerbaijan 31 1 6
38 California Kenya 404 2 6
39 California Malaysia 458 4 6
40 California Belarus 112 1 6
41 California Ecuador 218 3 6
42 California Moldova 498 6 6
43 California Nepal 524 3 6
44 California Iraq 368 125 6
45 California United Arab Emirates 784 9 6
46 California Austria 40 163 6
47 California Thailand 764 9 6
48 California Sri Lanka 144 6 6
49 California Mozambique 508 6 6
50 California South Africa 710 9 6
51 California Turkey 792 110 6
52 California Ukraine 804 27 6
53 California Egypt 818 5 6
54 California Kuwait 414 2 6
55 California Djibouti 262 5 6
56 Colorado Burundi 108 6 8
57 Colorado Botswana 72 6 8
58 Colorado Malaysia 458 18 8
59 Colorado Sri Lanka 144 2 8
60 Colorado Sudan 729 2 8
61 Colorado Jordan 400 12 8
62 Colorado Uganda 800 9 8
63 Colorado Egypt 818 1 8
64 Colorado Kenya 404 2 8
65 Colorado Mozambique 508 16 8
66 Colorado Thailand 764 3 8
67 Colorado Chad 148 13 8
68 Colorado Ukraine 804 2 8
69 Colorado Nepal 524 10 8
70 Colorado Cuba 192 1 8
71 Colorado Malta 470 2 8
72 Colorado Iraq 368 12 8
73 Colorado South Africa 710 6 8
74 Colorado Rwanda 646 3 8
75 Colorado Ethiopia 231 15 8
76 Colorado Turkey 792 12 8
77 Colorado Pakistan 586 6 8
78 Connecticut Jordan 400 5 9
79 Connecticut Sudan 729 1 9
80 Connecticut Rwanda 646 7 9
81 Connecticut Ecuador 218 9 9
82 Connecticut Egypt 818 6 9
83 Connecticut Turkey 792 4 9
84 Connecticut Ethiopia 231 1 9
85 Connecticut Iraq 368 8 9
86 Florida Ethiopia 231 19 12
87 Florida Lebanon 422 9 12
88 Florida Russia 643 2 12
89 Florida Kenya 404 4 12
90 Florida Cuba 192 156 12
91 Florida Djibouti 262 1 12
92 Florida Kuwait 414 4 12
93 Florida Uganda 800 3 12
94 Florida Ecuador 218 33 12
95 Florida Malaysia 458 25 12
96 Florida Burma 104 6 12
97 Florida Austria 40 2 12
98 Florida Iraq 368 22 12
99 Florida Ukraine 804 4 12
100 Florida Jordan 400 2 12
101 Florida Thailand 764 4 12
102 Florida Turkey 792 11 12
103 Florida Chad 148 1 12
104 Hawaii Malaysia 458 3 15
105 Idaho Jordan 400 8 16
106 Idaho Uzbekistan 860 5 16
107 Idaho Kenya 404 10 16
108 Idaho Malaysia 458 6 16
109 Idaho Ecuador 218 4 16
110 Idaho South Africa 710 7 16
111 Idaho Turkey 792 5 16
112 Idaho Austria 40 3 16
113 Idaho Egypt 818 1 16
114 Idaho Ethiopia 231 13 16
115 Idaho Iraq 368 8 16
116 Illinois Nepal 524 3 17
117 Illinois Iraq 368 41 17
118 Illinois Ethiopia 231 13 17
119 Illinois Jordan 400 6 17
120 Illinois Rwanda 646 13 17
121 Illinois Kenya 404 3 17
122 Illinois Lebanon 422 1 17
123 Illinois Cuba 192 2 17
124 Illinois Cameroon 120 4 17
125 Illinois Thailand 764 2 17
126 Illinois Turkey 792 26 17
127 Illinois Yemen 887 1 17
128 Illinois Chad 148 8 17
129 Illinois South Africa 710 8 17
130 Illinois Malaysia 458 59 17
131 Illinois Austria 40 2 17
132 Illinois Pakistan 586 2 17
133 Illinois Ecuador 218 20 17
134 Illinois Burma 104 3 17
135 Illinois Ukraine 804 5 17
136 Illinois Uganda 800 26 17
137 Illinois Mozambique 508 9 17
138 Indiana Mozambique 508 3 18
139 Indiana Burundi 108 7 18
140 Indiana South Africa 710 5 18
141 Indiana Lebanon 422 3 18
142 Indiana Thailand 764 18 18
143 Indiana Iraq 368 1 18
144 Indiana Rwanda 646 14 18
145 Indiana Jordan 400 6 18
146 Indiana Malaysia 458 45 18
147 Indiana India 356 1 18
148 Indiana Egypt 818 1 18
149 Indiana Burma 104 11 18
150 Indiana Ethiopia 231 1 18
151 Iowa Ethiopia 231 5 19
152 Iowa South Africa 710 2 19
153 Iowa Cuba 192 2 19
154 Iowa Malaysia 458 12 19
155 Iowa Turkey 792 2 19
156 Iowa Nepal 524 7 19
157 Iowa India 356 1 19
158 Iowa Burundi 108 4 19
159 Iowa Thailand 764 7 19
160 Iowa Kenya 404 7 19
161 Kansas South Africa 710 6 20
162 Kansas Turkey 792 1 20
163 Kansas Egypt 818 2 20
164 Kansas Rwanda 646 16 20
165 Kansas Iraq 368 1 20
166 Kansas Jordan 400 3 20
167 Kansas Ethiopia 231 9 20
168 Kansas Nepal 524 13 20
169 Kansas Malta 470 1 20
170 Kansas Malaysia 458 20 20
171 Kansas Thailand 764 12 20
172 Kansas Uganda 800 3 20
173 Kentucky India 356 7 21
174 Kentucky Turkey 792 11 21
175 Kentucky South Africa 710 19 21
176 Kentucky Ethiopia 231 1 21
177 Kentucky Sudan 729 2 21
178 Kentucky Malaysia 458 16 21
179 Kentucky Egypt 818 1 21
180 Kentucky Uganda 800 15 21
181 Kentucky Jordan 400 6 21
182 Kentucky United Arab Emirates 784 4 21
183 Kentucky Burundi 108 6 21
184 Kentucky Cuba 192 12 21
185 Kentucky Burma 104 1 21
186 Kentucky Kenya 404 8 21
187 Kentucky Kuwait 414 3 21
188 Kentucky Nepal 524 9 21
189 Kentucky Rwanda 646 8 21
190 Kentucky Thailand 764 8 21
191 Kentucky Iraq 368 13 21
192 Louisiana Kuwait 414 1 22
193 Louisiana Cuba 192 2 22
194 Louisiana Iraq 368 5 22
195 Louisiana Turkey 792 1 22
196 Louisiana Rwanda 646 4 22
197 Louisiana Jordan 400 4 22
198 Louisiana Ecuador 218 12 22
199 Maine Iraq 368 13 23
200 Maine Ethiopia 231 3 23
201 Maine Turkey 792 7 23
202 Maine South Africa 710 9 23
203 Maine Kuwait 414 3 23
204 Maine Uganda 800 1 23
205 Maryland Burma 104 1 24
206 Maryland Uganda 800 1 24
207 Maryland Iraq 368 16 24
208 Maryland Nepal 524 9 24
209 Maryland Rwanda 646 17 24
210 Maryland Djibouti 262 1 24
211 Maryland Malta 470 3 24
212 Maryland Turkey 792 5 24
213 Maryland Chad 148 11 24
214 Maryland Jordan 400 1 24
215 Maryland Malaysia 458 65 24
216 Maryland Ethiopia 231 6 24
217 Massachusetts Slovakia 703 1 25
218 Massachusetts Uganda 800 11 25
219 Massachusetts Russia 643 1 25
220 Massachusetts Kenya 404 10 25
221 Massachusetts South Africa 710 17 25
222 Massachusetts Turkey 792 24 25
223 Massachusetts Malaysia 458 2 25
224 Massachusetts Sri Lanka 144 2 25
225 Massachusetts Kyrgyzstan 417 9 25
226 Massachusetts Ukraine 804 2 25
227 Massachusetts Thailand 764 1 25
228 Massachusetts Pakistan 586 1 25
229 Massachusetts Ethiopia 231 26 25
230 Massachusetts Djibouti 262 1 25
231 Massachusetts Malta 470 6 25
232 Massachusetts Jordan 400 6 25
233 Massachusetts Burundi 108 9 25
234 Massachusetts Nepal 524 8 25
235 Massachusetts Kazakhstan 398 4 25
236 Massachusetts Iraq 368 17 25
237 Michigan Sri Lanka 144 4 26
238 Michigan Egypt 818 5 26
239 Michigan Iraq 368 48 26
240 Michigan Uganda 800 7 26
241 Michigan Ethiopia 231 12 26
242 Michigan Turkey 792 58 26
243 Michigan Kenya 404 6 26
244 Michigan United Arab Emirates 784 11 26
245 Michigan Austria 40 1 26
246 Michigan Syria 760 3 26
247 Michigan India 356 4 26
248 Michigan Nepal 524 4 26
249 Michigan Burma 104 8 26
250 Michigan Indonesia 360 3 26
251 Michigan Jordan 400 40 26
252 Michigan Kuwait 414 2 26
253 Michigan Lebanon 422 19 26
254 Michigan Malaysia 458 31 26
255 Michigan Thailand 764 5 26
256 Michigan Rwanda 646 14 26
257 Minnesota Egypt 818 1 27
258 Minnesota Ethiopia 231 30 27
259 Minnesota Malta 470 2 27
260 Minnesota Kenya 404 8 27
261 Minnesota Turkey 792 4 27
262 Minnesota Nepal 524 5 27
263 Minnesota Djibouti 262 3 27
264 Minnesota Yemen 887 1 27
265 Minnesota Thailand 764 102 27
266 Minnesota Jordan 400 9 27
267 Minnesota Malaysia 458 7 27
268 Minnesota South Africa 710 48 27
269 Minnesota Ukraine 804 1 27
270 Minnesota Indonesia 360 3 27
271 Minnesota Iraq 368 1 27
272 Missouri Uganda 800 4 29
273 Missouri Malaysia 458 8 29
274 Missouri Mozambique 508 11 29
275 Missouri Egypt 818 1 29
276 Missouri Kenya 404 1 29
277 Missouri Malta 470 1 29
278 Missouri Dem. Rep. Congo 180 3 29
279 Missouri Romania 642 4 29
280 Missouri South Africa 710 10 29
281 Missouri Jordan 400 4 29
282 Missouri Kuwait 414 19 29
283 Missouri Turkey 792 5 29
284 Missouri Cuba 192 4 29
285 Missouri Thailand 764 17 29
286 Missouri Lebanon 422 1 29
287 Missouri Nepal 524 4 29
288 Missouri Ethiopia 231 28 29
289 Missouri Syria 760 6 29
290 Missouri Djibouti 262 3 29
291 Missouri Rwanda 646 1 29
292 Missouri Iraq 368 13 29
293 Missouri Cameroon 120 5 29
294 Nebraska Turkey 792 19 31
295 Nebraska Iraq 368 1 31
296 Nebraska Thailand 764 39 31
297 Nebraska Malaysia 458 7 31
298 Nebraska Malta 470 1 31
299 Nebraska Burma 104 3 31
300 Nebraska Ethiopia 231 1 31
301 Nebraska Uganda 800 11 31
302 Nebraska Nepal 524 11 31
303 Nevada Kenya 404 1 32
304 Nevada South Africa 710 2 32
305 Nevada Uganda 800 1 32
306 Nevada Iraq 368 4 32
307 Nevada Cuba 192 2 32
308 Nevada Ethiopia 231 2 32
309 Nevada Malta 470 1 32
310 Nevada Jordan 400 1 32
311 Nevada Turkey 792 5 32
312 New Hampshire Burundi 108 4 33
313 New Hampshire Rwanda 646 6 33
314 New Hampshire Iraq 368 6 33
315 New Hampshire Nepal 524 2 33
316 New Hampshire South Africa 710 3 33
317 New Hampshire Malaysia 458 2 33
318 New Jersey Iraq 368 6 34
319 New Jersey Malaysia 458 8 34
320 New Jersey United Arab Emirates 784 1 34
321 New Jersey Ukraine 804 2 34
322 New Jersey Cuba 192 11 34
323 New Mexico Turkey 792 6 35
324 New Mexico Ecuador 218 14 35
325 New Mexico Cuba 192 1 35
326 New Mexico Iraq 368 8 35
327 New York Ethiopia 231 31 36
328 New York South Africa 710 16 36
329 New York Cuba 192 10 36
330 New York Turkey 792 28 36
331 New York United Arab Emirates 784 6 36
332 New York Nepal 524 23 36
333 New York Kenya 404 12 36
334 New York Uganda 800 1 36
335 New York Malta 470 8 36
336 New York Moldova 498 2 36
337 New York Malaysia 458 42 36
338 New York Lebanon 422 1 36
339 New York Jordan 400 8 36
340 New York Rwanda 646 3 36
341 New York Austria 40 3 36
342 New York Djibouti 262 1 36
343 New York Thailand 764 41 36
344 New York Burundi 108 6 36
345 New York Kuwait 414 1 36
346 New York Ukraine 804 9 36
347 New York Burma 104 8 36
348 New York Iraq 368 49 36
349 New York Russia 643 11 36
350 New York Azerbaijan 31 1 36
351 New York Indonesia 360 3 36
352 New York Egypt 818 13 36
353 North Carolina Rwanda 646 8 37
354 North Carolina Malaysia 458 33 37
355 North Carolina Iraq 368 26 37
356 North Carolina Sudan 729 2 37
357 North Carolina Cuba 192 13 37
358 North Carolina Romania 642 5 37
359 North Carolina Lebanon 422 13 37
360 North Carolina Malta 470 6 37
361 North Carolina Thailand 764 21 37
362 North Carolina China 156 1 37
363 North Carolina Mozambique 508 11 37
364 North Carolina Burma 104 5 37
365 North Carolina Nepal 524 7 37
366 North Carolina South Africa 710 16 37
367 North Carolina Burundi 108 16 37
368 North Carolina Moldova 498 7 37
369 North Carolina Egypt 818 21 37
370 North Carolina Ethiopia 231 13 37
371 North Carolina Ukraine 804 3 37
372 North Carolina Turkey 792 1 37
373 North Carolina Ecuador 218 17 37
374 North Carolina Jordan 400 14 37
375 North Carolina Uganda 800 3 37
376 North Dakota Kenya 404 5 38
377 North Dakota Jordan 400 1 38
378 North Dakota Nepal 524 27 38
379 North Dakota South Africa 710 1 38
380 North Dakota Iraq 368 6 38
381 Ohio Egypt 818 6 39
382 Ohio Turkey 792 14 39
383 Ohio Kenya 404 10 39
384 Ohio Burma 104 2 39
385 Ohio Rwanda 646 26 39
386 Ohio Ecuador 218 14 39
387 Ohio Nepal 524 70 39
388 Ohio Chad 148 11 39
389 Ohio Ethiopia 231 19 39
390 Ohio Thailand 764 12 39
391 Ohio South Africa 710 10 39
392 Ohio Kuwait 414 3 39
393 Ohio Iraq 368 36 39
394 Ohio Malaysia 458 10 39
395 Ohio Pakistan 586 9 39
396 Ohio Dem. Rep. Congo 180 4 39
397 Ohio Djibouti 262 1 39
398 Ohio Georgia 268 2 39
399 Ohio Jordan 400 10 39
400 Oklahoma Turkey 792 4 40
401 Oklahoma Burma 104 5 40
402 Oklahoma India 356 11 40
403 Oregon Malaysia 458 7 41
404 Oregon Slovakia 703 11 41
405 Oregon Iraq 368 8 41
406 Oregon Turkey 792 4 41
407 Oregon Malta 470 3 41
408 Oregon Kenya 404 10 41
409 Oregon Vietnam 704 4 41
410 Oregon Thailand 764 8 41
411 Oregon South Africa 710 6 41
412 Pennsylvania Jordan 400 11 42
413 Pennsylvania Kazakhstan 398 5 42
414 Pennsylvania Turkey 792 8 42
415 Pennsylvania Ethiopia 231 12 42
416 Pennsylvania Nepal 524 34 42
417 Pennsylvania Sri Lanka 144 1 42
418 Pennsylvania Malaysia 458 22 42
419 Pennsylvania Iraq 368 22 42
420 Pennsylvania Rwanda 646 31 42
421 Pennsylvania Malta 470 3 42
422 Pennsylvania Egypt 818 1 42
423 Pennsylvania Thailand 764 24 42
424 Pennsylvania South Africa 710 21 42
425 Pennsylvania Nigeria 566 4 42
426 Pennsylvania Ukraine 804 2 42
427 Pennsylvania Uganda 800 1 42
428 Pennsylvania Lebanon 422 4 42
429 Rhode Island Ecuador 218 21 44
430 Rhode Island Jordan 400 7 44
431 Rhode Island South Africa 710 3 44
432 Rhode Island Mozambique 508 11 44
433 Rhode Island Turkey 792 6 44
434 South Carolina Malta 470 1 45
435 South Carolina Thailand 764 1 45
436 South Carolina Burma 104 6 45
437 South Carolina Tajikistan 762 4 45
438 South Dakota Thailand 764 23 46
439 South Dakota Malta 470 3 46
440 South Dakota South Africa 710 12 46
441 South Dakota Iraq 368 1 46
442 South Dakota Egypt 818 1 46
443 Tennessee Ethiopia 231 11 47
444 Tennessee Thailand 764 9 47
445 Tennessee Mozambique 508 12 47
446 Tennessee Jordan 400 3 47
447 Tennessee Ecuador 218 3 47
448 Tennessee Ukraine 804 1 47
449 Tennessee Burma 104 12 47
450 Tennessee Turkey 792 5 47
451 Tennessee Iraq 368 32 47
452 Tennessee Uganda 800 9 47
453 Tennessee Egypt 818 7 47
454 Tennessee Nepal 524 14 47
455 Tennessee Rwanda 646 6 47
456 Tennessee Cuba 192 11 47
457 Tennessee South Africa 710 24 47
458 Tennessee Malta 470 6 47
459 Tennessee Malaysia 458 22 47
460 Texas South Africa 710 19 48
461 Texas Lebanon 422 8 48
462 Texas Thailand 764 29 48
463 Texas Mozambique 508 17 48
464 Texas Burma 104 17 48
465 Texas Iraq 368 178 48
466 Texas Cuba 192 16 48
467 Texas Nigeria 566 1 48
468 Texas Uganda 800 10 48
469 Texas Djibouti 262 3 48
470 Texas United Arab Emirates 784 12 48
471 Texas Chad 148 7 48
472 Texas Ecuador 218 8 48
473 Texas Ukraine 804 1 48
474 Texas Syria 760 1 48
475 Texas Nepal 524 38 48
476 Texas Jordan 400 32 48
477 Texas Turkey 792 56 48
478 Texas Ethiopia 231 36 48
479 Texas Burundi 108 6 48
480 Texas Romania 642 7 48
481 Texas Malaysia 458 89 48
482 Texas Sri Lanka 144 2 48
483 Texas Egypt 818 5 48
484 Texas Austria 40 10 48
485 Texas Malta 470 6 48
486 Texas Pakistan 586 9 48
487 Texas Kenya 404 21 48
488 Texas Cameroon 120 1 48
489 Texas Rwanda 646 36 48
490 Utah Sri Lanka 144 1 49
491 Utah Kuwait 414 9 49
492 Utah Lebanon 422 1 49
493 Utah Burundi 108 2 49
494 Utah Turkey 792 7 49
495 Utah Russia 643 1 49
496 Utah Malta 470 4 49
497 Utah Burma 104 3 49
498 Utah Thailand 764 7 49
499 Utah Iraq 368 6 49
500 Utah South Africa 710 3 49
501 Utah Ethiopia 231 29 49
502 Utah Malaysia 458 5 49
503 Utah Kenya 404 1 49
504 Utah Uganda 800 11 49
505 Vermont Ethiopia 231 7 50
506 Vermont Nepal 524 21 50
507 Virginia United Arab Emirates 784 2 51
508 Virginia Kenya 404 10 51
509 Virginia Jordan 400 1 51
510 Virginia Egypt 818 5 51
511 Virginia Malaysia 458 11 51
512 Virginia Ukraine 804 4 51
513 Virginia Turkey 792 18 51
514 Virginia Nepal 524 9 51
515 Virginia Lebanon 422 2 51
516 Virginia Iraq 368 34 51
517 Virginia Austria 40 5 51
518 Virginia Cuba 192 1 51
519 Washington Mozambique 508 10 53
520 Washington Iraq 368 24 53
521 Washington Kazakhstan 398 3 53
522 Washington Turkey 792 23 53
523 Washington South Africa 710 6 53
524 Washington Kuwait 414 9 53
525 Washington Rwanda 646 2 53
526 Washington Malta 470 1 53
527 Washington Moldova 498 13 53
528 Washington Kenya 404 4 53
529 Washington Nepal 524 14 53
530 Washington Cuba 192 3 53
531 Washington Sudan 729 3 53
532 Washington Malaysia 458 23 53
533 Washington Egypt 818 11 53
534 Washington Burma 104 3 53
535 Washington Jordan 400 6 53
536 Washington Thailand 764 8 53
537 Washington Ethiopia 231 19 53
538 Washington Uzbekistan 860 6 53
539 Washington Lebanon 422 5 53
540 Washington Ukraine 804 32 53
541 Washington Uganda 800 7 53
542 Wisconsin Kenya 404 10 55
543 Wisconsin Thailand 764 13 55
544 Wisconsin Mozambique 508 8 55
545 Wisconsin Malta 470 4 55
546 Wisconsin Rwanda 646 2 55
547 Wisconsin Malaysia 458 31 55
548 Wisconsin Iraq 368 11 55
549 Wisconsin Cuba 192 6 55
550 Wisconsin Burundi 108 2 55
551 Wisconsin Ethiopia 231 14 55
552 Wisconsin Austria 40 3 55
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"countries":{"type":"GeometryCollection","bbox":[-180,-89.99892578124998,180.00000000000003,83.59960937500006],"geometries":[{"type":"Polygon","id":533,"arcs":[[0]]},{"type":"Polygon","id":4,"arcs":[[1,2,3,4,5,6,7]]},{"type":"MultiPolygon","id":24,"arcs":[[[8,9,10,11]],[[12,13,14]]]},{"type":"Polygon","id":660,"arcs":[[15]]},{"type":"Polygon","id":8,"arcs":[[16,17,18,19,20]]},{"type":"MultiPolygon","id":248,"arcs":[[[21]],[[22]],[[23]]]},{"type":"Polygon","id":20,"arcs":[[24,25]]},{"type":"MultiPolygon","id":784,"arcs":[[[26]],[[27]],[[28]],[[29]],[[30,31,32,33,34],[35]]]},{"type":"MultiPolygon","id":32,"arcs":[[[36]],[[37,38]],[[39]],[[40,41,42,43,44,45]]]},{"type":"MultiPolygon","id":51,"arcs":[[[46]],[[47,48,49,50,51],[52]]]},{"type":"Polygon","id":16,"arcs":[[53]]},{"type":"MultiPolygon","id":10,"arcs":[[[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]]]},{"type":"Polygon","id":36,"arcs":[[162]]},{"type":"MultiPolygon","id":260,"arcs":[[[163]],[[164]],[[165]]]},{"type":"MultiPolygon","id":28,"arcs":[[[166]],[[167]]]},{"type":"MultiPolygon","id":36,"arcs":[[[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]]]},{"type":"Polygon","id":40,"arcs":[[210,211,212,213,214,215,216,217,218]]},{"type":"MultiPolygon","id":31,"arcs":[[[219,220,-49]],[[-53]],[[221,222,-52,223,224],[-47]]]},{"type":"Polygon","id":108,"arcs":[[225,226,227]]},{"type":"Polygon","id":56,"arcs":[[228,229,230,231,232,233,234]]},{"type":"Polygon","id":204,"arcs":[[235,236,237,238,239]]},{"type":"Polygon","id":854,"arcs":[[240,-239,241,242,243,244]]},{"type":"MultiPolygon","id":50,"arcs":[[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251,252,253]]]},{"type":"Polygon","id":100,"arcs":[[254,255,256,257,258,259]]},{"type":"Polygon","id":48,"arcs":[[260]]},{"type":"MultiPolygon","id":44,"arcs":[[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[271]],[[272]],[[273]],[[274]],[[275]]]},{"type":"Polygon","id":70,"arcs":[[276,277,278,279,280]]},{"type":"Polygon","id":652,"arcs":[[281]]},{"type":"Polygon","id":112,"arcs":[[282,283,284,285,286]]},{"type":"MultiPolygon","id":84,"arcs":[[[287]],[[288]],[[289,290,291]]]},{"type":"Polygon","id":60,"arcs":[[292]]},{"type":"Polygon","id":68,"arcs":[[293,-46,294,295,296]]},{"type":"MultiPolygon","id":76,"arcs":[[[297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[313,314,315,316,-42,317,-297,318,319,320,321]]]},{"type":"Polygon","id":52,"arcs":[[322]]},{"type":"MultiPolygon","id":96,"arcs":[[[323,324]],[[325,326]]]},{"type":"Polygon","id":64,"arcs":[[327,328]]},{"type":"Polygon","id":72,"arcs":[[329,330,331]]},{"type":"Polygon","id":140,"arcs":[[332,333,334,335,336,337]]},{"type":"MultiPolygon","id":124,"arcs":[[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351]],[[352]],[[353,354]],[[355]],[[356]],[[357]],[[358]],[[359]],[[360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370]],[[371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379]],[[380]],[[381]],[[382,383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440,441,442,443]],[[444]],[[445]],[[446]],[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]],[[468]],[[469]],[[470]],[[471]],[[472]],[[473]],[[474]],[[475]],[[476]],[[477]],[[478]],[[479]],[[480]],[[481]],[[482]],[[483]]]},{"type":"Polygon","id":756,"arcs":[[-217,484,-215,485,486,487]]},{"type":"MultiPolygon","id":152,"arcs":[[[488]],[[489]],[[490]],[[491]],[[492]],[[493]],[[494]],[[495]],[[496]],[[-38,497]],[[498]],[[499]],[[500]],[[501]],[[502]],[[503]],[[504]],[[505]],[[506]],[[507]],[[508]],[[509]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[-45,518,519,-295]]]},{"type":"MultiPolygon","id":156,"arcs":[[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532,533,534,535,536,537,538,539,540,541,-329,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,-2,557,558,559,560,561,562]]]},{"type":"MultiPolygon","id":384,"arcs":[[[563,564]],[[-244,565,566,567,568,569]]]},{"type":"Polygon","id":120,"arcs":[[-337,570,571,572,573,574,575]]},{"type":"Polygon","id":180,"arcs":[[576,577,578,-227,579,580,-12,581,-15,582,-335]]},{"type":"Polygon","id":178,"arcs":[[-583,-14,583,584,-571,-336]]},{"type":"Polygon","id":184,"arcs":[[585]]},{"type":"MultiPolygon","id":170,"arcs":[[[586]],[[587,-320,588,589,590,591,592]]]},{"type":"MultiPolygon","id":174,"arcs":[[[593]],[[594]],[[595]]]},{"type":"MultiPolygon","id":132,"arcs":[[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]]]},{"type":"Polygon","id":188,"arcs":[[604,605,606,607]]},{"type":"MultiPolygon","id":192,"arcs":[[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]]]},{"type":"Polygon","id":531,"arcs":[[615]]},{"type":"MultiPolygon","id":136,"arcs":[[[616]],[[617]],[[618]]]},{"type":"Polygon","id":-99,"arcs":[[619,620]]},{"type":"Polygon","id":196,"arcs":[[-620,621]]},{"type":"Polygon","id":203,"arcs":[[622,623,-219,624]]},{"type":"MultiPolygon","id":276,"arcs":[[[625,626]],[[627]],[[628]],[[629]],[[630,631,-625,-218,-488,632,633,-230,634,635,636]],[[637]]]},{"type":"Polygon","id":262,"arcs":[[638,639,640,641]]},{"type":"Polygon","id":212,"arcs":[[642]]},{"type":"MultiPolygon","id":208,"arcs":[[[643]],[[644]],[[645]],[[646]],[[647]],[[648]],[[649]],[[650]],[[651]],[[652]],[[653]],[[-637,654]]]},{"type":"Polygon","id":214,"arcs":[[655,656]]},{"type":"Polygon","id":12,"arcs":[[657,658,659,660,661,662,663,664]]},{"type":"MultiPolygon","id":218,"arcs":[[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673,674,-590]]]},{"type":"Polygon","id":818,"arcs":[[675,676,677,678,679,680]]},{"type":"MultiPolygon","id":232,"arcs":[[[681]],[[682]],[[683,-641,684,685]]]},{"type":"MultiPolygon","id":724,"arcs":[[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697,-25,698,699,700,701]]]},{"type":"MultiPolygon","id":233,"arcs":[[[702]],[[703]],[[704]],[[705,706,707]]]},{"type":"Polygon","id":231,"arcs":[[-640,708,709,710,711,712,-685]]},{"type":"MultiPolygon","id":246,"arcs":[[[713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720,721,722,723]]]},{"type":"MultiPolygon","id":242,"arcs":[[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]]]},{"type":"MultiPolygon","id":238,"arcs":[[[743]],[[744]],[[745]],[[746]],[[747]],[[748]]]},{"type":"MultiPolygon","id":250,"arcs":[[[749]],[[750]],[[-315,751,752]],[[753]],[[754]],[[755]],[[756]],[[757]],[[758]],[[759,-633,-487,760,761,762,763,-699,-26,-698,764,-232]]]},{"type":"MultiPolygon","id":234,"arcs":[[[765]],[[766]],[[767]],[[768]],[[769]]]},{"type":"MultiPolygon","id":583,"arcs":[[[770]],[[771]],[[772]],[[773]],[[774]]]},{"type":"Polygon","id":266,"arcs":[[-585,775,776,-572]]},{"type":"MultiPolygon","id":826,"arcs":[[[777]],[[778]],[[779,780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]],[[797]],[[798]],[[799]],[[800]]]},{"type":"Polygon","id":268,"arcs":[[-224,-51,801,802,803]]},{"type":"Polygon","id":831,"arcs":[[804]]},{"type":"Polygon","id":288,"arcs":[[805,806,-564,807,-566,-243]]},{"type":"Polygon","id":324,"arcs":[[808,-569,809,810,811,812,813]]},{"type":"Polygon","id":270,"arcs":[[814,815]]},{"type":"MultiPolygon","id":624,"arcs":[[[816]],[[817]],[[818]],[[819]],[[820]],[[821]],[[822,823,-813]]]},{"type":"MultiPolygon","id":226,"arcs":[[[824,-573,-777]],[[825]]]},{"type":"MultiPolygon","id":300,"arcs":[[[826]],[[827]],[[828]],[[829]],[[830]],[[831]],[[832]],[[833]],[[834]],[[835]],[[836]],[[837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[849]],[[850]],[[851]],[[852]],[[853]],[[854]],[[855]],[[856]],[[857]],[[858]],[[859]],[[860]],[[861]],[[862]],[[863]],[[864]],[[865,-19,866,-257,867]]]},{"type":"Polygon","id":308,"arcs":[[868]]},{"type":"MultiPolygon","id":304,"arcs":[[[869]],[[870]],[[871]],[[872]],[[873]],[[874]],[[875]],[[876]],[[877]],[[878]],[[879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]]]},{"type":"Polygon","id":320,"arcs":[[-290,886,887,888,889,890]]},{"type":"Polygon","id":316,"arcs":[[891]]},{"type":"Polygon","id":328,"arcs":[[892,-322,893,894]]},{"type":"MultiPolygon","id":344,"arcs":[[[895]],[[896]],[[-535,897]]]},{"type":"Polygon","id":334,"arcs":[[898]]},{"type":"MultiPolygon","id":340,"arcs":[[[899,900,901,-888,902]],[[903]],[[904]]]},{"type":"MultiPolygon","id":191,"arcs":[[[905]],[[906]],[[-279,907,908]],[[909]],[[910]],[[911]],[[912]],[[913]],[[914]],[[915]],[[916]],[[917]],[[918,-281,919,920,921]]]},{"type":"MultiPolygon","id":332,"arcs":[[[922]],[[-656,923]],[[924]]]},{"type":"Polygon","id":348,"arcs":[[925,926,927,-922,928,-212,929]]},{"type":"MultiPolygon","id":360,"arcs":[[[930]],[[931]],[[932]],[[933]],[[934,935,936,937]],[[938]],[[939]],[[940]],[[941]],[[942]],[[943]],[[944]],[[945]],[[946]],[[947]],[[948]],[[949]],[[950]],[[951]],[[952]],[[953]],[[954]],[[955]],[[956]],[[957]],[[958]],[[959]],[[960]],[[961]],[[962]],[[963]],[[964]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]],[[974]],[[975]],[[976]],[[977]],[[978]],[[979]],[[980]],[[981]],[[982]],[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021,1022,1023]],[[1024]],[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]],[[1032]],[[1033]],[[1034]],[[1035]],[[1036]],[[1037]],[[1038]],[[1039]],[[1040]],[[1041]],[[1042]],[[1043]],[[1044]],[[1045]],[[1046]],[[1047]],[[1048]],[[1049]],[[1050]],[[1051]],[[1052]],[[1053]],[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062,1063]],[[1064]],[[1065,1066]],[[1067]],[[1068]],[[1069]]]},{"type":"Polygon","id":833,"arcs":[[1070]]},{"type":"MultiPolygon","id":356,"arcs":[[[1071]],[[1072]],[[1073]],[[1074]],[[1075]],[[1076]],[[1077]],[[1078]],[[1079]],[[1080]],[[1081]],[[1082]],[[1083]],[[1084,-549,1085,-547,1086,-545,1087,-543,-328,-542,1088,-254,1089,1090,1091,1092,-554,1093,-552,1094,-550]]]},{"type":"MultiPolygon","id":-99,"arcs":[[[1095]],[[1096]],[[1097]]]},{"type":"Polygon","id":86,"arcs":[[1098]]},{"type":"MultiPolygon","id":372,"arcs":[[[1099]],[[1100,-780]]]},{"type":"MultiPolygon","id":364,"arcs":[[[1101]],[[-48,-223,1102,1103,-5,1104,1105,1106,1107,1108,-220]]]},{"type":"Polygon","id":368,"arcs":[[-1108,1109,1110,1111,1112,1113,1114]]},{"type":"Polygon","id":352,"arcs":[[1115]]},{"type":"Polygon","id":376,"arcs":[[1116,1117,1118,1119,-677,1120,1121,1122,1123]]},{"type":"MultiPolygon","id":380,"arcs":[[[1124]],[[1125]],[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1131,1132,-761,-486,-214],[1133]]]},{"type":"Polygon","id":388,"arcs":[[1134]]},{"type":"Polygon","id":832,"arcs":[[1135]]},{"type":"Polygon","id":400,"arcs":[[1136,1137,-1119,1138,-1117,1139,-1113]]},{"type":"MultiPolygon","id":392,"arcs":[[[1140]],[[1141]],[[1142]],[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[1165]],[[1166]],[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]]]},{"type":"Polygon","id":-99,"arcs":[[-1092,1174,-556]]},{"type":"MultiPolygon","id":398,"arcs":[[[1175]],[[1176]],[[1177]],[[-560,1178,1179,1180,1181,1182]]]},{"type":"MultiPolygon","id":404,"arcs":[[[1183]],[[1184,1185,1186,1187,1188,-711]]]},{"type":"Polygon","id":417,"arcs":[[-559,1189,1190,-1179],[1191],[1192],[1193]]},{"type":"MultiPolygon","id":116,"arcs":[[[1194]],[[1195]],[[1196,1197,1198,1199]]]},{"type":"MultiPolygon","id":296,"arcs":[[[1200]],[[1201]],[[1202]],[[1203]],[[1204]],[[1205]],[[1206]],[[1207]],[[1208]],[[1209]],[[1210]],[[1211]],[[1212]],[[1213]],[[1214]],[[1215]],[[1216]],[[1217]],[[1218]]]},{"type":"MultiPolygon","id":659,"arcs":[[[1219]],[[1220]]]},{"type":"MultiPolygon","id":410,"arcs":[[[1221]],[[1222]],[[1223]],[[1224]],[[1225]],[[1226]],[[1227]],[[1228]],[[1229]],[[1230]],[[1231,1232]]]},{"type":"Polygon","id":-99,"arcs":[[1233,-17,1234,1235]]},{"type":"MultiPolygon","id":414,"arcs":[[[1236]],[[1237,-1111,1238]]]},{"type":"Polygon","id":418,"arcs":[[1239,-1199,1240,1241,-540]]},{"type":"Polygon","id":422,"arcs":[[-1123,1242,1243]]},{"type":"Polygon","id":430,"arcs":[[-568,1244,1245,-810]]},{"type":"Polygon","id":434,"arcs":[[-680,1246,1247,1248,-659,1249,1250]]},{"type":"Polygon","id":662,"arcs":[[1251]]},{"type":"Polygon","id":438,"arcs":[[-485,-216]]},{"type":"MultiPolygon","id":144,"arcs":[[[1252]],[[1253]],[[1254]]]},{"type":"Polygon","id":426,"arcs":[[1255]]},{"type":"MultiPolygon","id":440,"arcs":[[[1256,1257]],[[-286,1258,1259,1260,1261]]]},{"type":"Polygon","id":442,"arcs":[[-634,-760,-231]]},{"type":"Polygon","id":428,"arcs":[[1262,-287,-1262,1263,-707]]},{"type":"Polygon","id":446,"arcs":[[-537,1264]]},{"type":"Polygon","id":663,"arcs":[[1265,1266]]},{"type":"Polygon","id":504,"arcs":[[-664,1267,1268]]},{"type":"Polygon","id":492,"arcs":[[1269,-763]]},{"type":"Polygon","id":498,"arcs":[[1270,1271]]},{"type":"MultiPolygon","id":450,"arcs":[[[1272]],[[1273]],[[1274]]]},{"type":"MultiPolygon","id":462,"arcs":[[[1275]],[[1276]]]},{"type":"MultiPolygon","id":484,"arcs":[[[1277]],[[1278]],[[1279]],[[1280]],[[1281]],[[1282]],[[1283]],[[1284]],[[1285]],[[1286]],[[1287]],[[1288]],[[1289]],[[1290]],[[1291]],[[1292,-291,-891,1293,1294]]]},{"type":"MultiPolygon","id":584,"arcs":[[[1295]],[[1296]],[[1297]],[[1298]],[[1299]]]},{"type":"Polygon","id":807,"arcs":[[-258,-867,-18,-1234,1300]]},{"type":"Polygon","id":466,"arcs":[[1301,-245,-570,-809,1302,1303,-661]]},{"type":"MultiPolygon","id":470,"arcs":[[[1304]],[[1305]]]},{"type":"MultiPolygon","id":104,"arcs":[[[1306]],[[1307]],[[1308]],[[1309]],[[1310]],[[1311]],[[1312]],[[1313]],[[1314]],[[1315]],[[1316]],[[1317]],[[1318]],[[1319]],[[1320]],[[1321]],[[1322]],[[1323]],[[-1242,1324,1325,-252,-1089,-541]]]},{"type":"Polygon","id":499,"arcs":[[1326,-1235,-21,1327,-908,-278]]},{"type":"Polygon","id":496,"arcs":[[-562,1328]]},{"type":"MultiPolygon","id":580,"arcs":[[[1329]],[[1330]],[[1331]],[[1332]],[[1333]],[[1334]]]},{"type":"Polygon","id":508,"arcs":[[1335,1336,1337,1338,1339,1340,1341,1342],[1343],[1344]]},{"type":"MultiPolygon","id":478,"arcs":[[[1345]],[[1346,1347,1348,-662,-1304]]]},{"type":"Polygon","id":500,"arcs":[[1349]]},{"type":"Polygon","id":480,"arcs":[[1350]]},{"type":"MultiPolygon","id":454,"arcs":[[[-1345]],[[-1344]],[[-1341,1351,1352]]]},{"type":"MultiPolygon","id":458,"arcs":[[[1353]],[[1354]],[[1355]],[[-1064,1356]],[[1357]],[[1358]],[[1359,1360]],[[-1067,1361,-326,-325,1362]],[[1363]]]},{"type":"Polygon","id":516,"arcs":[[1364,-332,1365,1366,-10]]},{"type":"MultiPolygon","id":540,"arcs":[[[1367]],[[1368]],[[1369]],[[1370]],[[1371]],[[1372]]]},{"type":"Polygon","id":562,"arcs":[[1373,1374,-240,-241,-1302,-660,-1249]]},{"type":"Polygon","id":574,"arcs":[[1375]]},{"type":"MultiPolygon","id":566,"arcs":[[[1376]],[[1377,-575,1378,-236,-1375]]]},{"type":"Polygon","id":558,"arcs":[[1379,-608,1380,-900]]},{"type":"Polygon","id":570,"arcs":[[1381]]},{"type":"MultiPolygon","id":528,"arcs":[[[1382]],[[1383]],[[1384]],[[-234,1385]],[[1386]],[[1387]],[[1388]],[[1389,-635,1390,-235]],[[1391]],[[1392]],[[1393]],[[1394]]]},{"type":"MultiPolygon","id":578,"arcs":[[[1395]],[[1396]],[[1397]],[[1398]],[[1399]],[[1400]],[[1401]],[[1402]],[[1403]],[[1404]],[[1405]],[[1406]],[[1407]],[[1408]],[[1409]],[[1410]],[[1411]],[[1412]],[[1413]],[[1414]],[[1415,-724,1416,1417]],[[1418]],[[1419]],[[1420]],[[1421]],[[1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]],[[1428]]]},{"type":"Polygon","id":524,"arcs":[[-1088,-544]]},{"type":"Polygon","id":520,"arcs":[[1429]]},{"type":"MultiPolygon","id":554,"arcs":[[[1430]],[[1431]],[[1432]],[[1433]],[[1434]],[[1435]],[[1436]],[[1437]],[[1438]],[[1439]],[[1440]],[[1441]],[[1442]]]},{"type":"MultiPolygon","id":512,"arcs":[[[1443]],[[1444,1445,1446,-32]],[[-36]],[[-35,1447]]]},{"type":"Polygon","id":586,"arcs":[[-1175,-1091,1448,-1106,-3,-557]]},{"type":"MultiPolygon","id":591,"arcs":[[[1449]],[[1450]],[[1451]],[[1452]],[[-592,1453,-606,1454]]]},{"type":"Polygon","id":612,"arcs":[[1455]]},{"type":"Polygon","id":604,"arcs":[[-319,-296,-520,1456,-674,-589]]},{"type":"MultiPolygon","id":608,"arcs":[[[1457]],[[1458]],[[1459]],[[1460]],[[1461]],[[1462]],[[1463]],[[1464]],[[1465]],[[1466]],[[1467]],[[1468]],[[1469]],[[1470]],[[1471]],[[1472]],[[1473]],[[1474]],[[1475]],[[1476]],[[1477]],[[1478]],[[1479]],[[1480]],[[1481]],[[1482]],[[1483]],[[1484]],[[1485]],[[1486]],[[1487]],[[1488]],[[1489]],[[1490]],[[1491]],[[1492]],[[1493]],[[1494]],[[1495]],[[1496]],[[1497]],[[1498]],[[1499]],[[1500]],[[1501]],[[1502]],[[1503]],[[1504]]]},{"type":"MultiPolygon","id":585,"arcs":[[[1505]],[[1506]]]},{"type":"MultiPolygon","id":598,"arcs":[[[1507]],[[1508]],[[1509]],[[1510]],[[1511]],[[1512]],[[1513]],[[1514]],[[1515]],[[1516]],[[1517]],[[1518]],[[1519]],[[1520]],[[1521]],[[1522]],[[1523]],[[1524]],[[1525]],[[1526]],[[-1023,1527,1528]],[[1529]],[[1530]],[[1531]],[[1532]],[[1533]]]},{"type":"Polygon","id":616,"arcs":[[1534,-1259,-285,1535,1536,-623,-632,1537,-627,1538]]},{"type":"MultiPolygon","id":630,"arcs":[[[1539]],[[1540]],[[1541]]]},{"type":"MultiPolygon","id":408,"arcs":[[[1542]],[[1543,1544,-1233,1545,-533]]]},{"type":"MultiPolygon","id":620,"arcs":[[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554,-701]]]},{"type":"Polygon","id":600,"arcs":[[-318,-41,-294]]},{"type":"MultiPolygon","id":275,"arcs":[[[-676,1555,-1121]],[[-1118,-1139]]]},{"type":"MultiPolygon","id":258,"arcs":[[[1556]],[[1557]],[[1558]],[[1559]],[[1560]],[[1561]],[[1562]],[[1563]],[[1564]],[[1565]],[[1566]],[[1567]],[[1568]],[[1569]],[[1570]],[[1571]],[[1572]],[[1573]],[[1574]],[[1575]],[[1576]]]},{"type":"Polygon","id":634,"arcs":[[1577,1578]]},{"type":"Polygon","id":642,"arcs":[[1579,1580,-260,1581,-927,1582,-1271]]},{"type":"MultiPolygon","id":643,"arcs":[[[1583]],[[1584]],[[1585]],[[1586]],[[1587]],[[1588]],[[1589]],[[1590]],[[1591]],[[1592]],[[1593]],[[1594]],[[1595]],[[1596]],[[1597]],[[1598]],[[1599]],[[1600]],[[1601]],[[-1260,-1535,1602,-1257,1603]],[[1604]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609]],[[1610]],[[1611]],[[1612]],[[1613]],[[1614]],[[1615]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636]],[[1637]],[[1638]],[[1639]],[[1640]],[[1641]],[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[-1544,-563,-1329,-561,-1183,1651,-225,-804,1652,1653,-283,-1263,-706,1654,-721,-1416,1655]],[[1656]],[[1657]],[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]],[[1668]],[[1669]],[[1670]],[[1671]],[[1672]],[[1673]],[[1674]],[[1675]],[[1676]],[[1677]],[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]]]},{"type":"Polygon","id":646,"arcs":[[1686,-228,-579,1687]]},{"type":"Polygon","id":732,"arcs":[[-1349,1688,-1268,-663]]},{"type":"MultiPolygon","id":682,"arcs":[[[1689]],[[1690]],[[1691]],[[-1238,1692,-1578,1693,-33,-1447,1694,1695,-1137,-1112]]]},{"type":"Polygon","id":729,"arcs":[[1696,-686,-713,1697,-333,1698,-1247,-679]]},{"type":"Polygon","id":728,"arcs":[[-712,-1189,1699,-577,-334,-1698]]},{"type":"Polygon","id":686,"arcs":[[-1303,-814,-824,1700,-816,1701,-1347]]},{"type":"Polygon","id":702,"arcs":[[1702]]},{"type":"MultiPolygon","id":239,"arcs":[[[1703]],[[1704]]]},{"type":"MultiPolygon","id":654,"arcs":[[[1705]],[[1706]]]},{"type":"MultiPolygon","id":90,"arcs":[[[1707]],[[1708]],[[1709]],[[1710]],[[1711]],[[1712]],[[1713]],[[1714]],[[1715]],[[1716]],[[1717]],[[1718]],[[1719]],[[1720]],[[1721]],[[1722]],[[1723]],[[1724]],[[1725]],[[1726]],[[1727]]]},{"type":"MultiPolygon","id":694,"arcs":[[[1728]],[[-1246,1729,-811]]]},{"type":"Polygon","id":222,"arcs":[[-902,1730,-889]]},{"type":"Polygon","id":674,"arcs":[[-1134]]},{"type":"Polygon","id":-99,"arcs":[[1731,-709,-639,1732]]},{"type":"Polygon","id":706,"arcs":[[-1185,-710,-1732,1733]]},{"type":"MultiPolygon","id":666,"arcs":[[[1734]],[[1735]]]},{"type":"Polygon","id":688,"arcs":[[-1582,-259,-1301,-1236,-1327,-277,-919,-928]]},{"type":"MultiPolygon","id":678,"arcs":[[[1736]],[[1737]]]},{"type":"Polygon","id":740,"arcs":[[-752,-314,-893,1738]]},{"type":"Polygon","id":703,"arcs":[[1739,-930,-211,-624,-1537]]},{"type":"Polygon","id":705,"arcs":[[-921,1740,-1132,-213,-929]]},{"type":"MultiPolygon","id":752,"arcs":[[[1741]],[[1742]],[[1743]],[[1744]],[[1745]],[[1746,-1417,-723]]]},{"type":"Polygon","id":748,"arcs":[[-1337,1747]]},{"type":"Polygon","id":534,"arcs":[[-1266,1748]]},{"type":"Polygon","id":690,"arcs":[[1749]]},{"type":"Polygon","id":760,"arcs":[[-1114,-1140,-1124,-1244,1750,1751]]},{"type":"MultiPolygon","id":796,"arcs":[[[1752]],[[1753]],[[1754]]]},{"type":"Polygon","id":148,"arcs":[[-1699,-338,-576,-1378,-1374,-1248]]},{"type":"Polygon","id":768,"arcs":[[-238,1755,-806,-242]]},{"type":"MultiPolygon","id":764,"arcs":[[[1756]],[[1757]],[[1758]],[[1759]],[[1760]],[[1761]],[[1762]],[[1763]],[[1764]],[[-1241,-1198,1765,-1361,1766,-1325]]]},{"type":"MultiPolygon","id":762,"arcs":[[[-1192]],[[1767]],[[-1190,-558,-8,1768]]]},{"type":"MultiPolygon","id":795,"arcs":[[[1769]],[[-6,-1104,1770,-1181,1771]]]},{"type":"MultiPolygon","id":626,"arcs":[[[1772,-936]],[[-938,1773]],[[1774]]]},{"type":"MultiPolygon","id":776,"arcs":[[[1775]],[[1776]],[[1777]]]},{"type":"MultiPolygon","id":780,"arcs":[[[1778]],[[1779]]]},{"type":"MultiPolygon","id":788,"arcs":[[[1780]],[[1781]],[[-1250,-658,1782]]]},{"type":"MultiPolygon","id":792,"arcs":[[[1783]],[[-802,-50,-221,-1109,-1115,-1752,1784]],[[1785,-868,-256]]]},{"type":"MultiPolygon","id":158,"arcs":[[[1786]],[[1787]]]},{"type":"MultiPolygon","id":834,"arcs":[[[1788]],[[1789]],[[1790]],[[-1187,1791,-1342,-1353,1792,-580,-226,-1687,1793]]]},{"type":"Polygon","id":800,"arcs":[[-1794,-1688,-578,-1700,-1188]]},{"type":"MultiPolygon","id":804,"arcs":[[[1794]],[[1795,-1580,-1272,-1583,-926,-1740,-1536,-284,-1654]]]},{"type":"Polygon","id":858,"arcs":[[1796,-43,-317]]},{"type":"MultiPolygon","id":840,"arcs":[[[1797]],[[1798]],[[1799]],[[1800]],[[1801]],[[1802]],[[1803]],[[1804]],[[1805]],[[1806]],[[1807]],[[1808]],[[1809]],[[1810]],[[1811]],[[1812]],[[1813]],[[1814]],[[1815]],[[1816]],[[1817]],[[1818]],[[1819]],[[1820]],[[1821]],[[1822]],[[1823]],[[1824]],[[1825]],[[1826]],[[1827]],[[1828]],[[1829]],[[1830]],[[1831]],[[1832]],[[1833]],[[1834]],[[1835]],[[1836]],[[1837]],[[1838]],[[1839]],[[1840]],[[1841]],[[1842]],[[1843]],[[1844]],[[1845]],[[1846]],[[1847]],[[1848]],[[1849]],[[1850]],[[1851]],[[1852]],[[1853]],[[1854]],[[-355,1855,-1295,1856,-441]],[[1857]],[[1858]],[[1859]],[[1860]],[[1861]],[[1862]],[[1863]],[[1864]],[[1865]],[[1866]],[[1867]],[[1868]],[[1869]],[[1870]],[[1871]],[[1872]],[[1873]],[[1874]],[[1875]],[[1876]],[[1877]],[[1878]],[[1879]],[[1880]],[[1881]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]],[[1892]],[[1893]],[[1894]],[[1895]],[[1896]],[[1897]],[[1898]],[[1899]],[[1900]],[[1901]],[[1902]],[[1903]],[[1904]],[[1905]],[[1906]],[[1907]],[[1908]],[[1909]],[[1910]],[[1911]],[[1912]],[[1913]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]],[[-443,1924,-383,1925]]]},{"type":"MultiPolygon","id":860,"arcs":[[[-1193]],[[-1194]],[[-1191,-1769,-7,-1772,-1180],[-1768]]]},{"type":"Polygon","id":336,"arcs":[[1926]]},{"type":"MultiPolygon","id":670,"arcs":[[[1927]],[[1928]],[[1929]]]},{"type":"MultiPolygon","id":862,"arcs":[[[1930]],[[1931]],[[1932]],[[1933]],[[-894,-321,-588,1934]]]},{"type":"MultiPolygon","id":92,"arcs":[[[1935]],[[1936]],[[1937]]]},{"type":"MultiPolygon","id":850,"arcs":[[[1938]],[[1939]],[[1940]]]},{"type":"MultiPolygon","id":704,"arcs":[[[1941]],[[1942]],[[1943]],[[1944]],[[1945]],[[1946]],[[1947]],[[1948,-1200,-1240,-539]]]},{"type":"MultiPolygon","id":548,"arcs":[[[1949]],[[1950]],[[1951]],[[1952]],[[1953]],[[1954]],[[1955]],[[1956]],[[1957]],[[1958]],[[1959]],[[1960]],[[1961]],[[1962]]]},{"type":"MultiPolygon","id":876,"arcs":[[[1963]],[[1964]]]},{"type":"MultiPolygon","id":882,"arcs":[[[1965]],[[1966]]]},{"type":"MultiPolygon","id":887,"arcs":[[[1967]],[[1968]],[[1969]],[[1970]],[[1971,-1695,-1446]]]},{"type":"MultiPolygon","id":710,"arcs":[[[1972]],[[-1338,-1748,-1336,1973,-1366,-331,1974],[-1256]]]},{"type":"Polygon","id":894,"arcs":[[-1352,-1340,1975,-1365,-9,-581,-1793]]},{"type":"Polygon","id":716,"arcs":[[-1975,-330,-1976,-1339]]}]},"land":{"type":"MultiPolygon","arcs":[[[0]],[[1390,228],[1770,1181,1651,221,1102],[3,1104],[1084],[1086,545],[1085,547],[1094,550],[1093,552],[1092,554],[535,1264,537,1948,1196,1765,1359,1766,1325,252,1089,1448,1106,1109,1238,1692,1578,1693,33,1447,30,1444,1971,1695,1137,1119,677,1696,683,641,1732,1733,1185,1791,1342,1973,1366,10,581,12,583,775,824,573,1378,236,1755,806,564,807,566,1244,1729,811,822,1700,814,1701,1347,1688,1268,664,1782,1250,680,1555,1121,1242,1750,1784,802,1652,1795,1580,254,1785,865,19,1327,908,279,919,1740,1132,761,1269,763,699,1554,701,764,232,1385,1389,635,654,630,1537,625,1538,1602,1257,1603,1260,1263,707,1654,721,1746,1417,1655,1544,1231,1545,533,897]],[[15]],[[21]],[[22]],[[23]],[[26]],[[27]],[[28]],[[29]],[[36]],[[38,497]],[[39]],[[1796,43,518,1456,674,590,1453,606,1380,900,1730,889,1293,1856,441,1924,383,1925,443,353,1855,1292,291,886,902,1379,604,1454,592,1934,894,1738,752,315]],[[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]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[271]],[[272]],[[273]],[[274]],[[275]],[[281]],[[287]],[[288]],[[292]],[[297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[322]],[[1361,326,323,1362,1065]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351]],[[352]],[[355]],[[356]],[[357]],[[358]],[[359]],[[360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370]],[[371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379]],[[380]],[[381]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[444]],[[445]],[[446]],[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]],[[468]],[[469]],[[470]],[[471]],[[472]],[[473]],[[474]],[[475]],[[476]],[[477]],[[478]],[[479]],[[480]],[[481]],[[482]],[[483]],[[488]],[[489]],[[490]],[[491]],[[492]],[[493]],[[494]],[[495]],[[496]],[[498]],[[499]],[[500]],[[501]],[[502]],[[503]],[[504]],[[505]],[[506]],[[507]],[[508]],[[509]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[585]],[[586]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[620,621]],[[627]],[[628]],[[629]],[[637]],[[642]],[[643]],[[644]],[[645]],[[646]],[[647]],[[648]],[[649]],[[650]],[[651]],[[652]],[[653]],[[656,923]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[681]],[[682]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[702]],[[703]],[[704]],[[713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]],[[748]],[[749]],[[750]],[[753]],[[754]],[[755]],[[756]],[[757]],[[758]],[[765]],[[766]],[[767]],[[768]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[777]],[[778]],[[780,1100]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]],[[797]],[[798]],[[799]],[[800]],[[804]],[[816]],[[817]],[[818]],[[819]],[[820]],[[821]],[[825]],[[826]],[[827]],[[828]],[[829]],[[830]],[[831]],[[832]],[[833]],[[834]],[[835]],[[836]],[[837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[849]],[[850]],[[851]],[[852]],[[853]],[[854]],[[855]],[[856]],[[857]],[[858]],[[859]],[[860]],[[861]],[[862]],[[863]],[[864]],[[868]],[[869]],[[870]],[[871]],[[872]],[[873]],[[874]],[[875]],[[876]],[[877]],[[878]],[[879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[891]],[[895]],[[896]],[[898]],[[903]],[[904]],[[905]],[[906]],[[909]],[[910]],[[911]],[[912]],[[913]],[[914]],[[915]],[[916]],[[917]],[[922]],[[924]],[[930]],[[931]],[[932]],[[933]],[[936,1773,934,1772]],[[938]],[[939]],[[940]],[[941]],[[942]],[[943]],[[944]],[[945]],[[946]],[[947]],[[948]],[[949]],[[950]],[[951]],[[952]],[[953]],[[954]],[[955]],[[956]],[[957]],[[958]],[[959]],[[960]],[[961]],[[962]],[[963]],[[964]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]],[[974]],[[975]],[[976]],[[977]],[[978]],[[979]],[[980]],[[981]],[[982]],[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1023,1021,1527,1528]],[[1024]],[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]],[[1032]],[[1033]],[[1034]],[[1035]],[[1036]],[[1037]],[[1038]],[[1039]],[[1040]],[[1041]],[[1042]],[[1043]],[[1044]],[[1045]],[[1046]],[[1047]],[[1048]],[[1049]],[[1050]],[[1051]],[[1052]],[[1053]],[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062,1356]],[[1064]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]],[[1075]],[[1076]],[[1077]],[[1078]],[[1079]],[[1080]],[[1081]],[[1082]],[[1083]],[[1095]],[[1096]],[[1097]],[[1098]],[[1099]],[[1101]],[[1115]],[[1124]],[[1125]],[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1134]],[[1135]],[[1140]],[[1141]],[[1142]],[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[1165]],[[1166]],[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]],[[1175]],[[1176]],[[1177]],[[1183]],[[1194]],[[1195]],[[1200]],[[1201]],[[1202]],[[1203]],[[1204]],[[1205]],[[1206]],[[1207]],[[1208]],[[1209]],[[1210]],[[1211]],[[1212]],[[1213]],[[1214]],[[1215]],[[1216]],[[1217]],[[1218]],[[1219]],[[1220]],[[1221]],[[1222]],[[1223]],[[1224]],[[1225]],[[1226]],[[1227]],[[1228]],[[1229]],[[1230]],[[1236]],[[1251]],[[1252]],[[1253]],[[1254]],[[1266,1748]],[[1272]],[[1273]],[[1274]],[[1275]],[[1276]],[[1277]],[[1278]],[[1279]],[[1280]],[[1281]],[[1282]],[[1283]],[[1284]],[[1285]],[[1286]],[[1287]],[[1288]],[[1289]],[[1290]],[[1291]],[[1295]],[[1296]],[[1297]],[[1298]],[[1299]],[[1304]],[[1305]],[[1306]],[[1307]],[[1308]],[[1309]],[[1310]],[[1311]],[[1312]],[[1313]],[[1314]],[[1315]],[[1316]],[[1317]],[[1318]],[[1319]],[[1320]],[[1321]],[[1322]],[[1323]],[[1329]],[[1330]],[[1331]],[[1332]],[[1333]],[[1334]],[[1345]],[[1349]],[[1350]],[[1353]],[[1354]],[[1355]],[[1357]],[[1358]],[[1363]],[[1367]],[[1368]],[[1369]],[[1370]],[[1371]],[[1372]],[[1375]],[[1376]],[[1381]],[[1382]],[[1383]],[[1384]],[[1386]],[[1387]],[[1388]],[[1391]],[[1392]],[[1393]],[[1394]],[[1395]],[[1396]],[[1397]],[[1398]],[[1399]],[[1400]],[[1401]],[[1402]],[[1403]],[[1404]],[[1405]],[[1406]],[[1407]],[[1408]],[[1409]],[[1410]],[[1411]],[[1412]],[[1413]],[[1414]],[[1418]],[[1419]],[[1420]],[[1421]],[[1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]],[[1428]],[[1429]],[[1430]],[[1431]],[[1432]],[[1433]],[[1434]],[[1435]],[[1436]],[[1437]],[[1438]],[[1439]],[[1440]],[[1441]],[[1442]],[[1443]],[[1449]],[[1450]],[[1451]],[[1452]],[[1455]],[[1457]],[[1458]],[[1459]],[[1460]],[[1461]],[[1462]],[[1463]],[[1464]],[[1465]],[[1466]],[[1467]],[[1468]],[[1469]],[[1470]],[[1471]],[[1472]],[[1473]],[[1474]],[[1475]],[[1476]],[[1477]],[[1478]],[[1479]],[[1480]],[[1481]],[[1482]],[[1483]],[[1484]],[[1485]],[[1486]],[[1487]],[[1488]],[[1489]],[[1490]],[[1491]],[[1492]],[[1493]],[[1494]],[[1495]],[[1496]],[[1497]],[[1498]],[[1499]],[[1500]],[[1501]],[[1502]],[[1503]],[[1504]],[[1505]],[[1506]],[[1507]],[[1508]],[[1509]],[[1510]],[[1511]],[[1512]],[[1513]],[[1514]],[[1515]],[[1516]],[[1517]],[[1518]],[[1519]],[[1520]],[[1521]],[[1522]],[[1523]],[[1524]],[[1525]],[[1526]],[[1529]],[[1530]],[[1531]],[[1532]],[[1533]],[[1539]],[[1540]],[[1541]],[[1542]],[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1556]],[[1557]],[[1558]],[[1559]],[[1560]],[[1561]],[[1562]],[[1563]],[[1564]],[[1565]],[[1566]],[[1567]],[[1568]],[[1569]],[[1570]],[[1571]],[[1572]],[[1573]],[[1574]],[[1575]],[[1576]],[[1583]],[[1584]],[[1585]],[[1586]],[[1587]],[[1588]],[[1589]],[[1590]],[[1591]],[[1592]],[[1593]],[[1594]],[[1595]],[[1596]],[[1597]],[[1598]],[[1599]],[[1600]],[[1601]],[[1604]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609]],[[1610]],[[1611]],[[1612]],[[1613]],[[1614]],[[1615]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636]],[[1637]],[[1638]],[[1639]],[[1640]],[[1641]],[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[1656]],[[1657]],[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]],[[1668]],[[1669]],[[1670]],[[1671]],[[1672]],[[1673]],[[1674]],[[1675]],[[1676]],[[1677]],[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1689]],[[1690]],[[1691]],[[1702]],[[1703]],[[1704]],[[1705]],[[1706]],[[1707]],[[1708]],[[1709]],[[1710]],[[1711]],[[1712]],[[1713]],[[1714]],[[1715]],[[1716]],[[1717]],[[1718]],[[1719]],[[1720]],[[1721]],[[1722]],[[1723]],[[1724]],[[1725]],[[1726]],[[1727]],[[1728]],[[1734]],[[1735]],[[1736]],[[1737]],[[1741]],[[1742]],[[1743]],[[1744]],[[1745]],[[1749]],[[1752]],[[1753]],[[1754]],[[1756]],[[1757]],[[1758]],[[1759]],[[1760]],[[1761]],[[1762]],[[1763]],[[1764]],[[1769]],[[1774]],[[1775]],[[1776]],[[1777]],[[1778]],[[1779]],[[1780]],[[1781]],[[1783]],[[1786]],[[1787]],[[1788]],[[1789]],[[1790]],[[1794]],[[1797]],[[1798]],[[1799]],[[1800]],[[1801]],[[1802]],[[1803]],[[1804]],[[1805]],[[1806]],[[1807]],[[1808]],[[1809]],[[1810]],[[1811]],[[1812]],[[1813]],[[1814]],[[1815]],[[1816]],[[1817]],[[1818]],[[1819]],[[1820]],[[1821]],[[1822]],[[1823]],[[1824]],[[1825]],[[1826]],[[1827]],[[1828]],[[1829]],[[1830]],[[1831]],[[1832]],[[1833]],[[1834]],[[1835]],[[1836]],[[1837]],[[1838]],[[1839]],[[1840]],[[1841]],[[1842]],[[1843]],[[1844]],[[1845]],[[1846]],[[1847]],[[1848]],[[1849]],[[1850]],[[1851]],[[1852]],[[1853]],[[1854]],[[1857]],[[1858]],[[1859]],[[1860]],[[1861]],[[1862]],[[1863]],[[1864]],[[1865]],[[1866]],[[1867]],[[1868]],[[1869]],[[1870]],[[1871]],[[1872]],[[1873]],[[1874]],[[1875]],[[1876]],[[1877]],[[1878]],[[1879]],[[1880]],[[1881]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]],[[1892]],[[1893]],[[1894]],[[1895]],[[1896]],[[1897]],[[1898]],[[1899]],[[1900]],[[1901]],[[1902]],[[1903]],[[1904]],[[1905]],[[1906]],[[1907]],[[1908]],[[1909]],[[1910]],[[1911]],[[1912]],[[1913]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]],[[1926]],[[1927]],[[1928]],[[1929]],[[1930]],[[1931]],[[1932]],[[1933]],[[1935]],[[1936]],[[1937]],[[1938]],[[1939]],[[1940]],[[1941]],[[1942]],[[1943]],[[1944]],[[1945]],[[1946]],[[1947]],[[1949]],[[1950]],[[1951]],[[1952]],[[1953]],[[1954]],[[1955]],[[1956]],[[1957]],[[1958]],[[1959]],[[1960]],[[1961]],[[1962]],[[1963]],[[1964]],[[1965]],[[1966]],[[1967]],[[1968]],[[1969]],[[1970]],[[1972]]]}},"arcs":[[[30583,59015],[1,-16],[-13,9],[-17,35],[-17,27],[4,29],[4,10],[18,-27],[17,-50],[3,-17]],[[70802,73289],[-14,-3],[-20,13],[-8,21],[-3,3],[-16,-13],[-31,-18],[-52,-45],[1,-12],[34,-46],[8,-15],[4,-5]],[[70705,73169],[-30,-22],[-66,-50],[-43,-41],[-11,-2],[-26,17],[-38,21],[-11,-1],[-89,-3],[-81,-8],[-35,-10],[-63,-9],[-40,-3],[-25,-16],[-28,-21],[-29,-13],[-21,-5],[-26,-19],[-17,-39],[-49,-57],[-27,-28],[-14,-31],[-15,-3],[-27,5],[-21,-34],[-23,-48],[-42,-70],[-22,-29],[-13,-46],[10,-24],[34,-35],[15,-34],[8,-27],[16,-68],[10,-68],[14,-29],[5,-50],[3,-30],[-8,-22],[-7,-24],[0,-23],[9,-23],[8,-21],[4,-17],[-5,-18],[-16,-29],[-8,-29],[-17,-48],[-27,-33],[-18,-24],[-19,-51],[-31,-57],[-13,-47],[-14,-26],[-14,-14],[4,-25],[12,-32],[20,-35],[-1,-56],[-1,-40],[1,-48],[-11,-41],[-57,-39],[-54,-17],[-66,-1],[-25,6],[-20,9],[-72,44],[-29,-26],[-6,-63],[52,-103],[22,-57],[24,-95],[18,-50],[-7,-46],[-47,-52],[-47,-49],[-61,-11],[-37,-17],[-19,-26],[-13,-108],[-14,-39],[1,-47],[-13,-53],[-19,-35],[-14,-55],[4,-107],[7,-180],[-26,-56],[-29,-58],[-30,-41],[-29,-19],[-24,7],[-20,36],[-11,29],[-21,25],[-21,-5],[-22,-23],[-34,8],[-29,23],[-15,-3],[-9,-23],[-31,-49],[-77,-74],[-31,-6],[-14,-19],[5,-30],[14,-25],[24,-18],[1,-20],[-21,-18],[-18,-20],[-40,-25],[-46,-10],[-47,15],[-25,33],[-29,3],[-26,-24],[-27,-40],[-30,-86],[-8,-15],[-8,-13],[-19,-19],[-28,-30],[-14,-63],[-17,-112],[4,-61],[2,-104],[-7,-74],[-12,-48],[2,-38],[19,-43],[-8,-28],[-15,-32],[-15,-17],[-60,-33],[-82,-44],[-54,-29],[-81,-43],[-24,-10],[-49,-4],[-25,7],[-34,1],[-51,-1],[-36,-12],[-35,-21],[-26,-27],[-15,-27],[-5,-13],[-36,22],[-112,40],[-303,-52],[-29,10],[-103,60],[-133,78],[-83,48],[-106,63]],[[66900,69042],[73,156]],[[66973,69198],[63,135],[63,136],[63,134],[7,47],[1,92],[-16,122],[-27,56],[-87,23],[-65,17],[-72,18],[-9,7],[-8,95],[3,43],[-4,82],[0,63],[11,105],[0,46],[-33,202],[-18,112],[-19,116],[-4,37],[0,45],[43,107],[14,23],[26,54],[16,28],[-3,19],[-28,12],[-42,1],[-23,16],[-17,29],[-7,42],[11,75],[-11,145],[23,72],[21,51],[68,7],[-24,57],[-11,33],[-8,9],[-2,15],[3,16],[18,5],[12,19],[19,27],[10,11],[2,33],[9,23],[14,28],[11,33],[-3,38],[10,46],[5,28],[7,25],[-6,36],[-6,31],[-1,36],[11,9],[13,14],[3,28],[7,36],[6,29],[9,23],[1,23],[-5,38]],[[67017,72361],[23,5],[9,-20],[12,-28],[34,-50],[21,-15],[28,-8],[33,7],[27,10],[13,-3],[29,-36],[35,-52],[11,-23],[5,-35],[10,-11],[22,35],[21,12],[20,-7],[21,-4],[22,13],[9,9],[38,45],[34,35],[21,21],[8,70],[9,40],[14,24],[-5,28],[-6,23],[-6,29],[6,16],[14,7],[34,0],[60,32],[50,31],[46,26],[21,4],[20,-4],[9,7],[2,25],[12,26],[25,21],[49,44],[42,66],[15,50],[10,73],[20,113],[22,124],[8,54],[10,42],[37,35],[39,26],[59,5],[70,3],[15,67],[9,57],[12,30],[16,24],[6,5],[38,-35],[58,-54],[67,-27],[34,-13],[14,2]],[[68478,73357],[85,13],[67,-21],[35,-58],[34,-14],[34,28],[21,5],[8,-18],[17,-8],[26,3],[15,-16],[1,-16]],[[68821,73255],[2,-18],[19,-44],[35,-53],[30,-13],[40,41],[14,-5],[6,14],[4,30],[25,28],[44,27],[25,23],[9,20],[15,5],[16,-5],[12,7],[4,18],[5,8],[8,7],[7,3],[14,-5],[25,-34],[36,-62],[24,-29],[10,5],[14,19],[17,34],[4,48],[-8,62],[6,50],[20,39],[37,23],[54,9],[33,-5],[13,-20],[16,-11],[21,-2],[19,22],[18,48],[1,58],[-16,69],[4,22],[7,10],[21,25],[29,52],[28,68],[27,82],[33,50],[40,20],[48,-22],[57,-64],[21,-79],[-14,-93],[-1,-52],[11,-10],[20,3],[27,15],[18,0],[8,-13],[0,-26],[-10,-40],[-11,-111],[-7,-96],[-7,-94],[-6,-84],[11,-64],[16,-98],[18,-65],[19,-21],[19,-7],[19,6],[39,41],[59,78],[57,47],[83,27],[28,82],[38,55],[88,81],[47,31],[28,6],[34,-15],[8,-5],[7,-4],[17,-7],[4,-25],[-5,-26],[-19,-22],[-6,-17],[8,-13],[26,-5],[56,30],[35,19],[25,8],[10,24],[16,25],[25,2],[26,-13],[22,-8],[38,7],[20,-21],[28,-41],[12,-26],[4,-6]],[[56657,45580],[6,-75],[6,-105],[4,-76],[5,-33],[1,-18],[-5,-20],[-4,-45],[-8,-40],[-4,-28],[4,-51],[-3,-74],[-3,-78],[-1,-75],[10,-134],[-1,-41],[-13,-70],[-10,-53],[-6,-62],[-2,-32],[24,-91],[-1,-18],[-18,-6],[-15,-1],[-58,0],[-83,0],[-82,0],[-83,0],[-76,0],[-72,0],[-64,0],[0,-90],[0,-185],[0,-185],[0,-185],[0,-185],[0,-184],[0,-185],[0,-185],[0,-185],[0,-133],[17,-177],[30,-193],[12,-18],[31,-35],[43,-73],[24,-54],[49,-95],[65,-122],[63,-108],[55,-96]],[[56494,41681],[-87,-34],[-123,-47],[-83,-32],[-101,-39],[-68,-25],[-83,-30],[-14,0],[-22,21],[-49,4],[-57,-29],[-45,-7],[-33,13],[-33,25],[-32,38],[-55,14],[-78,-11],[-76,8],[-73,24],[-52,10],[-32,-5],[-33,8],[-36,22],[-30,36],[-36,77],[-28,73],[-8,10],[-9,12],[-8,3],[-80,2],[-76,2],[-44,0],[-106,0],[-106,1],[-107,0],[-106,0],[-106,1],[-106,0],[-107,0],[-106,1],[-56,0],[-53,-6],[-58,-7],[-8,3],[-14,9],[-9,16],[-31,42],[-28,32],[-36,53],[-24,58],[-20,19],[-36,10],[-27,10],[-21,3],[-39,-28],[-29,-27],[-20,-26],[-36,-30],[-30,-31],[-52,4],[-12,-4],[-29,2],[-27,26],[-28,-2],[-31,-34],[-45,-13]],[[53261,41906],[11,218],[11,96],[0,116],[-7,298],[-7,41],[-5,48],[27,36],[14,28],[19,50],[13,69],[16,153],[58,352],[27,345],[35,163],[13,183],[96,236],[24,145],[50,72],[70,75],[51,135],[24,94],[28,179],[-1,187],[18,250],[-4,72],[-26,99],[-5,71],[-24,70],[-27,53],[-12,94],[-45,149],[-13,99],[-21,71],[-4,88],[-11,93],[-22,92],[-22,105],[0,32],[14,40],[12,13],[-4,-20],[-8,-23],[2,-19],[84,184],[6,36],[-3,41],[-1,49],[4,57],[-80,340],[-64,316],[-10,159],[-84,210],[-33,137],[-19,96],[-15,36],[6,18],[21,5],[49,22],[65,24],[61,56],[17,24]],[[53630,48464],[32,5],[33,-15],[12,11],[7,1],[77,0],[32,4],[59,-1],[38,-5],[21,-6],[58,-10],[72,2],[26,5],[94,4],[93,3],[84,3],[93,-1],[70,0],[33,-20],[29,-38],[13,-34],[7,-15],[9,-37],[16,-28],[5,-45],[-4,-60],[2,-72],[9,-85],[20,-89],[29,-93],[13,-73],[-4,-55],[9,-58],[22,-61],[16,-32],[10,-24],[25,-94],[46,-149],[35,-111],[12,-14],[17,5],[38,11],[37,2],[27,-23],[11,4],[40,45],[39,13],[42,18],[22,19],[25,0],[68,-36],[13,-2],[55,0],[55,21],[8,149],[0,30],[14,56],[17,49],[2,47],[-1,64],[12,78],[37,62],[59,29],[34,6],[54,17],[81,18],[30,-3],[2,-8],[-17,-108],[0,-35],[6,-35],[14,-20],[84,-2],[78,-2],[89,-7],[66,-5],[9,-5],[7,-8],[10,-53],[-3,-104],[-15,-152],[6,-142],[27,-132],[2,-203],[-9,-121],[-12,-153],[-4,-173],[12,-72],[25,-76],[39,-79],[30,-102],[22,-126],[8,-79],[-6,-33],[0,-56],[7,-81],[-8,-53],[-21,-27],[-7,-36],[11,-69],[2,-63],[9,-24],[6,-18],[10,-2],[22,22],[26,42],[20,18],[30,-2],[41,-12],[73,-4],[22,7],[67,57],[18,4],[27,-5],[38,-17],[38,-4],[19,18],[1,23],[6,30],[11,11]],[[53392,48525],[-4,16],[-12,57],[7,54],[7,41],[-8,82],[-18,74],[-20,93],[-6,18]],[[53338,48960],[16,30],[25,66],[11,34],[28,8],[11,23],[8,39],[3,22],[32,18],[39,33],[22,35],[22,22],[13,1],[10,-9],[25,-61],[21,-39],[7,-9]],[[53631,49173],[-5,-10],[-30,-25],[-33,-24],[-43,-97],[-22,-42],[-6,-11],[-20,-23],[-14,-20],[1,-11],[9,-12],[10,-21],[-1,-159],[-4,-156],[-6,-14],[-27,-5],[-36,-11],[-12,-7]],[[32499,62339],[-44,-29],[2,17],[35,40],[13,-3],[-6,-25]],[[55573,76351],[11,-13],[23,-57],[15,-50],[30,-17],[16,-19],[22,-30],[10,-30],[15,-91],[2,-55],[-5,-26]],[[55712,75963],[-3,-6],[-14,-90],[3,-46],[0,-30],[-11,-12],[-7,-19],[12,-74],[-2,-32],[1,-37],[22,-83],[13,-26],[11,-12],[15,-77],[9,-13],[36,7],[17,-9],[7,-18],[2,-12]],[[55823,75374],[-3,-43],[9,-33],[12,-35],[0,-20],[-8,-34],[-14,-40],[-19,-15],[-21,-13],[-10,-31],[-5,-33],[-10,-24],[-5,-27],[-9,-55],[-2,-19],[-15,-20],[-22,-8],[-19,-2],[-14,-9],[-6,-19],[-13,-15],[-8,-7],[0,-16],[10,-35],[10,-28],[0,-23],[-5,-6],[-16,3],[-3,-8],[-2,-26],[-4,-21],[-7,-13],[-12,-15],[-21,5],[-19,22],[-11,6],[-6,0]],[[55555,74717],[-1,52],[-9,41],[-31,99],[-102,96],[-24,43],[-11,36],[-10,35],[10,1],[10,-9],[13,-11],[5,18],[-6,37],[-26,87],[-2,24],[13,74],[21,82],[-1,99],[7,75],[-8,49],[-3,60],[15,79],[14,20],[8,25],[1,85],[-31,39],[-35,8]],[[55372,75961],[1,28],[5,46],[-3,15],[3,26],[-9,35],[-14,25],[14,44],[19,53],[18,42],[22,45],[15,42],[16,36],[14,11],[6,-7],[4,-16],[-1,-47],[5,-17],[9,-12],[20,6],[22,12],[30,25],[5,-2]],[[55725,86428],[-2,-13],[-23,-4],[-10,13],[-21,-2],[-3,6],[8,12],[17,8],[22,-3],[12,-17]],[[55461,86513],[2,-13],[-11,3],[-8,-5],[-6,-15],[-12,5],[-5,23],[9,34],[22,2],[9,-34]],[[55552,86607],[9,0],[3,5],[15,-4],[23,-22],[4,-12],[16,-6],[5,-13],[-18,-39],[-11,0],[-8,4],[-15,-4],[-8,-7],[-3,-16],[0,-34],[-65,-7],[-15,10],[-20,77],[4,20],[14,8],[12,2],[1,-41],[18,4],[5,27],[1,20],[-4,9],[-12,8],[-7,13],[10,21],[18,9],[16,-28],[12,-4]],[[50473,76326],[-7,-4],[-26,-23],[-14,-8],[-14,-5],[-10,2],[-6,14],[1,21],[-3,19],[-1,10],[3,27]],[[50396,76379],[9,15],[12,12],[18,-4],[39,-18],[9,-16],[0,-11],[-7,-18],[-3,-13]],[[64979,65770],[0,-20],[-28,6],[-7,-10],[-24,5],[-22,14],[15,24],[40,28],[17,-26],[9,-21]],[[64615,65834],[-5,-4],[-4,31],[0,9],[13,15],[7,-26],[-11,-25]],[[64814,65816],[-21,-3],[-18,22],[39,29],[11,13],[11,27],[9,-23],[-10,-36],[-7,-16],[-14,-13]],[[65129,65923],[-3,-12],[-8,1],[-19,11],[-7,16],[13,19],[5,1],[8,-20],[11,-16]],[[65638,66618],[18,-46],[2,-318],[5,-22]],[[65663,66232],[-10,-4],[-11,-24],[-13,-37],[-17,-20],[-14,-21],[-14,-27],[-11,-6],[-16,34],[-10,35],[2,8],[8,2],[3,18],[-5,27],[-10,9],[-13,1],[-13,-11],[-13,-24],[-8,-24],[-1,-50],[4,-57],[-1,-27],[-7,-34],[-2,-50],[5,-39],[4,-23],[1,-19],[-13,-62],[11,-11],[36,-5],[11,-41],[7,-29],[-2,-17],[-26,-13],[-31,-14],[-23,4],[-42,-18],[-22,-29],[7,-19],[7,-13],[4,-39],[-7,-54],[-11,-53],[-15,-66],[-17,-75],[-23,-114],[-19,-90],[-2,-64],[0,-42],[-2,-84]],[[65329,64921],[-19,-46],[-4,-2],[-22,6],[-7,2],[-21,5],[-33,8],[-42,11],[-51,13],[-56,14],[-59,15],[-62,16],[-62,16],[-60,15],[-56,14],[-50,13],[-43,10],[-32,9],[-21,5],[-8,2],[-23,6],[-13,31],[-15,38],[-15,37],[-15,38],[-16,38],[-15,38],[-15,37],[-16,38],[-15,38],[-15,38],[-15,37],[-16,38],[-15,38],[-15,37],[-16,38],[-15,38],[-15,38],[-10,25],[-6,28],[-1,75],[0,16]],[[64324,65832],[10,30],[5,-21],[12,-29],[19,7],[9,-5],[7,-103],[14,-37],[18,-15],[59,-8],[36,14],[73,67],[38,25],[105,-5],[84,-28],[131,-16],[26,4],[70,54],[44,48],[26,14],[17,46],[11,60],[10,39],[13,19],[12,33],[9,55],[25,54],[97,133],[57,113],[5,36],[32,55],[24,59],[117,171],[23,70],[14,79],[1,6]],[[65577,66856],[10,3],[14,-12],[2,-59],[-5,-56],[-1,-59],[-2,-32],[11,-26],[18,-11],[8,1],[6,13]],[[65613,66366],[9,-2],[11,15],[2,25],[-3,13],[-12,2],[-5,-22],[-2,-31]],[[32069,20324],[31,-13],[61,10],[32,0],[14,-5],[6,-7],[42,11],[18,-1],[-5,-25],[-38,-24],[-16,10],[-82,-2],[-36,-25],[-15,0],[-36,-36],[-26,23],[-7,21],[18,29],[18,1],[12,12],[9,21]],[[30929,20245],[2,130],[2,175],[1,156],[0,152],[0,158],[1,157],[0,169],[1,171]],[[30936,21513],[16,-25],[65,-118],[17,-48],[10,-56],[-26,35],[-27,-20],[-13,-34],[-12,-36],[0,-26],[9,-23],[27,-19],[64,-7],[5,-7],[37,-141],[19,-32],[22,-25],[51,-72],[49,-77],[58,-74],[62,-57],[57,-43],[54,-52],[58,-73],[63,-54],[67,-37],[69,-32],[105,13],[32,-4],[20,-23],[-20,-64],[-26,-51],[-35,-21],[-36,-8],[-34,1],[-33,10],[-31,-6],[-29,-21],[-31,-11],[-32,-2],[-31,-18],[-32,-13],[-32,11],[-84,51],[-55,12],[-185,20],[-59,12],[-59,18],[-31,0],[-45,-11],[-35,1],[-10,-11]],[[32812,29278],[3,-36],[-15,4],[-34,35],[-12,33],[-2,14],[35,-15],[16,-14],[9,-21]],[[32597,39035],[7,-16],[0,-16],[23,-35],[47,-51],[44,-100],[41,-148],[38,-109],[36,-71],[33,-50],[31,-29],[16,-24],[2,-18],[28,-38],[54,-57],[35,-57],[14,-57],[54,-60],[93,-60],[67,-29],[42,2],[61,-48],[79,-100],[48,-69],[17,-39],[52,-62],[128,-129],[57,-33],[27,-29],[16,-38],[16,-11],[15,14],[33,-13],[49,-42],[38,-50],[49,-110],[16,-45],[7,-39],[-2,-35],[-16,-37],[-27,-40],[-8,-17],[-1,-16],[-7,-34],[-23,-71],[-6,-33],[-1,-24],[-15,-27],[-38,-49],[-8,-24],[-2,-26],[-5,-15],[-5,-7],[-8,-25],[-6,-43],[0,-55],[4,-67],[-1,-21],[-8,-12],[-5,-15],[-2,-31],[-7,-23],[-13,-15],[-4,-16],[3,-19],[-9,-19],[-23,-18],[-13,-27],[-5,-35],[-13,-32],[-19,-27],[-7,-37],[11,-68],[121,23],[99,-25],[117,-65],[77,-23],[39,20],[28,-3],[18,-26],[25,-5],[31,15],[26,-11],[21,-38],[18,9],[17,57],[19,41],[22,26],[26,8],[33,-10],[25,-21],[19,-31],[21,1],[23,33],[11,40],[-1,46],[9,33],[19,20],[13,27],[6,34],[23,21],[38,8],[20,16],[2,26],[11,24],[21,22],[14,27],[8,33],[13,21],[17,8],[20,69],[21,129],[13,174],[5,248]],[[34829,37110],[21,0],[10,-19],[16,-9],[17,21],[14,9],[23,1],[12,24],[15,3],[10,-12],[9,-16],[20,-3],[16,-40],[18,-13],[7,-46],[12,-121],[21,-72],[21,-81],[1,-36],[-12,-37],[-2,-53],[-7,-128],[-3,-48],[7,-32],[3,-45],[-11,-55],[-22,-82],[-22,-22],[-5,-1],[-29,-48],[-21,-18],[-12,12],[-13,-20],[-16,-53],[-18,-24],[-34,-14],[-10,-6],[-19,2],[-17,-13],[-14,-29],[-15,-10],[-16,7],[-15,-11],[-13,-28],[-7,-30],[-2,-33],[-13,-22],[-23,-12],[-8,-16],[1,-23],[-10,-18],[-40,-18],[-28,-33],[-18,-47],[-19,-30],[-29,-18],[-40,-48],[-5,-30],[15,-27],[5,-24],[-4,-21],[-12,-3],[-21,15],[-15,4],[-8,-10],[-5,-17],[1,-25],[-8,-17],[-15,-9],[-9,-21],[-4,-32],[-19,-41],[-35,-49],[-26,-66],[-20,-84],[-23,-55],[-26,-26],[-19,-37],[-9,-49],[-28,-75],[-47,-102],[-41,-70],[-38,-38],[-21,-43],[-5,-48],[-24,-54],[-44,-61],[-13,-28]],[[33997,34453],[-10,-22],[-1,-39],[-18,-52],[-33,-64],[-11,-55],[15,-70],[2,-84],[-6,-34],[-15,-11],[-3,-22],[8,-32],[0,-43],[-7,-52],[-15,-60],[-24,-67],[-5,-46],[12,-22],[6,-24],[0,-26],[-5,-37],[-10,-49],[-15,-36],[-20,-23],[-6,-30],[8,-36],[1,-37],[-6,-39],[4,-38],[12,-37],[-1,-42],[-21,-86]],[[33833,33138],[-6,-53],[14,-228],[-8,-32],[-14,-37],[-16,-2],[-19,6],[-13,-23],[-9,-100],[-25,-218],[4,-51],[21,-84],[7,-53],[6,-41],[5,-76],[-12,-34],[-11,-6],[-14,-19],[16,-93],[13,-43],[38,-87],[144,-122],[60,-72],[68,-97],[37,-100],[3,-83],[-54,-124],[-6,-103],[11,-73],[20,-68],[52,-88],[39,-32],[52,4],[9,-25],[5,-21],[8,-178],[-1,-67],[-15,-61],[-100,-282],[-86,-172],[-31,-94],[-11,-102],[-27,-48],[-148,-154],[-230,-137],[-186,-71],[-42,-24],[-299,-78],[-58,-11],[-75,7],[-61,-10],[-68,21],[-61,25],[-34,61],[-41,7],[-11,-30],[20,-78],[-9,-94],[11,-53],[24,-11],[23,-27],[21,-37],[-35,-4],[13,-29],[15,-18],[-2,-61],[-13,-148],[-34,-32],[-9,-9],[-11,-31],[-21,-142],[-7,-92],[9,-59],[41,-124],[-15,-81],[-26,-44],[-112,-90],[-45,-36],[-70,-25],[-114,-4],[-42,6],[-97,82],[-73,49],[-66,39],[-64,23],[9,12],[4,21],[-18,12],[-13,3],[-42,-43],[-18,-43],[-5,-38],[-1,-92],[8,-76],[30,-189],[3,-103],[-14,-130],[20,-76],[24,-34],[56,-34],[21,-23],[24,3],[7,-9],[-4,-16],[-14,-33],[1,-35],[42,-10],[43,7],[46,16],[11,24],[0,50],[-53,9],[6,18],[41,21],[53,33],[27,7],[18,-23],[12,-21],[16,-54],[9,-71],[1,-86],[-7,-81],[-7,-28],[-14,-35],[-95,-44],[-26,12],[-25,61],[-8,63],[-21,42],[-46,34],[-45,-10],[-45,-59],[-44,-19],[-15,-53],[110,-87],[52,-24],[17,1],[17,-11],[-15,-32],[-16,-20],[-79,-44],[-34,-31],[-41,-60],[-57,-132],[-17,-28],[-9,-34],[-6,-91],[19,-150],[-20,-63],[12,-70],[-6,-47],[-20,-67],[-80,-106],[-14,-78],[28,-45],[-2,-40],[-9,-37],[-33,1],[-120,24],[-44,-39],[-41,-49],[-11,-23],[-14,-14],[-83,-26],[-16,-17],[-88,-185],[-38,-114],[-45,-112],[-12,-47],[-3,-66],[7,-59],[6,-44],[16,-56],[33,-64],[170,-260],[35,-23],[181,-28],[40,-36],[23,-58],[9,-51],[-10,-128],[-11,-41],[-20,-36],[-43,-47],[-51,-25],[14,-18],[21,2],[46,16],[19,-16],[15,-50],[-28,-21],[-9,-24],[-20,-38],[-105,-148],[-56,-45],[-52,-59],[-70,-61],[-27,-34],[-37,-73],[-56,-79],[-61,-170],[-2,-33],[9,-22],[-34,-298],[-12,-35],[-24,-37],[-65,-62],[-31,-7],[-41,35],[-23,38],[-22,63],[-28,66],[-1,-23],[9,-40],[-6,-42],[-70,-19],[-18,-20],[63,9],[43,-13],[18,-15],[16,-32],[15,-38],[-12,-21],[-35,-18],[-44,-32],[-53,-58],[-29,-68],[-13,-48],[-14,-98],[-4,-64],[-22,-50],[-35,-44],[2,-11],[24,23],[18,7],[16,-59],[22,-119],[10,-82],[-2,-25],[-6,-33],[-45,-9],[-39,2],[-29,-15],[15,-15],[27,6],[37,-36],[41,15],[19,-23],[13,-22],[63,-172],[55,-106],[27,-63],[-13,-29]],[[30988,21683],[-5,38],[-36,10],[-35,11],[-58,27],[-78,41],[-79,0],[-62,35],[-69,39],[-145,3],[-128,3],[-131,2],[-84,2],[-56,1],[-14,14],[5,49],[-21,35],[-30,43],[-37,31],[-18,40],[-21,46],[12,41],[17,99],[1,43],[-16,31],[-5,43],[5,20],[14,16],[9,70],[-7,70],[-11,62],[-14,27],[-19,13],[-14,3],[-31,-23],[-51,5],[-17,-8],[-25,-25],[-35,-37],[-20,13],[-6,39],[-13,34],[-8,30],[-6,50],[-11,63],[-20,76],[-32,61],[-2,54],[-6,69],[16,67],[-9,56],[-20,66],[6,69],[20,38],[6,48],[90,8],[-3,65],[15,52],[17,48],[14,21],[32,19],[38,28],[22,31],[10,28],[6,37],[2,38],[-6,83],[7,25],[23,33],[40,30],[17,79],[-9,68],[-23,55],[-28,24],[-2,56],[13,53],[16,57],[20,65],[-1,46],[17,27],[50,59],[17,59],[18,16],[20,7],[1,33],[-15,33],[-2,41],[2,45],[4,61],[24,23],[34,49],[9,32],[1,42],[-10,87],[-8,62],[-5,23],[-15,42],[-12,26],[19,34],[34,35],[15,51],[-13,43],[-20,23],[-6,66],[7,84],[15,25],[51,13],[5,43],[39,61],[-1,58],[-25,36],[-24,58],[-18,51],[-60,28],[-64,15],[-8,48],[2,28],[30,-11],[48,10],[36,2],[26,5],[29,7],[27,-20],[27,12],[11,77],[17,40],[3,38],[-18,31],[-31,9],[-137,24],[-4,31],[1,51],[5,52],[0,26],[12,23],[15,47],[10,32],[-10,41],[-22,60],[16,28],[1,34],[-5,32],[-23,36],[-20,51],[0,53],[24,14],[15,16],[4,33],[-9,41],[-32,12],[-43,25],[-14,21],[-12,44],[9,123],[-4,74],[-4,41],[10,31],[15,29],[-7,66],[-13,34],[5,27],[12,27],[10,33],[10,8],[13,-19],[23,11],[28,27],[3,31],[-5,45],[-21,113],[-19,70],[4,26],[7,26],[-5,97],[1,58],[2,171],[2,59],[-19,60],[3,56],[13,41],[13,55],[9,49],[10,22],[17,11],[3,27],[-7,21],[-22,31],[-5,39],[5,30],[10,18],[17,0],[12,42],[4,53],[2,24],[-9,31],[-7,73],[-7,41],[8,18],[11,6],[18,-10],[14,5],[2,22],[1,24],[5,16],[12,53],[13,67],[3,47],[-5,126],[7,30],[13,26],[19,25],[25,21],[30,30],[38,11],[15,33],[11,44],[3,36],[-15,25],[-19,30],[-9,76],[-5,70],[-2,88],[-19,75],[-20,85],[-5,76],[6,41],[8,66],[-8,30],[-10,53],[10,42],[13,65],[-2,33],[-10,79],[-9,44],[9,48],[15,44],[11,23],[-2,38],[5,32],[22,21],[20,38],[14,5],[18,0],[11,11],[5,30],[3,33],[28,41],[16,38],[29,8],[15,41],[0,52],[-3,53],[10,62],[-11,93],[1,50],[-12,41],[3,44],[-6,28],[-18,11],[-6,35],[8,17],[17,14],[20,27],[15,129],[8,39],[7,46],[-1,24],[10,35],[12,53],[19,50],[11,36],[11,47],[3,28],[13,14],[16,4],[19,9],[7,17],[-1,25],[-1,56],[-6,89],[-3,114],[3,75],[12,76],[11,41],[-3,31],[-3,35],[-21,19],[-20,-17],[-14,5],[-18,40],[-6,43],[3,58],[15,36],[5,46],[-8,14],[-18,30],[-17,105],[2,89],[-17,23],[-7,70],[-18,25],[-6,52],[-6,53],[2,24],[18,7],[11,42],[-8,24],[-14,20],[-17,-2],[-16,25],[-21,101],[-16,55],[5,82],[3,64],[7,54],[3,43],[13,21],[12,-10],[11,5],[11,35],[11,21],[0,18],[-7,19],[-3,33],[8,39],[13,90],[21,100],[9,37],[-2,31],[5,15],[14,-16],[40,17],[14,44],[5,40],[13,22],[-6,31],[-17,10],[-10,14],[4,36],[6,82],[-1,61],[-15,128],[-12,128],[8,43],[27,58],[20,26],[4,33],[20,151],[2,82],[13,46],[9,85],[36,74],[10,49],[15,5],[7,15],[19,55],[25,56],[22,28],[5,44],[10,60],[21,100],[12,70],[16,25],[19,92],[8,53],[21,22],[17,6],[16,-25],[16,5],[16,31],[36,22],[17,12],[7,31],[0,55],[-15,41],[-31,79],[-27,87],[-3,28],[0,30],[5,38],[13,43],[32,71],[-4,51],[-23,187],[-9,51],[-16,96],[2,38],[15,105],[12,43],[18,8],[10,14],[3,19],[-12,23],[-5,30],[-6,43],[-17,15],[-9,35],[0,52],[15,68],[17,19],[6,30],[18,27],[17,22],[13,39],[57,48],[44,38],[88,71],[60,49],[5,34],[5,23],[28,174],[36,224],[22,140],[-52,104]],[[31334,38697],[10,27],[29,71],[6,57],[12,24],[53,58],[9,38],[5,43],[11,30],[20,7],[37,27],[39,25],[12,35],[11,61],[10,67],[7,17],[13,-2],[21,-17],[11,-26],[55,-81],[25,-46],[24,-6],[46,9],[9,-2],[119,-2],[18,-4],[42,-20],[23,-16],[16,-8],[27,-25],[22,-82],[13,-66],[9,-57],[20,-102],[14,-38],[4,19],[12,110],[16,65],[21,72],[44,169],[15,25],[17,13],[11,1],[12,-13],[17,0],[11,13],[113,2],[118,2],[3,-1],[5,-29],[20,-63],[22,-34],[4,-9]],[[62653,75239],[-11,-10],[-10,5],[0,24],[8,9],[8,0],[8,-9],[-3,-19]],[[62913,74254],[-48,4],[-41,-25],[-15,5]],[[62809,74238],[-10,44],[-9,36],[-26,93],[7,38],[-15,21],[-35,40],[-9,16],[5,22],[4,41],[-4,33],[-9,10],[-18,1],[-21,-8],[-43,-32],[-29,20],[-18,21],[-9,17],[-23,-14],[-5,7],[-1,42],[-7,23],[-13,27],[-13,13],[-46,-27],[-27,-9]],[[62435,74713],[-10,25],[-48,81],[-44,63],[-31,25],[-31,-2],[-48,-13],[-18,5],[-41,28],[-35,32],[5,13],[7,10],[-9,42],[-19,67],[2,22],[-6,29],[-7,22],[27,53],[13,42],[3,42],[-8,43],[-18,77],[-11,23],[-20,21],[-18,34],[-4,25]],[[62066,75522],[14,5],[43,0],[41,9],[32,16],[47,13],[19,12],[23,6],[68,-13],[25,10],[77,2],[2,5],[-10,16],[0,7],[46,10],[7,8]],[[62500,75628],[6,-26],[17,-29],[19,-12],[10,-16],[0,-12],[-33,-15],[-2,-7],[2,-7],[10,-4],[46,-36],[27,-1],[14,-11],[7,-22],[22,-29],[18,-29],[1,-10],[-4,-15],[-49,-56],[-6,-19],[-1,-20],[22,-61],[32,-67],[46,-50],[63,-55],[1,-34],[-10,-41],[-9,-27],[-4,-19],[-7,-7],[-64,1],[-9,-6],[-4,-8],[-1,-7],[23,-12],[36,-43],[20,-42],[21,-19],[24,-33],[19,-31],[30,-41],[34,14],[44,-36],[2,-25],[-3,-21],[-28,-24],[-3,-10],[0,-8],[3,-12],[17,-19],[19,-29],[22,-43],[-10,-13],[-20,-2],[-16,5],[-6,-8],[1,-14],[20,-33],[4,-24],[-1,-41],[1,-53]],[[62491,75476],[9,-7],[6,7],[1,15],[-2,14],[-7,4],[-9,-3],[-1,-16],[3,-14]],[[2576,43576],[-12,-5],[-14,27],[28,21],[8,11],[34,-6],[-20,-8],[-24,-40]],[[5002,3963],[-87,-13],[-206,26],[-54,21],[-30,22],[-56,20],[-14,11],[0,23],[-9,15],[-19,13],[-9,13],[-17,8],[277,-13],[108,-19],[20,-14],[195,-60],[-53,-9],[-46,-44]],[[6115,4547],[-25,-4],[-22,31],[-108,63],[-64,42],[-42,33],[-18,23],[21,0],[158,-70],[24,-27],[118,-48],[-42,-43]],[[5426,4844],[-29,-5],[-745,67],[-143,21],[-34,13],[-14,11],[-3,8],[6,22],[17,16],[185,25],[207,-19],[250,-48],[172,-38],[89,-34],[37,-26],[5,-13]],[[7241,5741],[-51,-2],[-65,6],[-50,14],[-114,20],[-29,38],[-134,31],[-62,10],[21,37],[142,-49],[175,-49],[141,-30],[26,-26]],[[33407,5562],[-11,-124],[1,-56],[-16,-45],[-28,-23],[-55,-39],[-40,-23],[-87,-38],[-400,34],[-180,31],[-75,40],[-12,18],[-23,61],[-21,19],[-159,-13],[-97,-19],[-17,-10],[-26,-38],[-14,-8],[-259,81],[-273,95],[-113,49],[-39,22],[-11,14],[25,20],[26,12],[29,8],[30,2],[22,-7],[22,-14],[14,-51],[14,-8],[38,-14],[961,7],[80,2],[166,15],[89,21],[33,29],[-80,7],[-32,22],[-27,41],[-6,38],[9,28],[106,14],[16,10],[-28,16],[1,37],[63,14],[25,31],[124,39],[196,-21],[47,-56],[-13,-37],[-9,-36],[-1,-57],[80,-9],[25,-20],[24,-26],[-29,-1],[-28,-6],[-23,-27],[-20,-35],[-14,-16]],[[41355,5876],[38,-12],[40,27],[-6,27],[23,45],[33,-50],[219,-51],[71,-50],[-29,-12],[-22,2],[-64,-5],[-109,-44],[-117,42],[-209,29],[-63,22],[-49,68],[88,56],[21,-6],[135,-88]],[[41016,5948],[-48,-6],[-19,15],[23,38],[34,33],[63,3],[60,-22],[-6,-21],[-13,-2],[-94,-38]],[[31618,5715],[-26,-2],[-14,3],[-14,12],[-12,47],[-137,37],[-16,21],[-9,46],[-23,18],[-178,82],[-15,17],[-10,25],[33,10],[70,-18],[127,-5],[28,-8],[26,-14],[142,-3],[72,-7],[40,-65],[81,-19],[11,-38],[10,-68],[-110,-50],[-25,-7],[-51,-14]],[[31316,6075],[-48,-28],[-202,13],[-69,9],[-39,15],[36,60],[27,20],[25,8],[56,33],[88,7],[67,-5],[113,-26],[-29,-25],[-19,-9],[-18,-38],[12,-34]],[[40573,6151],[-32,-21],[-675,36],[-33,7],[9,43],[92,7],[52,8],[72,19],[53,33],[18,1],[317,-77],[111,-32],[13,-15],[3,-9]],[[5819,5871],[-347,-22],[-141,19],[-294,63],[-403,114],[-110,36],[-72,31],[-70,39],[-16,43],[10,62],[13,51],[21,31],[86,39],[43,42],[87,44],[25,33],[37,2],[70,-4],[69,-9],[65,-11],[63,-19],[144,-62],[100,-61],[144,-72],[143,-81],[80,-30],[77,-45],[74,-61],[14,-21],[31,-27],[19,-26],[19,-22],[19,-11],[15,-24],[-3,-26],[-12,-15]],[[30462,5944],[-60,-2],[-120,5],[-120,20],[-31,10],[-44,32],[-14,17],[-12,21],[-1,33],[32,114],[59,68],[56,39],[174,91],[23,11],[159,43],[62,23],[97,48],[534,186],[122,27],[55,-20],[31,-19],[-16,-22],[-72,-53],[-34,-32],[-87,-65],[-188,-109],[-133,-82],[-171,-113],[-40,-40],[-81,-95],[15,-42],[-27,-58],[-107,-28],[-61,-8]],[[96566,6830],[-34,-43],[-39,-19],[-123,16],[-86,-36],[-95,-13],[-45,19],[-20,35],[-10,47],[0,17],[27,7],[127,-33],[53,-29],[29,1],[76,38],[63,48],[16,23],[21,8],[27,-17],[13,-52],[0,-17]],[[37438,6445],[36,-2],[146,6],[146,-2],[89,-7],[26,-16],[23,-32],[26,-50],[24,-55],[27,-45],[16,-79],[25,-29],[43,-73],[6,-59],[-13,-128],[-21,-52],[-56,-50],[-64,5],[-29,-2],[-28,-10],[-11,-7],[-4,-10],[74,-43],[9,-16],[1,-19],[-10,-13],[-10,-8],[-1573,-260],[-61,-13],[-61,-27],[-20,-23],[-20,-18],[-1219,-49],[-11,3],[-11,10],[-31,50],[-6,79],[7,31],[61,30],[23,17],[103,117],[53,55],[25,46],[13,-3],[47,-27],[35,-8],[68,11],[67,33],[29,18],[29,-6],[5,-28],[12,-9],[162,88],[147,98],[144,111],[73,66],[18,19],[12,28],[-10,28],[-13,25],[-12,10],[-12,4],[-75,18],[23,29],[22,35],[14,39],[5,47],[-3,24],[3,18],[34,15],[23,24],[16,28],[-26,8],[-12,22],[23,49],[21,52],[21,28],[56,55],[163,138],[59,74],[17,26],[386,120],[63,12],[121,16],[56,4],[158,-12],[74,-12],[128,-32],[189,-61],[71,-27],[71,-34],[68,-43],[67,-52],[13,-16],[6,-29],[2,-28],[-3,-27],[-18,-56],[-26,-39],[-311,-37],[-41,-15],[-22,-30],[-16,-30],[36,-11]],[[8550,7294],[81,-29],[-142,9],[-62,40],[40,16],[40,-3],[35,-21],[8,-12]],[[8223,7275],[-22,-2],[-241,44],[-47,13],[82,27],[54,4],[146,-66],[39,-8],[-11,-12]],[[96411,7303],[105,-42],[275,4],[229,-39],[21,-40],[-65,-21],[-101,-53],[-65,-17],[-55,0],[-112,22],[-146,-3],[-31,-31],[-71,-31],[-82,-54],[-22,44],[-33,42],[-82,88],[-6,14],[45,17],[22,29],[47,39],[-5,24],[-39,26],[-15,22],[26,36],[58,16],[75,-15],[34,-48],[-6,-21],[-1,-8]],[[8723,7484],[-116,-7],[-64,15],[-16,44],[18,9],[148,-20],[54,-11],[20,-13],[-10,-12],[-34,-5]],[[8547,7418],[-17,-9],[-121,5],[-25,8],[-11,9],[-168,13],[-76,41],[-15,13],[30,20],[57,12],[23,16],[145,14],[23,-8],[13,-22],[66,-43],[17,-28],[7,-17],[36,-8],[16,-16]],[[9276,7510],[-104,-25],[-27,7],[9,36],[-16,25],[-4,12],[9,17],[61,0],[172,-27],[23,-38],[-123,-7]],[[8518,7651],[113,-8],[74,6],[77,-14],[18,-16],[-14,-13],[-83,-4],[-40,-22],[-47,-3],[-71,16],[-64,35],[37,23]],[[8269,7617],[-118,-8],[-48,16],[-12,15],[10,13],[183,13],[20,-16],[6,-10],[-41,-23]],[[9003,7690],[3,-8],[-42,5],[-63,33],[-12,11],[28,11],[36,-10],[33,-20],[17,-22]],[[9225,7699],[-33,-46],[-87,24],[-37,30],[21,39],[40,12],[52,-14],[19,-5],[25,-40]],[[9253,7922],[-57,-8],[-71,36],[-54,29],[-18,25],[-3,8],[0,10],[16,6],[115,-21],[72,-85]],[[95268,8313],[-50,-74],[-35,2],[-20,14],[36,41],[34,18],[21,5],[14,-6]],[[9656,8230],[-31,-3],[-53,14],[-140,46],[-30,23],[21,23],[50,16],[38,-5],[95,-43],[29,-31],[17,-23],[4,-17]],[[95548,8736],[-37,0],[-22,17],[-7,40],[1,13],[72,48],[58,12],[-31,-72],[-11,-12],[-23,-46]],[[13225,8961],[-44,-32],[-86,21],[7,23],[78,20],[53,-13],[-8,-19]],[[13592,8880],[-31,-12],[-116,29],[-68,6],[-31,17],[-20,14],[-6,15],[-32,22],[62,44],[49,14],[47,-3],[10,-22],[90,-26],[70,-1],[7,-24],[-3,-34],[-28,-39]],[[14620,8857],[-42,-10],[-83,38],[-27,18],[-24,31],[-19,6],[-7,7],[-11,80],[25,9],[53,-11],[102,-42],[71,-12],[24,-32],[-24,-56],[-38,-26]],[[17572,9121],[-136,-16],[-37,18],[-10,22],[6,23],[277,125],[49,-17],[14,-8],[-83,-62],[-37,-22],[-6,-8],[20,-8],[6,-7],[-16,-17],[-47,-23]],[[16792,9152],[-58,-6],[-18,1],[-18,13],[-5,9],[30,30],[29,13],[9,10],[-40,101],[37,3],[43,20],[83,-2],[72,-18],[13,-15],[9,-25],[-31,-51],[-19,-18],[-108,-45],[-28,-20]],[[16512,9356],[49,-57],[19,-38],[11,-39],[-199,-96],[-9,-10],[-9,-50],[5,-11],[8,-8],[1,-19],[-17,-6],[-340,-38],[-159,35],[-22,23],[-5,36],[19,7],[35,5],[-9,16],[-22,29],[-2,24],[48,61],[23,16],[-90,57],[-11,13],[-12,4],[-44,-7],[-43,3],[15,23],[12,37],[38,33],[28,5],[28,-4],[132,-1],[130,-17],[131,-12],[215,-11],[46,-3]],[[44275,9281],[-13,-126],[4,-26],[11,-26],[49,-70],[4,-52],[-2,-20],[-20,-29],[-69,7],[-22,15],[-8,10],[-36,122],[-21,29],[-32,25],[-123,23],[-118,-8],[29,28],[178,39],[45,29],[28,34],[13,52],[31,65],[49,30],[31,3],[16,-53],[0,-50],[-24,-51]],[[97178,9444],[-38,-12],[-51,37],[-12,12],[50,70],[-4,23],[7,19],[19,14],[12,-2],[29,-77],[20,-32],[-28,-31],[-4,-21]],[[14908,9627],[74,-16],[25,-25],[33,-18],[33,-10],[31,-27],[18,-48],[16,-15],[49,-32],[17,-28],[-3,-14],[-93,-11],[-31,4],[-29,-9],[-9,-17],[1,-18],[16,-13],[34,-12],[34,2],[63,14],[28,-3],[32,-15],[32,-2],[84,46],[21,8],[21,-2],[115,-54],[24,-27],[-17,-15],[-14,-22],[6,-15],[55,-22],[23,-28],[14,-11],[-3,-24],[-8,-29],[1,-33],[-28,-18],[-13,0],[-60,18],[-187,10],[-60,15],[-92,65],[-36,4],[-37,16],[-57,46],[-99,37],[-63,45],[2,38],[-9,27],[-12,11],[-12,6],[-36,9],[-35,-2],[-18,-11],[-29,-28],[-32,-5],[-25,6],[-5,6],[-1,74],[-27,10],[-23,30],[-4,40],[10,37],[35,45],[40,5],[40,-7],[41,9],[65,7],[74,-4]],[[29478,9586],[-27,-11],[-17,6],[-31,29],[4,23],[14,15],[10,17],[60,62],[44,7],[36,-13],[-39,-59],[-10,-41],[-44,-35]],[[20961,9696],[-33,-26],[-62,6],[-48,43],[-19,58],[-2,20],[13,15],[31,14],[120,-130]],[[29346,9735],[-40,-75],[-7,-9],[-40,-18],[14,-20],[11,-10],[7,-24],[23,-33],[28,-21],[-23,-59],[-34,-26],[-369,160],[-28,26],[-14,19],[-11,30],[-1,30],[9,24],[13,14],[33,17],[34,1],[75,-32],[10,5],[14,28],[40,1],[9,24],[-55,8],[-44,24],[-29,24],[-8,19],[99,33],[251,-42],[38,-14],[17,-19],[14,-26],[-36,-59]],[[23945,9838],[-47,0],[-31,21],[-10,14],[19,21],[11,2],[57,-36],[12,-15],[-11,-7]],[[24677,9687],[-51,-14],[-46,6],[17,132],[26,33],[-7,24],[-47,66],[-33,75],[16,17],[86,27],[99,-5],[39,-32],[12,-40],[-5,-29],[-32,-53],[33,-18],[7,-36],[-7,-44],[-32,-52],[-30,-31],[-45,-26]],[[23603,9985],[-53,-3],[-15,13],[16,28],[128,47],[52,28],[8,-4],[7,-9],[22,-56],[2,-14],[-167,-30]],[[45526,9977],[-19,-14],[-40,1],[-38,28],[-16,41],[-1,29],[17,33],[27,9],[15,-11],[36,-71],[19,-45]],[[69016,10195],[-14,0],[7,23],[37,41],[28,50],[17,8],[31,-44],[-7,-37],[-41,-27],[-58,-14]],[[46525,10268],[-22,-13],[-37,5],[-47,29],[-15,22],[-5,20],[13,29],[11,8],[24,-4],[42,-37],[29,-40],[7,-19]],[[69421,10415],[-35,-74],[-13,2],[-15,43],[13,27],[16,16],[28,-8],[6,-6]],[[22752,10418],[-23,-61],[2,-60],[68,4],[30,114],[64,21],[31,-68],[-30,-55],[15,-31],[18,-22],[32,-1],[29,33],[13,24],[11,26],[19,58],[61,54],[135,8],[71,-34],[-48,-86],[-115,-50],[-74,-52],[25,-14],[25,-7],[23,2],[65,27],[160,50],[61,37],[22,-6],[0,-62],[21,-42],[-12,-93],[-69,-17],[-71,-8],[18,-41],[-4,-17],[-6,-13],[-178,17],[-31,-6],[-31,-12],[-31,2],[-62,31],[-32,-1],[-64,-14],[-65,-6],[-93,1],[-68,5],[-64,33],[-67,9],[-75,1],[-79,38],[-66,15],[-95,39],[-25,15],[-25,8],[-45,-3],[-346,59],[-51,-1],[-33,-8],[-33,3],[-67,29],[-14,31],[7,29],[15,13],[30,13],[480,69],[50,19],[37,-2],[28,-59],[42,-62],[14,1],[14,7],[47,51],[86,-16],[48,23],[33,45],[97,52],[61,-10],[57,-22],[27,-54]],[[49179,10821],[-30,-13],[-39,3],[-30,17],[-21,34],[-5,13],[3,22],[-2,11],[38,6],[14,-14],[6,-11],[66,-68]],[[33180,10914],[-28,-4],[-38,10],[-33,20],[-11,23],[16,19],[30,12],[47,-4],[22,-24],[5,-22],[-6,-24],[-4,-6]],[[49296,11078],[30,-19],[47,3],[45,-15],[-7,-20],[-26,-26],[-22,-56],[-22,-27],[-66,-55],[-49,-15],[-11,31],[1,32],[4,25],[2,18],[-46,24],[-3,33],[-9,19],[-134,66],[-23,19],[10,11],[138,6],[81,-12],[60,-42]],[[29526,11154],[43,-51],[-40,-40],[-142,-75],[-83,-29],[-84,-22],[-380,-69],[-27,0],[-26,9],[-15,15],[-25,57],[3,29],[34,27],[35,18],[60,16],[229,36],[23,12],[19,27],[6,31],[8,24],[15,11],[16,0],[30,-23],[55,-93],[18,13],[16,25],[3,80],[16,6],[49,-22],[30,-23],[1,45],[21,14],[22,-5],[22,-10],[48,-33]],[[33127,11111],[-23,0],[-20,12],[-17,35],[-5,17],[9,38],[16,9],[92,5],[28,-20],[1,-34],[-10,-25],[-71,-37]],[[48362,11202],[-73,-34],[-6,15],[-24,20],[-48,56],[54,4],[49,24],[27,-10],[6,-6],[15,-69]],[[50843,11176],[-94,-15],[-21,17],[-11,34],[13,20],[123,68],[33,-6],[11,-6],[8,-26],[-11,-41],[-14,-20],[-37,-25]],[[49088,11213],[-45,-1],[-13,15],[-2,12],[58,83],[32,21],[62,16],[40,-5],[26,-18],[8,-33],[0,-49],[-15,-26],[-151,-15]],[[30084,11367],[14,-17],[60,16],[21,-17],[4,-12],[-27,-42],[-32,-28],[-37,-2],[-27,71],[-3,18],[27,13]],[[70000,11156],[-20,-1],[-25,7],[-32,42],[-18,30],[-7,31],[3,61],[16,30],[26,12],[11,-28],[4,-32],[8,-22],[33,-29],[16,-25],[5,-14],[6,-29],[-5,-20],[-21,-13]],[[51257,11244],[-45,-13],[-51,29],[-14,20],[-15,53],[-2,20],[12,13],[40,15],[66,-6],[25,-24],[9,-43],[-8,-37],[-17,-27]],[[57460,11301],[-18,-22],[-51,4],[-39,-21],[-31,8],[-98,35],[-11,45],[-3,20],[8,35],[88,73],[35,7],[50,-10],[22,-21],[14,-41],[39,-83],[-5,-29]],[[50360,11373],[-24,-73],[-15,2],[-15,43],[-31,46],[-11,32],[-1,43],[22,25],[80,16],[27,-10],[13,-55],[-45,-69]],[[33011,11534],[-42,-1],[-19,16],[-7,10],[5,23],[16,21],[49,-16],[12,-41],[-14,-12]],[[29170,11677],[49,-14],[72,-63],[24,-32],[7,-19],[-6,-13],[-33,-15],[-25,-77],[-50,-27],[-116,17],[-128,31],[-10,6],[-11,27],[-2,31],[14,39],[22,20],[95,24],[7,14],[14,39],[24,8],[11,-3],[42,7]],[[54506,11516],[-18,-37],[-87,51],[-51,16],[-13,9],[-12,31],[-3,13],[10,20],[28,32],[59,26],[93,13],[91,-10],[15,-16],[-86,-54],[-26,-94]],[[30004,11694],[-60,-24],[-40,19],[-120,36],[-50,66],[5,35],[23,21],[36,11],[73,-22],[37,-23],[96,-119]],[[32778,11680],[-24,-4],[-24,53],[-13,82],[-77,119],[-20,62],[14,15],[21,5],[56,-17],[34,-23],[38,-49],[46,-44],[9,-37],[-7,-42],[-29,-11],[1,-31],[-17,-60],[-8,-18]],[[30541,11987],[-8,-70],[46,25],[17,-5],[40,-26],[81,-151],[18,-48],[33,-140],[40,-104],[100,-183],[49,-100],[26,-58],[3,-78],[31,-22],[7,-32],[10,-107],[7,-125],[7,-237],[-4,-56],[-43,-88],[-18,-63],[-23,-42],[-27,-30],[-141,-125],[-17,-62],[-237,-53],[-134,-22],[-52,24],[-53,6],[-66,-8],[-191,-7],[-144,-18],[-19,7],[-13,23],[-14,16],[-38,-3],[-31,9],[-30,19],[-33,36],[-14,21],[-8,23],[64,60],[33,13],[33,4],[67,-13],[67,-20],[147,-16],[204,-4],[56,6],[67,19],[62,55],[-30,21],[-31,13],[-30,3],[-30,-4],[-84,-34],[-65,-20],[-65,-12],[-69,20],[-64,56],[-2,18],[220,43],[20,7],[40,27],[13,24],[6,23],[-148,40],[-31,-1],[-30,-7],[-67,17],[-64,47],[-59,57],[-22,5],[-21,-17],[-143,-150],[-12,-1],[-54,11],[-68,30],[-62,10],[-40,-8],[-15,-12],[39,-34],[33,-30],[10,-24],[-101,-75],[-27,-10],[-43,7],[-16,9],[-31,40],[-30,10],[-65,-8],[-34,3],[-34,18],[-32,26],[-30,14],[-36,29],[-26,20],[-8,29],[3,28],[11,16],[2,15],[-8,27],[5,19],[12,18],[54,34],[65,7],[63,-43],[42,-13],[19,-1],[7,2],[5,12],[-1,22],[-12,42],[-1,29],[14,24],[19,9],[20,6],[13,3],[41,-15],[29,-16],[59,-46],[49,-32],[19,-3],[14,11],[13,18],[-59,46],[-6,30],[3,26],[36,15],[22,2],[104,-27],[56,-9],[55,-3],[114,31],[-61,35],[-132,30],[-25,21],[-18,34],[97,31],[99,-1],[177,-41],[59,20],[55,58],[32,15],[125,-5],[101,27],[16,-3],[15,-8],[97,-97],[13,5],[10,19],[3,34],[1,34],[-3,35],[-12,22],[-16,-3],[-17,-10],[-28,9],[-28,18],[-29,8],[-100,11],[-71,18],[-37,14],[-34,28],[-5,31],[36,71],[138,76],[65,25],[66,6],[32,-5],[76,-32],[12,2],[11,8],[-73,53],[-65,41],[-33,31],[-26,12],[-109,12],[-57,-31],[-27,-5],[-27,3],[-160,74],[-9,8],[-23,28],[-12,21],[-7,35],[3,35],[5,23],[24,91],[13,72],[-7,59],[-25,32],[-36,22],[-33,35],[-9,24],[-6,28],[-1,36],[9,32],[14,34],[18,17],[34,17],[133,39],[270,49],[30,-25],[43,-52],[14,-21],[15,-104],[0,-29]],[[24851,12213],[-3,-1],[-6,0],[-4,0],[-4,-1],[-3,-1],[-3,-1],[-1,0],[0,2],[-2,2],[-3,5],[-2,5],[-1,5],[1,7],[3,3],[0,4],[0,5],[1,5],[1,5],[0,2],[1,2],[2,1],[5,0],[3,-1],[5,0],[3,-1],[3,-2],[4,-5],[3,-6],[0,-3],[1,-3],[0,-4],[1,-5],[1,-4],[-1,-7],[-2,-7],[-2,-1],[-1,0]],[[33151,12230],[-11,-16],[-35,10],[-20,11],[-34,28],[19,17],[37,-4],[30,-20],[14,-26]],[[31292,12807],[-55,-11],[-41,12],[1,44],[-11,5],[-4,10],[52,33],[39,8],[47,-5],[20,-15],[7,-14],[-36,-36],[-6,-14],[-13,-17]],[[95786,12937],[-24,-16],[-15,5],[-15,34],[16,53],[-6,69],[3,17],[39,-39],[7,-21],[16,-32],[3,-17],[-16,-32],[-8,-21]],[[31288,13309],[-13,-4],[-31,2],[-20,13],[26,41],[-3,28],[23,11],[26,-10],[18,-35],[3,-15],[-29,-31]],[[73839,13275],[-48,-15],[-8,8],[-1,9],[-72,55],[-12,45],[7,31],[59,-3],[70,-27],[37,-69],[-32,-34]],[[63484,13373],[-46,-14],[-21,6],[-2,13],[-1,14],[2,15],[16,12],[78,1],[31,-10],[9,-7],[1,-21],[-3,-6],[-64,-3]],[[95361,13351],[-5,-35],[-14,8],[-20,28],[-20,69],[18,7],[23,-12],[9,-34],[8,-18],[1,-13]],[[74039,13382],[-32,-14],[-25,3],[-29,31],[12,21],[30,13],[38,-7],[10,-11],[26,-7],[-30,-29]],[[31114,12975],[-29,-37],[-23,-11],[-21,10],[-21,5],[-15,-14],[-16,-58],[-19,-29],[-20,-15],[-12,6],[-12,0],[-19,-13],[-24,-5],[-23,6],[-22,37],[-32,44],[-6,14],[-5,36],[1,36],[14,29],[73,98],[24,44],[21,50],[23,44],[44,81],[22,29],[111,84],[30,19],[33,-5],[8,-44],[-16,-22],[-53,-56],[-11,-79],[1,-29],[5,-8],[20,-10],[14,-11],[18,-24],[21,-14],[-45,-41],[-30,-21],[-21,-26],[-40,-25],[-17,-16],[26,-6],[38,-21],[10,-18],[-5,-14]],[[73702,13472],[-30,-18],[-24,3],[-16,19],[-3,12],[15,38],[12,-2],[8,-20],[38,-32]],[[77456,13554],[-26,-7],[-27,16],[-13,31],[-3,10],[42,8],[56,-30],[-29,-28]],[[95169,13549],[-15,-27],[-13,3],[-58,69],[7,30],[-8,25],[1,23],[2,8],[71,-105],[13,-26]],[[77851,13699],[-37,-7],[-14,15],[-2,9],[27,33],[33,10],[-3,-38],[-4,-22]],[[31501,13709],[-62,-65],[-9,4],[-5,7],[1,11],[20,24],[4,70],[41,26],[16,-9],[-14,-30],[9,-26],[-1,-12]],[[76836,13804],[32,-15],[57,2],[20,-23],[4,-24],[-1,-14],[-23,-21],[-150,-14],[-24,22],[26,61],[28,20],[31,6]],[[75722,13935],[-37,-8],[-38,8],[-19,27],[-4,12],[15,19],[54,3],[38,-17],[8,-17],[2,-8],[-19,-19]],[[31709,13915],[-60,-22],[-31,8],[-2,23],[8,31],[29,16],[-5,46],[18,19],[9,35],[38,26],[54,-12],[-8,-45],[-1,-16],[-32,-12],[-8,-7],[-7,-30],[1,-43],[-3,-17]],[[78050,14010],[-121,-14],[-10,15],[-45,2],[-16,12],[-6,28],[15,47],[24,32],[37,33],[18,7],[76,10],[55,-14],[39,-40],[11,-32],[-6,-21],[-71,-65]],[[78721,14144],[-17,-14],[-45,8],[-10,12],[-4,55],[-3,16],[-17,15],[-73,28],[-8,40],[10,18],[27,4],[67,-36],[15,-26],[-2,-41],[1,-13],[21,-27],[33,-28],[5,-11]],[[32412,14480],[-44,-26],[-23,0],[27,64],[26,2],[41,36],[11,-5],[-22,-30],[-16,-41]],[[34100,14650],[-24,-2],[-30,17],[-4,30],[0,16],[23,13],[14,2],[81,47],[36,11],[-16,-28],[2,-26],[-13,-23],[-69,-57]],[[32450,14706],[-27,-60],[40,1],[28,21],[29,9],[25,-30],[-52,-23],[-50,-40],[-20,-21],[-22,-9],[-28,3],[-28,-4],[-25,-39],[-26,-18],[-8,15],[-10,9],[-56,14],[-26,20],[-23,14],[-25,6],[13,36],[15,31],[85,42],[-8,13],[-6,17],[67,21],[2,21],[-4,24],[21,16],[20,24],[14,7],[42,-3],[29,-33],[-12,-33],[26,-51]],[[32687,14732],[-20,-23],[-16,-4],[-15,10],[-20,-35],[-40,11],[-16,9],[10,5],[7,15],[22,31],[38,79],[7,25],[-31,41],[-5,13],[7,24],[11,17],[26,19],[34,0],[17,-16],[0,-29],[58,-27],[-10,-56],[-22,-35],[-3,-42],[-33,-19],[-6,-13]],[[32791,14932],[-26,-2],[7,31],[23,21],[38,14],[-24,-35],[-7,-16],[-11,-13]],[[33931,14945],[11,-8],[9,4],[9,8],[9,19],[33,27],[31,3],[-10,-28],[74,-50],[-6,-39],[14,-32],[-30,-10],[-24,-33],[21,-13],[12,-28],[-25,-7],[-54,16],[-28,-3],[3,26],[-9,10],[-33,-5],[-14,-57],[-10,-5],[-12,9],[9,37],[-14,6],[-14,-1],[-42,-27],[-12,-1],[-25,32],[79,42],[-33,21],[-7,26],[5,36],[-29,-5],[-28,-14],[-13,-2],[-11,12],[4,26],[23,43],[18,45],[36,22],[21,17],[28,8],[12,16],[26,1],[15,-37],[-1,-22],[-12,-24],[-6,-61]],[[34062,15087],[4,-10],[56,5],[15,-14],[-31,-20],[-8,4],[-27,-6],[-76,15],[-18,23],[67,12],[18,-9]],[[33152,15053],[-35,-20],[-21,6],[-33,24],[45,7],[4,70],[22,27],[43,-16],[-26,-36],[-9,-28],[9,-24],[1,-10]],[[34480,15244],[-24,-26],[-61,39],[-16,25],[7,19],[98,17],[26,-9],[12,-40],[-42,-25]],[[0,3253],[447,8],[89,-8],[94,-25],[207,-2],[194,-11],[50,-33],[65,-20],[137,17],[110,8],[89,2],[823,-46],[843,-81],[172,-26],[154,-61],[162,9],[957,-47],[148,-1],[586,-49],[1026,-114],[89,-4],[97,3],[-51,62],[-96,56],[-129,40],[84,12],[184,1],[-37,29],[-101,16],[-366,19],[-1463,144],[-32,9],[-21,12],[-38,13],[-60,14],[-223,8],[-61,13],[-29,16],[15,7],[17,-3],[340,12],[38,17],[2,11],[-18,8],[-59,10],[-137,48],[-44,21],[23,33],[28,14],[105,11],[31,22],[-20,40],[-241,80],[-162,29],[-107,-20],[-203,-1],[-251,-10],[-68,11],[-70,32],[-82,57],[-42,14],[-80,48],[-106,46],[-561,111],[-98,30],[-702,175],[-29,30],[-18,32],[324,-71],[61,0],[72,18],[55,-5],[75,18],[84,9],[219,-56],[442,-88],[118,-31],[63,-22],[52,-7],[51,-16],[63,9],[38,-8],[92,5],[419,10],[166,-9],[195,-42],[75,-71],[56,-32],[107,25],[90,30],[173,25],[56,-10],[93,-37],[105,-62],[445,17],[187,-3],[133,-28],[485,93],[75,20],[111,65],[-91,20],[-65,7],[-25,33],[44,13],[140,18],[272,28],[161,27],[86,70],[369,109],[117,48],[108,79],[-242,157],[-232,136],[74,42],[73,33],[35,26],[29,37],[-76,45],[-71,33],[-117,32],[-440,77],[-150,33],[60,51],[80,39],[169,17],[1079,60],[1087,74],[27,37],[-144,44],[-123,11],[-45,13],[-17,28],[-1,38],[-14,6],[-46,4],[-196,44],[-41,17],[-65,41],[-17,32],[39,82],[60,35],[104,19],[75,7],[225,-2],[88,11],[37,11],[-7,39],[-25,18],[-1,24],[38,14],[47,-1],[13,29],[-26,47],[-67,25],[-176,43],[-400,64],[-155,50],[-89,38],[-74,44],[-75,21],[-52,23],[11,28],[-24,44],[-29,8],[-127,-19],[-227,10],[-278,41],[-192,47],[-251,127],[-99,63],[73,44],[80,28],[334,64],[50,23],[68,58],[-112,24],[-95,-2],[-84,16],[-342,4],[-193,-8],[-162,72],[-121,71],[-34,36],[-26,64],[41,94],[34,67],[-4,83],[9,113],[58,38],[45,7],[105,-87],[90,-7],[131,17],[83,45],[44,17],[81,4],[156,-20],[71,8],[80,-4],[251,-58],[55,-27],[30,-21],[9,-30],[31,-31],[107,-15],[299,17],[78,-7],[212,-86],[180,-90],[62,-23],[102,-16],[36,14],[31,34],[97,42],[218,52],[52,52],[-29,28],[-84,30],[-51,10],[-28,34],[2,47],[17,45],[57,11],[104,-61],[130,-57],[45,-9],[35,3],[65,20],[78,15],[149,-122],[88,-9],[110,0],[21,19],[-13,32],[-18,35],[-23,5],[-3,32],[48,30],[33,13],[-13,22],[-53,33],[-31,6],[-28,14],[9,23],[35,10],[49,34],[-15,39],[2,51],[-20,27],[-116,53],[-169,87],[-157,39],[-350,-31],[-124,20],[-81,23],[-88,30],[103,32],[108,22],[32,20],[41,40],[48,29],[39,8],[128,-15],[289,-108],[61,-12],[198,-50],[55,-2],[68,11],[-55,48],[-61,34],[-145,96],[16,46],[94,76],[245,6],[107,27],[139,58],[179,96],[154,12],[192,30],[65,-22],[164,-93],[103,-32],[35,-3],[37,3],[-97,115],[63,15],[80,13],[66,29],[49,24],[168,111],[150,31],[426,48],[146,-44],[123,-5],[27,13],[25,59],[65,115],[55,41],[185,43],[145,-2],[104,-47],[97,-31],[89,-14],[90,1],[134,27],[178,9],[83,14],[96,-26],[236,-9],[183,-37],[113,-1],[153,36],[83,5],[299,59],[234,12],[177,-26],[286,16],[290,-12],[117,-21],[652,13],[518,55],[71,19],[111,60],[61,55],[41,17],[87,6],[149,-12],[205,-41],[176,15],[337,-23],[32,19],[32,104],[55,165],[47,49],[77,-13],[233,-94],[5,-40],[-24,-29],[-38,-11],[-11,-80],[31,-23],[52,7],[33,-35],[-73,-60],[-52,-34],[-33,-15],[-23,-115],[-31,-38],[-4,-42],[50,0],[50,17],[44,5],[140,30],[255,35],[84,17],[48,6],[31,23],[-43,57],[-14,47],[26,39],[-7,67],[-24,68],[49,50],[46,-11],[79,8],[45,-25],[69,-22],[66,-11],[63,-45],[21,-98],[-19,-100],[-65,-73],[-121,-66],[-137,-105],[29,-50],[71,17],[309,-5],[199,8],[125,-12],[158,-27],[125,-39],[149,-8],[93,15],[87,-20],[339,84],[138,48],[79,-24],[128,20],[71,-18],[133,30],[84,3],[97,-12],[296,-6],[22,-55],[90,-83],[73,-32],[93,14],[67,25],[106,-9],[153,35],[153,-11],[64,6],[29,23],[25,51],[-47,28],[-134,36],[-123,74],[-55,16],[-88,-9],[-41,13],[-44,24],[57,29],[70,93],[-29,84],[-33,18],[-81,-3],[-98,-30],[-39,21],[-64,11],[-25,78],[-68,146],[-36,42],[-108,38],[-93,19],[-90,24],[-27,58],[17,79],[108,17],[104,-8],[58,-15],[67,-6],[77,-16],[50,-23],[40,-13],[75,-1],[260,22],[35,15],[31,28],[55,7],[51,-4],[74,17],[-85,23],[-91,44],[-137,53],[-115,29],[-209,20],[-107,-7],[-67,11],[-239,-6],[-65,21],[-46,58],[-65,137],[-18,73],[44,27],[29,30],[71,2],[103,-11],[34,-14],[25,-43],[-25,-44],[-33,-23],[20,-21],[105,-6],[52,-13],[45,-5],[97,20],[142,8],[71,-20],[85,-15],[125,24],[445,-13],[54,-6],[54,-40],[46,-24],[49,10],[145,-46],[77,-36],[79,-18],[67,-5],[75,9],[98,30],[81,12],[58,-11],[123,-6],[94,-36],[73,15],[77,41],[244,29],[163,-8],[298,-74],[69,-7],[136,44],[44,72],[-6,81],[39,19],[33,-9],[60,56],[82,-5],[51,-10],[31,36],[28,77],[97,6],[70,-12],[92,-49],[0,-41],[-38,-43],[-63,-108],[39,-62],[59,6],[75,-13],[91,27],[58,1],[101,-93],[68,-5],[53,5],[172,84],[50,9],[61,-38],[89,-89],[78,-51],[114,-32],[99,-9],[116,-42],[64,-35],[146,0],[62,-15],[176,-72],[160,36],[83,33],[40,61],[-20,91],[-7,92],[24,38],[42,7],[191,-103],[-12,62],[-16,47],[-49,82],[7,61],[41,19],[80,-32],[96,-16],[79,-36],[155,-128],[50,-112],[105,-28],[73,5],[83,18],[111,16],[86,-5],[79,21],[24,-61],[-74,-88],[-29,-57],[24,-15],[45,13],[37,18],[129,-9],[104,40],[89,14],[84,42],[69,-4],[53,-7],[72,-33],[69,18],[41,-7],[56,-2],[297,145],[67,-3],[85,8],[107,35],[83,15],[68,-1],[121,53],[193,-7],[98,28],[191,32],[128,37],[228,98],[92,58],[100,129],[63,129],[70,171],[-34,111],[-37,49],[-31,54],[-73,111],[-20,139],[7,131],[-26,123],[-26,91],[-54,152],[-66,99],[-77,133],[0,121],[-19,95],[-46,68],[-20,54],[36,11],[33,17],[89,21],[213,-37],[19,54],[54,40],[38,50],[-13,77],[-47,31],[-56,65],[26,52],[45,0],[22,57],[-17,56],[21,70],[41,90],[28,33],[-51,54],[-48,70],[12,54],[24,57],[29,80],[40,57],[26,19],[-7,20],[-61,20],[-56,4],[-101,-36],[-16,7],[-5,19],[-6,39],[10,95],[16,90],[14,13],[40,11],[38,69],[35,4],[22,-23],[7,-91],[12,-21],[-4,-44],[18,-15],[22,28],[41,14],[16,-31],[15,-15],[7,26],[-5,74],[-7,30],[-5,48],[9,23],[10,37],[-17,78],[6,29],[37,47],[18,9],[35,0],[63,-31],[30,-2],[22,14],[14,30],[11,98],[-27,35],[0,31],[16,20],[28,68],[42,4],[41,-6],[40,13],[-14,28],[-12,43],[45,20],[29,7],[77,-27],[30,-15],[28,35],[-9,34],[-30,19],[-5,30],[7,38],[48,-19],[11,8],[13,34],[-8,17],[-6,22],[63,5],[9,9],[13,27],[19,9],[56,-1],[12,14],[6,30],[-31,7],[-39,29],[-6,80],[9,57],[35,50],[42,34],[78,-30],[60,7],[24,-30],[33,-8],[8,34],[-15,30],[-10,49],[96,58],[31,-9],[38,14],[-14,45],[21,57],[27,8],[19,-50],[26,-10],[29,12],[71,58],[35,9],[35,3],[36,34],[9,40],[20,28],[62,38],[25,27],[55,95],[-10,24],[16,20],[163,86],[80,8],[133,52],[81,61],[51,25],[45,68],[55,11],[128,47],[96,77],[133,53],[62,-5],[25,-16],[16,-63],[26,-77],[40,-38],[-15,-34],[-38,4],[-41,-8],[-9,38],[15,28],[-15,25],[-37,-6],[-49,-13],[-33,-19],[-43,-41],[-34,-23],[-113,-61],[-74,-88],[-53,-93],[-32,-63],[-47,-5],[-11,-23],[19,-18],[15,-8],[35,-7],[-6,-27],[-24,-8],[3,-21],[25,-32],[5,-46],[-29,-7],[-44,49],[-50,5],[-39,23],[-25,33],[-24,-7],[-18,-47],[11,-52],[-21,-31],[-24,14],[-9,62],[-23,11],[-32,1],[-77,-67],[-28,-2],[-14,-34],[-45,-38],[-29,-31],[-71,-102],[-40,-43],[-76,-24],[-30,3],[-18,10],[-27,7],[-28,1],[-9,-27],[44,-88],[-24,-30],[-53,2],[-26,25],[-21,-24],[-17,-23],[-17,-34],[26,-72],[41,-33],[30,-5],[11,-27],[-65,-11],[-44,-63],[-20,-44],[-23,-38],[3,-44],[34,-66],[46,-47],[46,-4],[60,15],[14,13],[59,7],[26,46],[19,3],[17,-8],[27,-2],[15,30],[20,11],[28,-8],[54,1],[15,-27],[-17,-30],[-33,-42],[-31,23],[-27,-4],[-15,-22],[29,-47],[-11,-42],[-24,-42],[-29,27],[-4,45],[-40,27],[-39,12],[-26,-47],[-41,-13],[-6,-54],[-17,-50],[-24,15],[-9,62],[-67,50],[-35,7],[-70,-13],[-24,1],[-28,-11],[-20,-42],[29,-31],[10,-42],[-1,-31],[-6,-12],[-5,-26],[32,-37],[1,-50],[-25,0],[-21,15],[-81,131],[-51,58],[-22,51],[-53,12],[-38,1],[-46,-21],[18,-24],[9,-36],[-28,-15],[-35,-56],[-23,-48],[-14,-10],[-18,-28],[75,-61],[11,-24],[4,-41],[-24,-22],[-56,-9],[-99,43],[-43,1],[-15,30],[-22,-4],[-13,-51],[-16,-45],[-24,-30],[7,-46],[19,-11],[-15,-19],[-31,-15],[-21,-18],[46,-17],[9,-15],[2,-22],[-72,-16],[-47,-4],[-28,18],[-26,-9],[-17,-29],[-5,-39],[5,-48],[9,-34],[7,-13],[8,-29],[-43,-74],[-5,-16],[-3,-34],[21,-31],[16,-46],[-23,-23],[-25,-47],[26,-9],[44,-2],[48,6],[72,41],[20,7],[9,-16],[6,-25],[-18,-24],[-130,-68],[-24,-29],[33,-16],[67,-3],[26,-22],[-16,-24],[-24,-23],[-28,-54],[23,-20],[72,-32],[131,-42],[97,-14],[-22,48],[-3,61],[68,49],[35,16],[162,29],[44,-1],[34,-13],[-13,-25],[-37,9],[-65,-17],[-100,-53],[-18,-23],[7,-42],[85,-34],[27,-27],[-37,-81],[6,-52],[43,-57],[57,-65],[28,-43],[43,-25],[70,-61],[38,-61],[12,-140],[57,-116],[67,-53],[8,-46],[-22,-46],[-57,27],[-32,-27],[-12,-49],[40,-34],[64,-42],[138,4],[4,-46],[-32,-27],[-25,-34],[-31,-19],[-52,-12],[-13,-42],[22,-57],[72,26],[53,3],[55,-10],[17,-77],[65,-95],[16,-45],[-12,-43],[-40,-13],[-25,-34],[-36,-30],[-41,-15],[-76,-79],[-33,-8],[-14,-16],[65,-8],[45,-2],[97,64],[37,-14],[24,-42],[12,-49],[-24,-42],[-169,-25],[-82,-23],[-88,-66],[101,-31],[74,11],[37,-12],[51,-23],[56,12],[44,24],[33,-1],[31,-12],[4,-41],[4,-72],[7,-54],[-18,-36],[-88,-26],[-64,1],[-2,-76],[96,-57],[60,30],[53,-15],[0,-91],[41,-101],[36,-6],[30,46],[38,0],[15,-54],[-17,-91],[-29,-50],[-78,21],[-44,16],[-35,-34],[-58,-29],[-51,-4],[-45,45],[-52,34],[-83,17],[-78,8],[26,-39],[35,-23],[14,-69],[28,-72],[65,19],[90,-41],[56,-43],[24,-57],[-31,-92],[-51,-33],[-32,-16],[-56,35],[-39,0],[-41,-16],[-14,-42],[-27,-20],[144,-3],[45,-11],[33,-38],[-52,-50],[-95,8],[-41,-19],[-35,-36],[142,-22],[59,12],[93,38],[22,-38],[-37,-38],[-48,-61],[-100,-19],[-75,-1],[-98,22],[-26,13],[-41,7],[3,-37],[26,-26],[66,-94],[11,-36],[-21,-50],[-58,-37],[-65,-15],[-54,33],[-39,91],[-50,27],[-51,8],[-30,-4],[3,-46],[12,-49],[-20,-35],[-44,18],[-57,-16],[-53,-27],[-48,-30],[98,-15],[65,-2],[46,-46],[-17,-23],[-88,-10],[-86,-20],[-117,-50],[86,-21],[81,1],[57,-5],[47,-9],[13,-27],[-29,-30],[-192,-74],[-201,-91],[-74,-29],[-77,-16],[-179,-78],[-113,-36],[-318,-55],[-497,-139],[-169,-99],[-50,-76],[-32,-11],[-95,-26],[-95,-12],[-251,-8],[-257,37],[-208,8],[-113,-12],[-386,66],[-49,-3],[-60,-12],[-48,0],[-36,9],[-78,4],[-263,-26],[-27,-41],[33,-76],[96,-92],[160,-163],[86,-34],[53,-37],[100,-43],[224,-3],[306,-33],[174,-31],[-6,-60],[-105,-115],[-65,-44],[-155,-80],[-213,-40],[-163,12],[-289,65],[-362,60],[-538,56],[-118,27],[-139,26],[-79,-27],[-60,-25],[-133,-3],[39,-22],[537,-155],[458,-113],[54,-29],[65,-20],[-6,-72],[-26,-57],[-90,-50],[-234,-3],[-293,-40],[-146,-1],[-145,39],[-309,113],[-189,84],[-132,96],[-91,76],[-102,75],[7,-47],[18,-47],[50,-58],[73,-63],[5,-26],[-35,-3],[-53,30],[-45,-28],[-16,-33],[19,-44],[28,-42],[93,-94],[80,-25],[106,-57],[258,-106],[44,-36],[78,-78],[16,-59],[76,-58],[52,-9],[47,2],[16,50],[-3,61],[20,15],[74,15],[193,-21],[821,-12],[78,-35],[31,-45],[21,-93],[-87,-112],[-59,-48],[-97,-29],[-88,-23],[-133,-9],[-275,8],[-269,0],[209,-54],[203,-44],[282,8],[112,12],[97,21],[41,-37],[77,-78],[45,-25],[31,-26],[43,-85],[17,-50],[42,-58],[30,-49],[44,-33],[75,-15],[82,28],[159,13],[154,-45],[99,-14],[132,37],[105,52],[221,47],[41,20],[60,16],[91,-4],[36,-12],[46,-51],[43,-70],[63,-35],[67,-25],[38,-3],[126,-22],[164,21],[73,-21],[12,-40],[39,-32],[49,-11],[665,-180],[229,-35],[353,-18],[274,-2],[38,-11],[53,-35],[-105,-24],[-112,-3],[-169,9],[-60,-5],[-129,10],[-67,-7],[-61,11],[-91,-25],[-166,-19],[37,-27],[62,-6],[126,-10],[172,5],[15,-43],[-158,-11],[-336,-8],[-35,-7],[-26,-22],[50,-11],[31,-12],[16,-31],[-36,-79],[56,-55],[39,-9],[41,8],[71,-22],[69,-30],[146,-2],[173,40],[85,-1],[228,25],[207,-4],[289,48],[48,-1],[44,-6],[-80,-44],[-355,-110],[-127,-21],[-51,-14],[29,-54],[46,-56],[94,-60],[59,-89],[57,-19],[110,41],[27,-31],[5,-61],[-29,-49],[-37,-28],[-26,-27],[-17,-36],[46,-31],[123,-19],[163,-7],[151,-1],[93,-9],[341,194],[137,93],[67,40],[56,29],[288,119],[67,36],[76,53],[141,8],[193,86],[171,66],[68,13],[51,5],[60,14],[150,-5],[107,11],[190,42],[145,27],[154,23],[174,4],[463,44],[132,-19],[146,-46],[95,1],[125,14],[86,18],[39,-53],[20,-69],[-42,-64],[-70,-40],[-19,-66],[95,-33],[108,10],[206,32],[164,42],[45,28],[64,-8],[109,35],[136,146],[171,147],[144,94],[93,110],[77,63],[86,48],[58,24],[132,5],[189,76],[275,86],[211,-41],[223,-63],[110,51],[87,9],[74,22],[74,18],[53,45],[71,38],[54,55],[271,27],[284,36],[38,13],[37,-8],[98,11],[125,30],[172,10],[90,-4],[82,82],[164,17],[175,32],[73,24],[57,6],[1413,63],[61,31],[124,25],[47,61],[-190,25],[-58,26],[-65,7],[-38,-9],[-164,7],[-1303,94],[-27,8],[-45,57],[9,104],[-39,82],[-91,22],[-94,-2],[-119,-10],[-314,-44],[-125,-4],[-335,68],[-221,77],[-145,25],[-104,52],[-97,40],[-7,91],[23,85],[187,246],[117,118],[78,9],[71,53],[73,119],[59,56],[135,66],[59,17],[212,81],[58,2],[95,-13],[108,73],[329,156],[75,58],[91,36],[266,132],[238,64],[118,18],[144,40],[160,59],[139,57],[497,109],[298,29],[203,32],[144,-19],[143,6],[123,28],[57,24],[83,59],[276,-28],[178,40],[74,4],[78,18],[-31,21],[-28,3],[-28,28],[-37,57],[37,73],[28,37],[82,45],[43,64],[40,94],[135,185],[38,26],[86,8],[73,-5],[83,2],[210,-48],[39,19],[67,54],[56,68],[120,100],[23,30],[-10,49],[-180,-21],[-136,-33],[-131,18],[-17,28],[28,21],[49,8],[19,34],[-45,28],[-81,16],[-36,21],[3,51],[20,75],[44,21],[36,31],[96,105],[57,32],[164,29],[190,-44],[44,12],[46,59],[-47,90],[-36,34],[0,30],[100,-14],[93,-20],[109,4],[129,90],[181,75],[88,31],[78,18],[42,76],[62,144],[46,75],[-1,45],[-14,37],[-47,-10],[-43,-5],[-101,38],[-125,61],[-38,68],[-18,61],[39,33],[38,20],[41,5],[73,-25],[93,-62],[46,-24],[53,-46],[40,4],[47,64],[38,85],[32,26],[49,28],[54,41],[-24,40],[-58,21],[-8,24],[25,27],[47,5],[59,-58],[80,-39],[55,-13],[47,-32],[74,-108],[89,-179],[41,-2],[78,16],[84,7],[56,51],[12,128],[22,58],[-8,59],[-38,60],[-33,44],[6,33],[28,24],[37,8],[64,24],[99,-28],[54,-5],[81,16],[84,35],[86,25],[67,-19],[29,-64],[-33,-65],[-54,-48],[-49,-59],[-13,-64],[2,-35],[47,-9],[416,8],[55,-6],[72,0],[78,-21],[132,8],[118,23],[56,0],[97,-21],[69,-44],[143,13],[40,14],[39,59],[41,11],[48,-48],[15,-110],[22,-52],[61,-47],[60,40],[39,48],[94,93],[107,71],[82,42],[200,70],[99,44],[194,60],[250,32],[446,108],[147,12],[240,28],[123,30],[125,23],[77,80],[175,-61],[60,-7],[82,48],[90,119],[131,-49],[75,-77],[93,-60],[208,-104],[66,-24],[138,-21],[37,17],[65,69],[67,100],[42,42],[61,35],[69,55],[-18,30],[-39,10],[-36,15],[9,30],[122,7],[64,-101],[66,-34],[80,-32],[186,26],[159,2],[138,-20],[68,3],[61,76],[99,28],[56,-34],[35,-112],[127,-31],[266,-51],[30,13],[33,59],[23,72],[54,12],[69,39],[37,-6],[52,-47],[-18,-114],[-29,-105],[35,-85],[31,-47],[40,-8],[67,-2],[82,6],[51,-4],[261,42],[32,94],[42,107],[103,136],[40,-10],[31,-14],[70,-67],[42,-34],[9,-49],[-46,-47],[13,-31],[46,-25],[148,-41],[48,8],[71,42],[72,86],[39,98],[61,-5],[59,-20],[41,-51],[0,-97],[57,-66],[46,-42],[120,-45],[128,-12],[90,-26],[146,10],[71,30],[46,8],[80,24],[84,57],[52,23],[192,52],[145,57],[154,102],[150,61],[230,31],[64,13],[88,-1],[217,73],[82,42],[46,15],[52,52],[28,102],[22,63],[-4,61],[-20,80],[-46,71],[-47,104],[21,119],[37,49],[96,54],[95,11],[108,-7],[94,-11],[8,-51],[-41,-55],[-52,-54],[-31,-23],[11,-46],[68,-7],[149,10],[43,-42],[106,-184],[26,-87],[37,-25],[58,12],[125,-1],[87,13],[71,1],[37,-9],[38,-42],[72,-49],[72,36],[52,17],[63,-4],[99,-57],[99,-133],[107,-67],[7,43],[-14,53],[44,47],[53,79],[77,103],[61,105],[15,145],[29,119],[49,57],[48,37],[75,38],[92,8],[88,86],[62,35],[130,47],[163,46],[114,132],[39,16],[58,21],[107,8],[173,42],[54,6],[91,33],[80,78],[58,22],[104,-3],[88,44],[74,2],[68,22],[10,49],[-32,33],[-1,43],[38,56],[30,21],[90,-4],[75,-48],[55,-2],[14,-27],[-48,-35],[-32,-60],[55,-53],[49,-36],[59,7],[71,32],[70,-23],[31,-49],[0,-76],[15,-41],[49,36],[27,76],[-8,97],[3,60],[117,97],[46,73],[-82,15],[-58,-10],[-32,27],[-37,73],[101,61],[116,-2],[67,-52],[144,-83],[80,2],[72,-13],[15,26],[-27,122],[3,68],[-60,38],[-17,87],[25,91],[71,51],[97,24],[208,140],[55,30],[137,29],[160,14],[199,50],[355,-34],[95,-21],[59,-28],[57,-45],[74,-74],[107,-94],[139,-30],[39,-29],[51,-80],[-55,-53],[-45,-4],[-87,30],[-60,33],[-42,-13],[41,-55],[45,-34],[7,-46],[-24,-66],[-164,-130],[98,-37],[59,30],[54,55],[55,25],[37,10],[130,2],[74,22],[56,-16],[55,-35],[81,-35],[116,-38],[143,-147],[111,15],[60,32],[171,10],[147,-66],[83,-23],[240,-20],[143,-42],[91,50],[61,20],[128,10],[65,-10],[178,-54],[315,-55],[217,-29],[191,-1],[91,-24],[166,-26],[63,-20],[159,16],[74,21],[70,47],[39,-11],[27,-59],[-15,-101],[29,-69],[23,-69],[33,-57],[21,-49],[-15,-41],[-46,-37],[-64,-79],[4,-69],[27,-44],[-32,-53],[24,-74],[4,-45],[-22,-36],[-50,-22],[-85,-3],[-44,-21],[-7,-55],[22,-41],[49,-22],[14,-44],[-7,-66],[-22,-56],[-45,-26],[-49,-6],[-91,11],[-66,38],[-42,-33],[-31,-34],[-95,-78],[-44,-51],[-41,-55],[108,-31],[79,-55],[172,5],[55,25],[73,26],[39,-5],[24,-56],[-14,-89],[-3,-69],[-87,-190],[-29,-32],[-41,-52],[-48,-41],[-39,-20],[-75,-60],[-46,-109],[-50,-90],[-73,-154],[-42,-165],[-18,-99],[-28,-103],[-62,-177],[-40,-30],[-69,-72],[20,-49],[54,-4],[66,-11],[89,-37],[118,76],[62,48],[13,96],[-13,97],[38,57],[87,78],[205,56],[42,6],[68,19],[60,70],[53,69],[93,45],[77,72],[12,51],[32,11],[96,50],[25,37],[30,28],[21,63],[8,118],[24,89],[47,118],[38,86],[37,54],[99,29],[43,33],[57,73],[39,44],[-5,90],[22,83],[61,50],[78,92],[98,13],[74,48],[79,-33],[95,-46],[161,14],[76,-21],[59,25],[52,71],[19,87],[61,50],[69,-1],[114,86],[118,77],[96,19],[77,60],[55,102],[59,79],[73,75],[20,133],[46,67],[85,59],[71,32],[298,100],[229,66],[231,82],[71,-1],[93,45],[153,2],[40,4],[53,93],[114,86],[71,28],[90,74],[73,7],[103,-13],[87,-20],[78,-1],[113,62],[176,10],[54,30],[38,26],[249,87],[93,-17],[132,15],[80,-4],[76,-11],[96,-3],[166,31],[70,20],[132,76],[146,18],[64,20],[82,17],[67,-30],[48,-26],[29,-6],[39,-5],[95,30],[79,-8],[101,-33],[67,-27],[35,0],[62,24],[76,60],[71,24],[67,-15],[46,-25],[81,-34],[126,5],[120,13],[101,28],[87,30],[80,-46],[92,-17],[149,81],[57,-18],[39,-21],[32,-10],[39,-68],[142,13],[126,57],[108,43],[105,28],[83,39],[122,148],[-2,46],[17,28],[26,12],[194,-1],[60,12],[79,39],[137,-30],[131,-47],[34,5],[53,1],[93,-29],[105,-57],[93,-15],[385,-142],[218,-35],[110,-47],[28,-16],[32,-48],[58,-5],[46,19],[61,-73],[148,-55],[154,-27],[100,43],[170,122],[52,56],[-10,122],[89,136],[151,67],[188,35],[116,30],[154,28],[74,-29],[38,-21],[57,-25],[68,-76],[106,-172],[79,-62],[69,-5],[60,-10],[63,-39],[90,-121],[-54,-108],[-46,-40],[-196,-46],[-86,-37],[-75,-23],[-21,-90],[31,-42],[81,21],[95,10],[74,18],[68,28],[59,40],[140,21],[91,34],[82,20],[57,35],[58,-5],[58,-34],[46,3],[124,-11],[58,25],[51,2],[52,-19],[54,-26],[54,-7],[70,16],[98,42],[125,46],[117,15],[28,-1],[24,-9],[-117,-54],[-187,-71],[-100,-69],[59,-29],[352,77],[160,58],[142,26],[35,19],[116,90],[42,24],[125,32],[163,34],[124,39],[84,40],[63,4],[49,-29],[63,-33],[62,8],[76,31],[53,72],[31,53],[57,18],[73,16],[59,-18],[96,-38],[67,-20],[58,-151],[136,-133],[49,-35],[119,13],[128,-52],[55,6],[52,16],[47,-10],[70,32],[73,167],[67,163],[66,72],[40,30],[50,14],[77,34],[104,10],[77,-14],[167,-12],[136,41],[154,-7],[76,48],[82,7],[111,-41],[32,-29],[61,-42],[15,-41],[16,-74],[30,-2],[103,73],[56,13],[106,117],[56,-30],[127,-50],[51,-15],[100,-85],[51,18],[42,40],[124,-4],[116,-35],[48,-29],[59,-50],[37,-12],[29,14],[240,-19],[104,-37],[79,-45],[278,-21],[107,-46],[64,22],[127,-7],[52,-39],[46,-43],[101,-37],[55,7],[78,30],[78,41],[78,0],[37,-35],[13,-88],[58,2],[64,40],[56,-10],[20,-61],[-30,-82],[-71,-113],[-29,-95],[-59,-86],[10,-41],[59,-20],[59,61],[132,42],[69,55],[119,20],[117,-19],[83,-73],[154,-123],[6,-44],[13,-46],[-5,-41],[-23,-47],[82,-55],[73,-9],[59,5],[247,-53],[118,21],[106,0],[126,8],[97,-2],[77,-9],[91,19],[74,26],[36,-16],[15,-137],[5,-81],[42,-31],[44,31],[32,41],[195,-19],[78,-2],[74,-22],[75,-51],[72,22],[43,31],[58,20],[17,51],[7,85],[-2,83],[34,15],[35,-15],[46,-40],[105,-124],[80,-81],[34,-38],[49,-31],[99,-75],[136,-31],[133,-60],[155,4],[121,-77],[82,60],[43,14],[63,-16],[76,-52],[60,-12],[205,-86],[110,-30],[41,-63],[54,-60],[0,-61],[24,-77],[123,-61],[48,-59],[59,-78],[107,-293],[56,-52],[81,5],[76,-76],[24,10],[3,31],[-69,198],[-5,107],[54,61],[127,17],[98,-114],[90,-69],[60,-12],[120,3],[113,73],[86,-26],[138,-9],[179,-43],[77,8],[137,-19],[167,-61],[95,-23],[20,-25],[44,-41],[22,-50],[24,-46],[58,-52],[58,-9],[115,-44],[241,-136],[87,-40],[51,-29],[25,35],[7,72],[44,15],[47,-107],[49,-81],[22,-71],[-51,-58],[-74,12],[-52,0],[-53,-97],[-22,-165],[49,3],[36,15],[8,-61],[-22,-51],[-44,-20],[-76,39],[-93,27],[-102,10],[-99,49],[-39,3],[-41,-3],[53,-51],[55,-46],[125,-40],[156,-62],[4,-38],[-37,-47],[-46,-100],[-142,-86],[-83,62],[-98,15],[-49,-37],[-98,4],[-194,-14],[-76,79],[-119,43],[4,-36],[102,-130],[109,-30],[108,-35],[26,-33],[-49,-31],[-66,5],[-83,-61],[-158,10],[-75,-3],[-44,-25],[-39,-9],[31,-22],[38,-60],[-54,-51],[-50,-25],[-51,12],[-56,-20],[-27,56],[-2,122],[-32,109],[-34,4],[-54,-13],[-17,-93],[38,-161],[26,-50],[-21,-45],[-36,-14],[73,-136],[62,-94],[38,-30],[3,-46],[-30,-20],[-83,18],[-41,-9],[-46,6],[-77,20],[-66,6],[-66,-26],[-56,2],[-50,85],[-44,20],[-36,-26],[-28,-101],[-57,-31],[-58,-46],[-41,-50],[-20,-198],[-34,-41],[-51,2],[-39,-16],[-49,16],[-64,9],[-214,-67],[34,-35],[54,5],[188,-10],[80,-36],[13,-89],[32,-38],[63,-41],[48,-20],[18,-31],[-20,-60],[-27,-56],[-59,-61],[17,-31],[64,-10],[27,-137],[-42,-61],[20,-51],[5,-51],[-43,-47],[-33,-24],[-11,-50],[64,-29],[47,-10],[66,-5],[45,-54],[58,-82],[42,-69],[3,-112],[41,-67],[77,-43],[-2,-46],[54,-13],[53,-4],[19,-41],[-17,-50],[-89,-61],[-37,-44],[89,-7],[92,-46],[117,52],[62,56],[40,50],[30,-13],[3,-52],[36,-87],[151,-84],[84,-27],[81,-14],[71,2],[20,-50],[-22,-46],[-56,3],[-90,-8],[-66,38],[-47,33],[-412,-19],[-93,-15],[-111,-50],[-110,-24],[-169,-50],[-71,-30],[-185,117],[-60,86],[-25,5],[-44,-20],[-2,-61],[86,-133],[39,-35],[0,-35],[-25,-18],[-35,0],[-53,26],[-99,21],[-88,-41],[-108,-87],[23,-58],[29,-33],[-7,-39],[-121,-74],[-40,-4],[-25,-14],[30,-27],[66,-1],[7,-33],[-23,-26],[-109,-30],[7,-40],[59,-19],[77,7],[48,-29],[0,-46],[-49,-26],[-57,-19],[-392,-118],[-57,-32],[3,-43],[137,-11],[410,10],[27,-14],[-10,-34],[-23,-43],[23,-31],[61,-22],[2,-32],[-30,-13],[-61,-15],[-67,-4],[4,-35],[92,-31],[31,-4],[3,-118],[-3,-50],[-49,-25],[-18,-16],[-2,-41],[122,-28],[187,-127],[41,0],[74,-24],[119,-65],[42,-39],[68,-19],[9,-32],[42,-27],[166,-88],[22,-38],[-348,-73],[-350,-54],[32,-48],[378,5],[102,-30],[45,9],[26,32],[204,38],[207,25],[65,-18],[278,-141],[129,-53],[82,-20],[60,-5],[44,-21],[43,-45],[-10,-42],[18,-19],[29,-8],[55,-28],[63,10],[73,32],[51,-7],[92,-45],[-35,-35],[-20,-17],[-24,-32],[-23,-11],[-74,-7],[-41,0],[-42,6],[-4,-23],[51,-26],[74,-26],[480,-21],[137,-46],[135,25],[61,-8],[51,-15],[19,-46],[69,-15],[106,-36],[148,-18],[118,1],[145,-49],[73,-2],[45,-28],[330,-17],[49,-22],[38,-36],[78,-16],[85,-3],[464,-59],[174,-31],[40,2],[40,-6],[125,-26],[127,-14],[61,-36],[-99894,-48]],[[34575,15452],[17,-15],[70,1],[16,-4],[14,-25],[9,-43],[-23,-17],[-121,10],[-44,22],[-22,-1],[-49,-24],[-21,-24],[-82,-32],[-23,12],[-11,34],[-1,14],[8,9],[4,9],[-1,11],[22,29],[95,44],[126,16],[17,-16],[0,-10]],[[34427,15507],[-55,-54],[-26,2],[-54,41],[-15,21],[-3,9],[34,37],[97,-14],[22,-4],[1,-3],[2,-21],[-3,-14]],[[33193,15571],[-14,-6],[-18,5],[0,-10],[15,-13],[-16,-5],[-19,13],[-14,27],[10,25],[19,6],[37,-42]],[[32607,15512],[-12,-2],[5,24],[31,62],[58,29],[-7,-25],[-19,-31],[-56,-57]],[[33159,15806],[14,-7],[121,13],[38,-40],[43,2],[-103,-75],[-28,22],[-9,16],[-7,36],[-67,-9],[-22,7],[-27,-24],[-55,-10],[-19,0],[-24,26],[-1,26],[49,-1],[38,33],[11,34],[19,-9],[29,-40]],[[33503,15872],[-38,-4],[-26,33],[-12,23],[51,2],[23,-9],[12,-26],[-10,-19]],[[33656,15954],[-62,-26],[-32,27],[-7,10],[38,26],[20,-6],[8,-9],[23,-2],[12,-20]],[[33895,16179],[35,-16],[31,11],[17,-12],[12,-33],[-1,-12],[-47,5],[-43,-38],[-51,8],[-7,-31],[11,-17],[-14,-14],[-44,30],[-35,-11],[-11,-51],[-16,-10],[-8,-2],[-14,13],[-29,4],[-2,7],[-18,20],[-51,-22],[13,26],[68,69],[8,21],[79,40],[37,-9],[80,24]],[[34980,16532],[-12,-5],[-19,22],[-3,13],[20,26],[20,35],[7,4],[-5,-70],[-8,-25]],[[34676,16577],[-37,-16],[-13,22],[-7,37],[-19,23],[14,20],[199,-26],[-11,-13],[-96,-17],[-30,-30]],[[37300,16980],[61,-14],[31,-21],[8,-24],[36,-9],[5,-5],[7,-14],[4,-15],[-1,-20],[-62,48],[-86,3],[-20,34],[-44,-20],[-5,13],[0,17],[6,24],[28,-10],[32,13]],[[84331,44685],[0,-6],[-6,1],[0,6],[6,-1]],[[69244,23583],[-17,-5],[-5,19],[1,25],[-10,20],[-5,21],[4,21],[28,3],[28,-7],[8,-35],[-21,-48],[-11,-14]],[[69217,23554],[23,-4],[13,6],[62,76],[16,2],[-2,-59],[16,-26],[-20,-6],[-38,2],[-9,-33],[39,-42],[19,-6],[15,0],[29,10],[23,15],[36,36],[22,13],[41,1],[21,34],[10,10],[24,-1],[21,-13],[13,-31],[7,-37],[-5,-37],[-15,-36],[-26,-22],[6,-26],[-7,-13],[-13,-1],[-12,6],[-16,31],[-20,16],[-48,-1],[-22,-2],[-3,-23],[-12,-18],[-12,-10],[-16,4],[-3,-10],[9,-24],[21,-32],[36,-21],[21,-5],[3,42],[26,4],[23,-12],[16,-30],[-13,-10],[-12,-16],[-3,-21],[-23,-23],[-13,-2],[-44,11],[-26,25],[-6,18],[-16,7],[-18,-23],[-19,-5],[-37,19],[-35,31],[-22,12],[-33,8],[-19,-71],[-26,-30],[-33,-3],[-16,6],[-9,28],[2,29],[5,29],[11,29],[6,32],[-2,30],[-12,22],[6,39],[-12,31],[4,23],[20,16],[-9,13],[-10,4],[-7,18],[-6,22],[7,41],[12,39],[-2,45],[19,42],[17,47],[12,19],[15,3],[7,-13],[3,-26],[-6,-17],[14,-7],[4,-55],[-9,-22],[-1,-22],[-19,-46],[5,-37],[37,-16]],[[64398,25092],[-20,-6],[-18,12],[-11,32],[23,27],[12,-19],[9,-20],[5,-26]],[[32856,61657],[-9,-23],[-31,9],[-6,29],[-1,20],[19,41],[22,-18],[9,-19],[6,-4],[0,-17],[-3,-12],[-6,-6]],[[32848,61966],[-4,-15],[-23,28],[-7,51],[1,11],[3,6],[9,-10],[12,-4],[8,-17],[1,-50]],[[94132,20328],[-9,-23],[-3,26],[17,114],[17,20],[-3,-60],[-19,-77]],[[90931,26844],[-13,-59],[-21,10],[-22,-10],[-13,40],[0,10],[16,-10],[6,13],[4,17],[5,4],[4,24],[14,29],[8,0],[9,-38],[3,-30]],[[90953,26934],[-17,0],[-7,5],[-3,28],[-11,13],[6,9],[2,18],[7,20],[13,-22],[10,-71]],[[91139,27240],[-15,-5],[-6,2],[1,30],[-2,13],[13,27],[20,-13],[7,-20],[-19,-17],[1,-17]],[[90289,28348],[32,-2],[18,14],[16,-2],[19,-33],[22,-18],[16,3],[13,-6],[12,-24],[30,-20],[14,-13],[11,-20],[13,-16],[81,-54],[57,-26],[71,12],[21,15],[21,22],[17,-20],[17,-32],[-3,34],[6,30],[17,23],[20,15],[32,-2],[31,7],[14,13],[14,2],[19,-17],[19,-9],[13,22],[21,51],[12,18],[55,-16],[15,0],[27,53],[17,-1],[51,-42],[22,-53],[-3,-97],[2,-34],[4,-34],[2,-67],[-6,-67],[-1,-52],[3,-52],[-3,-98],[8,-64],[-4,-44],[0,-21],[7,-19],[4,-22],[-3,-28],[3,-32],[-3,-27],[-11,4],[-4,21],[2,26],[-2,22],[-6,19],[-20,22],[6,13],[10,12],[-7,29],[-13,-24],[-8,-33],[5,-11],[-8,-9],[-17,-38],[-12,-51],[-5,-50],[1,-52],[-10,-40],[-14,-39],[-3,-49],[1,-91],[11,-83],[7,-113],[-10,-15],[-30,-7],[-14,-15],[-24,56],[-15,59],[11,24],[24,-14],[8,13],[2,16],[-2,14],[-30,33],[-33,15],[-11,-19],[4,-55],[-3,-13],[-24,-21],[-12,80],[-31,60],[1,-29],[13,-50],[-1,-21],[-5,-29],[-13,-10],[-5,-23],[0,-32],[-5,-51],[-20,-23],[-48,57],[-4,-19],[1,-17],[25,-33],[-12,-25],[-8,-29],[-14,-76],[-23,-64],[-11,-4],[-37,10],[-42,54],[-38,-6],[-62,4],[-40,-20],[-9,59],[-8,21],[3,18],[32,13],[33,-1],[-6,23],[-8,8],[-15,-5],[-41,19],[-29,-8],[-19,27],[-34,97],[-20,45],[-12,18],[-13,9],[-9,14],[-61,221],[-8,51],[-11,129],[48,-62],[18,-39],[9,-50],[16,60],[-3,20],[-43,73],[-6,21],[-2,25],[-10,-25],[-17,-3],[7,51],[-6,51],[-51,111],[-39,105],[-38,130],[-3,16],[-1,28],[-18,87],[-10,65],[-4,56],[17,114],[3,64],[27,-29],[63,-37]],[[91176,28504],[-14,-44],[-17,28],[-2,13],[21,10],[7,-1],[5,-6]],[[90217,28509],[-10,-47],[-11,60],[12,8],[9,21],[2,-3],[-2,-39]],[[91201,28624],[26,-34],[15,-38],[-20,-31],[-14,-6],[-9,36],[-29,-13],[-31,3],[-23,27],[-3,14],[14,14],[38,-1],[36,29]],[[91110,28941],[50,-104],[25,-17],[8,-11],[-2,-46],[-11,-19],[20,-26],[-3,-17],[-4,1],[-24,-35],[-29,-17],[-9,12],[-8,17],[-6,23],[-37,91],[4,25],[-8,38],[-18,-3],[-12,23],[20,22],[26,61],[18,-18]],[[89979,28734],[-8,-2],[-6,32],[3,47],[-14,45],[8,46],[-1,50],[5,22],[16,24],[3,43],[14,2],[25,-33],[9,-85],[-4,-51],[9,-46],[-8,-40],[-21,-32],[-30,-22]],[[90364,29671],[10,-28],[2,-11],[-24,22],[-39,-5],[24,40],[20,-8],[7,-10]],[[90412,29749],[-42,-38],[-15,17],[1,29],[3,13],[36,2],[17,-23]],[[88220,31256],[67,-14],[26,21],[32,-17],[22,-56],[-16,-27],[-15,-4],[-49,22],[-46,-17],[-13,-23],[-9,-51],[-40,-28],[-18,31],[-48,22],[-17,-32],[-34,9],[-32,-14],[-43,8],[-46,57],[-14,26],[11,47],[16,34],[126,49],[67,41],[55,-7],[15,-9],[14,-21],[-10,-38],[-1,-9]],[[92649,36038],[-24,-158],[-7,3],[-9,24],[1,91],[10,58],[24,-10],[5,-8]],[[92622,36108],[-6,-9],[-12,55],[-4,56],[5,51],[14,11],[10,-4],[-11,-94],[4,-66]],[[81439,36835],[-7,-24],[-54,180],[-15,122],[10,23],[10,6],[32,-170],[10,-39],[0,-40],[4,-12],[10,-46]],[[92521,37009],[-7,-16],[-13,29],[-8,102],[6,59],[14,55],[3,30],[-6,62],[42,71],[10,37],[4,48],[-15,52],[-12,10],[10,29],[12,15],[9,6],[7,-6],[5,-101],[17,-36],[-3,-50],[-58,-259],[-16,-97],[-1,-40]],[[91984,38311],[10,-15],[8,2],[8,-9],[-3,-38],[13,-42],[6,-30],[-10,-24],[-6,-8],[-15,20],[-42,121],[7,40],[24,-17]],[[91809,38984],[-8,-1],[-7,10],[6,23],[1,32],[10,-10],[7,-45],[-9,-9]],[[91646,39059],[-10,-18],[-6,42],[1,44],[10,15],[5,-58],[0,-25]],[[82068,39868],[-17,-45],[-19,9],[-3,23],[13,37],[22,45],[7,-28],[-3,-41]],[[91400,40154],[-6,-6],[-10,0],[-13,10],[12,75],[6,-39],[12,-32],[-1,-8]],[[91370,40236],[-6,-3],[-7,6],[5,24],[7,19],[10,14],[-3,-52],[-6,-8]],[[90632,41341],[6,-55],[12,-42],[-5,-28],[-7,-21],[-18,19],[-12,51],[-21,41],[-5,23],[25,-2],[12,8],[5,9],[8,-3]],[[88738,41984],[-11,-10],[-3,24],[14,24],[9,34],[19,-30],[3,-30],[-31,-12]],[[88751,42296],[-21,-51],[-11,7],[-10,-27],[-20,-13],[-12,0],[-22,-13],[-4,16],[4,51],[19,56],[18,35],[46,16],[36,25],[4,-4],[26,-65],[-38,-8],[-15,-25]],[[88081,42754],[-12,-27],[-15,28],[-3,29],[-12,8],[6,27],[6,7],[6,33],[16,-39],[1,-43],[7,-23]],[[87941,42840],[-17,-2],[-4,3],[-3,25],[5,23],[18,6],[7,-6],[-6,-49]],[[88017,42845],[-5,-4],[0,48],[8,24],[4,-50],[-7,-18]],[[84610,42971],[-11,-17],[-10,5],[0,23],[-11,24],[6,28],[4,14],[9,-2],[3,-23],[12,-26],[-2,-26]],[[84777,43444],[-18,-36],[-12,29],[7,58],[12,20],[10,-10],[-1,-45],[2,-16]],[[87975,43891],[12,-24],[13,2],[12,53],[7,-8],[5,-13],[4,-23],[-17,-40],[-8,-7],[-7,-22],[-12,-73],[1,-24],[11,-25],[27,-23],[13,11],[5,-3],[-5,-36],[-11,-27],[-36,12],[-32,-4],[-52,26],[-27,3],[-8,10],[16,21],[10,28],[-5,67],[4,84],[30,41],[14,42],[20,26],[13,-3],[-2,-26],[5,-45]],[[87843,43879],[-7,-6],[-25,11],[0,21],[3,15],[7,10],[16,41],[11,-24],[5,-49],[-10,-19]],[[87871,45159],[-44,-43],[24,58],[51,52],[8,12],[-2,-25],[-26,-43],[-11,-11]],[[86238,45115],[23,-14],[10,-19],[7,-21],[1,-25],[-29,-11],[-52,37],[-51,-31],[-15,0],[-10,22],[8,61],[19,-9],[16,22],[-3,67],[-9,37],[27,68],[12,13],[12,0],[11,-48],[2,-51],[13,-48],[8,-50]],[[86282,45290],[37,-5],[45,43],[21,-18],[9,4],[33,41],[21,11],[15,31],[14,-33],[32,-38],[11,-40],[13,-19],[5,-12],[-20,-42],[-3,-45],[-21,3],[-25,-74],[-95,-124],[-85,106],[-37,71],[-24,99],[-5,82],[-10,51],[4,14],[5,6],[7,-1],[25,-56],[12,-15],[16,-40]],[[87943,45288],[-20,-35],[-1,26],[10,21],[25,84],[11,20],[6,11],[5,31],[1,46],[14,7],[-11,-105],[-40,-106]],[[86831,45332],[-6,-9],[-22,89],[6,27],[-9,46],[15,5],[12,34],[4,-16],[1,-63],[9,-36],[-10,-77]],[[89771,44956],[-7,-70],[-14,-54],[-1,-32],[3,-45],[22,-33],[18,-21],[10,-58],[31,-81],[-1,-56],[16,-69],[16,-137],[4,-121],[16,-80],[-10,-172],[11,-70],[15,-58],[18,-116],[13,-106],[19,-30],[38,-36],[41,40],[28,53],[31,13],[43,28],[31,-71],[17,-80],[74,-104],[42,-68],[32,-38],[30,-49],[-3,-50],[-7,-39],[7,-61],[4,-71],[-6,-86],[22,-130],[7,-103],[23,-101],[-2,-104],[-4,-40],[-3,-58],[18,-72],[17,-54],[24,-58],[33,-89],[23,-17],[20,-2],[-3,-90],[41,-179],[22,-147],[-15,-197],[-14,-114],[3,-56],[53,-137],[30,-25],[-6,-65],[-4,-101],[24,-78],[27,-58],[30,-35],[29,-28],[38,-28],[48,-12],[25,-44],[13,-35],[39,-12],[17,7],[22,14],[14,-24],[11,-31],[21,-86],[44,-85],[30,-14],[18,-43],[24,-11],[22,-6],[30,-33],[49,-76],[45,-12],[20,-21],[44,-83],[17,-44],[18,-66],[-22,-6],[-21,13],[-13,-64],[29,-90],[35,-63],[41,-67],[40,-94],[10,-72],[11,-29],[13,-101],[35,-59],[2,-108],[18,-149],[19,-135],[14,-40],[17,-65],[18,8],[14,21],[28,-64],[15,-28],[8,16],[-17,123],[11,72],[10,9],[16,2],[18,-58],[26,-62],[47,-55],[38,-52],[11,2],[-4,40],[1,59],[15,9],[14,-29],[25,-91],[5,-188],[0,-158],[17,-162],[24,-43],[16,-40],[28,-54],[18,-51],[23,-23],[74,-108],[20,-13],[32,-2],[40,-49],[19,-45],[43,-169],[20,-59],[43,-59],[19,-19],[29,-40],[10,-59],[3,-35],[17,-62],[25,-75],[38,-41],[34,-91],[2,-148],[18,-73],[12,-32],[27,-30],[11,-24],[-23,-195],[22,-391],[-12,-122],[22,-121],[52,-210],[12,-74],[7,-87],[34,-111],[-2,-169],[13,-80],[-3,-105],[-40,-112],[-31,-139],[-1,-118],[-20,-229],[-14,-61],[-10,-95],[-43,-230],[-2,-90],[6,-108],[-7,-103],[-11,-71],[-10,-130],[-44,-202],[-63,-150],[-4,-114],[-8,-50],[-13,-62],[-39,-69],[-23,-29],[-9,-40],[-22,0],[0,-13],[15,-12],[-7,-21],[-58,-36],[-40,-47],[-40,-113],[-17,-60],[-21,-57],[-13,-27],[-6,-28],[-8,-72],[-21,-13],[-18,-21],[8,-68],[-9,-78],[-3,-53],[-10,-34],[-11,12],[-10,-5],[-12,-19],[19,-5],[11,-9],[-39,-76],[-36,-78],[-10,-51],[-15,-65],[-14,-144],[-11,-83],[8,-58],[-2,-11],[-8,-4],[-5,7],[-17,-20],[-4,-20],[7,-25],[4,-8],[-2,-12],[-6,-13],[-16,0],[-19,-21],[-53,-213],[-23,-57],[-27,-87],[-10,-79],[-8,-86],[-10,-145],[-9,-103],[-21,-99],[-7,-71],[-3,-135],[10,-103],[-7,-54],[0,-52],[-8,-49],[-34,-11],[-28,-40],[-40,-65],[-23,-24],[-51,-18],[-99,8],[-189,-24],[-37,-15],[-70,-45],[-68,-70],[-66,-94],[-149,-256],[-117,-28],[-22,0],[-18,7],[-21,-16],[0,-32],[19,-33],[14,-31],[25,43],[11,-12],[4,-79],[1,-50],[-8,-27],[-15,-20],[-17,13],[-2,27],[-22,65],[-26,57],[-25,18],[-14,-19],[-23,-20],[-20,72],[-20,63],[-28,7],[-24,-1],[-19,27],[-39,43],[8,33],[10,35],[22,13],[-6,48],[-12,39],[-30,10],[-21,-7],[-12,-30],[-16,-54],[-64,-67],[-32,37],[-36,55],[18,-4],[36,2],[30,49],[13,31],[15,66],[-19,46],[-18,34],[-26,30],[-98,-102],[-21,-15],[-19,-20],[34,-17],[20,5],[21,-30],[-34,-42],[-26,-12],[-34,-25],[-63,-66],[-80,-136],[-35,-40],[-41,-31],[-56,37],[-31,8],[-40,56],[-67,38],[-63,74],[-44,38],[-31,8],[-43,-16],[-73,67],[-56,7],[-36,-67],[-29,4],[-18,10],[-59,110],[-56,55],[-107,28],[-66,76],[-49,146],[-94,167],[-25,62],[-12,60],[-1,47],[13,90],[17,89],[3,50],[-35,167],[-50,159],[-23,49],[-62,106],[-57,79],[-15,42],[-4,21],[27,-10],[12,32],[19,11],[14,-43],[17,-8],[0,72],[10,35],[-7,15],[-5,14],[-25,16],[-28,-24],[-21,-31],[-28,-26],[-11,-28],[-29,-1],[-12,-7],[-58,-53],[-36,-1],[-57,18],[18,73],[23,43],[19,50],[30,173],[-5,151],[-15,61],[-48,125],[-22,76],[-27,80],[-13,-47],[-8,-48],[-26,-70],[-13,-157],[-50,-239],[-35,-3],[-30,10],[-52,-28],[-35,-33],[-32,0],[-18,-10],[-23,8],[37,187],[31,-5],[35,7],[15,-3],[23,2],[18,86],[11,96],[-7,62],[-3,64],[7,73],[3,53],[43,174],[37,89],[42,72],[-5,68],[-14,85],[-4,65],[20,20],[19,41],[-22,187],[-14,55],[-22,55],[0,-71],[2,-70],[-30,-89],[-40,-64],[-26,-60],[-25,-136],[-32,-115],[-30,-43],[-27,-9],[-27,-18],[-42,-45],[-42,-39],[-30,-50],[-26,-27],[-86,-230],[-40,-76],[-8,-31],[-16,-26],[3,-37],[13,-24],[13,-102],[-8,-22],[-14,11],[-35,57],[-22,-21],[-18,-23],[-46,105],[-20,24],[-24,42],[-26,36],[-11,5],[-19,-8],[2,28],[13,23],[11,6],[21,-34],[24,-30],[14,-2],[6,12],[-23,118],[-15,104],[-7,30],[-19,106],[-9,30],[-40,74],[-43,88],[-11,104],[-16,67],[-20,42],[-31,38],[-85,14],[-35,107],[-21,133],[16,9],[19,2],[7,41],[-5,63],[-84,79],[-40,83],[-34,35],[-31,14],[-42,-3],[-53,3],[-126,131],[-30,4],[-90,-41],[-31,7],[-137,179],[-91,86],[-30,15],[-39,15],[-32,-21],[-22,-19],[-46,-22],[-182,14],[-156,-28],[-105,-19],[-67,-24],[-112,-107],[-133,-103],[-108,-49],[-99,-65],[-66,-19],[-84,-8],[-179,32],[-61,-24],[-97,-120],[-29,-29],[-55,-33],[-141,-155],[-65,-33],[-42,-11],[-36,-32],[-32,-66],[-45,-183],[-27,-86],[-61,-138],[-39,-46],[-40,6],[-44,-48],[-38,51],[-31,9],[-50,-4],[-174,-58],[-25,68],[-32,10],[-60,-3],[-90,20],[-164,-25],[-79,-28],[-31,-25],[-58,16],[-99,-23],[-35,-39],[-26,-34],[-51,-154],[-56,-51],[-47,-1],[-51,-12],[-105,-148],[-106,-144],[-36,-15],[-40,-24],[-52,-12],[-26,-13],[-122,37],[-77,4],[-97,22],[-83,71],[-64,40],[-73,155],[-44,58],[-80,70],[-23,-2],[-19,-19],[-33,49],[-1,64],[-9,54],[1,142],[5,167],[29,-38],[23,-36],[49,2],[44,62],[25,92],[21,103],[-3,110],[-15,193],[10,41],[15,16],[5,96],[4,296],[-11,111],[-68,226],[-45,196],[-32,89],[-28,143],[-23,198],[-7,100],[-7,185],[8,105],[-4,61],[-28,167],[-64,156],[-10,58],[0,61],[-15,71],[-51,143],[-52,123],[-9,60],[-10,249],[-19,114],[-89,287],[-104,248],[-29,102],[-13,34],[8,4],[11,-13],[13,-25],[7,-2],[6,21],[-1,47],[4,26],[9,-14],[11,-53],[33,-138],[10,-70],[42,-21],[13,18],[15,36],[5,97],[-21,44],[-20,19],[-32,72],[-21,115],[-33,107],[0,38],[15,28],[25,-15],[23,-62],[25,-57],[-4,-100],[-4,-27],[2,-23],[9,-22],[12,-17],[13,25],[11,58],[7,-7],[18,-133],[14,-37],[27,-41],[24,32],[11,28],[-4,94],[7,91],[-4,67],[-61,177],[-56,218],[-34,109],[-28,164],[-18,56],[-24,92],[-1,104],[2,71],[19,151],[18,79],[56,181],[3,78],[0,59],[8,90],[0,63],[-8,59],[-23,100],[31,177],[45,226],[18,33],[28,31],[5,-47],[-13,-157],[19,-81],[-6,-92],[18,15],[27,18],[21,48],[11,46],[51,184],[30,69],[41,50],[85,61],[81,80],[39,77],[49,66],[34,73],[32,49],[166,183],[28,34],[36,4],[44,-6],[40,10],[43,-42],[31,-5],[77,46],[41,40],[71,89],[31,25],[72,28],[82,37],[98,154],[70,-10],[63,-15],[51,46],[119,28],[66,39],[124,102],[33,35],[50,73],[44,91],[43,123],[27,110],[11,57],[26,90],[17,71],[14,34],[48,48],[71,135],[23,28],[4,43],[-15,24],[-19,15],[-13,143],[-12,99],[-1,69],[5,66],[28,103],[19,44],[28,51],[25,16],[21,45],[34,44],[15,45],[21,91],[19,69],[15,-3],[28,-160],[19,-85],[35,-100],[32,-148],[27,-67],[13,-44],[10,-20],[3,28],[-3,33],[13,112],[-6,79],[2,31],[6,12],[13,-8],[25,-44],[13,-16],[9,3],[-1,72],[13,45],[-5,31],[-22,-2],[-9,39],[-18,44],[-21,32],[-24,74],[-8,28],[10,14],[15,-2],[13,31],[5,42],[-11,69],[12,25],[22,-7],[36,-109],[16,11],[13,44],[23,12],[24,-8],[15,-31],[32,-32],[42,4],[22,-8],[45,6],[22,-10],[-4,17],[-25,20],[-27,4],[-32,-2],[-14,21],[-5,55],[8,40],[5,17],[21,-7],[19,2],[2,53],[7,48],[11,39],[0,37],[-12,-10],[-28,-86],[-14,70],[-20,53],[4,77],[12,76],[18,10],[16,-12],[23,45],[13,34],[-3,28],[3,21],[16,-6],[62,-69],[12,-36],[13,14],[4,39],[-1,39],[-14,-6],[-32,4],[-7,22],[3,19],[-15,45],[21,30],[17,2],[13,20],[0,27],[4,12],[10,-17],[32,-7],[31,-35],[15,-8],[6,19],[2,41],[-39,41],[-1,40],[-17,47],[0,45],[24,39],[5,37],[15,15],[27,0],[19,32],[21,11],[6,70],[-1,48],[9,12],[21,-20],[-6,-55],[0,-53],[-6,-29],[8,2],[5,12],[9,35],[22,-14],[6,-37],[3,-37],[11,-12],[15,56],[21,15],[-1,71],[8,51],[2,38],[13,19],[3,40],[-10,28],[-6,51],[18,11],[18,-25],[13,-64],[8,-29],[11,16],[7,42],[22,25],[22,-34],[24,-48],[31,42],[28,77],[-5,47],[4,49],[35,25],[29,-18],[25,-52],[54,-39],[46,-56],[20,-36],[40,-58],[25,-60],[34,-107],[82,-131],[5,-23],[-11,-43],[-10,-56],[-12,-95],[-3,-139],[12,10],[12,50],[13,-10],[14,-32],[2,31],[-9,18],[-15,64],[0,34],[12,28],[19,32],[20,22],[13,18],[2,24],[18,23],[28,8],[16,-4],[118,-59],[29,-60],[3,-73],[11,-26],[7,46],[-2,100],[10,20],[31,-15],[22,-20],[30,-66],[6,-32],[13,-21],[4,30],[-6,43],[-4,50],[6,43],[36,3],[23,10],[-11,16],[-15,6],[-25,40],[-17,42],[27,42],[-1,10],[-25,-1],[-34,40],[-29,56],[22,103],[45,101],[25,34],[2,34],[12,62],[8,53],[2,42],[11,43],[28,41],[37,15],[18,16],[18,38],[16,46],[-34,90],[3,50],[6,59],[42,43],[22,112],[15,17],[33,-4],[13,11],[-2,89],[3,35],[14,14],[18,-12],[11,-39],[25,-36],[9,20],[-4,39],[-3,51],[23,11],[19,3],[1,41],[-3,33],[8,14],[48,7],[13,34],[7,29],[6,-16],[8,-66],[27,-38],[80,-1],[45,27],[19,-16],[30,-13],[32,31],[20,24],[33,-31],[11,-32],[8,69],[20,24],[20,14],[26,-12],[10,4],[-23,51],[1,46],[-1,69],[4,62],[8,45],[-55,91],[-55,14],[-40,-19],[-17,15],[-36,72],[-34,27],[-2,18],[41,52],[16,-9],[24,-49],[14,-17],[12,4],[7,38],[11,20],[20,-12],[62,-82],[34,-80],[18,21],[31,45],[29,-9],[17,-27],[25,-97],[20,-48],[48,-13],[24,-19],[25,-32],[33,3],[70,-12],[65,-62],[27,-39],[32,-11],[18,-15],[34,-5],[53,44],[24,-40],[11,-28],[48,-52],[53,-17],[37,54],[55,39],[38,60],[28,29],[27,49],[10,-2],[-22,-46],[-2,-26],[17,-11],[-2,-14],[-23,-35],[-29,-56],[1,-34],[11,-18],[13,8],[18,28],[23,16],[19,-23],[7,-80],[14,-53],[30,-7],[19,0],[19,74],[-10,63],[-12,14],[6,23],[48,104],[27,-3],[19,-102],[31,-53],[32,4],[17,-14],[14,-61],[-114,-251],[-5,-28],[15,-45],[6,-53],[-37,-128],[-14,-6],[-13,35],[-19,22],[-18,-16],[-18,-9],[-66,-71],[0,-183],[17,-109],[-10,-71],[-19,-126],[-22,-47],[-17,-30],[-57,-172],[-18,-41],[-19,-59],[6,-56],[7,-39],[22,-44],[83,-92],[38,-64],[66,-76],[15,-53],[9,-43],[47,-49],[34,-30],[10,8],[7,10],[8,0],[9,-6],[-2,-38],[-3,-21],[3,-27],[24,-34],[38,1],[22,8],[25,-36],[22,-24],[36,-48],[63,-58],[49,-38],[58,-140],[44,-81],[49,-59],[72,-41],[33,7],[54,-48],[53,-22],[28,-66],[9,-50],[3,-39],[26,-92],[54,-30],[69,-92],[57,-41],[14,-24],[25,-29],[48,-1],[84,46],[38,47],[51,74],[23,128],[14,103],[71,212],[20,105],[18,140],[15,87],[-5,95],[16,172],[36,237],[13,79],[-7,118],[-22,220],[10,76],[10,107],[-16,77],[-16,53],[-2,75],[17,140],[15,74],[16,96],[-9,182],[34,63],[13,32],[26,0],[12,-14],[3,36],[-10,34],[-4,39],[-8,20],[-16,7],[-13,21],[-19,22],[3,81],[33,156],[18,60],[11,-25],[14,-20],[2,45],[-5,46],[25,152],[27,207],[8,188],[44,36],[23,47],[13,55],[25,0],[17,-24],[-11,-41],[-4,-31],[47,-79],[16,-60],[7,-57],[9,-54],[4,-72],[0,-115],[6,-109],[17,-34],[15,-22],[22,-3],[31,-18]],[[89520,45676],[-23,-33],[-15,18],[-4,36],[2,16],[19,28],[21,-65]],[[89538,45972],[-17,-36],[-17,11],[-6,20],[6,29],[23,5],[11,-29]],[[89490,45993],[-7,-15],[-12,34],[14,40],[12,-19],[-7,-40]],[[54709,79837],[-2,-6],[-1,-21],[-11,-28],[-11,-35],[0,-32],[30,-109],[27,-66],[5,-25],[17,-19]],[[54763,79496],[-17,-25],[-3,-36],[-10,-16],[-3,-20],[4,-19],[0,-24],[6,-32],[-26,-7],[-30,1],[-11,-2],[-11,-9],[-10,5],[-28,30],[-16,7],[-11,-2],[-8,-13],[-15,-17],[-13,-12],[3,-11],[58,-27],[10,-42],[-11,-34],[-4,-17],[-14,-13],[-16,-12],[-20,-3],[-2,-18],[7,-54],[-6,-12],[-6,-17],[6,-45],[12,-3],[3,-10],[-2,-18],[-3,-19],[-4,-21],[-2,-9],[-8,-5],[-26,3],[-22,-18],[-44,-62]],[[54470,78838],[-16,-11],[-17,-25],[1,-55],[-2,-5],[-4,-11],[-53,19],[-2,0],[-35,-7],[-24,-26],[-30,-14],[-62,8],[-60,-10],[-14,-7],[-16,-5],[-14,-14],[-9,-21],[-14,-26],[-22,-21],[-23,-16],[-5,-13],[-8,-7],[-13,10],[-10,-1],[-13,7],[-42,7],[-47,12],[-22,12],[-25,9],[-27,8],[-25,2],[-12,3]],[[53805,78640],[-58,20],[-39,2],[-51,8],[-100,31],[-30,12],[-28,4],[-33,11],[-25,17],[-17,33],[-17,44],[-31,57],[-7,29],[10,25],[10,18],[-1,9],[-8,4],[-56,-25],[-54,-31],[-21,-1],[-20,7],[-27,1],[-27,-8],[-52,-5],[-31,-22],[-19,-45],[-11,-36],[-9,-11],[-18,-4],[-28,3],[-19,10],[-19,31],[-31,4],[-28,1],[-7,6]],[[52903,78839],[1,19],[-11,38],[-19,12],[-47,-71],[-13,-6],[-38,19],[-33,30],[-3,22],[-6,19],[-28,17],[-34,11],[-11,0]],[[52661,78949],[4,11],[4,18],[-3,14],[-8,15],[-4,16],[-1,16],[-3,12],[-1,12],[-3,9]],[[52646,79072],[23,70],[4,43],[-20,26],[-8,7]],[[52645,79218],[7,6],[28,-5],[18,15],[10,14],[25,-14],[36,-27],[18,-18],[7,-14],[4,-12],[-2,-20],[8,-8],[17,-3],[12,-6],[-4,-27],[-1,-22],[16,3],[20,17],[16,30],[9,30],[8,71],[2,6],[12,-6],[49,4],[23,-14],[37,-2],[-1,-11],[7,-18],[16,-25],[8,-16],[17,-3],[26,9],[15,9],[6,-6],[24,6],[21,20],[5,16],[22,11],[28,25],[40,19],[130,21],[5,16],[-2,36],[4,5],[16,-9],[27,-8],[20,-13],[13,-17],[12,0],[19,11],[25,8],[24,-17],[7,-19],[-4,-10],[0,-15],[8,-12],[19,-21],[25,-18],[13,2],[4,17],[5,41],[2,44],[-6,25],[-13,6],[-16,2],[-9,5],[3,14],[13,36],[0,47],[-29,55],[-25,52],[0,18],[15,31],[23,25],[51,41],[17,8],[20,7],[30,17],[15,18],[9,18],[14,99],[4,4],[4,6],[52,-34],[5,5],[9,6],[17,26],[3,19],[0,38],[2,35],[3,11]],[[53837,79934],[8,-4],[22,-18],[18,-21],[17,-52],[39,-13],[49,-2],[18,23],[16,6],[18,-7],[38,-8],[5,41],[22,44],[10,15],[28,-1],[7,32],[6,90],[6,10],[21,-2],[20,-16],[6,-14],[11,2],[14,9],[16,5],[26,-9],[55,-41],[28,-15],[18,3],[16,-1],[65,-63],[45,-9],[41,0],[13,19],[18,16],[18,-2],[16,-8],[31,-28],[14,-7],[19,-4],[14,-6],[13,-48],[7,-13]],[[62809,74238],[-54,17],[-96,37],[-26,20],[-25,51],[-15,25],[-23,32],[-18,12],[-13,23],[-8,32],[-12,30],[-20,35],[-45,118],[-5,13]],[[62449,74683],[-10,19],[-4,11]],[[63492,75947],[25,-34],[45,-90],[63,-147],[15,-42],[10,-48],[9,-59],[14,-52],[64,-130],[28,-48],[45,-63],[16,-14],[21,-3],[39,-1],[35,-24],[18,-17],[18,-25],[16,-28],[17,-77],[-62,25],[-62,-4],[-36,-16],[-34,-22],[-32,-32],[-21,-62],[-17,-142],[-25,-134],[0,-61],[12,-59],[-2,-29],[-11,-12],[-15,-25],[-19,-122],[-10,-25],[-12,-15],[-3,15],[0,32],[-27,28],[-14,-32],[-10,-67],[-20,-71],[-1,-13],[5,-219]],[[63574,73983],[-8,1],[-57,-22],[-12,7],[-48,101],[-10,11],[-21,4],[-13,17],[-10,27],[-5,20],[-51,55],[-7,20],[-1,17],[7,16],[9,14],[24,13],[29,12],[9,8],[5,15],[0,23],[-5,23],[-41,42],[-5,18],[-1,22],[2,23],[6,18],[34,25],[18,25],[-11,28],[-36,65],[-43,71],[-29,1],[-33,-21],[-53,-61],[-30,-26],[-38,-43],[-42,-48],[-34,-50],[-21,-42],[-38,-18],[-19,-36],[-64,-105],[-18,1]],[[62500,75628],[60,76],[17,15],[40,-14],[81,-50],[-5,-28],[8,-16],[19,-22],[35,-21],[31,-12],[15,10],[24,8],[30,-25],[28,-32],[14,-13],[7,-3],[22,10],[25,41],[10,50],[3,23],[-15,33],[-31,36],[-34,31],[-22,28],[-14,54],[-14,6],[-4,7],[-2,19],[0,26],[5,20],[14,8],[14,3],[13,19],[16,38],[7,20]],[[62897,75973],[30,-12],[4,-33],[5,-7],[12,4],[21,14],[16,-11],[21,-40],[30,-42],[16,-28],[6,-19],[15,-19],[22,-23],[17,-34],[15,-81],[16,-19],[57,-31],[19,-6],[56,-11],[19,8],[29,69],[25,72],[24,15],[44,35],[25,33],[11,35],[25,67],[15,38]],[[58487,50460],[-6,-15],[-25,-108],[-5,-16],[2,-10],[11,-20],[-6,-34],[-3,-9],[-4,-32],[2,-29],[6,-11],[17,-14],[25,-10],[29,-24],[19,-5],[5,-17],[-1,-31],[5,-28],[0,-48],[-6,-43],[-30,-20],[-15,-22],[-5,-11],[4,-12],[2,-18],[-28,-42],[-29,-56],[-7,-37],[-6,-44],[-8,-29],[-23,-40],[-22,-82],[-11,-54],[-56,-128],[-49,-63],[-15,-22],[-87,4]],[[58167,49280],[-7,86],[-13,118],[-30,106],[-3,44],[1,86],[0,120],[-2,65],[1,48],[4,82],[-1,49],[-19,56],[-25,60],[-13,30],[-1,24],[0,22]],[[58059,50276],[4,32],[10,35],[10,4],[27,-14],[27,-30],[15,-68],[11,-10],[21,0],[52,9],[13,-1],[24,16],[23,29],[7,30],[5,67],[5,120],[12,1],[33,-43],[7,-2],[7,1],[12,21],[14,18],[10,-1],[38,20],[21,-36],[13,-11],[7,-3]],[[51581,81091],[0,3],[38,17],[17,-33],[28,-1]],[[51664,81077],[4,-11],[31,-30],[10,-25],[23,-23],[-19,-29],[3,-14],[7,-13],[25,-8],[13,-19],[1,-30],[5,-48],[-52,-49],[-15,-53],[-1,-11]],[[51699,80714],[-2,2],[-6,17],[-10,0],[-21,8],[-31,-49],[-14,-40],[-8,-30],[-12,-24],[-2,-25],[1,-11],[-4,-14],[0,-14],[17,-28],[5,-16],[21,-50],[-7,-19],[-5,-19],[-6,-15],[-7,-9]],[[51608,80378],[-22,1],[-28,-6],[-19,-10],[-10,0],[-20,25],[-22,37],[-15,18],[-6,16],[-18,6],[-25,19],[-18,20],[-15,13],[-21,6],[-17,-1],[-6,34],[-2,39],[-14,26],[20,102],[-12,10],[-13,-8],[-18,-25],[-9,-29],[-5,-25],[-31,-24],[-49,-9],[-53,9],[-8,6],[-3,7],[0,9],[3,14],[10,17],[2,24],[-10,20],[-6,8],[3,20],[7,25],[1,14],[-36,44],[-26,8],[-26,1],[-19,5],[-11,-2],[-8,-12],[-9,-9],[-6,11],[-11,76],[-9,11],[-33,13],[-44,5],[-12,14],[-7,34],[-4,41],[-15,40],[-7,10],[-13,17],[-24,-7],[-28,-23],[-16,-6],[-7,-3],[-22,23],[-25,35],[-20,37],[-5,21],[6,25],[-7,19],[-11,35],[-3,27]],[[50701,81276],[121,97],[73,50],[35,15]],[[50930,81438],[8,-50],[7,-16],[8,-10],[11,-2],[12,12],[18,13],[28,-6],[21,-12],[7,-12],[14,-12],[19,-3],[39,23],[37,34],[10,24],[4,22]],[[51173,81443],[22,-14],[19,-3],[9,6],[-6,35],[16,18],[17,9],[8,-15],[16,-16],[13,0],[34,40],[7,-8],[8,-14],[1,-11],[2,-12],[7,-5],[27,2],[13,22],[11,14],[8,-10],[4,-26],[7,-35],[32,-39],[27,-11],[33,8],[13,7],[9,-6],[8,-21],[19,-23],[40,-17],[13,-9],[8,-16],[-2,-23],[-19,-56],[-3,-17],[3,-5],[-4,-11],[-25,-37],[-2,-14],[8,-21],[7,-18]],[[50998,58580],[-11,-37],[-18,-76],[-1,-60],[42,-126],[5,-13],[11,-20],[6,-23],[5,-62],[3,-70],[3,-47],[20,-66],[2,-27],[-14,-99],[-4,-10],[-3,-3],[-22,8],[-10,-10],[-11,-34],[-8,-34],[0,-13],[19,-63],[-12,-89],[-12,-56],[-23,-32],[-20,-8],[-14,-15],[-8,-20],[1,-64],[-29,-58],[-16,-41],[-8,-25],[3,-75],[-10,-77],[-19,-60],[-40,-13],[-35,-7],[-11,-153],[0,-97],[-3,-100],[-6,-40],[3,-57],[-3,-128],[-4,-102],[6,-27],[3,-60],[0,-61],[9,-43],[9,-37],[0,-20],[-5,-12],[-4,-16],[0,-145],[1,-43],[-2,-28],[-8,-22],[3,-74],[6,-47],[6,-34],[-6,-29],[-5,-38],[-7,-97],[-1,-33]],[[50751,55512],[-116,-24],[-130,-39],[-55,-25]],[[50450,55424],[-3,19],[46,26],[-9,75],[-29,90],[-11,16],[-6,45],[7,29],[-4,20],[-2,60],[-14,67],[26,2],[0,215],[0,205],[0,175],[0,139],[-5,166],[-1,122],[-1,161],[-9,50],[-40,85],[-11,44],[-1,59],[-9,60],[-1,105],[0,123],[-4,19],[-43,59],[-60,82],[-46,63],[-4,5],[-4,16],[6,186],[10,24],[14,77],[8,62]],[[50250,58175],[6,0],[10,20],[7,30],[8,-7],[14,-5],[6,10],[-1,23],[4,23],[11,10],[3,21],[0,24],[9,6],[15,-1],[13,8],[10,12],[14,48],[7,17],[2,12],[8,11],[21,4],[16,-3],[11,-28],[71,24],[35,-14],[69,121],[16,36],[21,86],[7,33]],[[50663,58696],[7,59],[-14,109],[1,19],[28,23],[36,19],[14,1],[9,9],[13,24],[22,17],[12,-6],[8,-3],[75,-144],[33,-73],[9,-37],[17,-27],[25,-16],[23,-37],[17,-53]],[[50060,60432],[-4,-27],[0,-47],[-5,-75],[-6,-89],[24,-59],[29,-62],[8,-24],[-8,-62],[5,-36],[16,-60],[26,-76],[26,-79],[19,-10],[17,-6],[11,-14],[15,-14],[16,-9],[13,-17],[9,-17],[11,-48],[30,-32],[21,-32],[-8,-16],[-26,6],[-25,14],[-3,-23],[-1,-89],[4,-74],[5,-10],[25,-13],[59,-96],[53,-91],[18,-24],[30,-9],[33,-4],[14,9],[32,46],[17,5],[16,-2],[8,-7],[15,-37],[15,-57],[4,-41],[-1,-23],[-5,-8],[-27,-11],[-11,-9],[-3,-12],[4,-28],[5,-18],[29,-81],[41,-110],[13,-28]],[[50250,58175],[-72,-6],[-26,-16],[-16,0],[0,13],[-2,8],[-90,45],[-64,27]],[[49980,58246],[-64,29],[-3,-27],[-10,-18],[-13,-2],[-10,5],[-6,-22],[-11,-28],[-15,-13],[-15,-18],[-8,-15],[-6,0],[-14,36],[-20,3],[-36,-6],[-17,10],[-22,5],[-53,-8],[-84,15],[-14,-8],[-4,-6],[-83,-2],[-92,-2],[-77,-1],[-68,-2],[0,6],[-22,1],[-2,-12],[-19,-144],[-2,-78],[10,-48],[11,-31],[13,-13],[1,-18],[-10,-22],[1,-23],[12,-24],[3,-25],[-6,-26],[1,-63],[9,-100],[1,-65],[-9,-29],[4,-51],[17,-71],[3,-31]],[[49251,57304],[-6,-14],[-14,-18],[-14,0],[-16,43],[-7,20],[-13,44],[-12,44],[-15,19],[-14,18],[-18,56],[-18,27],[-18,-8],[-27,11],[-54,13],[-58,-4],[-25,-13],[-23,-20],[-61,-45],[-24,-22],[-18,-56],[-20,1],[-21,18],[-13,26],[-27,-6],[-27,25],[-26,48],[-19,16],[-24,36],[-7,67],[-15,47],[-14,65],[-21,30],[-24,15],[-34,-3],[-22,26],[-17,38]],[[48465,57848],[5,33],[8,47],[0,46],[6,73],[-4,92],[-6,64],[19,27],[21,24],[13,44],[14,97],[6,85],[-4,31],[-7,25],[-6,37],[-3,44],[4,39],[16,36],[20,30],[14,14],[38,15],[48,23],[27,25],[20,25],[11,20],[12,42],[18,31],[14,33],[2,89],[0,51],[-10,28],[-6,24],[70,70],[1,50],[-10,55],[-14,44],[-5,39],[20,45],[17,34],[12,28],[28,44],[29,12],[26,-17],[77,-103],[14,-7],[16,8],[20,27],[26,22],[10,69],[-1,102],[6,46],[14,9],[44,-20],[12,-1],[13,7],[9,17],[0,33],[-2,29],[14,95],[27,71],[53,88],[17,18],[19,9],[95,-61],[16,15],[23,151],[26,14],[31,3],[21,13],[10,11],[46,57],[80,78],[43,33],[8,13],[31,55],[41,64],[26,12],[36,5],[23,-10],[6,-18],[8,-10],[47,27],[68,-43],[58,-42]],[[75541,64232],[-17,-3],[-8,17],[4,24],[-5,78],[14,8],[7,-1],[5,-22],[3,-42],[-3,-59]],[[75520,64419],[-10,-47],[-5,34],[4,43],[4,24],[3,0],[6,-25],[-2,-29]],[[75319,64616],[-30,-40],[10,239],[22,-89],[6,-48],[-8,-62]],[[75432,64736],[-13,-17],[-12,14],[-16,56],[8,71],[5,11],[7,-23],[11,-50],[7,-38],[3,-24]],[[75215,64567],[-48,-20],[-25,6],[46,151],[-1,68],[-7,55],[-24,44],[-1,32],[-11,43],[-5,51],[26,16],[21,-29],[3,-16],[4,-42],[11,-43],[36,-88],[0,-55],[-10,-132],[-15,-41]],[[75178,65070],[4,-25],[-15,15],[-12,17],[-7,23],[12,12],[18,-42]],[[75714,64503],[3,-22],[0,-191],[3,-81],[8,-68],[2,-25],[-9,-21],[-8,-4],[-8,33],[-19,24],[-28,27],[-11,18],[-15,-7],[-19,-40],[-8,-38],[3,-52],[6,-52],[14,-29],[1,-33],[5,-42],[7,-39],[4,-42]],[[75645,63819],[-5,0],[-16,53],[-15,58],[-39,110],[-12,197],[-1,97],[-26,114],[-18,158],[-7,41],[9,51],[2,19],[-5,-4],[-14,-26],[-17,63],[-11,56],[-46,117],[-13,52],[-1,50],[-19,-50],[-27,-36],[-27,-54],[-18,-16],[-57,-10],[-33,72],[-47,175],[-7,40],[6,103],[-11,97],[0,52],[-3,34],[-8,-8],[-4,-23],[2,-36],[-3,-31],[-41,6],[-39,14],[34,-51],[36,-12],[19,-46],[3,-36],[-1,-40],[-19,-29],[-17,-18],[3,-38],[21,-47],[-26,-14],[-6,-31],[-1,-43],[13,-39],[5,-29],[-3,-26],[12,-29],[18,-60],[5,-42],[-7,-60],[-10,-23],[-16,-23],[-39,-75],[-19,-86],[-16,-40],[-20,-7],[-7,18],[-17,22],[0,42],[5,33],[33,81],[-18,-11],[-21,-23],[-31,-43],[-11,53],[-6,50],[0,61],[25,91],[-29,-45],[-8,-57],[4,-67],[-4,-47],[-11,-62],[-15,-37],[-25,-24],[-11,-37],[-17,-27],[0,54],[-5,71],[-18,168],[-4,-36],[9,-104],[0,-68],[-14,-54],[-27,-57],[-21,-8],[-12,8],[-19,36],[-20,51],[-4,82],[-8,45]],[[74736,64569],[1,54],[-2,51],[-21,136],[-15,69],[2,23],[-1,9],[-6,90],[-9,55],[-5,59],[22,84],[-9,14],[-25,11],[-23,14],[-6,22],[10,83],[-12,32],[-17,33],[-5,13],[-6,17],[-8,42],[16,87],[21,102],[4,39],[4,67],[1,25],[-2,26],[-23,29],[-40,12],[-28,25],[-17,37],[-14,15],[-17,-11],[-22,14],[-18,37],[-16,45],[2,21],[4,28],[29,116],[11,4],[25,-22],[10,-1],[16,46],[23,131],[33,0],[29,-5],[19,-6],[20,4],[20,10],[11,17],[6,21],[-2,18],[-25,25],[-9,18],[-7,52],[-8,20],[-48,3],[-26,24],[-14,21],[-24,72],[-31,52],[-29,13],[-12,17],[-6,27],[4,39],[9,36],[6,40],[23,52],[27,46],[13,31],[17,33],[2,19],[-3,20],[-14,20],[-10,7],[-1,12],[6,35],[14,4],[28,-31],[28,-50],[17,-45],[0,-35],[11,-6],[11,-2],[19,-15],[19,5],[12,-9],[8,3],[3,20],[-9,30],[-7,22],[8,21],[9,4],[10,-5],[13,-19],[10,-40],[2,-61],[21,-55],[29,-40],[22,-18],[27,-13],[23,13],[12,38],[-5,35],[3,31],[9,17],[15,-1],[11,-25],[31,-132],[-6,-59],[7,-161],[-8,-106],[1,-23],[4,-18],[5,-7],[9,0],[38,-20],[32,-22],[37,-20],[52,-16],[32,5],[17,1],[32,-5],[86,9],[70,2],[29,-15],[23,-6],[79,11],[80,5],[43,-34],[47,-55],[26,-41],[5,-23],[-3,-20],[-9,-11],[-16,-1],[-37,27],[-7,-8],[1,-55],[-1,-8],[-8,-50],[-23,-110],[-4,-49],[-5,-13],[-5,-7],[-18,-2],[-14,-8],[-5,-18],[-9,-37],[-6,-38],[-9,-12],[-20,21],[-13,-3],[-16,-9],[-16,-21],[-11,-27],[-13,-9],[-37,5],[-7,-4],[-5,-19],[-4,-24],[-29,-56],[-11,-91],[-8,-59],[1,-46],[25,-119],[17,-155],[6,-16],[6,-5],[2,3],[0,33],[1,38],[8,10],[10,-8],[10,-34],[11,-62],[12,-24],[18,-7],[21,14],[16,28],[6,31],[-4,59],[-1,45],[9,42],[36,64],[6,19],[-3,54],[0,51],[14,3],[18,-8],[23,25],[7,0],[10,-26],[16,4],[12,-110],[13,-97],[0,-47],[2,-99],[5,-81],[9,-19],[10,-43],[10,-51],[7,-28],[5,-92],[7,-66],[8,-209],[3,-40]],[[57940,77040],[-7,-139],[-27,-65],[-40,22],[-52,-18],[-27,-73],[-16,-22],[-14,-26],[-9,-95],[-2,-156],[-19,-19],[-18,-6],[-75,-137],[43,-39],[19,-29],[32,-82],[44,-93],[9,-45]],[[57781,76018],[-37,10],[-13,-3],[-9,-14],[-17,3],[-22,0],[-22,-17],[-13,-6],[-17,15],[-31,45],[-19,31],[-14,8],[-14,-9],[-50,-11],[-12,-18],[-24,-21],[-23,-9],[-34,-7],[-17,1],[-10,-10],[-9,-29],[-5,-29],[-5,-12],[-42,-14],[-9,-17],[-3,-16],[1,-16]],[[57311,75873],[-34,16],[-26,-11],[-6,-12],[-5,-18],[3,-19],[10,-19],[9,-49],[3,-50],[-6,-29],[-19,-20],[-40,-22],[-38,10],[-17,-8],[-28,-3],[-27,-6],[-40,-21],[-36,-12],[-33,42],[-39,28],[-41,17],[-14,-12],[-6,-10],[-34,37],[-15,13],[-8,14],[-14,49],[-8,2],[-28,-18],[-27,1],[-17,3],[-48,-2],[-7,-34],[-6,-5],[-10,-4],[-26,2],[-33,-25],[-35,-15],[-28,-1],[-28,8],[-17,-5],[-37,-3],[-23,-36],[-37,2],[-30,6]],[[56365,75654],[4,11],[6,144],[15,64],[-1,13],[-3,10],[-13,11],[-10,34],[-20,91],[-11,19],[-32,19],[-28,27],[-23,34],[-43,86]],[[56206,76217],[22,9],[6,17],[22,47],[2,23],[-2,13],[-14,23],[-10,50],[7,46],[1,24],[-7,23],[7,29],[16,16],[10,5],[41,3],[26,59],[16,19],[16,33],[7,12],[7,26],[3,26],[-33,38],[-11,27],[-14,31],[-20,21],[-39,37],[-16,37],[-7,48],[-10,37],[-12,23],[-2,20],[-5,23],[-1,47],[9,62],[6,21],[14,7],[36,33],[1,42],[7,26],[11,15],[10,10]],[[56306,77325],[20,-24],[47,-39],[23,-29],[-1,-18],[-11,-17],[-20,-17],[-12,-23],[-4,-28],[4,-20],[14,-17],[85,23],[86,-12],[115,-39],[77,-13],[57,18],[105,-32],[97,-30],[94,-9],[52,23],[37,32],[32,60],[79,78],[76,45],[99,35],[67,13],[9,-13],[85,-72],[37,0],[31,-13],[11,-19],[8,-5],[40,18],[18,-40],[28,-55],[48,-29],[42,-16],[14,-2],[45,1]],[[64057,66752],[-9,-44],[-9,16],[-21,76],[6,53],[-10,76],[5,22],[26,11],[6,-4],[-8,-24],[15,-43],[2,-70],[-3,-69]],[[29714,64050],[-8,-42],[-30,-81],[-65,-20],[-73,-4],[-5,22],[-2,20],[5,30],[0,12],[-3,12],[26,13],[18,37],[27,7],[34,-27],[19,-1],[27,29],[22,63],[13,-8],[-5,-62]],[[29745,64231],[-37,-28],[-3,33],[18,27],[22,-32]],[[29711,64763],[17,-9],[9,1],[32,-17],[19,-24],[4,-10],[-10,-21],[-29,40],[-26,5],[-36,-1],[-14,8],[10,43],[24,-15]],[[29387,64639],[-20,-18],[5,30],[37,51],[21,44],[11,16],[5,12],[16,17],[8,28],[-2,24],[-17,38],[0,27],[6,20],[29,9],[-8,-29],[12,-82],[-39,-103],[-33,-31],[-31,-53]],[[29428,64932],[6,-10],[-17,-23],[-40,28],[-9,-2],[-8,31],[-3,22],[2,21],[24,-16],[12,-30],[33,-21]],[[29211,65031],[-2,-15],[-35,115],[-44,28],[-26,28],[6,15],[17,7],[3,37],[-7,39],[-24,80],[-13,54],[-6,12],[-1,45],[27,-70],[12,-62],[18,-61],[13,-105],[35,-36],[25,-51],[2,-60]],[[28982,65351],[-12,-4],[-21,16],[-48,70],[-23,6],[8,39],[17,-14],[39,-60],[15,-30],[25,-23]],[[29325,65707],[-22,-63],[-12,6],[7,78],[15,12],[6,0],[6,-33]],[[28428,65811],[1,-13],[-28,-36],[20,-26],[19,56],[15,-46],[8,-86],[-1,-15],[1,-12],[3,-17],[1,-24],[-16,-75],[-54,8],[-2,63],[-8,12],[-13,91],[-17,29],[-24,74],[14,19],[18,-6],[10,9],[25,7],[16,10],[12,-22]],[[29081,65783],[2,-30],[-19,6],[-28,-11],[-9,0],[6,20],[19,27],[1,26],[-24,37],[-27,92],[-13,22],[-6,35],[-23,38],[5,20],[4,4],[16,-9],[35,-134],[2,-12],[59,-131]],[[28514,66252],[-31,-12],[-23,11],[-5,10],[9,16],[21,13],[34,1],[15,-15],[2,-7],[-22,-17]],[[28404,66075],[0,-70],[3,-52],[-3,-19],[-30,-34],[-8,-20],[-28,-20],[-17,-27],[-9,45],[-17,27],[-2,47],[-13,-16],[-19,10],[-30,35],[-19,48],[27,8],[5,-30],[22,37],[-5,19],[-4,3],[-7,36],[32,94],[7,60],[-15,98],[14,6],[36,-34],[16,-34],[0,-46],[16,-35],[21,-86],[27,-50]],[[28708,66524],[46,-65],[39,-24],[42,-82],[18,-29],[4,-26],[-7,-120],[-10,-73],[2,-63],[-10,18],[-10,42],[-17,24],[-5,12],[29,3],[3,66],[14,51],[-2,54],[-34,59],[-24,53],[-36,16],[-34,52],[-20,7],[-24,-10],[9,31],[6,41],[4,8],[17,-45]],[[28196,67240],[34,-18],[18,2],[11,12],[49,-5],[41,17],[6,-30],[-1,-16],[-86,-15],[-78,-45],[-43,-31],[-21,-3],[-15,16],[-52,93],[14,-10],[38,-52],[24,10],[22,34],[4,26],[-4,13],[10,41],[29,-39]],[[28548,66764],[-6,-5],[-24,58],[-19,17],[30,41],[13,35],[0,76],[7,42],[-2,36],[7,37],[-9,42],[-26,33],[-50,131],[-79,32],[-41,1],[22,21],[21,-2],[32,-13],[39,-6],[23,-39],[22,-51],[21,-20],[8,-14],[-1,-15],[3,-13],[27,-24],[26,-39],[8,-113],[-36,-54],[-6,-164],[-10,-30]],[[55279,77689],[10,1],[25,16],[29,9],[21,-10],[10,-9],[2,-13],[-6,-45],[-12,-48],[-19,-51],[-20,-47],[-5,-25],[-1,-40],[-3,-31],[3,-18],[6,-16],[23,-12],[29,-32],[26,-41],[32,-46],[10,-18],[0,-18],[-9,-14],[-28,-5],[-29,4],[-11,4],[-10,-5],[-7,-11],[4,-12],[29,-57],[35,-82],[2,-35],[-4,-27],[-8,-19],[-15,3],[-11,15],[-16,-1],[-13,-4],[-17,-30]],[[55331,76919],[-8,2],[-14,-5],[-10,-6],[-14,9],[-15,6],[-6,-9],[-3,-18],[9,-31],[17,-49],[-2,-37],[-14,-4],[-12,31],[-11,5],[-12,-1],[-28,-37],[-21,-30],[-5,-21],[-8,-23],[-2,-17],[1,-56],[-38,-9],[-8,-8],[-4,-17],[3,-72],[3,-38],[21,-60],[1,-18],[-3,-13],[-15,-23],[-7,-9],[-5,-2]],[[55121,76359],[-25,15],[-12,7],[-50,53],[-22,29],[-35,38],[-22,22],[-11,33],[-17,7],[-20,-10]],[[54907,76553],[-23,24]],[[54884,76577],[16,12],[4,12],[-2,15],[-7,21],[-62,90],[-30,61],[-5,22],[0,59],[-7,14],[-46,27],[-51,76],[-52,75],[-7,21],[-27,56],[-33,52],[-26,33],[-22,37],[-24,52],[-12,79],[-11,70],[-7,27],[-15,10],[-47,83],[-40,48],[0,53],[7,87],[7,98],[10,14],[18,8],[21,-3],[18,-13],[36,-67],[20,-26],[17,-11],[20,29],[25,60],[21,31],[73,-11],[35,46],[58,-61],[23,-9],[14,8],[18,-3],[40,-18],[9,-7],[12,1],[30,23],[10,-3],[34,-46],[18,0],[20,20],[13,17],[40,-13],[22,8],[19,1],[20,-8],[18,-11],[18,-9],[49,-5],[23,-29],[9,-29],[0,-17],[2,-19],[14,-18],[29,-10],[18,2]],[[32546,62140],[-4,-1],[-3,5],[-3,9],[-2,8],[1,5],[2,-2],[18,-5],[-2,-7],[-3,-7],[-4,-5]],[[57818,84183],[38,-50],[9,-2],[21,20],[4,1],[44,2],[20,-18],[15,-34],[14,-27],[15,-7],[42,34],[24,11],[15,0],[55,-31],[25,-17],[6,-15],[1,-18],[-7,-27],[-6,-29],[17,-34],[19,-23],[41,38],[15,11],[17,0],[22,15],[16,21],[15,7],[30,-5],[53,5],[61,-33],[6,-11],[31,-39],[11,-20],[10,-6],[16,-19],[22,-12],[16,4],[7,-7],[7,-15],[0,-26],[-2,-73],[-11,-22],[-11,-17],[-3,-14],[1,-16],[17,-32],[23,-49],[5,-29],[0,-21],[-30,-64],[-11,-14],[-7,-32],[-4,-31],[3,-13],[51,-51],[38,-27],[9,-13],[1,-9],[-21,-54],[-2,-14],[31,-23],[17,-35],[15,-57],[29,-56],[62,-48],[46,-32],[9,-15],[3,-17],[-3,-38],[-12,-46],[-8,-26],[19,-10],[47,3],[58,-9],[69,-51],[1,-23],[-8,-21],[5,-22],[8,-18],[60,-57],[6,-17],[1,-28],[-2,-20],[-17,-4],[-18,-10],[-30,-24],[-12,-34],[-49,-48],[-30,-21],[-24,-1],[-57,10],[-21,23],[-8,22],[-22,9],[-29,1],[-40,-4],[-9,-6],[-6,-26],[-17,-45],[-13,-26],[11,-15],[16,-33],[25,-41],[25,-37],[8,-22],[0,-16],[-12,-19],[2,-38],[25,-50],[-9,-8],[-2,-61],[0,-66],[7,-15],[13,-13],[11,-24],[19,-55],[2,-14]],[[58823,81855],[-53,4],[-63,-2],[-36,-32],[-14,8],[-24,8],[-28,-18],[-37,-54],[-25,-33],[-25,-47],[-8,-25],[-15,-47],[-14,-53],[8,-37],[11,-35],[3,-37],[5,-30],[-15,-21],[-9,-31],[-26,5],[-33,30],[-6,43],[-25,29],[-17,16],[-27,2],[-43,-14],[-56,-10],[-42,-3],[-24,-15],[-34,-15],[-13,17],[-19,49],[-16,48],[-10,21],[-10,6],[-11,-1],[-13,-16],[-10,-15],[-14,-6],[-22,-12],[-15,-18],[-18,-44],[-11,3],[-12,10],[-13,50],[-19,11],[-30,1],[-37,11],[-30,15],[-11,-4],[-18,-21],[-19,-3],[-42,19],[-8,-9],[-11,-28],[-14,-27],[-11,-2],[-7,7],[4,47],[-25,17],[-41,3],[-29,-7],[-14,2],[-8,9],[-35,80],[-19,5],[-34,-4],[-50,9],[-57,18],[-31,7],[-17,18],[-35,6],[-95,34],[-39,6],[-57,0],[-87,8],[-56,-5],[-25,-11],[-30,-7],[-51,-6],[-20,1],[-32,-4],[-37,-9],[-11,-17],[-12,-36],[-43,-64],[-41,-42],[-7,-4],[-25,23],[-20,7],[-23,3],[-17,-7],[-11,-11],[2,-49],[-3,-4]],[[56556,81519],[-18,58],[2,53],[10,30],[12,27],[-5,40],[12,54],[1,39],[-6,17],[-10,19],[-26,21],[-12,17],[-37,23],[-36,27],[-6,18],[2,11],[6,18],[28,52],[29,51],[20,20],[101,65],[16,23],[4,38],[0,28],[-2,50],[-6,70],[-8,49],[-19,92],[-53,189],[-32,196]],[[56523,82914],[21,-12],[48,-4],[39,14],[20,1],[17,-4],[27,8],[24,3],[13,-18],[22,-15],[45,22],[40,28],[40,-3],[6,14],[10,69],[13,15],[49,-7],[18,13],[19,34],[29,21],[24,0],[25,24],[12,-16],[6,-29],[-8,-22],[4,-9],[17,-12],[30,0],[19,10],[4,13],[0,24],[-4,22],[-13,19],[-24,10],[-16,1],[-3,12],[6,26],[14,48],[18,43],[11,17],[2,15],[-2,26],[0,47],[16,67],[22,49],[29,16],[35,9],[23,23],[12,28],[4,23],[5,19],[12,9],[86,-5],[13,42],[7,12],[17,13],[11,15],[-4,12],[-22,7],[-52,7],[-10,14],[3,17],[14,44],[13,56],[7,44],[1,26]],[[57387,83909],[7,7],[42,8],[14,9],[36,60],[28,10],[71,-15],[33,1],[9,-2],[33,-2],[3,6],[15,59],[14,17],[56,78],[38,32],[24,8],[8,-2]],[[25596,61879],[-21,-81],[-2,23],[9,60],[12,21],[8,22],[2,26],[10,-13],[-3,-26],[-15,-32]],[[25569,62168],[-13,-11],[11,34],[1,21],[16,89],[10,-1],[3,-8],[-28,-124]],[[25307,60996],[-12,0],[-49,6],[-33,-7],[-1,3],[2,143],[5,222],[3,162],[3,159],[2,119],[3,162],[3,140]],[[25233,62105],[-1,50],[8,39],[24,17],[29,-34],[13,-15],[11,8],[14,21],[18,62],[43,126],[18,89],[17,18],[25,3],[21,-6]],[[25473,62483],[-15,-65],[15,-9],[14,7],[32,-3],[13,-71],[-4,-61],[-30,-158],[-4,-55],[-14,-81],[19,-54],[-18,-72],[-6,-46],[-1,-69],[9,-132],[-15,-190],[-25,-83],[-16,-32],[-28,-83],[-37,-24],[-51,-133],[-9,-35],[5,-38]],[[32019,70445],[-25,-20],[-7,2],[-5,7],[26,19],[21,46],[7,-3],[-17,-51]],[[33844,40227],[6,96],[-6,82],[-5,22],[-82,99],[-74,90],[-97,117],[-125,-3],[-130,-3],[-123,-53],[-122,-52],[-57,-24],[-116,-49],[-68,-23],[-18,-94],[-26,-142],[-27,-83],[-30,-87],[-43,-122],[0,-149],[0,-141],[-31,-199],[-25,-169],[-25,-164],[-17,-112],[-6,-29]],[[31334,38697],[-46,-20],[-61,-21],[-35,2],[-24,5],[-7,13],[-17,20],[-2,22],[-1,32],[5,57],[-2,79],[-19,92],[1,29],[-2,45],[-10,85],[-25,43],[-6,70],[-3,62],[-21,78],[-3,98],[0,85],[-32,98],[-34,105],[-27,14],[-7,12],[-3,30],[-1,47],[2,28],[21,46],[1,7],[-4,9],[-54,69],[-14,20],[-4,24],[0,22],[13,23],[7,16],[-13,49],[1,44],[-8,19],[1,15],[8,12],[35,14],[11,45],[0,37],[-5,27],[-33,66],[0,12],[34,92],[25,61],[6,13],[-2,13],[-6,16],[-15,23],[-21,26],[-16,31],[-22,46],[-28,40],[-20,39],[-10,33],[0,34],[-3,56],[-13,90],[-4,61],[-6,68],[-5,44],[-4,42],[-9,46],[-5,34],[7,24],[8,18],[-1,12],[-52,49],[-9,13],[-12,98],[-38,88],[-5,66]],[[30691,41759],[0,26],[-3,41],[-12,32],[-17,22],[-5,27],[5,28],[34,55],[18,9],[5,28],[11,22],[32,81],[19,53],[18,32],[22,23],[9,18],[-5,57],[2,39],[7,24],[22,26],[20,20],[4,9],[-2,15],[-18,29],[-37,26],[-24,-3],[-15,23],[-8,19],[-49,238],[-8,55],[1,21],[32,118],[13,38],[23,56],[-4,22],[-40,92],[-12,43],[0,44],[4,53],[23,28],[7,44],[5,42],[10,14],[10,24],[12,35],[18,31],[11,23],[3,64],[9,18],[25,21],[3,16],[-6,44],[-13,46],[-10,22],[-13,113],[-15,56],[6,22],[10,29],[10,56],[3,66],[-3,242],[1,47],[12,34],[19,38],[15,15],[15,24],[-1,46],[10,27],[11,34],[-37,133],[-32,118],[-31,110],[-35,127],[-24,84],[-29,105],[-25,91],[-35,125]],[[30672,45534],[33,2],[65,-4],[63,-23],[42,-9],[18,-19],[4,-31],[12,-14],[13,5],[16,2],[34,32],[28,20],[24,26],[13,24],[30,85],[24,47],[22,17],[44,6],[13,-13],[18,2],[15,48],[24,54],[46,67],[23,18],[15,23],[25,4],[22,24],[106,169],[43,44],[26,8],[22,10],[38,24],[94,24],[61,10],[19,-24],[22,7],[18,38],[16,12],[11,-1],[16,-45],[8,-47],[-5,-37],[1,-52],[7,-69],[-4,-61],[-23,-81],[-11,-32],[-3,-34],[2,-45],[10,-74],[19,-103],[3,-76],[-13,-49],[-6,-43],[1,-36],[5,-25],[8,-14],[5,-29],[1,-43],[11,-41],[21,-40],[8,-38],[-4,-37],[2,-23],[6,-9],[5,8],[8,10],[7,-4],[15,-51],[2,-10],[8,-42],[2,-32],[22,-17],[23,-14],[13,-17],[26,-50],[22,-33],[27,-27],[9,-44],[17,-65],[46,-25],[54,-13],[34,-14],[42,35],[27,-5],[29,-24],[12,-16],[21,-33],[33,-44],[27,-16],[19,24],[18,9],[14,-10],[7,-47],[7,-32],[16,-24],[34,-61],[20,-25],[22,1],[44,-40],[48,-39],[25,-7],[25,6],[16,-15],[6,-47],[42,-95],[19,-37],[24,-32],[59,1],[18,-10],[27,9],[79,16],[15,5],[45,-41],[53,-60],[36,-46],[24,-26],[13,-42],[11,-43],[5,-47],[-7,-46],[-10,-19],[-3,-30],[4,-45],[18,-41],[6,-49],[10,-88],[11,-27],[7,-271],[-36,-2],[-50,-4],[15,-25],[41,-101],[39,-93],[6,-149],[4,-94],[5,-133],[3,-79],[96,-7],[110,-8],[133,-10],[116,-9],[12,1],[20,11],[13,14],[9,-1],[1,-32],[-3,-40],[0,-47],[-33,-91],[-2,-30],[5,-121],[12,-97],[6,-89],[13,-28],[39,-46],[60,-86],[24,-12],[20,12],[12,-35],[3,-57],[33,-159],[20,-100],[10,-36],[16,-18],[-3,-13],[-13,-5],[-6,-19],[-18,-113],[-24,-148],[-16,-105],[14,-1],[1,-29],[3,-44],[-18,-6],[-5,-16],[-21,-85],[-27,-112],[-27,-116],[-17,-69],[28,-51],[47,-84],[-7,-24],[-20,-12],[-17,-8],[-13,-32],[-7,-23],[-19,-8]],[[36531,35848],[-19,-26],[4,137],[10,45],[11,34],[14,21],[10,-29],[-8,-67],[-25,-81],[3,-34]],[[36504,36634],[-5,-7],[-18,72],[35,69],[12,-28],[-9,-55],[-10,-38],[-5,-13]],[[37427,38082],[0,-30],[-11,15],[-31,-12],[-11,23],[42,97],[8,-14],[6,-18],[5,-25],[-5,-16],[-3,-20]],[[37741,38512],[9,-16],[-16,2],[-18,-14],[-28,-13],[-11,24],[24,32],[9,24],[6,-5],[8,-17],[17,-17]],[[39193,44081],[-9,-33],[-11,5],[-5,22],[-8,22],[4,18],[8,10],[20,-2],[1,-42]],[[39237,44298],[-10,-12],[-2,36],[29,47],[4,54],[15,-25],[4,-28],[0,-12],[-40,-60]],[[37639,50149],[-28,-56],[9,65],[-4,45],[3,35],[19,34],[6,5],[-2,-41],[1,-13],[-4,-74]],[[37532,51083],[-18,-27],[-5,-15],[-15,11],[3,16],[4,-2],[5,47],[25,-6],[1,-24]],[[35602,51017],[-30,-11],[38,144],[34,67],[1,133],[36,118],[34,49],[47,14],[26,-72],[-32,-205],[-9,-1],[-43,-108],[-48,-75],[-54,-53]],[[36214,51711],[26,-3],[37,11],[24,27],[28,5],[27,-3],[92,-30],[55,-9],[20,-9],[20,-14],[14,-15],[4,-32],[-14,-51],[-10,-53],[-9,-75],[-7,-16],[-12,4],[7,-67],[-2,-27],[-6,-26],[-15,-54],[-22,-69],[-7,-14],[-17,-24],[-14,-31],[3,-29],[7,-29],[-8,-36],[-27,-53],[-16,-13],[-14,-6],[-14,6],[-23,53],[-3,-42],[-6,-42],[-8,-24],[-31,3],[-17,23],[-28,25],[-5,-69],[-18,-47],[-17,-15],[-27,-10],[-16,-20],[-30,16],[-27,31],[-16,3],[-12,-25],[-63,-5],[-29,-26],[-18,8],[-26,52],[-5,34],[-15,70],[-14,84],[-10,75],[8,66],[17,-3],[20,-9],[4,4],[1,21],[-4,18],[-32,-3],[-21,39],[-3,60],[4,124],[2,26],[15,36],[4,31],[-3,34],[6,61],[13,52],[52,67],[59,24],[172,-65]],[[35929,51767],[-76,-113],[-25,37],[-6,22],[5,21],[-1,9],[8,39],[43,32],[21,5],[27,-10],[5,-27],[-1,-15]],[[36265,51778],[-73,-18],[-34,29],[8,24],[25,38],[30,28],[28,12],[28,-15],[8,-33],[-2,-32],[-18,-33]],[[36183,51997],[12,-30],[-40,-120],[-21,-18],[-24,-3],[-31,36],[-48,-3],[-15,9],[-1,52],[20,56],[40,-3],[69,45],[39,-21]],[[35992,51923],[-5,-85],[-50,36],[4,87],[24,24],[20,46],[7,56],[1,77],[8,14],[6,5],[6,-5],[3,-116],[2,-70],[-26,-69]],[[36068,52069],[-30,-19],[-5,18],[0,72],[8,40],[38,11],[4,12],[11,7],[7,-25],[-1,-41],[-32,-75]],[[36028,52959],[-28,-26],[-16,10],[-15,69],[5,57],[20,19],[16,-4],[6,-8],[14,-93],[-2,-24]],[[34310,52961],[8,-5],[19,-5],[44,-22],[58,-25],[15,8],[10,18],[2,51],[2,36],[-13,32],[-16,37],[-15,45],[-18,13],[2,23],[12,24],[12,14],[6,16],[8,60],[5,11],[5,2],[6,-2],[12,-15],[45,-48],[20,7],[76,13],[11,27],[16,7],[28,27],[11,2],[9,-7],[12,6],[18,25],[8,3],[3,-28],[11,-30],[14,-27],[7,-6],[24,9],[12,-8],[5,-25],[2,-22],[10,-19],[12,0]],[[34828,53183],[7,-8],[12,-11],[10,-28],[22,-22],[39,-30],[18,-1],[17,-9],[11,-10],[11,17],[40,48],[19,26],[13,20],[10,19],[7,5],[5,-11],[4,-16],[15,-9],[33,-17],[15,-6],[21,16],[19,25],[9,9],[13,-25],[9,-37],[7,-15],[13,3],[28,-5],[20,-12],[12,1],[17,17],[9,31],[25,29],[23,27],[13,36],[19,59],[7,26],[1,43],[28,124],[10,23],[6,40],[11,45],[0,39],[8,36],[16,32],[11,20],[19,54],[13,50],[32,112],[3,32],[13,19],[4,24],[14,30],[14,24],[6,34],[11,37],[23,27],[9,12]],[[35652,54182],[26,99],[3,45],[24,2],[37,-52],[30,-75],[40,-243],[6,-225],[17,-118],[46,-245],[3,-45],[7,-55],[15,-58],[16,-96],[1,-18],[-11,-26],[16,-2],[14,-15],[9,-61],[11,-41],[21,-56],[43,-19],[33,-7],[37,-31],[27,-41],[21,-138],[-7,-87],[2,-61],[-11,-24],[-30,-40],[-7,-22],[-62,-103],[-14,-49],[-33,-65],[-33,-125],[-48,-114],[-17,-29],[-26,-7],[-16,-17],[-37,-93],[-51,-31],[-4,-54],[-29,-124],[-26,-67],[-16,-23],[-41,-122],[-5,-54],[0,-94],[-28,-57],[-28,-37],[-4,-80],[-12,-27],[-11,-18],[-58,21],[-91,-88],[-30,-21],[98,-5],[32,-46],[69,31],[83,110],[32,24],[65,75],[27,50],[48,60],[10,26],[27,29],[15,-36],[1,-23],[-22,-44],[6,-28],[14,-36],[5,-49],[2,-37],[9,-66],[30,-88],[1,-30],[-4,-38],[14,-32],[15,-19],[51,-95],[39,53],[25,15],[15,23],[33,14],[27,-22],[51,-32],[37,34],[75,78],[-23,-138],[-17,-127],[-13,-51],[-13,-138],[-13,-37],[-10,-42],[17,15],[14,20],[18,53],[14,92],[55,247],[16,22],[45,28],[78,197],[31,-1],[19,-45],[19,-27],[4,54],[27,22],[-28,27],[-5,24],[-2,40],[19,55],[-12,48],[40,61],[-3,45],[14,38],[18,39],[21,19],[3,33],[13,14],[10,4],[20,-37],[22,44],[21,17],[9,-7],[12,-20],[12,-8],[10,4],[26,28],[24,-46],[15,-10],[-4,26],[-8,23],[6,20],[11,12],[36,-11],[19,-20],[21,-38],[28,-3],[23,4],[14,-21],[23,0],[11,-32],[35,-46],[7,-31],[28,-16],[27,-19],[28,-5],[28,5],[1,-40],[21,-11],[26,9],[21,-48],[53,-37],[38,-56],[24,10],[27,-15],[30,-121],[6,-87],[13,12],[12,39],[16,71],[29,23],[14,-27],[30,-44],[25,-47],[11,-31],[19,-5],[-16,-38],[16,4],[19,27],[17,-55],[13,-61],[2,-61],[-12,-35],[-10,-22],[-12,-44],[-13,-7],[-14,-14],[16,-32],[10,-30],[24,82],[16,23],[23,13],[13,-59],[2,-55],[-38,-23],[0,-44],[-12,-24],[-7,-29],[-6,-59],[-8,-50],[-23,-218],[0,-36],[27,38],[52,112],[16,118],[20,117],[22,37],[14,0],[20,-13],[1,-38],[-3,-22],[-22,-58],[-9,-32],[9,-32],[50,97],[22,33],[19,-6],[38,44],[76,9],[5,51],[16,22],[41,-6],[82,-45],[29,-38],[43,-34],[23,-41],[96,-76],[69,-8],[34,34],[43,-35],[23,-41],[44,-21],[45,-12],[35,29],[88,10],[112,42],[66,-10],[75,-28],[54,-71],[45,-41],[27,-40],[44,-41],[94,-111],[33,-65],[58,-87],[59,-37],[32,-91],[25,-42],[61,-154],[71,-108],[47,-109],[90,-69],[35,-115],[61,-14],[26,-17],[32,-49],[44,-27],[56,8],[63,-6],[50,23],[120,-43],[19,-21],[24,-49],[44,-182],[26,-202],[13,-154],[30,-120],[16,-226],[14,-71],[1,-54],[12,-13],[7,-152],[-3,-61],[-11,-80],[-1,-35],[2,-23],[-5,-33],[-2,-32],[12,-72],[0,-57],[-15,-70],[-21,-181],[-53,-302],[-51,-173],[-71,-178],[-47,-93],[-18,-10],[-17,19],[12,-50],[-11,-43],[-47,-131],[-46,-86],[-49,-150],[-4,-3],[-62,-58],[-37,-47],[-47,-85],[-43,-135],[-9,-18],[-16,10],[0,-69],[-37,-108],[-11,-16],[0,30],[7,24],[3,25],[-1,29],[-10,-21],[-22,-82],[7,-59],[-16,-90],[-60,-257],[-75,-217],[-17,-66],[-62,-146],[-45,-70],[-12,-1],[-15,6],[-7,112],[-36,68],[-10,12],[-15,-72],[-12,-20],[-18,-4],[19,-31],[6,-36],[-19,-73],[-1,-66],[-34,-72],[-20,-53],[-10,-67],[-7,-62],[16,17],[7,-13],[5,-19],[-3,-29],[-11,-54],[2,-134],[-4,-30],[11,-33],[12,56],[6,-16],[-32,-359],[13,-162],[4,-183],[15,-179],[16,-160],[1,-13],[-22,-185],[-28,-184],[-17,-149],[-11,-161],[-11,-78],[-4,-79],[13,-188],[4,-35],[-34,-84],[-37,-41],[-21,-40],[-45,-151],[-25,-224],[-1,-118],[12,-249],[-9,-102],[-14,-67],[-17,-45],[-44,-53],[-39,-131],[-17,-137],[-27,-50],[-5,-76],[-21,-83],[-56,-124],[-36,-36],[-18,-34],[-11,-72],[-35,-119],[-25,-154],[6,-53],[1,-8],[9,-178],[-3,-46],[-34,-49],[-128,-92],[-34,-38],[-77,-156],[-4,-37],[3,-52],[12,-30],[-13,-33],[-15,-59],[-22,4],[-127,0],[-69,-19],[-36,4],[-16,14],[-18,23],[-6,30],[10,46],[-6,27],[-19,-1],[-20,-13],[-4,-27],[1,-20],[8,-28],[4,-35],[-8,-30],[-40,-4],[-46,-28],[-56,-12],[-45,-20],[-21,26],[21,12],[29,-6],[32,21],[-7,25],[-45,32],[-51,-19],[-28,-39],[-61,4],[-75,-29],[-12,-30],[2,-57],[15,-13],[14,-26],[-14,-24],[-13,-11],[-79,-27],[-73,-112],[-31,-14],[-27,-49],[-3,-42],[-8,-26],[-18,-1],[-38,23],[-50,1],[-35,-18],[-183,-182],[-66,-72],[-75,-148],[-126,-166],[-67,-99],[-12,-26],[-11,-1],[-21,-21],[9,-17],[14,-2],[-6,-57],[-26,-40],[-50,-103],[-11,7],[16,54],[-25,2],[-36,20],[-15,-22],[9,-54],[-14,-22],[-24,-3],[-23,6],[-24,39],[11,-70],[51,-18],[22,-16],[8,-27],[-40,-126],[-34,-17],[-3,-17],[18,0],[10,-35],[-12,-141],[-16,-26],[-10,-1],[-10,-24],[14,-46],[13,-33],[-2,-65],[-5,-54],[0,-52],[17,-101],[6,-104],[7,-37],[4,-42],[-11,-39],[6,-63],[-19,-107],[10,-154],[-4,-144],[-8,-76],[-12,-59],[-29,-76],[-1,-77],[-62,-71],[-69,-99],[-63,-118],[-69,-166],[-80,-252],[-73,-360],[-89,-272],[-36,-98],[-48,-109],[-64,-128],[-86,-128],[-94,-114],[-34,-52],[-33,-72],[-8,30],[7,49],[-4,37],[-1,48],[19,9],[28,-30],[14,20],[11,21],[34,12],[65,125],[48,47],[28,79],[4,42],[-1,85],[16,22],[35,-8],[7,24],[-3,27],[6,59],[48,52],[22,63],[-7,160],[8,7],[20,-25],[9,11],[10,70],[-5,36],[-23,10],[-79,-79],[-26,3],[-4,62],[-39,29],[-15,52],[-4,35],[-14,14],[1,-61],[4,-59],[34,-69],[-8,-28],[-17,-32],[-11,-71],[1,-92],[-9,28],[-12,16],[-5,-99],[-23,-38],[-7,-38],[6,-43],[-12,-30],[-58,-80],[-58,-55],[-13,-26],[-6,-61],[-9,-63],[-26,-55],[-21,-110],[1,-47],[7,-69],[11,-46],[-18,-31],[-23,-59],[-19,-67],[-46,-251],[-40,-151],[-31,-74],[-44,-78],[-125,-196]],[[35174,32406],[-7,3],[-18,16],[-16,18],[-3,13],[-2,19],[2,70],[0,190],[5,36],[8,23],[25,33],[23,48],[27,61],[25,49],[-9,33],[-21,31],[-36,26],[-36,45],[-31,57],[-14,60],[-13,65],[-13,51],[-4,24],[-12,9],[-20,27],[-12,24],[-18,14],[-32,15],[-34,27],[-41,63],[-30,71],[-15,46],[-16,33],[-85,54],[-39,65],[-15,-20],[-23,19],[-23,32],[-7,23],[-9,25],[-9,28],[-6,27],[-23,47],[-30,51],[-13,14],[-6,-4],[-7,-19],[-4,-19],[-11,-13],[-14,-23],[-15,-29],[-18,-19],[-22,-6],[-14,1],[-3,11],[-1,39],[5,89],[-12,35],[-17,36],[-20,50],[-64,104],[-87,150],[-31,46],[-29,3],[-27,-5],[-24,-20],[-19,-69],[-7,-11],[-47,2],[-47,11],[-16,42]],[[34829,37110],[1,82],[38,123],[10,57],[-4,32],[11,114],[28,196],[9,127],[-10,61],[-1,42],[15,36],[6,11],[-35,43],[-20,40],[-24,29],[-27,23],[-13,-10],[-14,-13],[-26,-21],[-31,-36],[-15,-14],[-28,-13],[-31,-11],[-26,7],[-22,8],[-14,23],[-7,49],[0,42],[-5,61],[-16,34],[-6,27],[-1,33],[2,36],[5,26],[-3,33],[-7,23],[2,40],[-4,55],[-11,34],[-6,40],[0,40],[-8,40],[-1,44],[8,40],[2,40],[-8,29],[-16,17],[-12,45],[-1,60],[-13,32],[-14,27],[-16,0],[-24,15],[-21,-2],[-34,2],[-15,9],[-9,21],[-21,29],[-12,49],[-14,10],[-21,-15],[-8,-19],[-8,-27],[-15,-30],[-19,1],[-20,-17],[-20,-2],[-25,-3],[-26,15],[-31,17],[-27,11],[-26,-11],[-17,10],[-23,5],[-26,4],[-20,31],[-22,17],[-12,-6],[-16,-19],[-16,4],[-21,15],[-8,36],[1,23],[5,23],[8,32],[-4,35],[1,30],[4,27],[4,30],[-3,29],[-1,30],[-2,29],[-2,30],[11,44],[9,36],[-6,31],[2,21],[7,34],[10,42],[-1,78],[-9,46],[-9,12],[-2,14],[5,18],[-5,19],[-2,19],[5,16],[-7,33],[-13,10],[-5,9],[-4,36],[-4,42],[2,33],[-7,28],[-9,17],[-9,31],[-9,23],[-4,32],[-6,42]],[[30672,45534],[-26,-1],[-46,12],[-34,2],[-29,-31],[-43,-37],[-19,-10],[-15,-1],[-14,4],[-16,20],[-23,45],[-17,-17],[-13,-20],[0,98],[0,147],[1,129],[0,104],[0,121],[0,85],[12,32],[8,36],[-9,49],[2,44],[6,31],[8,30],[-19,-15],[-8,-8],[-10,-23],[-23,-31],[-16,-31],[-19,-25],[-24,-56],[-20,-30],[-21,-20],[-34,-65],[-28,-13],[-74,-10],[-78,0],[-71,0],[-11,1],[1,54],[2,38],[-25,40],[-1,50],[-7,34],[-8,42],[-17,26],[-23,11],[-39,23],[-58,24],[-56,2],[-54,-3],[33,84],[33,84],[-1,73],[-27,64],[-14,39],[-22,55],[-28,38],[-15,50],[1,30],[-2,20],[-11,12],[-10,18],[-15,20],[-17,27],[0,27],[-6,28],[-11,34],[0,27],[-9,41],[-11,30],[-10,21],[-16,28],[1,23],[12,12],[4,27],[-1,27],[-13,16],[-15,9],[-21,48],[-14,25],[-10,15],[-5,17],[5,12],[7,17],[1,26],[-3,25],[0,22],[10,7],[10,-4],[11,14],[13,5],[16,3],[8,15],[-1,27],[-10,52],[-9,22],[-4,31],[8,62],[5,39],[18,41],[54,89],[49,60],[23,6],[18,23],[11,34],[3,37],[-3,33],[-9,48],[-10,60],[-9,34],[8,40],[13,55],[26,83],[25,89],[2,26],[3,54],[12,111],[6,60],[-3,24],[5,20],[16,16],[37,16],[25,33],[38,62],[33,67],[26,21],[49,61],[28,39],[10,13],[28,28],[49,10],[41,10],[23,18],[33,8],[23,21],[25,0],[48,22],[16,31],[14,38],[18,33],[22,8],[24,-6],[29,1],[35,10],[17,-25],[7,-31],[22,-31],[15,2],[15,6],[21,-26],[14,3],[9,15],[2,38]],[[30565,49403],[5,20],[10,117],[17,194],[15,176],[18,195],[17,201],[18,204],[15,167],[12,143],[8,88],[12,116],[5,101],[5,29],[-3,25],[-11,35],[0,15],[2,21],[-2,17],[-11,19],[-8,12],[-7,16],[-3,23],[-6,23],[-2,24],[-8,19],[-2,24],[5,23],[3,24],[-3,23],[-3,27],[-6,25],[-9,16],[-23,17],[-22,41],[-26,37],[-34,70],[-7,33],[0,90],[1,99],[2,148],[1,76],[19,4],[17,2],[18,5],[15,6],[14,10],[10,14],[13,9],[10,-3],[9,12],[11,11],[11,9],[15,8],[14,-18],[8,-18],[9,-9],[9,2],[6,-2],[6,-14],[8,-1],[12,2],[11,4],[5,4],[0,9],[-2,16],[-4,15],[3,24],[0,28],[1,35],[-9,20],[-8,37],[-10,31],[-15,20],[-13,8],[-12,-13],[-11,-2],[-8,11],[-13,1],[-14,4],[-14,4],[-27,-8],[-10,10],[-13,1],[-15,-11],[1,144],[0,135],[0,95],[14,-2],[17,17],[24,3],[20,18],[10,1],[20,-9],[21,-18],[21,-3],[55,0],[58,0],[65,0],[66,0],[56,0],[18,-1],[-10,32],[-12,41],[4,32],[6,32],[7,17],[18,-18],[14,-55],[13,-41],[12,-21],[15,-2],[16,7],[17,17],[29,76],[28,65],[15,22],[16,20],[11,7],[16,-2],[14,-18],[9,-31],[31,-108],[24,-81],[9,-51],[0,-124],[-1,-109],[3,-15],[4,-4],[53,26]],[[31423,52547],[71,-133],[53,-98],[23,-31],[13,-9],[30,6],[37,13],[17,14],[20,31],[32,43],[26,23],[10,3],[10,-7],[22,-26],[12,-48],[-11,-55],[2,-34],[23,2],[18,57],[13,45],[27,36],[26,52],[18,50],[22,29],[32,35],[26,22],[24,-2],[18,23],[23,44],[16,35],[11,12],[22,-3],[28,5],[28,43],[25,51],[13,87],[9,78],[8,15],[9,13],[10,8],[26,5],[45,41],[31,42],[30,9],[9,11],[10,39],[6,68],[-4,41],[-55,13],[-35,0],[-59,10],[-28,17],[-6,12],[-1,13],[6,30],[5,55],[-8,74],[-29,118],[-21,115],[-3,80],[1,85],[1,55],[-15,43],[-81,137],[-28,65],[-9,44],[-32,83],[8,25],[18,-1],[16,-22],[14,-45],[11,-11],[14,0],[75,1],[17,-8],[11,-16],[9,-19],[14,-53],[14,-26],[30,1],[46,1],[26,5],[16,-15],[19,-12],[41,28],[12,0],[12,-12],[44,-96],[25,-40],[21,-53],[31,0],[26,45],[7,154],[8,45],[13,13],[15,1],[18,24],[20,32],[17,10],[72,-34],[20,17],[72,40],[74,53],[21,65],[31,18],[24,49],[20,-6],[30,-2],[18,9],[9,9],[11,23],[16,64],[21,25],[25,26],[17,30],[15,38],[6,33],[0,26],[-8,50],[-11,47],[-11,16],[-8,6]],[[33127,54839],[25,11],[21,-16],[32,-3],[14,13],[21,-6],[26,33],[17,-11],[11,0],[10,-25],[7,-29],[25,-35],[-3,-54],[-4,-47],[-3,-55],[-2,-42],[-10,-42],[-16,-40],[-4,-16],[-2,-21],[10,-13],[18,-4],[23,-1],[16,-13],[20,-2],[25,-34],[11,-21],[1,-16],[-7,-38],[-3,-35],[6,-22],[7,-16],[19,-79],[10,-27],[8,-9],[2,-16],[-7,-28],[-8,-37],[-18,-39],[-3,-30],[-14,-19],[-35,-46],[6,-72],[2,-37],[-1,-28],[-12,-38],[-20,-113],[-7,-56],[-7,-129],[1,-44],[9,-58],[20,-130],[11,-21],[26,-30],[3,-88],[-2,-92],[-1,-36],[4,-15],[12,-7],[8,-11],[1,-27],[0,-28],[19,-17],[17,-10],[16,-39],[28,-61],[11,-11],[6,-25],[24,-51],[36,-18],[37,-23],[14,-32],[15,-26],[11,-1],[10,4],[16,22],[12,20],[22,-2],[26,4],[5,16],[2,20],[-5,52],[9,16],[22,9],[4,28],[5,15],[6,18],[7,3],[9,-11],[15,-6],[15,-9],[9,-18],[14,-1],[16,3],[6,12],[5,19],[3,43],[10,1],[21,10],[21,19],[29,3],[27,-1],[14,13],[12,27],[25,78],[12,18],[14,14],[12,-3],[24,13],[19,19],[8,-5],[15,-40],[8,-9],[11,-2],[37,-21],[19,7],[21,12],[21,5],[15,-9],[10,12],[12,8]],[[33474,59378],[-8,-11],[-25,23],[-9,28],[-1,88],[15,8],[29,-70],[17,-25],[-18,-41]],[[81951,54665],[32,0]],[[81983,54665],[7,-19],[17,-67],[11,-67],[3,-102],[13,-44],[-2,-9],[-8,-7],[-12,-3],[-21,10],[-18,15],[-15,110],[-7,63],[1,75],[-1,45]],[[81951,54665],[-23,-25],[-22,-31],[-22,-27],[-11,-22],[4,-29],[5,-66],[3,-51],[8,-20],[6,-21],[-2,-22],[-14,-43],[8,-8],[-10,-56],[-14,-42],[-19,-34],[-13,-7],[-10,14],[-17,37],[-18,52],[-8,30],[-26,4],[-10,24],[0,29],[-8,34],[-10,37],[-15,28],[-21,22],[-8,16]],[[81684,54488],[31,-1],[34,10],[35,30],[33,37],[28,43],[27,47],[27,38],[43,44],[15,-4],[0,-31],[-6,-36]],[[75453,67833],[-2,-13],[-8,-34],[-5,-38],[4,-31],[18,-37],[23,-29],[30,-3],[28,12],[11,-5],[15,-49],[11,-43],[-15,-44],[-7,-39],[-3,-27],[1,-12],[9,-22],[11,-38],[1,-34],[-6,-23],[-15,-12],[-15,3],[-12,0],[-16,-4],[-25,-13],[-22,-16],[-43,3],[-17,34],[-8,0],[-39,-44],[-43,7],[-77,-14],[-32,-4],[-33,5],[-17,9],[-31,32],[-29,22],[-28,-20],[-11,-4],[-23,-54],[-50,-17],[-49,-13],[-15,7],[-28,3],[-1,12],[1,13],[-7,9],[-11,10],[-20,4],[-25,14],[-14,12],[-51,-18],[-30,28],[-34,39],[-17,16],[-6,60],[-6,20],[-14,20],[-7,24],[6,24],[34,46],[2,11]],[[74691,67578],[16,85],[22,31],[21,43],[16,68],[31,71],[34,72],[24,58],[16,28],[32,29],[27,17],[18,39],[23,22],[23,10],[34,-5],[33,-14],[35,-20],[4,-16],[-3,-28],[-5,-28],[0,-14],[5,-8],[35,-6],[42,5],[24,-4],[53,-26],[16,-18],[16,-15],[16,3],[20,30],[21,26],[13,4],[9,-9],[17,-24],[35,-23],[31,-17],[10,-17],[-3,-70],[1,-24]],[[57016,41593],[-6,-29],[-4,-41],[5,-31],[11,-42],[16,-36],[13,-22],[14,-53],[15,-67],[19,-53],[56,-119],[7,-43],[7,-42],[36,-82],[5,-27],[-2,-55],[36,-166],[24,-97],[21,-18],[64,-103],[57,-83],[66,-56],[49,-37],[24,-27],[12,-26],[10,-50],[5,-86],[1,-56],[53,2],[43,-5],[15,-11],[6,-16],[-2,-37],[1,-54],[2,-45],[-4,-47],[-4,-55],[-2,-69],[7,-27],[42,-87],[17,-56],[19,-85],[11,-27],[9,-11],[38,-10],[97,-35],[60,-33],[48,-33],[19,-9],[10,-9],[3,-8],[-6,-75],[2,-23],[6,-22],[8,-17],[10,-10],[36,-8],[22,-45],[13,-21]],[[58156,39058],[-65,-11],[-32,-38],[-19,-67],[-30,-49],[-40,-32],[-42,-21],[-45,-12],[-47,-58],[-51,-103],[-26,-66],[-1,-27],[-11,-23],[-22,-19],[-12,-24],[-3,-28],[-11,-13],[-21,1],[-14,-20],[-8,-41],[-18,-25],[-28,-9],[-24,-24],[-20,-37],[-15,-20],[-11,0],[-17,-31],[-27,-73],[-5,-34],[-37,-275],[-21,-32],[-40,-57],[-32,-68],[-14,-40],[-15,-18],[-74,-33],[-28,-18],[-33,-26],[-8,-23],[-8,-85],[-23,-122],[-19,-89],[-12,-79],[-21,-97],[-18,-32],[-21,-30],[-27,-15],[-37,-9],[-33,3],[-26,-2],[-36,-34],[-34,-2],[-53,20],[-44,19],[-19,4],[-38,63],[-25,-1],[-37,5],[-21,15],[-20,32],[-42,64],[-42,51],[-37,31],[-34,14],[-32,-13],[-26,-13],[-10,-7],[-19,-27],[-20,-50],[-17,-79],[-6,-48],[-19,-103],[-25,-123],[-11,-36],[-14,-26],[-22,-23],[-70,-98],[-35,-111],[-22,-32],[-27,-15],[-23,-9],[-12,-18],[-14,-56],[-12,-20],[-14,-7],[-40,6],[-13,6],[-107,-11],[-32,18],[-23,7],[-36,-23],[-16,15],[-12,46],[-6,93],[2,79],[20,60],[16,44],[16,57],[3,25],[-4,23],[-3,47],[-2,48],[-23,105],[-28,140],[-38,155],[-11,43],[-24,68],[-88,128],[-13,17]],[[55550,37570],[0,15],[-1,124],[0,165],[0,165],[0,166],[0,165],[0,165],[0,165],[0,165],[0,165],[0,140],[63,0],[78,0],[94,0],[41,0],[2,22],[0,102],[0,235],[0,235],[0,235],[-1,235],[0,235],[0,235],[0,235],[0,235],[0,116],[71,7],[83,24],[134,39],[124,47],[82,28],[96,33],[33,6],[9,-4],[13,-12],[45,-117],[28,-90],[6,-38],[5,-4],[13,6],[15,15],[45,89],[10,23],[29,43],[35,44],[32,31],[32,27],[15,-7],[17,-22],[15,-14],[73,108],[33,25],[85,19],[12,-3]],[[56349,58133],[20,-72],[9,-25],[81,-169],[16,-41],[40,-123],[25,-83],[28,-119],[3,-65],[-4,-55],[-6,-158],[-7,-45],[-36,-85],[-1,-38],[7,-32],[11,-13],[7,-16],[-4,-73],[12,-29],[27,-19],[67,-13],[35,-11],[28,-15]],[[56707,56834],[13,-7],[7,-26],[-11,-84],[8,-53],[23,-45],[23,-19],[23,-11],[78,-28],[32,-31],[43,-99],[54,-91],[13,-48],[-3,-43],[-16,-53],[3,-22],[24,-53],[29,-54],[51,-60],[90,-95],[41,-63],[14,-48],[23,-52],[32,-48],[21,-36],[-15,-104],[5,-34],[8,-29],[18,-41],[8,-53],[18,-65],[23,-30],[36,-11],[20,-31],[40,-52],[40,-45],[16,-31],[11,-27],[9,-33],[4,-32],[1,-70],[7,-87],[21,-60],[19,-44]],[[57611,54786],[-80,51],[-12,1],[-14,-9],[-42,-63],[-13,-7],[-15,5],[-38,8],[-127,49],[-98,48],[-30,17],[-52,17],[-35,-33],[-32,-111],[-10,-22],[-51,-33],[-24,9],[-59,-30],[-91,46],[-33,-10],[-26,-23],[-65,-50],[-40,-29],[-46,-26],[-44,-40],[-30,-22],[-29,0],[-26,23],[-28,19],[-35,4],[-35,-11],[-31,-45],[-12,-31],[-26,-85],[-31,-137],[-12,-27],[-4,-3],[-7,-11],[-143,68],[-61,16],[-42,-21],[-52,38],[-23,7],[-10,-12],[-29,17],[-48,47],[-45,19],[-40,-6],[-25,15],[-20,46],[-26,83],[-46,83],[-62,66],[-39,50],[-16,33],[-33,19],[-52,3],[-49,-32],[-71,-104],[-66,-212],[-36,-81],[-30,-21],[-7,-51],[15,-81],[3,-94],[-10,-158],[4,-116]],[[55169,53846],[-16,19],[-15,54],[-7,11],[-43,-25],[-23,-22],[-12,-21],[-9,-3],[-14,29],[-10,5],[-18,-5],[-17,1],[-11,3],[-8,-2],[-20,17],[-75,45],[-13,15],[-15,-2],[-38,-39],[-21,-11],[-62,-24],[-66,-11],[-25,-1],[-17,-17],[-12,-25],[-7,-53],[-13,-93],[-6,-25],[1,-37],[-4,-62],[-1,-56],[2,-37],[-19,-75],[-22,-92],[-19,-78],[-19,-79]],[[54495,53150],[-13,54],[-8,63],[-4,73],[2,19],[-5,22],[0,4],[-7,55],[7,38],[-5,40],[-16,39],[-14,30],[-8,27],[-7,12],[-15,4],[-21,14],[-27,59],[-27,57],[-34,74],[-27,63],[-33,78],[-31,72],[-19,69],[-7,40],[9,4],[13,1],[6,7],[0,19],[-14,54],[-6,70],[-12,42],[-35,66],[-35,49],[-11,26],[-6,36],[-13,231],[-6,65],[-10,29],[-8,13],[-3,16],[1,41],[5,37],[-1,14],[10,32],[0,213],[-5,11],[-6,18],[-10,-1],[-11,2],[-11,31],[-9,39],[3,28],[9,23],[11,20],[13,17],[39,34],[11,17],[7,21],[4,29],[23,109],[33,109],[15,23],[14,72],[20,88],[8,42],[6,41],[10,33],[37,54],[28,96]],[[54299,56177],[31,-5],[31,-16],[40,-7],[31,18],[20,37],[45,30],[52,35],[7,51],[16,27],[17,23],[6,3],[2,-17],[10,-53],[23,-53],[32,-58],[9,4],[20,44],[51,27],[12,12],[36,64],[43,41],[10,4],[16,11],[43,42],[31,-5],[50,7],[83,20],[60,6],[30,8],[8,9],[11,62],[10,17],[22,26],[44,93],[29,79],[8,26],[1,2],[6,5],[12,33],[-12,34],[-49,69],[0,10],[-3,12],[3,9],[19,29],[26,32],[27,12],[70,-2],[61,7],[14,-2],[47,16],[32,15],[33,34],[75,-4],[62,85],[18,16],[8,13],[3,13],[29,34],[33,70],[25,62],[7,45],[71,150],[25,-3],[12,19],[28,100],[8,19],[14,6],[16,11],[13,30],[12,44],[0,55],[-5,44],[0,21],[7,20],[11,19],[54,54],[13,26],[9,24],[15,4],[16,-2],[10,14],[12,25],[37,33],[35,26],[36,-11],[29,-13],[25,-16],[11,-4]],[[33392,77153],[-37,-20],[-32,1],[-22,19],[-1,8],[51,-8],[19,5],[39,32],[-17,-37]],[[31590,77357],[-14,-21],[4,20],[17,51],[11,7],[-18,-57]],[[31455,77581],[-38,-31],[15,78],[12,24],[15,-8],[-2,-47],[-2,-16]],[[33066,78046],[-12,-4],[-2,8],[-18,24],[-1,12],[15,11],[32,-6],[-12,-30],[-2,-15]],[[29529,78102],[-34,-12],[-11,5],[37,56],[42,13],[-34,-62]],[[29565,78034],[-22,-11],[-36,11],[-41,-15],[-11,0],[30,42],[46,27],[46,80],[13,2],[-18,-91],[-3,-33],[-4,-12]],[[30270,78843],[-25,-5],[6,20],[35,36],[25,20],[15,0],[-24,-44],[-32,-27]],[[33026,78308],[9,-4],[38,28],[20,-1],[-1,-20],[-32,-22],[-15,-17],[18,-15],[0,-10],[-22,-25],[-11,-27],[9,-26],[36,26],[14,0],[20,-6],[19,8],[11,13],[63,99],[3,13],[-68,-20],[-8,13],[45,61],[-4,31],[23,51],[20,30],[15,16],[22,16],[15,-24],[5,-43],[37,6],[37,-9],[26,-18],[5,-10],[0,-17],[-9,-29],[-15,-25],[30,-31],[-4,-13],[-48,-36],[-28,-35],[-25,-44],[-50,-51],[-80,-36],[-25,0],[-30,11],[-30,-3],[-29,-13],[-29,1],[-13,-7],[-14,1],[-11,14],[-23,41],[-12,27],[-12,130],[4,68],[20,63],[29,43],[17,34],[72,200],[14,45],[17,39],[31,39],[40,64],[12,14],[23,6],[23,-4],[-7,-23],[2,-23],[26,-89],[0,-18],[-15,-71],[-27,-116],[-7,-63],[4,-19],[-11,-32],[-12,-25],[-47,-45],[-24,-11],[-22,-17],[-54,-58]],[[32274,78610],[8,-8],[13,15],[15,47],[41,-12],[22,-21],[12,4],[12,-2],[23,-28],[44,-22],[46,4],[70,13],[8,5],[72,11],[72,5],[25,-12],[9,-12],[5,-14],[-41,-38],[-41,-44],[-58,-44],[-7,-21],[4,-39],[-1,-40],[11,-4],[7,-13],[-15,-13],[-59,-6],[-17,4],[-21,16],[-7,39],[-25,-6],[-7,5],[35,32],[-16,42],[-18,-3],[-11,19],[1,27],[16,13],[5,14],[-22,-13],[-17,-24],[-21,-9],[-22,-22],[33,-6],[-17,-17],[-17,-3],[-81,32],[-20,12],[-26,34],[-19,45],[11,2],[3,8],[-2,7],[-28,6],[-45,-2],[-25,12],[1,79],[-8,22],[-28,18],[-42,5],[-4,30],[13,44],[21,39],[16,37],[18,31],[46,62],[-1,-46],[4,-40],[-30,-79],[52,-79],[6,-17],[5,-21],[-4,-19],[-8,-18],[20,-8],[6,-15]],[[32801,79080],[10,-11],[18,1],[12,-4],[-17,-21],[-33,-3],[-16,9],[23,110],[27,26],[56,71],[22,22],[21,9],[21,-5],[-22,-43],[-30,-2],[-28,-35],[-18,-40],[-23,-22],[-15,-27],[-8,-35]],[[34937,79171],[-14,-21],[-14,1],[2,18],[17,34],[8,24],[1,15],[3,11],[13,13],[11,23],[-5,-43],[-22,-75]],[[32081,79427],[-7,-42],[-25,-36],[-12,-2],[-5,3],[6,23],[0,40],[20,6],[7,-4],[16,12]],[[32090,79469],[-32,-30],[14,45],[6,11],[5,5],[5,-4],[2,-27]],[[15712,79927],[-11,-15],[-7,2],[-5,10],[-18,102],[8,-3],[24,-31],[-5,-12],[18,-31],[4,-21],[-8,-1]],[[15730,80003],[-4,-7],[-43,41],[-29,54],[-12,32],[57,-81],[29,-26],[2,-13]],[[29247,77766],[40,22],[82,85],[61,30],[80,89],[57,17],[11,20],[9,73],[6,26],[26,73],[33,61],[26,84],[47,54],[71,45],[66,98],[36,30],[35,22],[15,40],[21,23],[58,46],[64,13],[64,38],[50,21],[30,36],[44,19],[132,104],[36,49],[48,99],[41,51],[14,54],[60,87],[62,116],[30,82],[46,46],[89,132],[47,52],[20,6],[53,47],[34,48],[54,49],[97,60],[91,72],[123,63],[144,93],[117,50],[82,7],[100,24],[35,-3],[156,-40],[74,-50],[85,-106],[13,-27],[2,-39],[-45,19],[-40,1],[28,-22],[47,-65],[-3,-81],[-26,-73],[-79,-36],[-20,-29],[-16,-47],[-16,-18],[-39,-22],[-21,-30],[-62,-49],[-28,-6],[-32,11],[-78,47],[-47,44],[-24,-24],[-20,-26],[-46,9],[-21,-11],[-34,12],[-71,-56],[20,-6],[56,32],[19,-4],[42,-41],[100,-45],[26,-29],[25,-95],[16,-15],[35,10],[39,47],[32,25],[63,20],[-13,-31],[48,3],[48,-42],[-18,-30],[-24,-59],[-16,-116],[-49,-78],[-64,-76],[16,-19],[19,-11],[41,22],[28,-1],[31,-15],[-10,-59],[-11,-40],[7,-38],[18,-71],[25,-16],[10,-92],[14,-50],[-2,-40],[25,-25],[4,-41],[92,-12],[19,-16],[63,-15],[12,-12],[12,-22],[-63,-49],[51,-36],[47,-59],[38,12],[16,-2],[42,-36],[12,-19],[6,-16],[21,4],[31,14],[54,-4],[59,-20],[-5,-32],[-9,-21],[46,7],[28,-23],[10,11],[7,14],[57,38],[73,79],[9,-9],[3,-30],[10,-49],[28,-34],[33,-8],[45,26],[18,-22],[22,-43],[20,-57],[-1,-20],[-26,-17],[-24,-26],[99,-10],[10,-11],[10,-22],[-10,-22],[-9,-11],[-18,13],[-33,-12],[-28,-29],[-31,-16],[-20,-2],[-22,-14],[-20,-20],[-20,-6],[-65,-52],[-66,-33],[-69,-54],[-71,-34],[-73,-40],[-16,-4],[-19,2],[-41,-40],[-21,6],[-21,-7],[-25,9],[-16,16],[13,-42],[3,-39],[-6,-16],[-12,-20],[-42,3],[-16,14],[-20,21],[-9,33],[-21,24],[-13,-33],[1,-25],[-16,-33],[-18,57],[-34,-21],[-14,-61],[7,-17],[10,-46],[-16,-25],[-12,7],[-25,-68],[-31,-25],[-31,-70],[-37,-52],[-11,-36],[-62,-81],[-24,2],[-17,-2],[-26,-34],[-5,-68],[-11,9],[-12,-2],[-6,-22],[-9,-3],[-23,20],[-27,-11],[-21,15],[-27,100],[-14,35],[-26,12],[-6,-22],[-10,-20],[-25,41],[-18,153],[0,37],[26,129],[64,116],[-21,4],[-56,-81],[6,20],[9,20],[19,33],[29,31],[39,17],[27,3],[18,17],[27,30],[5,16],[-24,-18],[-39,-18],[10,23],[10,13],[209,208],[42,34],[84,44],[12,28],[-12,19],[33,-17],[-3,-23],[-5,-18],[-2,-29],[3,-28],[34,-14],[27,-52],[-13,71],[25,40],[96,54],[80,6],[25,25],[-68,17],[-81,-9],[-50,19],[-70,-12],[-73,11],[-22,-15],[-19,-34],[-23,15],[-12,2],[-11,12],[24,58],[74,87],[46,75],[12,15],[10,31],[-24,-5],[-22,-12],[-15,34],[-27,47],[-2,-20],[13,-57],[-51,-101],[-34,-7],[-44,-47],[-62,-41],[-73,-78],[-95,-66],[-19,-1],[-43,55],[12,24],[11,34],[-11,-10],[-7,-14],[-25,-24],[21,-45],[-11,-17],[-30,-22],[-27,-32],[-25,-22],[-20,28],[-54,-35],[-46,-9],[-10,17],[-3,28],[-16,7],[-30,-8],[-11,15]],[[31354,77862],[-13,7],[-12,6],[-10,5],[-6,-8],[-5,-11],[-7,-8],[-14,11],[-9,21],[-15,22],[-6,16],[3,19],[7,18],[3,22],[-7,25],[-7,14],[-5,16],[2,16],[9,7],[9,10],[3,20],[-6,22],[-15,8],[-12,-3],[-18,5],[-17,13],[-12,16],[-8,9],[-7,0],[-8,8],[-5,15],[0,25],[3,15],[4,12],[1,15],[-2,10],[-1,8],[2,10],[3,20],[-5,15],[-1,52],[-1,96],[-1,74],[0,92],[-1,68],[-1,95],[0,89],[-2,85],[-35,49],[-45,62],[-39,41],[-21,5],[-13,-6],[-5,-17],[-29,-17],[-52,-19],[-44,-29],[-17,0],[-14,5],[-18,14],[-12,22],[-5,37],[4,51],[-27,11],[-26,10],[-17,-35],[-16,-30],[-31,-64],[-44,-91],[-24,-50],[-43,-87],[-38,-77],[-8,-80],[-8,-75],[-32,-57],[-19,-52],[-8,-58],[-7,-54],[-1,-44],[5,-24],[-2,-19],[-10,-22],[-21,-38],[-4,-37],[-12,-18],[-36,-36],[-30,-53],[-1,-30],[4,-25],[1,-16],[-6,-11],[-12,1],[-13,-4],[-10,-22],[0,-32],[-8,-23],[-9,-5],[-8,17],[-9,24],[-11,3],[-17,-17],[-21,-26],[-19,-2],[-34,17],[-26,-51],[-27,-111],[-116,-1],[-115,0],[-116,0],[-116,-1],[-115,0],[-116,0],[-115,0],[-65,-1],[-13,0]],[[14974,80272],[8,-52],[-34,9],[-12,10],[0,25],[6,23],[26,-8],[6,-7]],[[34846,80408],[-43,-34],[-10,-13],[-12,-7],[-9,11],[-12,35],[2,12],[12,2],[7,-5],[1,-11],[5,-6],[9,0],[32,35],[16,5],[6,-6],[-4,-18]],[[34974,80497],[20,-37],[11,-10],[-72,-41],[-8,-2],[-5,4],[-1,38],[4,29],[5,5],[16,-18],[17,36],[13,-4]],[[15513,80374],[4,-12],[-62,45],[-27,27],[-10,19],[-6,11],[-32,28],[-5,13],[7,10],[21,-6],[35,-21],[32,-35],[43,-79]],[[14822,80417],[-11,-2],[-18,7],[-19,16],[-35,44],[-3,10],[3,9],[9,7],[3,11],[-8,32],[27,20],[25,-17],[11,-20],[13,-36],[6,-41],[1,-28],[-4,-12]],[[32833,80122],[-117,-8],[-92,36],[-69,17],[-67,31],[-146,100],[-16,35],[-14,43],[-28,39],[-30,32],[-154,98],[-13,34],[31,23],[36,10],[31,-1],[104,-38],[130,-34],[56,-26],[64,-38],[62,-47],[140,-125],[24,-10],[63,-61],[23,-46],[11,-38],[-14,-19],[-15,-7]],[[15284,80661],[-7,-5],[-7,66],[9,23],[2,12],[-1,12],[15,-29],[6,-20],[2,-27],[0,-8],[-19,-24]],[[15226,80700],[-3,-30],[-17,49],[-28,105],[4,24],[12,35],[11,2],[18,-16],[16,-29],[3,-11],[10,-30],[5,-27],[-11,-33],[-20,-39]],[[34573,81059],[-9,-6],[-9,0],[-8,7],[-1,11],[8,23],[21,12],[17,-3],[-1,-12],[-9,-19],[-9,-13]],[[14667,81013],[138,-72],[138,-35],[102,-42],[62,-13],[22,-9],[15,-15],[17,-36],[29,-85],[23,-55],[46,-94],[37,-67],[8,-27],[-8,-8],[1,-16],[28,-65],[52,-59],[41,-28],[86,-45],[53,-45],[16,-30],[23,-30],[9,-21],[19,-76],[35,-73],[36,-139],[7,11],[4,42],[4,9],[8,5],[7,-17],[6,-36],[23,-87],[-7,-26],[-7,-3],[-31,12],[-10,-15],[-15,-32],[-10,-13],[-6,6],[-90,31],[-55,29],[-72,45],[-87,47],[-50,33],[-41,33],[-29,29],[-5,24],[1,11],[56,77],[23,42],[9,31],[5,34],[-3,41],[-3,-3],[-5,-40],[-8,-34],[-10,-28],[-6,-9],[-67,-14],[-54,4],[-27,-33],[-8,-4],[-15,11],[-33,44],[-47,36],[5,9],[31,19],[16,26],[-3,5],[-11,-2],[-10,6],[-19,34],[-10,10],[-23,-16],[-10,-1],[-9,23],[13,53],[1,13],[-24,-20],[-8,7],[-7,17],[-7,7],[-19,-3],[-21,15],[-7,-6],[-3,-23],[-7,-6],[-31,39],[-8,1],[-15,-29],[-5,-2],[-9,13],[-4,71],[2,21],[4,7],[28,16],[79,18],[7,13],[-60,-7],[-15,10],[-17,24],[-17,0],[-9,8],[-10,18],[-25,64],[-17,17],[-29,10],[-15,12],[-6,-5],[-6,-19],[-9,-11],[-19,-7],[-19,5],[-14,18],[-8,22],[-4,25],[8,33],[0,14],[-3,15],[-7,12],[-9,10],[-5,-5],[-1,-20],[-5,-14],[-17,-11],[-13,19],[-9,27],[-11,19],[-57,0],[-27,-25],[-13,-2],[-13,6],[-2,13],[12,35],[-3,47],[-3,12],[-27,7],[-4,12],[15,57],[9,11],[12,4],[53,4],[17,-8],[26,-34],[-1,13],[-9,39],[-2,24],[18,26],[-17,8],[-63,6],[1,-17],[5,-24],[-37,-21],[-28,-4],[-26,4],[-21,12],[-37,51],[-23,51],[1,27],[13,29],[16,19],[39,18],[51,1],[57,-23],[143,-104]],[[34594,81530],[-20,-58],[-14,-28],[-13,-9],[-28,-8],[-59,-9],[-25,-8],[-3,-39],[4,-20],[8,-16],[11,-4],[24,9],[9,-1],[7,-8],[6,-15],[3,-20],[0,-25],[-4,-31],[-20,-73],[-25,-40],[-33,-33],[-7,-12],[-5,-15],[-4,-48],[-16,-38],[-52,-96],[-20,-22],[0,-17],[-8,-46],[-16,-36],[-43,-85],[-10,-30],[-5,-24],[1,-33],[-2,-15],[-10,-28],[-14,-27],[-3,-13],[6,-23],[5,-8],[1,-22],[-4,-34],[18,22],[40,78],[31,47],[20,16],[15,21],[15,46],[20,44],[19,15],[9,-9],[7,-21],[-1,-28],[-10,-33],[0,-10],[24,24],[41,21],[15,-3],[30,-30],[26,3],[40,18],[7,-8],[-7,-27],[-15,-26],[-37,-36],[-90,-72],[-28,-49],[5,2],[20,21],[20,11],[21,2],[9,-7],[-3,-14],[-3,-37],[-54,-74],[13,3],[62,33],[39,-46],[52,16],[31,15],[0,-9],[6,-20],[0,-33],[3,-5],[15,11],[3,12],[-1,58],[5,6],[10,-9],[6,-15],[2,-42],[-7,-43],[-9,-39],[-23,-57],[3,-24],[-6,-27],[5,-1],[23,25],[1,10],[-2,24],[3,11],[19,26],[31,31],[11,4],[4,-7],[-2,-19],[10,5],[20,28],[18,16],[17,6],[18,19],[19,32],[20,27],[21,21],[9,2],[-3,-35],[4,-40],[1,-34],[4,-7],[17,36],[9,13],[11,6],[12,-3],[87,13],[27,-9],[30,-24],[37,-36],[14,-33],[3,-42],[-4,-29],[-27,-37],[-24,-24],[-14,-24],[-5,-25],[-5,-15],[-16,-20],[-72,-59],[17,-2],[41,13],[28,3],[1,-9],[-11,-16],[-21,-17],[-2,-8],[1,-11],[22,-12],[29,6],[24,-9],[-3,-14],[-19,-46],[-5,-28],[-26,-25],[-50,-37],[-13,-15],[3,-3],[46,28],[24,7],[14,0],[17,27],[26,9],[26,-17],[39,46],[14,6],[24,-5],[15,8],[26,32],[20,15],[4,-1],[4,-13],[2,-36],[-5,-32],[-6,-21],[-21,-45],[-13,-16],[-12,-6],[-21,2],[-9,-7],[-20,-35],[-35,-36],[-22,-14],[14,-20],[5,-37],[-8,-12],[-37,-12],[-2,-6],[-13,-8],[-31,-13],[21,-6],[39,9],[4,-6],[-5,-27],[-11,-27],[-46,-70],[0,-7],[7,-35],[9,-26],[11,-18],[26,-1],[19,8],[27,47],[62,146],[55,41],[45,45],[11,-9],[5,-11],[-2,-11],[-23,-37],[-12,-31],[-31,-94],[-12,-45],[-6,-47],[1,-81],[4,-14],[9,-19],[19,17],[31,40],[20,38],[15,63],[10,24],[10,-1],[10,-13],[2,-30],[8,-42],[6,-41],[-4,-46],[-5,-25],[-63,-186],[6,-33],[2,-20],[-2,-22],[-20,-89],[-19,-55],[-11,-24],[-12,-15],[-15,-5],[-13,8],[-11,21],[-10,11],[-9,1],[-17,-4],[-42,-45],[-9,-3],[-6,6],[-8,24],[6,120],[4,40],[-9,30],[9,52],[1,19],[-6,7],[-10,-4],[-17,-26],[-22,-47],[-23,-42],[-42,-57],[-18,-11],[-8,2],[-8,8],[-12,24],[1,22],[5,29],[17,68],[34,101],[28,72],[5,31],[-7,13],[-7,27],[-11,78],[-13,64],[-16,28],[-41,32],[-7,-8],[-4,-43],[-48,-124],[-8,-54],[-6,-20],[-9,-14],[-21,-17],[6,29],[22,64],[-3,6],[-28,-51],[-21,-29],[-26,-7],[-16,2],[-15,-8],[-65,-122],[-3,-40],[-11,-33],[-32,-60],[-17,-21],[-24,-4],[-21,11],[-15,-2],[-33,-19],[-38,-8],[-16,4],[-10,7],[-19,24],[-2,16],[1,10],[10,25],[22,32],[18,11],[45,16],[33,24],[25,35],[12,21],[47,110],[60,39],[29,31],[21,40],[3,14],[-30,-20],[-15,-5],[-25,7],[-11,14],[-34,-4],[-47,6],[-7,-10],[-6,-54],[-6,-28],[-7,-9],[-11,-6],[-21,-6],[-55,19],[-11,11],[-14,8],[-60,-18],[-13,2],[12,12],[60,40],[6,112],[-3,18],[-17,-16],[-28,-16],[-20,5],[-9,10],[-8,-9],[-19,-59],[-12,-7],[-17,-3],[-38,-21],[-73,-15],[-14,-15],[-49,5],[-145,33],[-52,-3],[-62,19],[-12,9],[-87,-3],[-26,4],[2,25],[-3,6],[-25,-27],[-23,-18],[-29,-15],[-91,-26],[-49,-6],[-28,18],[-11,19],[-17,59],[-12,74],[0,13],[6,26],[19,36],[87,94],[69,96],[30,49],[28,18],[46,41],[2,5],[-45,-5],[-32,11],[-32,5],[-62,-11],[-62,0],[0,21],[29,40],[62,68],[6,1],[-19,-32],[-5,-24],[8,-16],[9,-10],[36,-4],[8,14],[12,73],[27,85],[14,61],[25,47],[13,7],[11,-9],[37,-11],[38,-43],[12,-3],[4,3],[-14,13],[-11,20],[-5,19],[14,59],[16,17],[3,12],[-32,0],[-26,16],[-8,27],[1,47],[9,28],[21,37],[25,25],[15,-6],[30,-34],[18,10],[-3,10],[-27,53],[-9,39],[1,19],[59,187],[29,100],[40,153],[9,24],[20,45],[9,12],[25,0],[16,6],[-23,19],[-8,14],[-1,15],[6,15],[9,12],[31,24],[22,40],[13,48],[-2,16],[-7,16],[0,9],[17,10],[42,56],[5,11],[16,75],[19,33],[17,17],[28,21],[86,52],[51,46],[34,-3],[10,-32],[49,-21],[9,23],[-12,28],[10,11],[40,10],[7,-4],[12,-16],[-2,-14]],[[14465,81493],[-4,-9],[-11,0],[-18,10],[-13,21],[-16,66],[2,12],[5,12],[25,24],[10,-3],[3,-18],[15,-39],[5,-11],[0,-46],[-3,-19]],[[34622,81733],[-14,-1],[-3,7],[6,22],[15,26],[20,7],[-6,-38],[-18,-23]],[[27949,81769],[-12,-4],[-26,4],[-22,15],[-13,18],[86,51],[18,-7],[0,-9],[-13,-27],[-3,-18],[-6,-14],[-9,-9]],[[13603,81774],[-5,-1],[-9,12],[-7,19],[-4,51],[3,20],[3,8],[24,-32],[-5,-77]],[[14342,82027],[-21,-7],[7,31],[2,18],[-4,17],[-3,33],[-1,79],[21,49],[33,1],[-1,-25],[-14,-111],[-7,-51],[-5,-19],[-7,-15]],[[14184,82090],[-9,-26],[-37,63],[-13,18],[-28,67],[-5,29],[1,17],[5,6],[9,-4],[8,-8],[53,-74],[15,-35],[1,-53]],[[14079,82368],[-4,-5],[-11,8],[-11,15],[-19,43],[-6,18],[-4,29],[3,5],[9,-3],[5,-5],[30,-70],[8,-35]],[[27574,82227],[-19,-8],[-58,16],[-24,11],[-71,41],[-135,61],[-46,31],[-10,22],[25,48],[13,19],[15,12],[143,22],[55,-11],[65,-97],[38,-66],[15,-52],[0,-26],[-6,-23]],[[13402,82485],[28,-53],[8,-48],[-3,-56],[-45,-22],[-23,17],[-11,-3],[-15,-17],[19,-7],[26,-28],[23,-36],[32,-6],[44,-25],[-33,-45],[-5,-26],[41,-72],[4,-18],[13,-4],[30
View raw

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

View raw

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

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