Steven Burrows
Committed by Thomas Vachuska

Topojsons have all been formatted with jsonlint

Added topojson files for all supportted maps, optimised the countries topojson files to remove unused properties.

Added Javadocs for UiTopoMap

Refactored Topo Maps to use UiTopoMapFactory, UiTopoMap classes.

Change-Id: I976137baa7f62a81e48231e1612b967d39dc641d

Refactored Topo Maps to use UiTopoMapFactory, UiTopoMap classes.

Change-Id: I976137baa7f62a81e48231e1612b967d39dc641d

Added Copyright

Change-Id: Ie62171ba6ab08bbf955bc444cd2db41d0c30baaa

Added file path for topojson or svg

Change-Id: Ib1fc79672079ec4c6e2cd35bc39a28abeafca297

Line break to account for the soft limit

Change-Id: Ib2b57ceee139b20a73d7ad0110b37fc1b5326ed7

Added File Path to the Map Class

Change-Id: Ic6ae4ca507e58155bb106ad46be14e048dc3a95c

Added File Path to the Map Class

Change-Id: Ib2200b0bf315f9dccb581447ddb4b6f6669e34ff
......@@ -44,18 +44,21 @@ public final class UiExtension {
private final List<UiView> views;
private final UiMessageHandlerFactory messageHandlerFactory;
private final UiTopoOverlayFactory topoOverlayFactory;
private final UiTopoMapFactory topoMapFactory;
private boolean isValid = true;
// private constructor - only the builder calls this
private UiExtension(ClassLoader cl, String path, List<UiView> views,
UiMessageHandlerFactory mhFactory,
UiTopoOverlayFactory toFactory) {
UiTopoOverlayFactory toFactory,
UiTopoMapFactory tmFactory) {
this.classLoader = cl;
this.resourcePath = path;
this.views = views;
this.messageHandlerFactory = mhFactory;
this.topoOverlayFactory = toFactory;
this.topoMapFactory = tmFactory;
}
......@@ -115,6 +118,15 @@ public final class UiExtension {
return topoOverlayFactory;
}
/**
* Returns the topology map factory, if one was defined.
*
* @return topology map factory
*/
public UiTopoMapFactory topoMapFactory() {
return topoMapFactory;
}
// Returns the resource input stream from the specified class-loader.
private InputStream getStream(String path) {
......@@ -137,6 +149,7 @@ public final class UiExtension {
private List<UiView> views = new ArrayList<>();
private UiMessageHandlerFactory messageHandlerFactory = null;
private UiTopoOverlayFactory topoOverlayFactory = null;
private UiTopoMapFactory topoMapFactory = null;
/**
* Create a builder with the given class loader.
......@@ -189,13 +202,25 @@ public final class UiExtension {
}
/**
* Sets the topology map factory for this extension.
*
* @param tmFactory topology map factory
* @return self, for chaining
*/
public Builder topoMapFactory(UiTopoMapFactory tmFactory) {
this.topoMapFactory = tmFactory;
return this;
}
/**
* Builds the UI extension.
*
* @return UI extension instance
*/
public UiExtension build() {
return new UiExtension(classLoader, resourcePath, views,
messageHandlerFactory, topoOverlayFactory);
messageHandlerFactory, topoOverlayFactory,
topoMapFactory);
}
}
......
/*
* Copyright 2016 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.ui;
/**
* Represents user interface topology view overlay.
*/
public class UiTopoMap {
private final String id;
private final String description;
private final String filePath;
private final double scale;
/**
* Creates a new topology map.
*
* @param id map identifier
* @param description map description
* @param filePath map filePath,
* @param scale map scale,
*/
public UiTopoMap(String id, String description, String filePath, double scale) {
this.id = id;
this.description = description;
this.filePath = filePath;
this.scale = scale;
}
/**
* Returns the identifier for this map.
*
* @return the identifier
*/
public String getId() {
return this.id;
}
/**
* Returns the description for this map.
*
* @return the description
*/
public String getDescription() {
return this.description;
}
/**
* Returns the filePath for this map.
*
* @return the filePath
*/
public String getFilePath() {
return this.filePath;
}
/**
* Returns the scale for this map.
*
* @return the scale
*/
public double getScale() {
return this.scale;
}
}
/*
* Copyright 2016 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.ui;
import java.util.List;
/**
* Abstraction of an entity capable of producing one or more topology
* map topologies.
*/
public interface UiTopoMapFactory {
/**
* Produces a list of new maps.
*
* @return list of new maps
*/
List<UiTopoMap> newMaps();
}
\ No newline at end of file
......@@ -18,10 +18,12 @@ package org.onosproject.ui.impl;
import com.fasterxml.jackson.databind.node.ArrayNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableSet;
import org.onosproject.ui.RequestHandler;
import org.onosproject.ui.UiMessageHandler;
import org.onosproject.ui.UiExtensionService;
import org.onosproject.ui.UiTopoMapFactory;
import org.onosproject.ui.UiTopoMap;
import java.util.Collection;
import java.util.List;
......@@ -38,21 +40,9 @@ class MapSelectorMessageHandler extends UiMessageHandler {
private static final String MAPS = "maps";
private static final String MAP_ID = "id";
private static final String DESCRIPTION = "description";
private static final String FILE_PATH = "filePath";
private static final String SCALE = "scale";
private static final List<Map> SUPPORTED_MAPS =
ImmutableList.of(new Map("australia", "Australia", 1.0),
new Map("ns_america", "North, Central and South America", 0.7),
new Map("s_america", "South America", 0.9),
new Map("usa", "United States", 1.0),
new Map("bayarea", "Bay Area, California", 1.0),
new Map("europe", "Europe", 2.5),
new Map("italy", "Italy", 0.8),
new Map("uk", "United Kingdom and Ireland", 0.6),
new Map("japan", "Japan", 0.8),
new Map("s_korea", "South Korea", 0.75),
new Map("taiwan", "Taiwan", 0.7));
@Override
protected Collection<RequestHandler> createRequestHandlers() {
return ImmutableSet.of(
......@@ -72,30 +62,30 @@ class MapSelectorMessageHandler extends UiMessageHandler {
}
private ObjectNode mapsJson() {
ObjectNode payload = objectNode();
ArrayNode order = arrayNode();
ObjectNode maps = objectNode();
payload.set(ORDER, order);
payload.set(MAPS, maps);
SUPPORTED_MAPS.forEach(m -> {
maps.set(m.id, objectNode().put(MAP_ID, m.id)
.put(DESCRIPTION, m.description)
.put(SCALE, m.scale));
order.add(m.id);
});
return payload;
}
private static final class Map {
private final String id;
private final String description;
private final double scale;
UiExtensionService service = get(UiExtensionService.class);
service.getExtensions().forEach(ext -> {
UiTopoMapFactory mapFactory = ext.topoMapFactory();
private Map(String id, String description, double scale) {
this.id = id;
this.description = description;
this.scale = scale;
}
if (mapFactory != null) {
List<UiTopoMap> topoMaps = mapFactory.newMaps();
topoMaps.forEach(m -> {
maps.set(m.getId(), objectNode().put(MAP_ID, m.getId())
.put(DESCRIPTION, m.getDescription())
.put(FILE_PATH, m.getFilePath())
.put(SCALE, m.getScale()));
order.add(m.getId());
});
}
});
return payload;
}
}
\ No newline at end of file
......
......@@ -52,8 +52,10 @@ import org.onosproject.ui.UiExtensionService;
import org.onosproject.ui.UiMessageHandlerFactory;
import org.onosproject.ui.UiPreferencesService;
import org.onosproject.ui.UiTopoOverlayFactory;
import org.onosproject.ui.UiTopoMapFactory;
import org.onosproject.ui.UiView;
import org.onosproject.ui.UiViewHidden;
import org.onosproject.ui.UiTopoMap;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
......@@ -165,9 +167,29 @@ public class UiExtensionManager
new TrafficOverlay()
);
UiTopoMapFactory topoMapFactory =
() -> ImmutableList.of(
new UiTopoMap("australia", "Australia", "*australia", 1.0),
new UiTopoMap("americas", "North, Central and South America", "*americas", 0.7),
new UiTopoMap("n_america", "North America", "*n_america", 0.9),
new UiTopoMap("s_america", "South America", "*s_america", 0.9),
new UiTopoMap("usa", "United States", "*continental_us", 1.0),
new UiTopoMap("bayareaGEO", "Bay Area, California", "*bayarea", 1.0),
new UiTopoMap("europe", "Europe", "*europe", 2.5),
new UiTopoMap("italy", "Italy", "*italy", 0.8),
new UiTopoMap("uk", "United Kingdom and Ireland", "*uk", 0.6),
new UiTopoMap("japan", "Japan", "*japan", 0.8),
new UiTopoMap("s_korea", "South Korea", "*s_korea", 0.75),
new UiTopoMap("taiwan", "Taiwan", "*taiwan", 0.7),
new UiTopoMap("africa", "Africa", "*africa", 0.7),
new UiTopoMap("oceania", "Oceania", "*oceania", 0.7),
new UiTopoMap("asia", "Asia", "*asia", 0.7)
);
return new UiExtension.Builder(CL, coreViews)
.messageHandlerFactory(messageHandlerFactory)
.topoOverlayFactory(topoOverlayFactory)
.topoMapFactory(topoMapFactory)
.resourcePath(CORE)
.build();
}
......
......@@ -42,16 +42,24 @@
// mapping to ~/data/map/continental_us.topojson contains
// exactly the paths for the continental US.
function loadMapInto(mapLayer, id, opts) {
var promise = gds.fetchTopoData(id),
function loadMapInto(mapLayer, mapPath, id, opts) {
var promise = gds.fetchTopoData(mapPath),
deferredProjection = $q.defer();
if (!promise) {
$log.warn('Failed to load map: ' + id);
$log.warn('Failed to load map: ' + mapPath);
return false;
}
promise.then(function () {
// NOTE: This finds the topo object within the topojson file
var topoObjects = promise.topodata.objects;
if (topoObjects.hasOwnProperty(id)) {
opts.objectTag = id;
}
var gen = gds.createPathGenerator(promise.topodata, opts);
deferredProjection.resolve(gen.settings.projection);
......
......@@ -376,7 +376,12 @@
function currentMap() {
return ps.getPrefs(
'topo_mapid',
{ mapid: 'usa', mapscale: 1, tint: 'off'},
{
mapid: 'usa',
mapscale: 1,
mapfilepath: '*continental_us',
tint: 'off'
},
$loc.search()
);
}
......@@ -384,6 +389,7 @@
function setUpMap() {
var prefs = currentMap(),
mapId = prefs.mapid,
mapFilePath = prefs.mapfilepath,
mapScale = prefs.mapscale,
tint = prefs.tint,
promise,
......@@ -402,35 +408,24 @@
d3.selectAll(this.childNodes).remove();
});
}
if (mapId === 'usa') {
shadeFlip = 0;
promise = ms.loadMapInto(mapG, '*continental_us', {
adjustScale: mapScale,
shading: shading()
});
} else if (mapId === 'bayarea') {
shadeFlip = 1;
promise = ms.loadMapInto(mapG, '*bayarea', {
objectTag: 'bayareaGEO',
if (mapFilePath === '*countries') {
cfilter = countryFilters[mapId] || countryFilters.uk;
promise = ms.loadMapRegionInto(mapG, {
countryFilter: cfilter,
adjustScale: mapScale,
shading: shading()
});
} else if (mapId === 'taiwan') {
shadeFlip = 0;
promise = ms.loadMapInto(mapG, '*taiwan', {
objectTag: 'taiwan',
adjustScale: mapScale,
shading: shading()
})
} else {
shadeFlip = 0;
cfilter = countryFilters[mapId] || countryFilters.uk;
promise = ms.loadMapRegionInto(mapG, {
countryFilter: cfilter,
promise = ms.loadMapInto(mapG, mapFilePath, mapId, {
adjustScale: mapScale,
shading: shading()
});
}
ps.setPrefs('topo_mapid', prefs);
return promise;
}
......
......@@ -59,6 +59,7 @@
var p = {
mapid: map.id,
mapscale: map.scale,
mapfilepath: map.filePath,
tint: tintCheck.property('checked') ? 'on' : 'off'
};
setMap(p);
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
{
"type": "Topology",
"transform": {
"scale": [0.0011894605993974438, 0.0011598935795490968],
"translate": [6.62773062275904, 35.49486425540846]
},
"objects": {
"italy": {
"type": "GeometryCollection",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:OGC:1.3:CRS84"
}
},
"geometries": [{
"type": "Polygon",
"arcs": [
[0, 1, 2, 3, 4, 5, 6, 7]
],
"id": "VERCELLI",
"properties": {
"nome_pro": "VERCELLI"
}
}, {
"type": "Polygon",
"arcs": [
[8, 9, 10, -1, 11]
],
"id": "NOVARA",
"properties": {
"nome_pro": "NOVARA"
}
}, {
"type": "Polygon",
"arcs": [
[12, -4, 13, 14, 15, 16, 17],
[18]
],
"id": "TORINO",
"properties": {
"nome_pro": "TORINO"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[19, 20, 21, -16, 22]
]
],
"id": "CUNEO",
"properties": {
"nome_pro": "CUNEO"
}
}, {
"type": "Polygon",
"arcs": [
[-6, 23, -18, 24]
],
"id": "VALLE D'AOSTA",
"properties": {
"nome_pro": "VALLE D'AOSTA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[25, -21, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36]
]
],
"id": "IMPERIA",
"properties": {
"nome_pro": "IMPERIA"
}
}, {
"type": "Polygon",
"arcs": [
[37, 38, -23, -15]
],
"id": "ASTI",
"properties": {
"nome_pro": "ASTI"
}
}, {
"type": "Polygon",
"arcs": [
[39, 40, 41, 42, -38, -14, -3],
[43],
[44]
],
"id": "ALESSANDRIA",
"properties": {
"nome_pro": "ALESSANDRIA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[45, 46, 47, 48, 49]
]
],
"id": "COMO",
"properties": {
"nome_pro": "COMO"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[50, -27, -20, -39, -43, 51, 52, 53]
]
],
"id": "SAVONA",
"properties": {
"nome_pro": "SAVONA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[54, -52, -42, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66]
]
],
"id": "GENOVA",
"properties": {
"nome_pro": "GENOVA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[67, -58, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80]
]
],
"id": "LA SPEZIA",
"properties": {
"nome_pro": "LA SPEZIA"
}
}, {
"type": "Polygon",
"arcs": [
[-48, 81, 82, -9, 83, 84]
],
"id": "VARESE",
"properties": {
"nome_pro": "VARESE"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[85, 86, 87, 88, 89, -10, -83]
]
],
"id": "MILANO",
"properties": {
"nome_pro": "MILANO"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[90, -92, 92, 93, -40, -2, -11, -90],
[94],
[95]
]
],
"id": "PAVIA",
"properties": {
"nome_pro": "PAVIA"
}
}, {
"type": "Polygon",
"arcs": [
[96, 97, -87, 98, 99, 100]
],
"id": "BERGAMO",
"properties": {
"nome_pro": "BERGAMO"
}
}, {
"type": "Polygon",
"arcs": [
[101, 102, 103, 104, -97, 105]
],
"id": "BRESCIA",
"properties": {
"nome_pro": "BRESCIA"
}
}, {
"type": "Polygon",
"arcs": [
[106, 107, -106, -101, 108, -50, 109]
],
"id": "SONDRIO",
"properties": {
"nome_pro": "SONDRIO"
}
}, {
"type": "Polygon",
"arcs": [
[110, 111, -107, 112]
],
"id": "BOLZANO/BOZEN",
"properties": {
"nome_pro": "BOLZANO/BOZEN"
}
}, {
"type": "Polygon",
"arcs": [
[-105, 113, 114, 115, 116, -88, -98]
],
"id": "CREMONA",
"properties": {
"nome_pro": "CREMONA"
}
}, {
"type": "Polygon",
"arcs": [
[117, 118, 119, 120, 121, -114, -104, 122]
],
"id": "MANTOVA",
"properties": {
"nome_pro": "MANTOVA"
}
}, {
"type": "Polygon",
"arcs": [
[123, 124, 125, 126, 127, -111, 128]
],
"id": "BELLUNO",
"properties": {
"nome_pro": "BELLUNO"
}
}, {
"type": "Polygon",
"arcs": [
[129, 130, -102, -108, -112, -128]
],
"id": "TRENTO",
"properties": {
"nome_pro": "TRENTO"
}
}, {
"type": "Polygon",
"arcs": [
[131, 132, 133, -123, -103, -131]
],
"id": "VERONA",
"properties": {
"nome_pro": "VERONA"
}
}, {
"type": "Polygon",
"arcs": [
[-127, 134, 135, -132, -130]
],
"id": "VICENZA",
"properties": {
"nome_pro": "VICENZA"
}
}, {
"type": "Polygon",
"arcs": [
[136, -118, -134, 137, 138, 139]
],
"id": "ROVIGO",
"properties": {
"nome_pro": "ROVIGO"
}
}, {
"type": "Polygon",
"arcs": [
[140, 141, 142, -135, -126]
],
"id": "TREVISO",
"properties": {
"nome_pro": "TREVISO"
}
}, {
"type": "Polygon",
"arcs": [
[143, 144, -139, 145, -142, 146]
],
"id": "VENEZIA",
"properties": {
"nome_pro": "VENEZIA"
}
}, {
"type": "Polygon",
"arcs": [
[-146, -138, -133, -136, -143]
],
"id": "PADOVA",
"properties": {
"nome_pro": "PADOVA"
}
}, {
"type": "Polygon",
"arcs": [
[147, 148, -144, 149, -124, 150]
],
"id": "UDINE",
"properties": {
"nome_pro": "UDINE"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[151, -148, 152, 153, 154, 155]
]
],
"id": "GORIZIA",
"properties": {
"nome_pro": "GORIZIA"
}
}, {
"type": "Polygon",
"arcs": [
[-122, 156, 157, -69, -57, 158, -115]
],
"id": "PARMA",
"properties": {
"nome_pro": "PARMA"
}
}, {
"type": "Polygon",
"arcs": [
[159, 160, 161, -157, -121]
],
"id": "REGGIO NELL'EMILIA",
"properties": {
"nome_pro": "REGGIO NELL'EMILIA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[162, -154, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172]
]
],
"id": "TRIESTE",
"properties": {
"nome_pro": "TRIESTE"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[-159, -56, -41, -94, 173, -116]
]
],
"id": "PIACENZA",
"properties": {
"nome_pro": "PIACENZA"
}
}, {
"type": "Polygon",
"arcs": [
[174, 175, 176, 177, 178]
],
"id": "FORLI'-CESENA",
"properties": {
"nome_pro": "FORLI'-CESENA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[179, 180, 181, 182, -160, -120]
]
],
"id": "MODENA",
"properties": {
"nome_pro": "MODENA"
}
}, {
"type": "Polygon",
"arcs": [
[183, 184, 185, 186, -181, 187]
],
"id": "BOLOGNA",
"properties": {
"nome_pro": "BOLOGNA"
}
}, {
"type": "Polygon",
"arcs": [
[188, 189, -188, -180, -119, -137]
],
"id": "FERRARA",
"properties": {
"nome_pro": "FERRARA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[190, -179, 191, -184, -190, 192]
]
],
"id": "RAVENNA",
"properties": {
"nome_pro": "RAVENNA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[193, 194, 195, 196, 197, 198],
[199],
[200]
]
],
"id": "ANCONA",
"properties": {
"nome_pro": "ANCONA"
}
}, {
"type": "Polygon",
"arcs": [
[-187, 201, 202, 203, -182]
],
"id": "PISTOIA",
"properties": {
"nome_pro": "PISTOIA"
}
}, {
"type": "Polygon",
"arcs": [
[-192, -178, 204, 205, 206, 207, -203, 208, -185]
],
"id": "FIRENZE",
"properties": {
"nome_pro": "FIRENZE"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[209, 210, 211, 212, -196, 213]
]
],
"id": "MACERATA",
"properties": {
"nome_pro": "MACERATA"
}
}, {
"type": "Polygon",
"arcs": [
[214, 215, 216, 217, -212, 218]
],
"id": "ASCOLI PICENO",
"properties": {
"nome_pro": "ASCOLI PICENO"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[-162, 219, 220, -70, -158]
]
],
"id": "MASSA-CARRARA",
"properties": {
"nome_pro": "MASSA-CARRARA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[221, -220, -161, -183, -204, -208, 222, 223],
[-225]
]
],
"id": "LUCCA",
"properties": {
"nome_pro": "LUCCA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[-198, 225, 226, 227, 228, 229, 230],
[231]
]
],
"id": "PESARO E URBINO",
"properties": {
"nome_pro": "PESARO E URBINO"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[232, -227, 233, 234, -205, -177]
]
],
"id": "AREZZO",
"properties": {
"nome_pro": "AREZZO"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[235, 236, 237, 238]
],
[
[239]
]
],
"id": "LIVORNO",
"properties": {
"nome_pro": "LIVORNO"
}
}, {
"type": "Polygon",
"arcs": [
[-207, 240, 241, -237, 242, -223]
],
"id": "PISA",
"properties": {
"nome_pro": "PISA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[-197, -213, -218, 243, 244, 245, 246, 247, -234, -226]
]
],
"id": "PERUGIA",
"properties": {
"nome_pro": "PERUGIA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[248, 249, -238, -242, 250, 251, 252, 253, 254]
]
],
"id": "GROSSETO",
"properties": {
"nome_pro": "GROSSETO"
}
}, {
"type": "Polygon",
"arcs": [
[-248, 255, -246, 256, 257, -251, -241, -206, -235]
],
"id": "SIENA",
"properties": {
"nome_pro": "SIENA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[258, 259, 260, 261, 262, 263, 264, 265, 266, 267],
[268],
[269]
]
],
"id": "ROMA",
"properties": {
"nome_pro": "ROMA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[270, 271, 272, 273, -257, -245]
]
],
"id": "TERNI",
"properties": {
"nome_pro": "TERNI"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[-274, 274, -260, 275, -252, -258]
]
],
"id": "VITERBO",
"properties": {
"nome_pro": "VITERBO"
}
}, {
"type": "Polygon",
"arcs": [
[276, 277, -261, -275, -273, -279, -271, -244, -217]
],
"id": "RIETI",
"properties": {
"nome_pro": "RIETI"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[279, 280, 281, -264]
]
],
"id": "LATINA",
"properties": {
"nome_pro": "LATINA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[282, 283, 284, 285, 286]
]
],
"id": "BENEVENTO",
"properties": {
"nome_pro": "BENEVENTO"
}
}, {
"type": "Polygon",
"arcs": [
[287, 288, -280, -263, 289]
],
"id": "FROSINONE",
"properties": {
"nome_pro": "FROSINONE"
}
}, {
"type": "Polygon",
"arcs": [
[290, -285, 291, 292, -281, -289, 293]
],
"id": "CASERTA",
"properties": {
"nome_pro": "CASERTA"
}
}, {
"type": "Polygon",
"arcs": [
[294, 295, 296, -290, -262, -278, 297]
],
"id": "L'AQUILA",
"properties": {
"nome_pro": "L'AQUILA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[298, -292, -284, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319]
],
[
[-321, 321, -323, 323]
]
],
"id": "NAPOLI",
"properties": {
"nome_pro": "NAPOLI"
}
}, {
"type": "Polygon",
"arcs": [
[324, 325, -300, -283, 326],
[-328]
],
"id": "AVELLINO",
"properties": {
"nome_pro": "AVELLINO"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[328, 329, -301, -326]
]
],
"id": "SALERNO",
"properties": {
"nome_pro": "SALERNO"
}
}, {
"type": "Polygon",
"arcs": [
[330, 331, -295, 332]
],
"id": "PESCARA",
"properties": {
"nome_pro": "PESCARA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[333, 334, -327, -287, 335, 336]
]
],
"id": "FOGGIA",
"properties": {
"nome_pro": "FOGGIA"
}
}, {
"type": "Polygon",
"arcs": [
[337, 338, -296, -332, 339]
],
"id": "CHIETI",
"properties": {
"nome_pro": "CHIETI"
}
}, {
"type": "Polygon",
"arcs": [
[-336, -286, -291, 340, -338, 341]
],
"id": "CAMPOBASSO",
"properties": {
"nome_pro": "CAMPOBASSO"
}
}, {
"type": "Polygon",
"arcs": [
[-333, -298, -277, -216, 342]
],
"id": "TERAMO",
"properties": {
"nome_pro": "TERAMO"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[343, 344, 345, 346, 347]
]
],
"id": "MATERA",
"properties": {
"nome_pro": "MATERA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[348, 349, 350, 351, 352, 353]
],
[
[354, 355, 356]
],
[
[357, 358, 359]
]
],
"id": "ORISTANO",
"properties": {
"nome_pro": "ORISTANO"
}
}, {
"type": "Polygon",
"arcs": [
[-13, -24, -5]
],
"id": "BIELLA",
"properties": {
"nome_pro": "BIELLA"
}
}, {
"type": "Polygon",
"arcs": [
[360, 361, 362]
],
"id": "CROTONE",
"properties": {
"nome_pro": "CROTONE"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[363, 364, 365, 366]
]
],
"id": "CARBONIA-IGLESIAS",
"properties": {
"nome_pro": "CARBONIA-IGLESIAS"
}
}, {
"type": "Polygon",
"arcs": [
[-99, -86, -82, -47, 367]
],
"id": "MONZA E DELLA BRIANZA",
"properties": {
"nome_pro": "MONZA E DELLA BRIANZA"
}
}, {
"type": "Polygon",
"arcs": [
[-100, -368, -46, -109]
],
"id": "LECCO",
"properties": {
"nome_pro": "LECCO"
}
}, {
"type": "Polygon",
"arcs": [
[368, 369, 370]
],
"id": "VIBO VALENTIA",
"properties": {
"nome_pro": "VIBO VALENTIA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385]
],
[
[386, 387, -389, 389]
],
[
[390, 391, 392]
]
],
"id": "OLBIA-TEMPIO",
"properties": {
"nome_pro": "OLBIA-TEMPIO"
}
}, {
"type": "Polygon",
"arcs": [
[393, -219, -211]
],
"id": "FERMO",
"properties": {
"nome_pro": "FERMO"
}
}, {
"type": "Polygon",
"arcs": [
[-117, -174, -93, -395, -91, -89]
],
"id": "LODI",
"properties": {
"nome_pro": "LODI"
}
}, {
"type": "Polygon",
"arcs": [
[-84, -12, -8, 395]
],
"id": "VERBANO-CUSIO-OSSOLA",
"properties": {
"nome_pro": "VERBANO-CUSIO-OSSOLA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[396, 397, 398]
]
],
"id": "OGLIASTRA",
"properties": {
"nome_pro": "OGLIASTRA"
}
}, {
"type": "Polygon",
"arcs": [
[-230, 399, -228, -233, -176, 400],
[-402]
],
"id": "RIMINI",
"properties": {
"nome_pro": "RIMINI"
}
}, {
"type": "Polygon",
"arcs": [
[402, -364, 403, -351]
],
"id": "MEDIO CAMPIDANO",
"properties": {
"nome_pro": "MEDIO CAMPIDANO"
}
}, {
"type": "Polygon",
"arcs": [
[-209, -202, -186]
],
"id": "PRATO",
"properties": {
"nome_pro": "PRATO"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[404, 405, 406, -407, 406, 407, 408, 409, 410, 411, 412, 413]
]
],
"id": "MESSINA",
"properties": {
"nome_pro": "MESSINA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[414, 415, 416, 417, 418, 419, 420, 421]
]
],
"id": "SIRACUSA",
"properties": {
"nome_pro": "SIRACUSA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[422, 423, 424, 425, 426, -348, 427, 428, 429],
[-431]
]
],
"id": "BARI",
"properties": {
"nome_pro": "BARI"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[431, 432, -346, 433, -362, 434, 435]
]
],
"id": "COSENZA",
"properties": {
"nome_pro": "COSENZA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[436, 437, 438, 439],
[440]
]
],
"id": "AGRIGENTO",
"properties": {
"nome_pro": "AGRIGENTO"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[441, 442, 443, -377, 444, 445, -354, 446, 447, 448]
]
],
"id": "SASSARI",
"properties": {
"nome_pro": "SASSARI"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[-426, -425, 449, 450, 451, -344, -427],
[-453],
[-454],
[425, -455]
]
],
"id": "TARANTO",
"properties": {
"nome_pro": "TARANTO"
}
}, {
"type": "Polygon",
"arcs": [
[455, 456, -369, 457, -435, -361]
],
"id": "CATANZARO",
"properties": {
"nome_pro": "CATANZARO"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[458, 459, -450, -424, 460, 461]
]
],
"id": "BRINDISI",
"properties": {
"nome_pro": "BRINDISI"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[462, -370, -457, 463]
]
],
"id": "REGGIO DI CALABRIA",
"properties": {
"nome_pro": "REGGIO DI CALABRIA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[464, 465, 466, 467, -437, 468],
[469]
]
],
"id": "CALTANISSETTA",
"properties": {
"nome_pro": "CALTANISSETTA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[470, -398, 471, -349, -446, -376, -375]
]
],
"id": "NUORO",
"properties": {
"nome_pro": "NUORO"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[472, -451, -460, 473, 474, 475, 476, 477, 478, 479, 480]
]
],
"id": "LECCE",
"properties": {
"nome_pro": "LECCE"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[481, 482, 483, 484, 485, -439, 486]
],
[
[487, 488, 489]
]
],
"id": "TRAPANI",
"properties": {
"nome_pro": "TRAPANI"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[490, -465, 491, -412]
]
],
"id": "ENNA",
"properties": {
"nome_pro": "ENNA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[492, -365, -403, -350, -472, -397, 493]
]
],
"id": "CAGLIARI",
"properties": {
"nome_pro": "CAGLIARI"
}
}, {
"type": "Polygon",
"arcs": [
[-147, -141, -125, -150]
],
"id": "PORDENONE",
"properties": {
"nome_pro": "PORDENONE"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[494, 495, 496, -413, -492, -469, -440, -486, 497],
[-499]
]
],
"id": "PALERMO",
"properties": {
"nome_pro": "PALERMO"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[499, -421, 500, -466, -491, -411, 501]
]
],
"id": "CATANIA",
"properties": {
"nome_pro": "CATANIA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[502, -329, -325, -335, 503, -428, -347, -433, 504],
[-506]
]
],
"id": "POTENZA",
"properties": {
"nome_pro": "POTENZA"
}
}, {
"type": "MultiPolygon",
"arcs": [
[
[506, -467, -501, -420, 507]
]
],
"id": "RAGUSA",
"properties": {
"nome_pro": "RAGUSA"
}
}, {
"type": "Polygon",
"arcs": [
[-341, -294, -288, -297, -339]
],
"id": "ISERNIA",
"properties": {
"nome_pro": "ISERNIA"
}
}, {
"type": "Polygon",
"arcs": [
[508, -429, -504, -334]
],
"id": "BARLETTA-ANDRIA-TRANI",
"properties": {
"nome_pro": "BARLETTA-ANDRIA-TRANI"
}
}]
}
},
"arcs": [
[
[1449, 8862],
[48, -277],
[89, -119]
],
[
[1586, 8466],
[29, -125]
],
[
[1615, 8341],
[-121, 30],
[-213, -30]
],
[
[1281, 8341],
[-127, 44],
[22, 157]
],
[
[1176, 8542],
[82, -23],
[145, 153],
[11, 88],
[-159, 87],
[-154, -28]
],
[
[1101, 8819],
[-61, 167]
],
[
[1040, 8986],
[11, 7]
],
[
[1051, 8993],
[72, -22],
[198, 44],
[128, -153]
],
[
[1653, 8910],
[96, -233]
],
[
[1749, 8677],
[113, -142]
],
[
[1862, 8535],
[-148, -88],
[-128, 19]
],
[
[1449, 8862],
[91, 86],
[113, -38]
],
[
[1067, 8704],
[-9, -52],
[118, -110]
],
[
[1281, 8341],
[-19, -39]
],
[
[1262, 8302],
[-195, -25],
[-11, -137],
[51, -77]
],
[
[1107, 8063],
[-369, -68],
[-134, 14],
[-236, -60]
],
[
[368, 7949],
[-34, 94],
[-230, 72],
[-5, 93],
[-99, 76],
[186, 21],
[242, 111],
[41, 126],
[-67, 56]
],
[
[402, 8598],
[98, 3],
[289, 104],
[141, -35],
[137, 34]
],
[
[706, 7995],
[0, 0]
],
[
[1367, 7788],
[-199, -360]
],
[
[1168, 7428],
[-213, 27],
[-42, -68]
],
[
[913, 7387],
[-23, 96],
[-219, -52],
[-354, 106],
[-90, 117],
[43, 50],
[-79, 84],
[177, 161]
],
[
[1107, 8063],
[176, -115],
[88, 17],
[-54, -91],
[50, -86]
],
[
[1101, 8819],
[-34, -115]
],
[
[402, 8598],
[-88, 33],
[0, 117],
[-161, 73],
[7, 96],
[192, 74],
[59, -55],
[147, 53],
[76, -20],
[140, 76],
[266, -59]
],
[
[953, 7167],
[-195, -20],
[-29, 61],
[184, 179]
],
[
[1168, 7428],
[-29, -86],
[129, -62]
],
[
[1268, 7280],
[-266, -103]
],
[
[1002, 7177],
[-22, -1]
],
[
[980, 7176],
[0, 1]
],
[
[980, 7177],
[0, 0]
],
[
[980, 7177],
[-2, 0]
],
[
[978, 7177],
[-1, 0]
],
[
[977, 7177],
[0, 0]
],
[
[977, 7177],
[-1, 0]
],
[
[976, 7177],
[-17, -6]
],
[
[959, 7171],
[-6, -4]
],
[
[1262, 8302],
[25, -83],
[169, -1],
[52, -179],
[68, -29],
[-202, -229]
],
[
[1374, 7781],
[-7, 7]
],
[
[1615, 8341],
[92, -131],
[202, 28],
[24, -58],
[242, -198],
[-11, -57]
],
[
[2164, 7925],
[1, -63]
],
[
[2165, 7862],
[-40, -33],
[-112, 75],
[-117, -22],
[30, -66],
[-110, -62],
[-56, 80],
[-122, -61]
],
[
[1638, 7773],
[-264, 8]
],
[
[1836, 8210],
[0, 0]
],
[
[1746, 8210],
[0, 0]
],
[
[2342, 9176],
[-93, -9],
[-38, -150],
[63, -71],
[-71, -110]
],
[
[2203, 8836],
[-161, -83]
],
[
[2042, 8753],
[-108, 6],
[-13, 152]
],
[
[1921, 8911],
[100, -8],
[49, 68],
[-85, 61],
[69, 129],
[149, 98]
],
[
[2203, 9259],
[163, -16],
[-24, -67]
],
[
[1316, 7347],
[-48, -67]
],
[
[1638, 7773],
[48, -113]
],
[
[1686, 7660],
[-146, -73]
],
[
[1540, 7587],
[-31, -88],
[-128, -45],
[-65, -107]
],
[
[1732, 7678],
[-46, -18]
],
[
[2165, 7862],
[245, -49]
],
[
[2410, 7813],
[-13, -127]
],
[
[2397, 7686],
[79, -119],
[-51, -47]
],
[
[2425, 7520],
[-147, 78]
],
[
[2278, 7598],
[-14, 7]
],
[
[2264, 7605],
[-73, 29]
],
[
[2191, 7634],
[-188, 30]
],
[
[2003, 7664],
[-62, 10]
],
[
[1941, 7674],
[-84, 23]
],
[
[1857, 7697],
[-2, 0]
],
[
[1855, 7697],
[-3, 0]
],
[
[1852, 7697],
[-120, -19]
],
[
[2472, 7498],
[-47, 22]
],
[
[2397, 7686],
[100, 24],
[76, -61]
],
[
[2573, 7649],
[322, -236],
[-43, -41]
],
[
[2852, 7372],
[-130, 43]
],
[
[2722, 7415],
[-12, 12]
],
[
[2710, 7427],
[-1, 0]
],
[
[2709, 7427],
[-2, 0]
],
[
[2707, 7427],
[-7, -5]
],
[
[2700, 7422],
[-10, 0]
],
[
[2690, 7422],
[9, -43]
],
[
[2699, 7379],
[-162, 79]
],
[
[2537, 7458],
[-32, 23]
],
[
[2505, 7481],
[-4, 1]
],
[
[2501, 7482],
[-29, 16]
],
[
[2042, 8753],
[-3, -21]
],
[
[2039, 8732],
[-88, 16],
[-202, -71]
],
[
[1653, 8910],
[-19, 61],
[133, 104],
[-11, 66]
],
[
[1756, 9141],
[117, -30],
[48, -200]
],
[
[2039, 8732],
[187, -66],
[185, 80]
],
[
[2411, 8746],
[21, -115]
],
[
[2432, 8631],
[-30, -50]
],
[
[2402, 8581],
[-39, 20],
[-83, -136]
],
[
[2280, 8465],
[-254, -9],
[-45, -32],
[-119, 111]
],
[
[2280, 8465],
[-24, -56],
[108, -52]
],
[
[2441, 8338],
[-77, 19]
],
[
[2441, 8338],
[16, -28]
],
[
[2457, 8310],
[-151, -73],
[-67, -143],
[61, -51],
[-33, -116],
[-103, -2]
],
[
[2239, 7938],
[0, 0]
],
[
[2245, 7930],
[0, 0]
],
[
[2978, 9107],
[68, -40],
[-129, -70],
[44, -57],
[-72, -156],
[-102, -15],
[-87, -99],
[43, -106]
],
[
[2743, 8564],
[-311, 67]
],
[
[2411, 8746],
[-15, 27]
],
[
[2396, 8773],
[42, 295]
],
[
[2438, 9068],
[97, 40],
[223, -11],
[159, 38],
[61, -28]
],
[
[3270, 9354],
[58, -86],
[-112, -229],
[91, -169],
[235, 43]
],
[
[3542, 8913],
[-175, -192],
[19, -168]
],
[
[3386, 8553],
[-169, 0],
[-115, -182]
],
[
[3102, 8371],
[-352, 116],
[-7, 77]
],
[
[2978, 9107],
[-8, 87],
[141, 111],
[159, 49]
],
[
[3217, 9515],
[142, -71]
],
[
[3359, 9444],
[-89, -90]
],
[
[2438, 9068],
[-96, 108]
],
[
[2203, 9259],
[39, 71],
[-39, 113],
[179, 52],
[75, -177],
[138, -8],
[163, 76],
[75, -27],
[61, -114],
[90, 36],
[-10, 114],
[-105, 47],
[78, 138],
[91, 25],
[50, -74],
[129, -16]
],
[
[4919, 9643],
[-75, -47],
[-163, -5],
[-106, 49],
[-59, -124],
[-143, -20]
],
[
[4373, 9496],
[-170, -31],
[-58, -106],
[-197, -49],
[-64, -55],
[-88, 51],
[58, 176],
[-149, 19],
[-103, -62],
[-124, 38],
[-119, -33]
],
[
[3217, 9515],
[28, 72],
[-87, 60],
[73, 148],
[167, 18],
[100, -70],
[196, -27],
[79, 144],
[430, 71],
[102, -38],
[368, 106],
[-54, -73],
[137, -194],
[163, -89]
],
[
[3102, 8371],
[147, -61],
[-67, -73],
[107, 6],
[-63, -103]
],
[
[3226, 8140],
[-320, 94]
],
[
[2906, 8234],
[-163, 74]
],
[
[2743, 8308],
[-366, 220],
[25, 53]
],
[
[3849, 8290],
[-25, -42],
[210, -95]
],
[
[4034, 8153],
[-150, 0]
],
[
[3884, 8153],
[-146, 9],
[-157, -40]
],
[
[3581, 8122],
[-169, 61],
[-152, -54]
],
[
[3260, 8129],
[-34, 11]
],
[
[3386, 8553],
[70, -110],
[213, -78],
[89, -88],
[91, 13]
],
[
[5132, 9604],
[10, -51],
[-206, -141]
],
[
[4936, 9412],
[-147, -135],
[102, -42],
[34, -87],
[-72, -55]
],
[
[4853, 9093],
[-145, -24],
[-359, -114]
],
[
[4349, 8955],
[-97, 89]
],
[
[4252, 9044],
[-2, 91],
[177, 27],
[58, 68],
[-158, 137],
[46, 129]
],
[
[4919, 9643],
[213, -39]
],
[
[4252, 9044],
[-263, -2],
[-96, -54],
[-100, -192]
],
[
[3793, 8796],
[-169, -21],
[-79, 39],
[-3, 99]
],
[
[3793, 8796],
[64, -61],
[118, -236],
[111, -75]
],
[
[4086, 8424],
[-71, 0],
[11, -117]
],
[
[4026, 8307],
[-47, -63],
[-130, 46]
],
[
[4349, 8955],
[-46, -22],
[63, -145]
],
[
[4366, 8788],
[-146, -46],
[84, -139],
[-110, -73],
[-28, -99],
[-80, -7]
],
[
[4849, 8018],
[-85, 116],
[-127, -1],
[-155, 50],
[-130, -7],
[-153, -77],
[-165, 54]
],
[
[4026, 8307],
[292, -30],
[173, 33]
],
[
[4491, 8310],
[128, -64],
[178, 89]
],
[
[4797, 8335],
[20, -83],
[160, -79],
[-128, -155]
],
[
[4853, 9093],
[22, -81],
[199, -133]
],
[
[5074, 8879],
[7, -66],
[-135, -24],
[-61, -111],
[-140, -23],
[-150, 55]
],
[
[4595, 8710],
[-229, 78]
],
[
[5340, 8915],
[102, -165]
],
[
[5442, 8750],
[-160, -24],
[-145, -72],
[-284, -88],
[-58, -67],
[2, -164]
],
[
[4491, 8310],
[4, 43],
[185, 43],
[-119, 70],
[-62, 120],
[96, 124]
],
[
[5074, 8879],
[101, 52],
[165, -16]
],
[
[5776, 9102],
[-82, -118],
[43, -145],
[-172, -23]
],
[
[5565, 8816],
[-123, -66]
],
[
[5340, 8915],
[-64, 111],
[60, 233],
[-13, 90],
[-213, -10],
[-174, 73]
],
[
[5132, 9604],
[542, -47],
[284, -48],
[-284, -194],
[39, -58],
[202, -45],
[-139, -110]
],
[
[5804, 8874],
[-119, -96],
[-120, 38]
],
[
[5776, 9102],
[117, -55],
[-34, -155]
],
[
[5859, 8892],
[-13, -22]
],
[
[5846, 8870],
[-42, 4]
],
[
[5804, 8874],
[0, 0]
],
[
[3260, 8129],
[-56, -106],
[-34, -210],
[-215, -174]
],
[
[2955, 7639],
[-144, 95],
[-126, 1],
[-112, -86]
],
[
[2410, 7813],
[153, 112],
[262, 137],
[81, 172]
],
[
[3581, 8122],
[-61, -93],
[-40, -228],
[-124, -142],
[-77, -24],
[-48, -108]
],
[
[3231, 7527],
[-182, 37]
],
[
[3049, 7564],
[-94, 75]
],
[
[5940, 8821],
[-94, 49]
],
[
[5859, 8892],
[169, -56],
[102, -96],
[-110, -17]
],
[
[6020, 8723],
[-1, 0]
],
[
[6019, 8723],
[-10, 0]
],
[
[6009, 8723],
[-18, 33]
],
[
[5991, 8756],
[4, -3]
],
[
[5995, 8753],
[-30, 46]
],
[
[5965, 8799],
[-3, 0]
],
[
[5962, 8799],
[-6, 4]
],
[
[5956, 8803],
[0, 0]
],
[
[5956, 8803],
[-16, 18]
],
[
[2457, 8310],
[233, -68],
[53, 66]
],
[
[4839, 7526],
[57, -53]
],
[
[4896, 7473],
[1, -65],
[-117, -127],
[-122, -38],
[-50, -122]
],
[
[4608, 7121],
[-102, 7],
[-232, 99]
],
[
[4274, 7227],
[-55, 96],
[60, 115]
],
[
[4279, 7438],
[29, 61],
[116, -18],
[122, 137],
[160, -99],
[133, 7]
],
[
[3884, 8153],
[103, -94],
[-64, -34]
],
[
[3923, 8025],
[-138, -17],
[-44, -117],
[64, -51],
[-131, -136],
[44, -21],
[-77, -156],
[-91, 3],
[-30, -97]
],
[
[3520, 7433],
[-159, 3]
],
[
[3361, 7436],
[-130, 91]
],
[
[4340, 7811],
[40, -123],
[-263, -219]
],
[
[4117, 7469],
[-86, 71],
[-185, -120]
],
[
[3846, 7420],
[-128, -9]
],
[
[3718, 7411],
[-111, -24],
[-87, 46]
],
[
[3923, 8025],
[252, -78],
[68, -69],
[112, -7],
[-15, -60]
],
[
[4849, 8018],
[-90, 41],
[-17, -183]
],
[
[4742, 7876],
[-95, -70],
[-124, 43],
[-183, -38]
],
[
[4753, 7798],
[86, -272]
],
[
[4279, 7438],
[-162, 31]
],
[
[4742, 7876],
[11, -78]
],
[
[5778, 7009],
[23, -2]
],
[
[5801, 7007],
[97, -127]
],
[
[5898, 6880],
[-257, -71],
[-77, 58],
[-125, -20],
[-69, -108],
[-128, -86]
],
[
[5242, 6653],
[-97, 155],
[18, 59]
],
[
[5163, 6867],
[159, 118],
[89, 109],
[92, 24]
],
[
[5503, 7118],
[223, -118],
[52, 9]
],
[
[5424, 7085],
[0, 0]
],
[
[5431, 7091],
[0, 0]
],
[
[3718, 7411],
[-32, -223],
[-40, -17]
],
[
[3646, 7171],
[-198, 1]
],
[
[3448, 7172],
[-65, 46],
[59, 187],
[-81, 31]
],
[
[4274, 7227],
[-89, -57],
[6, -104],
[-180, -123]
],
[
[4011, 6943],
[-218, -61],
[-89, 59],
[-68, -80]
],
[
[3636, 6861],
[-69, 6],
[-29, 127],
[83, 43],
[-188, 112]
],
[
[3433, 7149],
[15, 23]
],
[
[3646, 7171],
[79, -45],
[77, 92],
[44, 202]
],
[
[5970, 6741],
[13, -17]
],
[
[5983, 6724],
[-121, -23],
[-133, -102],
[12, -112],
[-71, 20],
[-130, -78],
[21, -51]
],
[
[5561, 6378],
[-6, -21]
],
[
[5555, 6357],
[-62, -31],
[-90, 76],
[-132, 38],
[-29, 213]
],
[
[5898, 6880],
[72, -139]
],
[
[6072, 6529],
[56, -150]
],
[
[6128, 6379],
[-321, -67],
[-37, -71],
[-111, -34]
],
[
[5659, 6207],
[-142, 34]
],
[
[5517, 6241],
[38, 116]
],
[
[5561, 6378],
[113, -1],
[13, 65],
[385, 87]
],
[
[3049, 7564],
[-56, -53],
[47, -103],
[-84, -95]
],
[
[2956, 7313],
[-104, 59]
],
[
[2975, 7297],
[-19, 16]
],
[
[3433, 7149],
[-216, -18],
[-22, 58],
[-141, -14]
],
[
[3054, 7175],
[-79, 122]
],
[
[3240, 7497],
[0, 0]
],
[
[5163, 6867],
[-120, -34],
[-105, 88],
[-85, -11],
[-156, 88]
],
[
[4697, 6998],
[130, 90],
[-71, 43]
],
[
[4756, 7131],
[113, 115]
],
[
[4869, 7246],
[64, 15]
],
[
[4933, 7261],
[108, -82],
[86, 34],
[21, 93]
],
[
[5148, 7306],
[132, -40],
[223, -148]
],
[
[4860, 6990],
[0, 0]
],
[
[4608, 7121],
[148, 10]
],
[
[4697, 6998],
[-158, -169],
[126, -115],
[-180, -99]
],
[
[4485, 6615],
[-62, -9],
[-301, 204],
[-111, 133]
],
[
[3292, 6412],
[-36, 4],
[33, 200],
[-32, 105],
[-132, 150],
[-39, 101]
],
[
[3086, 6972],
[177, 42],
[-36, -76],
[49, -187],
[108, -36],
[55, -151]
],
[
[3439, 6564],
[53, -90],
[-63, -53]
],
[
[3429, 6421],
[-137, -9]
],
[
[3187, 6357],
[12, -115],
[-164, -7],
[-112, 52],
[264, 70]
],
[
[3636, 6861],
[52, -76],
[-86, -174]
],
[
[3602, 6611],
[-163, -47]
],
[
[3086, 6972],
[-32, 203]
],
[
[5517, 6241],
[-14, -58],
[-232, -42]
],
[
[5271, 6141],
[-31, 43],
[-124, -39],
[-92, 105],
[-157, -54],
[-105, 87],
[25, 114],
[-161, 24],
[-166, -62]
],
[
[4460, 6359],
[22, 4]
],
[
[4482, 6363],
[-5, 23]
],
[
[4477, 6386],
[8, 229]
],
[
[3791, 6089],
[-1, 0]
],
[
[3790, 6089],
[-132, 138],
[-207, 75],
[-22, 119]
],
[
[3602, 6611],
[124, 18],
[21, -86],
[235, 0],
[-4, -100],
[211, -13],
[17, -134],
[98, -9]
],
[
[4304, 6287],
[61, -35],
[-71, -117],
[-146, -80],
[48, -71],
[-140, -46]
],
[
[4056, 5938],
[-202, 18]
],
[
[3854, 5956],
[-5, -6]
],
[
[3849, 5950],
[-58, 139]
],
[
[4477, 6386],
[5, -23]
],
[
[4460, 6359],
[-31, -30]
],
[
[4429, 6329],
[-125, -42]
],
[
[5041, 5130],
[-228, 218],
[-107, 41],
[-70, 148],
[-198, 107],
[-59, -10],
[-85, 112]
],
[
[4294, 5746],
[149, 71],
[77, -72],
[225, 21],
[49, -31],
[160, 127]
],
[
[4954, 5862],
[292, -163],
[138, 10]
],
[
[5384, 5709],
[-4, -57],
[227, -87]
],
[
[5607, 5565],
[-94, -89],
[-147, -18],
[-14, -45],
[132, -98],
[21, -66]
],
[
[5505, 5249],
[-60, -33],
[-195, 137],
[-91, -106],
[-110, 78],
[-77, -63],
[149, -80],
[46, -76]
],
[
[5167, 5106],
[-93, 33]
],
[
[5074, 5139],
[0, 0]
],
[
[5074, 5139],
[-23, -8]
],
[
[5051, 5131],
[-10, -1]
],
[
[5069, 5380],
[0, 0]
],
[
[4902, 5528],
[0, 0]
],
[
[5271, 6141],
[-3, -47],
[-306, -172],
[-34, 31]
],
[
[4928, 5953],
[-20, -3]
],
[
[4908, 5950],
[-17, 3]
],
[
[4891, 5953],
[-14, 76],
[-126, 17],
[-98, 147],
[-185, 5],
[31, 70],
[-70, 61]
],
[
[4891, 5953],
[63, -91]
],
[
[4294, 5746],
[-86, 118],
[-152, 74]
],
[
[5659, 6207],
[29, -89]
],
[
[5688, 6118],
[-169, -2],
[-63, -124],
[30, -75],
[191, -152],
[-110, -47],
[-136, 44],
[-47, -53]
],
[
[4928, 5953],
[-20, -3]
],
[
[5505, 5249],
[82, -52],
[-15, -77],
[246, -11],
[60, -88],
[214, 18]
],
[
[6092, 5039],
[-94, -100]
],
[
[5998, 4939],
[-119, 33],
[-59, -47],
[-235, 77],
[-193, -57],
[-66, 105],
[-159, 56]
],
[
[7165, 4988],
[-137, -7],
[21, -132],
[-222, -94],
[-32, 45],
[-115, -45]
],
[
[6680, 4755],
[-35, 4]
],
[
[6645, 4759],
[-94, 33],
[-1, 147],
[73, 138]
],
[
[6623, 5077],
[287, 37],
[136, 52]
],
[
[7046, 5166],
[76, -46],
[-22, -86],
[65, -46]
],
[
[6149, 5339],
[73, -142],
[-42, -52]
],
[
[6180, 5145],
[-97, -38],
[9, -68]
],
[
[5607, 5565],
[59, -100],
[174, -69],
[75, 51],
[234, -108]
],
[
[6520, 5129],
[103, -52]
],
[
[6645, 4759],
[-329, -30],
[-90, -69]
],
[
[6226, 4660],
[-228, 279]
],
[
[6180, 5145],
[111, -66],
[13, 106],
[216, -56]
],
[
[6001, 5970],
[66, -119],
[-39, -114],
[86, 14],
[155, -67]
],
[
[6269, 5684],
[19, -167],
[104, -14]
],
[
[6392, 5503],
[-101, -145],
[-142, -19]
],
[
[5688, 6118],
[50, -82],
[263, -66]
],
[
[6232, 4573],
[-6, 87]
],
[
[6680, 4755],
[28, -139]
],
[
[6708, 4616],
[-83, -65],
[62, -119],
[-94, -13]
],
[
[6593, 4419],
[-122, -44],
[126, 105]
],
[
[6597, 4480],
[4, 4]
],
[
[6601, 4484],
[0, 0]
],
[
[6601, 4484],
[-11, 35]
],
[
[6590, 4519],
[-183, 80]
],
[
[6407, 4599],
[0, 0]
],
[
[6407, 4599],
[-23, -2]
],
[
[6384, 4597],
[-3, -4]
],
[
[6381, 4593],
[-2, -3]
],
[
[6379, 4590],
[-6, -13]
],
[
[6373, 4577],
[0, -2]
],
[
[6373, 4575],
[-17, -7]
],
[
[6356, 4568],
[-16, 5]
],
[
[6340, 4573],
[-7, 9]
],
[
[6333, 4582],
[-71, 11]
],
[
[6262, 4593],
[-4, -4]
],
[
[6258, 4589],
[11, -25]
],
[
[6269, 4564],
[2, 0]
],
[
[6271, 4564],
[-39, 9]
],
[
[6412, 4352],
[-2, 0]
],
[
[6412, 4352],
[0, -1]
],
[
[6410, 4351],
[2, 0]
],
[
[6410, 4351],
[0, 1]
],
[
[7496, 4794],
[-14, -128],
[-161, -62]
],
[
[7321, 4604],
[-140, -110],
[-25, 43],
[-448, 79]
],
[
[7165, 4988],
[110, -34],
[-11, -115],
[232, -45]
],
[
[6769, 4764],
[0, 0]
],
[
[7321, 4604],
[39, -96],
[101, -49],
[31, -154],
[144, -96],
[73, -133],
[-127, -155]
],
[
[7582, 3921],
[-110, 23],
[-79, -67],
[-114, 37],
[-132, 120],
[-186, 70],
[78, 116],
[-82, 141],
[-121, 108],
[-243, -50]
],
[
[6322, 6067],
[91, -74]
],
[
[6413, 5993],
[-120, -99],
[-24, -210]
],
[
[6001, 5970],
[61, 69],
[260, 28]
],
[
[7900, 5114],
[14, -135],
[-144, -111]
],
[
[7770, 4868],
[-59, -42],
[-184, 5],
[-31, -37]
],
[
[7046, 5166],
[-60, 35],
[189, 157],
[-55, 48],
[35, 140]
],
[
[7155, 5546],
[205, -22],
[533, 42],
[115, -37],
[29, -116],
[-238, -133],
[18, -108],
[83, -58]
],
[
[6854, 5669],
[-248, -268]
],
[
[6606, 5401],
[-36, 70],
[-178, 32]
],
[
[6413, 5993],
[217, -170],
[172, -67],
[52, -87]
],
[
[6520, 5129],
[109, 132],
[-70, 35],
[47, 105]
],
[
[6854, 5669],
[301, -123]
],
[
[6128, 6379],
[24, -78],
[170, -234]
],
[
[8490, 4499],
[-5, -200],
[124, -71]
],
[
[8609, 4228],
[-188, -241]
],
[
[8421, 3987],
[-197, 2],
[-9, -56]
],
[
[8215, 3933],
[-40, 58],
[21, 161],
[-152, -38],
[-123, 318],
[82, 52],
[-20, 89],
[102, 34]
],
[
[8085, 4607],
[143, -118],
[73, 52],
[189, -42]
],
[
[1675, 4160],
[-2, -41],
[151, -70],
[157, 23],
[36, -156],
[-35, -101],
[151, -75]
],
[
[2133, 3740],
[-135, -62]
],
[
[1998, 3678],
[-57, 17],
[-62, -97],
[-160, -31],
[-143, 71]
],
[
[1576, 3638],
[18, 163],
[-104, 0],
[6, 109],
[69, 56]
],
[
[1565, 3966],
[-4, 165],
[-71, 105]
],
[
[1490, 4236],
[79, 16],
[106, -92]
],
[
[1564, 3964],
[0, 2]
],
[
[1564, 3966],
[1, 0]
],
[
[1565, 3966],
[-1, -2]
],
[
[1562, 3966],
[0, 1]
],
[
[1562, 3967],
[2, -1]
],
[
[1564, 3966],
[-2, 0]
],
[
[8629, 2961],
[-41, 98],
[-91, 15],
[-102, 115]
],
[
[8395, 3189],
[133, 4],
[-55, 135],
[110, -7],
[158, 118]
],
[
[8741, 3439],
[112, -70],
[-39, -237],
[72, -86],
[-84, -110],
[-173, 25]
],
[
[1485, 3407],
[119, 28],
[138, -90]
],
[
[1742, 3345],
[112, -281],
[-144, -7],
[-40, -71]
],
[
[1670, 2986],
[-123, 84]
],
[
[1547, 3070],
[-44, -86],
[-46, 134],
[108, -23],
[-103, 124],
[60, 54],
[-37, 134]
],
[
[2203, 8836],
[56, -71],
[137, 8]
],
[
[8059, 2860],
[132, -60],
[-34, -85],
[76, -77]
],
[
[8233, 2638],
[-24, -95],
[-107, 4],
[-155, 97],
[-135, -47]
],
[
[7812, 2597],
[-78, 102],
[162, 87],
[72, -12],
[91, 86]
],
[
[2479, 4670],
[23, -1]
],
[
[2502, 4669],
[25, 9]
],
[
[2527, 4678],
[97, -224]
],
[
[2624, 4454],
[-139, 40],
[-249, -157],
[-81, 10]
],
[
[2155, 4347],
[-1, 0]
],
[
[2154, 4347],
[-11, 108],
[-137, 15],
[11, 98],
[-54, 144],
[-134, -24]
],
[
[1829, 4688],
[177, 167],
[133, 44],
[54, 70],
[70, -48]
],
[
[2263, 4921],
[0, 0]
],
[
[2263, 4921],
[175, -39],
[0, -115]
],
[
[2438, 4767],
[27, -3]
],
[
[2465, 4764],
[-7, -80]
],
[
[2458, 4684],
[0, 0]
],
[
[2458, 4684],
[-20, 4]
],
[
[2438, 4688],
[-5, 0]
],
[
[2433, 4688],
[46, -18]
],
[
[2306, 5012],
[0, 2]
],
[
[2306, 5014],
[8, -2]
],
[
[2314, 5012],
[0, 0]
],
[
[2314, 5012],
[-8, 0]
],
[
[2469, 4854],
[5, 2]
],
[
[2474, 4856],
[0, -1]
],
[
[2474, 4855],
[-5, -1]
],
[
[5983, 6724],
[89, -195]
],
[
[2364, 8357],
[77, -19]
],
[
[1051, 8993],
[243, 222],
[-69, 67],
[320, 160],
[-31, -127],
[155, -152],
[87, -22]
],
[
[2543, 3496],
[-251, 120],
[-62, 198]
],
[
[2230, 3814],
[11, 97],
[119, 64],
[76, 97],
[87, 6]
],
[
[2523, 4078],
[89, -119],
[-69, -463]
],
[
[4933, 7261],
[-64, -15]
],
[
[4896, 7473],
[252, -167]
],
[
[4659, 7165],
[0, 0]
],
[
[1998, 3678],
[59, -9],
[-122, -303],
[-193, -21]
],
[
[1485, 3407],
[43, 76],
[0, 193],
[48, -38]
],
[
[7011, 2293],
[134, -16]
],
[
[7145, 2277],
[17, 5]
],
[
[7162, 2282],
[1, 0]
],
[
[7163, 2282],
[313, 134],
[79, -34]
],
[
[7555, 2382],
[0, 0]
],
[
[7555, 2382],
[-101, -157],
[-198, -231]
],
[
[7256, 1994],
[-124, 85],
[-107, -12],
[-44, 59],
[-108, -6],
[-50, -117]
],
[
[6823, 2003],
[-219, -5],
[-64, 47],
[-106, -23]
],
[
[6434, 2022],
[9, 67],
[-91, 88]
],
[
[6352, 2177],
[110, -9],
[267, 53],
[97, 81],
[185, -9]
],
[
[7137, 1566],
[58, -20]
],
[
[7195, 1546],
[15, 5]
],
[
[7210, 1551],
[33, -51]
],
[
[7243, 1500],
[-2, 1]
],
[
[7241, 1501],
[-17, -89],
[64, -22],
[-31, -115],
[-85, -46],
[-53, -124],
[37, -79],
[-116, 16]
],
[
[7040, 1042],
[-10, 63],
[-113, 44],
[70, 64],
[-121, 199]
],
[
[6866, 1412],
[65, 63],
[-83, 18],
[98, 73],
[-93, 17],
[96, 68],
[167, -43]
],
[
[7116, 1608],
[21, -42]
],
[
[8795, 4802],
[253, -148]
],
[
[9048, 4654],
[-79, -65],
[49, -59]
],
[
[9018, 4530],
[-53, 35]
],
[
[8965, 4565],
[1, 0]
],
[
[8966, 4565],
[-119, -67],
[-113, 42],
[-244, -41]
],
[
[8085, 4607],
[-35, 68]
],
[
[8050, 4675],
[156, 239],
[98, -36],
[32, 67]
],
[
[8336, 4945],
[459, -143]
],
[
[8413, 4535],
[0, 0]
],
[
[7725, 3606],
[-50, 213]
],
[
[7675, 3819],
[54, 67],
[177, -8],
[15, -84],
[243, 35],
[51, 104]
],
[
[8421, 3987],
[-15, -142],
[-109, -119],
[19, -128],
[212, -40],
[213, -119]
],
[
[8395, 3189],
[-91, -29],
[-19, -86],
[-185, 44],
[-142, -53]
],
[
[7958, 3065],
[-83, 342],
[-150, 199]
],
[
[5973, 1887],
[77, -7],
[-131, -87],
[-15, -98],
[168, -20],
[27, -67],
[123, -72],
[-39, -71],
[46, -75]
],
[
[6229, 1390],
[-126, -6],
[-517, 252],
[-97, 91],
[-114, -1],
[-104, 69]
],
[
[5271, 1795],
[-9, 58],
[105, 86]
],
[
[5367, 1939],
[149, -45],
[177, -116],
[-5, 88],
[144, -20],
[141, 41]
],
[
[5478, 1847],
[0, 0]
],
[
[1326, 4385],
[8, 12]
],
[
[1334, 4397],
[-68, 119],
[72, 117],
[-11, 89]
],
[
[1327, 4722],
[90, -109],
[155, -21],
[257, 96]
],
[
[2154, 4347],
[0, 0]
],
[
[2154, 4347],
[76, -23],
[-82, -120],
[-120, -39],
[-189, 72],
[-164, -77]
],
[
[1490, 4236],
[-76, 131]
],
[
[1414, 4367],
[-18, 28]
],
[
[1396, 4395],
[-70, -10]
],
[
[9018, 4530],
[101, -120],
[61, -148],
[113, 4],
[99, -54]
],
[
[9392, 4212],
[-29, -73]
],
[
[9363, 4139],
[-215, -1],
[-258, 102],
[-65, 92],
[-134, -34],
[-82, -70]
],
[
[8956, 4556],
[0, 0]
],
[
[8971, 4562],
[0, 0]
],
[
[8965, 4565],
[1, 0]
],
[
[8629, 2961],
[-233, -95],
[-66, -100],
[39, -200]
],
[
[8369, 2566],
[-136, 72]
],
[
[8059, 2860],
[6, 87],
[-107, 118]
],
[
[9534, 4451],
[109, -123]
],
[
[9643, 4328],
[-251, -116]
],
[
[9048, 4654],
[88, -60],
[398, -144]
],
[
[9534, 4450],
[0, 1]
],
[
[7651, 2098],
[-77, 69],
[-1, 191],
[134, 43],
[105, 196]
],
[
[8369, 2566],
[-102, -115],
[-118, -41],
[-130, -132],
[-88, -182],
[-280, 2]
],
[
[6312, 1830],
[21, -117],
[-87, -67],
[23, -56],
[226, -28]
],
[
[6495, 1562],
[19, -87],
[84, -62],
[-26, -70]
],
[
[6572, 1343],
[-90, -43]
],
[
[6482, 1300],
[-152, 81],
[-101, 9]
],
[
[5973, 1887],
[69, 19],
[119, -103],
[151, 27]
],
[
[6271, 1776],
[0, 0]
],
[
[2624, 4454],
[65, -112],
[-166, -264]
],
[
[2230, 3814],
[-97, -74]
],
[
[9794, 3739],
[-109, 28],
[-128, 114],
[1, 118],
[-110, 129],
[-85, 11]
],
[
[9643, 4328],
[238, -166]
],
[
[9881, 4162],
[33, -23]
],
[
[9914, 4139],
[1, 0]
],
[
[9915, 4139],
[0, 0]
],
[
[9915, 4139],
[6, -6]
],
[
[9921, 4133],
[52, -122]
],
[
[9973, 4011],
[-9, -73]
],
[
[9964, 3938],
[-59, -72],
[-16, -141],
[-95, 14]
],
[
[4889, 1978],
[14, 24]
],
[
[4903, 2002],
[50, 176],
[184, 104],
[-5, 35]
],
[
[5132, 2317],
[0, -1]
],
[
[5132, 2316],
[136, -134],
[71, 14]
],
[
[5339, 2196],
[64, -71],
[-70, -117],
[108, -9],
[-74, -60]
],
[
[5271, 1795],
[-188, -15],
[-131, 88],
[-63, 110]
],
[
[4750, 2105],
[5, -9]
],
[
[4755, 2096],
[-5, 7]
],
[
[4750, 2103],
[0, 2]
],
[
[6823, 2003],
[-15, -118],
[61, 27],
[-9, -181],
[-95, 48],
[-132, -70],
[98, -40],
[-114, -104],
[-122, -3]
],
[
[6312, 1830],
[112, 76],
[10, 116]
],
[
[2255, 3199],
[-181, 8],
[-62, -56],
[4, -125],
[-143, -108],
[-203, 68]
],
[
[2543, 3496],
[-79, -358],
[-100, -11],
[-109, 72]
],
[
[5417, 2288],
[208, 65],
[40, -85],
[147, -46]
],
[
[5812, 2222],
[-2, -1]
],
[
[5810, 2221],
[181, -86],
[227, 61],
[134, -19]
],
[
[5339, 2196],
[78, 92]
],
[
[6204, 1878],
[0, 0]
],
[
[7117, 1724],
[-1, -116]
],
[
[6866, 1412],
[-193, -69],
[-101, 0]
],
[
[7256, 1994],
[-139, -270]
],
[
[7648, 3858],
[-66, 63]
],
[
[7770, 4868],
[141, -88],
[-47, -73],
[186, -32]
],
[
[7675, 3819],
[-27, 39]
],
[
[7831, 4435],
[0, 0]
],
[
[6612, 1115],
[-130, 185]
],
[
[7040, 1042],
[-183, 1],
[-245, 72]
],
[
[7900, 5114],
[436, -169]
]
]
}
\ No newline at end of file
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
{
"type": "Topology",
"objects": {
"oceania": {
"type": "GeometryCollection",
"geometries": [{
"type": "MultiPolygon",
"properties": {
"name": "American Samoa"
},
"arcs": [
[
[0]
],
[
[1]
]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "Australia"
},
"arcs": [
[
[2]
],
[
[3]
],
[
[4]
],
[
[5]
],
[
[6]
],
[
[7]
],
[
[8]
],
[
[9]
],
[
[10]
],
[
[11]
],
[
[12]
],
[
[13]
],
[
[14]
],
[
[15]
],
[
[16]
],
[
[17]
],
[
[18]
],
[
[19]
],
[
[20]
],
[
[21]
],
[
[22]
],
[
[23]
],
[
[24]
],
[
[25]
],
[
[26]
],
[
[27]
],
[
[28]
],
[
[29]
],
[
[30]
],
[
[31]
],
[
[32]
],
[
[33]
],
[
[34]
],
[
[35]
],
[
[36]
],
[
[37]
],
[
[38]
],
[
[39]
],
[
[40]
],
[
[41]
],
[
[42]
],
[
[43]
],
[
[44]
],
[
[45]
],
[
[46]
],
[
[47]
],
[
[48]
],
[
[49]
],
[
[50]
],
[
[51]
],
[
[52]
],
[
[53]
],
[
[54]
],
[
[55]
],
[
[56]
],
[
[57]
],
[
[58]
],
[
[59]
],
[
[60]
],
[
[61]
],
[
[62]
],
[
[63]
],
[
[64]
],
[
[65]
],
[
[66]
],
[
[67]
],
[
[68]
],
[
[69]
],
[
[70]
],
[
[71]
]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "Cook Is."
},
"arcs": [
[
[72]
],
[
[73]
]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "Fiji"
},
"arcs": [
[
[74]
],
[
[75]
],
[
[76]
],
[
[77]
],
[
[78]
],
[
[79]
],
[
[80]
],
[
[81]
],
[
[82]
],
[
[83]
],
[
[84]
],
[
[85]
],
[
[86]
],
[
[87]
],
[
[88]
],
[
[89]
]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "Micronesia"
},
"arcs": [
[
[90]
],
[
[91]
],
[
[92]
]
]
}, {
"type": "Polygon",
"properties": {
"name": "Guam"
},
"arcs": [
[93]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "Kiribati"
},
"arcs": [
[
[94]
],
[
[95]
],
[
[96]
],
[
[97]
],
[
[98]
],
[
[99]
],
[
[100]
],
[
[101]
]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "Marshall Is."
},
"arcs": [
[
[102]
]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "N. Mariana Is."
},
"arcs": [
[
[103]
],
[
[104]
],
[
[105]
],
[
[106]
],
[
[107]
]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "New Caledonia"
},
"arcs": [
[
[108]
],
[
[109]
],
[
[110]
],
[
[111]
],
[
[112]
],
[
[113]
],
[
[114]
],
[
[115]
]
]
}, {
"type": "Polygon",
"properties": {
"name": "Norfolk Island"
},
"arcs": [
[116]
]
}, {
"type": "Polygon",
"properties": {
"name": "Niue"
},
"arcs": [
[117]
]
}, {
"type": "Polygon",
"properties": {
"name": "Nauru"
},
"arcs": [
[118]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "New Zealand"
},
"arcs": [
[
[119]
],
[
[120]
],
[
[121]
],
[
[122]
],
[
[123]
],
[
[124]
],
[
[125]
],
[
[126]
],
[
[127]
],
[
[128]
],
[
[129]
],
[
[130]
],
[
[131]
],
[
[132]
],
[
[133]
],
[
[134]
]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "Palau"
},
"arcs": [
[
[135]
],
[
[136]
]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "Papua New Guinea"
},
"arcs": [
[
[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]
]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "Fr. Polynesia"
},
"arcs": [
[
[178]
],
[
[179]
],
[
[180]
],
[
[181]
],
[
[182]
],
[
[183]
],
[
[184]
],
[
[185]
],
[
[186]
],
[
[187]
],
[
[188]
],
[
[189]
],
[
[190]
],
[
[191]
],
[
[192]
]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "Solomon Is."
},
"arcs": [
[
[193]
],
[
[194]
],
[
[195]
],
[
[196]
],
[
[197]
],
[
[198]
],
[
[199]
],
[
[200]
],
[
[201]
],
[
[202]
],
[
[203]
],
[
[204]
],
[
[205]
],
[
[206]
],
[
[207]
],
[
[208]
],
[
[209]
],
[
[210]
],
[
[211]
],
[
[212]
],
[
[213]
],
[
[214]
],
[
[215]
],
[
[216]
],
[
[217]
],
[
[218]
],
[
[219]
],
[
[220]
],
[
[221]
],
[
[222]
],
[
[223]
],
[
[224]
],
[
[225]
],
[
[226]
],
[
[227]
]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "Tonga"
},
"arcs": [
[
[228]
],
[
[229]
],
[
[230]
],
[
[231]
],
[
[232]
]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "Vanuatu"
},
"arcs": [
[
[233]
],
[
[234]
],
[
[235]
],
[
[236]
],
[
[237]
],
[
[238]
],
[
[239]
],
[
[240]
],
[
[241]
],
[
[242]
],
[
[243]
],
[
[244]
],
[
[245]
],
[
[246]
],
[
[247]
],
[
[248]
],
[
[249]
],
[
[250]
],
[
[251]
]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "Wallis and Futuna Is."
},
"arcs": [
[
[252]
],
[
[253]
]
]
}, {
"type": "MultiPolygon",
"properties": {
"name": "Samoa"
},
"arcs": [
[
[254]
],
[
[255]
]
]
}]
}
},
"arcs": [
[
[261, 5377],
[-2, -4],
[-2, -11],
[-2, 6],
[3, 8],
[3, 1]
],
[
[293, 5378],
[-2, -3],
[0, 6],
[2, -3]
],
[
[9412, 0],
[-1, 13],
[2, 21],
[2, 3],
[-3, -37]
],
[
[9093, 1510],
[-2, -17],
[-4, 7],
[0, 13],
[2, -4],
[0, 10],
[2, 6],
[2, -15]
],
[
[9095, 1528],
[-3, -2],
[1, 10],
[-2, 1],
[1, 13],
[2, -7],
[1, -15]
],
[
[9115, 1607],
[-3, -3],
[1, -7],
[-2, -1],
[0, 17],
[3, 2],
[1, -8]
],
[
[9020, 1862],
[6, -2],
[5, -10],
[3, 3],
[5, -10],
[2, 3],
[3, -10],
[3, -1],
[2, -13],
[3, -1],
[4, -9],
[8, -9],
[6, 5],
[0, -5],
[3, 11],
[3, 3],
[1, -12],
[4, -1],
[-4, 12],
[5, 12],
[5, -3],
[3, 9],
[5, -9],
[5, 24],
[5, -8],
[3, 4],
[1, 15],
[2, 0],
[3, -12],
[2, -1],
[3, -16],
[-1, -19],
[0, -16],
[1, -4],
[-1, -26],
[1, -17],
[-1, -12],
[1, -11],
[-2, -7],
[2, -12],
[0, -35],
[1, -12],
[-3, 1],
[2, 8],
[0, 8],
[-4, 8],
[2, 5],
[-3, 3],
[0, -12],
[-2, -3],
[-2, -34],
[1, -16],
[-2, -8],
[-2, 1],
[2, -9],
[0, -17],
[-2, -3],
[0, -12],
[3, -2],
[-1, -16],
[0, -15],
[1, -1],
[0, -16],
[-3, 11],
[0, -8],
[-3, -2],
[-2, 8],
[1, 7],
[-3, 5],
[1, 17],
[2, 0],
[-1, -8],
[3, -7],
[1, 20],
[-5, 2],
[-2, 9],
[-3, -4],
[2, -17],
[-1, -6],
[-3, -2],
[2, 9],
[0, 8],
[-4, 7],
[0, -24],
[-3, -12],
[1, -17],
[-3, -2],
[-2, 5],
[1, 7],
[-3, 0],
[0, 10],
[-2, -12],
[4, -9],
[-2, -20],
[-3, -2],
[1, -14],
[-2, -3],
[2, -5],
[-3, -3],
[-4, 1],
[-3, 8],
[0, 10],
[-2, -8],
[-7, 1],
[0, 6],
[-7, -9],
[1, 9],
[-3, 16],
[5, 0],
[3, -4],
[0, 10],
[-2, 5],
[-1, -6],
[-4, 3],
[0, 11],
[-2, 3],
[-2, -14],
[-1, 13],
[-3, 21],
[-3, 11],
[-2, 1],
[-2, 10],
[-2, 18],
[0, 13],
[-3, 7],
[1, 5],
[-2, 12],
[0, 29],
[6, -16],
[0, -13],
[3, 14],
[-5, 16],
[-1, 13],
[-1, -10],
[-2, 3],
[1, 20],
[-1, 10],
[-5, 19],
[-1, 11],
[-3, 9],
[1, 3],
[-3, 24],
[-2, 10],
[-1, 21],
[-1, 2],
[0, 19],
[-2, 12],
[0, 9],
[3, 7],
[-1, 25],
[2, 1],
[0, -7]
],
[
[9028, 1868],
[-5, -5],
[0, 7],
[2, 4],
[3, -6]
],
[
[9116, 1881],
[-3, 8],
[4, 5],
[-1, -13]
],
[
[9021, 1902],
[0, -11],
[-2, -9],
[0, 13],
[2, 7]
],
[
[9024, 1897],
[-2, 5],
[4, 4],
[-2, -9]
],
[
[9121, 1911],
[3, -9],
[-2, -8],
[-3, 7],
[-7, -3],
[-2, 8],
[2, 6],
[8, 6],
[1, -7]
],
[
[9109, 1997],
[5, -25],
[4, -11],
[1, -16],
[0, -18],
[-3, 4],
[-2, -8],
[-3, 6],
[0, 14],
[-2, 10],
[-2, 2],
[1, 9],
[-1, 8],
[-2, -2],
[-2, 5],
[3, 6],
[3, 16]
],
[
[9001, 1952],
[-5, -10],
[0, 21],
[-1, 1],
[0, 34],
[3, 6],
[-1, 9],
[2, 2],
[3, -10],
[0, -24],
[1, -22],
[-2, -7]
],
[
[9068, 2125],
[5, -1],
[-3, -6],
[-2, 7]
],
[
[9036, 2155],
[-6, 0],
[2, 7],
[4, 0],
[0, -7]
],
[
[9037, 2181],
[2, 1],
[2, -6],
[-3, -2],
[-1, -7],
[-3, 9],
[1, 9],
[2, -4]
],
[
[8822, 2545],
[-1, -9],
[2, 0],
[-2, -10],
[3, -4],
[3, 1],
[0, -8],
[2, 2],
[1, 9],
[3, -2],
[3, -10],
[-2, -14],
[-6, 8],
[-6, -6],
[0, -15],
[-4, -7],
[-3, 8],
[-4, 4],
[-3, -8],
[-3, 3],
[-3, -4],
[-1, 3],
[-4, -4],
[-2, 12],
[-2, 1],
[-1, 14],
[1, 11],
[6, 8],
[8, 5],
[7, 12],
[3, -4],
[5, 4]
],
[
[8783, 2613],
[-2, 1],
[0, 8],
[2, -9]
],
[
[8735, 2785],
[0, 9],
[2, -1],
[-2, -8]
],
[
[9263, 3630],
[1, 0],
[-1, -12],
[-1, -29],
[-2, -1],
[0, 33],
[1, 12],
[2, -3]
],
[
[9261, 3638],
[-2, 17],
[0, 22],
[3, 5],
[-1, -21],
[0, -23]
],
[
[8137, 3886],
[1, -1],
[1, -13],
[0, -12],
[3, -27],
[-1, -11],
[3, -7],
[0, -16],
[-2, 15],
[-3, 11],
[-2, 20],
[0, 13],
[-1, 8],
[0, 17],
[1, 3]
],
[
[8140, 3914],
[0, 28],
[1, 4],
[0, -17],
[-1, -15]
],
[
[8141, 3954],
[1, 22],
[0, -20],
[-1, -2]
],
[
[9257, 3985],
[0, -25],
[2, -7],
[0, -14],
[-2, -23],
[-6, -54],
[1, -8],
[-1, -8],
[-2, 7],
[0, 15],
[-1, 11],
[1, 2],
[0, 13],
[2, 9],
[0, 16],
[-2, 3],
[6, 21],
[1, 19],
[-3, 13],
[4, 15],
[0, -5]
],
[
[9204, 4101],
[-2, 13],
[1, 1],
[1, -14]
],
[
[9195, 4156],
[1, -4],
[4, -3],
[0, -17],
[2, -6],
[0, -10],
[-3, -4],
[-1, 14],
[-2, 6],
[-3, 19],
[2, 5]
],
[
[9158, 4292],
[0, 12],
[1, -1],
[-1, -11]
],
[
[9181, 4309],
[-2, -6],
[0, 17],
[2, -11]
],
[
[9163, 4320],
[-1, -1],
[0, 14],
[2, -1],
[-1, -12]
],
[
[8205, 4503],
[-3, -5],
[0, 10],
[4, 17],
[0, -20],
[-1, -2]
],
[
[9139, 4578],
[0, -8],
[-2, 1],
[0, 21],
[1, 2],
[1, -16]
],
[
[9137, 4607],
[-1, -17],
[-1, 8],
[2, 9]
],
[
[9079, 4733],
[0, -8],
[-3, 6],
[3, 2]
],
[
[9061, 4850],
[2, -1],
[-1, -7],
[2, -10],
[0, -14],
[-3, -1],
[-1, 13],
[-3, 17],
[4, -4],
[0, 7]
],
[
[8876, 4999],
[-4, -3],
[-1, 3],
[2, 5],
[1, 9],
[2, -6],
[0, -8]
],
[
[8880, 5086],
[1, -7],
[-4, -6],
[-2, 7],
[0, -10],
[-2, 1],
[0, -14],
[-2, 3],
[0, -6],
[-2, -5],
[-3, 2],
[-1, 16],
[1, 8],
[3, 9],
[2, 0],
[5, 9],
[4, -7]
],
[
[8796, 5180],
[-1, -5],
[-1, 11],
[2, 4],
[0, -10]
],
[
[8799, 5193],
[1, -7],
[-3, -8],
[0, 14],
[2, 1]
],
[
[8805, 5199],
[2, -7],
[0, -21],
[-3, 7],
[-1, 13],
[2, 8]
],
[
[8794, 5197],
[-3, -4],
[0, 14],
[3, 2],
[0, -12]
],
[
[8456, 5238],
[-3, 1],
[3, 6],
[0, -7]
],
[
[8459, 5244],
[0, -7],
[3, -11],
[-3, -6],
[0, 9],
[-2, 2],
[0, 8],
[2, 5]
],
[
[8560, 5255],
[-2, 4],
[0, 14],
[2, -9],
[0, -9]
],
[
[8470, 5283],
[-1, -9],
[-1, 10],
[2, -1]
],
[
[8567, 5276],
[-1, 0],
[-2, 11],
[1, 8],
[2, -19]
],
[
[8599, 5290],
[-1, 0],
[-1, 15],
[2, -8],
[0, -7]
],
[
[8477, 5347],
[-1, -7],
[1, -8],
[-3, -3],
[1, 20],
[2, -2]
],
[
[8516, 5425],
[-3, -2],
[0, 5],
[3, -3]
],
[
[8785, 5446],
[-1, -1],
[0, -13],
[-2, 10],
[-2, -8],
[0, 13],
[2, 0],
[1, 9],
[2, -10]
],
[
[8797, 5452],
[-1, -4],
[1, -16],
[3, -1],
[0, 13],
[2, 0],
[1, -6],
[-2, -9],
[0, -7],
[-3, -4],
[0, -13],
[-2, -4],
[1, -15],
[4, -3],
[1, 8],
[1, -4],
[0, -14],
[-6, 4],
[-1, -4],
[-8, 12],
[-2, -2],
[3, 9],
[-1, 11],
[0, 12],
[1, 14],
[4, 10],
[1, 7],
[-1, 7],
[4, -1]
],
[
[8782, 5483],
[-2, -2],
[1, 11],
[1, -9]
],
[
[8677, 5659],
[-2, 4],
[2, 4],
[0, -8]
],
[
[8747, 5662],
[-2, 9],
[2, -3],
[0, -6]
],
[
[8785, 5675],
[-3, -9],
[-2, 3],
[2, 7],
[3, -1]
],
[
[8790, 5689],
[0, 12],
[1, 2],
[-1, -14]
],
[
[8777, 5715],
[-1, 6],
[2, 3],
[-1, -9]
],
[
[8682, 5723],
[2, 1],
[0, -7],
[-3, -3],
[-1, 9],
[2, 0]
],
[
[8790, 5740],
[-4, -12],
[-4, -9],
[2, 14],
[2, -2],
[1, 7],
[3, 2]
],
[
[8708, 5742],
[-3, -2],
[2, 9],
[1, -7]
],
[
[8621, 5747],
[0, -9],
[2, -4],
[0, -16],
[5, -10],
[0, -6],
[-4, -4],
[-5, 9],
[-6, -8],
[-2, 2],
[1, 7],
[0, 12],
[2, -3],
[2, 5],
[-1, 14],
[1, 7],
[-2, 1],
[3, 12],
[0, 7],
[3, 4],
[1, -20]
],
[
[8624, 5772],
[3, -1],
[-1, -15],
[2, 3],
[2, -8],
[0, 7],
[4, 3],
[1, 7],
[2, -1],
[2, -11],
[0, 11],
[3, 9],
[1, -2],
[1, -17],
[0, 24],
[2, 3],
[0, -12],
[1, 5],
[3, 0],
[1, -9],
[0, -11],
[2, 1],
[0, -12],
[-2, 0],
[0, -18],
[-2, 4],
[-3, -20],
[-5, -13],
[-4, -13],
[-2, 7],
[-6, 11],
[0, 5],
[-5, 14],
[0, 14],
[-2, 6],
[0, 27],
[-2, 12],
[1, 7],
[3, -17]
],
[
[8798, 5807],
[0, -10],
[-6, -47],
[-2, 4],
[3, 9],
[0, 8],
[3, 20],
[1, 2],
[0, 12],
[1, 2]
],
[
[8682, 5804],
[1, -6],
[0, -25],
[-1, -6],
[-1, 13],
[-2, 7],
[1, 12],
[-1, 6],
[3, -1]
],
[
[8959, 5848],
[2, -7],
[-3, -12],
[3, -2],
[1, -16],
[2, 2],
[2, -19],
[0, -24],
[1, 0],
[0, -41],
[1, -18],
[-1, -11],
[2, -10],
[2, -4],
[4, 2],
[2, -9],
[-3, -21],
[0, -20],
[-1, -5],
[3, -2],
[3, -8],
[0, -15],
[1, -6],
[3, -4],
[0, -12],
[-2, -17],
[0, -10],
[5, 5],
[-1, -10],
[1, -4],
[-1, -16],
[1, -17],
[0, -20],
[2, -7],
[-1, -13],
[1, -2],
[-1, -11],
[0, -12],
[-1, -6],
[5, -45],
[0, -18],
[1, -17],
[2, -16],
[3, -7],
[4, 8],
[3, 10],
[0, 15],
[2, 1],
[0, -6],
[2, -2],
[4, 9],
[0, 12],
[2, -3],
[1, -11],
[0, -14],
[2, 4],
[-1, -8],
[0, -12],
[2, -10],
[3, 0],
[0, -5],
[3, -1],
[1, -5],
[0, -12],
[7, -14],
[4, -17],
[-3, -26],
[1, -11],
[3, 0],
[-2, -5],
[0, -12],
[-1, -1],
[1, -12],
[-1, -8],
[2, -4],
[1, -21],
[0, -26],
[1, -2],
[2, -17],
[-1, -14],
[1, -14],
[-2, -8],
[0, -19],
[2, -1],
[0, -6],
[4, -24],
[2, -3],
[0, -7],
[2, -8],
[0, -19],
[1, 9],
[4, 7],
[0, -12],
[-1, -1],
[0, -14],
[2, -15],
[1, -23],
[2, -5],
[0, -19],
[2, -10],
[-1, -7],
[0, -25],
[-1, -7],
[0, -12],
[-2, -12],
[0, -23],
[2, -12],
[3, -2],
[1, -17],
[3, -4],
[0, -16],
[-1, -9],
[-1, -21],
[4, -18],
[1, -9],
[3, -4],
[4, -12],
[1, 3],
[5, -18],
[4, 13],
[0, -14],
[2, -13],
[8, 0],
[1, 2],
[3, -16],
[1, -13],
[0, -18],
[2, -10],
[3, -1],
[-1, 19],
[3, -6],
[0, -12],
[3, -11],
[4, 3],
[0, -4],
[5, -6],
[0, -17],
[1, -6],
[4, -8],
[0, 12],
[3, 7],
[0, -12],
[3, -5],
[0, -12],
[2, 6],
[3, -14],
[0, -14],
[2, -10],
[-2, -2],
[-1, 13],
[-1, -5],
[-2, 3],
[0, -13],
[-1, -4],
[1, -15],
[4, -11],
[0, -14],
[3, 1],
[2, -6],
[0, -9],
[2, 1],
[3, -10],
[-1, -18],
[1, -12],
[2, 1],
[1, -15],
[-1, -17],
[2, 4],
[1, -11],
[3, -1],
[-2, -7],
[1, -10],
[-1, -7],
[1, -11],
[0, -16],
[2, -10],
[0, -9],
[2, -20],
[-1, -5],
[4, -11],
[0, -8],
[-2, -9],
[4, 9],
[1, 6],
[1, -11],
[3, -9],
[0, -6],
[2, -9],
[-2, 32],
[-1, 3],
[0, 15],
[1, 14],
[3, 1],
[3, -23],
[0, -7],
[6, -11],
[1, -7],
[3, -4],
[0, 24],
[2, 4],
[2, -14],
[2, -2],
[-2, -10],
[4, -22],
[-1, -10],
[0, -20],
[-1, -4],
[0, -27],
[2, -10],
[-1, -9],
[0, -15],
[2, -8],
[0, -13],
[4, 1],
[4, -19],
[0, -12],
[5, -9],
[2, -15],
[4, -7],
[-1, -6],
[4, 7],
[-1, 6],
[4, -6],
[1, -16],
[3, -2],
[1, -8],
[1, -25],
[3, -17],
[1, -11],
[5, -14],
[4, -6],
[1, -11],
[0, -20],
[2, -13],
[2, -6],
[-2, -3],
[3, -10],
[7, -6],
[0, -18],
[1, -12],
[-2, -6],
[1, -11],
[0, -15],
[2, -1],
[1, -8],
[0, -19],
[1, 17],
[1, -13],
[3, 0],
[-2, -13],
[-2, -42],
[2, -4],
[-1, -6],
[0, -33],
[1, -1],
[0, -32],
[2, -16],
[-1, -8],
[-2, 2],
[-2, -9],
[2, -6],
[-1, -16],
[3, -6],
[0, -11],
[3, -6],
[1, -10],
[0, -13],
[3, -20],
[0, -21],
[1, -18],
[3, -8],
[0, -58],
[2, -7],
[-1, -3],
[0, -24],
[-4, -18],
[-1, -10],
[0, -13],
[-2, -9],
[0, -39],
[-1, -4],
[0, -18],
[-1, -4],
[0, -26],
[-2, -8],
[0, -19],
[-2, -17],
[0, -9],
[-3, -20],
[0, -21],
[-1, -2],
[0, -25],
[3, -9],
[-2, -11],
[1, -8],
[-2, -10],
[-2, -32],
[0, -16],
[-2, -11],
[0, -10],
[-3, -20],
[-1, -12],
[-3, -8],
[-2, -13],
[1, -4],
[-2, -12],
[2, -6],
[-1, -5],
[0, -26],
[-4, -6],
[-5, -19],
[0, -7],
[-4, -2],
[4, -4],
[0, -4],
[-6, -5],
[-4, -8],
[-3, -13],
[0, -9],
[-2, -4],
[-1, -21],
[-2, -4],
[1, -6],
[-3, 2],
[-1, -4],
[2, -6],
[-2, -10],
[-1, -15],
[-4, -2],
[1, -3],
[0, -38],
[-1, -18],
[-2, 4],
[-3, -7],
[4, -1],
[-2, -3],
[0, -10],
[-3, -7],
[-4, -21],
[0, -22],
[-3, -7],
[2, -2],
[-1, -29],
[-2, -3],
[0, -24],
[3, -4],
[-1, -10],
[-2, 2],
[0, 9],
[-2, -2],
[0, -13],
[2, 0],
[0, -8],
[-4, 1],
[-2, -5],
[-2, -12],
[0, -11],
[-2, -9],
[0, -14],
[-1, -2],
[-2, -17],
[-2, -1],
[0, -18],
[-2, -6],
[0, -27],
[-1, -8],
[1, -20],
[-2, -8],
[0, -23],
[-3, -22],
[0, -12],
[-2, -15],
[1, -5],
[0, -15],
[-2, -5],
[4, -7],
[1, -15],
[-3, -3],
[1, -7],
[0, -23],
[-2, -5],
[-4, -2],
[-2, -17],
[-5, -12],
[-16, -1],
[-5, -4],
[-12, 0],
[-11, -13],
[-5, -9],
[-10, -31],
[-6, -24],
[-7, -31],
[-9, -9],
[-5, -3],
[-2, 4],
[-3, -2],
[-1, -6],
[2, -9],
[1, -12],
[5, 16],
[0, -31],
[-2, -16],
[-2, 2],
[0, 10],
[-2, 8],
[0, 7],
[-2, 10],
[-3, 6],
[-2, -1],
[0, -9],
[-3, -1],
[0, 10],
[-2, 15],
[-3, 10],
[-2, -5],
[-2, 2],
[-2, 12],
[-4, 5],
[2, 3],
[0, 13],
[3, 2],
[-2, 22],
[-6, 0],
[-1, -10],
[0, -14],
[-2, 2],
[-3, -7],
[0, -5],
[-3, -2],
[-7, 24],
[3, -7],
[6, 6],
[0, 5],
[3, 18],
[0, 14],
[-3, 12],
[-1, 11],
[-4, -2],
[-1, -8],
[-3, -8],
[-4, -6],
[0, -6],
[-4, 0],
[-1, -5],
[5, -5],
[3, 8],
[2, -3],
[0, -10],
[-2, -9],
[-6, 0],
[-6, -17],
[-4, -8],
[-4, -15],
[-2, -14],
[-4, -4],
[-1, -9],
[-4, -8],
[-5, 13],
[-3, -1],
[-3, 13],
[-2, 4],
[-7, 7],
[-1, 6],
[-7, 17],
[-3, 5],
[-7, -4],
[-6, 16],
[-6, 2],
[-3, -6],
[1, -12],
[-2, -3],
[-2, 6],
[-4, -2],
[1, 11],
[-7, 24],
[-6, 10],
[-6, -2],
[-4, 5],
[-6, 18],
[0, 6],
[-3, 24],
[-4, 13],
[1, 5],
[-4, 6],
[-6, 29],
[-1, 14],
[1, 8],
[-3, 20],
[5, 14],
[0, 30],
[-4, 33],
[-4, 40],
[-8, 36],
[-4, 14],
[-5, 12],
[1, 3],
[13, -46],
[3, -16],
[3, -24],
[-2, 21],
[0, 7],
[-6, 25],
[-8, 25],
[-2, 9],
[2, 9],
[2, 1],
[2, -6],
[0, -20],
[3, 1],
[0, 13],
[-4, 10],
[2, 5],
[2, -2],
[0, 15],
[-4, 7],
[-2, -7],
[-5, -5],
[-1, -12],
[2, -5],
[-7, 1],
[-3, -8],
[-5, -8],
[-5, 1],
[-2, -3],
[-3, 7],
[1, 11],
[4, 6],
[2, 14],
[3, 6],
[0, 31],
[2, 7],
[-1, 19],
[0, 19],
[2, 1],
[-3, 9],
[0, 7],
[-3, 9],
[0, 7],
[-2, 5],
[-1, 22],
[-2, 6],
[0, 8],
[-3, 10],
[-1, -12],
[1, -11],
[-4, -16],
[-1, -13],
[1, -13],
[-1, -5],
[0, -16],
[-2, -9],
[-1, -16],
[0, -20],
[-3, -8],
[-2, 6],
[-5, 3],
[-2, -7],
[-3, 0],
[-2, -10],
[-3, 2],
[-4, -9],
[-2, 11],
[4, 16],
[-1, 10],
[2, 16],
[2, -4],
[4, 3],
[4, -4],
[2, 2],
[0, 16],
[2, 28],
[-1, 16],
[-2, 1],
[2, 8],
[0, 28],
[-1, 7],
[2, 0],
[1, 7],
[0, 13],
[2, 6],
[-1, 9],
[4, 11],
[1, 13],
[1, -1],
[4, 23],
[-2, 12],
[0, 12],
[-2, 7],
[1, 14],
[6, 8],
[-1, 14],
[-2, 2],
[-1, 32],
[1, 2],
[-3, 7],
[0, 10],
[-2, 10],
[0, -20],
[1, -2],
[0, -25],
[-1, -12],
[-3, 5],
[-2, -11],
[-4, -14],
[0, -10],
[-2, -10],
[0, -18],
[-2, -7],
[-1, -17],
[-3, -13],
[-4, -3],
[-1, 6],
[-3, -8],
[3, -1],
[-3, -7],
[-2, 0],
[-2, -8],
[-4, -6],
[-2, -13],
[-2, -1],
[-2, -8],
[-4, -31],
[-3, -10],
[0, -20],
[-1, 7],
[-4, -7],
[0, -15],
[-2, 1],
[1, -17],
[-3, -4],
[3, -2],
[3, 6],
[-1, -11],
[1, -18],
[-5, 15],
[-2, 2],
[-4, -12],
[0, 9],
[-4, 20],
[-4, 6],
[1, 6],
[-3, 10],
[-4, -2],
[1, 11],
[2, 6],
[0, -7],
[3, -2],
[0, -7],
[2, -9],
[3, 2],
[-3, 7],
[0, 16],
[-1, 4],
[0, 20],
[-3, 18],
[0, 21],
[-2, 13],
[-9, 32],
[0, 24],
[-1, 16],
[-4, 14],
[2, 1],
[-1, 8],
[-3, 3],
[0, -8],
[-3, 6],
[-4, 1],
[0, -7],
[-2, 5],
[-2, 29],
[-4, 2],
[2, 9],
[0, 8],
[-2, 12],
[4, -1],
[0, -11],
[3, 19],
[-2, 18],
[-3, 9],
[-3, -1],
[-3, -10],
[-2, 0],
[1, 19],
[2, -1],
[-3, 21],
[-2, -3],
[0, 7],
[-2, 2],
[-1, 13],
[-2, 1],
[-1, -9],
[-2, 7],
[-2, -3],
[2, -9],
[-6, -2],
[-4, 5],
[-2, 11],
[-2, 3],
[-5, 16],
[-7, 3],
[-3, -7],
[1, -6],
[-3, 2],
[-4, -3],
[-3, 14],
[-9, 27],
[-12, 26],
[-6, 8],
[-4, -11],
[-6, -7],
[-7, 3],
[-11, 1],
[-11, -5],
[-6, -1],
[-1, -3],
[-7, -1],
[-7, -5],
[-6, -12],
[-3, -9],
[-12, -23],
[-6, -8],
[-7, -6],
[-6, -8],
[0, -3],
[-7, -9],
[-7, -4],
[-3, 1],
[-7, -2],
[-9, 4],
[-5, 7],
[-2, -6],
[-5, -4],
[-11, -32],
[-8, -12],
[-4, -10],
[-3, -3],
[-2, -13],
[-6, -9],
[-11, -9],
[-3, -9],
[-3, -16],
[0, -13],
[-1, -2],
[-2, -19],
[0, -18],
[-5, -14],
[-2, -11],
[0, -10],
[-2, -3],
[-4, -14],
[-1, 5],
[-3, 2],
[-3, -13],
[-3, -3],
[-1, 14],
[-3, 5],
[-5, -5],
[-1, 4],
[-6, -5],
[0, -6],
[-5, 5],
[-4, -5],
[0, -8],
[-5, 1],
[1, 6],
[-1, 12],
[-4, 6],
[-3, -9],
[-2, 4],
[-4, 0],
[-2, 6],
[-5, 1],
[-5, -7],
[-3, 3],
[-3, -4],
[-2, 2],
[-3, -4],
[-6, 0],
[0, -5],
[-4, -6],
[-4, 4],
[-6, 2],
[-7, -8],
[-5, -15],
[-2, -16],
[-2, -5],
[0, -13],
[2, -2],
[-2, -5],
[-3, 3],
[1, -10],
[-2, -4],
[-2, 4],
[0, -9],
[-4, 7],
[-5, 4],
[-3, -1],
[2, -6],
[-3, -2],
[-2, -6],
[1, -6],
[-3, -10],
[-4, -3],
[-3, -12],
[0, -15],
[-4, -1],
[-2, -4],
[0, -10],
[-2, 3],
[-8, -5],
[2, -6],
[3, -1],
[-2, -5],
[-5, 10],
[-3, -2],
[-1, -8],
[-6, 10],
[-1, 4],
[-5, 1],
[-2, -3],
[-4, 3],
[-2, -6],
[-3, 5],
[-3, -1],
[-6, 4],
[-2, 9],
[3, 2],
[-3, 7],
[0, -8],
[-8, 11],
[-3, 0],
[-1, 15],
[-2, 6],
[-7, 31],
[-10, 20],
[-3, -2],
[-1, -5],
[-3, 11],
[0, 16],
[-1, 7],
[0, 45],
[-1, 9],
[2, 7],
[-1, 15],
[2, -2],
[1, -8],
[3, -7],
[5, 2],
[2, 5],
[4, 22],
[0, 8],
[2, 11],
[0, 46],
[-1, 28],
[-1, 9],
[2, 17],
[1, -3],
[-2, -7],
[2, -22],
[0, 18],
[2, 1],
[-1, 15],
[0, 32],
[1, 15],
[-1, 1],
[0, 51],
[-1, 16],
[-3, 14],
[-1, 15],
[-3, 17],
[-4, 42],
[-6, 47],
[-1, 15],
[0, 20],
[-1, 16],
[-1, 2],
[0, 20],
[-1, 7],
[1, 20],
[-1, 5],
[0, 25],
[1, 10],
[0, 13],
[-1, 7],
[0, 14],
[-3, 31],
[-5, 24],
[-2, 15],
[0, 19],
[-1, 18],
[-5, 26],
[0, 4],
[-6, 25],
[-1, 27],
[0, 23],
[1, 5],
[-2, 32],
[-4, 37],
[-11, 73],
[-7, 30],
[0, 14],
[-4, 18],
[3, -4],
[1, -7],
[0, 28],
[1, 4],
[0, -42],
[2, 18],
[2, 2],
[0, -16],
[1, -2],
[0, -13],
[1, 5],
[-1, 11],
[1, 1],
[1, -11],
[0, -29],
[1, 2],
[0, 15],
[1, -5],
[0, -16],
[5, 0],
[0, 6],
[2, 8],
[-1, 13],
[1, 7],
[-3, 13],
[-3, 3],
[0, 7],
[-3, 11],
[0, 19],
[-3, 17],
[-1, 12],
[0, 12],
[2, 12],
[3, -16],
[0, -5],
[3, -12],
[1, -12],
[0, -14],
[-1, -3],
[0, -25],
[2, -1],
[2, 11],
[0, 23],
[1, 0],
[0, -22],
[1, -3],
[0, -12],
[1, -14],
[3, -14],
[4, 9],
[0, 17],
[-1, 10],
[1, 3],
[0, 14],
[-1, 9],
[2, -3],
[-1, 9],
[1, 13],
[-3, 5],
[0, 8],
[-3, 13],
[-3, 24],
[-2, 20],
[-1, 16],
[-4, 10],
[-1, 19],
[1, 4],
[-2, 5],
[0, 22],
[-5, 26],
[-1, 10],
[0, 33],
[1, 3],
[0, 24],
[3, 34],
[1, 1],
[1, 17],
[4, 12],
[0, 18],
[1, 8],
[-1, 12],
[0, 17],
[2, 8],
[0, 16],
[-3, 26],
[-2, 1],
[0, 23],
[3, 17],
[4, 42],
[1, 21],
[2, 12],
[2, 6],
[3, 2],
[-2, -16],
[0, -25],
[-1, -4],
[1, -11],
[0, -15],
[2, 0],
[-2, -7],
[0, -15],
[1, -3],
[3, 10],
[3, -5],
[0, 7],
[2, 18],
[1, 17],
[1, 1],
[0, 20],
[1, -4],
[3, 27],
[1, 4],
[8, 17],
[4, 2],
[3, 9],
[7, 13],
[2, 10],
[1, 11],
[6, 14],
[1, 11],
[3, 13],
[6, 11],
[1, 17],
[2, -3],
[5, 7],
[2, 9],
[2, 1],
[6, 25],
[-1, -15],
[3, -7],
[5, 13],
[3, 3],
[0, -10],
[5, -8],
[4, 3],
[2, 6],
[3, -1],
[5, 9],
[2, 6],
[0, 9],
[6, 17],
[7, 2],
[6, 5],
[1, -2],
[5, 8],
[1, 10],
[3, 11],
[0, 9],
[4, 9],
[3, 1],
[6, -7],
[4, -7],
[4, 14],
[2, 0],
[7, 6],
[5, 1],
[12, 20],
[8, 17],
[7, 21],
[6, 33],
[3, 21],
[1, 17],
[2, 15],
[0, 14],
[4, 8],
[-1, 13],
[2, 15],
[3, -2],
[8, 35],
[4, 11],
[0, 18],
[-4, 5],
[-1, 18],
[1, 14],
[-2, 14],
[0, 34],
[1, 15],
[3, 13],
[0, 6],
[6, 23],
[2, -6],
[-1, 19],
[7, 7],
[-1, 4],
[0, 20],
[3, 4],
[1, 13],
[3, 11],
[1, -14],
[-2, -1],
[1, -6],
[-1, -13],
[2, 0],
[0, -9],
[3, 1],
[-2, -8],
[2, -7],
[0, -16],
[3, -13],
[0, -9],
[2, -7],
[1, -19],
[4, -20],
[2, -19],
[0, 11],
[-1, 12],
[1, 5],
[0, 13],
[2, 13],
[-2, 10],
[0, 14],
[2, -1],
[1, -9],
[2, -3],
[0, -6],
[2, -3],
[2, -9],
[-3, 22],
[0, 9],
[2, -4],
[-1, 10],
[3, 10],
[-4, -3],
[-2, 10],
[0, 10],
[-3, 9],
[-3, 2],
[2, 5],
[-1, 3],
[2, 7],
[-4, 0],
[0, 10],
[3, -5],
[2, 3],
[-3, 8],
[0, 4],
[5, -5],
[-3, 8],
[3, -1],
[0, 6],
[-5, 6],
[1, 18],
[4, 0],
[2, -4],
[-1, -5],
[2, -1],
[-3, -4],
[4, -9],
[-1, -5],
[2, -9],
[0, 12],
[2, -5],
[-1, 11],
[1, 4],
[-2, 4],
[6, -4],
[2, -16],
[4, -3],
[1, 8],
[3, -6],
[6, 1],
[5, -5],
[1, 3],
[-9, 10],
[-5, -2],
[-1, 9],
[0, 13],
[2, 4],
[0, 12],
[1, -1],
[0, -11],
[3, 4],
[0, 24],
[1, 9],
[2, -2],
[0, 12],
[-2, 0],
[-2, -11],
[-2, -17],
[0, 14],
[-2, 6],
[-1, 11],
[0, 12],
[1, 0],
[0, 18],
[2, 10],
[4, -6],
[0, 7],
[2, -2],
[-1, 7],
[2, 10],
[-2, -1],
[1, 8],
[-1, 6],
[4, -6],
[1, -7],
[2, -1],
[2, -7],
[0, -9],
[2, -3],
[0, 10],
[2, 15],
[-3, 4],
[-3, -8],
[0, 15],
[3, 1],
[0, 9],
[-5, -11],
[0, 14],
[2, 4],
[2, -5],
[1, 7],
[0, 15],
[1, -12],
[2, 4],
[0, -12],
[1, -4],
[0, 12],
[3, -4],
[0, -7],
[4, -1],
[-1, 4],
[0, 15],
[-5, 9],
[0, 4],
[3, 5],
[-3, 4],
[0, 8],
[-2, 3],
[4, 26],
[3, 3],
[2, -12],
[0, 14],
[1, 5],
[2, -1],
[-1, -8],
[2, 1],
[0, 42],
[4, -4],
[-2, -9],
[0, -24],
[-1, -15],
[2, 16],
[0, 14],
[4, -7],
[-1, -5],
[1, -15],
[2, -5],
[0, 16],
[3, 0],
[0, 12],
[-1, 8],
[2, 2],
[0, 17],
[2, 4],
[0, 13],
[-4, 2],
[-1, 9],
[2, 4],
[2, -6],
[0, 8],
[-2, 3],
[2, 7],
[2, -14],
[0, -21],
[3, -8],
[2, 6],
[-2, 6],
[1, 9],
[2, 2],
[1, 10],
[1, -3],
[2, 8],
[-2, -17],
[2, -2],
[-1, -9],
[2, 1],
[0, -11],
[2, 7],
[0, 12],
[1, -6],
[2, 6],
[-1, 12],
[3, 0],
[1, 7],
[-2, 2],
[-1, 17],
[5, 8],
[4, -13],
[1, -17],
[2, 1],
[2, 7],
[2, -9],
[0, 7],
[3, -5],
[0, -15],
[2, -3],
[5, -15],
[2, -12],
[2, -19],
[3, -12],
[0, -7],
[2, 1],
[1, -7],
[4, -15],
[0, -14],
[-2, -8],
[-1, -14],
[0, -38],
[-1, -1],
[1, -15],
[-2, -10],
[2, 1],
[1, 7],
[0, 17],
[-1, 8],
[1, 6],
[2, -3],
[2, -13],
[1, -12],
[0, 14],
[-2, 7],
[0, 17],
[-1, 7],
[3, 21],
[1, -1],
[0, -17],
[1, 7],
[2, -8],
[1, 4],
[-2, 10],
[1, 14],
[-2, 4],
[4, 7],
[2, -4],
[4, -2],
[3, -6],
[6, -5],
[4, -14],
[-1, -7],
[1, -5],
[0, -22],
[2, 28],
[-1, 2],
[0, 23],
[7, -12],
[3, -21],
[0, -11],
[2, 5],
[0, -8],
[2, 5],
[-3, 18],
[0, 24],
[4, -3],
[4, 11],
[2, -3],
[0, 9],
[-6, -11],
[1, 7],
[-3, -2],
[-1, 9],
[-2, 6],
[0, 8],
[3, 5],
[-5, 3],
[-1, 7],
[-4, 12],
[2, 15],
[0, 10],
[2, 5],
[0, 16],
[3, -2],
[0, 6],
[3, 0],
[1, 5],
[0, 13],
[-1, 3],
[3, 11],
[-1, 3],
[0, 12],
[3, 32],
[2, -13],
[6, 13],
[2, 20],
[-2, 15],
[-1, 0],
[0, 33],
[1, 3],
[2, -5],
[3, 7],
[0, 28],
[2, 6],
[3, 3],
[1, -10],
[2, -5],
[2, 4],
[-3, 3],
[-1, 13],
[1, 8],
[0, 16],
[5, -5],
[0, -16],
[2, -2],
[1, -8],
[2, 3],
[-2, 4],
[0, 8],
[2, -3],
[-2, 10],
[-2, 1],
[0, 6],
[2, 9],
[4, -4],
[0, 17],
[-1, 11],
[3, 1],
[4, -12],
[0, 13],
[1, 12],
[1, -3],
[0, -15],
[3, -14],
[5, -1],
[5, 3],
[2, 7],
[4, -10],
[2, 0],
[2, 9],
[2, 3],
[1, 7],
[1, -10],
[2, 3],
[1, -9],
[0, -11],
[1, 3],
[0, 24],
[4, 8],
[3, -6],
[-2, 9],
[1, 33],
[-2, 7],
[2, 6],
[1, 9],
[-3, 5],
[-1, 14],
[-3, 9],
[-3, 1],
[-3, -3],
[-2, -7],
[-3, 2],
[0, 11],
[-3, 3],
[0, 10],
[-4, 2],
[2, 5],
[-1, 8],
[2, 4],
[1, -10],
[2, 15],
[3, -10],
[0, -14],
[1, 2],
[0, -11],
[1, -3],
[0, 31],
[1, 1],
[2, -14],
[-1, 13],
[3, 4],
[0, -11],
[1, -5],
[1, 7],
[2, -8],
[0, -9],
[3, -9],
[2, -13],
[2, 2],
[2, 12],
[2, -2],
[0, 8],
[3, -10],
[2, -11],
[0, -11],
[1, -10],
[2, -7],
[3, -1],
[3, -5],
[4, 0],
[0, -6],
[3, -1],
[4, 14],
[4, -4],
[-3, -8],
[1, -11],
[2, -3],
[2, 9],
[4, -10],
[1, -18],
[2, 5],
[0, 7],
[4, -12],
[3, -1],
[3, 4],
[2, 11],
[2, 0],
[0, -10],
[2, -2],
[0, -11],
[3, -2],
[1, -9],
[2, -7],
[3, 4],
[3, -3],
[2, 3],
[-4, 5],
[3, 4],
[0, 7],
[5, 0],
[0, 6],
[2, -5],
[4, 12],
[-4, -6],
[1, 13],
[4, 2],
[4, 16],
[-1, 7],
[2, 0],
[0, -6],
[-3, -13],
[0, -5],
[-3, -7],
[6, 5],
[-3, -5],
[-5, -22],
[2, -13],
[5, 15],
[3, 4],
[-2, -9],
[1, -10],
[3, 5],
[-2, -17],
[0, -11],
[4, 1],
[2, -3],
[2, 5],
[2, 27],
[-4, 0],
[-1, 7],
[3, 13],
[5, 14],
[0, -6],
[2, 1],
[0, -11],
[1, -1],
[0, -12],
[3, -14],
[2, 7],
[-2, 6],
[2, 3],
[3, -8],
[2, -9],
[0, -9],
[-4, -21],
[0, 9],
[-2, -4],
[1, -9],
[-2, -9],
[0, -12],
[-2, 0],
[0, -17],
[-1, 0],
[0, 11],
[-1, -7],
[-2, 5],
[0, -11],
[5, -14],
[-1, -4],
[-3, 2],
[0, -8],
[2, -4],
[-1, -13],
[-2, -2],
[-4, -20],
[0, 10],
[2, 0],
[-1, 7],
[0, 18],
[-2, -5],
[1, -8],
[-3, 1],
[1, -5],
[-3, -10],
[0, 18],
[-3, -14],
[-2, 0],
[-2, -7],
[0, -12],
[2, -6],
[-1, -6],
[-2, 3],
[0, -28],
[1, -12],
[3, 3],
[1, 10],
[0, -14],
[-1, -6],
[0, -14],
[-2, -8],
[-1, -30],
[-4, -10],
[-2, -19],
[-2, -4],
[-2, -29],
[-4, -8],
[0, -13],
[4, -28],
[3, -3],
[6, -17],
[6, -22],
[5, -11],
[0, -18],
[4, -9],
[3, -11],
[3, -1],
[2, -11],
[1, -14],
[4, 0],
[2, -4],
[1, 9],
[3, -11],
[3, -5],
[5, -18],
[3, -7],
[2, 0],
[5, -9],
[1, -10],
[5, -26],
[3, -13],
[6, -17],
[4, -2],
[2, -5],
[5, 2],
[0, -4],
[10, -14],
[1, -9],
[3, -7],
[-1, -4],
[0, -14],
[2, -16],
[2, -8],
[5, -4],
[2, -6],
[2, -12],
[9, -14],
[2, -11],
[3, -2],
[4, 2],
[8, 10],
[6, 21],
[2, 2],
[2, 14],
[0, 18],
[2, 21],
[0, 7],
[3, 27],
[4, 15],
[0, 15],
[2, 7],
[0, 18],
[1, 3],
[0, 18],
[3, 19],
[-2, 22],
[1, 9],
[2, 49],
[3, 26],
[0, 14],
[2, 5],
[0, 25],
[-1, 10],
[-2, 34],
[0, 11],
[-1, 13],
[1, 6],
[1, 26],
[1, 5],
[-1, 12],
[-3, 17],
[0, 22],
[1, 28],
[3, 27],
[2, 9],
[0, 12],
[-2, 6],
[0, 21],
[-1, 4],
[1, 11],
[3, 4],
[2, 21],
[2, 0],
[1, -7],
[3, 5],
[-3, 1],
[-2, 9],
[2, 8],
[-3, 0],
[-1, 8],
[-2, 3],
[2, 5],
[-3, 3],
[0, -12],
[-2, 0],
[4, 40],
[2, -2],
[-1, 12],
[1, 13],
[3, 13],
[0, -20],
[1, 8],
[2, -3],
[-1, 12],
[-1, 0],
[0, 11],
[2, 18],
[0, 7],
[3, 49],
[0, 16],
[1, 4],
[0, 34],
[5, 6],
[2, 9],
[1, 14],
[3, 1]
],
[
[8951, 5847],
[-4, -2],
[0, 12],
[2, 6],
[2, -10],
[0, -6]
],
[
[8952, 5858],
[-2, 4],
[2, 4],
[0, -8]
],
[
[8952, 5914],
[0, -7],
[-3, 4],
[0, 10],
[2, 3],
[2, -5],
[-1, -5]
],
[
[8948, 5918],
[-2, 8],
[2, 9],
[1, -4],
[-1, -13]
],
[
[8965, 6025],
[-1, -7],
[-3, 0],
[0, 7],
[4, 0]
],
[
[8951, 6036],
[-3, 3],
[1, 4],
[2, -7]
],
[
[613, 4357],
[-1, 6],
[2, 0],
[-1, -6]
],
[
[563, 4450],
[-3, -1],
[0, 7],
[2, 1],
[1, -7]
],
[
[9954, 4757],
[3, -5],
[0, -8],
[-4, -3],
[-2, 5],
[-3, -9],
[1, -4],
[-2, -6],
[-3, -1],
[-2, 4],
[3, 9],
[2, -1],
[1, 9],
[6, 10]
],
[
[9996, 4799],
[-1, -5],
[-1, 7],
[3, 5],
[-1, -7]
],
[
[34, 4847],
[-2, 4],
[2, 6],
[0, -10]
],
[
[9980, 4887],
[1, -6],
[0, -17],
[-2, 11],
[-1, -1],
[0, 12],
[2, 1]
],
[
[48, 4885],
[-2, 2],
[0, 8],
[3, -4],
[-1, -6]
],
[
[9965, 4914],
[-1, 13],
[2, 3],
[1, -12],
[-2, -4]
],
[
[9951, 4966],
[0, -11],
[3, -3],
[0, -8],
[3, -5],
[3, -10],
[-1, -13],
[2, -13],
[-1, -18],
[3, -7],
[-1, -10],
[-5, -7],
[-2, 5],
[-4, -5],
[-2, -12],
[-4, -5],
[-6, 1],
[-2, 5],
[-9, 12],
[-4, 8],
[-1, 9],
[0, 19],
[3, 3],
[0, 12],
[2, 0],
[-2, 14],
[3, 7],
[1, 10],
[3, 10],
[4, 2],
[2, 8],
[3, -5],
[2, 5],
[4, 2],
[1, 6],
[2, -6]
],
[
[9920, 4980],
[0, -7],
[-2, 2],
[2, 5]
],
[
[9983, 4963],
[-1, -3],
[0, 19],
[2, 0],
[0, -12],
[-1, -4]
],
[
[28, 4973],
[1, 13],
[1, -7],
[-2, -6]
],
[
[9924, 5003],
[-3, -10],
[1, 12],
[2, -2]
],
[
[0, 5016],
[9997, -4],
[-1, 10],
[1, 2],
[-9997, 17],
[0, -25]
],
[
[0, 5043],
[2, 10],
[2, 2],
[1, -10],
[-1, -14],
[-4, -10],
[0, 22]
],
[
[0, 5082],
[2, 2],
[0, -7],
[-2, -4],
[0, 9]
],
[
[0, 5123],
[9996, -8],
[-1, -11],
[-2, -8],
[-1, -12],
[-5, -14],
[0, -9],
[-2, -7],
[0, -9],
[4, 5],
[2, 9],
[0, 6],
[6, 18],
[1, -4],
[-3, -18],
[1, -4],
[0, -14],
[-2, 7],
[-3, 0],
[-4, -10],
[-7, -2],
[1, 11],
[-3, 4],
[-3, -5],
[0, -8],
[-3, -4],
[-1, -13],
[-3, 8],
[-2, -6],
[0, -10],
[-3, -3],
[-1, 16],
[-2, 14],
[-2, -4],
[-1, 8],
[2, 4],
[1, 10],
[3, -1],
[6, 16],
[0, 7],
[7, 6],
[1, 4],
[5, -1],
[0, 8],
[2, 10],
[3, 0],
[2, 7],
[3, 5],
[2, -3],
[-9994, 5]
],
[
[9917, 5613],
[2, -5],
[-3, 1],
[1, 4]
],
[
[9528, 7975],
[0, -4],
[-4, 3],
[2, 8],
[2, 1],
[0, -8]
],
[
[9394, 8195],
[2, 0],
[1, -21],
[-4, -2],
[0, 6],
[-2, 9],
[3, 8]
],
[
[8838, 8537],
[-2, -4],
[-1, -12],
[-1, 6],
[2, 7],
[0, 7],
[2, 2],
[0, -6]
],
[
[9022, 9055],
[-2, -9],
[0, -17],
[-2, -1],
[-1, 5],
[0, 21],
[5, 15],
[0, 11],
[4, -6],
[-4, -19]
],
[
[696, 6726],
[-2, 6],
[2, 2],
[0, -8]
],
[
[9877, 7018],
[-1, -4],
[0, 13],
[1, -9]
],
[
[9901, 7083],
[-1, -3],
[0, 11],
[1, -8]
],
[
[9854, 7104],
[-1, -1],
[0, 16],
[1, -15]
],
[
[9846, 7163],
[-1, 21],
[1, -3],
[0, -18]
],
[
[9804, 7473],
[-1, 10],
[1, 2],
[0, -12]
],
[
[627, 7538],
[3, -6],
[-1, -15],
[4, -13],
[1, -6],
[-7, 8],
[-4, 11],
[3, -1],
[1, 9],
[2, -1],
[-3, 10],
[1, 4]
],
[
[574, 7791],
[0, -6],
[2, -2],
[-1, -11],
[-1, 19]
],
[
[9711, 8044],
[0, 11],
[1, 3],
[-1, -14]
],
[
[9033, 9146],
[-3, -1],
[1, 5],
[4, 6],
[0, -6],
[-2, -4]
],
[
[9045, 9252],
[-2, 5],
[0, 10],
[2, 4],
[0, -19]
],
[
[9049, 9284],
[-2, -4],
[1, -6],
[-2, 1],
[0, 15],
[3, 5],
[-1, -10],
[1, -1]
],
[
[9048, 9668],
[0, 15],
[2, -1],
[0, -6],
[-2, -8]
],
[
[9046, 9756],
[-2, 8],
[3, -1],
[-1, -7]
],
[
[9653, 4269],
[-1, -9],
[-2, 3],
[0, 14],
[3, -8]
],
[
[9634, 4292],
[-2, -2],
[0, 6],
[2, -4]
],
[
[9665, 4432],
[0, -8],
[2, -4],
[3, 4],
[-1, -13],
[0, -14],
[-3, -3],
[-1, 6],
[-3, 5],
[1, 6],
[-3, 19],
[5, 2]
],
[
[9646, 4519],
[0, -26],
[3, -4],
[1, -29],
[-3, 0],
[-1, 8],
[-5, 6],
[-1, 6],
[0, 12],
[2, 4],
[1, 14],
[-4, 2],
[1, 8],
[4, 5],
[2, -6]
],
[
[9627, 4561],
[2, -6],
[-2, -3],
[-1, -18],
[2, 1],
[-2, -13],
[-3, -1],
[3, 10],
[0, 14],
[1, 3],
[0, 13]
],
[
[9555, 4603],
[3, -11],
[3, -16],
[2, 1],
[0, 6],
[5, -9],
[3, -12],
[4, -11],
[4, -20],
[5, -14],
[5, -5],
[1, -4],
[1, -17],
[3, -2],
[0, -16],
[2, -9],
[3, -5],
[0, -10],
[6, -13],
[1, -8],
[1, 5],
[5, -13],
[1, -7],
[4, -14],
[5, -11],
[4, -23],
[4, -10],
[-1, -4],
[6, -8],
[2, -9],
[0, -9],
[2, -7],
[-3, -21],
[-3, 10],
[0, -8],
[-2, -2],
[0, 6],
[-5, 14],
[-3, -1],
[-1, 10],
[-1, -4],
[-5, 6],
[-1, 9],
[-2, 3],
[2, 4],
[-1, 11],
[-3, 7],
[-1, -8],
[-3, 13],
[-2, 0],
[-2, 12],
[0, 7],
[-2, -6],
[-5, 11],
[0, 8],
[-3, 0],
[-3, 6],
[0, 8],
[-3, 7],
[-1, 11],
[-3, -1],
[1, 5],
[-3, 8],
[-3, 14],
[-1, 16],
[-3, -4],
[0, 12],
[-2, 4],
[1, 4],
[-4, 6],
[-2, 6],
[-2, 12],
[1, 5],
[-3, 11],
[0, 9],
[-3, 6],
[-1, 14],
[0, 15],
[-3, 1],
[-2, 5],
[2, 3],
[0, 13],
[-2, 0],
[1, 8]
],
[
[9561, 4596],
[-2, 2],
[0, 8],
[2, -10]
],
[
[9546, 4645],
[-1, -3],
[0, 17],
[1, -14]
],
[
[9664, 3419],
[2, -3],
[-3, -3],
[1, 6]
],
[
[283, 4733],
[-3, -4],
[-1, 9],
[2, 14],
[2, -1],
[0, -18]
],
[
[9637, 7198],
[-2, 2],
[1, 5],
[1, -7]
],
[
[9699, 302],
[3, -6],
[-3, -11],
[-5, 9],
[3, -1],
[2, 9]
],
[
[9614, 516],
[0, -6],
[-5, 2],
[5, 4]
],
[
[9617, 561],
[1, -2],
[-4, -21],
[3, -14],
[-1, -7],
[-5, 14],
[0, -11],
[-4, 5],
[1, 6],
[5, 13],
[0, 16],
[4, 1]
],
[
[9966, 668],
[-3, 6],
[3, 8],
[0, -14]
],
[
[9665, 1069],
[3, -15],
[3, -7],
[-1, -6],
[-4, 3],
[1, -6],
[5, -6],
[1, -8],
[-2, 0],
[0, -9],
[-5, -1],
[-2, -7],
[-6, 2],
[-4, -17],
[-2, 1],
[1, 12],
[2, 3],
[0, 13],
[4, 4],
[-1, 10],
[3, 8],
[-2, 10],
[0, 14],
[4, 4],
[2, -2]
],
[
[9630, 1211],
[1, -13],
[-3, -2],
[-2, 14],
[4, 1]
],
[
[9639, 1255],
[-4, 4],
[2, 16],
[2, -20]
],
[
[106, 1383],
[-1, -1],
[0, 16],
[2, 0],
[-1, -15]
],
[
[96, 1465],
[4, -4],
[6, 2],
[-5, -13],
[0, 9],
[-4, 2],
[-1, -4],
[3, -4],
[-2, -6],
[1, -13],
[5, -12],
[-3, -2],
[-6, -9],
[-1, 15],
[4, 12],
[-3, 16],
[-2, -4],
[-5, 1],
[3, 7],
[4, 2],
[2, 5]
],
[
[9844, 1807],
[-1, -8],
[-3, -4],
[-2, 2],
[6, 10]
],
[
[9831, 1855],
[-3, -18],
[-2, -1],
[0, 11],
[3, 11],
[2, -3]
],
[
[9802, 1891],
[2, -3],
[-7, 1],
[-1, -11],
[0, -18],
[5, -13],
[4, 8],
[1, -12],
[0, -15],
[-2, -4],
[3, -15],
[-2, -3],
[2, -4],
[1, -18],
[4, 5],
[5, 19],
[0, -4],
[4, 15],
[4, 0],
[-1, 8],
[4, 7],
[5, 5],
[0, -5],
[-6, -8],
[-1, -15],
[2, 7],
[1, -21],
[-3, -6],
[1, -4],
[2, 6],
[4, 3],
[-1, 6],
[-3, -2],
[2, 15],
[3, -2],
[-2, 6],
[0, 11],
[2, -5],
[4, 3],
[0, -12],
[3, 10],
[-1, -17],
[-2, -3],
[-1, -10],
[-6, -4],
[0, -3],
[5, 5],
[2, -3],
[3, 6],
[-2, -14],
[-3, 0],
[-2, -14],
[0, -12],
[2, -2],
[2, -13],
[0, -10],
[2, -6],
[-2, -17],
[-6, -20],
[-1, -20],
[-2, -10],
[-4, -10],
[-5, -21],
[0, -5],
[-7, -57],
[-4, -6],
[-2, -9],
[-5, -4],
[-3, -9],
[-2, -23],
[1, -33],
[-2, -8],
[7, 2],
[5, -8],
[0, -18],
[-4, -10],
[-5, 4],
[-1, 11],
[-8, -8],
[-2, 2],
[7, 8],
[-4, 7],
[-3, -2],
[0, -15],
[-4, -3],
[-11, -24],
[-2, -1],
[-7, -14],
[-3, -12],
[-3, -4],
[-1, -22],
[-3, -12],
[1, -7],
[0, -41],
[-1, -2],
[-2, -20],
[-4, -11],
[-2, -20],
[-3, -39],
[-3, -3],
[1, -8],
[-2, -7],
[3, -7],
[-4, -6],
[0, -7],
[5, 12],
[0, -11],
[-2, -4],
[-6, -2],
[-4, -8],
[-3, -11],
[0, -12],
[-11, -29],
[0, -12],
[-3, -4],
[-3, -11],
[-13, -11],
[-3, 3],
[-1, -5],
[-4, 4],
[-1, 11],
[-5, -2],
[-2, -5],
[-6, 0],
[-3, 12],
[2, -1],
[2, 8],
[-1, 8],
[-2, -7],
[-2, 15],
[-5, 0],
[0, -4],
[-7, 1],
[-2, 7],
[2, 4],
[-2, 13],
[-4, 5],
[-4, 0],
[0, -11],
[-3, -4],
[-10, 6],
[-6, 1],
[-2, 9],
[3, 14],
[-5, -6],
[1, 12],
[3, 6],
[-8, -6],
[0, 24],
[10, 6],
[1, -1],
[5, 11],
[-7, -4],
[0, 18],
[4, 7],
[-6, -5],
[1, 22],
[2, 2],
[4, -5],
[-1, 6],
[-3, 1],
[0, 9],
[2, 2],
[5, -11],
[-1, 7],
[4, 6],
[1, -5],
[3, 1],
[-4, 6],
[-4, 0],
[-1, 18],
[4, 12],
[1, -6],
[3, -1],
[-4, 9],
[3, 16],
[5, 9],
[0, -15],
[2, -6],
[-2, 23],
[1, 8],
[3, -16],
[0, 17],
[1, 11],
[5, 10],
[2, -1],
[-1, 13],
[3, 13],
[5, 12],
[0, 8],
[4, 11],
[3, 13],
[0, 5],
[8, 10],
[2, -6],
[4, 5],
[1, 6],
[5, 11],
[3, 12],
[15, 25],
[1, 10],
[2, 3],
[1, 10],
[4, 6],
[2, 13],
[4, 2],
[2, 10],
[-3, -2],
[2, 9],
[3, 2],
[2, 9],
[9, 14],
[4, 25],
[5, 18],
[5, 34],
[2, 38],
[2, 6],
[0, 12],
[2, 12],
[-1, 9],
[5, 0],
[6, 12],
[3, 27],
[3, 7],
[0, 15],
[1, 5],
[0, 51],
[3, 13],
[4, 8],
[4, 17],
[2, -3],
[2, 14],
[7, 0]
],
[
[9865, 2387],
[0, -7],
[-2, 0],
[-3, 7],
[5, 0]
],
[
[9858, 2430],
[-2, 0],
[0, 9],
[2, -9]
],
[
[9872, 2473],
[3, -6],
[-1, -12],
[2, -6],
[-3, -2],
[0, 7],
[-3, 3],
[1, 16],
[-1, 6],
[2, 2],
[0, -8]
],
[
[9807, 2701],
[-1, -2],
[0, -13],
[-2, 7],
[-2, -11],
[4, 0],
[0, -14],
[1, -10],
[3, -8],
[-1, -7],
[4, -9],
[-1, -13],
[2, -1],
[1, 11],
[-1, 6],
[3, 9],
[2, -6],
[-3, -2],
[0, -9],
[2, -6],
[3, 3],
[0, 6],
[4, -4],
[1, -6],
[3, -2],
[3, -8],
[0, -5],
[3, 0],
[2, -9],
[-3, 4],
[-1, -10],
[2, 0],
[0, -8],
[2, -11],
[2, 8],
[-2, 6],
[4, 3],
[1, 6],
[0, -18],
[1, -11],
[3, -5],
[-1, -8],
[3, -10],
[0, -13],
[-1, -3],
[2, -7],
[0, -11],
[-3, 10],
[-3, -2],
[-1, 10],
[0, -18],
[1, 4],
[3, -1],
[0, -23],
[4, -6],
[0, -11],
[2, -12],
[3, -7],
[0, -10],
[-2, -1],
[0, -21],
[-1, -2],
[3, -40],
[-3, 9],
[-1, -6],
[0, -14],
[3, 9],
[4, 0],
[1, -12],
[3, 7],
[1, -12],
[4, 4],
[2, -8],
[0, -23],
[2, -7],
[5, 6],
[0, 20],
[-1, 10],
[-2, 5],
[1, 19],
[0, 19],
[-4, 9],
[0, 11],
[3, 0],
[3, -10],
[-1, -6],
[2, -2],
[0, -15],
[1, -5],
[3, 7],
[3, -1],
[-4, -14],
[4, -2],
[1, -10],
[0, -37],
[2, -17],
[0, -20],
[2, -1],
[3, -15],
[-4, 11],
[-2, -1],
[2, -8],
[0, -8],
[2, -5],
[3, 1],
[9, -12],
[6, -16],
[11, -13],
[4, -2],
[5, 2],
[4, 11],
[1, 12],
[2, 4],
[1, 13],
[4, 5],
[4, 12],
[8, -2],
[1, -8],
[5, -4],
[1, -10],
[-2, -7],
[-4, -28],
[1, -8],
[-1, -9],
[0, -43],
[-1, -13],
[-6, -22],
[-4, 1],
[0, -23],
[-1, -8],
[0, -15],
[-1, -5],
[3, -6],
[-3, -21],
[-1, 8],
[0, 14],
[-2, 6],
[-10, 2],
[-10, -18],
[0, -8],
[-4, -17],
[1, -10],
[0, -19],
[3, -8],
[2, 0],
[-1, -10],
[-2, -3],
[-3, -33],
[0, -10],
[-4, -22],
[-2, -3],
[-2, -25],
[-2, -3],
[-4, -17],
[-5, -42],
[-3, -11],
[-1, -17],
[-3, -14],
[-5, -17],
[-2, -3],
[-7, -21],
[-4, -8],
[-3, 0],
[-1, 14],
[1, 10],
[-4, 7],
[-2, 0],
[-2, -7],
[-1, 8],
[0, 20],
[-3, -2],
[1, -13],
[-5, 2],
[-1, 11],
[3, 4],
[2, 14],
[5, 18],
[0, 10],
[4, 18],
[2, 20],
[0, 13],
[2, 31],
[-2, 22],
[-3, 15],
[-6, 18],
[-3, 0],
[-6, 6],
[-6, 27],
[-3, 5],
[-6, 4],
[-4, 11],
[-2, 9],
[0, 25],
[2, 9],
[3, 5],
[7, 17],
[6, 1],
[5, 19],
[0, 14],
[1, 1],
[0, 38],
[2, 13],
[0, 29],
[4, -6],
[2, 4],
[-2, 9],
[-2, 0],
[3, 8],
[0, 6],
[-3, -5],
[0, 15],
[2, 8],
[3, 1],
[-3, 5],
[-3, 41],
[0, 13],
[-3, 14],
[0, 9],
[-2, 17],
[3, 0],
[2, -25],
[0, 13],
[2, 8],
[4, 0],
[-4, 9],
[-1, 12],
[-4, -4],
[0, -6],
[-4, -1],
[-2, 34],
[-6, 28],
[-1, 14],
[2, 0],
[3, -13],
[0, -8],
[3, -6],
[0, 36],
[-5, 1],
[0, 6],
[3, -1],
[4, 13],
[-5, -7],
[2, 11],
[-1, 10],
[-1, -12],
[-2, 5],
[0, 7],
[-3, -3],
[3, -7],
[0, -9],
[-3, 11],
[-3, 2],
[-2, 7],
[0, 10],
[-3, 13],
[4, -27],
[5, -29],
[-3, -4],
[-2, 17],
[-17, 93],
[1, 17],
[4, 3],
[1, 16],
[-2, 3],
[0, -13],
[-4, -1],
[-1, -18],
[-5, 24],
[1, 6],
[-2, 1],
[-2, 13],
[3, 4],
[0, 19],
[-1, 11],
[-3, 9],
[-1, 12],
[-6, 29],
[-3, 9],
[0, 10],
[4, -4],
[2, 3],
[5, 1]
],
[
[8733, 8232],
[-2, -3],
[0, 6],
[2, -3]
],
[
[8740, 8278],
[-1, -5],
[0, -11],
[-1, -14],
[-2, -1],
[-1, 8],
[2, 26],
[2, 2],
[0, 12],
[1, -5],
[0, -12]
],
[
[9256, 5762],
[2, 0],
[6, -17],
[5, -6],
[2, -11],
[-5, -1],
[-2, 4],
[-5, 4],
[1, 8],
[-5, 9],
[1, 10]
],
[
[9283, 5767],
[2, -3],
[0, -10],
[-3, 2],
[-4, -3],
[-1, 7],
[3, 1],
[0, 6],
[3, 0]
],
[
[9256, 5777],
[0, -4],
[-4, 8],
[0, 4],
[4, -8]
],
[
[9237, 5860],
[3, -5],
[4, 3],
[2, -4],
[-4, -6],
[-5, 6],
[0, 6]
],
[
[9195, 5862],
[0, -9],
[-4, 8],
[4, 1]
],
[
[9188, 5870],
[3, -1],
[0, -11],
[-3, 12]
],
[
[9195, 5951],
[-1, -4],
[2, -9],
[4, 14],
[2, -6],
[-2, -22],
[0, -9],
[-2, 7],
[-6, 6],
[0, 14],
[-2, 4],
[0, 14],
[-3, 8],
[0, 13],
[2, -6],
[0, -6],
[2, -3],
[2, -11],
[2, -4]
],
[
[9194, 5987],
[-2, 7],
[2, 3],
[0, -10]
],
[
[9184, 6017],
[3, 5],
[3, -15],
[0, -11],
[2, -8],
[-3, -8],
[0, 5],
[-5, 2],
[-3, 5],
[-3, -1],
[2, 8],
[0, 7],
[-2, 4],
[0, 18],
[2, 2],
[3, -7],
[1, -6]
],
[
[9176, 6026],
[-1, -20],
[-2, 8],
[-3, 4],
[-1, 8],
[0, 12],
[2, 9],
[4, -7],
[1, -14]
],
[
[9234, 6081],
[2, -6],
[3, 1],
[5, -3],
[1, -8],
[2, 0],
[2, -9],
[0, -7],
[-3, -8],
[-4, 8],
[0, -9],
[-3, 12],
[2, 4],
[-6, 14],
[-1, 11]
],
[
[9197, 6151],
[0, -22],
[-1, -19],
[1, -11],
[-2, 11],
[2, 21],
[-3, 4],
[0, 11],
[3, 5]
],
[
[8989, 6111],
[-1, 6],
[-6, 14],
[-1, 7],
[-2, 2],
[-1, 7],
[7, -9],
[0, -4],
[4, -12],
[0, -11]
],
[
[8981, 6159],
[7, -2],
[0, -14],
[-3, 1],
[-1, 5],
[-3, 3],
[0, 7]
],
[
[8990, 6151],
[-3, 12],
[3, -3],
[0, -9]
],
[
[8990, 6187],
[-2, 2],
[0, 6],
[2, -2],
[0, -6]
],
[
[8991, 6195],
[-4, 3],
[0, 7],
[3, -3],
[1, -7]
],
[
[9105, 6541],
[2, -6],
[3, -3],
[2, -7],
[0, -18],
[-1, -7],
[-4, 3],
[0, 4],
[-3, 15],
[0, 18],
[1, 1]
],
[
[9299, 6542],
[3, -8],
[3, 0],
[5, -26],
[0, -16],
[2, -3],
[4, -15],
[1, -19],
[3, -10],
[2, -1],
[3, -10],
[0, -5],
[3, -7],
[0, -6],
[2, -8],
[0, -19],
[1, -1],
[1, -12],
[-2, -8],
[-2, 2],
[-2, -4],
[-1, -9],
[-5, 3],
[-6, 17],
[-4, 22],
[1, 8],
[0, 24],
[-7, 14],
[0, 11],
[-3, 7],
[-2, 10],
[-1, 11],
[0, 11],
[-2, 10],
[1, 6],
[0, 20],
[1, 6],
[-2, 9],
[1, 3],
[2, -7]
],
[
[9114, 6546],
[-2, 7],
[2, 1],
[0, -8]
],
[
[9100, 6563],
[-1, -5],
[-1, 8],
[2, -3]
],
[
[9089, 6549],
[-3, -2],
[-3, 12],
[0, 16],
[3, 5],
[2, -7],
[1, -12],
[0, -12]
],
[
[9296, 6591],
[1, -10],
[-1, -20],
[0, -11],
[-2, -5],
[-1, 26],
[0, 19],
[-1, 2],
[2, 12],
[2, -4],
[0, -9]
],
[
[9199, 6612],
[-2, 2],
[1, 7],
[2, -4],
[-1, -5]
],
[
[9054, 6638],
[-3, 7],
[0, 7],
[2, 15],
[2, 1],
[1, -7],
[0, -17],
[-2, -6]
],
[
[9228, 6713],
[0, -7],
[-2, 5],
[0, -13],
[3, -4],
[4, 1],
[-2, -19],
[2, -23],
[-1, -19],
[-4, -26],
[-3, -2],
[-4, 4],
[-1, -5],
[1, -21],
[3, -10],
[1, -7],
[0, -18],
[-3, -7],
[-1, -7],
[-6, -7],
[-1, 8],
[-4, -6],
[0, 5],
[-4, 0],
[0, -11],
[2, -4],
[-2, -5],
[-1, -14],
[-4, -11],
[-6, -21],
[-5, -2],
[-2, 3],
[0, -14],
[-5, -6],
[-3, -7],
[-1, -6],
[-7, -3],
[-1, 5],
[-3, -6],
[-1, 6],
[-3, -5],
[-6, 1],
[-3, -2],
[-3, 24],
[-6, 8],
[-6, -12],
[-1, 19],
[-1, -3],
[-4, 5],
[0, 10],
[-2, 0],
[0, 6],
[-3, 3],
[-2, 6],
[-1, -4],
[-4, 5],
[-3, 15],
[1, 25],
[2, 7],
[3, -6],
[1, -6],
[2, 7],
[6, -8],
[3, 10],
[3, -4],
[4, -9],
[0, -5],
[8, 6],
[3, 6],
[2, 0],
[0, -7],
[6, 6],
[2, 11],
[-1, 5],
[0, 14],
[2, 4],
[0, 24],
[3, 10],
[2, -3],
[0, -10],
[-3, -4],
[-1, -28],
[2, -13],
[1, -14],
[3, -1],
[4, 9],
[0, 4],
[3, 1],
[2, -3],
[1, -11],
[3, 3],
[1, 10],
[3, -2],
[4, 6],
[0, 22],
[6, 34],
[4, 12],
[7, -7],
[2, 11],
[-1, 11],
[0, 26],
[-1, 4],
[0, 14],
[-2, 8],
[-1, 11],
[0, 17],
[1, 2],
[7, -3],
[2, -4],
[0, -9],
[3, -3],
[1, 7],
[0, 11],
[1, -2],
[3, 5],
[2, -3]
],
[
[9030, 6731],
[0, -8],
[-2, -2],
[0, 10],
[2, 0]
],
[
[9268, 6727],
[-1, -5],
[-1, 12],
[1, 2],
[1, -9]
],
[
[8988, 6821],
[-3, 4],
[1, 4],
[2, -8]
],
[
[9003, 6841],
[-2, -1],
[1, 6],
[1, -5]
],
[
[9239, 6843],
[-3, 11],
[1, 12],
[2, -1],
[1, -10],
[-1, -12]
],
[
[9193, 6878],
[-4, -4],
[-2, 2],
[3, 8],
[3, -6]
],
[
[9223, 6872],
[-2, 4],
[0, 10],
[2, -3],
[0, -11]
],
[
[9221, 6898],
[-2, -7],
[0, 19],
[3, -5],
[-1, -7]
],
[
[9222, 6916],
[-2, 2],
[1, 7],
[1, -9]
],
[
[8919, 6923],
[5, -5],
[1, -7],
[7, -12],
[6, -14],
[2, -9],
[4, 1],
[1, -14],
[3, 0],
[7, -11],
[2, -7],
[4, -4],
[11, -17],
[2, 1],
[11, -9],
[4, -19],
[5, -7],
[1, -10],
[3, -5],
[1, -9],
[5, -1],
[-1, -5],
[3, -1],
[1, 5],
[3, 1],
[4, -4],
[0, -18],
[1, -4],
[4, -4],
[4, -8],
[0, -11],
[2, -1],
[2, -7],
[1, -15],
[4, -6],
[3, 2],
[3, -9],
[8, -43],
[3, -8],
[0, -55],
[-1, -7],
[-1, -21],
[2, -5],
[3, -1],
[2, 4],
[5, -11],
[8, -7],
[6, -20],
[4, -6],
[0, -6],
[4, 0],
[0, -6],
[3, -7],
[5, -4],
[1, 5],
[5, -4],
[2, -5],
[3, -14],
[0, -6],
[3, -16],
[2, -5],
[1, -11],
[0, -40],
[-2, -3],
[-8, -5],
[-9, 2],
[-1, 4],
[-5, -5],
[0, -28],
[3, -10],
[0, -15],
[2, -5],
[0, -13],
[1, -2],
[0, -17],
[5, -12],
[4, -14],
[0, -8],
[3, -3],
[0, -10],
[2, -1],
[1, -7],
[0, -11],
[5, -2],
[3, -8],
[0, -8],
[4, 1],
[2, -27],
[0, -14],
[1, -8],
[-1, -10],
[1, -12],
[4, -5],
[3, -15],
[0, -21],
[1, -1],
[0, -13],
[1, -9],
[6, -5],
[3, 5],
[5, 4],
[1, 6],
[6, -4],
[0, -20],
[-2, -2],
[0, -8],
[-2, -13],
[1, -19],
[11, -18],
[4, 3],
[4, -5],
[3, 0],
[1, -11],
[-5, -8],
[-2, 1],
[-2, -10],
[7, -30],
[6, -2],
[2, -9],
[3, -6],
[5, -2],
[3, -8],
[6, 5],
[-7, -14],
[-6, 6],
[-2, -9],
[1, -4],
[4, -3],
[0, -3],
[4, -4],
[1, -12],
[-4, -8],
[-2, 0],
[-1, -8],
[-3, 3],
[-4, -4],
[0, 6],
[-2, 0],
[-4, 7],
[0, 5],
[-3, 3],
[1, 4],
[3, -1],
[1, 6],
[-4, 7],
[-4, 10],
[-7, 0],
[-4, 8],
[-1, -3],
[-4, 7],
[-4, 1],
[-2, -5],
[-3, 5],
[-3, 1],
[1, 10],
[-3, 7],
[-1, -11],
[-7, -2],
[-2, 10],
[-4, 4],
[-6, -8],
[0, 6],
[-5, 8],
[-2, -6],
[0, 11],
[-4, 9],
[0, 6],
[-2, 7],
[0, 11],
[-2, 15],
[-3, 17],
[-2, -2],
[-4, 8],
[-4, 27],
[-1, -1],
[0, 18],
[2, 16],
[-2, -10],
[-2, 1],
[-3, 7],
[-4, 5],
[-1, 9],
[0, 16],
[-1, 15],
[-4, 19],
[-3, 17],
[0, 16],
[-1, 7],
[-4, 13],
[1, 9],
[-3, 6],
[-6, 6],
[0, 12],
[-2, -6],
[-3, 3],
[-5, -1],
[-3, 11],
[-3, 0],
[0, 4],
[-7, 3],
[0, 4],
[-3, 0],
[0, 25],
[-1, -12],
[-5, 16],
[0, -13],
[-2, 1],
[-1, 8],
[0, 12],
[-1, -1],
[0, -17],
[-2, 7],
[0, -14],
[-2, -7],
[0, 11],
[-1, 6],
[0, -11],
[-2, 7],
[0, -13],
[1, -5],
[-4, 1],
[-6, 10],
[-3, 8],
[-1, 17],
[-4, 7],
[3, -9],
[0, -8],
[3, -18],
[0, -14],
[3, -20],
[-4, 5],
[3, -10],
[-1, -4],
[-3, 0],
[-4, 8],
[-5, -2],
[3, -5],
[0, -7],
[2, -13],
[-1, -8],
[-7, 0],
[-10, -12],
[-4, 6],
[-4, 3],
[-3, -3],
[-2, -6],
[-3, 1],
[-1, 21],
[-2, 1],
[-3, -6],
[4, 3],
[1, -3],
[1, -20],
[2, -3],
[4, 9],
[4, -2],
[5, -13],
[5, -8],
[4, -14],
[3, -22],
[0, -21],
[1, -4],
[-1, -7],
[-6, -6],
[-6, -13],
[0, -5],
[-9, -21],
[-5, 13],
[-7, 11],
[0, -3],
[-6, -1],
[-3, -5],
[-2, 3],
[-8, -2],
[-3, 9],
[-2, 1],
[-4, -12],
[-2, 2],
[-4, 15],
[0, 293],
[-2, 4],
[-1, 12],
[0, 23],
[2, 10],
[0, 14],
[1, 1],
[0, 506],
[4, -1]
],
[
[9195, 6910],
[0, -5],
[4, -8],
[1, -8],
[3, -1],
[4, -8],
[6, -18],
[3, -16],
[2, 0],
[5, -7],
[0, -7],
[3, -14],
[0, -4],
[5, -13],
[2, -17],
[3, -2],
[1, -9],
[0, -11],
[2, -1],
[2, -7],
[4, -2],
[0, -12],
[3, 0],
[3, -29],
[2, -5],
[0, -17],
[-3, -15],
[1, -4],
[0, -12],
[-2, -11],
[0, -9],
[-3, -4],
[-4, 15],
[-1, 16],
[-1, 1],
[0, 19],
[1, 1],
[0, 28],
[-3, 20],
[-2, 25],
[-5, 20],
[0, 8],
[-3, 15],
[-2, 5],
[-5, 3],
[-5, 13],
[-5, 26],
[-5, 8],
[0, 5],
[-7, 23],
[-2, 3],
[-3, 12],
[-3, 3],
[-4, -1],
[-1, 5],
[5, 7],
[-3, 8],
[1, 7],
[3, -11],
[0, -4],
[3, -4]
],
[
[9172, 6953],
[6, -11],
[0, -22],
[-2, -4],
[-5, -2],
[-2, 8],
[-2, 14],
[-2, 2],
[3, 11],
[4, 4]
],
[
[9107, 6966],
[-2, -8],
[-2, 5],
[2, 2],
[0, 8],
[2, -7]
],
[
[9079, 7010],
[6, -1],
[3, -5],
[6, -4],
[0, -5],
[-3, 2],
[-1, -10],
[-2, -8],
[-2, 3],
[-4, -4],
[-6, 6],
[-2, 5],
[1, -8],
[-6, -2],
[0, 7],
[3, 3],
[-1, 15],
[1, 3],
[7, 3]
],
[
[9154, 7090],
[4, -8],
[2, -19],
[-1, -5],
[-2, 2],
[-4, 13],
[1, 17]
],
[
[991, 3600],
[-1, 10],
[2, 0],
[-1, -10]
],
[
[795, 4280],
[0, 12],
[1, -3],
[-1, -9]
],
[
[1094, 4387],
[-2, 3],
[1, 5],
[1, -8]
],
[
[1089, 4898],
[-1, 7],
[1, 8],
[4, 9],
[0, -8],
[-4, -16]
],
[
[853, 4918],
[4, -6],
[0, -12],
[-1, -3],
[-3, 3],
[-1, 12],
[-4, -1],
[-3, 4],
[-2, 24],
[2, 6],
[3, 2],
[4, -9],
[0, -16],
[1, -4]
],
[
[839, 4949],
[-1, -12],
[-2, 2],
[-1, 10],
[4, 0]
],
[
[795, 5030],
[-3, -3],
[0, 20],
[2, -1],
[2, -15],
[-1, -1]
],
[
[792, 5067],
[1, -11],
[-3, 5],
[2, 6]
],
[
[935, 5127],
[-2, -1],
[1, 6],
[1, -5]
],
[
[1149, 5870],
[-2, 2],
[2, 11],
[0, -13]
],
[
[1135, 5942],
[0, 13],
[2, 0],
[-2, -13]
],
[
[1142, 5975],
[2, 0],
[-4, -8],
[-3, 1],
[0, -7],
[-3, 5],
[0, 8],
[3, 8],
[2, 0],
[1, -6],
[2, -1]
],
[
[1110, 6029],
[0, -9],
[-2, -5],
[-1, 12],
[2, 5],
[1, -3]
],
[
[1123, 6092],
[2, -6],
[-3, -3],
[-1, 6],
[2, 3]
],
[
[1105, 6104],
[5, -3],
[1, -11],
[-2, 1],
[-3, -7],
[-2, 2],
[0, 17],
[1, 1]
],
[
[9634, 5731],
[2, -3],
[1, -13],
[-3, -1],
[-3, 13],
[3, 4]
],
[
[9445, 5743],
[6, -13],
[6, -19],
[3, -7],
[-2, -6],
[-4, 7],
[0, 9],
[-3, 4],
[0, 8],
[-3, -4],
[-2, 8],
[-2, -1],
[-1, 17],
[2, -3]
],
[
[9626, 5775],
[-2, -7],
[-1, 8],
[1, 5],
[2, -6]
],
[
[9612, 5855],
[2, -2],
[0, -7],
[-6, -7],
[-2, -12],
[-3, 7],
[0, 8],
[4, 13],
[5, 0]
],
[
[9481, 5914],
[4, -5],
[6, -20],
[4, -7],
[3, 1],
[3, -5],
[1, 4],
[2, -8],
[1, -18],
[2, -4],
[0, -19],
[-3, -1],
[-12, 15],
[-1, 9],
[-5, 10],
[0, 14],
[-1, 0],
[0, 11],
[1, 2],
[-7, 5],
[0, 14],
[2, 2]
],
[
[9498, 5984],
[1, -18],
[-2, 4],
[0, 13],
[1, 1]
],
[
[9483, 6020],
[4, -28],
[0, -23],
[-3, 14],
[0, -6],
[-2, 9],
[0, 23],
[1, 11]
],
[
[9442, 6017],
[5, 0],
[7, 3],
[3, -11],
[0, -6],
[2, 1],
[3, -10],
[0, -12],
[2, 0],
[2, -9],
[0, -16],
[-5, -7],
[-3, 7],
[-3, 1],
[-2, 8],
[-6, -1],
[-9, 6],
[-4, 27],
[-2, 9],
[1, 1],
[0, 28],
[2, 6],
[4, -11],
[3, -14]
],
[
[9455, 6056],
[-1, -4],
[-4, -3],
[2, 8],
[0, 9],
[3, -10]
],
[
[9422, 6065],
[-1, -9],
[0, 11],
[1, -2]
],
[
[9448, 6075],
[3, -2],
[1, -10],
[-2, -4],
[-1, 5],
[-3, 0],
[0, 6],
[2, 5]
],
[
[9419, 6076],
[2, -4],
[-1, -11],
[-2, -2],
[-1, 8],
[2, 9]
],
[
[9377, 6113],
[1, -10],
[-5, 6],
[0, 5],
[4, -1]
],
[
[9394, 6097],
[-2, 4],
[0, 6],
[2, 5],
[1, -9],
[-1, -6]
],
[
[9388, 6135],
[2, 3],
[2, -3],
[-2, -6],
[1, -13],
[-2, -8],
[-2, -2],
[-2, 10],
[0, 17],
[3, 2]
],
[
[9371, 6132],
[-2, -11],
[-3, 10],
[0, 6],
[4, 16],
[2, -8],
[-1, -13]
],
[
[9434, 6143],
[1, -7],
[-4, 8],
[0, 12],
[3, -2],
[0, -11]
],
[
[9466, 6160],
[3, -24],
[2, -5],
[1, -9],
[-2, -5],
[0, -21],
[2, 0],
[1, -8],
[3, -10],
[0, -10],
[2, -7],
[-1, -5],
[2, -3],
[1, -26],
[0, -11],
[2, -9],
[0, -15],
[-2, 5],
[-2, 12],
[0, 9],
[-4, 11],
[-2, 11],
[-2, 2],
[0, 6],
[-2, 6],
[-3, 25],
[0, 8],
[-2, 21],
[-1, 21],
[2, 5],
[-2, 14],
[-2, 6],
[0, 10],
[3, -5],
[0, 8],
[3, -7]
],
[
[9364, 6164],
[-1, 10],
[-2, 9],
[2, -3],
[1, -16]
],
[
[9363, 6186],
[2, -1],
[1, -14],
[-3, 15]
],
[
[9355, 6200],
[1, -8],
[-2, 4],
[1, 4]
],
[
[9378, 6182],
[0, -6],
[2, 2],
[2, -4],
[3, -26],
[0, -18],
[-7, 11],
[-2, 8],
[0, 7],
[2, -2],
[-2, 17],
[-2, 2],
[-4, -2],
[-1, -7],
[-2, 1],
[-1, 14],
[3, 2],
[0, 11],
[3, 17],
[2, 3],
[3, -6],
[0, -21],
[1, -3]
],
[
[9349, 6182],
[-2, 13],
[0, 19],
[2, -4],
[0, -12],
[1, -4],
[-1, -12]
],
[
[9365, 6193],
[-3, -3],
[-3, 14],
[0, 12],
[1, 8],
[3, 3],
[2, -8],
[1, -12],
[-1, -14]
],
[
[9349, 6265],
[2, -6],
[0, -7],
[4, -7],
[0, -7],
[-4, -15],
[-2, 2],
[1, 7],
[-4, 19],
[0, 6],
[3, 8]
],
[
[9400, 6263],
[3, -9],
[-5, 2],
[-1, 8],
[3, -1]
],
[
[9405, 6262],
[0, 3],
[6, -13],
[1, -9],
[2, -3],
[1, -11],
[8, -14],
[1, -6],
[2, 2],
[8, -28],
[5, -19],
[-2, -8],
[3, -12],
[0, -11],
[-4, 12],
[-1, 9],
[-4, 8],
[-3, 9],
[-3, 2],
[0, 4],
[-3, 6],
[-6, 17],
[-2, 1],
[0, 6],
[-3, 4],
[0, 7],
[-3, 5],
[0, 6],
[-4, 11],
[0, 11],
[-4, 17],
[1, 2],
[4, -8]
],
[
[9396, 6276],
[4, -4],
[0, -6],
[-5, 9],
[1, 1]
],
[
[9374, 6288],
[3, 0],
[0, -7],
[-3, 7]
],
[
[9395, 6288],
[1, -3],
[-1, -8],
[-2, 6],
[2, 5]
],
[
[9382, 6279],
[-3, 2],
[1, 8],
[2, -2],
[0, -8]
],
[
[9320, 6297],
[2, -5],
[-3, -3],
[1, 8]
],
[
[9327, 6337],
[2, -7],
[-4, -6],
[-2, 6],
[2, 14],
[2, -7]
],
[
[9335, 6356],
[1, -7],
[-2, -5],
[0, 14],
[1, -2]
],
[
[9349, 6387],
[3, -11],
[6, -16],
[4, -7],
[2, -10],
[0, -19],
[1, -8],
[3, -3],
[0, -7],
[5, -8],
[2, 1],
[0, -8],
[-2, -7],
[-4, 4],
[-3, 8],
[-3, -1],
[0, 5],
[-5, 13],
[-5, 32],
[-8, 31],
[0, 13],
[3, 3],
[1, -5]
],
[
[141, 4422],
[-2, 8],
[2, 9],
[0, -17]
],
[
[130, 4465],
[2, 2],
[0, -6],
[3, -2],
[2, 6],
[-1, -18],
[-2, -1],
[-1, 7],
[-3, 5],
[0, 7]
],
[
[138, 4643],
[-2, -1],
[0, 10],
[2, -9]
],
[
[169, 4799],
[-3, -11],
[-1, 9],
[1, 6],
[3, -4]
],
[
[122, 5198],
[-2, -3],
[0, 8],
[2, -5]
],
[
[9717, 4581],
[-3, 4],
[0, 10],
[4, -3],
[-1, -11]
],
[
[9706, 4661],
[-3, 1],
[-4, 27],
[1, 13],
[3, 3],
[0, -19],
[4, -8],
[-1, -17]
],
[
[9699, 4782],
[2, -2],
[-2, -5],
[4, -15],
[0, -8],
[-2, -3],
[-5, 7],
[-3, 7],
[1, 10],
[-1, 2],
[0, 16],
[3, 7],
[2, -3],
[0, -12],
[1, -1]
],
[
[9675, 4940],
[2, 2],
[2, -11],
[3, -10],
[-1, -14],
[-5, -4],
[0, 4],
[-3, 1],
[1, 10],
[-4, 1],
[3, 19],
[2, 2]
],
[
[9675, 5000],
[1, 7],
[2, -1],
[-3, -6]
],
[
[9682, 5021],
[-2, 1],
[2, 7],
[0, -8]
],
[
[9671, 5069],
[1, -14],
[2, 0],
[2, -12],
[3, -1],
[0, -9],
[-4, 8],
[-3, -5],
[-3, 14],
[0, 11],
[2, 8]
],
[
[9675, 5103],
[-1, -3],
[-4, -1],
[-4, 4],
[-3, 11],
[5, 7],
[2, 14],
[1, -3],
[1, -17],
[3, -7],
[0, -5]
],
[
[9650, 5130],
[2, -3],
[1, -9],
[4, -7],
[0, -6],
[3, -7],
[1, -17],
[-2, -8],
[-4, 7],
[-1, -9],
[-2, -4],
[-2, 6],
[0, 11],
[-1, 4],
[0, 21],
[-2, 21],
[-3, -7],
[-2, 16],
[1, 7],
[0, 14],
[1, 3],
[3, -6],
[2, -14],
[0, -12],
[1, -1]
],
[
[9644, 5180],
[-4, 5],
[1, 10],
[4, -5],
[-1, -10]
],
[
[9644, 5199],
[-3, 1],
[2, 7],
[1, -8]
],
[
[9672, 5146],
[-2, 16],
[0, 11],
[-1, 7],
[0, 16],
[1, 20],
[1, 1],
[0, -22],
[1, -5],
[0, -14],
[1, -7],
[0, -21],
[-1, -2]
],
[
[9662, 5215],
[-4, -1],
[-1, 7],
[3, 15],
[5, 5],
[1, -2],
[-2, -7],
[0, -10],
[-2, -7]
],
[
[9671, 5229],
[-2, 3],
[0, 28],
[-1, 27],
[2, -4],
[0, -28],
[1, -1],
[0, -25]
],
[
[9633, 5257],
[3, 0],
[1, 6],
[0, 23],
[1, 2],
[2, -10],
[0, -19],
[2, 2],
[0, -18],
[1, -1],
[0, -19],
[2, -14],
[-3, 0],
[-1, -8],
[-6, -1],
[0, -4],
[-3, -5],
[-1, 12],
[-4, 25],
[1, 3],
[0, 21],
[-1, 5],
[0, 18],
[-2, 13],
[0, 25],
[1, 13],
[1, 1],
[4, -25],
[0, -11],
[1, -6],
[0, -27],
[1, -1]
],
[
[9653, 5392],
[2, -6],
[-2, -18],
[-4, 2],
[0, 16],
[4, 6]
],
[
[9654, 5431],
[-4, -7],
[-1, 10],
[0, 11],
[2, 5],
[3, -19]
],
[
[9628, 5509],
[-2, 0],
[1, 6],
[1, -6]
],
[
[9626, 5519],
[-1, 1],
[0, 15],
[1, -1],
[0, -15]
],
[
[54, 5369],
[-3, 1],
[-1, 8],
[2, 0],
[2, -9]
],
[
[107, 5497],
[-1, 1],
[0, 16],
[1, 2],
[0, -19]
],
[
[234, 5419],
[2, -1],
[2, -8],
[0, -6],
[-9, 2],
[-4, 4],
[-3, 12],
[-2, 4],
[3, 9],
[3, 2],
[8, -11],
[0, -7]
],
[
[214, 5478],
[3, -12],
[0, -19],
[-1, -10],
[-3, 4],
[-5, -4],
[-2, 4],
[0, 10],
[-5, 16],
[-1, 7],
[4, 0],
[3, 5],
[6, 3],
[1, -4]
]
],
"transform": {
"scale": [0.036003600360036005, 0.007531335815881601],
"translate": [-180, -54.75042083099995]
}
}
\ No newline at end of file
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.