Skip to content

Instantly share code, notes, and snippets.

@flother
Last active March 11, 2016 00:01
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 flother/569b14de04a3c6a878a0 to your computer and use it in GitHub Desktop.
Save flother/569b14de04a3c6a878a0 to your computer and use it in GitHub Desktop.
The Counted in southern California
license: cc-by-sa-4.0
border: no
height: 600

People killed by police and other law enforcement agencies in Los Angeles and southern California throughout 2015, broken down by race. The data comes from [The Counted] 1, a project by the Guardian. The map was created using [Vega] 2.

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.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>The Counted</title>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.16/d3.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/vega/2.5.1/vega.min.js"></script>
</head>
<body>
<div id="vis"></div>
<script type="text/javascript">
function parse(spec) {
vg.parse.spec(spec,
function (error, chart) {
chart({el:"#vis"}).update();
});
}
parse("spec.json");
</script>
</body>
</html>
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.
{
"width": 780,
"height": 600,
"padding": {"top": 0, "right": 120, "bottom": 0, "left": 0},
"data": [
{
"name": "us",
"url": "us.json",
"format": {"type": "topojson", "feature": "us"},
"transform": [{
"type": "geopath",
"scale": 24000,
"center": [-118.3, 34.25]
}]
},
{
"name": "urban_area",
"url": "urban_area.json",
"format": {"type": "topojson", "feature": "urban_area"},
"transform": [{
"type": "geopath",
"scale": 24000,
"center": [-118.3, 34.25]
}]
},
{
"name": "counties",
"url": "counties.json",
"format": {"type": "topojson", "feature": "counties"},
"transform": [{
"type": "geopath",
"scale": 24000,
"center": [-118.3, 34.25]
}]
},
{
"name": "los_angeles",
"url": "los_angeles.json",
"format": {"type": "topojson", "feature": "los_angeles"},
"transform": [{
"type": "geopath",
"scale": 24000,
"center": [-118.3, 34.25]
}]
},
{
"name": "cities",
"values": [
{"name": "Los Angeles city limits", "lon": -118.2, "lat": 34.31, "opacity": 0.8},
{"name": "Downtown", "lon": -118.238, "lat": 34.057, "opacity": 0.2},
{"name": "Long Beach", "lon": -118.12, "lat": 33.73, "opacity": 0.2},
{"name": "Anaheim", "lon": -117.889, "lat": 33.87, "opacity": 0.2},
{"name": "Santa Ana", "lon": -117.83, "lat": 33.775, "opacity": 0.2},
{"name": "Irvine", "lon": -117.823, "lat": 33.669, "opacity": 0.2},
{"name": "Glendale", "lon": -118.20, "lat": 34.173, "opacity": 0.2},
{"name": "Pomona", "lon": -117.756, "lat": 34.09, "opacity": 0.2},
{"name": "Torrance", "lon": -118.42, "lat": 33.834722, "opacity": 0.2},
{"name": "Downey", "lon": -118.121, "lat": 33.938, "opacity": 0.2},
{"name": "Arcadia", "lon": -118.036, "lat": 34.133, "opacity": 0.2},
{"name": "Fontana", "lon": -117.51, "lat": 34.1, "opacity": 0.2},
{"name": "Oxnard", "lon": -119.183, "lat": 34.191, "opacity": 0.2},
{"name": "Lancaster", "lon": -118.15, "lat": 34.683333, "opacity": 0.2}
],
"transform": [
{
"type": "geo",
"lon": "lon", "lat": "lat",
"scale": 24000,
"center": [-118.3, 34.25]
}
]
},
{
"name": "thecounted",
"url": "thecounted.csv",
"format": {"type": "csv"},
"transform": [
{
"type": "geo",
"lon": "longitude", "lat": "latitude",
"scale": 24000,
"center": [-118.3, 34.25]
}
]
}
],
"scales": [
{
"name": "race",
"type": "ordinal",
"domain": {"data": "thecounted", "field": "race"},
"range": ["#F48500", "#5080EA", "#e85be8", "#1DA827"]
}
],
"legends": [
{"fill": "race", "title": "Race"}
],
"marks": [
{
"type": "path",
"from": {"data": "us"},
"properties": {
"enter": {
"fill": {"value": "#f0f0f0"},
"path": {"field": "layout_path"}
}
}
},
{
"type": "path",
"from": {"data": "urban_area"},
"properties": {
"enter": {
"fill": {"value": "#d7d8d6"},
"path": {"field": "layout_path"}
}
}
},
{
"type": "path",
"from": {"data": "counties"},
"properties": {
"enter": {
"stroke": {"value": "#fff"},
"path": {"field": "layout_path"}
}
}
},
{
"type": "path",
"from": {"data": "los_angeles"},
"properties": {
"enter": {
"stroke": {"value": "#5e5e5e"},
"path": {"field": "layout_path"}
}
}
},
{
"type": "symbol",
"from": {"data": "thecounted"},
"properties": {
"enter": {
"x": {"field": "layout_x"},
"y": {"field": "layout_y"},
"size": {"value": 25},
"shape": {"value": "cross"},
"fill": {"field": "race", "scale": "race"},
"fillOpacity": {"value": 0.6},
"strokeWidth": {"value": 0}
}
}
},
{
"type": "text",
"from": {"data": "cities"},
"properties": {
"enter": {
"text": {"template": "{{datum.name|upper}}"},
"x": {"field": "layout_x"},
"y": {"field": "layout_y"},
"align": {"value": "center"},
"baseline": {"value": "middle"},
"fontSize": {"value": 10},
"fontWeight": {"value": "bold"},
"fillOpacity": {"value": 0},
"stroke": {"value": "#fff"},
"strokeWidth": {"value": 2},
"strokeOpacity": {"value": 0.2}
}
}
},
{
"type": "text",
"from": {"data": "cities"},
"properties": {
"enter": {
"text": {"template": "{{datum.name|upper}}"},
"x": {"field": "layout_x"},
"y": {"field": "layout_y"},
"align": {"value": "center"},
"baseline": {"value": "middle"},
"fontSize": {"value": 10},
"fontWeight": {"value": "bold"},
"fill": {"value": "#000"},
"fillOpacity": {"field": "opacity"}
}
}
},
{
"type": "text",
"from": {"data": "thecounted"},
"properties": {
"update": {
"text": {"template": "{{tooltip.name|upper}}, {{tooltip.age}}"},
"x": {"signal": "tooltip.layout_x"},
"y": {"signal": "tooltip.layout_y"},
"align": {"value": "center"},
"baseline": {"value": "bottom"},
"dy": {"value": -5},
"fontSize": {"value": 14},
"fillOpacity": {"value": 0},
"stroke": {"value": "#fff"},
"strokeWidth": {"value": 3},
"strokeOpacity": [
{ "test": "datum._id != tooltip._id",
"value": 0
},
{"value": 0.4}
]
}
}
},
{
"type": "text",
"from": {"data": "thecounted"},
"properties": {
"update": {
"text": {"template": "{{tooltip.name|upper}}, {{tooltip.age}}"},
"x": {"signal": "tooltip.layout_x"},
"y": {"signal": "tooltip.layout_y"},
"fillOpacity": [
{ "test": "datum._id != tooltip._id",
"value": 0
},
{"value": 1}
],
"align": {"value": "center"},
"baseline": {"value": "bottom"},
"dy": {"value": -5},
"fontSize": {"value": 14},
"fill": {"value": "#5e5e5e"}
}
}
}
],
"signals": [
{
"name": "tooltip",
"init": {},
"streams": [
{"type": "symbol:mouseover", "expr": "datum"},
{"type": "symbol:mouseout", "expr": "{}"}
]
}
]
}
uid name age race longitude latitude
12 Brian Pickett 26 Black -118.2455 33.9206
27 Brian Barbosa 23 Hispanic/Latino -118.1889 33.9525
52 Pablo Meza 24 Hispanic/Latino -118.2324 34.0362
101 Paul Johnson 59 White -117.6503 33.9534
114 Dean Bucheit 64 White -118.4318 33.9774
124 Jonathan Harden 23 White -117.3321 34.1647
166 Ernesto Javier Canepa Diaz 27 Hispanic/Latino -117.8776 33.7471
174 Charly 'Africa' Keunang 43 Black -118.2453 34.0424
184 Sergio Navas 34 Hispanic/Latino -118.3435 34.151
194 Monique Deckard 43 Black -117.9401 33.819
202 Edixon Franco 37 Hispanic/Latino -117.6547 34.0501
209 Benito Osorio 39 Hispanic/Latino -117.8677 33.7434
205 Aaron Valdez 25 Hispanic/Latino -118.2178 33.9392
211 Antonio Perez 32 Hispanic/Latino -118.2735 34.0279
214 Salome Rodriguez Jr 23 Hispanic/Latino -117.7509 34.0568
215 Andrew Driver 36 White -117.4297 34.0776
263 Victor Terrazas 28 Hispanic/Latino -118.2915 33.9437
264 Adrian Solis 35 Hispanic/Latino -118.2713 33.7934
267 Meagan Hockaday 26 Black -119.1829 34.2278
285 Robert Washington 37 Black -118.3373 33.9019
296 Paul Anderson 31 Black -117.8517 33.8355
305 Roberto Rodriguez 39 Hispanic/Latino -118.2106 34.0401
326 Ernesto Flores 52 Hispanic/Latino -117.7207 34.0511
340 Luis Molina Martinez 35 Hispanic/Latino -118.205 34.0718
350 Hector Morejon 19 Hispanic/Latino -118.1736 33.7808
351 Andrew Valadez 26 White -118.4532 34.3103
361 Dean Genova 45 White -117.9544 33.7619
382 Thong Kien Ma 32 Other -118.0447 34.0536
384 Brendon Glenn 29 Black -118.4726 33.9872
388 Nephi Arriguin 21 Black -118.0504 33.8744
402 Alec Ouzounian 40 White -117.6131 33.6547
454 Feras Morad 20 Other -118.1393 33.7854
491 Rene Garcia 30 Hispanic/Latino -117.9228 33.8472
529 Adrian Simental 24 Hispanic/Latino -117.9002 34.1283
563 Christian Siqueiros 25 Hispanic/Latino -117.7071 34.0668
561 Arturo Lopez 46 Hispanic/Latino -118.1852 34.6712
562 Cesar Juarez 27 Hispanic/Latino -117.8928 34.0233
571 Johnny Ray Anderson 43 Hispanic/Latino -118.072 33.8335
577 John Berry 31 White -118.124 33.8561
576 Jason Hendley 29 Black -118.4125 34.3232
595 Neil White 38 White -118.3433 34.0603
617 Jason Davis 41 White -118.4702 34.0002
653 Seth Raines 44 White -118.3981 34.1438
667 Oscar Romero 47 Hispanic/Latino -118.0552 33.9725
686 Daniel Avila 55 Hispanic/Latino -117.4636 33.3001
701 Derrick Hunt 28 Black -118.1557 33.8749
718 Redel Jones 30 Black -118.3426 34.0088
730 Oscar Ruiz 44 Hispanic/Latino -117.9957 34.0782
743 Raul Herrera III 17 Hispanic/Latino -117.5932 34.024
769 Manuel Soriano 29 Hispanic/Latino -118.4488 34.2051
798 Luis Wenceslao 32 Hispanic/Latino -117.6468 34.0341
799 Manuel Ornelas 47 Hispanic/Latino -118.1036 33.8154
842 William Chau 59 Other -118.029 34.0788
818 Eddie Tapia 41 Hispanic/Latino -118.1139 33.9551
817 Santino Burce 34 Hispanic/Latino -117.44 34.0707
839 Anthony Camacho 19 Hispanic/Latino -117.3835 34.1106
833 Florencio Chaidez 32 Hispanic/Latino -118.4535 34.2284
840 Carlos Wilhelm 39 Hispanic/Latino -118.2667 34.1326
844 Nicholas Johnson 32 White -117.3719 34.1992
874 Norma Guzman 37 Hispanic/Latino -118.2585 34.0253
887 Christian Pena 26 Hispanic/Latino -117.4031 34.0968
889 James Byrd 45 White -118.4663 34.1866
910 William Combs 38 White -117.6034 34.4013
935 Jonathan Peña 27 Hispanic/Latino -118.384 34.0851
925 Johnny Rangel 25 Hispanic/Latino -117.9161 34.0314
937 Dion Ramirez 54 Black -118.2812 33.935
950 Juan Ulloa 34 Hispanic/Latino -117.34 34.0186
1000 Miguel Cano 34 Hispanic/Latino -118.5117 34.213
1016 Ernesto Gamino 25 Hispanic/Latino -117.5105 34.0286
1017 Ramon Salazar 31 Hispanic/Latino -117.3999 34.0062
1040 Martin Rivera 56 Hispanic/Latino -117.421 34.117
1042 James Hall 46 White -117.4364 34.0627
1066 John Gonzalez 18 Hispanic/Latino -118.0817 33.9174
1094 Nicholas Robertson 28 Black -118.2097 33.9173
1098 Roy Carreon 49 Hispanic/Latino -117.3242 34.1084
1111 Mharloun Saycon 39 Other -118.1889 33.8031
1113 Bryant Duncan 23 White -119.0507 34.2195
1120 Ruben Herrera 26 Hispanic/Latino -118.2914 33.8305
1124 Leroy Browning 30 Black -118.0449 34.5713
1156 Tien Hua 33 Other -118.0562 34.0731
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"urban_area":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0]]},{"type":"MultiPolygon","arcs":[[[1]],[[2]]]},{"type":"MultiPolygon","arcs":[[[3]],[[4]],[[5]],[[6]],[[7]],[[8,9,10,11,12,13,14,15,16]],[[17]],[[18]],[[19]]]},{"type":"MultiPolygon","arcs":[[[20]],[[21]],[[22,23]]]},{"type":"MultiPolygon","arcs":[[[24]],[[25,26,27]]]},{"type":"MultiPolygon","arcs":[[[28]],[[29]],[[30]],[[31]],[[32,33,34]]]},{"type":"Polygon","arcs":[[35],[36]]},{"type":"Polygon","arcs":[[37]]},{"type":"MultiPolygon","arcs":[[[-13,38]],[[39,-9,40]],[[41]],[[42]],[[43]],[[44]],[[45,46,47,48,49,-11,50,51,-26,52],[53],[54]]]},{"type":"Polygon","arcs":[[55]]},{"type":"MultiPolygon","arcs":[[[56]],[[57]],[[58]],[[59]]]},{"type":"Polygon","arcs":[[60]]},{"type":"MultiPolygon","arcs":[[[61]],[[62]]]},{"type":"Polygon","arcs":[[63]]},{"type":"MultiPolygon","arcs":[[[64]],[[65,66]],[[67]],[[68]],[[69]]]},{"type":"MultiPolygon","arcs":[[[70]],[[71,-49,72,-23,73]]]},{"type":"MultiPolygon","arcs":[[[74]],[[75]],[[76]]]},{"type":"MultiPolygon","arcs":[[[77]],[[78]]]},{"type":"MultiPolygon","arcs":[[[79]],[[80]]]},{"type":"MultiPolygon","arcs":[[[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]]]},{"type":"MultiPolygon","arcs":[[[107]],[[108,109]],[[110,111]],[[112,113]],[[114]]]},{"type":"Polygon","arcs":[[115]]},{"type":"Polygon","arcs":[[116]]},{"type":"Polygon","arcs":[[117]]}]}},"arcs":[[[3843,7131,0],[35,0],[2,-9],[27,0],[10,18],[2,27],[6,9],[1,12],[7,-1],[4,-8],[12,-7],[10,8],[9,12],[-15,2],[-8,8],[-2,14],[6,20],[7,28],[0,8],[10,7],[18,0],[9,6],[-8,3],[2,5],[-14,29],[8,7],[17,-8],[10,-20],[10,-6],[10,-3],[9,-9],[19,0],[-4,17],[9,-3],[3,-5],[10,-6],[8,-1],[11,-8],[5,-8],[1,-19],[6,-2],[1,-14],[-12,1],[0,-5],[15,0],[8,-36],[-2,-17],[1,-20],[-9,-27],[1,-24],[-6,-14],[7,-12],[1,-8],[-3,-12],[0,-15],[-4,-10],[1,-15],[-3,-9],[3,-5],[4,-6],[14,9],[-5,9],[6,26],[13,8],[6,7],[0,16],[5,12],[-5,17],[6,-3],[3,-12],[13,-5],[27,-5],[3,4],[11,4],[3,17],[0,7],[-10,5],[-9,-3],[4,6],[98,-14],[0,-4],[5,1],[16,33],[7,2],[22,-15],[1,6],[12,-2],[13,-14],[8,6],[4,-2],[-3,-18],[-2,3],[0,-6],[-11,-29],[18,-4],[17,29],[3,-2],[3,17],[10,15],[3,11],[10,21],[-3,13],[23,-1],[1,-3],[34,-6],[86,3],[2,-19],[5,-9],[-6,-19],[7,-16],[-2,-9],[10,-3],[127,-1],[15,-1],[-9,-2],[-19,-9],[-8,-4],[-2,-3],[-7,-10],[-8,-7],[-8,-4],[-7,2],[0,-15],[-8,-14],[2,-9],[1,9],[8,4],[7,-3],[11,6],[6,0],[8,-15],[6,0],[20,-15],[7,0],[-2,-11],[7,-7],[2,-11],[-2,-3],[-16,-19],[41,0],[0,17],[20,0],[0,-20],[0,-33],[29,0],[1,-17],[35,-1],[6,3],[-1,4],[8,11],[0,18],[39,1],[0,17],[22,0],[21,39],[-8,-2],[-5,10],[-18,9],[4,1],[-2,13],[10,-1],[15,-6],[-7,18],[3,3],[-10,6],[0,8],[9,0],[12,-8],[22,1],[3,-8],[3,-3],[4,7],[9,-5],[6,-2],[10,-1],[4,-5],[9,0],[6,2],[12,9],[4,2],[14,1],[0,-7],[14,-9],[-3,-6],[-1,-9],[4,-4],[8,2],[-1,-9],[8,-6],[7,3],[-4,14],[-8,0],[0,19],[17,-1],[-3,2],[8,7],[-7,-1],[0,6],[5,-2],[2,19],[6,4],[14,0],[1,-35],[-5,0],[1,-24],[-3,-4],[7,-3],[0,12],[40,-1],[-1,-60],[-5,6],[-11,-3],[2,-12],[-12,-4],[-9,1],[-9,4],[-9,0],[-8,-3],[-15,-12],[-16,-8],[-15,-10],[-23,-5],[-38,0],[-11,-2],[-18,-13],[-2,-23],[10,5],[15,13],[13,5],[0,-7],[-10,-4],[-13,-14],[-12,-5],[7,-12],[6,-21],[23,0],[18,-6],[19,5],[8,-4],[16,-12],[3,-21],[-4,-4],[7,-16],[9,-5],[0,12],[3,-2],[0,-59],[-4,-23],[-35,0],[1,-17],[-6,-1],[-24,-8],[-4,10],[-18,-1],[-11,-5],[-10,-7],[0,11],[5,1],[-5,0],[-7,63],[-1,14],[-19,0],[-2,-15],[-8,1],[0,5],[-9,-5],[-3,-13],[-15,0],[-2,18],[-63,-1],[-10,0],[-24,0],[0,28],[-15,-9],[-10,-8],[-38,-23],[2,-4],[-9,-1],[-17,-10],[-18,-16],[-23,-15],[-27,-26],[-1,1],[-24,-25],[-6,-9],[-14,-28],[-12,3],[-4,2],[-2,-8],[-3,11],[-11,-2],[-9,2],[3,11],[-6,-4],[1,8],[-24,16],[-46,22],[-5,-13],[-18,-15],[-4,-2],[1,-17],[6,-1],[19,-21],[4,-12],[1,-15],[-5,-4],[-1,-25],[-17,0],[0,19],[-80,0],[-10,8],[-8,22],[-3,10],[-22,34],[-10,-2],[-7,-9],[2,-8],[-39,0],[-14,9],[-3,7],[-11,8],[-6,0],[-6,-1],[-10,-16],[-2,-8],[-89,2],[17,7],[3,10],[8,2],[6,21],[9,11],[12,-1],[-27,11],[-30,7],[-2,8],[-11,7],[-1,5],[-12,0],[-27,8],[-15,9],[-8,13],[11,-7],[6,11],[5,2],[4,11],[16,3],[10,-1],[0,11],[-3,11],[8,6],[2,14],[17,8],[7,10],[30,1],[68,51],[-19,29],[-4,19],[-5,10],[-23,19],[-13,12],[-5,9],[-12,8],[-30,5],[-17,-10],[-13,-6],[-23,-17],[-12,-10],[4,-1],[-7,-9],[-4,7],[-14,-10],[-9,-4],[0,1],[4,9],[13,11],[13,7],[10,9],[17,8],[12,14],[-14,35],[-2,10],[6,7],[-7,13],[-1,-1],[-2,-10],[-8,-10],[1,-22],[-19,10],[-6,10],[-9,4],[1,-28],[6,-13],[-8,-5],[-10,8],[-24,6],[-15,0],[-11,7],[0,7],[5,13],[34,-10],[10,-4],[11,-1],[0,20],[-16,6],[-16,10],[-3,5],[-5,6],[-17,9],[-9,2],[-8,0],[-26,10],[-11,0],[-27,7],[1,-6],[-8,-17],[-3,20],[-58,0],[-4,32],[19,3],[2,12],[-9,14],[-12,10],[3,9]],[[1045,6511,0],[-6,-3],[-16,8],[-15,4],[-13,10],[-11,17],[-9,1],[-7,14],[-3,19],[-4,5],[-3,11],[19,-5],[10,-7],[-3,-4],[1,-18],[4,-18],[7,3],[11,-24],[11,-3],[-5,10],[-8,36],[4,22],[11,25],[-11,-8],[0,8],[4,7],[2,10],[2,23],[-17,20],[6,15],[-1,15],[3,6],[-4,9],[3,22],[5,10],[-32,-1],[5,10],[7,2],[-5,3],[13,10],[6,-3],[8,14],[0,11],[13,19],[3,17],[6,11],[-1,12],[-16,-8],[-1,8],[5,10],[-1,10],[7,0],[32,6],[5,4],[8,11],[-8,2],[-3,-2],[-7,-9],[2,7],[3,9],[4,8],[-1,20],[-3,9],[-1,7],[5,9],[2,9],[5,4],[4,8],[-2,5],[2,7],[-3,10],[10,12],[5,11],[5,8],[-1,6],[4,7],[3,10],[-1,16],[4,4],[0,6],[7,-11],[11,0],[21,-15],[3,-4],[3,-10],[0,-7],[17,-1],[3,1],[9,5],[5,3],[14,0],[5,3],[10,-2],[3,2],[-5,4],[5,2],[17,-1],[3,-6],[-7,-2],[4,-10],[11,4],[4,1],[1,6],[0,30],[-1,5],[5,11],[6,2],[-2,-9],[1,-6],[-4,-6],[21,-1],[15,-1],[1,-9],[3,-6],[0,8],[3,7],[15,1],[37,11],[-1,-29],[5,1],[-2,-13],[1,-15],[47,-1],[3,0],[-5,-7],[-6,-11],[-4,-7],[7,0],[14,-3],[1,-14],[-12,0],[-2,9],[-8,0],[-1,6],[-3,-4],[-7,-6],[-7,-1],[-1,-4],[-5,15],[-38,-3],[1,-10],[-7,-1],[-1,11],[-5,-1],[1,-9],[-9,0],[-1,-10],[-6,-3],[-3,-5],[-4,-3],[-4,-6],[9,9],[4,-1],[-2,-5],[-5,-7],[2,-7],[-7,-3],[-4,0],[-23,1],[-4,-5],[-5,4],[1,17],[2,3],[6,3],[0,4],[-3,6],[9,5],[-5,5],[-20,-7],[-6,-8],[1,-5],[-8,-4],[-8,-13],[-4,-8],[-3,-13],[-10,10],[-1,4],[-17,4],[-15,4],[-4,-15],[2,-4],[4,0],[8,-17],[-17,2],[-10,1],[-12,-1],[22,0],[22,-2],[7,0],[1,-9],[-6,-2],[-10,1],[-16,-2],[-6,-2],[0,5],[-6,0],[0,-6],[-5,-2],[-6,-4],[-16,-6],[-3,-7],[-5,-6],[0,-4],[4,-4],[-19,-17],[-6,4],[-4,2],[-6,-9],[11,-3],[47,23],[11,2],[-22,-55],[7,-5],[15,-2],[5,-3],[-4,-7],[-9,-3],[0,-8],[-10,-14],[-5,5],[-6,-17],[-11,-1],[-11,-5],[-11,-14],[-3,-17],[-17,-5],[-5,-7],[4,-2],[-1,-1],[-11,2],[-8,-22],[-6,-1],[-7,-18],[1,0],[-12,-26],[0,-10],[4,-4],[1,-15],[-1,-13],[9,1],[-9,-7],[-20,-29],[6,-25],[13,-16],[12,-4],[7,-7]],[[1045,6511,0],[13,-8],[18,-20],[6,-15],[1,-32],[4,-5],[-1,-15],[10,2],[-8,-9],[3,-11],[18,4],[2,-7],[-17,-6],[2,-8],[-2,-16],[15,-1],[-1,-16],[-15,2],[-1,-6],[18,-1],[9,-3],[8,8],[2,-11],[23,16],[9,-9],[2,-10],[5,9],[7,-16],[-21,-12],[19,-1],[10,-5],[-20,-4],[-23,-29],[-9,-16],[-19,-22],[-9,-12],[1,-20],[28,7],[2,8],[14,12],[16,10],[6,10],[1,10],[13,7],[4,2],[7,-5],[3,-23],[-2,-7],[1,-13],[10,-6],[5,-13],[10,-5],[6,-15],[3,3],[5,-11],[9,11],[-2,4],[9,-4],[12,2],[4,-7],[0,-7],[6,2],[2,-6],[10,3],[23,2],[4,9],[9,4],[6,7],[-1,25],[-10,27],[3,16],[-2,14],[17,17],[-6,16],[11,16],[4,1],[7,-4],[5,-13],[0,-28],[6,-11],[10,3],[2,-15],[22,7],[1,5],[12,-15],[4,-12],[8,6],[0,6],[15,6],[2,-5],[9,2],[-7,13],[2,9],[-6,2],[15,14],[11,-23],[-3,-4],[3,-8],[13,5],[10,-6],[-4,-2],[7,-9],[4,-15],[0,-8],[5,-6],[-1,-5],[10,1],[0,-16],[6,-1],[5,0],[15,5],[25,10],[90,46],[24,15],[60,43],[5,7],[8,16],[-4,-8],[5,-6],[-5,-10],[11,-8],[6,-17],[20,-21],[2,-5],[11,-18],[-3,-8],[8,-8],[9,-24],[7,-5],[-16,-27],[-23,-27],[-3,-7],[6,-4],[62,37],[1,-1],[-10,-12],[-15,-11],[-7,-11],[-15,-15],[32,-24],[-7,-20],[-65,-65],[0,-1],[-28,-28],[-4,-7],[-30,-63],[31,-12],[7,12],[16,-12],[13,-17],[9,2],[22,25],[31,-24],[-12,-15],[15,3],[12,-4],[20,0],[-1,-1],[-1,-22],[-20,1],[-2,-79],[1,-24],[-77,0],[-2,-116],[2,-24],[4,-8],[22,12],[1,-37],[79,-1],[0,-49],[29,-18],[7,-5],[-10,0],[14,-11],[26,-26],[95,-131],[-9,-2],[-20,4],[-11,-1],[-7,-7],[-3,-11],[-4,0],[-4,-9],[-9,-4],[-1,-10],[-6,-10],[-9,2],[-5,11],[-9,3],[-15,19],[-1,6],[-54,13],[-27,-34],[-13,9],[-29,-18],[-22,11],[-2,3],[3,30],[-2,5],[6,-3],[35,0],[20,20],[0,34],[34,-1],[22,22],[9,10],[-11,1],[-1,3],[-1,35],[-24,2],[1,9],[10,13],[-2,35],[-40,24],[-8,2],[-23,13],[-13,6],[-4,5],[19,-8],[-14,9],[-26,0],[0,-17],[-14,3],[-13,-1],[0,-22],[-18,2],[-58,-2],[1,-34],[5,0],[0,-36],[-5,0],[1,-39],[24,0],[-4,-30],[13,0],[13,-8],[4,6],[-5,4],[8,0],[-4,-9],[-1,-1],[14,-12],[-9,-6],[-18,-2],[-1,4],[-7,-8],[-1,1],[-80,59],[-49,36],[-64,27],[-30,1],[-2,1],[-2,0],[2,4],[1,3],[-10,0],[-3,-4],[-4,0],[-11,3],[-51,77],[-42,69],[-51,107],[5,2],[23,-1],[-27,54],[25,0],[1,-13],[11,-7],[2,-21],[14,-13],[2,0],[67,0],[0,27],[111,-1],[0,27],[-52,0],[1,34],[-1,18],[-55,1],[-4,1],[0,37],[3,8],[15,14],[2,6],[1,13],[-1,6],[-18,-1],[-44,-5],[-23,7],[-31,-1],[-11,-5],[-11,0],[-15,6],[-15,1],[-11,-4],[-15,-1],[-10,3],[-1,6],[12,8],[-21,-9],[-6,-10],[-2,19],[0,5],[-16,61],[-1,1],[-12,24],[-1,0],[-16,29],[0,1],[-8,15],[-1,1],[-54,39],[-1,0],[-18,2],[-16,-7],[-15,-6],[-8,3],[-16,7],[-21,8],[-21,19],[-14,13],[-11,6],[29,-9],[5,2],[28,-3],[3,24],[1,16],[3,1],[16,40],[17,33],[5,13],[17,36],[2,3],[6,10],[1,6],[1,26],[-7,7],[-3,21],[-7,1],[-1,8],[5,11],[-8,53],[13,0],[-19,21],[-12,8]],[[9972,3872,0],[0,-35],[-12,-1],[4,5],[-5,16],[0,15],[12,0],[1,0]],[[9674,3848,0],[1,-5],[10,-11],[9,0],[1,-26],[-19,0],[-2,34],[0,8]],[[9674,3848,0],[0,2],[-22,39],[-2,9],[1,12],[18,13],[4,20],[1,-13],[13,-15],[0,-21],[-13,-1],[0,-21],[0,-24]],[[9491,5955,0],[2,0],[25,-4],[1,-2],[2,-9],[-14,8],[-13,5],[-3,2]],[[9478,5823,0],[2,-2],[1,-4],[-6,-7],[-5,-1],[-4,3],[10,9],[2,2]],[[8570,4586,0],[2,43]],[[8572,4629,0],[0,13],[43,16],[-3,-12],[-2,-17],[2,-40],[0,36],[38,0],[-1,47],[79,27],[76,26],[0,43],[0,108]],[[8804,4876,0],[0,63],[0,8],[152,0],[0,80],[1,88],[0,1],[0,47],[1,62],[0,3],[38,1],[1,20],[-2,58],[4,0],[0,74],[4,0],[65,59]],[[9068,5440,0],[48,44],[-1,-30],[39,0],[1,57],[20,3],[8,5],[-10,5],[-23,0],[-26,0]],[[9124,5524,0],[-7,1]],[[9117,5525,0],[-2,80],[0,48],[7,0],[8,-15],[1,-10],[15,-16],[43,9],[13,3],[71,28],[18,15],[7,-1],[14,6],[12,26],[-30,65],[-7,9],[14,-6],[3,-4],[42,-85],[1,-5],[1,-8],[95,-65],[21,-1],[-4,6],[-46,50],[0,25],[31,-11],[7,0],[41,-17],[4,1],[13,-5],[4,1],[26,-6],[16,-9],[10,-7],[7,-10],[8,-2],[16,-27],[8,-9],[3,-9],[31,-43],[26,-26],[13,-17],[47,-30],[16,0],[-13,11],[-17,4],[-8,7],[-22,9],[-6,8],[5,45],[-14,33],[0,12],[58,60],[-73,85],[-24,15],[2,3],[-39,30],[-7,9],[-16,1],[-5,5],[-7,0],[-14,7],[8,1],[-13,10],[-9,17],[-5,7],[-21,16],[-23,-25]],[[9478,5823,0],[-20,19],[-3,-15],[-10,20],[-16,17],[-10,1],[-6,9],[8,1],[8,-9],[8,4],[13,-19],[7,-7],[6,28],[-1,18],[-16,17],[-5,1],[-49,31],[5,11],[7,27],[15,21],[19,-10],[6,-13],[47,-20]],[[9491,5955,0],[-5,0],[1,-13],[4,-10],[-3,-17],[29,-11],[-3,-19],[-4,-5],[5,-13],[119,-103],[20,36],[18,-9],[11,20],[18,-2],[28,1],[2,0],[10,-1],[61,0],[3,1],[17,30],[-5,-34],[-4,-30],[5,-10],[26,-25],[61,-1],[5,-1],[-1,-22],[57,-27],[2,-5],[9,-1],[2,2],[0,4],[13,-8],[7,0],[0,-805],[-28,1],[-42,-1],[-1,-3],[3,-15],[-38,0],[0,-17],[-43,0],[-1,-12],[-5,-8],[-4,-16],[15,0],[0,-18],[-15,0],[-18,-24],[-6,-1],[0,-11],[96,-1],[1,-17],[8,0],[0,-10],[-5,-4],[3,-11],[13,6],[-1,-6],[-15,-2],[-4,-8],[0,-17],[3,-16],[-3,-9],[2,-16],[-10,-19],[1,-10],[-3,-11],[7,-13],[16,-10],[6,5],[17,0],[16,-5],[6,-6],[0,18],[27,-1],[0,-13],[2,-2],[0,-202],[-47,-1],[-1,-18],[-22,-1],[-36,-2],[1,-5],[-13,1],[0,-11],[-12,0],[0,-31],[-1,-4],[23,-1],[1,-17],[40,0],[0,9],[10,0],[0,9],[29,0],[0,9],[19,1],[0,-47],[9,0],[0,-37],[-5,-12],[5,1],[0,-343],[-27,0]],[[9972,3872,0],[-1,36],[-40,-1],[1,36],[-39,0],[-1,31],[10,5],[-11,0],[-40,-1],[-35,-1],[0,35],[-16,2],[-38,-3],[-7,6],[10,-29],[6,-13],[-33,-1],[-3,0],[-1,-35],[-19,0],[0,27],[-9,0],[-22,-8],[-11,-3],[0,18],[39,0],[3,-7],[7,0],[9,5],[-2,9],[-10,4],[0,24],[-3,2],[-32,1],[-44,1],[-1,4],[6,9],[-7,3],[-2,13],[-13,0],[1,8],[-2,12],[-13,13],[-15,31],[-7,13],[-14,16],[-9,6],[-15,15],[-9,4],[-13,10],[-14,8],[-14,16],[-5,8],[-9,7],[2,3],[-16,11],[-1,-11],[11,-3],[-15,-39],[3,-15],[-41,0],[-1,26],[-22,-13],[-13,-10],[-13,-3],[4,7],[8,-1],[-3,10],[-6,0],[-11,16],[1,26],[-5,-2],[-12,-18],[1,-9],[-8,-13],[0,-15],[-3,-11],[-8,-14],[-2,-8],[3,-28],[0,-11],[-59,1],[-8,-3],[-4,-9],[-2,-14],[-4,-4],[-7,16],[-5,4],[-16,6],[-22,1],[-24,16],[-4,10],[-9,2],[-45,-21],[-15,-13],[-2,9],[0,17],[-6,1],[-4,10],[4,5],[15,1],[4,6],[-34,1],[-1,26],[-37,-1],[-11,-9],[-1,14],[-5,0],[-19,0],[-12,-3],[-5,2],[0,-76],[-33,1],[-3,3],[0,-4],[0,-20],[8,-12],[13,1],[18,5],[6,-2],[0,-19],[-9,-8],[-7,1],[-6,-11],[-13,-1],[1,-17],[-5,0],[0,-19],[26,2],[-2,-31],[-8,2],[19,-16],[13,-19],[6,2],[10,0],[8,2],[16,-22],[-10,26],[1,0],[10,-22],[11,-11],[-1,-1],[2,-9],[-16,-14],[-6,-13],[3,-10],[-6,-10],[19,3],[3,-11],[12,-11],[7,-15],[9,-7],[2,-5],[6,-37],[5,-10],[18,-15],[10,-8],[27,-4],[3,-4],[-12,-3],[-5,5],[-13,0],[-15,8],[-9,-5],[5,-6],[11,-3],[15,4],[2,-6],[-9,-5],[-2,-13],[-5,-20],[7,-10],[22,-17],[15,-18],[13,-10],[7,3],[17,-2],[7,-3],[9,-13],[37,-26],[15,-19],[20,-6],[25,-18],[10,-5],[32,-3],[20,-12],[-3,-7],[26,-18],[14,-8],[14,-3],[19,-2],[21,0],[9,-2],[7,-2],[22,-10],[0,-14],[-4,-7],[-9,-2],[-8,6],[2,16],[-11,5],[-10,-3],[-28,0],[1,-13],[-11,-2],[-1,-71],[39,0],[0,-4],[-134,1],[-9,-12],[-13,-2],[11,49],[11,13],[3,15],[4,11],[-2,12],[2,9],[6,9],[0,8],[5,4],[5,16],[0,8],[-34,8],[-18,8],[-6,-6],[-3,-15],[0,-12],[-3,-11],[-9,2],[5,21],[4,19],[-4,10],[-10,3],[-15,-1],[-8,6],[-5,-3],[-8,-27],[2,-14],[10,-19],[-58,-1],[-1,34],[-23,0],[-11,10],[-22,31],[1,16],[-30,1],[11,5],[-13,0],[9,12],[-13,-1],[-7,-7],[-8,3],[1,-7],[-10,-3],[1,-9],[-6,-10],[-24,1],[4,5],[11,2],[10,16],[9,1],[3,11],[-3,13],[16,11],[-12,2],[-9,13],[-2,-5],[5,-11],[-22,-4],[-2,7],[4,5],[-8,-1],[-18,4],[-13,5],[-18,0],[-5,-3],[2,10],[2,58],[7,15],[11,8],[7,10],[-3,4],[-9,-12],[-7,3],[12,24],[-18,-13],[0,19],[-2,-3],[-19,0],[-7,8],[-12,0],[-6,9],[-9,-2],[-12,2],[-28,19],[-5,1],[-26,20],[9,12],[-68,-2],[0,45],[-5,3],[1,8],[-8,-4],[-15,8],[-14,12],[2,-5],[-4,2],[2,12],[-12,-7],[-50,26],[-8,8],[-66,66],[-20,19],[0,-6],[0,-21],[-10,0],[-17,5],[1,10],[-6,0],[1,14],[6,0],[0,6],[15,6],[-46,32],[-19,18],[4,17],[0,12],[-99,-5],[-44,-1],[-1,43],[-18,4],[-6,48],[-24,-5],[-7,4],[-36,-33],[-29,-12],[-2,2],[17,9],[11,30],[4,26],[14,10],[17,6],[17,-7],[13,-13],[15,0],[1,1],[15,5],[6,7],[10,-5],[23,4],[21,1],[21,-6],[11,2],[40,7],[-14,8],[3,3],[6,-4],[7,10],[-6,5],[7,6],[6,-5],[6,5],[-17,16],[-33,-2],[31,8],[108,-8],[5,-1],[6,13],[-25,21],[-21,-1],[-6,2],[-18,15],[-16,1],[-21,6],[-5,8],[14,12],[37,35],[-2,6],[7,8],[20,12],[0,9],[-6,8],[-3,11],[-10,4],[-10,17],[-30,0],[0,70],[-19,0],[7,8],[12,9],[6,2],[4,2],[12,10],[-22,0],[0,24],[10,0],[7,2],[4,5],[0,11],[-15,0],[-6,-3]],[[9999,3585,0],[-13,0],[0,8],[13,0],[0,-8]],[[9999,3611,0],[-13,0],[0,18],[13,0],[0,-18]],[[9999,3647,0],[-14,-1],[0,12],[7,0],[0,17],[-20,0],[0,18],[-25,0],[-6,5],[-11,5],[1,13],[10,4],[1,6],[11,3],[0,-18],[19,0],[0,18],[20,0],[0,-27],[7,1],[0,-56]],[[3074,6226,0],[8,-3],[12,3],[21,-1],[18,-12],[24,-9],[-23,-2],[-18,4],[-9,6],[-8,6],[-10,3],[-3,-1],[-3,0],[-4,2],[-4,3],[-6,2],[5,-1]],[[2857,6355,0],[0,8],[9,0],[0,-26],[-10,0],[1,18]],[[3165,6017,0],[-17,-21],[30,-16]],[[3178,5980,0],[-26,6],[-6,4],[-8,1],[-15,-26],[-3,-22],[2,-9],[11,-21],[5,-4],[22,-9],[30,-2],[16,1],[10,-1],[2,-7],[6,-2],[1,-2],[-33,-1],[-13,-3],[0,-6],[-14,-5],[14,-4],[87,11],[-1,1],[9,2],[21,-11],[0,-12],[4,-5],[25,2],[12,-5],[14,0],[14,5],[16,-4],[1,-4],[-9,-15],[13,2],[14,-2],[11,-4],[0,-16],[7,-4],[-2,-10],[-8,-8],[6,-4],[-5,-5],[14,1],[28,15],[11,-1],[13,-7],[8,-10],[13,-34],[7,-6],[7,-9],[1,-38],[3,-14],[3,-27],[1,-41],[-9,0],[14,0],[72,-1],[-18,-66],[-19,0],[0,-57],[7,-3],[24,-17],[13,-5],[13,2],[0,-9],[19,-1],[0,-18],[20,0],[0,-18],[-19,0],[0,-18],[-20,0],[1,28],[-9,3],[-11,0],[0,5],[-28,0],[-9,-7],[-7,8],[-81,40],[-13,-7],[13,-8],[12,-18],[5,-14],[9,-12],[0,-8],[-7,-3],[-12,2],[-10,4],[-29,9],[2,3],[24,8],[4,4],[0,7],[-17,29],[6,5],[11,4],[4,8],[-39,0],[-21,9],[-24,-3],[-42,2],[-24,-4],[-20,2],[-65,-63],[-107,-66],[0,5],[-30,0],[22,3],[9,7],[28,8],[-5,8],[3,7],[-9,12],[9,10],[-11,-1],[-3,8],[4,2],[-12,6],[-6,-5],[-17,-2],[-10,-11],[-7,4],[-3,7],[-12,-9],[-6,5],[-6,-4],[0,6],[-15,-16],[-2,-16],[-7,-8],[-17,11],[-2,3],[4,17],[17,19],[1,11],[7,13],[0,19],[-35,4],[3,-17],[-2,-4],[-7,3],[-7,-7],[-4,9],[-13,6],[-8,1],[-19,-10],[-12,6],[-5,-6],[-10,2],[-3,-8],[6,-6],[21,1],[7,-1],[9,4],[7,-8],[-3,-13],[7,-3],[-6,-12],[-5,-4],[-6,-11],[-6,-6],[-19,1],[-6,-13],[-4,5],[-14,3],[-22,1],[-8,4],[-18,-2],[0,-6],[-8,6],[-8,2],[-2,5],[9,24],[6,5],[4,8],[15,-2],[4,5],[0,8],[5,-1],[1,-7],[-7,-7],[9,-6],[8,1],[7,11],[10,5],[6,8],[0,13],[1,5],[13,-10],[-2,17],[11,3],[3,7],[-11,4],[2,5],[6,1],[10,-6],[-3,-9],[15,0],[22,-10],[6,1],[1,0],[-20,11],[-9,1],[2,19],[8,11],[-11,18],[-7,0],[-2,-12],[-24,13],[0,36],[-29,0],[-4,1],[-13,-1],[-35,-9],[-12,-1],[-19,8],[-21,-4],[-65,4],[-38,-9],[-26,-2],[-19,-17],[-38,-9],[-19,2],[-18,10],[-11,13],[-12,-6],[-12,-7],[-34,4],[-18,-6],[-60,0],[-6,2],[-32,-2],[-135,2],[-39,-1],[0,12],[-15,5],[-4,-9],[-7,-2],[-47,13],[-9,-3],[-23,-1],[-3,6],[-1,13],[-7,5],[6,8],[26,28],[23,23],[18,15],[4,0],[4,10],[8,5],[-2,3],[9,3],[7,-10],[-5,-13],[11,-1],[13,5],[8,6],[8,-13],[8,0],[4,-5],[9,4],[3,-3],[-20,-16],[-11,-26],[7,-29],[5,1],[0,-7],[-5,-1],[-1,-7],[5,-5],[32,-11],[22,-2],[28,4],[16,5],[19,-2],[13,4],[3,-2],[24,-7],[15,4],[3,3],[-1,13],[-7,4],[-8,0],[-10,-3],[-11,4],[-8,14],[2,5],[-3,7],[3,9],[-5,4],[15,-3],[0,7],[5,11],[7,4],[17,2],[-3,14],[4,5],[9,-1],[-2,5],[2,12],[8,-3],[0,8],[8,-3],[-2,10],[9,2],[18,-11],[9,-1],[14,3],[36,23],[-1,15],[5,16],[3,6],[14,10],[17,18],[10,3],[0,-6],[34,-27],[22,-12],[18,-7],[-9,4],[0,6],[9,1],[10,9],[3,12],[6,-6],[3,-10],[5,0],[0,-18],[8,0],[0,14],[7,0],[1,16],[6,8],[-10,7],[-15,4],[8,3],[18,17],[-9,2],[-16,10],[-10,2],[16,3],[12,11],[0,5],[7,5],[-11,8],[0,6],[3,-1],[1,-2],[14,-9],[6,-4],[10,0],[11,18],[20,1],[0,-6],[21,5],[9,-10],[21,7],[16,-12],[17,8],[18,-10],[10,-3],[22,-1],[-4,7],[-9,-3],[-10,4],[-9,-1],[-3,6],[10,5],[9,-1],[3,3],[-15,0],[2,5],[-7,3],[-5,-8],[-19,0],[-8,-5],[-8,4],[-4,6],[11,9],[5,8],[-13,5],[3,10],[12,11],[14,4],[0,5],[10,6],[7,-5],[19,1],[14,3],[-6,26],[7,23],[-18,5],[-2,-6],[-11,0],[-5,-8],[-12,4],[-9,-8],[-16,-1],[-40,-16],[2,0],[-2,-18],[-24,3],[-3,6],[4,16],[-1,23],[-51,-7],[0,16],[-3,10],[-18,2],[24,35],[-4,17],[-1,10],[6,16],[6,-1],[1,13],[7,19],[-11,-3],[4,11],[8,4],[2,15],[-12,13],[-26,-7],[-11,14],[11,5],[49,27],[8,2],[103,23],[7,1],[49,0],[-1,12],[-8,6],[9,16],[-1,-7],[14,6],[5,9],[-6,5],[7,18],[-2,22],[-3,8],[-14,1],[-13,11],[-4,2],[-32,-1],[-62,-17],[-3,-11],[-20,-9],[7,9],[5,2],[1,8],[-10,3],[8,15],[0,5],[135,0],[-1,-7],[7,-19],[0,-6],[16,-8],[15,8],[13,-13],[5,2],[0,8],[90,0],[-10,13],[-8,5],[29,5],[9,12],[42,0],[0,-24],[10,-5],[4,-8],[-11,-13],[-17,-3],[-6,-11],[-12,0],[8,6],[-15,0],[-6,-14],[-19,0],[-45,-4],[0,-5],[15,-2],[-8,-11],[-10,-5],[-1,-8],[-14,-1],[-8,7],[-4,1],[1,-15],[4,-11],[11,-21],[33,-44],[3,-15],[19,12],[14,1],[0,-6],[-8,-3],[0,-6],[-19,0],[-12,-4],[-12,-6],[-27,-2],[-14,-5],[1,-16],[-108,1],[-2,-20],[12,1],[3,3],[23,-4],[4,2],[8,-8],[25,-10],[19,0],[-7,-8],[12,-5],[-1,-2],[-2,-12],[0,-1],[6,1],[6,-1],[3,9],[107,-30],[5,-2],[0,-4],[-4,-8],[9,15],[18,12],[5,8],[-9,5],[2,6],[11,0],[13,8],[7,0],[8,0],[7,2]],[[8496,3360,0],[2,6],[2,6],[4,5],[1,-3],[2,-3],[-8,-8],[-3,-3]],[[7989,2963,0],[30,-5],[64,-8],[1,0],[-4,4],[5,3],[5,9],[7,11],[0,2],[7,13],[-4,4],[-4,1],[1,0],[10,5],[2,-2],[2,-1],[-1,3],[1,3],[6,15],[0,2],[11,18],[32,42],[31,39],[5,10]],[[8196,3131,0],[10,18],[13,11],[1,8],[53,62],[75,93],[17,20],[9,-3],[13,1],[2,-1],[3,0],[4,-2],[4,-2],[1,-1],[5,2],[7,-8],[12,1],[7,-4],[-1,8],[-11,20],[-3,12],[6,5],[-10,6],[0,12],[9,-13],[7,-3],[2,-7],[13,-13],[12,-6],[19,1],[13,8],[5,8],[3,-4]],[[8496,3360,0],[1,-8],[-7,-9],[-6,0],[0,-14],[-21,14],[-8,-3],[-17,2],[17,-16],[1,-9],[4,-7],[-17,-8],[5,-4],[6,-2],[12,-3],[5,-5],[16,-14],[16,-18],[15,-7],[5,-6],[4,-12],[0,-9],[-9,-28],[-3,-15],[15,3],[4,-7],[20,-7],[-13,-23],[2,-2],[39,-11],[-3,-5],[3,-8],[8,-15],[-3,-36],[-5,-11],[9,-11],[21,19],[5,-1],[30,24],[0,6],[15,10],[2,21],[-2,5],[5,17],[7,12],[-5,28],[1,12],[6,12],[5,-6],[18,0],[13,-3],[10,6],[2,-6],[-5,-7],[0,-7],[-6,-9],[-11,-4],[-5,-6],[1,-14],[-4,-18],[-11,-25],[-10,-8],[3,0],[7,-2],[12,6],[11,2],[18,0],[5,3],[8,4],[3,6],[37,25],[7,2],[7,5],[5,7],[2,2],[5,-25],[-35,0],[-2,-11],[14,3],[12,-4],[13,-33],[15,-15],[1,-7],[-9,-16],[-11,-13],[-9,6],[-3,-19],[5,-28],[5,-4],[-6,-4],[2,-5],[-9,-24],[14,-14],[-1,-9],[-16,-14],[-10,-15],[-3,-14],[2,-10],[-3,-14],[-4,-2],[-9,8],[-2,0],[-2,-11],[-6,-4],[-15,-41],[-7,-6],[-1,-10],[6,-3],[-1,-9],[6,-3],[4,-17],[-6,-20],[-3,-4],[-4,-15],[5,-2],[2,-17],[3,-6],[-4,-8],[3,-8],[-5,-8],[3,-5],[-5,-6],[4,-12],[-2,-24],[0,-18],[-12,-11],[-15,-17],[-10,0],[-8,13],[-9,5],[-24,-7],[-20,27],[-25,16],[-4,1],[-11,9],[4,8],[-3,22],[-8,12],[8,23],[8,9],[0,8],[5,8],[9,8],[5,0],[-6,1],[-2,12],[-4,-3],[1,14],[18,12],[1,6],[15,4],[-5,5],[10,-3],[16,4],[13,-5],[2,10],[-9,5],[5,12],[5,-1],[-1,24],[2,12],[-2,15],[-9,6],[1,12],[9,1],[-4,14],[3,23],[3,9],[-2,22],[0,17],[-1,3],[-10,-11],[-18,-3],[-10,-10],[-4,-10],[-16,-12],[2,13],[-4,-14],[-1,-2],[-6,-6],[-19,-11],[-21,-30],[-13,-11],[-9,-16],[-6,-8],[-6,-14],[-12,-16],[-8,-24],[14,6],[8,-4],[-3,-10],[-1,-31],[-4,-17],[17,-6],[12,-1],[9,-25],[-2,-10],[-7,1],[2,-6],[-5,-12],[-1,-14],[-5,-15],[0,-8],[-25,7],[-11,-1],[-14,-16],[4,-3],[-4,-19],[-4,-3],[2,-10],[6,-1],[-2,-13],[5,-5],[-6,-5],[-5,-10],[-10,-2],[1,-25],[1,-7],[17,-40],[3,-21],[-26,-12],[-20,-13],[-13,3],[-1,3],[-19,6],[-2,-5],[-15,-6],[-5,3],[-1,-8],[69,-47],[0,-8],[13,9],[0,7],[6,2],[0,11],[5,-1],[4,-11],[6,0],[11,13],[9,3],[1,-19],[-14,-21],[-2,-10],[3,-23],[30,-67],[-5,-6],[0,-1],[10,-21],[7,-21],[8,-15],[11,-7],[11,17],[27,-21],[15,16],[19,17],[1,0],[9,-2],[2,5],[10,4],[4,-3],[2,6],[14,8],[10,8],[6,0],[4,-19],[4,-12],[0,-5],[4,0],[16,0],[0,-71],[-20,0],[-1,-16],[-4,-5],[22,-14],[14,-5],[-10,-13],[7,-1],[-4,-16],[-8,-7],[-18,3],[-10,-39],[-44,-189],[-13,-52],[-3,-12],[2,1],[8,6],[4,16],[6,17],[14,19],[14,23],[16,0],[14,3],[4,12],[0,-11],[8,-2],[11,27],[1,41],[13,10],[10,-17],[7,-2],[44,6],[15,-2],[19,-6],[-2,-8],[-8,-2],[6,-17],[-4,-4],[13,2],[32,-4],[17,6],[8,2],[9,-5],[8,2],[2,-8],[-12,-12],[2,-25],[13,-18],[0,-12],[-6,-16],[2,-7],[27,-3],[17,1],[10,-5],[-2,-4],[12,-7],[10,9],[19,-9],[10,8],[7,1],[-2,-17],[-9,-5],[24,-13],[9,-6],[21,-8],[16,-8],[24,-6],[7,-6],[17,-8],[-6,-8],[9,-7],[22,-5],[12,-2],[-11,-12],[-6,7],[-11,-1],[-31,19],[-10,9],[12,8],[-4,3],[-27,8],[-34,14],[-38,20],[-6,-3],[-16,3],[-5,6],[-5,-2],[-6,4],[-6,-1],[-8,6],[-16,2],[-10,-5],[-12,0],[-7,-5],[1,8],[-22,0],[-13,-7],[-10,11],[-19,-17],[-12,-6],[-16,-6],[-24,2],[-22,-1],[-13,-3],[6,0],[8,-10],[6,-2],[-2,-7],[6,0],[-2,-5],[12,-8],[15,-21],[-5,-12],[-10,-9],[-6,8],[-15,10],[-13,12],[-14,7],[-9,3],[-26,11],[-12,-3],[-32,14],[-9,6],[-17,17],[-5,7],[-9,-5],[-8,1],[-5,-19],[-11,24],[-14,32],[-2,5],[-25,33],[-21,26],[-21,23],[-22,28],[-17,13],[-25,30],[-1,0],[-48,42],[-13,8],[-23,19],[-9,8],[-24,16],[-24,12],[-44,30],[-14,8],[-11,6],[-9,4],[-14,1],[-2,0],[-21,-1],[-2,-13],[-5,1],[-39,-2],[26,-7],[-4,-3],[-40,11],[-4,8],[-11,-2],[-7,2],[-4,-2],[-23,-2],[-3,4],[-1,5],[0,5],[4,3],[-2,6],[-23,42],[-6,2],[-17,40],[-4,9],[-24,6],[-7,2],[-4,4],[2,2],[1,2],[-1,3],[-4,6],[-4,2],[-4,1],[-2,-2],[-4,4],[-5,19],[-3,8],[-28,27],[-2,2],[-21,31],[-11,17],[-6,8],[-21,11],[-8,10],[-16,26],[-4,3],[-13,12],[-1,2],[-35,33],[-2,3],[-33,45],[-17,5],[-17,6],[-39,12],[-25,12],[-3,11],[-17,7],[-10,-5],[-6,3],[-16,10],[-6,4],[0,5],[13,6],[-28,24],[-14,13],[19,21],[59,-50],[-1,5],[65,-52],[11,13],[24,-14],[11,10],[-4,7],[6,2],[4,-7],[-2,-10],[8,-2],[24,24],[8,15],[-13,10],[12,-2],[15,20],[7,4],[21,-1],[4,6],[0,10],[8,7],[17,0],[6,-3],[-3,-17],[-7,-11],[1,-8],[-5,-9],[0,-10],[3,-3],[4,15],[13,7],[19,5],[10,-8],[9,-16],[7,-6],[-4,9],[1,4],[-9,28],[-1,15],[2,20],[-2,24],[3,28],[-1,12],[-9,4],[0,11],[-19,11],[-27,-26],[-5,-2],[-1,10],[9,28],[0,8],[-4,18],[-4,22],[13,31],[3,3],[-1,3],[0,6],[6,1],[1,9],[26,27],[11,16],[5,8],[16,19],[9,29]],[[6318,8021,0],[0,13],[0,5],[10,0],[0,-18],[-5,0],[-5,0]],[[6205,8415,0],[11,2],[-1,17],[14,0],[0,-18],[13,1],[14,0],[0,-19],[-49,0],[-2,17]],[[6250,7474,0],[-1,0],[-10,0],[-10,-12],[-14,1],[-8,-16],[-22,-2],[-15,11],[0,17],[19,1],[0,-9],[10,0],[0,9],[10,0],[0,9],[-8,0],[0,9],[8,0],[0,16],[32,-18],[7,-8],[2,-8]],[[6065,7612,0],[-1,-11],[9,-7],[31,-22],[0,-34],[17,-4],[-101,1],[-46,53],[15,0],[20,-14],[13,0],[3,2],[0,50],[-2,8],[16,-7],[3,-4],[23,-11]],[[6318,8021,0],[1,-18],[-30,0],[0,-18],[-10,0],[0,18],[-14,-1],[5,-35],[4,0],[64,0],[159,0],[79,0],[20,0],[20,0],[0,-71],[-38,0],[-1,-36],[-47,-1],[-5,-3],[0,-33],[-8,0],[1,-50],[-8,1],[1,5],[-7,2],[-5,-23],[0,-6],[-80,1],[-40,-2],[0,-36],[-40,-1],[0,-36],[60,1],[0,18],[19,0],[0,-18],[160,0],[20,0],[0,-16],[-1,-5],[-19,0],[0,-15],[5,1],[233,-4],[0,-68],[-1,-5],[-5,-9],[-14,-13],[-3,-12],[1,-51],[-34,-6],[-13,-1],[-65,0],[21,-17],[-18,0],[0,-9],[30,0],[0,-14],[4,-1],[10,16],[5,4],[-9,0],[0,4],[9,0],[0,-4],[10,0],[1,4],[9,0],[-1,-18],[-19,0],[-2,-4],[40,-33],[4,-3],[19,-31],[35,0],[0,8],[3,10],[19,0],[0,18],[10,22],[4,5],[15,7],[10,0],[0,-16],[19,0],[0,36],[5,0],[0,9],[5,-9],[10,0],[1,18],[4,18],[15,0],[0,37],[22,1],[2,-2],[-1,82],[-10,1],[1,9],[9,-1],[1,19],[-19,0],[0,17],[1,1],[19,0],[0,18],[11,0],[-1,-18],[29,0],[1,18],[39,0],[-2,-36],[21,0],[19,1],[-1,-37],[119,0],[1,-18],[-20,0],[0,-17],[-30,0],[0,-19],[10,0],[1,-18],[-71,0],[2,-74],[-31,0],[-18,3],[-12,-1],[-18,3],[1,-76],[-75,0],[0,-21],[16,0],[0,-15],[-53,0],[-2,-7],[0,-11],[-4,-3],[-8,6],[-17,4],[-11,-1],[1,-6],[-10,-1],[0,6],[-25,-12],[-3,-4],[-2,10],[18,1],[8,6],[13,2],[0,9],[-49,1],[-14,3],[-7,5],[-3,-1],[-23,16],[-32,17],[-19,12],[-9,-4],[-14,1],[-6,-5],[-19,0],[0,9],[-20,0],[9,-12],[-16,-1],[-13,7],[-16,3],[-12,-1],[-14,6],[-16,3],[0,13],[-13,0],[-1,-9],[-5,-6],[-1,15],[-39,0],[0,32],[-30,-7],[-15,-9],[-16,-19],[-31,-34],[-21,6],[-6,5],[-15,18],[-20,31],[1,-7],[10,-15],[-9,-4],[-12,0],[-9,4],[-5,9],[-19,13],[-18,6],[-9,2],[-6,7],[-9,6],[-8,-1],[-2,0],[-4,1],[-16,7]],[[6250,7474,0],[10,2],[1,1],[5,2],[3,0],[7,-1],[37,-20],[8,-2],[-2,17],[7,-1],[11,-16],[20,2],[-25,39],[-4,11],[1,11],[-4,15],[-49,-1],[-8,-6],[-11,2],[1,4],[-9,0],[-6,44],[0,25],[-12,-3],[-13,-7],[-1,-10],[-25,-3],[-26,0],[-7,2],[-18,3],[-19,6],[-10,8],[-25,6],[-22,8]],[[6065,7612,0],[0,47],[1,4],[-16,-5],[-31,3],[-1,13],[-4,4],[-12,4],[-6,8],[4,13],[-15,23],[-9,7],[-4,9],[-16,16],[-6,5],[-20,8],[-12,8],[-12,18],[-10,-4],[-5,9],[-6,3],[-14,3],[-6,3],[-13,4],[-11,8],[-14,-2],[-8,-6],[-9,0],[-3,3],[-8,24],[-3,12],[-10,17],[0,22],[-29,-1],[-3,-6],[-12,6],[-15,4],[-12,10],[-5,11],[-1,48],[-20,0],[2,-4],[6,-4],[0,-8],[-24,0],[0,13],[-3,0],[0,3],[-36,0],[-4,0],[0,12],[-42,60],[119,0],[0,110],[40,-2],[-1,36],[39,0],[-1,72],[78,1],[1,-72],[78,-1],[-1,73],[60,0],[13,0],[76,0],[-4,14],[0,40],[6,18],[7,0],[86,-1],[13,0],[-1,22],[1,-4],[15,1],[-5,54],[10,-72],[25,-1],[253,2],[47,3],[12,-2],[0,-16],[-9,-10],[16,-9],[0,-20],[7,0],[0,-17],[36,0],[0,-18],[30,0],[0,-9],[-10,0],[1,-9],[-11,0],[1,-36],[-41,0],[2,-109],[-179,0],[-2,14],[-6,1],[0,-11],[-7,0],[0,14],[-5,0],[0,-18],[-19,0],[-2,-21],[-6,0],[-5,8],[-7,0],[0,-5],[-40,-1],[1,-35],[19,0]],[[9440,3197,0],[8,-1],[15,3],[38,-4],[15,3],[8,17],[0,15],[4,7],[-7,5],[-12,1],[-15,4],[-14,0],[-16,6],[-11,7],[-2,7],[0,2],[16,-7],[17,0],[19,11],[11,2],[-14,12],[-2,6],[8,19],[5,6],[6,17],[4,18],[4,7],[4,2],[14,-4],[9,-5],[9,-17],[15,23],[1,6],[15,-6],[21,-23],[9,-8],[-1,-18],[7,-3],[0,-5],[-8,1],[-6,-8],[-18,-9],[-6,-7],[0,-10],[14,-5],[5,10],[9,8],[10,-8],[13,8],[14,-11],[-1,-7],[7,4],[11,2],[8,-4],[6,5],[29,3],[15,-13],[19,18],[-57,49],[-6,9],[10,1],[5,2],[14,-19],[44,-32],[-41,32],[28,1],[1,9],[5,0],[0,10],[-2,23],[-1,29],[11,-6],[1,-5],[12,3],[9,-5],[-4,-6],[1,-7],[9,-2],[1,-15],[13,0],[1,-4],[10,1],[0,-24],[-10,0],[0,-17],[-12,-14],[13,-11],[37,37],[10,16],[9,10],[9,5],[6,2],[3,1],[0,-11],[-8,0],[0,-6],[2,0],[3,0],[2,0],[4,0],[4,-1],[0,-2],[24,0],[0,18],[-10,8],[0,9],[16,0],[-1,56],[-7,8],[0,8],[11,1],[-4,4],[0,15],[4,-1],[-2,17],[9,-7],[15,1],[4,6],[2,-6],[21,-3],[10,0],[8,19],[-10,3],[0,6],[10,4],[3,6],[3,-7],[1,-27],[7,-1],[0,-145],[-51,-1],[0,9],[10,0],[-1,11],[-4,7],[1,-10],[-26,-4],[-11,-20],[-10,-7],[-7,-10],[-4,-2],[-4,-12],[-29,-18],[-3,-8],[-9,-4],[-5,-7],[-6,0],[-6,-3],[7,12],[1,11],[-9,12],[-28,-25],[18,-15],[-6,-8],[24,-29],[11,-8],[-4,-4],[7,-8],[16,-7],[26,-12],[23,-14],[27,-21],[13,-12],[4,6],[-4,6],[1,8],[-5,2],[4,6],[12,1],[-1,-6],[10,4],[13,14],[-8,0],[0,68],[11,0],[-5,16],[6,3],[1,0],[0,-419],[-2,-2],[-25,17],[-9,-11],[4,-9],[-8,-1],[6,-17],[-2,-8],[-7,-3],[-4,4],[-11,0],[-2,5],[31,39],[-2,2],[-23,-8],[-11,28],[-5,2],[-11,14],[7,9],[-9,5],[-9,-9],[0,-11],[-77,0],[2,66],[-33,23],[-24,-2],[-4,6],[-18,13],[-29,-1],[-5,-8],[1,-8],[-10,-8],[-8,0],[11,13],[-5,8],[-1,14],[-5,0],[-2,10],[4,9],[-7,6],[-1,17],[-17,10],[-13,-6],[-20,2],[-17,9],[-5,7],[-11,-5],[-5,14],[-8,10],[0,-22],[-18,-1],[1,32],[1,10],[-14,7],[9,12],[-18,13],[-8,-9],[-8,6],[-4,7],[4,6],[-4,4],[-5,-6],[-5,4],[4,5],[-11,7],[-3,9],[5,5],[-8,9],[-20,4],[-14,1],[-9,5],[-8,1],[-11,-5],[-15,2],[-1,20]],[[9597,3133,0],[12,-15],[13,-3],[5,-9],[5,0],[21,-20],[8,-13],[17,-7],[10,-11],[15,-12],[35,-16],[11,-7],[29,-24],[10,-5],[11,-12],[3,5],[7,4],[23,-5],[4,-7],[25,1],[1,3],[-15,13],[6,9],[77,-50],[24,-17],[4,-8],[35,44],[3,3],[-1,32],[-3,13],[-9,17],[-13,33],[-21,2],[4,14],[0,21],[-13,1],[-6,-16],[-50,8],[-18,15],[1,7],[-5,1],[-6,3],[17,10],[15,2],[-15,3],[-7,-4],[-8,1],[7,1],[12,8],[7,0],[2,10],[3,-5],[-2,-9],[6,-4],[13,1],[0,-7],[3,15],[-8,11],[-26,-1],[-9,-5],[-8,1],[2,-10],[-11,-9],[-8,2],[-3,-11],[-6,-1],[-9,2],[-18,12],[-27,21],[-27,16],[-42,25],[-25,9],[-10,0],[-9,-4],[-18,-21],[5,-4],[-9,1],[-10,-7],[-22,-17],[6,-4],[-5,-6],[-5,2],[-10,-16]],[[9657,8414,0],[6,16],[48,0],[6,2],[14,46],[-19,7],[-19,16],[26,-11],[2,15],[20,0],[-1,35],[80,0],[-1,-45],[-3,-9],[-13,-18],[-5,-22],[-12,-24],[-18,-42],[-15,-16],[-34,25],[-9,3],[-32,1],[-21,-3],[-4,9],[4,15]],[[9124,5524,0],[0,-2],[-8,-16],[-13,-7],[0,-8],[-18,-5],[-25,-13],[28,-6],[-20,-9],[-22,-3],[-2,23],[0,31],[-6,15],[19,0],[1,48],[-17,0],[0,8],[10,-2],[6,4],[1,15],[19,0],[22,5],[0,-78],[18,1]],[[8394,4591,0],[54,1],[0,8],[8,1],[0,27],[20,0],[10,0],[86,1]],[[8570,4586,0],[-74,-10],[-1,16],[-19,0],[0,-19],[-4,0],[0,-56],[0,-1],[-24,1],[-14,-6],[-10,6],[-5,15],[-5,1],[0,25],[-19,-6],[0,3],[-1,36]],[[3997,5400,0],[60,1],[2,-5],[10,-6],[-14,-24],[5,0],[-11,-11],[4,-1],[10,-10],[2,-8],[9,3],[-6,-8],[-8,-3],[-9,-17],[-6,-3],[-8,5],[0,6],[-12,13],[-8,1],[-3,20],[3,9],[-6,7],[6,0],[10,12],[4,11],[-3,-3],[-9,8],[-9,2],[-5,-6],[-7,2],[-1,5]],[[3843,5415,0],[-1,-1],[1,-5],[-13,6],[-8,5],[10,-1],[7,-4],[4,0]],[[3793,5013,0],[8,4],[16,-1],[-3,-7],[-8,5],[-13,-1]],[[3545,4993,0],[-1,0],[-19,0],[-2,6],[10,3],[6,21],[1,-13],[-2,-11],[7,-5],[0,-1]],[[3545,4993,0],[28,1],[0,-6],[-6,-6],[2,-5],[-2,-14],[4,-6],[-1,-10],[9,0],[29,4],[8,0],[14,7],[-8,4],[-5,8],[-3,19],[5,1],[-5,7],[56,3],[1,4],[2,2],[2,0],[1,0],[2,0],[2,-1],[2,-2],[0,-2],[100,7],[8,3],[1,1],[2,1]],[[3793,5013,0],[-1,-30],[-6,-19],[2,-12],[16,2],[8,3],[10,8],[16,10],[19,6],[35,3],[8,-6],[3,9],[0,15],[-13,14],[38,0],[65,-5],[4,-4],[124,0],[-12,-5],[-13,4],[1,-14],[-4,-3],[19,-5],[0,-5],[11,-11],[3,8],[5,-9],[18,9],[19,1],[-9,3],[8,3],[4,-3],[8,3],[1,-6],[22,2],[12,-2],[6,0],[15,-3],[19,5],[5,1],[1,6],[-6,12],[-3,2],[7,5],[-1,-1],[0,-2],[29,15],[4,7],[10,0],[0,13],[22,-7],[4,-3],[1,-10],[9,7],[6,-9],[7,0],[-4,12],[2,8],[10,5],[8,-6],[-4,-5],[14,-15],[2,0],[0,17],[-2,11],[13,2],[-1,9],[-6,1],[-3,52],[-9,3],[-20,2],[-7,12],[-14,13],[-1,6],[-10,18],[-17,-4],[-16,7],[-7,6],[-1,9],[2,7],[10,8],[9,3],[35,-14],[25,-15],[2,-8],[9,3],[5,11],[11,4],[7,7],[10,-8],[10,-3],[3,-16],[32,-61],[-2,-4],[11,-3],[1,9],[6,-4],[24,-36],[0,-3],[22,1],[-3,10],[8,2],[0,-7],[16,0],[5,-3],[0,-9],[4,-11],[12,4],[5,-9],[8,1],[10,8],[0,11],[11,7],[0,14],[0,-1],[1,1],[1,2],[0,3],[-3,1],[0,5],[1,5],[4,9],[5,10],[-2,3],[8,3],[-16,24],[-14,9],[-1,5],[15,-8],[5,1],[-7,5],[-7,14],[10,5],[0,6],[-10,19],[5,5],[5,-1],[-2,-5],[2,-7],[7,-11],[16,3],[-2,-10],[10,-17],[20,-10],[0,-8],[4,9],[9,-9],[4,7],[-10,8],[-2,7],[15,-2],[-5,11],[-5,3],[-1,8],[-5,1],[-5,10],[34,5],[12,7],[17,-13],[-3,8],[-9,8],[0,15],[-5,11],[5,9],[0,6],[-7,4],[-6,9],[1,6],[-10,16],[-8,20],[-11,6],[-5,-1],[-5,6],[1,21],[6,13],[-18,34],[-7,15],[-2,17],[4,6],[-4,4],[11,0],[3,7],[-22,-7],[-7,1],[-4,-8],[-14,8],[-7,9],[-8,-3],[-12,-7],[-24,-1],[-2,1],[-12,-5],[-21,2],[-25,6],[-4,6],[-6,-5],[-2,7],[-12,-4],[-10,2],[1,-6],[-10,-4],[-2,-7],[-11,-5],[-15,-3],[-7,3],[-18,-2],[-6,5],[5,6],[-10,-1],[-4,-8],[-4,2],[-10,15],[-18,6],[-6,-4],[-39,17],[-8,-9],[-1,-11],[-11,-14],[-13,-12],[-15,-12],[-5,-9],[6,-10],[10,-3],[11,5],[9,-5],[24,0],[-17,-30],[-50,-90],[-7,-2],[-4,-7],[8,3],[-48,-85],[-6,0],[3,-6],[-6,-7],[-6,-1],[3,-5],[-10,0],[-20,12],[6,9],[-1,8],[8,6],[0,4],[12,7],[-5,1],[0,13],[-3,7],[3,2],[6,-6],[3,6],[9,-3],[-6,19],[-12,5],[2,6],[7,0],[1,12],[-3,5],[7,14],[19,23],[8,-2],[14,5],[-4,10],[4,7],[2,14],[-4,1],[0,11],[7,11],[-6,8],[-1,14],[1,12],[6,14],[-4,3],[-6,-9],[-6,-2],[-7,9],[-13,6],[-8,8],[9,11],[-9,3],[5,8],[-1,6],[3,12],[-1,13],[-10,14],[-4,1],[-6,11],[-9,-4],[-3,-22],[-11,-11],[-5,-18],[-21,10],[0,-18],[-6,3],[-4,10],[-8,4],[3,9],[-2,13],[-14,10],[-9,-4],[-27,-4],[-8,-10],[-6,-3],[-8,-3],[-7,-9],[2,-3],[0,-7],[-8,-19],[-19,-3],[4,-1],[6,-1],[-7,0],[-17,2],[0,17],[-23,0],[-1,-36],[-12,5],[-5,-6],[2,11],[-18,8],[-7,-18],[-9,-36],[-2,-21],[3,-21],[-15,17],[10,17],[-3,5],[6,17],[-1,20],[4,12],[-4,0],[2,11],[-4,1],[0,10],[-47,0]],[[3843,5415,0],[-7,11],[-1,17],[-14,-4],[-8,0],[-3,4],[-18,10],[-5,5],[12,10],[29,4],[2,8],[-12,4],[-10,-6],[-9,0],[-8,9],[2,7],[-19,9],[-3,-11],[-5,4],[-2,-8],[-5,-3],[-14,3],[-14,0],[-2,3],[-7,-10],[-2,-13],[-6,-8],[-3,-7],[-4,-17],[-2,-23],[-4,-6],[-5,-4],[-7,7],[-4,10],[-8,3],[-3,8],[1,19],[-6,-4],[-7,17],[-9,1],[0,6],[-12,-2],[-8,4],[17,0],[1,32],[4,4],[14,0],[3,-17],[9,-1],[-2,-13],[12,5],[14,9],[12,9],[14,15],[3,18],[-1,5],[-3,6],[-11,15],[-2,0],[-5,0],[-11,3],[3,-7],[-3,-10],[-7,0],[-27,6],[-18,14],[5,6],[-8,3],[-5,9],[3,22],[6,2],[4,-4],[-4,-5],[4,-6],[4,8],[0,12],[7,-7],[8,9],[1,0],[15,-6],[4,-8],[7,-5],[-3,7],[7,3],[-4,6],[7,-2],[0,5],[156,-2],[0,42],[0,40],[1,70],[1,38],[-18,-15],[-13,-1],[-8,5],[-10,0],[-32,-3],[-8,-5],[-9,-1],[-22,-9],[-11,9],[-10,-1],[-6,-19],[-7,-9],[2,-8],[-13,10],[0,14],[4,11],[-4,8],[-11,22],[-15,38],[46,-9],[33,-3],[41,0],[35,6],[27,8],[-2,-7],[11,2],[0,39],[0,65],[0,19],[79,0],[1,8],[10,-2],[9,10],[7,-2],[14,7],[1,2],[3,0],[2,1],[1,-1],[0,-2],[2,-1],[0,-2],[8,1],[4,2],[9,14],[6,-1],[-15,25],[-10,10],[5,5],[0,7],[11,13],[5,17],[5,2],[-3,24]],[[4019,6105,0],[-1,6],[0,2]],[[4018,6113,0],[16,15],[11,7],[21,7],[26,4],[0,8],[-17,-1],[-8,3],[2,10],[9,7],[24,-4],[3,10],[15,4],[16,-27],[18,-2],[9,5],[9,-1],[5,-8],[7,-5],[2,-5],[14,13],[4,11],[-2,11],[5,0],[-4,22],[3,24],[1,29],[11,27],[15,2],[60,-24],[7,-16],[6,-4],[6,2],[24,19],[21,2],[14,-14],[19,3],[14,4],[26,5],[5,-10],[2,-3],[19,3],[37,9],[11,6],[-4,6],[2,7],[9,2],[10,-4],[14,1],[0,5],[11,4],[3,-2],[7,13],[8,5],[8,0],[11,-7],[-7,14],[-6,4],[2,13],[5,10],[-1,8],[4,7],[7,-3],[3,9],[12,4],[-8,7],[4,7],[-3,6],[4,1],[-2,8],[-9,13],[-14,29],[1,1],[19,16],[4,-1],[46,-31],[37,-2],[292,-2],[3,-2],[-5,-8],[-6,-1],[0,-10],[7,0],[9,-3],[16,-2],[6,6],[-6,8],[0,12],[42,-1],[0,21],[19,-1],[-1,20],[13,0],[0,-5],[-8,-11],[9,-73],[3,0],[-3,-12],[0,-11],[-3,0],[0,-2],[-9,1],[-3,1],[-3,1],[0,-26],[-9,-3],[-4,3],[1,-10],[-8,0],[-1,-36],[21,0],[-1,-18],[5,-4],[4,23],[9,10],[1,-5],[-12,-30],[-1,-12],[13,0],[1,18],[13,0],[1,9],[27,0],[0,-9],[20,0],[0,-15],[8,5],[6,-3],[5,8],[14,0],[18,11],[5,-1],[12,10],[3,9],[7,-6],[12,-3],[1,-6],[7,-6],[-4,-6],[1,-18],[6,1],[0,-26],[0,-36],[38,-5],[16,-2],[128,-1],[5,3],[13,-3],[16,0],[24,16],[2,-16],[40,0],[31,1],[-1,-39],[20,-3],[2,-20],[16,-2],[12,3],[-2,-15],[10,0],[-1,-18],[54,0],[0,-37],[39,-1],[-1,74],[79,-1],[1,-73],[76,-3],[0,-44],[-1,-43],[20,-1],[0,18],[59,-1],[27,-2],[10,-17],[5,0],[20,-10],[-1,-17],[-4,-7],[11,-19],[18,0],[0,-8],[13,-4],[4,-10],[-7,3],[-5,-2],[-2,-11],[19,-5],[12,1],[-2,24],[24,-2],[35,-8],[18,-5],[3,1],[1,-2],[13,-3],[12,-2],[11,-2],[9,-1],[38,-1],[20,-2],[51,-32],[31,-20],[49,-41],[9,-5],[0,10],[20,0],[0,-32],[19,-3],[-1,18],[62,0],[0,-30],[0,-24],[16,0],[5,-17],[54,2],[78,-1],[80,1],[56,0],[5,-13],[-10,-7],[-3,-9],[5,-5],[-1,-6],[24,-7],[4,-3],[4,16],[11,4],[-2,-10],[4,-3],[13,-1],[11,1],[2,5],[-9,-1],[0,5],[-7,2],[15,9],[13,1],[-8,-9],[5,-5],[10,-3],[14,0],[8,-9],[-4,-5],[0,-11],[3,-10],[11,-10],[5,5],[6,-3],[12,-18],[1,9],[9,-10],[2,-6],[8,7],[10,11],[7,0],[0,18],[79,1],[52,0],[8,-1],[8,-9],[-3,-7],[1,-11],[8,-3],[4,-6],[0,-17],[19,0],[0,-10],[15,7],[23,-12],[3,7],[18,17],[10,3],[9,0],[2,6],[27,0],[9,9],[0,-5],[19,5],[14,-5],[7,0],[-3,6],[-6,3],[5,8],[-7,14],[-9,0],[0,18],[39,0],[-1,-18],[79,0],[45,0],[-12,-14],[-8,-2],[-9,12],[-15,-18],[0,-32],[8,1],[0,17],[161,1],[1,-7],[-7,0],[1,-8],[-8,-8],[-1,-5],[13,0],[3,5],[-7,-9],[-9,-9],[-22,-31],[22,28],[8,8],[16,10],[16,23],[2,-7],[9,2],[-8,-8],[-4,-23],[2,-15],[9,-6],[12,-3],[11,4],[14,12],[6,-8],[8,-1],[14,19],[38,0],[1,-2],[-1,-76],[11,6],[10,8],[8,-1],[3,-5],[8,4],[2,-5],[8,0],[0,10],[11,-17],[8,3],[9,15],[3,0],[7,-2],[0,-6],[-7,-5],[1,-7],[12,2],[12,12],[10,2],[5,-4],[-2,-11],[8,-7],[11,8],[18,25],[1,23],[3,18],[6,7],[-1,5],[31,2],[0,35],[38,1],[1,35],[19,1],[0,-36],[19,0],[0,-5],[77,1],[-6,-6],[-1,-2],[-9,-2],[-3,2],[2,-4],[-3,-2],[-1,-3],[-3,1],[0,2],[-4,-2],[0,-5],[-2,-5],[-1,0],[-18,-2],[-12,5],[-9,-1],[-8,-9],[-12,-8],[-10,-17],[8,0],[-2,-10],[21,1],[13,4],[5,-2],[-2,-8],[7,0],[9,10],[0,-39],[5,-8],[8,9],[9,2],[10,-2],[9,6],[6,10],[12,8],[-2,-13],[-8,-14],[2,-4],[9,5],[-1,6],[5,2],[11,-3],[7,-7],[7,1],[-2,5],[9,8],[7,-2],[7,-11],[10,-1],[3,3],[16,0],[17,10],[0,23],[9,0],[7,17],[8,10],[4,21],[-5,6],[70,0],[10,10],[3,11],[2,-7],[9,-1],[-3,-5],[-2,-7],[17,5],[24,1],[24,9],[35,2],[-3,3],[-4,9],[0,13],[3,-1],[1,-6],[0,-8],[15,0],[5,-8],[14,0],[26,2],[44,2],[11,1],[1,13],[0,15],[24,0],[3,-2],[6,-2],[1,-1],[2,-8],[28,12],[34,1],[74,1],[90,0],[63,0],[47,0],[3,-3],[3,2],[6,-7],[5,-9],[-2,-10],[6,-25],[1,-7],[7,-13],[4,-16],[1,-9],[6,-11],[3,0],[-1,109],[63,-1],[5,-21],[8,-7],[4,0],[0,-46],[39,1],[0,-71],[28,-1],[23,-3],[7,-2],[4,-8],[7,1]],[[8804,4876,0],[-78,1],[1,-108],[-78,0],[0,72],[-30,0],[0,36],[-25,1],[-11,1],[-110,-1],[1,-36],[-20,0],[0,36],[-61,0],[0,-72],[0,-36],[0,-71],[1,-72],[0,-36]],[[8394,4591,0],[-35,0],[-12,-5],[-26,0],[0,-4],[0,-32],[13,-16],[-11,-3],[-26,-8],[-10,2],[-4,0],[6,-8],[7,-8],[1,1],[58,-69],[17,-30],[0,-16],[-15,7],[-12,3],[-6,-4],[-13,1],[-13,8],[-2,1],[-3,-5],[-2,-1],[-4,7],[-5,-2],[9,9],[7,1],[-4,4],[-12,25],[3,9],[-5,3],[-7,-4],[-10,4],[12,4],[-14,9],[-3,6],[-4,27],[-5,10],[-42,0],[0,6],[-9,11],[-15,-10],[-14,2],[-3,5],[11,11],[12,6],[13,1],[-10,9],[-14,-3],[-14,-7],[-6,8],[-12,4],[1,15],[-22,-3],[0,-6],[6,0],[-10,-15],[-13,8],[-10,-4],[1,19],[8,-6],[0,5],[-11,6],[-5,-6],[-14,-6],[-11,4],[-7,-3],[-6,2],[31,9],[10,0],[-1,9],[-7,-2],[-1,6],[5,7],[-2,5],[3,10],[-9,-5],[-14,2],[-17,-3],[-4,-6],[-20,-11],[-6,-7],[-18,-7],[-11,-8],[-36,-15],[-7,4],[2,7],[13,0],[-1,17],[7,6],[23,1],[11,-6],[6,1],[-3,9],[-6,1],[-29,-4],[-12,0],[-23,4],[-9,15],[-5,-2],[-7,-12],[0,-7],[-8,-8],[-4,2],[5,8],[-6,13],[-5,2],[-15,-3],[-11,-12],[6,-7],[-3,-2],[-8,6],[-31,-22],[-6,-11],[-13,3],[4,21],[-5,15],[-13,6],[-9,13],[10,7],[6,-1],[-2,-15],[8,6],[5,-4],[-1,-6],[12,-7],[11,0],[6,4],[7,-1],[4,7],[1,12],[-7,11],[1,11],[-8,13],[-12,-5],[-13,0],[-3,5],[0,44],[14,-8],[9,6],[-4,16],[-1,-11],[-6,1],[-11,7],[6,10],[9,2],[3,10],[12,7],[1,4],[-8,0],[-5,5],[2,7],[-34,19],[-18,4],[3,11],[10,12],[7,11],[-28,0],[-78,-144],[-63,-1],[0,-7],[-59,-53],[-8,5],[-10,-2],[6,-5],[-21,0],[0,-9],[-74,-2],[-13,-8],[-14,-7],[-2,-1],[-22,-37],[-15,-19],[2,0],[-31,-26],[-9,-16],[-11,-38],[-1,-22],[13,1],[0,5],[-9,-1],[3,8],[12,2],[2,-14],[13,-1],[16,-3],[3,3],[14,-1],[-6,-6],[18,-1],[21,-3],[18,5],[26,0],[-3,40],[9,5],[7,-5],[19,3],[5,-5],[0,-6],[8,0],[10,5],[13,0],[0,-18],[19,0],[0,-32],[42,1],[0,35],[18,0],[-1,15],[59,2],[-4,7],[10,11],[-1,-8],[-2,-20],[-10,2],[-2,-7],[7,-9],[-7,-8],[4,-6],[-3,-4],[-9,10],[-13,-7],[-38,-12],[-15,-7],[-19,-3],[-17,6],[8,-3],[7,-11],[-14,0],[-1,-6],[11,-6],[-7,-9],[1,-12],[9,-2],[8,-5],[10,2],[-9,4],[3,2],[37,-1],[1,-1],[-7,0],[-1,-5],[-17,0],[-6,-6],[69,-14],[27,-9],[1,18],[31,0],[43,6],[11,2],[3,-6],[53,5],[24,21],[-2,3],[12,1],[17,13],[5,-5],[11,-2],[22,2],[10,-3],[6,-9],[16,-2],[11,7],[11,-7],[-44,-51],[0,-39],[-2,-6],[11,0],[26,5],[20,-1],[6,-5],[-4,-5],[-12,-1],[-9,-11],[-9,-6],[-8,1],[-1,-14],[-15,-5],[1,-23],[11,11],[13,6],[10,0],[13,-9],[-12,13],[-2,10],[1,9],[14,1],[8,-10],[13,-4],[2,-5],[15,-3],[2,4],[11,3],[14,13],[21,15],[14,14],[4,11],[133,-95],[15,-18],[14,-15],[3,-2],[-9,1],[-12,0],[-21,6],[-6,2],[-4,17],[-6,4],[-6,1],[-22,-1],[-15,-3],[-29,-15],[-47,-10],[1,-4],[1,-7],[4,-7],[2,-5],[-14,-10],[-9,-16],[-2,-22],[0,-55],[-4,-25],[-1,-11],[3,-18],[2,-17],[1,-6],[-2,2],[-16,7],[0,11],[-7,19],[-2,20],[-8,7],[-4,10],[-9,2],[-8,1],[-12,-16],[-3,4],[-9,-12],[-3,14],[-16,0],[-2,-22],[-8,-14],[-9,-4],[-1,-8],[-7,-3],[3,-13],[-11,-11],[9,2],[-13,-14],[-14,4],[-10,12],[-10,-7],[-20,8],[-9,-4],[2,-3],[-29,2],[-17,-10],[-14,-14],[-7,-3],[24,-20],[6,-1],[19,-17],[-17,-6],[-7,-14],[1,-4],[3,0],[1,-10],[-2,-1],[1,-6],[4,0],[1,-6],[-1,-6],[-3,-1],[3,-9],[14,2],[3,-17],[14,-10],[-1,-5],[7,1],[1,-22],[-1,-7],[7,-13],[5,-24],[-2,-15],[2,-11],[-3,-19],[79,-70],[1,-20],[14,0],[-68,-80],[-5,-5],[-8,0],[-1,-9],[5,-3],[-10,-2],[1,-8],[-4,-4],[-4,3],[-6,-7],[12,-7],[14,-4],[6,7],[6,17],[9,-2],[-3,-14],[-5,-4],[-1,-9],[16,-10],[12,-17],[14,-12],[7,-10],[2,-5],[1,-5],[31,10],[7,4],[4,-13],[-15,-5],[-7,-5],[-8,-16],[7,-13],[24,-20],[10,-6],[12,-3],[5,10],[9,4],[-1,6],[8,5],[27,-20],[-21,-23],[16,-12],[16,-8],[19,-7],[12,-1],[-25,-15],[-10,-10],[-9,8],[4,5],[-13,10],[-5,7],[-2,11],[-3,-2],[-7,5],[-6,-6],[-8,5],[-11,-12],[-13,-1],[-8,-8],[-9,6],[-16,-20],[8,-6],[-8,-9],[-6,5],[-4,-4],[15,-9],[2,3],[9,-7],[-16,-18],[3,-3],[-9,-4],[12,-12],[77,-60],[10,5],[3,-8],[-6,-3],[17,-13],[23,24],[2,7],[14,-7],[14,5],[25,-13]],[[7989,2963,0],[-12,4],[-9,8],[7,6],[18,14],[-4,6],[-15,28],[-7,12],[-5,0],[-6,6],[-12,6],[-23,7],[-19,4],[-3,-14],[0,-28],[7,-17],[-2,-25],[-5,-12],[1,-6],[12,-19],[-18,-7],[-30,67],[-12,-5],[-1,-9],[-8,-9],[-17,5],[-8,15],[-12,4],[-13,-2],[-16,6],[-8,6],[4,-9],[-10,-17],[-4,2],[-9,-7],[-7,-13],[-10,-1],[-1,-8],[-5,-6],[0,-15],[8,-7],[-3,-7],[9,-5],[14,-2],[7,-17],[11,-13],[13,-19],[12,-7],[9,-11],[2,-6],[-56,8],[-9,-14],[-12,5],[-4,-1],[12,-9],[-17,4],[-11,-9],[-5,-15],[0,-19],[-4,-4],[-9,5],[-12,-14],[-5,5],[-5,-7],[-8,4],[-17,-10],[-10,-11],[-2,-10],[-1,-3],[-5,-3],[1,-2],[-1,-6],[-1,-3],[2,-2],[0,-5],[-1,-2],[4,-8],[12,-19],[-24,-18],[-3,-3],[10,-6],[1,-12],[-26,-21],[1,-2],[-5,-5],[-20,9],[-4,5],[-9,11],[4,7],[-12,12],[-12,20],[-8,6],[9,-9],[2,-15],[-58,30],[-2,1],[-29,18],[-4,3],[-14,8],[-14,13],[-11,9],[-4,3],[-11,10],[-16,-3],[-9,4],[-91,35],[-96,26],[-25,7],[-7,2],[-23,26],[-33,37],[-29,19],[-46,29],[-135,85],[-57,36],[-35,29],[-57,48],[-6,6],[-31,26],[-114,124],[-43,47],[-2,2],[-6,5],[-57,53],[-33,31],[-9,8],[-8,4],[-10,5],[-92,46],[-12,8],[-73,46],[-34,11],[-52,19],[-19,6],[-2,1],[-43,11],[-2,1],[-38,2],[-4,0],[-18,-1],[3,-17],[-8,1],[-3,0],[-3,-6],[-12,-8],[-12,-27],[2,-2],[-4,-5],[-5,-5],[17,-54],[1,-1],[0,-3],[4,-24],[-49,0],[-3,13],[-5,5],[-17,0],[-5,-8],[-93,70],[4,5],[-62,0],[17,-29],[47,14],[11,-8],[10,-5],[-60,-20],[-47,8],[-11,8],[-1,2],[28,-76],[2,-9],[-49,-16],[16,-40],[-6,-3],[-36,-10],[-17,50],[11,18],[21,6],[0,84],[4,2],[-12,-5],[1,-26],[-39,-31],[-5,-7],[-10,-1],[5,6],[0,12],[-8,4],[1,5],[-5,10],[-20,-9],[5,-3],[7,-12],[-2,-19],[4,0],[13,-36],[-14,-4],[-12,35],[7,3],[-1,7],[-9,-2],[3,22],[-2,6],[-3,1],[-4,-18],[-4,9],[-5,13],[0,15],[13,6],[0,6],[-9,-4],[1,7],[8,15],[14,6],[-10,0],[6,9],[-7,1],[-29,-48],[3,-11],[-8,-1],[2,-10],[17,-31],[-20,12],[4,-5],[18,-13],[12,-36],[-8,-3],[-11,32],[-5,-2],[16,-48],[-5,-11],[-11,6],[0,5],[4,18],[-6,18],[-7,-16],[-7,23],[-9,-4],[10,-30],[-8,-6],[-8,0],[-4,-9],[6,-25],[18,-4],[37,-23],[6,-2],[-1,0],[-10,4],[-24,11],[-4,1],[-28,8],[-18,-17],[-28,-2],[-8,19],[-61,20],[-18,8],[-14,-5],[-13,18],[-4,2],[-5,2],[-8,3],[-39,17],[-43,19],[-42,9],[-12,23],[-1,0],[-25,22],[-14,5],[-2,1],[-17,0],[-6,-9],[-2,1],[0,6],[-1,2],[-4,2],[-6,0],[-2,0],[-1,-3],[-3,-3],[-8,2],[-4,1],[-1,13],[-24,12],[-14,-8],[-21,-9],[-14,-6],[-24,-10],[-21,15],[-6,9],[-31,4],[-1,2],[-10,23],[2,14],[-7,9],[6,5],[-1,4],[-6,4],[-3,9],[-7,9],[-1,8],[-5,4],[3,9],[-1,2],[-17,4],[-2,2],[2,1],[0,4],[1,2],[0,3],[-2,1],[-4,1],[-3,0],[-3,5],[-2,4],[14,6],[-8,15],[-1,1],[-15,-1],[-5,10],[0,2],[6,9],[11,5],[1,4],[0,11],[4,7],[3,3],[6,6],[18,20],[46,19],[-6,25],[15,16],[22,10],[25,10],[1,1],[12,54],[3,63],[1,36],[-2,16],[-4,0],[-35,24],[-9,22],[1,7],[10,5],[-1,6],[0,10],[-6,16],[-38,97],[-1,1],[-13,35],[-49,103],[-27,57],[-1,2],[-23,49],[-33,67],[0,1],[-36,75],[-23,34],[-22,32],[-1,2],[-34,44],[-25,31],[-11,14],[-7,9],[-8,10],[-15,20],[-7,8],[-3,3],[-33,39],[-9,10],[-35,39],[-30,24],[-32,26],[-12,9],[-1,0],[-73,38],[-31,16],[-26,9],[-26,-12],[-33,14],[-22,3],[-9,2],[-2,-1],[-23,-7],[-5,-2],[-17,1],[-19,-12],[-39,12],[-48,-4],[-27,-13],[-58,10],[-19,-8],[-37,-3],[-5,0],[-33,8],[-27,-2],[-34,5],[-48,2],[-1,0],[-31,-7],[-10,-6],[-5,-15],[-19,-12],[-32,7],[-32,2],[-39,-16],[-37,10],[-21,-1],[-1,0],[-58,8],[-55,-3],[-15,-5],[-18,-5],[-18,-22],[-51,-2],[-70,-18],[-16,-10],[-22,-32],[-6,-10],[-4,-18],[-28,-4],[-14,-11],[-6,-16],[-6,-5],[-11,7],[-1,1],[-55,59],[-1,1],[-1,2],[-66,52],[-16,13],[-28,18],[-36,15],[-20,5],[-15,-3],[-25,8],[-10,2],[-5,5],[2,9],[15,-4],[27,-10],[38,-5],[7,15],[1,-18],[21,-9],[13,-10],[4,10],[-10,10],[-5,17],[-8,7],[-6,11],[-3,17],[18,-7],[101,-19],[14,-4],[3,-7],[-3,-11],[7,-5],[25,-10],[7,5],[-3,-8],[5,-9],[5,4],[5,-6],[13,6],[13,-3],[3,5],[19,5],[-10,9],[1,12],[5,7],[-4,-7],[29,-7],[6,-10],[2,3],[17,6],[-9,-11],[-9,-1],[10,-23],[8,-6],[6,-14],[11,3],[-1,5],[13,18],[8,-4],[-3,-11],[15,-2],[-4,16],[8,2],[7,11],[8,-1],[14,11],[15,0],[0,18],[4,-8],[8,-4],[30,-2],[13,-14],[-6,-10],[50,15],[16,2],[4,5],[12,0],[-12,4],[12,3],[-9,10],[-10,5],[0,8],[7,10],[-3,1]],[[5252,5913,0],[3,-4],[22,0],[30,-11],[26,-20],[-26,0],[0,-18],[-1,-8],[0,-15],[13,-1],[13,15],[12,5],[-8,18],[81,0],[1,-3],[27,-7],[13,6],[3,-18],[3,-6],[-5,-3],[-1,-6],[10,-6],[4,3],[7,-8],[3,-15],[-5,-22],[6,-15],[-4,-11],[13,-11],[39,30],[11,-7],[8,7],[0,21],[40,0],[-35,53],[5,-1],[21,-15],[12,-6],[36,-26],[-9,13],[-7,4],[-1,14],[4,5],[31,6],[9,0],[4,-5],[12,6],[15,-6],[1,5],[14,-17],[11,3],[-4,13],[-4,3],[6,18],[-12,15],[-10,4],[-5,11],[-10,7],[-10,0],[-14,13],[0,2],[-25,7],[-34,8],[-23,0],[-6,0],[-20,2],[-2,-2],[-2,2],[-24,0],[-13,2],[-9,4],[-25,20],[-14,7],[-10,0],[-13,-5],[-19,-12],[-11,1],[-21,-7],[-22,-1],[-29,-6],[-6,-3],[-10,1],[-45,-12],[-15,-6],[0,-9]],[[5342,5459,0],[7,-15],[33,0],[1,-33],[6,-8],[11,19],[12,8],[5,-1],[-1,-12],[5,-5],[9,3],[-3,-17],[-11,-12],[4,-13],[40,1],[1,-34],[8,2],[37,12],[30,9],[35,5],[46,6],[-2,5],[0,20],[9,-3],[-16,65],[-5,16],[5,1],[-8,34],[-1,26],[-1,0],[1,0],[-1,1],[-2,0],[-3,-11],[-7,-5],[-6,10],[-18,8],[-11,8],[-27,0],[-28,5],[-19,-1],[-30,-8],[-1,-1],[8,2],[-4,-9],[-4,-4],[-14,-2],[-13,4],[-19,1],[-12,-3],[-17,-15],[-34,-37],[5,-22]],[[9260,1343,0],[4,4],[9,1],[2,-9],[15,-16],[25,-35],[22,-5],[3,5],[16,-4],[-1,-5],[24,-4],[-5,13],[-13,16],[-11,31],[-12,20],[15,-12],[11,-6],[14,-13],[3,-9],[15,-16],[4,-8],[8,-9],[5,-14],[14,-2],[9,-7],[0,-127],[4,-2],[37,-21],[5,-4],[5,-7],[13,-26],[27,-43],[18,-17],[10,5],[15,0],[19,12],[8,13],[0,13],[1,0],[1,-11],[12,4],[11,-1],[9,-7],[22,-6],[8,-7],[3,5],[-4,14],[0,9],[28,-6],[5,-5],[4,-21],[9,-17],[-31,-28],[127,108],[7,-1],[5,12],[113,97],[36,30],[-11,23],[-7,7],[-3,-1],[-40,1],[-15,8],[-13,0],[-4,24],[-3,2],[-18,1],[-7,-1],[-21,-5],[-4,-16],[-20,-12],[-41,2],[-2,5],[0,5],[-9,3],[-3,0],[-4,2],[0,2],[-5,-1],[-2,-2],[-10,-2],[-14,6],[-22,-2],[-14,-7],[-9,-1],[-17,4],[-11,-5],[3,10],[18,9],[-20,34],[13,31],[0,19],[10,12],[-1,7],[-7,-2],[-3,10],[12,-1],[10,-18],[13,-3],[10,4],[46,31],[-7,12],[11,-1],[-7,37],[14,9],[7,13],[6,9],[9,7],[14,-8],[7,3],[2,15],[0,10],[4,3],[19,4],[5,2],[-1,14],[8,1],[0,5],[13,7],[4,6],[1,15],[15,2],[-1,-7],[11,0],[2,14],[-5,12],[5,12],[11,14],[0,9],[-5,7],[-18,-3],[-4,10],[7,4],[8,9],[9,16],[4,14],[5,1],[4,-208],[57,1],[7,-3],[-7,0],[1,-11],[-4,-15],[2,-13],[2,7],[5,-12],[-3,-12],[0,-16],[-6,-2],[-2,-8],[5,-8],[-5,-4],[-22,0],[-5,-3],[-2,-9],[12,-6],[0,-10],[-8,4],[0,7],[-4,1],[-4,-21],[-2,-3],[16,-3],[-1,-11],[-5,-2],[-7,5],[-19,1],[-2,-10],[3,-17],[5,-6],[21,-17],[21,-22],[4,10],[9,11],[-5,2],[10,6],[14,4],[-8,-5],[4,-4],[-12,-17],[4,-13],[4,1],[0,-25],[31,26],[0,-1254],[-5,7],[-10,15],[0,1],[-14,19],[-5,32],[-3,6],[-37,102],[-14,37],[-5,16],[-13,45],[0,2],[-9,31],[-24,61],[-9,21],[-22,56],[-1,2],[-46,69],[-28,42],[6,5],[-13,5],[-56,85],[-2,3],[-13,20],[-27,35],[-102,135],[-24,22],[-5,10],[-3,6],[-5,5],[-17,0],[0,5],[7,6],[-12,-1],[14,11],[-5,3],[-13,19],[11,11],[-6,5],[2,5],[5,-6],[6,4],[-7,8],[9,8],[6,9],[-44,43],[-25,18],[-4,7],[-13,27],[-30,41],[4,1],[20,-3],[-27,17],[-39,55],[-14,14],[-2,12],[10,14],[3,7],[-2,9],[-29,40],[-7,3],[-29,6],[-9,6],[-1,5],[-2,7],[-12,26],[2,6]],[[9805,6057,0],[32,-2],[-7,5],[-16,-1],[17,13],[-4,4],[5,2],[11,-3],[-11,-6],[0,-3],[14,-13],[-3,-10],[15,4],[5,9],[4,-3],[-1,-7],[-13,-7],[3,-4],[14,7],[25,-3],[-1,16],[6,14],[0,-33],[0,-13],[41,-1],[1,0],[15,0],[1,-19],[13,-4],[25,3],[3,-3],[0,-89],[-4,5],[-3,15],[5,6],[-7,13],[-29,1],[-10,-9],[-12,-1],[-7,6],[-8,-2],[-1,-4],[-10,-2],[-3,-1],[-7,10],[-27,4],[-16,0],[-8,-5],[-7,6],[15,0],[1,27],[-1,4],[-4,4],[-27,0],[-6,6],[0,14],[12,0],[3,5],[-2,0],[-7,2],[-2,2],[-5,0],[0,6],[-4,8],[-6,0],[-1,6],[14,-7],[11,4],[-11,-1],[-12,8],[13,-4],[17,4],[-7,7],[-10,-4],[-22,6],[1,8]],[[9999,6009,0],[-15,9],[0,11],[-4,20],[13,7],[4,2],[2,0],[0,-49]],[[9999,6085,0],[-9,1],[-1,9],[1,-3],[9,7],[0,-14]],[[9999,6114,0],[-1,0],[0,5],[1,0],[0,-5]],[[5309,1529,0],[52,66],[-10,2],[-8,5],[1,6],[15,2],[4,-4],[10,-21],[2,-2],[18,-12],[1,0],[0,-1],[-9,0],[-3,-4],[-1,-7],[3,-6],[10,-10],[11,6],[15,-8],[37,-39],[0,5],[3,-16],[-2,-2],[-7,10],[-9,-2],[-4,6],[7,1],[-7,5],[-4,10],[-7,3],[1,7],[-5,-3],[-29,-35],[-13,-8],[-10,9],[-17,12],[-11,2],[-15,11],[0,7],[-10,3],[-10,-4],[1,6]],[[7530,7678,0],[0,-3],[1,-33],[-79,0],[-2,36],[25,0],[15,-3],[16,2],[23,0],[1,1]],[[7530,7678,0],[0,72],[8,0],[0,4],[10,3],[33,-2],[5,4],[-7,14],[-9,7],[-51,13],[7,15],[-5,3],[4,11],[-75,0],[0,18],[7,0],[0,12],[33,-1],[-1,43],[-40,0],[-1,36],[40,0],[0,19],[39,-1],[1,-53],[159,0],[0,-72],[0,-55],[-5,1],[0,13],[-10,0],[0,4],[-8,0],[-25,-9],[2,-12],[7,-15],[0,-11],[-20,0],[-19,9],[0,-70],[-79,0]],[[2605,6756,0],[36,35],[12,6],[9,1],[12,-3],[22,-13],[9,19],[7,18],[0,10],[12,14],[6,-2],[4,-12],[30,0],[46,-17],[0,-16],[-12,0],[6,-21],[8,-17],[1,-8],[9,0],[33,-5],[18,-11],[23,-6],[-19,4],[-6,-3],[0,-17],[-34,3],[-2,-8],[-36,1],[0,9],[-25,1],[-9,5],[-12,0],[-2,-6],[-24,-5],[-14,2],[-3,15],[-46,-6],[0,8],[7,5],[8,12],[13,13],[1,10],[5,8],[-23,14],[-18,4],[-16,-7],[-17,-18],[-7,-17],[-5,-5],[-7,6]],[[6032,9906,0],[2,1],[1,1],[37,16],[2,0],[5,-18],[-24,0],[-23,0]],[[6032,9906,0],[-20,-15]],[[6012,9891,0],[0,14],[20,1]],[[6012,9891,0],[0,-7],[0,-15],[-11,0],[2,-13],[2,-18],[-16,-3],[2,26],[5,8],[-14,-1],[26,20],[4,3]],[[5972,9977,0],[43,1],[6,12],[30,8],[0,1],[25,0],[2,-5],[6,-4],[9,2],[13,0],[1,5],[69,0],[17,-16],[-21,-1],[0,5],[-15,0],[1,-19],[-5,1],[0,8],[-7,1],[0,6],[-11,3],[-13,0],[-8,-6],[0,-18],[-21,0],[1,-5],[10,-7],[0,-8],[19,-6],[0,-13],[-29,8],[0,13],[-22,6],[8,-30],[7,-2],[0,-11],[6,0],[0,-14],[-9,8],[-13,49],[-5,8],[-18,-4],[-36,-12],[0,19],[-9,0],[1,-11],[-14,0],[0,-8],[-8,0],[5,10],[0,9],[4,0],[-4,9],[-15,-2],[0,10]],[[5972,9977,0],[-13,-5],[0,5],[-3,22],[16,0],[0,-22]],[[3511,6308,0],[0,2],[1,2],[14,6],[5,-9],[-7,-3],[-12,2],[-1,0]],[[3511,6308,0],[2,-34],[-5,-7],[-2,-16],[10,-26],[3,1],[1,-2],[1,0],[0,-3],[1,-3],[1,0],[0,-6],[3,0],[0,8],[10,11],[17,0],[2,3],[46,19],[-3,-6],[6,-9],[7,8],[32,2],[-5,14],[6,0],[26,10],[4,13],[10,-3],[8,2],[5,-11],[9,3],[12,-2],[12,11],[6,-1],[1,9],[4,0],[13,-11],[0,-4],[10,-11],[3,-3],[-2,-17],[43,0],[0,9],[8,2],[22,0],[-1,-28],[64,-1],[0,-10],[-18,-15],[-7,-12],[-22,-8],[0,-5],[-6,-10],[25,-9],[16,0],[11,-4],[10,-11],[8,-15],[8,-9],[12,-5],[13,-2],[10,-4],[15,-11],[7,-2],[15,1],[9,5],[11,10]],[[4019,6105,0],[-11,-7],[-4,-9],[-26,-7],[-7,0],[-11,-2],[-9,-9],[-11,2],[-20,-9],[-9,-1],[-8,-5],[-34,-2],[2,6],[-21,2],[-3,3],[6,9],[-7,0],[-6,-4],[-4,-7],[5,-19],[-9,-18],[5,-4],[-15,0],[-9,13],[-3,20],[2,6],[-26,0],[0,24],[-113,-1],[-11,-10],[-9,-1],[-7,-4],[-11,9],[0,6],[-7,0],[0,-38],[-15,-62],[-5,-15],[-7,-38],[8,-8],[-10,9],[3,19],[7,25],[0,11],[3,7],[-17,1],[-13,19],[1,-10],[-3,-37],[-2,-11],[-8,-12],[-1,-5],[-21,-1],[-18,-6],[1,-13],[9,-16],[-5,-26],[-8,-1],[-6,22],[-12,11],[-5,1],[-3,7],[0,13],[-11,5],[-15,-3],[-15,19],[-15,4],[-13,12],[-17,-7],[-12,0],[-8,7],[-11,0],[-9,4],[-5,-4],[-11,10],[1,-15],[-5,-8],[-20,-15],[-7,-10],[-15,4],[-14,-13],[5,-7],[-2,-9],[-13,0],[-5,8],[-24,-4],[-1,9],[3,8],[-11,-6],[-12,-3],[4,-10],[-5,-2],[-4,15],[-13,-1],[-4,-21],[-12,3],[-7,34],[10,28],[-30,16]],[[3165,6017,0],[-10,6],[-3,10],[-1,19],[12,28],[-15,6],[4,3],[13,1],[28,-1],[12,-5],[17,-13],[1,6],[-9,24],[4,16],[-6,16],[7,7],[-11,-1],[0,5],[-69,0],[14,41],[0,2],[3,-1],[1,0],[1,11],[12,3],[27,-2],[-1,-2],[-5,-1],[2,-4],[6,-3],[9,3],[7,1],[1,5],[15,-1],[19,-7],[22,-17],[6,-3],[17,-3],[4,6],[-19,7],[-1,8],[-7,8],[6,3],[20,-13],[7,-9],[4,6],[21,27],[-1,6],[14,0],[0,-21],[78,0],[4,10],[6,17],[7,0],[4,15],[-3,17],[0,3],[1,2],[9,7],[2,3],[2,2],[3,0],[7,-3],[6,28],[13,11],[6,2],[23,0]],[[2402,6124,0],[3,12],[6,7],[-1,-9],[17,-1],[1,17],[-7,2],[7,6],[36,7],[9,-3],[6,3],[5,-31],[0,-27],[6,-15],[-17,-9],[-37,-26],[-4,11],[-10,5],[-2,8],[-7,2],[1,4],[-9,7],[0,19],[-3,11]],[[2363,5972,0],[1,-1],[0,6],[8,1],[0,-6],[-4,-3],[-5,2],[0,1]],[[2363,5972,0],[-6,-3],[7,-10],[21,-6],[15,33],[37,4],[83,6],[13,-15],[7,-16],[2,-12],[-9,0],[-11,-11],[-15,-9],[8,-14],[-2,-11],[-20,-6],[-80,-88],[17,-16],[9,-3],[21,0],[-3,-10],[6,4],[9,-10],[-6,-12],[13,-6],[3,10],[6,-4],[-3,-10],[-5,-2],[-15,6],[-4,-1],[-25,4],[-11,-2],[-2,4],[-8,0],[-3,6],[3,10],[-10,-1],[-5,3],[-7,13],[-16,-11],[9,-23],[1,-19],[-3,-3],[-15,-9],[-36,-6],[1,69],[-101,0],[-30,1],[5,11],[17,26],[-41,-3],[-50,1],[0,21],[-5,1],[-6,-7],[-11,-3],[-15,-1],[-12,-8],[-9,0],[0,-38],[-52,0],[0,10],[-15,0],[-2,3],[-8,0],[-1,4],[-4,3],[-12,0],[-76,1],[1,23],[51,0],[1,33],[-2,10],[-9,-5],[7,12],[-23,18],[-3,-5],[2,-11],[-7,-5],[5,-4],[3,-7],[-10,1],[-22,2],[13,17],[10,-9],[7,6],[-2,7],[1,5],[5,6],[-2,8],[6,10],[8,5],[8,1],[6,7],[16,1],[9,6],[2,5],[-7,-1],[-31,21],[6,5],[5,8],[4,5],[4,8],[5,4],[11,4],[11,-1],[6,-4],[1,5],[-5,4],[4,6],[-4,8],[2,1],[21,1],[12,0],[2,3],[-7,3],[0,2],[25,5],[16,-4],[30,8],[18,16],[1,-18],[25,15],[-12,-16],[0,-22],[3,-8],[6,-1],[11,9],[30,2],[31,0],[4,-11],[3,11],[27,2],[9,-2],[18,-1],[11,-34],[26,4],[7,-3],[2,-6],[12,3],[1,-5],[13,4],[7,11],[7,8],[18,13],[-7,25],[-19,-2],[11,19],[-3,4],[-16,8],[-15,13],[10,0],[-1,1],[0,3],[2,0],[7,0],[3,-2],[1,-2],[62,0],[-5,-26],[-2,-6],[-6,-20],[-10,-8],[-32,-23],[-4,-6],[-6,-10],[12,3],[5,-15]],[[2554,8826,0],[0,13],[21,4],[2,16],[75,0],[-1,-19],[11,0],[0,-5],[17,0],[3,4],[-1,-14],[38,7],[11,0],[29,-10],[21,-6],[71,0],[-5,2],[-8,13],[12,0],[3,-5],[5,2],[4,-5],[8,-2],[8,2],[-8,7],[0,4],[13,-1],[-4,7],[19,-2],[6,-4],[-5,-9],[0,-11],[-43,1],[-37,1],[-15,-3],[-29,2],[-95,0],[0,10],[-11,-5],[-14,-1],[-3,-3],[-7,5],[0,-35],[-6,0],[1,5],[-7,3],[1,8],[-6,12],[-15,-2],[-7,-7],[2,9],[-16,-3],[1,6],[-6,1],[-5,-4],[2,8],[12,-2],[5,9],[-19,-3],[-28,0]],[[2554,8826,0],[-10,-43],[-54,1],[0,3],[-138,0],[1,11],[8,2],[4,14],[5,7],[-3,3],[16,1],[19,-2],[9,-5],[-12,-1],[13,0],[30,10],[31,-1],[24,5],[31,1],[26,-6]],[[8904,6814,0],[0,3],[0,14],[9,1],[1,-18],[-8,0],[-2,0]],[[8904,6814,0],[3,-23],[0,-13],[-22,0],[0,-18],[-10,0],[-1,-18],[-18,0],[0,18],[9,0],[0,18],[10,0],[1,9],[18,1],[0,8],[-29,0],[0,17],[-29,0],[-17,3],[0,-25],[-9,-1],[0,-12],[-39,-1],[0,18],[-9,0],[-1,36],[-19,-1],[-1,45],[-19,0],[-1,-62],[-18,0],[0,-14],[-7,-4],[-9,6],[-3,-10],[3,-4],[-1,-11],[-62,1],[-4,-16],[-16,0],[-3,-12],[-7,-1],[-2,6],[4,14],[0,13],[4,12],[8,-3],[56,-1],[0,14],[0,2],[2,7],[-14,8],[-26,14],[-40,22],[0,10],[19,0],[0,18],[-19,0],[-1,18],[20,0],[0,-9],[19,0],[0,18],[14,1],[25,0],[0,27],[19,0],[0,17],[117,0],[0,18],[-19,0],[-1,18],[-19,0],[0,18],[-20,0],[0,9],[-10,0],[0,-27],[-9,0],[0,18],[-15,0],[0,18],[15,0],[-1,53],[20,0],[0,-53],[39,0],[0,-35],[20,-1],[0,36],[20,0],[-1,71],[6,1],[0,7],[17,-7],[1,9],[9,0],[0,-9],[29,1],[1,18],[9,0],[0,-52],[-9,-1],[0,-10],[10,1],[0,-27],[57,0],[2,-18],[9,0],[0,18],[10,-1],[0,-36],[29,0],[0,-8],[-9,0],[0,-10],[9,0],[1,-9],[29,1],[0,-9],[19,0],[1,-27],[19,-1],[0,-17],[-10,0],[2,-27],[9,0],[0,-18],[-39,-1],[1,-7],[14,-10],[-34,0],[1,-18],[-20,0],[0,9],[-20,0],[0,40],[-20,0],[1,-31],[-59,-1],[0,-33],[11,-2]],[[9546,7567,0],[0,-18],[39,0],[1,-5],[-52,-4],[-28,-2],[0,29],[22,0],[3,0],[15,0]],[[9457,6574,0],[13,0],[5,-1],[1,-8],[-19,0],[0,7],[0,2]],[[9472,7057,0],[-34,0],[4,-19],[-9,0],[0,17],[-9,-8],[-11,0]],[[9413,7047,0],[1,18],[0,1],[0,17],[9,0],[0,-18],[49,0],[0,-8]],[[9403,7621,0],[1,0],[3,0],[2,-1],[-2,-8],[-4,0],[0,8],[0,1]],[[9396,6725,0],[0,8],[8,0],[1,-5],[1,-3],[-10,0]],[[9326,7119,0],[0,1],[0,17],[9,-1],[0,-17],[-7,0],[-2,0]],[[9310,7676,0],[0,18],[39,-1],[0,-17],[58,-2],[0,18],[10,0],[2,18],[-2,8],[10,0],[1,7],[5,-16],[-6,0],[0,-27],[10,0],[0,-8],[20,0],[-1,9],[11,0],[0,9],[39,1],[0,8],[-1,46],[40,0],[2,108],[9,1],[0,5],[21,1],[-1,-7],[10,0],[0,9],[38,-2],[6,-57],[0,-12],[-4,-11],[7,1],[-1,-19],[20,-2],[10,2],[14,-15],[1,-8],[-1,-50],[-12,-2],[0,-13],[14,0],[6,-8],[13,4],[3,-4],[0,-11],[9,-15],[-8,-2],[-10,3],[-6,-2],[5,-14],[-8,-5],[3,-18],[17,-3],[37,-15],[0,-12],[3,-8],[-15,-4],[-9,3],[-17,-4],[-3,1],[-41,42],[-72,0],[0,-38],[-17,2],[-22,-1]],[[9546,7567,0],[0,18],[-40,-1],[0,37],[-11,0],[1,9],[-10,0],[0,-27],[-20,0],[-11,35],[-8,0],[0,-9],[-10,-3],[0,-33],[-10,1],[0,32],[-9,3],[-11,0],[-4,-8]],[[9403,7621,0],[-15,0],[0,36],[-19,0],[0,-18],[-21,0],[1,-36],[-40,0],[1,37],[19,0],[0,27],[-2,9],[-17,0]],[[9300,7676,0],[10,0]],[[9310,7676,0],[0,-18],[-10,0],[0,18]],[[9304,7459,0],[51,1],[1,44],[-1,27],[-22,1],[1,17],[34,0],[0,-18],[6,1],[1,-6],[-1,-120],[-19,-18],[118,0],[0,36],[-20,0],[0,18],[20,0],[0,18],[19,0],[0,-14],[10,0],[0,-22],[-10,0],[0,-36],[20,0],[18,0],[5,-18],[16,0],[0,8],[10,0],[0,3],[10,0],[-1,-11],[20,0],[0,18],[77,0],[1,36],[19,1],[1,17],[19,0],[0,-18],[20,0],[-2,7],[-9,0],[-1,5],[12,-1],[0,7],[-8,4],[2,14],[29,0],[0,18],[-3,18],[0,13],[0,37],[-2,14],[30,2],[0,10],[17,-5],[9,0],[70,7],[-8,13],[-3,15],[-6,9],[-15,2],[13,0],[-22,12],[-14,19],[-6,15],[5,20],[-1,11],[-21,-1],[0,8],[20,0],[-2,8],[-14,21],[-25,0],[0,10],[-6,0],[1,9],[17,2],[-10,16],[-8,16],[9,16],[2,-9],[4,7],[16,10],[-5,-14],[0,-15],[-3,-6],[5,-6],[0,-9],[7,-10],[6,-2],[7,3],[7,-3],[0,-6],[-12,-5],[3,-4],[-8,-4],[-19,26],[26,-39],[4,-11],[4,-51],[6,-14],[14,-12],[35,-16],[6,-4],[2,-4],[2,-9],[6,-2],[28,-12],[26,-16],[7,-10],[3,-5],[4,3],[9,-12],[2,-5],[-6,18],[13,10],[9,-1],[6,5],[-3,4],[11,13],[0,-80],[-6,3],[-4,-4],[-13,-9],[10,-38],[6,9],[-3,6],[10,2],[0,-793],[-19,0],[-5,-7],[5,-5],[0,-23],[-38,-1],[0,6],[9,8],[-1,5],[15,11],[-2,6],[-49,0],[-12,-1],[0,-19],[-7,-8],[7,-9],[0,-18],[-13,0],[-5,-9],[-12,-2],[-21,1],[-4,8],[-5,-2],[4,-6],[-22,1],[0,6],[-12,-4],[-20,-10],[-30,-9],[-14,-5],[-1,11],[0,1],[-16,0],[-3,4],[1,23],[19,0],[0,13],[-27,0],[-10,-3],[-31,0],[0,-17],[-22,-3],[0,9],[-14,0],[0,-9],[-12,2],[-29,0],[-1,-18],[10,0],[0,-9],[-49,-1],[-10,-9],[1,-17],[-19,-1],[-1,6],[-6,-6],[-13,0],[0,9],[20,0],[-1,9],[7,0],[12,6],[0,12],[-48,0],[0,-8],[-9,-1],[0,-9],[-21,1],[-18,-1],[0,-8]],[[9457,6574,0],[-41,0],[-8,1],[0,-19],[-9,0],[0,-6],[-8,0],[-1,14],[9,0],[-1,37],[20,0],[0,-18],[19,0],[0,9],[19,-1],[0,18],[-17,1],[-7,5],[2,22],[-16,-1],[27,37],[27,39],[4,-4],[17,-1],[1,5],[13,12],[7,1],[-7,13],[7,5],[19,0],[1,17],[8,1],[0,-18],[30,0],[0,18],[20,0],[0,9],[-20,0],[0,9],[-12,0],[3,36],[28,1],[-5,52],[7,8],[15,6],[1,5],[-6,0],[-6,0],[-38,-1],[-27,2],[0,10],[19,0],[0,24],[20,-4],[-1,9],[0,6],[13,-9],[2,3],[3,6],[2,7],[-7,0],[-7,1],[0,7],[24,1],[-1,9],[30,1],[0,35],[21,1],[-11,35],[-69,0],[-16,-3],[4,-4],[0,-11],[12,0],[0,-18],[-37,0],[0,7],[17,0],[-3,4],[-27,0],[0,7],[30,0],[0,11],[-8,0],[0,7],[8,0],[0,18],[-10,0],[10,15],[-2,2],[-2,0],[-18,-26],[-17,0],[0,-9],[-27,0],[-13,2],[-9,-2],[0,8],[9,1],[1,18]],[[9472,7057,0],[39,1],[0,8],[10,0],[1,26],[-2,9],[-9,0],[0,36],[-25,0],[0,10],[-9,0],[0,-10],[-5,0],[0,22],[-7,0],[-1,11],[8,3],[-19,0],[0,72],[9,0],[1,16],[9,0],[1,11],[3,-7],[14,0],[2,16],[-139,-1],[1,-54],[-34,0],[0,9],[-4,-6],[-8,7],[-1,8],[8,0],[0,18],[20,0],[0,18],[3,0],[-3,11],[0,14],[6,0],[0,11],[-26,0],[0,18],[40,0],[0,90],[-62,0],[11,35]],[[9288,7712,0],[1,2],[0,35],[12,0],[4,-13],[1,-15],[4,-9],[-21,0],[-1,0]],[[9296,6939,0],[1,-8],[-15,0],[0,8],[14,0]],[[9288,7712,0],[0,-15],[-16,-2],[24,0],[-1,-12],[5,0],[0,-7]],[[9300,7676,0],[-31,1],[0,36],[19,-1]],[[9304,7459,0],[-15,0],[-47,1],[1,51],[26,2],[0,-36],[40,-1],[-5,-16],[0,-1]],[[9326,7119,0],[0,-9],[14,0],[0,-9],[-5,0],[0,-18],[20,1],[19,0],[0,17],[10,0],[0,-17],[10,0],[0,-18],[0,-4],[-1,-14],[20,-1]],[[9413,7047,0],[0,-17],[-19,0],[0,9],[-5,0],[0,-9],[-25,0],[-9,2],[0,-11],[3,-6],[-23,11],[0,-6],[-10,0],[1,-8],[9,0],[0,-9],[59,0],[0,-9],[0,-8],[19,-1],[20,0],[0,-9],[-20,0],[0,-9],[20,0],[0,-9],[-10,0],[0,-18],[-9,0],[0,-9],[19,0],[0,-11],[-5,-7],[-1,-14],[-12,-7],[1,-6],[-6,0],[-1,-28],[2,-3],[-3,-5],[25,0],[1,27],[10,0],[-2,-44],[-9,0],[0,-36],[-9,0],[-1,18],[-10,0],[1,-18],[-24,0],[-10,-5],[-5,1],[-10,-15],[30,1],[0,-18],[-5,0],[1,-19],[-15,0],[0,-17],[20,0]],[[9396,6725,0],[0,-14],[12,0],[1,-4],[14,0],[-1,-5],[-13,0],[0,-8],[-12,-1],[0,14],[-10,0],[0,-19],[-4,-17],[-5,0],[0,-27],[-10,-7],[6,-7],[-6,-22],[-3,6],[-15,0],[0,-12],[-10,-1],[0,-18],[-19,1],[0,17],[-38,-1],[3,8],[18,16],[12,-8],[5,2],[0,15],[15,29],[-6,0],[-1,26],[-10,0],[1,-17],[-24,-1],[23,37],[0,5],[-1,30],[-20,-2],[-16,-6],[0,8],[-39,0],[0,27],[0,7],[0,2],[39,0],[0,7],[16,0],[0,20],[-16,0],[0,44],[35,1],[-1,36],[-9,0],[0,-18],[-10,0],[0,18],[10,0],[-1,18],[10,0],[0,36],[-20,-1]],[[9296,6939,0],[0,18],[10,0],[0,18],[-10,0],[1,18],[-15,0],[-7,-1],[-13,1],[-6,0],[-14,0],[-19,-1],[-1,19],[-19,0],[0,8],[19,0],[0,18],[-19,0],[0,18],[-20,0],[1,10],[-59,1],[-20,0],[-1,-11],[-18,1]],[[9086,7056,0],[0,10],[19,0],[1,17],[-20,1],[0,8],[20,0],[0,-8],[19,-2],[0,-8],[39,0],[0,9],[29,-1],[6,8],[-6,5],[20,-9],[-10,6],[10,9],[0,19],[10,-1],[0,8],[9,1],[0,-9],[11,0],[0,9],[19,0],[0,8],[34,-1],[1,-17],[29,1]],[[9086,7056,0],[0,-1],[0,-7],[-10,0],[0,-19],[-10,1],[0,26],[20,0]],[[5857,9042,0],[39,-1],[0,36],[117,1],[2,36],[20,-26],[1,-9],[18,0],[0,13],[9,-5],[4,2],[5,-5],[-8,-4],[9,0],[-2,-8],[-16,-18],[0,-10],[30,0],[-1,6],[-9,0],[1,33],[3,8],[16,22],[14,3],[9,18],[5,3],[12,-5],[12,2],[19,-5],[0,12],[7,-3],[20,-3],[12,-11],[1,-20],[-10,-22],[-24,2],[1,-57],[-10,0],[5,6],[-5,0],[0,12],[-7,3],[-3,-21],[-20,-1],[0,19],[-22,0],[8,-57],[3,-13],[9,-62],[-17,0],[0,29],[-20,-2],[1,-66],[18,0],[2,-9],[19,0],[0,-36],[-39,-1],[0,37],[-14,-1],[0,15],[-8,121],[2,35],[4,9],[-15,-1],[6,-4],[0,-39],[2,-28],[-17,-1],[0,-5],[-20,1],[0,4],[-59,-1],[-19,-2],[-6,11],[-13,9],[-2,17],[40,1],[0,24],[-20,-1],[0,12],[32,1],[-1,14],[-2,4],[-29,0],[0,8],[-20,0],[0,-27],[-37,0],[7,0],[0,-18],[-10,0],[0,18],[-39,1]],[[5857,9042,0],[-40,-1]],[[5817,9041,0],[0,36],[-19,0],[0,5],[19,0],[10,4],[1,9],[19,0],[0,-7],[10,0],[0,-46]],[[5798,9005,0],[0,-18],[5,-1],[0,-17],[-5,0],[0,7],[-7,0],[1,-7],[-13,0]],[[5779,8969,0],[0,16],[11,0],[0,7],[1,1],[7,12]],[[5817,9041,0],[0,-14],[-4,0],[0,-13],[5,-8],[9,-1],[0,-8],[-14,0],[0,9],[-15,-1]],[[5798,9005,0],[-19,0],[-1,27],[5,-9],[15,0],[0,18],[19,0]],[[5779,8969,0],[0,-18],[19,0],[0,-17],[-19,0],[0,9],[-10,0],[0,26],[10,0]],[[0,6828,0],[6,-1],[27,-5],[8,17],[2,-16],[11,-2],[2,-4],[18,-8],[6,13],[17,-5],[-6,-13],[2,-7],[8,1],[-2,-6],[88,-18],[19,-10],[9,-2],[4,-10],[13,-4],[35,-17],[2,-19],[23,-12],[9,3],[16,0],[8,8],[-1,-3],[-8,-8],[-17,-3],[1,-9],[-17,-13],[-5,-12],[1,-11],[-9,0],[-10,-3],[14,-18],[-9,-4],[-10,-4],[-21,33],[-24,9],[-38,15],[-30,-2],[-20,6],[-9,3],[-37,15],[-21,19],[-34,13],[-21,0],[0,94]],[[1953,6452,0],[24,15],[7,-9],[7,18],[11,-10],[-41,54],[12,2],[12,7],[9,-13],[12,7],[9,-1],[7,-9],[12,4],[7,9],[-4,11],[1,18],[20,4],[7,5],[20,29],[-3,11],[9,3],[-3,8],[-10,-2],[-4,12],[10,5],[-21,50],[-16,-3],[3,4],[13,0],[3,5],[-4,17],[3,1],[22,-32],[6,-15],[6,-2],[11,-21],[13,-9],[6,1],[9,-12],[5,-14],[11,-18],[11,-27],[39,14],[15,-24],[-14,-4],[-14,-10],[-1,-8],[-16,1],[5,-9],[-10,-1],[-9,-11],[-25,-5],[-1,5],[-38,-23],[-7,-12],[-16,-12],[-5,-15],[-12,-18],[-12,-10],[-14,19],[-13,-9],[-9,12],[-10,-7],[-5,6],[-7,-7],[-10,13],[-15,-10],[1,12],[-9,10]],[[8361,6592,0],[8,1],[15,-5],[20,-1],[28,-5],[15,-7],[14,-9],[15,-5],[7,-5],[30,-8],[23,-11],[15,1],[29,10],[-5,-20],[13,0],[5,-22],[-1,-17],[-26,3],[-29,-19],[1,15],[-3,5],[10,6],[-18,7],[-7,-10],[-6,3],[3,9],[10,0],[-7,9],[-9,3],[-10,0],[-1,5],[-16,1],[-8,4],[3,6],[-15,5],[-5,-11],[-10,4],[-15,-7],[-2,3],[5,14],[-9,8],[0,8],[-24,10],[-8,1],[-8,-20],[-2,10],[-3,1],[1,10],[-5,9],[0,3],[-10,4],[-6,0],[-2,4]]],"transform":{"scale":[0.00022462432059115934,0.00020281674309223816],"translate":[-119.535969171429,33.03006086715481]}}
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment